Merge tag 'for-linus-2023022201' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES 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/spi/st,ssc-spi.yaml
2792 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2793 F:      arch/arm/boot/dts/sti*
2794 F:      arch/arm/mach-sti/
2795 F:      drivers/ata/ahci_st.c
2796 F:      drivers/char/hw_random/st-rng.c
2797 F:      drivers/clocksource/arm_global_timer.c
2798 F:      drivers/clocksource/clksrc_st_lpc.c
2799 F:      drivers/cpufreq/sti-cpufreq.c
2800 F:      drivers/dma/st_fdma*
2801 F:      drivers/i2c/busses/i2c-st.c
2802 F:      drivers/media/platform/st/sti/c8sectpfe/
2803 F:      drivers/media/rc/st_rc.c
2804 F:      drivers/mmc/host/sdhci-st.c
2805 F:      drivers/phy/st/phy-miphy28lp.c
2806 F:      drivers/phy/st/phy-stih407-usb.c
2807 F:      drivers/pinctrl/pinctrl-st.c
2808 F:      drivers/remoteproc/st_remoteproc.c
2809 F:      drivers/remoteproc/st_slim_rproc.c
2810 F:      drivers/reset/sti/
2811 F:      drivers/rtc/rtc-st-lpc.c
2812 F:      drivers/tty/serial/st-asc.c
2813 F:      drivers/usb/dwc3/dwc3-st.c
2814 F:      drivers/usb/host/ehci-st.c
2815 F:      drivers/usb/host/ohci-st.c
2816 F:      drivers/watchdog/st_lpc_wdt.c
2817 F:      include/linux/remoteproc/st_slim_rproc.h
2818
2819 ARM/STM32 ARCHITECTURE
2820 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2821 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2822 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2824 S:      Maintained
2825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2826 F:      arch/arm/boot/dts/stm32*
2827 F:      arch/arm/mach-stm32/
2828 F:      drivers/clocksource/armv7m_systick.c
2829 N:      stm32
2830 N:      stm
2831
2832 ARM/SUNPLUS SP7021 SOC SUPPORT
2833 M:      Qin Jian <qinjian@cqplus1.com>
2834 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2835 S:      Maintained
2836 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2837 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2838 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2839 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2840 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2841 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2842 F:      arch/arm/configs/sp7021_*defconfig
2843 F:      arch/arm/mach-sunplus/
2844 F:      drivers/irqchip/irq-sp7021-intc.c
2845 F:      drivers/reset/reset-sunplus.c
2846 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2847 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2848
2849 ARM/Synaptics SoC support
2850 M:      Jisheng Zhang <jszhang@kernel.org>
2851 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2853 S:      Maintained
2854 F:      arch/arm/boot/dts/berlin*
2855 F:      arch/arm/mach-berlin/
2856 F:      arch/arm64/boot/dts/synaptics/
2857
2858 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2859 M:      Lennert Buytenhek <kernel@wantstofly.org>
2860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2861 S:      Maintained
2862
2863 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2864 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2865 L:      linux-tegra@vger.kernel.org
2866 L:      linux-media@vger.kernel.org
2867 S:      Maintained
2868 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2869 F:      drivers/media/cec/platform/tegra/
2870
2871 ARM/TESLA FSD SoC SUPPORT
2872 M:      Alim Akhtar <alim.akhtar@samsung.com>
2873 M:      linux-fsd@tesla.com
2874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2875 L:      linux-samsung-soc@vger.kernel.org
2876 S:      Maintained
2877 F:      arch/arm64/boot/dts/tesla/
2878
2879 ARM/TETON BGA MACHINE SUPPORT
2880 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2882 S:      Maintained
2883
2884 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2885 M:      Santosh Shilimkar <ssantosh@kernel.org>
2886 L:      linux-kernel@vger.kernel.org
2887 S:      Maintained
2888 F:      drivers/memory/*emif*
2889
2890 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2891 M:      Nishanth Menon <nm@ti.com>
2892 M:      Santosh Shilimkar <ssantosh@kernel.org>
2893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2894 S:      Maintained
2895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2896 F:      arch/arm/boot/dts/keystone-*
2897 F:      arch/arm/mach-keystone/
2898
2899 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2900 M:      Santosh Shilimkar <ssantosh@kernel.org>
2901 L:      linux-kernel@vger.kernel.org
2902 S:      Maintained
2903 F:      drivers/clk/keystone/
2904
2905 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2906 M:      Santosh Shilimkar <ssantosh@kernel.org>
2907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2908 L:      linux-kernel@vger.kernel.org
2909 S:      Maintained
2910 F:      drivers/clocksource/timer-keystone.c
2911
2912 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2913 M:      Santosh Shilimkar <ssantosh@kernel.org>
2914 L:      linux-kernel@vger.kernel.org
2915 S:      Maintained
2916 F:      drivers/power/reset/keystone-reset.c
2917
2918 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2919 M:      Nishanth Menon <nm@ti.com>
2920 M:      Vignesh Raghavendra <vigneshr@ti.com>
2921 M:      Tero Kristo <kristo@kernel.org>
2922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2923 S:      Supported
2924 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2925 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2926 F:      arch/arm64/boot/dts/ti/Makefile
2927 F:      arch/arm64/boot/dts/ti/k3-*
2928 F:      include/dt-bindings/pinctrl/k3.h
2929
2930 ARM/TOSHIBA VISCONTI ARCHITECTURE
2931 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2933 S:      Supported
2934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2935 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2936 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2937 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2938 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2939 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2940 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2941 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2942 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2943 F:      arch/arm64/boot/dts/toshiba/
2944 F:      drivers/clk/visconti/
2945 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2946 F:      drivers/gpio/gpio-visconti.c
2947 F:      drivers/pci/controller/dwc/pcie-visconti.c
2948 F:      drivers/pinctrl/visconti/
2949 F:      drivers/watchdog/visconti_wdt.c
2950 N:      visconti
2951
2952 ARM/UNIPHIER ARCHITECTURE
2953 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2954 M:      Masami Hiramatsu <mhiramat@kernel.org>
2955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2956 S:      Maintained
2957 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2958 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2959 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2960 F:      arch/arm/boot/dts/uniphier*
2961 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2962 F:      arch/arm/mach-uniphier/
2963 F:      arch/arm/mm/cache-uniphier.c
2964 F:      arch/arm64/boot/dts/socionext/uniphier*
2965 F:      drivers/bus/uniphier-system-bus.c
2966 F:      drivers/clk/uniphier/
2967 F:      drivers/dma/uniphier-mdmac.c
2968 F:      drivers/gpio/gpio-uniphier.c
2969 F:      drivers/i2c/busses/i2c-uniphier*
2970 F:      drivers/irqchip/irq-uniphier-aidet.c
2971 F:      drivers/mmc/host/uniphier-sd.c
2972 F:      drivers/pinctrl/uniphier/
2973 F:      drivers/reset/reset-uniphier.c
2974 F:      drivers/tty/serial/8250/8250_uniphier.c
2975 N:      uniphier
2976
2977 ARM/VERSATILE EXPRESS PLATFORM
2978 M:      Liviu Dudau <liviu.dudau@arm.com>
2979 M:      Sudeep Holla <sudeep.holla@arm.com>
2980 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2982 S:      Maintained
2983 F:      */*/*/vexpress*
2984 F:      */*/vexpress*
2985 F:      arch/arm/boot/dts/vexpress*
2986 F:      arch/arm/mach-versatile/
2987 F:      arch/arm64/boot/dts/arm/
2988 F:      drivers/clk/versatile/clk-vexpress-osc.c
2989 F:      drivers/clocksource/timer-versatile.c
2990 N:      mps2
2991
2992 ARM/VFP SUPPORT
2993 M:      Russell King <linux@armlinux.org.uk>
2994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2995 S:      Maintained
2996 W:      http://www.armlinux.org.uk/
2997 F:      arch/arm/vfp/
2998
2999 ARM/VT8500 ARM ARCHITECTURE
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Orphan
3002 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3003 F:      arch/arm/mach-vt8500/
3004 F:      drivers/clocksource/timer-vt8500.c
3005 F:      drivers/i2c/busses/i2c-wmt.c
3006 F:      drivers/mmc/host/wmt-sdmmc.c
3007 F:      drivers/pwm/pwm-vt8500.c
3008 F:      drivers/rtc/rtc-vt8500.c
3009 F:      drivers/tty/serial/vt8500_serial.c
3010 F:      drivers/usb/host/ehci-platform.c
3011 F:      drivers/usb/host/uhci-platform.c
3012 F:      drivers/video/fbdev/vt8500lcdfb.*
3013 F:      drivers/video/fbdev/wm8505fb*
3014 F:      drivers/video/fbdev/wmt_ge_rops.*
3015
3016 ARM/ZYNQ ARCHITECTURE
3017 M:      Michal Simek <michal.simek@xilinx.com>
3018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3019 S:      Supported
3020 W:      http://wiki.xilinx.com
3021 T:      git https://github.com/Xilinx/linux-xlnx.git
3022 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3023 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3024 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3025 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3026 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3027 F:      arch/arm/mach-zynq/
3028 F:      drivers/clocksource/timer-cadence-ttc.c
3029 F:      drivers/cpuidle/cpuidle-zynq.c
3030 F:      drivers/edac/synopsys_edac.c
3031 F:      drivers/i2c/busses/i2c-cadence.c
3032 F:      drivers/i2c/busses/i2c-xiic.c
3033 F:      drivers/mmc/host/sdhci-of-arasan.c
3034 N:      zynq
3035 N:      xilinx
3036
3037 ARM64 PORT (AARCH64 ARCHITECTURE)
3038 M:      Catalin Marinas <catalin.marinas@arm.com>
3039 M:      Will Deacon <will@kernel.org>
3040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3041 S:      Maintained
3042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3043 F:      Documentation/arm64/
3044 F:      arch/arm64/
3045 F:      tools/testing/selftests/arm64/
3046 X:      arch/arm64/boot/dts/
3047
3048 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3049 M:      George McCollister <george.mccollister@gmail.com>
3050 L:      netdev@vger.kernel.org
3051 S:      Maintained
3052 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3053 F:      drivers/net/dsa/xrs700x/*
3054 F:      net/dsa/tag_xrs700x.c
3055
3056 AS3645A LED FLASH CONTROLLER DRIVER
3057 M:      Sakari Ailus <sakari.ailus@iki.fi>
3058 L:      linux-leds@vger.kernel.org
3059 S:      Maintained
3060 F:      drivers/leds/flash/leds-as3645a.c
3061
3062 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3063 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3064 L:      linux-media@vger.kernel.org
3065 S:      Maintained
3066 T:      git git://linuxtv.org/media_tree.git
3067 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3068 F:      drivers/media/i2c/ak7375.c
3069
3070 ASAHI KASEI AK8974 DRIVER
3071 M:      Linus Walleij <linus.walleij@linaro.org>
3072 L:      linux-iio@vger.kernel.org
3073 S:      Supported
3074 W:      http://www.akm.com/
3075 F:      drivers/iio/magnetometer/ak8974.c
3076
3077 ASC7621 HARDWARE MONITOR DRIVER
3078 M:      George Joseph <george.joseph@fairview5.com>
3079 L:      linux-hwmon@vger.kernel.org
3080 S:      Maintained
3081 F:      Documentation/hwmon/asc7621.rst
3082 F:      drivers/hwmon/asc7621.c
3083
3084 ASIX AX88796C SPI ETHERNET ADAPTER
3085 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3086 S:      Maintained
3087 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3088 F:      drivers/net/ethernet/asix/ax88796c_*
3089
3090 ASPEED PECI CONTROLLER
3091 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3092 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3093 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3094 S:      Supported
3095 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3096 F:      drivers/peci/controller/peci-aspeed.c
3097
3098 ASPEED PINCTRL DRIVERS
3099 M:      Andrew Jeffery <andrew@aj.id.au>
3100 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3101 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3102 L:      linux-gpio@vger.kernel.org
3103 S:      Maintained
3104 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3105 F:      drivers/pinctrl/aspeed/
3106
3107 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3108 M:      Eddie James <eajames@linux.ibm.com>
3109 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3110 S:      Maintained
3111 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3112 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3113 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3114
3115 ASPEED SD/MMC DRIVER
3116 M:      Andrew Jeffery <andrew@aj.id.au>
3117 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3118 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3119 L:      linux-mmc@vger.kernel.org
3120 S:      Maintained
3121 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3122 F:      drivers/mmc/host/sdhci-of-aspeed*
3123
3124 ASPEED SMC SPI DRIVER
3125 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3126 M:      Cédric Le Goater <clg@kaod.org>
3127 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3128 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3129 L:      linux-spi@vger.kernel.org
3130 S:      Maintained
3131 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3132 F:      drivers/spi/spi-aspeed-smc.c
3133
3134 ASPEED VIDEO ENGINE DRIVER
3135 M:      Eddie James <eajames@linux.ibm.com>
3136 L:      linux-media@vger.kernel.org
3137 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3138 S:      Maintained
3139 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3140 F:      drivers/media/platform/aspeed/
3141
3142 ASPEED USB UDC DRIVER
3143 M:      Neal Liu <neal_liu@aspeedtech.com>
3144 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3145 S:      Maintained
3146 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3147 F:      drivers/usb/gadget/udc/aspeed_udc.c
3148
3149 ASPEED CRYPTO DRIVER
3150 M:      Neal Liu <neal_liu@aspeedtech.com>
3151 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3152 S:      Maintained
3153 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3154 F:      drivers/crypto/aspeed/
3155
3156 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3157 M:      Corentin Chary <corentin.chary@gmail.com>
3158 L:      acpi4asus-user@lists.sourceforge.net
3159 L:      platform-driver-x86@vger.kernel.org
3160 S:      Maintained
3161 W:      http://acpi4asus.sf.net
3162 F:      drivers/platform/x86/asus*.c
3163 F:      drivers/platform/x86/eeepc*.c
3164
3165 ASUS TF103C DOCK DRIVER
3166 M:      Hans de Goede <hdegoede@redhat.com>
3167 L:      platform-driver-x86@vger.kernel.org
3168 S:      Maintained
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3170 F:      drivers/platform/x86/asus-tf103c-dock.c
3171
3172 ASUS WMI HARDWARE MONITOR DRIVER
3173 M:      Ed Brindley <kernel@maidavale.org>
3174 M:      Denis Pauk <pauk.denis@gmail.com>
3175 L:      linux-hwmon@vger.kernel.org
3176 S:      Maintained
3177 F:      drivers/hwmon/asus_wmi_sensors.c
3178
3179 ASUS EC HARDWARE MONITOR DRIVER
3180 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3181 L:      linux-hwmon@vger.kernel.org
3182 S:      Maintained
3183 F:      drivers/hwmon/asus-ec-sensors.c
3184
3185 ASUS WIRELESS RADIO CONTROL DRIVER
3186 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3187 L:      platform-driver-x86@vger.kernel.org
3188 S:      Maintained
3189 F:      drivers/platform/x86/asus-wireless.c
3190
3191 ASYMMETRIC KEYS
3192 M:      David Howells <dhowells@redhat.com>
3193 L:      keyrings@vger.kernel.org
3194 S:      Maintained
3195 F:      Documentation/crypto/asymmetric-keys.rst
3196 F:      crypto/asymmetric_keys/
3197 F:      include/crypto/pkcs7.h
3198 F:      include/crypto/public_key.h
3199 F:      include/linux/verification.h
3200
3201 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3202 R:      Dan Williams <dan.j.williams@intel.com>
3203 S:      Odd fixes
3204 W:      http://sourceforge.net/projects/xscaleiop
3205 F:      Documentation/crypto/async-tx-api.rst
3206 F:      crypto/async_tx/
3207 F:      include/linux/async_tx.h
3208
3209 AT24 EEPROM DRIVER
3210 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3211 L:      linux-i2c@vger.kernel.org
3212 S:      Maintained
3213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3214 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3215 F:      drivers/misc/eeprom/at24.c
3216
3217 ATA OVER ETHERNET (AOE) DRIVER
3218 M:      "Justin Sanders" <justin@coraid.com>
3219 S:      Supported
3220 W:      http://www.openaoe.org/
3221 F:      Documentation/admin-guide/aoe/
3222 F:      drivers/block/aoe/
3223
3224 ATC260X PMIC MFD DRIVER
3225 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3226 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3227 L:      linux-actions@lists.infradead.org
3228 S:      Maintained
3229 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3230 F:      drivers/input/misc/atc260x-onkey.c
3231 F:      drivers/mfd/atc260*
3232 F:      drivers/power/reset/atc260x-poweroff.c
3233 F:      drivers/regulator/atc260x-regulator.c
3234 F:      include/linux/mfd/atc260x/*
3235
3236 ATHEROS 71XX/9XXX GPIO DRIVER
3237 M:      Alban Bedel <albeu@free.fr>
3238 S:      Maintained
3239 W:      https://github.com/AlbanBedel/linux
3240 T:      git git://github.com/AlbanBedel/linux
3241 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3242 F:      drivers/gpio/gpio-ath79.c
3243
3244 ATHEROS 71XX/9XXX USB PHY DRIVER
3245 M:      Alban Bedel <albeu@free.fr>
3246 S:      Maintained
3247 W:      https://github.com/AlbanBedel/linux
3248 T:      git git://github.com/AlbanBedel/linux
3249 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3250 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3251
3252 ATHEROS ATH GENERIC UTILITIES
3253 M:      Kalle Valo <kvalo@kernel.org>
3254 L:      linux-wireless@vger.kernel.org
3255 S:      Supported
3256 F:      drivers/net/wireless/ath/*
3257
3258 ATHEROS ATH5K WIRELESS DRIVER
3259 M:      Jiri Slaby <jirislaby@kernel.org>
3260 M:      Nick Kossifidis <mickflemm@gmail.com>
3261 M:      Luis Chamberlain <mcgrof@kernel.org>
3262 L:      linux-wireless@vger.kernel.org
3263 S:      Maintained
3264 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3265 F:      drivers/net/wireless/ath/ath5k/
3266
3267 ATHEROS ATH6KL WIRELESS DRIVER
3268 L:      linux-wireless@vger.kernel.org
3269 S:      Orphan
3270 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3271 F:      drivers/net/wireless/ath/ath6kl/
3272
3273 ATI_REMOTE2 DRIVER
3274 M:      Ville Syrjala <syrjala@sci.fi>
3275 S:      Maintained
3276 F:      drivers/input/misc/ati_remote2.c
3277
3278 ATK0110 HWMON DRIVER
3279 M:      Luca Tettamanti <kronos.it@gmail.com>
3280 L:      linux-hwmon@vger.kernel.org
3281 S:      Maintained
3282 F:      drivers/hwmon/asus_atk0110.c
3283
3284 ATLX ETHERNET DRIVERS
3285 M:      Chris Snook <chris.snook@gmail.com>
3286 L:      netdev@vger.kernel.org
3287 S:      Maintained
3288 W:      http://sourceforge.net/projects/atl1
3289 W:      http://atl1.sourceforge.net
3290 F:      drivers/net/ethernet/atheros/
3291
3292 ATM
3293 M:      Chas Williams <3chas3@gmail.com>
3294 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3295 L:      netdev@vger.kernel.org
3296 S:      Maintained
3297 W:      http://linux-atm.sourceforge.net
3298 F:      drivers/atm/
3299 F:      include/linux/atm*
3300 F:      include/uapi/linux/atm*
3301
3302 ATMEL MACB ETHERNET DRIVER
3303 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3304 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3305 S:      Supported
3306 F:      drivers/net/ethernet/cadence/
3307
3308 ATMEL MAXTOUCH DRIVER
3309 M:      Nick Dyer <nick@shmanahar.org>
3310 S:      Maintained
3311 T:      git git://github.com/ndyer/linux.git
3312 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3313 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3314
3315 ATMEL WIRELESS DRIVER
3316 M:      Simon Kelley <simon@thekelleys.org.uk>
3317 L:      linux-wireless@vger.kernel.org
3318 S:      Maintained
3319 W:      http://www.thekelleys.org.uk/atmel
3320 W:      http://atmelwlandriver.sourceforge.net/
3321 F:      drivers/net/wireless/atmel/atmel*
3322
3323 ATOMIC INFRASTRUCTURE
3324 M:      Will Deacon <will@kernel.org>
3325 M:      Peter Zijlstra <peterz@infradead.org>
3326 R:      Boqun Feng <boqun.feng@gmail.com>
3327 R:      Mark Rutland <mark.rutland@arm.com>
3328 L:      linux-kernel@vger.kernel.org
3329 S:      Maintained
3330 F:      arch/*/include/asm/atomic*.h
3331 F:      include/*/atomic*.h
3332 F:      include/linux/refcount.h
3333 F:      Documentation/atomic_*.txt
3334 F:      scripts/atomic/
3335
3336 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3337 M:      Bradley Grove <linuxdrivers@attotech.com>
3338 L:      linux-scsi@vger.kernel.org
3339 S:      Supported
3340 W:      http://www.attotech.com
3341 F:      drivers/scsi/esas2r
3342
3343 ATUSB IEEE 802.15.4 RADIO DRIVER
3344 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3345 L:      linux-wpan@vger.kernel.org
3346 S:      Maintained
3347 F:      drivers/net/ieee802154/at86rf230.h
3348 F:      drivers/net/ieee802154/atusb.c
3349 F:      drivers/net/ieee802154/atusb.h
3350
3351 AUDIT SUBSYSTEM
3352 M:      Paul Moore <paul@paul-moore.com>
3353 M:      Eric Paris <eparis@redhat.com>
3354 L:      linux-audit@redhat.com (moderated for non-subscribers)
3355 S:      Supported
3356 W:      https://github.com/linux-audit
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3358 F:      include/asm-generic/audit_*.h
3359 F:      include/linux/audit.h
3360 F:      include/linux/audit_arch.h
3361 F:      include/uapi/linux/audit.h
3362 F:      kernel/audit*
3363 F:      lib/*audit.c
3364
3365 AUXILIARY DISPLAY DRIVERS
3366 M:      Miguel Ojeda <ojeda@kernel.org>
3367 S:      Maintained
3368 F:      Documentation/devicetree/bindings/auxdisplay/
3369 F:      drivers/auxdisplay/
3370 F:      include/linux/cfag12864b.h
3371
3372 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3373 M:      Andreas Klinger <ak@it-klinger.de>
3374 L:      linux-iio@vger.kernel.org
3375 S:      Maintained
3376 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3377 F:      drivers/iio/adc/hx711.c
3378
3379 AX.25 NETWORK LAYER
3380 M:      Ralf Baechle <ralf@linux-mips.org>
3381 L:      linux-hams@vger.kernel.org
3382 S:      Maintained
3383 W:      http://www.linux-ax25.org/
3384 F:      include/net/ax25.h
3385 F:      include/uapi/linux/ax25.h
3386 F:      net/ax25/
3387
3388 AXENTIA ARM DEVICES
3389 M:      Peter Rosin <peda@axentia.se>
3390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3391 S:      Maintained
3392 F:      arch/arm/boot/dts/at91-linea.dtsi
3393 F:      arch/arm/boot/dts/at91-natte.dtsi
3394 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3395 F:      arch/arm/boot/dts/at91-tse850-3.dts
3396
3397 AXENTIA ASOC DRIVERS
3398 M:      Peter Rosin <peda@axentia.se>
3399 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3400 S:      Maintained
3401 F:      Documentation/devicetree/bindings/sound/axentia,*
3402 F:      sound/soc/atmel/tse850-pcm5142.c
3403
3404 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3405 M:      Nuno Sá <nuno.sa@analog.com>
3406 L:      linux-hwmon@vger.kernel.org
3407 S:      Supported
3408 W:      https://ez.analog.com/linux-software-drivers
3409 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3410 F:      drivers/hwmon/axi-fan-control.c
3411
3412 AXXIA I2C CONTROLLER
3413 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3414 L:      linux-i2c@vger.kernel.org
3415 S:      Maintained
3416 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3417 F:      drivers/i2c/busses/i2c-axxia.c
3418
3419 AZ6007 DVB DRIVER
3420 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3421 L:      linux-media@vger.kernel.org
3422 S:      Maintained
3423 W:      https://linuxtv.org
3424 T:      git git://linuxtv.org/media_tree.git
3425 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3426
3427 AZTECH FM RADIO RECEIVER DRIVER
3428 M:      Hans Verkuil <hverkuil@xs4all.nl>
3429 L:      linux-media@vger.kernel.org
3430 S:      Maintained
3431 W:      https://linuxtv.org
3432 T:      git git://linuxtv.org/media_tree.git
3433 F:      drivers/media/radio/radio-aztech*
3434
3435 B43 WIRELESS DRIVER
3436 L:      linux-wireless@vger.kernel.org
3437 L:      b43-dev@lists.infradead.org
3438 S:      Odd Fixes
3439 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3440 F:      drivers/net/wireless/broadcom/b43/
3441
3442 B43LEGACY WIRELESS DRIVER
3443 M:      Larry Finger <Larry.Finger@lwfinger.net>
3444 L:      linux-wireless@vger.kernel.org
3445 L:      b43-dev@lists.infradead.org
3446 S:      Maintained
3447 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3448 F:      drivers/net/wireless/broadcom/b43legacy/
3449
3450 BACKLIGHT CLASS/SUBSYSTEM
3451 M:      Lee Jones <lee@kernel.org>
3452 M:      Daniel Thompson <daniel.thompson@linaro.org>
3453 M:      Jingoo Han <jingoohan1@gmail.com>
3454 L:      dri-devel@lists.freedesktop.org
3455 S:      Maintained
3456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3457 F:      Documentation/ABI/stable/sysfs-class-backlight
3458 F:      Documentation/ABI/testing/sysfs-class-backlight
3459 F:      Documentation/devicetree/bindings/leds/backlight
3460 F:      drivers/video/backlight/
3461 F:      include/linux/backlight.h
3462 F:      include/linux/pwm_backlight.h
3463
3464 BARCO P50 GPIO DRIVER
3465 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3466 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3467 S:      Maintained
3468 F:      drivers/platform/x86/barco-p50-gpio.c
3469
3470 BATMAN ADVANCED
3471 M:      Marek Lindner <mareklindner@neomailbox.ch>
3472 M:      Simon Wunderlich <sw@simonwunderlich.de>
3473 M:      Antonio Quartulli <a@unstable.cc>
3474 M:      Sven Eckelmann <sven@narfation.org>
3475 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3476 S:      Maintained
3477 W:      https://www.open-mesh.org/
3478 Q:      https://patchwork.open-mesh.org/project/batman/list/
3479 B:      https://www.open-mesh.org/projects/batman-adv/issues
3480 C:      ircs://irc.hackint.org/batadv
3481 T:      git https://git.open-mesh.org/linux-merge.git
3482 F:      Documentation/networking/batman-adv.rst
3483 F:      include/uapi/linux/batadv_packet.h
3484 F:      include/uapi/linux/batman_adv.h
3485 F:      net/batman-adv/
3486
3487 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3488 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3489 L:      linux-hams@vger.kernel.org
3490 S:      Maintained
3491 W:      http://www.baycom.org/~tom/ham/ham.html
3492 F:      drivers/net/hamradio/baycom*
3493
3494 BCACHE (BLOCK LAYER CACHE)
3495 M:      Coly Li <colyli@suse.de>
3496 M:      Kent Overstreet <kent.overstreet@gmail.com>
3497 L:      linux-bcache@vger.kernel.org
3498 S:      Maintained
3499 W:      http://bcache.evilpiepirate.org
3500 C:      irc://irc.oftc.net/bcache
3501 F:      drivers/md/bcache/
3502
3503 BDISP ST MEDIA DRIVER
3504 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3505 L:      linux-media@vger.kernel.org
3506 S:      Supported
3507 W:      https://linuxtv.org
3508 T:      git git://linuxtv.org/media_tree.git
3509 F:      drivers/media/platform/st/sti/bdisp
3510
3511 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3512 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3513 L:      netdev@vger.kernel.org
3514 S:      Maintained
3515 F:      drivers/net/ethernet/ec_bhf.c
3516
3517 BEFS FILE SYSTEM
3518 M:      Luis de Bethencourt <luisbg@kernel.org>
3519 M:      Salah Triki <salah.triki@gmail.com>
3520 S:      Maintained
3521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3522 F:      Documentation/filesystems/befs.rst
3523 F:      fs/befs/
3524
3525 BFQ I/O SCHEDULER
3526 M:      Paolo Valente <paolo.valente@linaro.org>
3527 M:      Jens Axboe <axboe@kernel.dk>
3528 L:      linux-block@vger.kernel.org
3529 S:      Maintained
3530 F:      Documentation/block/bfq-iosched.rst
3531 F:      block/bfq-*
3532
3533 BFS FILE SYSTEM
3534 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3535 S:      Maintained
3536 F:      Documentation/filesystems/bfs.rst
3537 F:      fs/bfs/
3538 F:      include/uapi/linux/bfs_fs.h
3539
3540 BITMAP API
3541 M:      Yury Norov <yury.norov@gmail.com>
3542 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3543 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3544 S:      Maintained
3545 F:      include/linux/bitmap.h
3546 F:      include/linux/cpumask.h
3547 F:      include/linux/find.h
3548 F:      include/linux/nodemask.h
3549 F:      lib/bitmap.c
3550 F:      lib/cpumask.c
3551 F:      lib/cpumask_kunit.c
3552 F:      lib/find_bit.c
3553 F:      lib/find_bit_benchmark.c
3554 F:      lib/test_bitmap.c
3555 F:      tools/include/linux/bitmap.h
3556 F:      tools/include/linux/find.h
3557 F:      tools/lib/bitmap.c
3558 F:      tools/lib/find_bit.c
3559
3560 BLINKM RGB LED DRIVER
3561 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3562 S:      Maintained
3563 F:      drivers/leds/leds-blinkm.c
3564
3565 BLOCK LAYER
3566 M:      Jens Axboe <axboe@kernel.dk>
3567 L:      linux-block@vger.kernel.org
3568 S:      Maintained
3569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3570 F:      Documentation/ABI/stable/sysfs-block
3571 F:      Documentation/block/
3572 F:      block/
3573 F:      drivers/block/
3574 F:      include/linux/bio.h
3575 F:      include/linux/blk*
3576 F:      kernel/trace/blktrace.c
3577 F:      lib/sbitmap.c
3578
3579 BLOCK2MTD DRIVER
3580 M:      Joern Engel <joern@lazybastard.org>
3581 L:      linux-mtd@lists.infradead.org
3582 S:      Maintained
3583 F:      drivers/mtd/devices/block2mtd.c
3584
3585 BLUETOOTH DRIVERS
3586 M:      Marcel Holtmann <marcel@holtmann.org>
3587 M:      Johan Hedberg <johan.hedberg@gmail.com>
3588 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3589 L:      linux-bluetooth@vger.kernel.org
3590 S:      Supported
3591 W:      http://www.bluez.org/
3592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3594 F:      drivers/bluetooth/
3595
3596 BLUETOOTH SUBSYSTEM
3597 M:      Marcel Holtmann <marcel@holtmann.org>
3598 M:      Johan Hedberg <johan.hedberg@gmail.com>
3599 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3600 L:      linux-bluetooth@vger.kernel.org
3601 S:      Supported
3602 W:      http://www.bluez.org/
3603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3605 F:      include/net/bluetooth/
3606 F:      net/bluetooth/
3607
3608 BONDING DRIVER
3609 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3610 M:      Andy Gospodarek <andy@greyhouse.net>
3611 L:      netdev@vger.kernel.org
3612 S:      Supported
3613 W:      http://sourceforge.net/projects/bonding/
3614 F:      Documentation/networking/bonding.rst
3615 F:      drivers/net/bonding/
3616 F:      include/net/bond*
3617 F:      include/uapi/linux/if_bonding.h
3618 F:      tools/testing/selftests/drivers/net/bonding/
3619
3620 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3621 M:      Dan Robertson <dan@dlrobertson.com>
3622 L:      linux-iio@vger.kernel.org
3623 S:      Maintained
3624 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3625 F:      drivers/iio/accel/bma400*
3626
3627 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3628 M:      Alexei Starovoitov <ast@kernel.org>
3629 M:      Daniel Borkmann <daniel@iogearbox.net>
3630 M:      Andrii Nakryiko <andrii@kernel.org>
3631 R:      Martin KaFai Lau <martin.lau@linux.dev>
3632 R:      Song Liu <song@kernel.org>
3633 R:      Yonghong Song <yhs@fb.com>
3634 R:      John Fastabend <john.fastabend@gmail.com>
3635 R:      KP Singh <kpsingh@kernel.org>
3636 R:      Stanislav Fomichev <sdf@google.com>
3637 R:      Hao Luo <haoluo@google.com>
3638 R:      Jiri Olsa <jolsa@kernel.org>
3639 L:      bpf@vger.kernel.org
3640 S:      Supported
3641 W:      https://bpf.io/
3642 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3645 F:      Documentation/bpf/
3646 F:      Documentation/networking/filter.rst
3647 F:      Documentation/userspace-api/ebpf/
3648 F:      arch/*/net/*
3649 F:      include/linux/bpf*
3650 F:      include/linux/btf*
3651 F:      include/linux/filter.h
3652 F:      include/trace/events/xdp.h
3653 F:      include/uapi/linux/bpf*
3654 F:      include/uapi/linux/btf*
3655 F:      include/uapi/linux/filter.h
3656 F:      kernel/bpf/
3657 F:      kernel/trace/bpf_trace.c
3658 F:      lib/test_bpf.c
3659 F:      net/bpf/
3660 F:      net/core/filter.c
3661 F:      net/sched/act_bpf.c
3662 F:      net/sched/cls_bpf.c
3663 F:      samples/bpf/
3664 F:      scripts/bpf_doc.py
3665 F:      scripts/pahole-flags.sh
3666 F:      scripts/pahole-version.sh
3667 F:      tools/bpf/
3668 F:      tools/lib/bpf/
3669 F:      tools/testing/selftests/bpf/
3670
3671 BPF JIT for ARM
3672 M:      Shubham Bansal <illusionist.neo@gmail.com>
3673 L:      bpf@vger.kernel.org
3674 S:      Odd Fixes
3675 F:      arch/arm/net/
3676
3677 BPF JIT for ARM64
3678 M:      Daniel Borkmann <daniel@iogearbox.net>
3679 M:      Alexei Starovoitov <ast@kernel.org>
3680 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3681 L:      bpf@vger.kernel.org
3682 S:      Supported
3683 F:      arch/arm64/net/
3684
3685 BPF JIT for MIPS (32-BIT AND 64-BIT)
3686 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3687 M:      Paul Burton <paulburton@kernel.org>
3688 L:      bpf@vger.kernel.org
3689 S:      Maintained
3690 F:      arch/mips/net/
3691
3692 BPF JIT for NFP NICs
3693 M:      Jakub Kicinski <kuba@kernel.org>
3694 L:      bpf@vger.kernel.org
3695 S:      Odd Fixes
3696 F:      drivers/net/ethernet/netronome/nfp/bpf/
3697
3698 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3699 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3700 M:      Michael Ellerman <mpe@ellerman.id.au>
3701 L:      bpf@vger.kernel.org
3702 S:      Supported
3703 F:      arch/powerpc/net/
3704
3705 BPF JIT for RISC-V (32-bit)
3706 M:      Luke Nelson <luke.r.nels@gmail.com>
3707 M:      Xi Wang <xi.wang@gmail.com>
3708 L:      bpf@vger.kernel.org
3709 S:      Maintained
3710 F:      arch/riscv/net/
3711 X:      arch/riscv/net/bpf_jit_comp64.c
3712
3713 BPF JIT for RISC-V (64-bit)
3714 M:      Björn Töpel <bjorn@kernel.org>
3715 L:      bpf@vger.kernel.org
3716 S:      Maintained
3717 F:      arch/riscv/net/
3718 X:      arch/riscv/net/bpf_jit_comp32.c
3719
3720 BPF JIT for S390
3721 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3722 M:      Heiko Carstens <hca@linux.ibm.com>
3723 M:      Vasily Gorbik <gor@linux.ibm.com>
3724 L:      bpf@vger.kernel.org
3725 S:      Supported
3726 F:      arch/s390/net/
3727 X:      arch/s390/net/pnet.c
3728
3729 BPF JIT for SPARC (32-BIT AND 64-BIT)
3730 M:      David S. Miller <davem@davemloft.net>
3731 L:      bpf@vger.kernel.org
3732 S:      Odd Fixes
3733 F:      arch/sparc/net/
3734
3735 BPF JIT for X86 32-BIT
3736 M:      Wang YanQing <udknight@gmail.com>
3737 L:      bpf@vger.kernel.org
3738 S:      Odd Fixes
3739 F:      arch/x86/net/bpf_jit_comp32.c
3740
3741 BPF JIT for X86 64-BIT
3742 M:      Alexei Starovoitov <ast@kernel.org>
3743 M:      Daniel Borkmann <daniel@iogearbox.net>
3744 L:      bpf@vger.kernel.org
3745 S:      Supported
3746 F:      arch/x86/net/
3747 X:      arch/x86/net/bpf_jit_comp32.c
3748
3749 BPF [CORE]
3750 M:      Alexei Starovoitov <ast@kernel.org>
3751 M:      Daniel Borkmann <daniel@iogearbox.net>
3752 R:      John Fastabend <john.fastabend@gmail.com>
3753 L:      bpf@vger.kernel.org
3754 S:      Maintained
3755 F:      kernel/bpf/verifier.c
3756 F:      kernel/bpf/tnum.c
3757 F:      kernel/bpf/core.c
3758 F:      kernel/bpf/syscall.c
3759 F:      kernel/bpf/dispatcher.c
3760 F:      kernel/bpf/trampoline.c
3761 F:      include/linux/bpf*
3762 F:      include/linux/filter.h
3763 F:      include/linux/tnum.h
3764
3765 BPF [BTF]
3766 M:      Martin KaFai Lau <martin.lau@linux.dev>
3767 L:      bpf@vger.kernel.org
3768 S:      Maintained
3769 F:      kernel/bpf/btf.c
3770 F:      include/linux/btf*
3771
3772 BPF [TRACING]
3773 M:      Song Liu <song@kernel.org>
3774 R:      Jiri Olsa <jolsa@kernel.org>
3775 L:      bpf@vger.kernel.org
3776 S:      Maintained
3777 F:      kernel/trace/bpf_trace.c
3778 F:      kernel/bpf/stackmap.c
3779
3780 BPF [NETWORKING] (tc BPF, sock_addr)
3781 M:      Martin KaFai Lau <martin.lau@linux.dev>
3782 M:      Daniel Borkmann <daniel@iogearbox.net>
3783 R:      John Fastabend <john.fastabend@gmail.com>
3784 L:      bpf@vger.kernel.org
3785 L:      netdev@vger.kernel.org
3786 S:      Maintained
3787 F:      net/core/filter.c
3788 F:      net/sched/act_bpf.c
3789 F:      net/sched/cls_bpf.c
3790
3791 BPF [NETWORKING] (struct_ops, reuseport)
3792 M:      Martin KaFai Lau <martin.lau@linux.dev>
3793 L:      bpf@vger.kernel.org
3794 L:      netdev@vger.kernel.org
3795 S:      Maintained
3796 F:      kernel/bpf/bpf_struct*
3797
3798 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3799 M:      KP Singh <kpsingh@kernel.org>
3800 R:      Florent Revest <revest@chromium.org>
3801 R:      Brendan Jackman <jackmanb@chromium.org>
3802 L:      bpf@vger.kernel.org
3803 S:      Maintained
3804 F:      Documentation/bpf/prog_lsm.rst
3805 F:      include/linux/bpf_lsm.h
3806 F:      kernel/bpf/bpf_lsm.c
3807 F:      security/bpf/
3808
3809 BPF [STORAGE & CGROUPS]
3810 M:      Martin KaFai Lau <martin.lau@linux.dev>
3811 L:      bpf@vger.kernel.org
3812 S:      Maintained
3813 F:      kernel/bpf/cgroup.c
3814 F:      kernel/bpf/*storage.c
3815 F:      kernel/bpf/bpf_lru*
3816
3817 BPF [RINGBUF]
3818 M:      Andrii Nakryiko <andrii@kernel.org>
3819 L:      bpf@vger.kernel.org
3820 S:      Maintained
3821 F:      kernel/bpf/ringbuf.c
3822
3823 BPF [ITERATOR]
3824 M:      Yonghong Song <yhs@fb.com>
3825 L:      bpf@vger.kernel.org
3826 S:      Maintained
3827 F:      kernel/bpf/*iter.c
3828
3829 BPF [L7 FRAMEWORK] (sockmap)
3830 M:      John Fastabend <john.fastabend@gmail.com>
3831 M:      Jakub Sitnicki <jakub@cloudflare.com>
3832 L:      netdev@vger.kernel.org
3833 L:      bpf@vger.kernel.org
3834 S:      Maintained
3835 F:      include/linux/skmsg.h
3836 F:      net/core/skmsg.c
3837 F:      net/core/sock_map.c
3838 F:      net/ipv4/tcp_bpf.c
3839 F:      net/ipv4/udp_bpf.c
3840 F:      net/unix/unix_bpf.c
3841
3842 BPF [LIBRARY] (libbpf)
3843 M:      Andrii Nakryiko <andrii@kernel.org>
3844 L:      bpf@vger.kernel.org
3845 S:      Maintained
3846 F:      tools/lib/bpf/
3847
3848 BPF [TOOLING] (bpftool)
3849 M:      Quentin Monnet <quentin@isovalent.com>
3850 L:      bpf@vger.kernel.org
3851 S:      Maintained
3852 F:      kernel/bpf/disasm.*
3853 F:      tools/bpf/bpftool/
3854
3855 BPF [SELFTESTS] (Test Runners & Infrastructure)
3856 M:      Andrii Nakryiko <andrii@kernel.org>
3857 R:      Mykola Lysenko <mykolal@fb.com>
3858 L:      bpf@vger.kernel.org
3859 S:      Maintained
3860 F:      tools/testing/selftests/bpf/
3861
3862 BPF [DOCUMENTATION] (Related to Standardization)
3863 R:      David Vernet <void@manifault.com>
3864 L:      bpf@vger.kernel.org
3865 L:      bpf@ietf.org
3866 S:      Maintained
3867 F:      Documentation/bpf/instruction-set.rst
3868
3869 BPF [MISC]
3870 L:      bpf@vger.kernel.org
3871 S:      Odd Fixes
3872 K:      (?:\b|_)bpf(?:\b|_)
3873
3874 BROADCOM B44 10/100 ETHERNET DRIVER
3875 M:      Michael Chan <michael.chan@broadcom.com>
3876 L:      netdev@vger.kernel.org
3877 S:      Supported
3878 F:      drivers/net/ethernet/broadcom/b44.*
3879
3880 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3881 M:      Florian Fainelli <f.fainelli@gmail.com>
3882 L:      netdev@vger.kernel.org
3883 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3884 S:      Supported
3885 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3886 F:      drivers/net/dsa/b53/*
3887 F:      drivers/net/dsa/bcm_sf2*
3888 F:      include/linux/dsa/brcm.h
3889 F:      include/linux/platform_data/b53.h
3890
3891 BROADCOM BCMBCA ARM ARCHITECTURE
3892 M:      William Zhang <william.zhang@broadcom.com>
3893 M:      Anand Gore <anand.gore@broadcom.com>
3894 M:      Kursad Oney <kursad.oney@broadcom.com>
3895 M:      Florian Fainelli <f.fainelli@gmail.com>
3896 M:      Rafał Miłecki <rafal@milecki.pl>
3897 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3899 S:      Maintained
3900 T:      git https://github.com/broadcom/stblinux.git
3901 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3902 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3903 N:      bcmbca
3904 N:      bcm[9]?47622
3905 N:      bcm[9]?4912
3906 N:      bcm[9]?63138
3907 N:      bcm[9]?63146
3908 N:      bcm[9]?63148
3909 N:      bcm[9]?63158
3910 N:      bcm[9]?63178
3911 N:      bcm[9]?6756
3912 N:      bcm[9]?6813
3913 N:      bcm[9]?6846
3914 N:      bcm[9]?6855
3915 N:      bcm[9]?6856
3916 N:      bcm[9]?6858
3917 N:      bcm[9]?6878
3918
3919 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3920 M:      Florian Fainelli <f.fainelli@gmail.com>
3921 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3922 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3924 S:      Maintained
3925 T:      git https://github.com/broadcom/stblinux.git
3926 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3927 F:      drivers/pci/controller/pcie-brcmstb.c
3928 F:      drivers/staging/vc04_services
3929 N:      bcm2711
3930 N:      bcm283*
3931 N:      raspberrypi
3932
3933 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3934 M:      Florian Fainelli <f.fainelli@gmail.com>
3935 M:      Ray Jui <rjui@broadcom.com>
3936 M:      Scott Branden <sbranden@broadcom.com>
3937 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3938 S:      Maintained
3939 T:      git https://github.com/broadcom/mach-bcm
3940 F:      arch/arm/mach-bcm/
3941 N:      bcm281*
3942 N:      bcm113*
3943 N:      bcm216*
3944 N:      kona
3945
3946 BROADCOM BCM47XX MIPS ARCHITECTURE
3947 M:      Hauke Mehrtens <hauke@hauke-m.de>
3948 M:      Rafał Miłecki <zajec5@gmail.com>
3949 L:      linux-mips@vger.kernel.org
3950 S:      Maintained
3951 F:      Documentation/devicetree/bindings/mips/brcm/
3952 F:      arch/mips/bcm47xx/*
3953 F:      arch/mips/include/asm/mach-bcm47xx/*
3954
3955 BROADCOM BCM4908 ETHERNET DRIVER
3956 M:      Rafał Miłecki <rafal@milecki.pl>
3957 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3958 L:      netdev@vger.kernel.org
3959 S:      Maintained
3960 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3961 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3962 F:      drivers/net/ethernet/broadcom/unimac.h
3963
3964 BROADCOM BCM4908 PINMUX DRIVER
3965 M:      Rafał Miłecki <rafal@milecki.pl>
3966 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3967 L:      linux-gpio@vger.kernel.org
3968 S:      Maintained
3969 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3970 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3971
3972 BROADCOM BCM5301X ARM ARCHITECTURE
3973 M:      Florian Fainelli <f.fainelli@gmail.com>
3974 M:      Hauke Mehrtens <hauke@hauke-m.de>
3975 M:      Rafał Miłecki <zajec5@gmail.com>
3976 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3978 S:      Maintained
3979 F:      arch/arm/boot/dts/bcm470*
3980 F:      arch/arm/boot/dts/bcm5301*
3981 F:      arch/arm/boot/dts/bcm953012*
3982 F:      arch/arm/mach-bcm/bcm_5301x.c
3983
3984 BROADCOM BCM53573 ARM ARCHITECTURE
3985 M:      Florian Fainelli <f.fainelli@gmail.com>
3986 M:      Rafał Miłecki <rafal@milecki.pl>
3987 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3989 S:      Maintained
3990 F:      arch/arm/boot/dts/bcm47189*
3991 F:      arch/arm/boot/dts/bcm53573*
3992
3993 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3994 M:      Kevin Cernekee <cernekee@gmail.com>
3995 L:      linux-usb@vger.kernel.org
3996 S:      Maintained
3997 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3998
3999 BROADCOM BCM7XXX ARM ARCHITECTURE
4000 M:      Florian Fainelli <f.fainelli@gmail.com>
4001 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4003 S:      Maintained
4004 T:      git https://github.com/broadcom/stblinux.git
4005 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4006 F:      arch/arm/boot/dts/bcm7*.dts*
4007 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4008 F:      arch/arm/mach-bcm/*brcmstb*
4009 F:      arch/arm/mm/cache-b15-rac.c
4010 F:      drivers/bus/brcmstb_gisb.c
4011 F:      drivers/pci/controller/pcie-brcmstb.c
4012 N:      brcmstb
4013 N:      bcm7038
4014 N:      bcm7120
4015
4016 BROADCOM BDC DRIVER
4017 M:      Justin Chen <justinpopo6@gmail.com>
4018 M:      Al Cooper <alcooperx@gmail.com>
4019 L:      linux-usb@vger.kernel.org
4020 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4021 S:      Maintained
4022 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4023 F:      drivers/usb/gadget/udc/bdc/
4024
4025 BROADCOM BMIPS CPUFREQ DRIVER
4026 M:      Markus Mayer <mmayer@broadcom.com>
4027 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4028 L:      linux-pm@vger.kernel.org
4029 S:      Maintained
4030 F:      drivers/cpufreq/bmips-cpufreq.c
4031
4032 BROADCOM BMIPS MIPS ARCHITECTURE
4033 M:      Florian Fainelli <f.fainelli@gmail.com>
4034 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4035 L:      linux-mips@vger.kernel.org
4036 S:      Maintained
4037 T:      git https://github.com/broadcom/stblinux.git
4038 F:      arch/mips/bmips/*
4039 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4040 F:      arch/mips/include/asm/mach-bmips/*
4041 F:      arch/mips/kernel/*bmips*
4042 F:      drivers/soc/bcm/bcm63xx
4043 F:      drivers/irqchip/irq-bcm63*
4044 F:      drivers/irqchip/irq-bcm7*
4045 F:      drivers/irqchip/irq-brcmstb*
4046 F:      include/linux/bcm963xx_nvram.h
4047 F:      include/linux/bcm963xx_tag.h
4048
4049 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4050 M:      Rasesh Mody <rmody@marvell.com>
4051 M:      GR-Linux-NIC-Dev@marvell.com
4052 L:      netdev@vger.kernel.org
4053 S:      Supported
4054 F:      drivers/net/ethernet/broadcom/bnx2.*
4055 F:      drivers/net/ethernet/broadcom/bnx2_*
4056
4057 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4058 M:      Saurav Kashyap <skashyap@marvell.com>
4059 M:      Javed Hasan <jhasan@marvell.com>
4060 M:      GR-QLogic-Storage-Upstream@marvell.com
4061 L:      linux-scsi@vger.kernel.org
4062 S:      Supported
4063 F:      drivers/scsi/bnx2fc/
4064
4065 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4066 M:      Nilesh Javali <njavali@marvell.com>
4067 M:      Manish Rangankar <mrangankar@marvell.com>
4068 M:      GR-QLogic-Storage-Upstream@marvell.com
4069 L:      linux-scsi@vger.kernel.org
4070 S:      Supported
4071 F:      drivers/scsi/bnx2i/
4072
4073 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4074 M:      Ariel Elior <aelior@marvell.com>
4075 M:      Sudarsana Kalluru <skalluru@marvell.com>
4076 M:      Manish Chopra <manishc@marvell.com>
4077 L:      netdev@vger.kernel.org
4078 S:      Supported
4079 F:      drivers/net/ethernet/broadcom/bnx2x/
4080
4081 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4082 M:      Michael Chan <michael.chan@broadcom.com>
4083 L:      netdev@vger.kernel.org
4084 S:      Supported
4085 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4086 F:      drivers/net/ethernet/broadcom/bnxt/
4087 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4088
4089 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4090 M:      Arend van Spriel <aspriel@gmail.com>
4091 M:      Franky Lin <franky.lin@broadcom.com>
4092 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4093 L:      linux-wireless@vger.kernel.org
4094 L:      brcm80211-dev-list.pdl@broadcom.com
4095 L:      SHA-cyfmac-dev-list@infineon.com
4096 S:      Supported
4097 F:      drivers/net/wireless/broadcom/brcm80211/
4098
4099 BROADCOM BRCMSTB GPIO DRIVER
4100 M:      Doug Berger <opendmb@gmail.com>
4101 M:      Florian Fainelli <f.fainelli@gmail.com>
4102 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4103 S:      Supported
4104 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4105 F:      drivers/gpio/gpio-brcmstb.c
4106
4107 BROADCOM BRCMSTB I2C DRIVER
4108 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4109 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4110 L:      linux-i2c@vger.kernel.org
4111 S:      Supported
4112 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4113 F:      drivers/i2c/busses/i2c-brcmstb.c
4114
4115 BROADCOM BRCMSTB UART DRIVER
4116 M:      Al Cooper <alcooperx@gmail.com>
4117 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4118 L:      linux-serial@vger.kernel.org
4119 S:      Maintained
4120 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4121 F:      drivers/tty/serial/8250/8250_bcm7271.c
4122
4123 BROADCOM BRCMSTB USB EHCI DRIVER
4124 M:      Justin Chen <justinpopo6@gmail.com>
4125 M:      Al Cooper <alcooperx@gmail.com>
4126 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4127 L:      linux-usb@vger.kernel.org
4128 S:      Maintained
4129 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4130 F:      drivers/usb/host/ehci-brcm.*
4131
4132 BROADCOM BRCMSTB USB PIN MAP DRIVER
4133 M:      Al Cooper <alcooperx@gmail.com>
4134 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4135 L:      linux-usb@vger.kernel.org
4136 S:      Maintained
4137 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4138 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4139
4140 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4141 M:      Justin Chen <justinpopo6@gmail.com>
4142 M:      Al Cooper <alcooperx@gmail.com>
4143 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4144 L:      linux-kernel@vger.kernel.org
4145 S:      Maintained
4146 F:      drivers/phy/broadcom/phy-brcm-usb*
4147
4148 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4149 M:      William Zhang <william.zhang@broadcom.com>
4150 M:      Kursad Oney <kursad.oney@broadcom.com>
4151 M:      Jonas Gorski <jonas.gorski@gmail.com>
4152 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4153 L:      linux-spi@vger.kernel.org
4154 S:      Maintained
4155 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4156 F:      drivers/spi/spi-bcm63xx-hsspi.c
4157 F:      drivers/spi/spi-bcmbca-hsspi.c
4158
4159 BROADCOM ETHERNET PHY DRIVERS
4160 M:      Florian Fainelli <f.fainelli@gmail.com>
4161 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4162 L:      netdev@vger.kernel.org
4163 S:      Supported
4164 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4165 F:      drivers/net/phy/bcm*.[ch]
4166 F:      drivers/net/phy/broadcom.c
4167 F:      include/linux/brcmphy.h
4168
4169 BROADCOM GENET ETHERNET DRIVER
4170 M:      Doug Berger <opendmb@gmail.com>
4171 M:      Florian Fainelli <f.fainelli@gmail.com>
4172 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4173 L:      netdev@vger.kernel.org
4174 S:      Supported
4175 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4176 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4177 F:      drivers/net/ethernet/broadcom/genet/
4178 F:      drivers/net/ethernet/broadcom/unimac.h
4179 F:      drivers/net/mdio/mdio-bcm-unimac.c
4180 F:      include/linux/platform_data/bcmgenet.h
4181 F:      include/linux/platform_data/mdio-bcm-unimac.h
4182
4183 BROADCOM IPROC ARM ARCHITECTURE
4184 M:      Ray Jui <rjui@broadcom.com>
4185 M:      Scott Branden <sbranden@broadcom.com>
4186 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4188 S:      Maintained
4189 T:      git https://github.com/broadcom/stblinux.git
4190 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4191 F:      arch/arm64/boot/dts/broadcom/stingray/*
4192 F:      drivers/clk/bcm/clk-ns*
4193 F:      drivers/clk/bcm/clk-sr*
4194 F:      drivers/pinctrl/bcm/pinctrl-ns*
4195 F:      include/dt-bindings/clock/bcm-sr*
4196 N:      iproc
4197 N:      cygnus
4198 N:      bcm[-_]nsp
4199 N:      bcm9113*
4200 N:      bcm9583*
4201 N:      bcm9585*
4202 N:      bcm9586*
4203 N:      bcm988312
4204 N:      bcm113*
4205 N:      bcm583*
4206 N:      bcm585*
4207 N:      bcm586*
4208 N:      bcm88312
4209 N:      hr2
4210 N:      stingray
4211
4212 BROADCOM IPROC GBIT ETHERNET DRIVER
4213 M:      Rafał Miłecki <rafal@milecki.pl>
4214 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4215 L:      netdev@vger.kernel.org
4216 S:      Maintained
4217 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4218 F:      drivers/net/ethernet/broadcom/bgmac*
4219 F:      drivers/net/ethernet/broadcom/unimac.h
4220
4221 BROADCOM KONA GPIO DRIVER
4222 M:      Ray Jui <rjui@broadcom.com>
4223 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4224 S:      Supported
4225 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4226 F:      drivers/gpio/gpio-bcm-kona.c
4227
4228 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4229 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4230 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4231 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4232 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4233 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4234 L:      linux-scsi@vger.kernel.org
4235 S:      Supported
4236 W:      https://www.broadcom.com/support/storage
4237 F:      drivers/scsi/mpi3mr/
4238
4239 BROADCOM NETXTREME-E ROCE DRIVER
4240 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4241 L:      linux-rdma@vger.kernel.org
4242 S:      Supported
4243 W:      http://www.broadcom.com
4244 F:      drivers/infiniband/hw/bnxt_re/
4245 F:      include/uapi/rdma/bnxt_re-abi.h
4246
4247 BROADCOM NVRAM DRIVER
4248 M:      Rafał Miłecki <zajec5@gmail.com>
4249 L:      linux-mips@vger.kernel.org
4250 S:      Maintained
4251 F:      drivers/firmware/broadcom/*
4252
4253 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4254 M:      Rafał Miłecki <rafal@milecki.pl>
4255 M:      Florian Fainelli <f.fainelli@gmail.com>
4256 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4257 L:      linux-pm@vger.kernel.org
4258 S:      Maintained
4259 T:      git https://github.com/broadcom/stblinux.git
4260 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4261 F:      include/dt-bindings/soc/bcm-pmb.h
4262
4263 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4264 M:      Rafał Miłecki <zajec5@gmail.com>
4265 L:      linux-wireless@vger.kernel.org
4266 S:      Maintained
4267 F:      drivers/bcma/
4268 F:      include/linux/bcma/
4269
4270 BROADCOM SPI DRIVER
4271 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4272 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4273 S:      Maintained
4274 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4275 F:      drivers/spi/spi-bcm-qspi.*
4276 F:      drivers/spi/spi-brcmstb-qspi.c
4277 F:      drivers/spi/spi-iproc-qspi.c
4278
4279 BROADCOM STB AVS CPUFREQ DRIVER
4280 M:      Markus Mayer <mmayer@broadcom.com>
4281 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4282 L:      linux-pm@vger.kernel.org
4283 S:      Maintained
4284 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4285 F:      drivers/cpufreq/brcmstb*
4286
4287 BROADCOM STB AVS TMON DRIVER
4288 M:      Markus Mayer <mmayer@broadcom.com>
4289 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4290 L:      linux-pm@vger.kernel.org
4291 S:      Maintained
4292 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4293 F:      drivers/thermal/broadcom/brcmstb*
4294
4295 BROADCOM STB DPFE DRIVER
4296 M:      Markus Mayer <mmayer@broadcom.com>
4297 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4299 S:      Maintained
4300 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4301 F:      drivers/memory/brcmstb_dpfe.c
4302
4303 BROADCOM STB NAND FLASH DRIVER
4304 M:      Brian Norris <computersforpeace@gmail.com>
4305 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4306 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4307 L:      linux-mtd@lists.infradead.org
4308 S:      Maintained
4309 F:      drivers/mtd/nand/raw/brcmnand/
4310 F:      include/linux/platform_data/brcmnand.h
4311
4312 BROADCOM STB PCIE DRIVER
4313 M:      Jim Quinlan <jim2101024@gmail.com>
4314 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4315 M:      Florian Fainelli <f.fainelli@gmail.com>
4316 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4317 L:      linux-pci@vger.kernel.org
4318 S:      Maintained
4319 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4320 F:      drivers/pci/controller/pcie-brcmstb.c
4321
4322 BROADCOM SYSTEMPORT ETHERNET DRIVER
4323 M:      Florian Fainelli <f.fainelli@gmail.com>
4324 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4325 L:      netdev@vger.kernel.org
4326 S:      Supported
4327 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4328 F:      drivers/net/ethernet/broadcom/unimac.h
4329 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4330
4331 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4332 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4333 M:      Prashant Sreedharan <prashant@broadcom.com>
4334 M:      Michael Chan <mchan@broadcom.com>
4335 L:      netdev@vger.kernel.org
4336 S:      Supported
4337 F:      drivers/net/ethernet/broadcom/tg3.*
4338
4339 BROADCOM VK DRIVER
4340 M:      Scott Branden <scott.branden@broadcom.com>
4341 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4342 S:      Supported
4343 F:      drivers/misc/bcm-vk/
4344 F:      include/uapi/linux/misc/bcm_vk.h
4345
4346 BROCADE BFA FC SCSI DRIVER
4347 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4348 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4349 L:      linux-scsi@vger.kernel.org
4350 S:      Supported
4351 F:      drivers/scsi/bfa/
4352
4353 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4354 M:      Rasesh Mody <rmody@marvell.com>
4355 M:      Sudarsana Kalluru <skalluru@marvell.com>
4356 M:      GR-Linux-NIC-Dev@marvell.com
4357 L:      netdev@vger.kernel.org
4358 S:      Supported
4359 F:      drivers/net/ethernet/brocade/bna/
4360
4361 BSG (block layer generic sg v4 driver)
4362 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4363 L:      linux-scsi@vger.kernel.org
4364 S:      Supported
4365 F:      block/bsg.c
4366 F:      include/linux/bsg.h
4367 F:      include/uapi/linux/bsg.h
4368
4369 BT87X AUDIO DRIVER
4370 M:      Clemens Ladisch <clemens@ladisch.de>
4371 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4372 S:      Maintained
4373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4374 F:      Documentation/sound/cards/bt87x.rst
4375 F:      sound/pci/bt87x.c
4376
4377 BT8XXGPIO DRIVER
4378 M:      Michael Buesch <m@bues.ch>
4379 S:      Maintained
4380 W:      http://bu3sch.de/btgpio.php
4381 F:      drivers/gpio/gpio-bt8xx.c
4382
4383 BTRFS FILE SYSTEM
4384 M:      Chris Mason <clm@fb.com>
4385 M:      Josef Bacik <josef@toxicpanda.com>
4386 M:      David Sterba <dsterba@suse.com>
4387 L:      linux-btrfs@vger.kernel.org
4388 S:      Maintained
4389 W:      https://btrfs.readthedocs.io
4390 W:      https://btrfs.wiki.kernel.org/
4391 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4392 C:      irc://irc.libera.chat/btrfs
4393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4394 F:      Documentation/filesystems/btrfs.rst
4395 F:      fs/btrfs/
4396 F:      include/linux/btrfs*
4397 F:      include/trace/events/btrfs.h
4398 F:      include/uapi/linux/btrfs*
4399
4400 BTTV VIDEO4LINUX DRIVER
4401 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4402 L:      linux-media@vger.kernel.org
4403 S:      Odd fixes
4404 W:      https://linuxtv.org
4405 T:      git git://linuxtv.org/media_tree.git
4406 F:      Documentation/driver-api/media/drivers/bttv*
4407 F:      drivers/media/pci/bt8xx/bttv*
4408
4409 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4410 M:      Chanwoo Choi <cw00.choi@samsung.com>
4411 L:      linux-pm@vger.kernel.org
4412 L:      linux-samsung-soc@vger.kernel.org
4413 S:      Maintained
4414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4415 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4416 F:      drivers/devfreq/exynos-bus.c
4417
4418 BUSLOGIC SCSI DRIVER
4419 M:      Khalid Aziz <khalid@gonehiking.org>
4420 L:      linux-scsi@vger.kernel.org
4421 S:      Maintained
4422 F:      drivers/scsi/BusLogic.*
4423 F:      drivers/scsi/FlashPoint.*
4424
4425 C-MEDIA CMI8788 DRIVER
4426 M:      Clemens Ladisch <clemens@ladisch.de>
4427 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4428 S:      Maintained
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4430 F:      sound/pci/oxygen/
4431
4432 C-SKY ARCHITECTURE
4433 M:      Guo Ren <guoren@kernel.org>
4434 L:      linux-csky@vger.kernel.org
4435 S:      Supported
4436 T:      git https://github.com/c-sky/csky-linux.git
4437 F:      Documentation/devicetree/bindings/csky/
4438 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4439 F:      Documentation/devicetree/bindings/timer/csky,*
4440 F:      arch/csky/
4441 F:      drivers/clocksource/timer-gx6605s.c
4442 F:      drivers/clocksource/timer-mp-csky.c
4443 F:      drivers/irqchip/irq-csky-*
4444 N:      csky
4445 K:      csky
4446
4447 CA8210 IEEE-802.15.4 RADIO DRIVER
4448 L:      linux-wpan@vger.kernel.org
4449 S:      Orphan
4450 W:      https://github.com/Cascoda/ca8210-linux.git
4451 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4452 F:      drivers/net/ieee802154/ca8210.c
4453
4454 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4455 M:      Damien Le Moal <damien.lemoal@wdc.com>
4456 L:      linux-riscv@lists.infradead.org
4457 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4458 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4459 F:      drivers/pinctrl/pinctrl-k210.c
4460
4461 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4462 M:      Damien Le Moal <damien.lemoal@wdc.com>
4463 L:      linux-kernel@vger.kernel.org
4464 L:      linux-riscv@lists.infradead.org
4465 S:      Maintained
4466 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4467 F:      drivers/reset/reset-k210.c
4468
4469 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4470 M:      Damien Le Moal <damien.lemoal@wdc.com>
4471 L:      linux-riscv@lists.infradead.org
4472 S:      Maintained
4473 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4474 F:      drivers/soc/canaan/
4475 F:      include/soc/canaan/
4476
4477 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4478 M:      David Howells <dhowells@redhat.com>
4479 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4480 S:      Supported
4481 F:      Documentation/filesystems/caching/cachefiles.rst
4482 F:      fs/cachefiles/
4483
4484 CADENCE MIPI-CSI2 BRIDGES
4485 M:      Maxime Ripard <mripard@kernel.org>
4486 L:      linux-media@vger.kernel.org
4487 S:      Maintained
4488 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4489 F:      drivers/media/platform/cadence/cdns-csi2*
4490
4491 CADENCE NAND DRIVER
4492 L:      linux-mtd@lists.infradead.org
4493 S:      Orphan
4494 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4495 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4496
4497 CADENCE USB3 DRD IP DRIVER
4498 M:      Peter Chen <peter.chen@kernel.org>
4499 M:      Pawel Laszczak <pawell@cadence.com>
4500 R:      Roger Quadros <rogerq@kernel.org>
4501 R:      Aswath Govindraju <a-govindraju@ti.com>
4502 L:      linux-usb@vger.kernel.org
4503 S:      Maintained
4504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4505 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4506 F:      drivers/usb/cdns3/
4507 X:      drivers/usb/cdns3/cdnsp*
4508
4509 CADENCE USBSSP DRD IP DRIVER
4510 M:      Pawel Laszczak <pawell@cadence.com>
4511 L:      linux-usb@vger.kernel.org
4512 S:      Maintained
4513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4514 F:      drivers/usb/cdns3/
4515 X:      drivers/usb/cdns3/cdns3*
4516
4517 CADET FM/AM RADIO RECEIVER DRIVER
4518 M:      Hans Verkuil <hverkuil@xs4all.nl>
4519 L:      linux-media@vger.kernel.org
4520 S:      Maintained
4521 W:      https://linuxtv.org
4522 T:      git git://linuxtv.org/media_tree.git
4523 F:      drivers/media/radio/radio-cadet*
4524
4525 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4526 L:      linux-media@vger.kernel.org
4527 S:      Orphan
4528 T:      git git://linuxtv.org/media_tree.git
4529 F:      Documentation/admin-guide/media/cafe_ccic*
4530 F:      drivers/media/platform/marvell/
4531
4532 CAIF NETWORK LAYER
4533 L:      netdev@vger.kernel.org
4534 S:      Orphan
4535 F:      Documentation/networking/caif/
4536 F:      drivers/net/caif/
4537 F:      include/net/caif/
4538 F:      include/uapi/linux/caif/
4539 F:      net/caif/
4540
4541 CAKE QDISC
4542 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4543 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4544 S:      Maintained
4545 F:      net/sched/sch_cake.c
4546
4547 CAN NETWORK DRIVERS
4548 M:      Wolfgang Grandegger <wg@grandegger.com>
4549 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4550 L:      linux-can@vger.kernel.org
4551 S:      Maintained
4552 W:      https://github.com/linux-can
4553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4555 F:      Documentation/devicetree/bindings/net/can/
4556 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4557 F:      drivers/net/can/
4558 F:      drivers/phy/phy-can-transceiver.c
4559 F:      include/linux/can/bittiming.h
4560 F:      include/linux/can/dev.h
4561 F:      include/linux/can/length.h
4562 F:      include/linux/can/platform/
4563 F:      include/linux/can/rx-offload.h
4564 F:      include/uapi/linux/can/error.h
4565 F:      include/uapi/linux/can/netlink.h
4566 F:      include/uapi/linux/can/vxcan.h
4567
4568 CAN NETWORK LAYER
4569 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4570 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4571 L:      linux-can@vger.kernel.org
4572 S:      Maintained
4573 W:      https://github.com/linux-can
4574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4576 F:      Documentation/networking/can.rst
4577 F:      include/linux/can/can-ml.h
4578 F:      include/linux/can/core.h
4579 F:      include/linux/can/skb.h
4580 F:      include/net/netns/can.h
4581 F:      include/uapi/linux/can.h
4582 F:      include/uapi/linux/can/bcm.h
4583 F:      include/uapi/linux/can/gw.h
4584 F:      include/uapi/linux/can/isotp.h
4585 F:      include/uapi/linux/can/raw.h
4586 F:      net/can/
4587
4588 CAN-J1939 NETWORK LAYER
4589 M:      Robin van der Gracht <robin@protonic.nl>
4590 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4591 R:      kernel@pengutronix.de
4592 L:      linux-can@vger.kernel.org
4593 S:      Maintained
4594 F:      Documentation/networking/j1939.rst
4595 F:      include/uapi/linux/can/j1939.h
4596 F:      net/can/j1939/
4597
4598 CAPABILITIES
4599 M:      Serge Hallyn <serge@hallyn.com>
4600 L:      linux-security-module@vger.kernel.org
4601 S:      Supported
4602 F:      include/linux/capability.h
4603 F:      include/uapi/linux/capability.h
4604 F:      kernel/capability.c
4605 F:      security/commoncap.c
4606
4607 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4608 M:      Kevin Tsai <ktsai@capellamicro.com>
4609 S:      Maintained
4610 F:      drivers/iio/light/cm*
4611
4612 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4613 M:      Christian Lamparter <chunkeey@googlemail.com>
4614 L:      linux-wireless@vger.kernel.org
4615 S:      Maintained
4616 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4617 F:      drivers/net/wireless/ath/carl9170/
4618
4619 CAVIUM I2C DRIVER
4620 M:      Robert Richter <rric@kernel.org>
4621 S:      Odd Fixes
4622 W:      http://www.marvell.com
4623 F:      drivers/i2c/busses/i2c-octeon*
4624 F:      drivers/i2c/busses/i2c-thunderx*
4625
4626 CAVIUM LIQUIDIO NETWORK DRIVER
4627 M:      Derek Chickles <dchickles@marvell.com>
4628 M:      Satanand Burla <sburla@marvell.com>
4629 M:      Felix Manlunas <fmanlunas@marvell.com>
4630 L:      netdev@vger.kernel.org
4631 S:      Supported
4632 W:      http://www.marvell.com
4633 F:      drivers/net/ethernet/cavium/liquidio/
4634
4635 CAVIUM MMC DRIVER
4636 M:      Robert Richter <rric@kernel.org>
4637 S:      Odd Fixes
4638 W:      http://www.marvell.com
4639 F:      drivers/mmc/host/cavium*
4640
4641 CAVIUM OCTEON-TX CRYPTO DRIVER
4642 M:      George Cherian <gcherian@marvell.com>
4643 L:      linux-crypto@vger.kernel.org
4644 S:      Supported
4645 W:      http://www.marvell.com
4646 F:      drivers/crypto/cavium/cpt/
4647
4648 CAVIUM THUNDERX2 ARM64 SOC
4649 M:      Robert Richter <rric@kernel.org>
4650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4651 S:      Odd Fixes
4652 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4653 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4654
4655 CBS/ETF/TAPRIO QDISCS
4656 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4657 S:      Maintained
4658 L:      netdev@vger.kernel.org
4659 F:      net/sched/sch_cbs.c
4660 F:      net/sched/sch_etf.c
4661 F:      net/sched/sch_taprio.c
4662
4663 CC2520 IEEE-802.15.4 RADIO DRIVER
4664 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4665 L:      linux-wpan@vger.kernel.org
4666 S:      Odd Fixes
4667 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4668 F:      drivers/net/ieee802154/cc2520.c
4669
4670 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4671 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4672 L:      linux-crypto@vger.kernel.org
4673 S:      Supported
4674 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4675 F:      drivers/crypto/ccree/
4676
4677 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4678 M:      Hadar Gat <hadar.gat@arm.com>
4679 L:      linux-crypto@vger.kernel.org
4680 S:      Supported
4681 F:      drivers/char/hw_random/cctrng.c
4682 F:      drivers/char/hw_random/cctrng.h
4683 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4684 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4685
4686 CEC FRAMEWORK
4687 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4688 L:      linux-media@vger.kernel.org
4689 S:      Supported
4690 W:      http://linuxtv.org
4691 T:      git git://linuxtv.org/media_tree.git
4692 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4693 F:      Documentation/devicetree/bindings/media/cec.txt
4694 F:      Documentation/driver-api/media/cec-core.rst
4695 F:      Documentation/userspace-api/media/cec
4696 F:      drivers/media/cec/
4697 F:      drivers/media/rc/keymaps/rc-cec.c
4698 F:      include/media/cec-notifier.h
4699 F:      include/media/cec.h
4700 F:      include/uapi/linux/cec-funcs.h
4701 F:      include/uapi/linux/cec.h
4702
4703 CEC GPIO DRIVER
4704 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4705 L:      linux-media@vger.kernel.org
4706 S:      Supported
4707 W:      http://linuxtv.org
4708 T:      git git://linuxtv.org/media_tree.git
4709 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4710 F:      drivers/media/cec/platform/cec-gpio/
4711
4712 CELL BROADBAND ENGINE ARCHITECTURE
4713 M:      Arnd Bergmann <arnd@arndb.de>
4714 L:      linuxppc-dev@lists.ozlabs.org
4715 S:      Supported
4716 W:      http://www.ibm.com/developerworks/power/cell/
4717 F:      arch/powerpc/include/asm/cell*.h
4718 F:      arch/powerpc/include/asm/spu*.h
4719 F:      arch/powerpc/include/uapi/asm/spu*.h
4720 F:      arch/powerpc/platforms/cell/
4721
4722 CELLWISE CW2015 BATTERY DRIVER
4723 M:      Tobias Schrammm <t.schramm@manjaro.org>
4724 S:      Maintained
4725 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4726 F:      drivers/power/supply/cw2015_battery.c
4727
4728 CEPH COMMON CODE (LIBCEPH)
4729 M:      Ilya Dryomov <idryomov@gmail.com>
4730 M:      Xiubo Li <xiubli@redhat.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:      include/linux/ceph/
4737 F:      include/linux/crush/
4738 F:      net/ceph/
4739
4740 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4741 M:      Xiubo Li <xiubli@redhat.com>
4742 M:      Ilya Dryomov <idryomov@gmail.com>
4743 R:      Jeff Layton <jlayton@kernel.org>
4744 L:      ceph-devel@vger.kernel.org
4745 S:      Supported
4746 W:      http://ceph.com/
4747 T:      git https://github.com/ceph/ceph-client.git
4748 F:      Documentation/filesystems/ceph.rst
4749 F:      fs/ceph/
4750
4751 CERTIFICATE HANDLING
4752 M:      David Howells <dhowells@redhat.com>
4753 M:      David Woodhouse <dwmw2@infradead.org>
4754 L:      keyrings@vger.kernel.org
4755 S:      Maintained
4756 F:      Documentation/admin-guide/module-signing.rst
4757 F:      certs/
4758 F:      scripts/sign-file.c
4759 F:      tools/certs/
4760
4761 CFAG12864B LCD DRIVER
4762 M:      Miguel Ojeda <ojeda@kernel.org>
4763 S:      Maintained
4764 F:      drivers/auxdisplay/cfag12864b.c
4765 F:      include/linux/cfag12864b.h
4766
4767 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4768 M:      Miguel Ojeda <ojeda@kernel.org>
4769 S:      Maintained
4770 F:      drivers/auxdisplay/cfag12864bfb.c
4771 F:      include/linux/cfag12864b.h
4772
4773 CHAR and MISC DRIVERS
4774 M:      Arnd Bergmann <arnd@arndb.de>
4775 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4776 S:      Supported
4777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4778 F:      drivers/char/
4779 F:      drivers/misc/
4780 F:      include/linux/miscdevice.h
4781 X:      drivers/char/agp/
4782 X:      drivers/char/hw_random/
4783 X:      drivers/char/ipmi/
4784 X:      drivers/char/random.c
4785 X:      drivers/char/tpm/
4786
4787 CHECKPATCH
4788 M:      Andy Whitcroft <apw@canonical.com>
4789 M:      Joe Perches <joe@perches.com>
4790 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4791 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4792 S:      Maintained
4793 F:      scripts/checkpatch.pl
4794
4795 CHECKPATCH DOCUMENTATION
4796 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4797 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4798 R:      Joe Perches <joe@perches.com>
4799 S:      Maintained
4800 F:      Documentation/dev-tools/checkpatch.rst
4801
4802 CHINESE DOCUMENTATION
4803 M:      Alex Shi <alexs@kernel.org>
4804 M:      Yanteng Si <siyanteng@loongson.cn>
4805 S:      Maintained
4806 F:      Documentation/translations/zh_CN/
4807
4808 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4809 M:      Peter Chen <peter.chen@kernel.org>
4810 L:      linux-usb@vger.kernel.org
4811 S:      Maintained
4812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4813 F:      drivers/usb/chipidea/
4814
4815 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4816 M:      Hans de Goede <hdegoede@redhat.com>
4817 L:      linux-input@vger.kernel.org
4818 S:      Maintained
4819 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4820 F:      drivers/input/touchscreen/chipone_icn8318.c
4821
4822 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4823 M:      Hans de Goede <hdegoede@redhat.com>
4824 L:      linux-input@vger.kernel.org
4825 S:      Maintained
4826 F:      drivers/input/touchscreen/chipone_icn8505.c
4827
4828 CHROME HARDWARE PLATFORM SUPPORT
4829 M:      Benson Leung <bleung@chromium.org>
4830 L:      chrome-platform@lists.linux.dev
4831 S:      Maintained
4832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4833 F:      drivers/platform/chrome/
4834
4835 CHROMEOS EC CODEC DRIVER
4836 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4837 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4838 R:      Guenter Roeck <groeck@chromium.org>
4839 L:      chrome-platform@lists.linux.dev
4840 S:      Maintained
4841 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4842 F:      sound/soc/codecs/cros_ec_codec.*
4843
4844 CHROMEOS EC UART DRIVER
4845 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4846 R:      Benson Leung <bleung@chromium.org>
4847 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4848 S:      Maintained
4849 F:      drivers/platform/chrome/cros_ec_uart.c
4850
4851 CHROMEOS EC SUBDRIVERS
4852 M:      Benson Leung <bleung@chromium.org>
4853 R:      Guenter Roeck <groeck@chromium.org>
4854 L:      chrome-platform@lists.linux.dev
4855 S:      Maintained
4856 F:      drivers/power/supply/cros_usbpd-charger.c
4857 N:      cros_ec
4858 N:      cros-ec
4859
4860 CHROMEOS EC USB TYPE-C DRIVER
4861 M:      Prashant Malani <pmalani@chromium.org>
4862 L:      chrome-platform@lists.linux.dev
4863 S:      Maintained
4864 F:      drivers/platform/chrome/cros_ec_typec.*
4865 F:      drivers/platform/chrome/cros_typec_switch.c
4866 F:      drivers/platform/chrome/cros_typec_vdm.*
4867
4868 CHROMEOS EC USB PD NOTIFY DRIVER
4869 M:      Prashant Malani <pmalani@chromium.org>
4870 L:      chrome-platform@lists.linux.dev
4871 S:      Maintained
4872 F:      drivers/platform/chrome/cros_usbpd_notify.c
4873 F:      include/linux/platform_data/cros_usbpd_notify.h
4874
4875 CHROMEOS HPS DRIVER
4876 M:      Dan Callaghan <dcallagh@chromium.org>
4877 R:      Sami Kyöstilä <skyostil@chromium.org>
4878 S:      Maintained
4879 F:      drivers/platform/chrome/cros_hps_i2c.c
4880
4881 CHRONTEL CH7322 CEC DRIVER
4882 M:      Joe Tessler <jrt@google.com>
4883 L:      linux-media@vger.kernel.org
4884 S:      Maintained
4885 T:      git git://linuxtv.org/media_tree.git
4886 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4887 F:      drivers/media/cec/i2c/ch7322.c
4888
4889 CIRRUS LOGIC AUDIO CODEC DRIVERS
4890 M:      James Schulman <james.schulman@cirrus.com>
4891 M:      David Rhodes <david.rhodes@cirrus.com>
4892 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4893 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4895 L:      patches@opensource.cirrus.com
4896 S:      Maintained
4897 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4898 F:      include/dt-bindings/sound/cs*
4899 F:      sound/pci/hda/cs*
4900 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4901 F:      sound/soc/codecs/cs*
4902
4903 CIRRUS LOGIC DSP FIRMWARE DRIVER
4904 M:      Simon Trimmer <simont@opensource.cirrus.com>
4905 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4906 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4907 L:      patches@opensource.cirrus.com
4908 S:      Supported
4909 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4910 T:      git https://github.com/CirrusLogic/linux-drivers.git
4911 F:      drivers/firmware/cirrus/*
4912 F:      include/linux/firmware/cirrus/*
4913
4914 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4915 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4916 L:      netdev@vger.kernel.org
4917 S:      Maintained
4918 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4919
4920 CIRRUS LOGIC LOCHNAGAR DRIVER
4921 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4922 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4923 L:      patches@opensource.cirrus.com
4924 S:      Supported
4925 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4926 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4927 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4928 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4929 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4930 F:      Documentation/hwmon/lochnagar.rst
4931 F:      drivers/clk/clk-lochnagar.c
4932 F:      drivers/hwmon/lochnagar-hwmon.c
4933 F:      drivers/mfd/lochnagar-i2c.c
4934 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4935 F:      drivers/regulator/lochnagar-regulator.c
4936 F:      include/dt-bindings/clock/lochnagar.h
4937 F:      include/dt-bindings/pinctrl/lochnagar.h
4938 F:      include/linux/mfd/lochnagar*
4939 F:      sound/soc/codecs/lochnagar-sc.c
4940
4941 CIRRUS LOGIC MADERA CODEC DRIVERS
4942 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4943 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4945 L:      patches@opensource.cirrus.com
4946 S:      Supported
4947 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4948 T:      git https://github.com/CirrusLogic/linux-drivers.git
4949 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4950 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4951 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4952 F:      drivers/gpio/gpio-madera*
4953 F:      drivers/irqchip/irq-madera*
4954 F:      drivers/mfd/cs47l*
4955 F:      drivers/mfd/madera*
4956 F:      drivers/pinctrl/cirrus/*
4957 F:      include/dt-bindings/sound/madera*
4958 F:      include/linux/irqchip/irq-madera*
4959 F:      include/linux/mfd/madera/*
4960 F:      include/sound/madera*
4961 F:      sound/soc/codecs/cs47l*
4962 F:      sound/soc/codecs/madera*
4963
4964 CISCO FCOE HBA DRIVER
4965 M:      Satish Kharat <satishkh@cisco.com>
4966 M:      Sesidhar Baddela <sebaddel@cisco.com>
4967 M:      Karan Tilak Kumar <kartilak@cisco.com>
4968 L:      linux-scsi@vger.kernel.org
4969 S:      Supported
4970 F:      drivers/scsi/fnic/
4971
4972 CISCO SCSI HBA DRIVER
4973 M:      Karan Tilak Kumar <kartilak@cisco.com>
4974 M:      Sesidhar Baddela <sebaddel@cisco.com>
4975 L:      linux-scsi@vger.kernel.org
4976 S:      Supported
4977 F:      drivers/scsi/snic/
4978
4979 CISCO VIC ETHERNET NIC DRIVER
4980 M:      Christian Benvenuti <benve@cisco.com>
4981 M:      Satish Kharat <satishkh@cisco.com>
4982 S:      Supported
4983 F:      drivers/net/ethernet/cisco/enic/
4984
4985 CISCO VIC LOW LATENCY NIC DRIVER
4986 M:      Christian Benvenuti <benve@cisco.com>
4987 M:      Nelson Escobar <neescoba@cisco.com>
4988 S:      Supported
4989 F:      drivers/infiniband/hw/usnic/
4990
4991 CLANG-FORMAT FILE
4992 M:      Miguel Ojeda <ojeda@kernel.org>
4993 S:      Maintained
4994 F:      .clang-format
4995
4996 CLANG/LLVM BUILD SUPPORT
4997 M:      Nathan Chancellor <nathan@kernel.org>
4998 M:      Nick Desaulniers <ndesaulniers@google.com>
4999 R:      Tom Rix <trix@redhat.com>
5000 L:      llvm@lists.linux.dev
5001 S:      Supported
5002 W:      https://clangbuiltlinux.github.io/
5003 B:      https://github.com/ClangBuiltLinux/linux/issues
5004 C:      irc://irc.libera.chat/clangbuiltlinux
5005 F:      Documentation/kbuild/llvm.rst
5006 F:      include/linux/compiler-clang.h
5007 F:      scripts/Makefile.clang
5008 F:      scripts/clang-tools/
5009 K:      \b(?i:clang|llvm)\b
5010
5011 CLANG CONTROL FLOW INTEGRITY SUPPORT
5012 M:      Sami Tolvanen <samitolvanen@google.com>
5013 M:      Kees Cook <keescook@chromium.org>
5014 R:      Nathan Chancellor <nathan@kernel.org>
5015 R:      Nick Desaulniers <ndesaulniers@google.com>
5016 L:      llvm@lists.linux.dev
5017 S:      Supported
5018 B:      https://github.com/ClangBuiltLinux/linux/issues
5019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5020 F:      include/linux/cfi.h
5021 F:      kernel/cfi.c
5022
5023 CLK API
5024 M:      Russell King <linux@armlinux.org.uk>
5025 L:      linux-clk@vger.kernel.org
5026 S:      Maintained
5027 F:      include/linux/clk.h
5028
5029 CLOCKSOURCE, CLOCKEVENT DRIVERS
5030 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5031 M:      Thomas Gleixner <tglx@linutronix.de>
5032 L:      linux-kernel@vger.kernel.org
5033 S:      Supported
5034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5035 F:      Documentation/devicetree/bindings/timer/
5036 F:      drivers/clocksource/
5037
5038 CMPC ACPI DRIVER
5039 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5040 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5041 L:      platform-driver-x86@vger.kernel.org
5042 S:      Supported
5043 F:      drivers/platform/x86/classmate-laptop.c
5044
5045 COBALT MEDIA DRIVER
5046 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5047 L:      linux-media@vger.kernel.org
5048 S:      Supported
5049 W:      https://linuxtv.org
5050 T:      git git://linuxtv.org/media_tree.git
5051 F:      drivers/media/pci/cobalt/
5052
5053 COCCINELLE/Semantic Patches (SmPL)
5054 M:      Julia Lawall <Julia.Lawall@inria.fr>
5055 M:      Nicolas Palix <nicolas.palix@imag.fr>
5056 L:      cocci@inria.fr (moderated for non-subscribers)
5057 S:      Supported
5058 W:      https://coccinelle.gitlabpages.inria.fr/website/
5059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5060 F:      Documentation/dev-tools/coccinelle.rst
5061 F:      scripts/coccicheck
5062 F:      scripts/coccinelle/
5063
5064 CODA FILE SYSTEM
5065 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5066 M:      coda@cs.cmu.edu
5067 L:      codalist@coda.cs.cmu.edu
5068 S:      Maintained
5069 W:      http://www.coda.cs.cmu.edu/
5070 F:      Documentation/filesystems/coda.rst
5071 F:      fs/coda/
5072 F:      include/linux/coda*.h
5073 F:      include/uapi/linux/coda*.h
5074
5075 CODA V4L2 MEM2MEM DRIVER
5076 M:      Philipp Zabel <p.zabel@pengutronix.de>
5077 L:      linux-media@vger.kernel.org
5078 S:      Maintained
5079 F:      Documentation/devicetree/bindings/media/coda.yaml
5080 F:      drivers/media/platform/chips-media/
5081
5082 CODE OF CONDUCT
5083 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5084 S:      Supported
5085 F:      Documentation/process/code-of-conduct-interpretation.rst
5086 F:      Documentation/process/code-of-conduct.rst
5087
5088 COMEDI DRIVERS
5089 M:      Ian Abbott <abbotti@mev.co.uk>
5090 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5091 S:      Odd Fixes
5092 F:      drivers/comedi/
5093 F:      include/linux/comedi/
5094 F:      include/uapi/linux/comedi.h
5095
5096 COMMON CLK FRAMEWORK
5097 M:      Michael Turquette <mturquette@baylibre.com>
5098 M:      Stephen Boyd <sboyd@kernel.org>
5099 L:      linux-clk@vger.kernel.org
5100 S:      Maintained
5101 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5103 F:      Documentation/devicetree/bindings/clock/
5104 F:      drivers/clk/
5105 F:      include/dt-bindings/clock/
5106 F:      include/linux/clk-pr*
5107 F:      include/linux/clk/
5108 F:      include/linux/of_clk.h
5109 X:      drivers/clk/clkdev.c
5110
5111 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5112 M:      Steve French <sfrench@samba.org>
5113 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5114 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5115 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5116 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5117 L:      linux-cifs@vger.kernel.org
5118 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5119 S:      Supported
5120 W:      https://wiki.samba.org/index.php/LinuxCIFS
5121 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5122 F:      Documentation/admin-guide/cifs/
5123 F:      fs/cifs/
5124 F:      fs/smbfs_common/
5125 F:      include/uapi/linux/cifs
5126
5127 COMPACTPCI HOTPLUG CORE
5128 M:      Scott Murray <scott@spiteful.org>
5129 L:      linux-pci@vger.kernel.org
5130 S:      Maintained
5131 F:      drivers/pci/hotplug/cpci_hotplug*
5132
5133 COMPACTPCI HOTPLUG GENERIC DRIVER
5134 M:      Scott Murray <scott@spiteful.org>
5135 L:      linux-pci@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/pci/hotplug/cpcihp_generic.c
5138
5139 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5140 M:      Scott Murray <scott@spiteful.org>
5141 L:      linux-pci@vger.kernel.org
5142 S:      Maintained
5143 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5144
5145 COMPAL LAPTOP SUPPORT
5146 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5147 L:      platform-driver-x86@vger.kernel.org
5148 S:      Maintained
5149 F:      drivers/platform/x86/compal-laptop.c
5150
5151 COMPILER ATTRIBUTES
5152 M:      Miguel Ojeda <ojeda@kernel.org>
5153 R:      Nick Desaulniers <ndesaulniers@google.com>
5154 S:      Maintained
5155 F:      include/linux/compiler_attributes.h
5156
5157 COMPUTE EXPRESS LINK (CXL)
5158 M:      Alison Schofield <alison.schofield@intel.com>
5159 M:      Vishal Verma <vishal.l.verma@intel.com>
5160 M:      Ira Weiny <ira.weiny@intel.com>
5161 M:      Ben Widawsky <bwidawsk@kernel.org>
5162 M:      Dan Williams <dan.j.williams@intel.com>
5163 L:      linux-cxl@vger.kernel.org
5164 S:      Maintained
5165 F:      drivers/cxl/
5166 F:      include/uapi/linux/cxl_mem.h
5167
5168 CONEXANT ACCESSRUNNER USB DRIVER
5169 L:      accessrunner-general@lists.sourceforge.net
5170 S:      Orphan
5171 W:      http://accessrunner.sourceforge.net/
5172 F:      drivers/usb/atm/cxacru.c
5173
5174 CONFIGFS
5175 M:      Joel Becker <jlbec@evilplan.org>
5176 M:      Christoph Hellwig <hch@lst.de>
5177 S:      Supported
5178 T:      git git://git.infradead.org/users/hch/configfs.git
5179 F:      fs/configfs/
5180 F:      include/linux/configfs.h
5181 F:      samples/configfs/
5182
5183 CONSOLE SUBSYSTEM
5184 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5185 S:      Supported
5186 F:      drivers/video/console/
5187 F:      include/linux/console*
5188
5189 CONTEXT TRACKING
5190 M:      Frederic Weisbecker <frederic@kernel.org>
5191 M:      "Paul E. McKenney" <paulmck@kernel.org>
5192 S:      Maintained
5193 F:      kernel/context_tracking.c
5194 F:      include/linux/context_tracking*
5195
5196 CONTROL GROUP (CGROUP)
5197 M:      Tejun Heo <tj@kernel.org>
5198 M:      Zefan Li <lizefan.x@bytedance.com>
5199 M:      Johannes Weiner <hannes@cmpxchg.org>
5200 L:      cgroups@vger.kernel.org
5201 S:      Maintained
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5203 F:      Documentation/admin-guide/cgroup-v1/
5204 F:      Documentation/admin-guide/cgroup-v2.rst
5205 F:      include/linux/cgroup*
5206 F:      kernel/cgroup/
5207 F:      tools/testing/selftests/cgroup/
5208
5209 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5210 M:      Tejun Heo <tj@kernel.org>
5211 M:      Josef Bacik <josef@toxicpanda.com>
5212 M:      Jens Axboe <axboe@kernel.dk>
5213 L:      cgroups@vger.kernel.org
5214 L:      linux-block@vger.kernel.org
5215 T:      git git://git.kernel.dk/linux-block
5216 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5217 F:      block/bfq-cgroup.c
5218 F:      block/blk-cgroup.c
5219 F:      block/blk-iocost.c
5220 F:      block/blk-iolatency.c
5221 F:      block/blk-throttle.c
5222 F:      include/linux/blk-cgroup.h
5223
5224 CONTROL GROUP - CPUSET
5225 M:      Waiman Long <longman@redhat.com>
5226 M:      Zefan Li <lizefan.x@bytedance.com>
5227 L:      cgroups@vger.kernel.org
5228 S:      Maintained
5229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5230 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5231 F:      include/linux/cpuset.h
5232 F:      kernel/cgroup/cpuset.c
5233
5234 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5235 M:      Johannes Weiner <hannes@cmpxchg.org>
5236 M:      Michal Hocko <mhocko@kernel.org>
5237 M:      Roman Gushchin <roman.gushchin@linux.dev>
5238 M:      Shakeel Butt <shakeelb@google.com>
5239 R:      Muchun Song <muchun.song@linux.dev>
5240 L:      cgroups@vger.kernel.org
5241 L:      linux-mm@kvack.org
5242 S:      Maintained
5243 F:      mm/memcontrol.c
5244 F:      mm/swap_cgroup.c
5245 F:      tools/testing/selftests/cgroup/memcg_protection.m
5246 F:      tools/testing/selftests/cgroup/test_kmem.c
5247 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5248
5249 CORETEMP HARDWARE MONITORING DRIVER
5250 M:      Fenghua Yu <fenghua.yu@intel.com>
5251 L:      linux-hwmon@vger.kernel.org
5252 S:      Maintained
5253 F:      Documentation/hwmon/coretemp.rst
5254 F:      drivers/hwmon/coretemp.c
5255
5256 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5257 M:      Marius Zachmann <mail@mariuszachmann.de>
5258 L:      linux-hwmon@vger.kernel.org
5259 S:      Maintained
5260 F:      drivers/hwmon/corsair-cpro.c
5261
5262 CORSAIR-PSU HARDWARE MONITOR DRIVER
5263 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5264 L:      linux-hwmon@vger.kernel.org
5265 S:      Maintained
5266 F:      Documentation/hwmon/corsair-psu.rst
5267 F:      drivers/hwmon/corsair-psu.c
5268
5269 COUNTER SUBSYSTEM
5270 M:      William Breathitt Gray <william.gray@linaro.org>
5271 L:      linux-iio@vger.kernel.org
5272 S:      Maintained
5273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5274 F:      Documentation/ABI/testing/sysfs-bus-counter
5275 F:      Documentation/driver-api/generic-counter.rst
5276 F:      drivers/counter/
5277 F:      include/linux/counter.h
5278 F:      include/uapi/linux/counter.h
5279 F:      tools/counter/
5280
5281 CP2615 I2C DRIVER
5282 M:      Bence Csókás <bence98@sch.bme.hu>
5283 S:      Maintained
5284 F:      drivers/i2c/busses/i2c-cp2615.c
5285
5286 CPMAC ETHERNET DRIVER
5287 M:      Florian Fainelli <f.fainelli@gmail.com>
5288 L:      netdev@vger.kernel.org
5289 S:      Maintained
5290 F:      drivers/net/ethernet/ti/cpmac.c
5291
5292 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5293 M:      Viresh Kumar <viresh.kumar@linaro.org>
5294 M:      Sudeep Holla <sudeep.holla@arm.com>
5295 L:      linux-pm@vger.kernel.org
5296 S:      Maintained
5297 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5298 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5299
5300 CPU FREQUENCY SCALING FRAMEWORK
5301 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5302 M:      Viresh Kumar <viresh.kumar@linaro.org>
5303 L:      linux-pm@vger.kernel.org
5304 S:      Maintained
5305 B:      https://bugzilla.kernel.org
5306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5308 F:      Documentation/admin-guide/pm/cpufreq.rst
5309 F:      Documentation/admin-guide/pm/intel_pstate.rst
5310 F:      Documentation/cpu-freq/
5311 F:      Documentation/devicetree/bindings/cpufreq/
5312 F:      drivers/cpufreq/
5313 F:      include/linux/cpufreq.h
5314 F:      include/linux/sched/cpufreq.h
5315 F:      kernel/sched/cpufreq*.c
5316 F:      tools/testing/selftests/cpufreq/
5317
5318 CPU IDLE TIME MANAGEMENT FRAMEWORK
5319 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5320 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5321 L:      linux-pm@vger.kernel.org
5322 S:      Maintained
5323 B:      https://bugzilla.kernel.org
5324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5325 F:      Documentation/admin-guide/pm/cpuidle.rst
5326 F:      Documentation/driver-api/pm/cpuidle.rst
5327 F:      drivers/cpuidle/
5328 F:      include/linux/cpuidle.h
5329
5330 CPU POWER MONITORING SUBSYSTEM
5331 M:      Thomas Renninger <trenn@suse.com>
5332 M:      Shuah Khan <shuah@kernel.org>
5333 M:      Shuah Khan <skhan@linuxfoundation.org>
5334 L:      linux-pm@vger.kernel.org
5335 S:      Maintained
5336 F:      tools/power/cpupower/
5337
5338 CPUID/MSR DRIVER
5339 M:      "H. Peter Anvin" <hpa@zytor.com>
5340 S:      Maintained
5341 F:      arch/x86/kernel/cpuid.c
5342 F:      arch/x86/kernel/msr.c
5343
5344 CPUIDLE DRIVER - ARM BIG LITTLE
5345 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5346 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5347 L:      linux-pm@vger.kernel.org
5348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5349 S:      Maintained
5350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5351 F:      drivers/cpuidle/cpuidle-big_little.c
5352
5353 CPUIDLE DRIVER - ARM EXYNOS
5354 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5355 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5356 M:      Kukjin Kim <kgene@kernel.org>
5357 L:      linux-pm@vger.kernel.org
5358 L:      linux-samsung-soc@vger.kernel.org
5359 S:      Supported
5360 F:      arch/arm/mach-exynos/pm.c
5361 F:      drivers/cpuidle/cpuidle-exynos.c
5362 F:      include/linux/platform_data/cpuidle-exynos.h
5363
5364 CPUIDLE DRIVER - ARM PSCI
5365 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5366 M:      Sudeep Holla <sudeep.holla@arm.com>
5367 L:      linux-pm@vger.kernel.org
5368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5369 S:      Supported
5370 F:      drivers/cpuidle/cpuidle-psci.c
5371
5372 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5373 M:      Ulf Hansson <ulf.hansson@linaro.org>
5374 L:      linux-pm@vger.kernel.org
5375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5376 S:      Supported
5377 F:      drivers/cpuidle/cpuidle-psci.h
5378 F:      drivers/cpuidle/cpuidle-psci-domain.c
5379
5380 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5381 M:      Ulf Hansson <ulf.hansson@linaro.org>
5382 L:      linux-pm@vger.kernel.org
5383 S:      Supported
5384 F:      drivers/cpuidle/dt_idle_genpd.c
5385 F:      drivers/cpuidle/dt_idle_genpd.h
5386
5387 CPUIDLE DRIVER - RISC-V SBI
5388 M:      Anup Patel <anup@brainfault.org>
5389 L:      linux-pm@vger.kernel.org
5390 L:      linux-riscv@lists.infradead.org
5391 S:      Maintained
5392 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5393
5394 CRAMFS FILESYSTEM
5395 M:      Nicolas Pitre <nico@fluxnic.net>
5396 S:      Maintained
5397 F:      Documentation/filesystems/cramfs.rst
5398 F:      fs/cramfs/
5399
5400 CREATIVE SB0540
5401 M:      Bastien Nocera <hadess@hadess.net>
5402 L:      linux-input@vger.kernel.org
5403 S:      Maintained
5404 F:      drivers/hid/hid-creative-sb0540.c
5405
5406 CRYPTO API
5407 M:      Herbert Xu <herbert@gondor.apana.org.au>
5408 M:      "David S. Miller" <davem@davemloft.net>
5409 L:      linux-crypto@vger.kernel.org
5410 S:      Maintained
5411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5413 F:      Documentation/crypto/
5414 F:      Documentation/devicetree/bindings/crypto/
5415 F:      arch/*/crypto/
5416 F:      crypto/
5417 F:      drivers/crypto/
5418 F:      include/crypto/
5419 F:      include/linux/crypto*
5420 F:      lib/crypto/
5421
5422 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5423 M:      Neil Horman <nhorman@tuxdriver.com>
5424 L:      linux-crypto@vger.kernel.org
5425 S:      Maintained
5426 F:      crypto/ansi_cprng.c
5427 F:      crypto/rng.c
5428
5429 CS3308 MEDIA DRIVER
5430 M:      Hans Verkuil <hverkuil@xs4all.nl>
5431 L:      linux-media@vger.kernel.org
5432 S:      Odd Fixes
5433 W:      http://linuxtv.org
5434 T:      git git://linuxtv.org/media_tree.git
5435 F:      drivers/media/i2c/cs3308.c
5436
5437 CS5535 Audio ALSA driver
5438 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5439 S:      Maintained
5440 F:      sound/pci/cs5535audio/
5441
5442 CTU CAN FD DRIVER
5443 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5444 M:      Ondrej Ille <ondrej.ille@gmail.com>
5445 L:      linux-can@vger.kernel.org
5446 S:      Maintained
5447 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5448 F:      drivers/net/can/ctucanfd/
5449
5450 CW1200 WLAN driver
5451 M:      Solomon Peachy <pizza@shaftnet.org>
5452 S:      Maintained
5453 F:      drivers/net/wireless/st/cw1200/
5454
5455 CX18 VIDEO4LINUX DRIVER
5456 M:      Andy Walls <awalls@md.metrocast.net>
5457 L:      linux-media@vger.kernel.org
5458 S:      Maintained
5459 W:      https://linuxtv.org
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      drivers/media/pci/cx18/
5462 F:      include/uapi/linux/ivtv*
5463
5464 CX2341X MPEG ENCODER HELPER MODULE
5465 M:      Hans Verkuil <hverkuil@xs4all.nl>
5466 L:      linux-media@vger.kernel.org
5467 S:      Maintained
5468 W:      https://linuxtv.org
5469 T:      git git://linuxtv.org/media_tree.git
5470 F:      drivers/media/common/cx2341x*
5471 F:      include/media/drv-intf/cx2341x.h
5472
5473 CX24120 MEDIA DRIVER
5474 M:      Jemma Denson <jdenson@gmail.com>
5475 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5476 L:      linux-media@vger.kernel.org
5477 S:      Maintained
5478 W:      https://linuxtv.org
5479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5480 F:      drivers/media/dvb-frontends/cx24120*
5481
5482 CX88 VIDEO4LINUX DRIVER
5483 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5484 L:      linux-media@vger.kernel.org
5485 S:      Odd fixes
5486 W:      https://linuxtv.org
5487 T:      git git://linuxtv.org/media_tree.git
5488 F:      Documentation/driver-api/media/drivers/cx88*
5489 F:      drivers/media/pci/cx88/
5490
5491 CXD2820R MEDIA DRIVER
5492 M:      Antti Palosaari <crope@iki.fi>
5493 L:      linux-media@vger.kernel.org
5494 S:      Maintained
5495 W:      https://linuxtv.org
5496 W:      http://palosaari.fi/linux/
5497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5498 T:      git git://linuxtv.org/anttip/media_tree.git
5499 F:      drivers/media/dvb-frontends/cxd2820r*
5500
5501 CXGB3 ETHERNET DRIVER (CXGB3)
5502 M:      Raju Rangoju <rajur@chelsio.com>
5503 L:      netdev@vger.kernel.org
5504 S:      Supported
5505 W:      http://www.chelsio.com
5506 F:      drivers/net/ethernet/chelsio/cxgb3/
5507
5508 CXGB3 ISCSI DRIVER (CXGB3I)
5509 M:      Varun Prakash <varun@chelsio.com>
5510 L:      linux-scsi@vger.kernel.org
5511 S:      Supported
5512 W:      http://www.chelsio.com
5513 F:      drivers/scsi/cxgbi/cxgb3i
5514
5515 CXGB4 CRYPTO DRIVER (chcr)
5516 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5517 L:      linux-crypto@vger.kernel.org
5518 S:      Supported
5519 W:      http://www.chelsio.com
5520 F:      drivers/crypto/chelsio
5521
5522 CXGB4 INLINE CRYPTO DRIVER
5523 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5524 L:      netdev@vger.kernel.org
5525 S:      Supported
5526 W:      http://www.chelsio.com
5527 F:      drivers/net/ethernet/chelsio/inline_crypto/
5528
5529 CXGB4 ETHERNET DRIVER (CXGB4)
5530 M:      Raju Rangoju <rajur@chelsio.com>
5531 L:      netdev@vger.kernel.org
5532 S:      Supported
5533 W:      http://www.chelsio.com
5534 F:      drivers/net/ethernet/chelsio/cxgb4/
5535
5536 CXGB4 ISCSI DRIVER (CXGB4I)
5537 M:      Varun Prakash <varun@chelsio.com>
5538 L:      linux-scsi@vger.kernel.org
5539 S:      Supported
5540 W:      http://www.chelsio.com
5541 F:      drivers/scsi/cxgbi/cxgb4i
5542
5543 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5544 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5545 L:      linux-rdma@vger.kernel.org
5546 S:      Supported
5547 W:      http://www.openfabrics.org
5548 F:      drivers/infiniband/hw/cxgb4/
5549 F:      include/uapi/rdma/cxgb4-abi.h
5550
5551 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5552 M:      Raju Rangoju <rajur@chelsio.com>
5553 L:      netdev@vger.kernel.org
5554 S:      Supported
5555 W:      http://www.chelsio.com
5556 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5557
5558 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5559 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5560 M:      Andrew Donnellan <ajd@linux.ibm.com>
5561 L:      linuxppc-dev@lists.ozlabs.org
5562 S:      Supported
5563 F:      Documentation/ABI/testing/sysfs-class-cxl
5564 F:      Documentation/powerpc/cxl.rst
5565 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5566 F:      drivers/misc/cxl/
5567 F:      include/misc/cxl*
5568 F:      include/uapi/misc/cxl.h
5569
5570 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5571 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5572 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5573 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5574 L:      linux-scsi@vger.kernel.org
5575 S:      Supported
5576 F:      Documentation/powerpc/cxlflash.rst
5577 F:      drivers/scsi/cxlflash/
5578 F:      include/uapi/scsi/cxlflash_ioctl.h
5579
5580 CYBERPRO FB DRIVER
5581 M:      Russell King <linux@armlinux.org.uk>
5582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5583 S:      Maintained
5584 W:      http://www.armlinux.org.uk/
5585 F:      drivers/video/fbdev/cyber2000fb.*
5586
5587 CYCLADES PC300 DRIVER
5588 S:      Orphan
5589 F:      drivers/net/wan/pc300*
5590
5591 CYPRESS_FIRMWARE MEDIA DRIVER
5592 M:      Antti Palosaari <crope@iki.fi>
5593 L:      linux-media@vger.kernel.org
5594 S:      Maintained
5595 W:      https://linuxtv.org
5596 W:      http://palosaari.fi/linux/
5597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5598 T:      git git://linuxtv.org/anttip/media_tree.git
5599 F:      drivers/media/common/cypress_firmware*
5600
5601 CYPRESS CY8C95X0 PINCTRL DRIVER
5602 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5603 L:      linux-gpio@vger.kernel.org
5604 S:      Maintained
5605 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5606
5607 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5608 M:      Linus Walleij <linus.walleij@linaro.org>
5609 L:      linux-input@vger.kernel.org
5610 S:      Maintained
5611 F:      drivers/input/touchscreen/cy8ctma140.c
5612
5613 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5614 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5615 L:      linux-input@vger.kernel.org
5616 S:      Maintained
5617 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5618 F:      drivers/input/keyboard/cypress-sf.c
5619
5620 CYTTSP TOUCHSCREEN DRIVER
5621 M:      Linus Walleij <linus.walleij@linaro.org>
5622 L:      linux-input@vger.kernel.org
5623 S:      Maintained
5624 F:      drivers/input/touchscreen/cyttsp*
5625
5626 D-LINK DIR-685 TOUCHKEYS DRIVER
5627 M:      Linus Walleij <linus.walleij@linaro.org>
5628 L:      linux-input@vger.kernel.org
5629 S:      Supported
5630 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5631
5632 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5633 M:      Joshua Kinard <kumba@gentoo.org>
5634 S:      Maintained
5635 F:      drivers/rtc/rtc-ds1685.c
5636 F:      include/linux/rtc/ds1685.h
5637
5638 DAMA SLAVE for AX.25
5639 M:      Joerg Reuter <jreuter@yaina.de>
5640 L:      linux-hams@vger.kernel.org
5641 S:      Maintained
5642 W:      http://yaina.de/jreuter/
5643 W:      http://www.qsl.net/dl1bke/
5644 F:      net/ax25/af_ax25.c
5645 F:      net/ax25/ax25_dev.c
5646 F:      net/ax25/ax25_ds_*
5647 F:      net/ax25/ax25_in.c
5648 F:      net/ax25/ax25_out.c
5649 F:      net/ax25/ax25_timer.c
5650 F:      net/ax25/sysctl_net_ax25.c
5651
5652 DATA ACCESS MONITOR
5653 M:      SeongJae Park <sj@kernel.org>
5654 L:      damon@lists.linux.dev
5655 L:      linux-mm@kvack.org
5656 S:      Maintained
5657 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5658 F:      Documentation/admin-guide/mm/damon/
5659 F:      Documentation/mm/damon/
5660 F:      include/linux/damon.h
5661 F:      include/trace/events/damon.h
5662 F:      mm/damon/
5663 F:      tools/testing/selftests/damon/
5664
5665 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5666 L:      netdev@vger.kernel.org
5667 S:      Orphan
5668 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5669 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5670
5671 DC390/AM53C974 SCSI driver
5672 M:      Hannes Reinecke <hare@suse.com>
5673 L:      linux-scsi@vger.kernel.org
5674 S:      Maintained
5675 F:      drivers/scsi/am53c974.c
5676
5677 DC395x SCSI driver
5678 M:      Oliver Neukum <oliver@neukum.org>
5679 M:      Ali Akcaagac <aliakc@web.de>
5680 M:      Jamie Lenehan <lenehan@twibble.org>
5681 L:      dc395x@twibble.org
5682 S:      Maintained
5683 W:      http://twibble.org/dist/dc395x/
5684 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5685 F:      Documentation/scsi/dc395x.rst
5686 F:      drivers/scsi/dc395x.*
5687
5688 DCCP PROTOCOL
5689 L:      dccp@vger.kernel.org
5690 S:      Orphan
5691 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5692 F:      include/linux/dccp.h
5693 F:      include/linux/tfrc.h
5694 F:      include/uapi/linux/dccp.h
5695 F:      net/dccp/
5696
5697 DECSTATION PLATFORM SUPPORT
5698 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5699 L:      linux-mips@vger.kernel.org
5700 S:      Maintained
5701 W:      http://www.linux-mips.org/wiki/DECstation
5702 F:      arch/mips/dec/
5703 F:      arch/mips/include/asm/dec/
5704 F:      arch/mips/include/asm/mach-dec/
5705
5706 DEFXX FDDI NETWORK DRIVER
5707 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5708 S:      Maintained
5709 F:      drivers/net/fddi/defxx.*
5710
5711 DEFZA FDDI NETWORK DRIVER
5712 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5713 S:      Maintained
5714 F:      drivers/net/fddi/defza.*
5715
5716 DEINTERLACE DRIVERS FOR ALLWINNER H3
5717 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5718 L:      linux-media@vger.kernel.org
5719 S:      Maintained
5720 T:      git git://linuxtv.org/media_tree.git
5721 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5722 F:      drivers/media/platform/sunxi/sun8i-di/
5723
5724 DELL LAPTOP DRIVER
5725 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5726 M:      Pali Rohár <pali@kernel.org>
5727 L:      platform-driver-x86@vger.kernel.org
5728 S:      Maintained
5729 F:      drivers/platform/x86/dell/dell-laptop.c
5730
5731 DELL LAPTOP FREEFALL DRIVER
5732 M:      Pali Rohár <pali@kernel.org>
5733 S:      Maintained
5734 F:      drivers/platform/x86/dell/dell-smo8800.c
5735
5736 DELL LAPTOP RBTN DRIVER
5737 M:      Pali Rohár <pali@kernel.org>
5738 S:      Maintained
5739 F:      drivers/platform/x86/dell/dell-rbtn.*
5740
5741 DELL LAPTOP SMM DRIVER
5742 M:      Pali Rohár <pali@kernel.org>
5743 S:      Maintained
5744 F:      Documentation/ABI/obsolete/procfs-i8k
5745 F:      drivers/hwmon/dell-smm-hwmon.c
5746 F:      include/uapi/linux/i8k.h
5747
5748 DELL REMOTE BIOS UPDATE DRIVER
5749 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5750 L:      platform-driver-x86@vger.kernel.org
5751 S:      Maintained
5752 F:      drivers/platform/x86/dell/dell_rbu.c
5753
5754 DELL SMBIOS DRIVER
5755 M:      Pali Rohár <pali@kernel.org>
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.*
5760
5761 DELL SMBIOS SMM DRIVER
5762 L:      Dell.Client.Kernel@dell.com
5763 L:      platform-driver-x86@vger.kernel.org
5764 S:      Maintained
5765 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5766
5767 DELL SMBIOS WMI DRIVER
5768 L:      Dell.Client.Kernel@dell.com
5769 L:      platform-driver-x86@vger.kernel.org
5770 S:      Maintained
5771 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5772 F:      tools/wmi/dell-smbios-example.c
5773
5774 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5775 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5776 L:      platform-driver-x86@vger.kernel.org
5777 S:      Maintained
5778 F:      Documentation/driver-api/dcdbas.rst
5779 F:      drivers/platform/x86/dell/dcdbas.*
5780
5781 DELL WMI DESCRIPTOR DRIVER
5782 L:      Dell.Client.Kernel@dell.com
5783 S:      Maintained
5784 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5785
5786 DELL WMI DDV DRIVER
5787 M:      Armin Wolf <W_Armin@gmx.de>
5788 S:      Maintained
5789 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5790 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5791 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5792
5793 DELL WMI SYSMAN DRIVER
5794 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5795 L:      Dell.Client.Kernel@dell.com
5796 L:      platform-driver-x86@vger.kernel.org
5797 S:      Maintained
5798 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5799 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5800
5801 DELL WMI NOTIFICATIONS DRIVER
5802 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5803 M:      Pali Rohár <pali@kernel.org>
5804 S:      Maintained
5805 F:      drivers/platform/x86/dell/dell-wmi-base.c
5806
5807 DELL WMI HARDWARE PRIVACY SUPPORT
5808 M:      Perry Yuan <Perry.Yuan@dell.com>
5809 L:      Dell.Client.Kernel@dell.com
5810 L:      platform-driver-x86@vger.kernel.org
5811 S:      Maintained
5812 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5813
5814 DELTA ST MEDIA DRIVER
5815 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5816 L:      linux-media@vger.kernel.org
5817 S:      Supported
5818 W:      https://linuxtv.org
5819 T:      git git://linuxtv.org/media_tree.git
5820 F:      drivers/media/platform/st/sti/delta
5821
5822 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5823 M:      Zev Weiss <zev@bewilderbeest.net>
5824 L:      linux-hwmon@vger.kernel.org
5825 S:      Maintained
5826 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5827
5828 DELTA DPS920AB PSU DRIVER
5829 M:      Robert Marko <robert.marko@sartura.hr>
5830 L:      linux-hwmon@vger.kernel.org
5831 S:      Maintained
5832 F:      Documentation/hwmon/dps920ab.rst
5833 F:      drivers/hwmon/pmbus/dps920ab.c
5834
5835 DELTA NETWORKS TN48M CPLD DRIVERS
5836 M:      Robert Marko <robert.marko@sartura.hr>
5837 S:      Maintained
5838 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5839 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5840 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5841 F:      drivers/gpio/gpio-tn48m.c
5842 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5843
5844 DENALI NAND DRIVER
5845 L:      linux-mtd@lists.infradead.org
5846 S:      Orphan
5847 F:      drivers/mtd/nand/raw/denali*
5848
5849 DESIGNWARE EDMA CORE IP DRIVER
5850 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5851 L:      dmaengine@vger.kernel.org
5852 S:      Maintained
5853 F:      drivers/dma/dw-edma/
5854 F:      include/linux/dma/edma.h
5855
5856 DESIGNWARE XDATA IP DRIVER
5857 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5858 L:      linux-pci@vger.kernel.org
5859 S:      Maintained
5860 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5861 F:      drivers/misc/dw-xdata-pcie.c
5862
5863 DESIGNWARE USB2 DRD IP DRIVER
5864 M:      Minas Harutyunyan <hminas@synopsys.com>
5865 L:      linux-usb@vger.kernel.org
5866 S:      Maintained
5867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5868 F:      drivers/usb/dwc2/
5869
5870 DESIGNWARE USB3 DRD IP DRIVER
5871 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5872 L:      linux-usb@vger.kernel.org
5873 S:      Maintained
5874 F:      drivers/usb/dwc3/
5875
5876 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5877 M:      Andreas Klinger <ak@it-klinger.de>
5878 L:      linux-iio@vger.kernel.org
5879 S:      Maintained
5880 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5881 F:      drivers/iio/proximity/srf*.c
5882
5883 DEVICE COREDUMP (DEV_COREDUMP)
5884 M:      Johannes Berg <johannes@sipsolutions.net>
5885 L:      linux-kernel@vger.kernel.org
5886 S:      Maintained
5887 F:      drivers/base/devcoredump.c
5888 F:      include/linux/devcoredump.h
5889
5890 DEVICE DEPENDENCY HELPER SCRIPT
5891 M:      Saravana Kannan <saravanak@google.com>
5892 L:      linux-kernel@vger.kernel.org
5893 S:      Maintained
5894 F:      scripts/dev-needs.sh
5895
5896 DEVICE DIRECT ACCESS (DAX)
5897 M:      Dan Williams <dan.j.williams@intel.com>
5898 M:      Vishal Verma <vishal.l.verma@intel.com>
5899 M:      Dave Jiang <dave.jiang@intel.com>
5900 L:      nvdimm@lists.linux.dev
5901 S:      Supported
5902 F:      drivers/dax/
5903
5904 DEVICE FREQUENCY (DEVFREQ)
5905 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5906 M:      Kyungmin Park <kyungmin.park@samsung.com>
5907 M:      Chanwoo Choi <cw00.choi@samsung.com>
5908 L:      linux-pm@vger.kernel.org
5909 S:      Maintained
5910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5911 F:      Documentation/devicetree/bindings/devfreq/
5912 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5913 F:      drivers/devfreq/
5914 F:      include/linux/devfreq.h
5915 F:      include/trace/events/devfreq.h
5916
5917 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5918 M:      Chanwoo Choi <cw00.choi@samsung.com>
5919 L:      linux-pm@vger.kernel.org
5920 S:      Supported
5921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5922 F:      Documentation/devicetree/bindings/devfreq/event/
5923 F:      drivers/devfreq/devfreq-event.c
5924 F:      drivers/devfreq/event/
5925 F:      include/dt-bindings/pmu/exynos_ppmu.h
5926 F:      include/linux/devfreq-event.h
5927
5928 DEVICE NUMBER REGISTRY
5929 M:      Torben Mathiasen <device@lanana.org>
5930 S:      Maintained
5931 W:      http://lanana.org/docs/device-list/index.html
5932
5933 DEVICE RESOURCE MANAGEMENT HELPERS
5934 M:      Hans de Goede <hdegoede@redhat.com>
5935 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5936 S:      Maintained
5937 F:      include/linux/devm-helpers.h
5938
5939 DEVICE-MAPPER  (LVM)
5940 M:      Alasdair Kergon <agk@redhat.com>
5941 M:      Mike Snitzer <snitzer@kernel.org>
5942 M:      dm-devel@redhat.com
5943 L:      dm-devel@redhat.com
5944 S:      Maintained
5945 W:      http://sources.redhat.com/dm
5946 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5948 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5949 F:      Documentation/admin-guide/device-mapper/
5950 F:      drivers/md/Kconfig
5951 F:      drivers/md/Makefile
5952 F:      drivers/md/dm*
5953 F:      drivers/md/persistent-data/
5954 F:      include/linux/device-mapper.h
5955 F:      include/linux/dm-*.h
5956 F:      include/uapi/linux/dm-*.h
5957
5958 DEVLINK
5959 M:      Jiri Pirko <jiri@nvidia.com>
5960 L:      netdev@vger.kernel.org
5961 S:      Supported
5962 F:      Documentation/networking/devlink
5963 F:      include/net/devlink.h
5964 F:      include/uapi/linux/devlink.h
5965 F:      net/devlink/
5966
5967 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5968 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5969 L:      kernel@dh-electronics.com
5970 S:      Maintained
5971 F:      arch/arm/boot/dts/imx6*-dhcom-*
5972 F:      arch/arm/boot/dts/imx6*-dhcor-*
5973
5974 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5975 M:      Marek Vasut <marex@denx.de>
5976 L:      kernel@dh-electronics.com
5977 S:      Maintained
5978 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5979 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5980
5981 DIALOG SEMICONDUCTOR DRIVERS
5982 M:      Support Opensource <support.opensource@diasemi.com>
5983 S:      Supported
5984 W:      http://www.dialog-semiconductor.com/products
5985 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5986 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5987 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5988 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5989 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5990 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5991 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5992 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5993 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5994 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5995 F:      Documentation/hwmon/da90??.rst
5996 F:      drivers/gpio/gpio-da90??.c
5997 F:      drivers/hwmon/da90??-hwmon.c
5998 F:      drivers/iio/adc/da91??-*.c
5999 F:      drivers/input/misc/da72??.[ch]
6000 F:      drivers/input/misc/da90??_onkey.c
6001 F:      drivers/input/touchscreen/da9052_tsi.c
6002 F:      drivers/leds/leds-da90??.c
6003 F:      drivers/mfd/da903x.c
6004 F:      drivers/mfd/da90??-*.c
6005 F:      drivers/mfd/da91??-*.c
6006 F:      drivers/pinctrl/pinctrl-da90??.c
6007 F:      drivers/power/supply/da9052-battery.c
6008 F:      drivers/power/supply/da91??-*.c
6009 F:      drivers/regulator/da9???-regulator.[ch]
6010 F:      drivers/regulator/slg51000-regulator.[ch]
6011 F:      drivers/rtc/rtc-da90??.c
6012 F:      drivers/thermal/da90??-thermal.c
6013 F:      drivers/video/backlight/da90??_bl.c
6014 F:      drivers/watchdog/da90??_wdt.c
6015 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6016 F:      include/linux/mfd/da903x.h
6017 F:      include/linux/mfd/da9052/
6018 F:      include/linux/mfd/da9055/
6019 F:      include/linux/mfd/da9062/
6020 F:      include/linux/mfd/da9063/
6021 F:      include/linux/mfd/da9150/
6022 F:      include/linux/regulator/da9211.h
6023 F:      include/sound/da[79]*.h
6024 F:      sound/soc/codecs/da[79]*.[ch]
6025
6026 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6027 M:      William Breathitt Gray <william.gray@linaro.org>
6028 L:      linux-gpio@vger.kernel.org
6029 S:      Maintained
6030 F:      drivers/gpio/gpio-gpio-mm.c
6031
6032 DIOLAN U2C-12 I2C DRIVER
6033 M:      Guenter Roeck <linux@roeck-us.net>
6034 L:      linux-i2c@vger.kernel.org
6035 S:      Maintained
6036 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6037
6038 DIRECTORY NOTIFICATION (DNOTIFY)
6039 M:      Jan Kara <jack@suse.cz>
6040 R:      Amir Goldstein <amir73il@gmail.com>
6041 L:      linux-fsdevel@vger.kernel.org
6042 S:      Maintained
6043 F:      Documentation/filesystems/dnotify.rst
6044 F:      fs/notify/dnotify/
6045 F:      include/linux/dnotify.h
6046
6047 DISK GEOMETRY AND PARTITION HANDLING
6048 M:      Andries Brouwer <aeb@cwi.nl>
6049 S:      Maintained
6050 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6051 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6052 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6053
6054 DISKQUOTA
6055 M:      Jan Kara <jack@suse.com>
6056 S:      Maintained
6057 F:      Documentation/filesystems/quota.rst
6058 F:      fs/quota/
6059 F:      include/linux/quota*.h
6060 F:      include/uapi/linux/quota*.h
6061
6062 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6063 M:      Bernie Thompson <bernie@plugable.com>
6064 L:      linux-fbdev@vger.kernel.org
6065 S:      Maintained
6066 W:      http://plugable.com/category/projects/udlfb/
6067 F:      Documentation/fb/udlfb.rst
6068 F:      drivers/video/fbdev/udlfb.c
6069 F:      include/video/udlfb.h
6070
6071 DISTRIBUTED LOCK MANAGER (DLM)
6072 M:      Christine Caulfield <ccaulfie@redhat.com>
6073 M:      David Teigland <teigland@redhat.com>
6074 L:      cluster-devel@redhat.com
6075 S:      Supported
6076 W:      http://sources.redhat.com/cluster/
6077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6078 F:      fs/dlm/
6079
6080 DMA BUFFER SHARING FRAMEWORK
6081 M:      Sumit Semwal <sumit.semwal@linaro.org>
6082 M:      Christian König <christian.koenig@amd.com>
6083 L:      linux-media@vger.kernel.org
6084 L:      dri-devel@lists.freedesktop.org
6085 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6086 S:      Maintained
6087 T:      git git://anongit.freedesktop.org/drm/drm-misc
6088 F:      Documentation/driver-api/dma-buf.rst
6089 F:      drivers/dma-buf/
6090 F:      include/linux/*fence.h
6091 F:      include/linux/dma-buf.h
6092 F:      include/linux/dma-resv.h
6093 K:      \bdma_(?:buf|fence|resv)\b
6094
6095 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6096 M:      Vinod Koul <vkoul@kernel.org>
6097 L:      dmaengine@vger.kernel.org
6098 S:      Maintained
6099 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6101 F:      Documentation/devicetree/bindings/dma/
6102 F:      Documentation/driver-api/dmaengine/
6103 F:      drivers/dma/
6104 F:      include/dt-bindings/dma/
6105 F:      include/linux/dma/
6106 F:      include/linux/dmaengine.h
6107 F:      include/linux/of_dma.h
6108
6109 DMA MAPPING HELPERS
6110 M:      Christoph Hellwig <hch@lst.de>
6111 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6112 R:      Robin Murphy <robin.murphy@arm.com>
6113 L:      iommu@lists.linux.dev
6114 S:      Supported
6115 W:      http://git.infradead.org/users/hch/dma-mapping.git
6116 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6117 F:      include/asm-generic/dma-mapping.h
6118 F:      include/linux/dma-direct.h
6119 F:      include/linux/dma-mapping.h
6120 F:      include/linux/dma-map-ops.h
6121 F:      include/linux/swiotlb.h
6122 F:      kernel/dma/
6123
6124 DMA MAPPING BENCHMARK
6125 M:      Xiang Chen <chenxiang66@hisilicon.com>
6126 L:      iommu@lists.linux.dev
6127 F:      kernel/dma/map_benchmark.c
6128 F:      tools/testing/selftests/dma/
6129
6130 DMA-BUF HEAPS FRAMEWORK
6131 M:      Sumit Semwal <sumit.semwal@linaro.org>
6132 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6133 R:      Liam Mark <lmark@codeaurora.org>
6134 R:      Laura Abbott <labbott@redhat.com>
6135 R:      Brian Starkey <Brian.Starkey@arm.com>
6136 R:      John Stultz <jstultz@google.com>
6137 L:      linux-media@vger.kernel.org
6138 L:      dri-devel@lists.freedesktop.org
6139 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      drivers/dma-buf/dma-heap.c
6143 F:      drivers/dma-buf/heaps/*
6144 F:      include/linux/dma-heap.h
6145 F:      include/uapi/linux/dma-heap.h
6146
6147 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6148 M:      Lukasz Luba <lukasz.luba@arm.com>
6149 L:      linux-pm@vger.kernel.org
6150 L:      linux-samsung-soc@vger.kernel.org
6151 S:      Maintained
6152 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6153 F:      drivers/memory/samsung/exynos5422-dmc.c
6154
6155 DME1737 HARDWARE MONITOR DRIVER
6156 M:      Juerg Haefliger <juergh@proton.me>
6157 L:      linux-hwmon@vger.kernel.org
6158 S:      Maintained
6159 F:      Documentation/hwmon/dme1737.rst
6160 F:      drivers/hwmon/dme1737.c
6161
6162 DMI/SMBIOS SUPPORT
6163 M:      Jean Delvare <jdelvare@suse.com>
6164 S:      Maintained
6165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6166 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6167 F:      drivers/firmware/dmi-id.c
6168 F:      drivers/firmware/dmi_scan.c
6169 F:      include/linux/dmi.h
6170
6171 DOCUMENTATION
6172 M:      Jonathan Corbet <corbet@lwn.net>
6173 L:      linux-doc@vger.kernel.org
6174 S:      Maintained
6175 P:      Documentation/doc-guide/maintainer-profile.rst
6176 T:      git git://git.lwn.net/linux.git docs-next
6177 F:      Documentation/
6178 F:      scripts/documentation-file-ref-check
6179 F:      scripts/kernel-doc
6180 F:      scripts/sphinx-pre-install
6181 X:      Documentation/ABI/
6182 X:      Documentation/admin-guide/media/
6183 X:      Documentation/devicetree/
6184 X:      Documentation/driver-api/media/
6185 X:      Documentation/firmware-guide/acpi/
6186 X:      Documentation/i2c/
6187 X:      Documentation/power/
6188 X:      Documentation/spi/
6189 X:      Documentation/userspace-api/media/
6190
6191 DOCUMENTATION REPORTING ISSUES
6192 M:      Thorsten Leemhuis <linux@leemhuis.info>
6193 L:      linux-doc@vger.kernel.org
6194 S:      Maintained
6195 F:      Documentation/admin-guide/reporting-issues.rst
6196
6197 DOCUMENTATION SCRIPTS
6198 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6199 L:      linux-doc@vger.kernel.org
6200 S:      Maintained
6201 F:      Documentation/sphinx/parse-headers.pl
6202 F:      scripts/documentation-file-ref-check
6203 F:      scripts/sphinx-pre-install
6204
6205 DOCUMENTATION/ITALIAN
6206 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6207 L:      linux-doc@vger.kernel.org
6208 S:      Maintained
6209 F:      Documentation/translations/it_IT
6210
6211 DOCUMENTATION/JAPANESE
6212 R:      Akira Yokosawa <akiyks@gmail.com>
6213 L:      linux-doc@vger.kernel.org
6214 S:      Maintained
6215 F:      Documentation/translations/ja_JP
6216
6217 DONGWOON DW9714 LENS VOICE COIL DRIVER
6218 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6219 L:      linux-media@vger.kernel.org
6220 S:      Maintained
6221 T:      git git://linuxtv.org/media_tree.git
6222 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6223 F:      drivers/media/i2c/dw9714.c
6224
6225 DONGWOON DW9768 LENS VOICE COIL DRIVER
6226 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6227 L:      linux-media@vger.kernel.org
6228 S:      Maintained
6229 T:      git git://linuxtv.org/media_tree.git
6230 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6231 F:      drivers/media/i2c/dw9768.c
6232
6233 DONGWOON DW9807 LENS VOICE COIL DRIVER
6234 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6235 L:      linux-media@vger.kernel.org
6236 S:      Maintained
6237 T:      git git://linuxtv.org/media_tree.git
6238 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6239 F:      drivers/media/i2c/dw9807-vcm.c
6240
6241 DOUBLETALK DRIVER
6242 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6243 L:      blinux-list@redhat.com
6244 S:      Maintained
6245 F:      drivers/char/dtlk.c
6246 F:      include/linux/dtlk.h
6247
6248 DPAA2 DATAPATH I/O (DPIO) DRIVER
6249 M:      Roy Pledge <Roy.Pledge@nxp.com>
6250 L:      linux-kernel@vger.kernel.org
6251 S:      Maintained
6252 F:      drivers/soc/fsl/dpio
6253
6254 DPAA2 ETHERNET DRIVER
6255 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6256 L:      netdev@vger.kernel.org
6257 S:      Maintained
6258 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6259 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6260 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6261 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6262 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6263 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6264 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6265 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6266 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6267 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6268
6269 DPAA2 ETHERNET SWITCH DRIVER
6270 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6271 L:      netdev@vger.kernel.org
6272 S:      Maintained
6273 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6274 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6275 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6276
6277 DRBD DRIVER
6278 M:      Philipp Reisner <philipp.reisner@linbit.com>
6279 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6280 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6281 L:      drbd-dev@lists.linbit.com
6282 S:      Supported
6283 W:      http://www.drbd.org
6284 T:      git git://git.linbit.com/linux-drbd.git
6285 T:      git git://git.linbit.com/drbd-8.4.git
6286 F:      Documentation/admin-guide/blockdev/
6287 F:      drivers/block/drbd/
6288 F:      include/linux/drbd*
6289 F:      lib/lru_cache.c
6290
6291 DRIVER COMPONENT FRAMEWORK
6292 L:      dri-devel@lists.freedesktop.org
6293 F:      drivers/base/component.c
6294 F:      include/linux/component.h
6295
6296 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6297 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6298 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6299 S:      Supported
6300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6301 F:      Documentation/core-api/kobject.rst
6302 F:      drivers/base/
6303 F:      fs/debugfs/
6304 F:      fs/sysfs/
6305 F:      include/linux/debugfs.h
6306 F:      include/linux/kobj*
6307 F:      lib/kobj*
6308
6309 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6310 M:      Nishanth Menon <nm@ti.com>
6311 L:      linux-pm@vger.kernel.org
6312 S:      Maintained
6313 F:      drivers/soc/ti/smartreflex.c
6314 F:      include/linux/power/smartreflex.h
6315
6316 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6317 M:      Maxime Ripard <mripard@kernel.org>
6318 M:      Chen-Yu Tsai <wens@csie.org>
6319 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6320 L:      dri-devel@lists.freedesktop.org
6321 S:      Supported
6322 T:      git git://anongit.freedesktop.org/drm/drm-misc
6323 F:      drivers/gpu/drm/sun4i/sun8i*
6324
6325 DRM DRIVER FOR ARM PL111 CLCD
6326 M:      Emma Anholt <emma@anholt.net>
6327 S:      Supported
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      drivers/gpu/drm/pl111/
6330
6331 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6332 M:      Linus Walleij <linus.walleij@linaro.org>
6333 S:      Maintained
6334 T:      git git://anongit.freedesktop.org/drm/drm-misc
6335 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6336 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6337
6338 DRM DRIVER FOR ASPEED BMC GFX
6339 M:      Joel Stanley <joel@jms.id.au>
6340 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6341 S:      Supported
6342 T:      git git://anongit.freedesktop.org/drm/drm-misc
6343 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6344 F:      drivers/gpu/drm/aspeed/
6345
6346 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6347 M:      Dave Airlie <airlied@redhat.com>
6348 R:      Thomas Zimmermann <tzimmermann@suse.de>
6349 L:      dri-devel@lists.freedesktop.org
6350 S:      Supported
6351 T:      git git://anongit.freedesktop.org/drm/drm-misc
6352 F:      drivers/gpu/drm/ast/
6353
6354 DRM DRIVER FOR BOCHS VIRTUAL GPU
6355 M:      Gerd Hoffmann <kraxel@redhat.com>
6356 L:      virtualization@lists.linux-foundation.org
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      drivers/gpu/drm/tiny/bochs.c
6360
6361 DRM DRIVER FOR BOE HIMAX8279D PANELS
6362 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6363 S:      Maintained
6364 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6365 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6366
6367 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6368 M:      Jagan Teki <jagan@amarulasolutions.com>
6369 S:      Maintained
6370 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6371 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6372
6373 DRM DRIVER FOR EBBG FT8719 PANEL
6374 M:      Joel Selvaraj <jo@jsfamily.in>
6375 S:      Maintained
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6378 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6379
6380 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6381 M:      Linus Walleij <linus.walleij@linaro.org>
6382 S:      Maintained
6383 T:      git git://anongit.freedesktop.org/drm/drm-misc
6384 F:      drivers/gpu/drm/tve200/
6385
6386 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6387 M:      Icenowy Zheng <icenowy@aosc.io>
6388 S:      Maintained
6389 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6390 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6391
6392 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6393 M:      Jagan Teki <jagan@amarulasolutions.com>
6394 S:      Maintained
6395 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6396 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6397
6398 DRM DRIVER FOR GENERIC EDP PANELS
6399 R:      Douglas Anderson <dianders@chromium.org>
6400 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6401 F:      drivers/gpu/drm/panel/panel-edp.c
6402
6403 DRM DRIVER FOR GENERIC USB DISPLAY
6404 M:      Noralf Trønnes <noralf@tronnes.org>
6405 S:      Maintained
6406 W:      https://github.com/notro/gud/wiki
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      drivers/gpu/drm/gud/
6409 F:      include/drm/gud.h
6410
6411 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6412 M:      Hans de Goede <hdegoede@redhat.com>
6413 S:      Maintained
6414 T:      git git://anongit.freedesktop.org/drm/drm-misc
6415 F:      drivers/gpu/drm/tiny/gm12u320.c
6416
6417 DRM DRIVER FOR HX8357D PANELS
6418 M:      Emma Anholt <emma@anholt.net>
6419 S:      Maintained
6420 T:      git git://anongit.freedesktop.org/drm/drm-misc
6421 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6422 F:      drivers/gpu/drm/tiny/hx8357d.c
6423
6424 DRM DRIVER FOR ILITEK ILI9225 PANELS
6425 M:      David Lechner <david@lechnology.com>
6426 S:      Maintained
6427 T:      git git://anongit.freedesktop.org/drm/drm-misc
6428 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6429 F:      drivers/gpu/drm/tiny/ili9225.c
6430
6431 DRM DRIVER FOR ILITEK ILI9486 PANELS
6432 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6433 S:      Maintained
6434 T:      git git://anongit.freedesktop.org/drm/drm-misc
6435 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6436 F:      drivers/gpu/drm/tiny/ili9486.c
6437
6438 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6439 S:      Orphan / Obsolete
6440 F:      drivers/gpu/drm/i810/
6441 F:      include/uapi/drm/i810_drm.h
6442
6443 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6444 M:      Jagan Teki <jagan@edgeble.ai>
6445 S:      Maintained
6446 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6447 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6448
6449 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6450 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6451 S:      Supported
6452 T:      git git://anongit.freedesktop.org/drm/drm-misc
6453 F:      drivers/gpu/drm/logicvc/
6454
6455 DRM DRIVER FOR LVDS PANELS
6456 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6457 L:      dri-devel@lists.freedesktop.org
6458 T:      git git://anongit.freedesktop.org/drm/drm-misc
6459 S:      Maintained
6460 F:      drivers/gpu/drm/panel/panel-lvds.c
6461 F:      Documentation/devicetree/bindings/display/lvds.yaml
6462 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6463
6464 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6465 M:      Guido Günther <agx@sigxcpu.org>
6466 R:      Purism Kernel Team <kernel@puri.sm>
6467 S:      Maintained
6468 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6469 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6470
6471 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6472 S:      Orphan / Obsolete
6473 F:      drivers/gpu/drm/mga/
6474 F:      include/uapi/drm/mga_drm.h
6475
6476 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6477 M:      Dave Airlie <airlied@redhat.com>
6478 R:      Thomas Zimmermann <tzimmermann@suse.de>
6479 L:      dri-devel@lists.freedesktop.org
6480 S:      Supported
6481 T:      git git://anongit.freedesktop.org/drm/drm-misc
6482 F:      drivers/gpu/drm/mgag200/
6483
6484 DRM DRIVER FOR MI0283QT
6485 M:      Noralf Trønnes <noralf@tronnes.org>
6486 S:      Maintained
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6489 F:      drivers/gpu/drm/tiny/mi0283qt.c
6490
6491 DRM DRIVER FOR MIPI DBI compatible panels
6492 M:      Noralf Trønnes <noralf@tronnes.org>
6493 S:      Maintained
6494 W:      https://github.com/notro/panel-mipi-dbi/wiki
6495 T:      git git://anongit.freedesktop.org/drm/drm-misc
6496 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6497 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6498
6499 DRM DRIVER FOR MSM ADRENO GPU
6500 M:      Rob Clark <robdclark@gmail.com>
6501 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6502 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6503 R:      Sean Paul <sean@poorly.run>
6504 L:      linux-arm-msm@vger.kernel.org
6505 L:      dri-devel@lists.freedesktop.org
6506 L:      freedreno@lists.freedesktop.org
6507 S:      Maintained
6508 T:      git https://gitlab.freedesktop.org/drm/msm.git
6509 F:      Documentation/devicetree/bindings/display/msm/
6510 F:      drivers/gpu/drm/msm/
6511 F:      include/uapi/drm/msm_drm.h
6512
6513 DRM DRIVER FOR NOVATEK NT35510 PANELS
6514 M:      Linus Walleij <linus.walleij@linaro.org>
6515 S:      Maintained
6516 T:      git git://anongit.freedesktop.org/drm/drm-misc
6517 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6518 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6519
6520 DRM DRIVER FOR NOVATEK NT35560 PANELS
6521 M:      Linus Walleij <linus.walleij@linaro.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6525 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6526
6527 DRM DRIVER FOR NOVATEK NT36672A PANELS
6528 M:      Sumit Semwal <sumit.semwal@linaro.org>
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6532 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6533
6534 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6535 M:      Ben Skeggs <bskeggs@redhat.com>
6536 M:      Karol Herbst <kherbst@redhat.com>
6537 M:      Lyude Paul <lyude@redhat.com>
6538 L:      dri-devel@lists.freedesktop.org
6539 L:      nouveau@lists.freedesktop.org
6540 S:      Supported
6541 W:      https://nouveau.freedesktop.org/
6542 Q:      https://patchwork.freedesktop.org/project/nouveau/
6543 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6544 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6545 C:      irc://irc.oftc.net/nouveau
6546 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6547 F:      drivers/gpu/drm/nouveau/
6548 F:      include/uapi/drm/nouveau_drm.h
6549
6550 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6551 M:      Stefan Mavrodiev <stefan@olimex.com>
6552 S:      Maintained
6553 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6554 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6555
6556 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6557 R:      Douglas Anderson <dianders@chromium.org>
6558 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6559 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6560
6561 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6562 M:      Noralf Trønnes <noralf@tronnes.org>
6563 S:      Maintained
6564 T:      git git://anongit.freedesktop.org/drm/drm-misc
6565 F:      Documentation/devicetree/bindings/display/repaper.txt
6566 F:      drivers/gpu/drm/tiny/repaper.c
6567
6568 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6569 M:      Javier Martinez Canillas <javierm@redhat.com>
6570 S:      Maintained
6571 T:      git git://anongit.freedesktop.org/drm/drm-misc
6572 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6573 F:      drivers/gpu/drm/solomon/ssd130x*
6574
6575 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6576 M:      Dave Airlie <airlied@redhat.com>
6577 M:      Gerd Hoffmann <kraxel@redhat.com>
6578 L:      virtualization@lists.linux-foundation.org
6579 S:      Obsolete
6580 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6581 T:      git git://anongit.freedesktop.org/drm/drm-misc
6582 F:      drivers/gpu/drm/tiny/cirrus.c
6583
6584 DRM DRIVER FOR QXL VIRTUAL GPU
6585 M:      Dave Airlie <airlied@redhat.com>
6586 M:      Gerd Hoffmann <kraxel@redhat.com>
6587 L:      virtualization@lists.linux-foundation.org
6588 L:      spice-devel@lists.freedesktop.org
6589 S:      Maintained
6590 T:      git git://anongit.freedesktop.org/drm/drm-misc
6591 F:      drivers/gpu/drm/qxl/
6592 F:      include/uapi/drm/qxl_drm.h
6593
6594 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6595 S:      Orphan / Obsolete
6596 F:      drivers/gpu/drm/r128/
6597 F:      include/uapi/drm/r128_drm.h
6598
6599 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6600 M:      Robert Chiras <robert.chiras@nxp.com>
6601 S:      Maintained
6602 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6603 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6604
6605 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6606 M:      Linus Walleij <linus.walleij@linaro.org>
6607 S:      Maintained
6608 T:      git git://anongit.freedesktop.org/drm/drm-misc
6609 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6610 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6611
6612 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6613 M:      Markuss Broks <markuss.broks@gmail.com>
6614 S:      Maintained
6615 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6616 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6617
6618 DRM DRIVER FOR SITRONIX ST7703 PANELS
6619 M:      Guido Günther <agx@sigxcpu.org>
6620 R:      Purism Kernel Team <kernel@puri.sm>
6621 R:      Ondrej Jirman <megous@megous.com>
6622 S:      Maintained
6623 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6624 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6625
6626 DRM DRIVER FOR SAVAGE VIDEO CARDS
6627 S:      Orphan / Obsolete
6628 F:      drivers/gpu/drm/savage/
6629 F:      include/uapi/drm/savage_drm.h
6630
6631 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6632 M:      Thomas Zimmermann <tzimmermann@suse.de>
6633 M:      Javier Martinez Canillas <javierm@redhat.com>
6634 L:      dri-devel@lists.freedesktop.org
6635 S:      Maintained
6636 T:      git git://anongit.freedesktop.org/drm/drm-misc
6637 F:      drivers/gpu/drm/drm_aperture.c
6638 F:      drivers/gpu/drm/tiny/ofdrm.c
6639 F:      drivers/gpu/drm/tiny/simpledrm.c
6640 F:      drivers/video/aperture.c
6641 F:      drivers/video/nomodeset.c
6642 F:      include/drm/drm_aperture.h
6643 F:      include/linux/aperture.h
6644 F:      include/video/nomodeset.h
6645
6646 DRM DRIVER FOR SIS VIDEO CARDS
6647 S:      Orphan / Obsolete
6648 F:      drivers/gpu/drm/sis/
6649 F:      include/uapi/drm/sis_drm.h
6650
6651 DRM DRIVER FOR SITRONIX ST7586 PANELS
6652 M:      David Lechner <david@lechnology.com>
6653 S:      Maintained
6654 T:      git git://anongit.freedesktop.org/drm/drm-misc
6655 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6656 F:      drivers/gpu/drm/tiny/st7586.c
6657
6658 DRM DRIVER FOR SITRONIX ST7701 PANELS
6659 M:      Jagan Teki <jagan@amarulasolutions.com>
6660 S:      Maintained
6661 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6662 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6663
6664 DRM DRIVER FOR SITRONIX ST7735R PANELS
6665 M:      David Lechner <david@lechnology.com>
6666 S:      Maintained
6667 T:      git git://anongit.freedesktop.org/drm/drm-misc
6668 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6669 F:      drivers/gpu/drm/tiny/st7735r.c
6670
6671 DRM DRIVER FOR ST-ERICSSON MCDE
6672 M:      Linus Walleij <linus.walleij@linaro.org>
6673 S:      Maintained
6674 T:      git git://anongit.freedesktop.org/drm/drm-misc
6675 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6676 F:      drivers/gpu/drm/mcde/
6677
6678 DRM DRIVER FOR TDFX VIDEO CARDS
6679 S:      Orphan / Obsolete
6680 F:      drivers/gpu/drm/tdfx/
6681
6682 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6683 M:      Jagan Teki <jagan@amarulasolutions.com>
6684 S:      Maintained
6685 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6686 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6687
6688 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6689 R:      Douglas Anderson <dianders@chromium.org>
6690 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6691 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6692
6693 DRM DRIVER FOR TPO TPG110 PANELS
6694 M:      Linus Walleij <linus.walleij@linaro.org>
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6698 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6699
6700 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6701 M:      Dave Airlie <airlied@redhat.com>
6702 R:      Sean Paul <sean@poorly.run>
6703 R:      Thomas Zimmermann <tzimmermann@suse.de>
6704 L:      dri-devel@lists.freedesktop.org
6705 S:      Supported
6706 T:      git git://anongit.freedesktop.org/drm/drm-misc
6707 F:      drivers/gpu/drm/udl/
6708
6709 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6710 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6711 M:      Melissa Wen <melissa.srw@gmail.com>
6712 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6713 R:      Daniel Vetter <daniel@ffwll.ch>
6714 L:      dri-devel@lists.freedesktop.org
6715 S:      Maintained
6716 T:      git git://anongit.freedesktop.org/drm/drm-misc
6717 F:      Documentation/gpu/vkms.rst
6718 F:      drivers/gpu/drm/vkms/
6719
6720 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6721 M:      Hans de Goede <hdegoede@redhat.com>
6722 L:      dri-devel@lists.freedesktop.org
6723 S:      Maintained
6724 T:      git git://anongit.freedesktop.org/drm/drm-misc
6725 F:      drivers/gpu/drm/vboxvideo/
6726
6727 DRM DRIVER FOR VMWARE VIRTUAL GPU
6728 M:      Zack Rusin <zackr@vmware.com>
6729 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6730 L:      dri-devel@lists.freedesktop.org
6731 S:      Supported
6732 T:      git git://anongit.freedesktop.org/drm/drm-misc
6733 F:      drivers/gpu/drm/vmwgfx/
6734 F:      include/uapi/drm/vmwgfx_drm.h
6735
6736 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6737 M:      Linus Walleij <linus.walleij@linaro.org>
6738 S:      Maintained
6739 T:      git git://anongit.freedesktop.org/drm/drm-misc
6740 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6741 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6742
6743 DRM DRIVERS
6744 M:      David Airlie <airlied@gmail.com>
6745 M:      Daniel Vetter <daniel@ffwll.ch>
6746 L:      dri-devel@lists.freedesktop.org
6747 S:      Maintained
6748 B:      https://gitlab.freedesktop.org/drm
6749 C:      irc://irc.oftc.net/dri-devel
6750 T:      git git://anongit.freedesktop.org/drm/drm
6751 F:      Documentation/devicetree/bindings/display/
6752 F:      Documentation/devicetree/bindings/gpu/
6753 F:      Documentation/gpu/
6754 F:      drivers/gpu/
6755 F:      include/drm/
6756 F:      include/linux/vga*
6757 F:      include/uapi/drm/
6758
6759 DRM DRIVERS AND MISC GPU PATCHES
6760 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6761 M:      Maxime Ripard <mripard@kernel.org>
6762 M:      Thomas Zimmermann <tzimmermann@suse.de>
6763 S:      Maintained
6764 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6765 T:      git git://anongit.freedesktop.org/drm/drm-misc
6766 F:      Documentation/gpu/
6767 F:      drivers/gpu/drm/*
6768 F:      drivers/gpu/vga/
6769 F:      include/drm/drm*
6770 F:      include/linux/vga*
6771 F:      include/uapi/drm/drm*
6772
6773 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6774 M:      Oded Gabbay <ogabbay@kernel.org>
6775 L:      dri-devel@lists.freedesktop.org
6776 S:      Maintained
6777 C:      irc://irc.oftc.net/dri-devel
6778 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6779 F:      Documentation/accel/
6780 F:      drivers/accel/
6781
6782 DRM DRIVERS FOR ALLWINNER A10
6783 M:      Maxime Ripard <mripard@kernel.org>
6784 M:      Chen-Yu Tsai <wens@csie.org>
6785 L:      dri-devel@lists.freedesktop.org
6786 S:      Supported
6787 T:      git git://anongit.freedesktop.org/drm/drm-misc
6788 F:      Documentation/devicetree/bindings/display/allwinner*
6789 F:      drivers/gpu/drm/sun4i/
6790
6791 DRM DRIVERS FOR AMLOGIC SOCS
6792 M:      Neil Armstrong <neil.armstrong@linaro.org>
6793 L:      dri-devel@lists.freedesktop.org
6794 L:      linux-amlogic@lists.infradead.org
6795 S:      Supported
6796 W:      http://linux-meson.com/
6797 T:      git git://anongit.freedesktop.org/drm/drm-misc
6798 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6799 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6800 F:      Documentation/gpu/meson.rst
6801 F:      drivers/gpu/drm/meson/
6802
6803 DRM DRIVERS FOR ATMEL HLCDC
6804 M:      Sam Ravnborg <sam@ravnborg.org>
6805 M:      Boris Brezillon <bbrezillon@kernel.org>
6806 L:      dri-devel@lists.freedesktop.org
6807 S:      Supported
6808 T:      git git://anongit.freedesktop.org/drm/drm-misc
6809 F:      Documentation/devicetree/bindings/display/atmel/
6810 F:      drivers/gpu/drm/atmel-hlcdc/
6811
6812 DRM DRIVERS FOR BRIDGE CHIPS
6813 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6814 M:      Neil Armstrong <neil.armstrong@linaro.org>
6815 M:      Robert Foss <rfoss@kernel.org>
6816 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6817 R:      Jonas Karlman <jonas@kwiboo.se>
6818 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6819 S:      Maintained
6820 T:      git git://anongit.freedesktop.org/drm/drm-misc
6821 F:      Documentation/devicetree/bindings/display/bridge/
6822 F:      drivers/gpu/drm/bridge/
6823
6824 DRM DRIVERS FOR EXYNOS
6825 M:      Inki Dae <inki.dae@samsung.com>
6826 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6827 M:      Kyungmin Park <kyungmin.park@samsung.com>
6828 L:      dri-devel@lists.freedesktop.org
6829 S:      Supported
6830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6831 F:      Documentation/devicetree/bindings/display/exynos/
6832 F:      Documentation/devicetree/bindings/display/samsung/
6833 F:      drivers/gpu/drm/exynos/
6834 F:      include/uapi/drm/exynos_drm.h
6835
6836 DRM DRIVERS FOR FREESCALE DCU
6837 M:      Stefan Agner <stefan@agner.ch>
6838 M:      Alison Wang <alison.wang@nxp.com>
6839 L:      dri-devel@lists.freedesktop.org
6840 S:      Supported
6841 T:      git git://anongit.freedesktop.org/drm/drm-misc
6842 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6843 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6844 F:      drivers/gpu/drm/fsl-dcu/
6845
6846 DRM DRIVERS FOR FREESCALE IMX
6847 M:      Philipp Zabel <p.zabel@pengutronix.de>
6848 L:      dri-devel@lists.freedesktop.org
6849 S:      Maintained
6850 F:      Documentation/devicetree/bindings/display/imx/
6851 F:      drivers/gpu/drm/imx/
6852 F:      drivers/gpu/ipu-v3/
6853
6854 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6855 M:      Liu Ying <victor.liu@nxp.com>
6856 L:      dri-devel@lists.freedesktop.org
6857 S:      Maintained
6858 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6859 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6860 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6861 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6862 F:      drivers/gpu/drm/bridge/imx/
6863
6864 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6865 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6866 L:      dri-devel@lists.freedesktop.org
6867 S:      Maintained
6868 T:      git git://github.com/patjak/drm-gma500
6869 F:      drivers/gpu/drm/gma500/
6870
6871 DRM DRIVERS FOR HISILICON
6872 M:      Xinliang Liu <xinliang.liu@linaro.org>
6873 M:      Tian Tao  <tiantao6@hisilicon.com>
6874 R:      John Stultz <jstultz@google.com>
6875 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6876 R:      Chen Feng <puck.chen@hisilicon.com>
6877 L:      dri-devel@lists.freedesktop.org
6878 S:      Maintained
6879 T:      git git://anongit.freedesktop.org/drm/drm-misc
6880 F:      Documentation/devicetree/bindings/display/hisilicon/
6881 F:      drivers/gpu/drm/hisilicon/
6882
6883 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6884 M:      Deepak Rawat <drawat.floss@gmail.com>
6885 L:      linux-hyperv@vger.kernel.org
6886 L:      dri-devel@lists.freedesktop.org
6887 S:      Maintained
6888 T:      git git://anongit.freedesktop.org/drm/drm-misc
6889 F:      drivers/gpu/drm/hyperv
6890
6891 DRM DRIVERS FOR LIMA
6892 M:      Qiang Yu <yuq825@gmail.com>
6893 L:      dri-devel@lists.freedesktop.org
6894 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6895 S:      Maintained
6896 T:      git git://anongit.freedesktop.org/drm/drm-misc
6897 F:      drivers/gpu/drm/lima/
6898 F:      include/uapi/drm/lima_drm.h
6899
6900 DRM DRIVERS FOR MEDIATEK
6901 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6902 M:      Philipp Zabel <p.zabel@pengutronix.de>
6903 L:      dri-devel@lists.freedesktop.org
6904 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6905 S:      Supported
6906 F:      Documentation/devicetree/bindings/display/mediatek/
6907 F:      drivers/gpu/drm/mediatek/
6908 F:      drivers/phy/mediatek/phy-mtk-dp.c
6909 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6910 F:      drivers/phy/mediatek/phy-mtk-mipi*
6911
6912 DRM DRIVERS FOR NVIDIA TEGRA
6913 M:      Thierry Reding <thierry.reding@gmail.com>
6914 L:      dri-devel@lists.freedesktop.org
6915 L:      linux-tegra@vger.kernel.org
6916 S:      Supported
6917 T:      git git://anongit.freedesktop.org/tegra/linux.git
6918 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6919 F:      Documentation/devicetree/bindings/gpu/host1x/
6920 F:      drivers/gpu/drm/tegra/
6921 F:      drivers/gpu/host1x/
6922 F:      include/linux/host1x.h
6923 F:      include/uapi/drm/tegra_drm.h
6924
6925 DRM DRIVERS FOR RENESAS
6926 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6927 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6928 L:      dri-devel@lists.freedesktop.org
6929 L:      linux-renesas-soc@vger.kernel.org
6930 S:      Supported
6931 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6932 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6933 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6934 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6935 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6936 F:      drivers/gpu/drm/rcar-du/
6937 F:      drivers/gpu/drm/shmobile/
6938 F:      include/linux/platform_data/shmob_drm.h
6939
6940 DRM DRIVERS FOR ROCKCHIP
6941 M:      Sandy Huang <hjc@rock-chips.com>
6942 M:      Heiko Stübner <heiko@sntech.de>
6943 L:      dri-devel@lists.freedesktop.org
6944 S:      Maintained
6945 T:      git git://anongit.freedesktop.org/drm/drm-misc
6946 F:      Documentation/devicetree/bindings/display/rockchip/
6947 F:      drivers/gpu/drm/rockchip/
6948
6949 DRM DRIVERS FOR STI
6950 M:      Alain Volmat <alain.volmat@foss.st.com>
6951 L:      dri-devel@lists.freedesktop.org
6952 S:      Maintained
6953 T:      git git://anongit.freedesktop.org/drm/drm-misc
6954 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6955 F:      drivers/gpu/drm/sti
6956
6957 DRM DRIVERS FOR STM
6958 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6959 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6960 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6961 L:      dri-devel@lists.freedesktop.org
6962 S:      Maintained
6963 T:      git git://anongit.freedesktop.org/drm/drm-misc
6964 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6965 F:      drivers/gpu/drm/stm
6966
6967 DRM DRIVERS FOR TI KEYSTONE
6968 M:      Jyri Sarha <jyri.sarha@iki.fi>
6969 M:      Tomi Valkeinen <tomba@kernel.org>
6970 L:      dri-devel@lists.freedesktop.org
6971 S:      Maintained
6972 T:      git git://anongit.freedesktop.org/drm/drm-misc
6973 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6974 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6975 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6976 F:      drivers/gpu/drm/tidss/
6977
6978 DRM DRIVERS FOR TI LCDC
6979 M:      Jyri Sarha <jyri.sarha@iki.fi>
6980 R:      Tomi Valkeinen <tomba@kernel.org>
6981 L:      dri-devel@lists.freedesktop.org
6982 S:      Maintained
6983 F:      Documentation/devicetree/bindings/display/tilcdc/
6984 F:      drivers/gpu/drm/tilcdc/
6985
6986 DRM DRIVERS FOR TI OMAP
6987 M:      Tomi Valkeinen <tomba@kernel.org>
6988 L:      dri-devel@lists.freedesktop.org
6989 S:      Maintained
6990 F:      Documentation/devicetree/bindings/display/ti/
6991 F:      drivers/gpu/drm/omapdrm/
6992
6993 DRM DRIVERS FOR V3D
6994 M:      Emma Anholt <emma@anholt.net>
6995 M:      Melissa Wen <mwen@igalia.com>
6996 S:      Supported
6997 T:      git git://anongit.freedesktop.org/drm/drm-misc
6998 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6999 F:      drivers/gpu/drm/v3d/
7000 F:      include/uapi/drm/v3d_drm.h
7001
7002 DRM DRIVERS FOR VC4
7003 M:      Emma Anholt <emma@anholt.net>
7004 M:      Maxime Ripard <mripard@kernel.org>
7005 S:      Supported
7006 T:      git git://github.com/anholt/linux
7007 T:      git git://anongit.freedesktop.org/drm/drm-misc
7008 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7009 F:      drivers/gpu/drm/vc4/
7010 F:      include/uapi/drm/vc4_drm.h
7011
7012 DRM DRIVERS FOR VIVANTE GPU IP
7013 M:      Lucas Stach <l.stach@pengutronix.de>
7014 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7015 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7016 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7017 L:      dri-devel@lists.freedesktop.org
7018 S:      Maintained
7019 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7020 F:      drivers/gpu/drm/etnaviv/
7021 F:      include/uapi/drm/etnaviv_drm.h
7022
7023 DRM DRIVERS FOR XEN
7024 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7025 L:      dri-devel@lists.freedesktop.org
7026 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7027 S:      Supported
7028 T:      git git://anongit.freedesktop.org/drm/drm-misc
7029 F:      Documentation/gpu/xen-front.rst
7030 F:      drivers/gpu/drm/xen/
7031
7032 DRM DRIVERS FOR XILINX
7033 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7034 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7035 L:      dri-devel@lists.freedesktop.org
7036 S:      Maintained
7037 T:      git git://anongit.freedesktop.org/drm/drm-misc
7038 F:      Documentation/devicetree/bindings/display/xlnx/
7039 F:      drivers/gpu/drm/xlnx/
7040
7041 DRM PANEL DRIVERS
7042 M:      Thierry Reding <thierry.reding@gmail.com>
7043 R:      Sam Ravnborg <sam@ravnborg.org>
7044 L:      dri-devel@lists.freedesktop.org
7045 S:      Maintained
7046 T:      git git://anongit.freedesktop.org/drm/drm-misc
7047 F:      Documentation/devicetree/bindings/display/panel/
7048 F:      drivers/gpu/drm/drm_panel.c
7049 F:      drivers/gpu/drm/panel/
7050 F:      include/drm/drm_panel.h
7051
7052 DRM PRIVACY-SCREEN CLASS
7053 M:      Hans de Goede <hdegoede@redhat.com>
7054 L:      dri-devel@lists.freedesktop.org
7055 S:      Maintained
7056 T:      git git://anongit.freedesktop.org/drm/drm-misc
7057 F:      drivers/gpu/drm/drm_privacy_screen*
7058 F:      include/drm/drm_privacy_screen*
7059
7060 DRM TTM SUBSYSTEM
7061 M:      Christian Koenig <christian.koenig@amd.com>
7062 M:      Huang Rui <ray.huang@amd.com>
7063 L:      dri-devel@lists.freedesktop.org
7064 S:      Maintained
7065 T:      git git://anongit.freedesktop.org/drm/drm-misc
7066 F:      drivers/gpu/drm/ttm/
7067 F:      include/drm/ttm/
7068
7069 DRM GPU SCHEDULER
7070 M:      Luben Tuikov <luben.tuikov@amd.com>
7071 L:      dri-devel@lists.freedesktop.org
7072 S:      Maintained
7073 T:      git git://anongit.freedesktop.org/drm/drm-misc
7074 F:      drivers/gpu/drm/scheduler/
7075 F:      include/drm/gpu_scheduler.h
7076
7077 DSBR100 USB FM RADIO DRIVER
7078 M:      Alexey Klimov <klimov.linux@gmail.com>
7079 L:      linux-media@vger.kernel.org
7080 S:      Maintained
7081 T:      git git://linuxtv.org/media_tree.git
7082 F:      drivers/media/radio/dsbr100.c
7083
7084 DT3155 MEDIA DRIVER
7085 M:      Hans Verkuil <hverkuil@xs4all.nl>
7086 L:      linux-media@vger.kernel.org
7087 S:      Odd Fixes
7088 W:      https://linuxtv.org
7089 T:      git git://linuxtv.org/media_tree.git
7090 F:      drivers/media/pci/dt3155/
7091
7092 DVB_USB_AF9015 MEDIA DRIVER
7093 M:      Antti Palosaari <crope@iki.fi>
7094 L:      linux-media@vger.kernel.org
7095 S:      Maintained
7096 W:      https://linuxtv.org
7097 W:      http://palosaari.fi/linux/
7098 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7099 T:      git git://linuxtv.org/anttip/media_tree.git
7100 F:      drivers/media/usb/dvb-usb-v2/af9015*
7101
7102 DVB_USB_AF9035 MEDIA DRIVER
7103 M:      Antti Palosaari <crope@iki.fi>
7104 L:      linux-media@vger.kernel.org
7105 S:      Maintained
7106 W:      https://linuxtv.org
7107 W:      http://palosaari.fi/linux/
7108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7109 T:      git git://linuxtv.org/anttip/media_tree.git
7110 F:      drivers/media/usb/dvb-usb-v2/af9035*
7111
7112 DVB_USB_ANYSEE MEDIA DRIVER
7113 M:      Antti Palosaari <crope@iki.fi>
7114 L:      linux-media@vger.kernel.org
7115 S:      Maintained
7116 W:      https://linuxtv.org
7117 W:      http://palosaari.fi/linux/
7118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7119 T:      git git://linuxtv.org/anttip/media_tree.git
7120 F:      drivers/media/usb/dvb-usb-v2/anysee*
7121
7122 DVB_USB_AU6610 MEDIA DRIVER
7123 M:      Antti Palosaari <crope@iki.fi>
7124 L:      linux-media@vger.kernel.org
7125 S:      Maintained
7126 W:      https://linuxtv.org
7127 W:      http://palosaari.fi/linux/
7128 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7129 T:      git git://linuxtv.org/anttip/media_tree.git
7130 F:      drivers/media/usb/dvb-usb-v2/au6610*
7131
7132 DVB_USB_CE6230 MEDIA DRIVER
7133 M:      Antti Palosaari <crope@iki.fi>
7134 L:      linux-media@vger.kernel.org
7135 S:      Maintained
7136 W:      https://linuxtv.org
7137 W:      http://palosaari.fi/linux/
7138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7139 T:      git git://linuxtv.org/anttip/media_tree.git
7140 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7141
7142 DVB_USB_CXUSB MEDIA DRIVER
7143 M:      Michael Krufky <mkrufky@linuxtv.org>
7144 L:      linux-media@vger.kernel.org
7145 S:      Maintained
7146 W:      https://linuxtv.org
7147 W:      http://github.com/mkrufky
7148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7149 T:      git git://linuxtv.org/media_tree.git
7150 F:      drivers/media/usb/dvb-usb/cxusb*
7151
7152 DVB_USB_EC168 MEDIA DRIVER
7153 M:      Antti Palosaari <crope@iki.fi>
7154 L:      linux-media@vger.kernel.org
7155 S:      Maintained
7156 W:      https://linuxtv.org
7157 W:      http://palosaari.fi/linux/
7158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7159 T:      git git://linuxtv.org/anttip/media_tree.git
7160 F:      drivers/media/usb/dvb-usb-v2/ec168*
7161
7162 DVB_USB_GL861 MEDIA DRIVER
7163 M:      Antti Palosaari <crope@iki.fi>
7164 L:      linux-media@vger.kernel.org
7165 S:      Maintained
7166 W:      https://linuxtv.org
7167 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7168 T:      git git://linuxtv.org/anttip/media_tree.git
7169 F:      drivers/media/usb/dvb-usb-v2/gl861*
7170
7171 DVB_USB_MXL111SF MEDIA DRIVER
7172 M:      Michael Krufky <mkrufky@linuxtv.org>
7173 L:      linux-media@vger.kernel.org
7174 S:      Maintained
7175 W:      https://linuxtv.org
7176 W:      http://github.com/mkrufky
7177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7178 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7179 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7180
7181 DVB_USB_RTL28XXU MEDIA DRIVER
7182 M:      Antti Palosaari <crope@iki.fi>
7183 L:      linux-media@vger.kernel.org
7184 S:      Maintained
7185 W:      https://linuxtv.org
7186 W:      http://palosaari.fi/linux/
7187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7188 T:      git git://linuxtv.org/anttip/media_tree.git
7189 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7190
7191 DVB_USB_V2 MEDIA DRIVER
7192 M:      Antti Palosaari <crope@iki.fi>
7193 L:      linux-media@vger.kernel.org
7194 S:      Maintained
7195 W:      https://linuxtv.org
7196 W:      http://palosaari.fi/linux/
7197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7198 T:      git git://linuxtv.org/anttip/media_tree.git
7199 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7200 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7201
7202 DYNAMIC DEBUG
7203 M:      Jason Baron <jbaron@akamai.com>
7204 S:      Maintained
7205 F:      include/linux/dynamic_debug.h
7206 F:      lib/dynamic_debug.c
7207 M:      Jim Cromie <jim.cromie@gmail.com>
7208 F:      lib/test_dynamic_debug.c
7209
7210 DYNAMIC INTERRUPT MODERATION
7211 M:      Tal Gilboa <talgi@nvidia.com>
7212 S:      Maintained
7213 F:      Documentation/networking/net_dim.rst
7214 F:      include/linux/dim.h
7215 F:      lib/dim/
7216
7217 DZ DECSTATION DZ11 SERIAL DRIVER
7218 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7219 S:      Maintained
7220 F:      drivers/tty/serial/dz.*
7221
7222 E3X0 POWER BUTTON DRIVER
7223 M:      Moritz Fischer <moritz.fischer@ettus.com>
7224 L:      usrp-users@lists.ettus.com
7225 S:      Supported
7226 W:      http://www.ettus.com
7227 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7228 F:      drivers/input/misc/e3x0-button.c
7229
7230 E4000 MEDIA DRIVER
7231 M:      Antti Palosaari <crope@iki.fi>
7232 L:      linux-media@vger.kernel.org
7233 S:      Maintained
7234 W:      https://linuxtv.org
7235 W:      http://palosaari.fi/linux/
7236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7237 T:      git git://linuxtv.org/anttip/media_tree.git
7238 F:      drivers/media/tuners/e4000*
7239
7240 EARTH_PT1 MEDIA DRIVER
7241 M:      Akihiro Tsukada <tskd08@gmail.com>
7242 L:      linux-media@vger.kernel.org
7243 S:      Odd Fixes
7244 F:      drivers/media/pci/pt1/
7245
7246 EARTH_PT3 MEDIA DRIVER
7247 M:      Akihiro Tsukada <tskd08@gmail.com>
7248 L:      linux-media@vger.kernel.org
7249 S:      Odd Fixes
7250 F:      drivers/media/pci/pt3/
7251
7252 EC100 MEDIA DRIVER
7253 M:      Antti Palosaari <crope@iki.fi>
7254 L:      linux-media@vger.kernel.org
7255 S:      Maintained
7256 W:      https://linuxtv.org
7257 W:      http://palosaari.fi/linux/
7258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7259 T:      git git://linuxtv.org/anttip/media_tree.git
7260 F:      drivers/media/dvb-frontends/ec100*
7261
7262 ECRYPT FILE SYSTEM
7263 M:      Tyler Hicks <code@tyhicks.com>
7264 L:      ecryptfs@vger.kernel.org
7265 S:      Odd Fixes
7266 W:      http://ecryptfs.org
7267 W:      https://launchpad.net/ecryptfs
7268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7269 F:      Documentation/filesystems/ecryptfs.rst
7270 F:      fs/ecryptfs/
7271
7272 EDAC-AMD64
7273 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7274 L:      linux-edac@vger.kernel.org
7275 S:      Supported
7276 F:      drivers/edac/amd64_edac*
7277 F:      drivers/edac/mce_amd*
7278
7279 EDAC-ARMADA
7280 M:      Jan Luebbe <jlu@pengutronix.de>
7281 L:      linux-edac@vger.kernel.org
7282 S:      Maintained
7283 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7284 F:      drivers/edac/armada_xp_*
7285
7286 EDAC-AST2500
7287 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7288 S:      Supported
7289 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7290 F:      drivers/edac/aspeed_edac.c
7291
7292 EDAC-BLUEFIELD
7293 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7294 S:      Supported
7295 F:      drivers/edac/bluefield_edac.c
7296
7297 EDAC-CALXEDA
7298 M:      Andre Przywara <andre.przywara@arm.com>
7299 L:      linux-edac@vger.kernel.org
7300 S:      Maintained
7301 F:      drivers/edac/highbank*
7302
7303 EDAC-CAVIUM OCTEON
7304 M:      Ralf Baechle <ralf@linux-mips.org>
7305 L:      linux-edac@vger.kernel.org
7306 L:      linux-mips@vger.kernel.org
7307 S:      Supported
7308 F:      drivers/edac/octeon_edac*
7309
7310 EDAC-CAVIUM THUNDERX
7311 M:      Robert Richter <rric@kernel.org>
7312 L:      linux-edac@vger.kernel.org
7313 S:      Odd Fixes
7314 F:      drivers/edac/thunderx_edac*
7315
7316 EDAC-CORE
7317 M:      Borislav Petkov <bp@alien8.de>
7318 M:      Tony Luck <tony.luck@intel.com>
7319 R:      James Morse <james.morse@arm.com>
7320 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7321 R:      Robert Richter <rric@kernel.org>
7322 L:      linux-edac@vger.kernel.org
7323 S:      Supported
7324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7325 F:      Documentation/admin-guide/ras.rst
7326 F:      Documentation/driver-api/edac.rst
7327 F:      drivers/edac/
7328 F:      include/linux/edac.h
7329
7330 EDAC-DMC520
7331 M:      Lei Wang <lewan@microsoft.com>
7332 L:      linux-edac@vger.kernel.org
7333 S:      Supported
7334 F:      drivers/edac/dmc520_edac.c
7335
7336 EDAC-E752X
7337 M:      Mark Gross <markgross@kernel.org>
7338 L:      linux-edac@vger.kernel.org
7339 S:      Maintained
7340 F:      drivers/edac/e752x_edac.c
7341
7342 EDAC-E7XXX
7343 L:      linux-edac@vger.kernel.org
7344 S:      Maintained
7345 F:      drivers/edac/e7xxx_edac.c
7346
7347 EDAC-FSL_DDR
7348 M:      York Sun <york.sun@nxp.com>
7349 L:      linux-edac@vger.kernel.org
7350 S:      Maintained
7351 F:      drivers/edac/fsl_ddr_edac.*
7352
7353 EDAC-GHES
7354 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7355 L:      linux-edac@vger.kernel.org
7356 S:      Maintained
7357 F:      drivers/edac/ghes_edac.c
7358
7359 EDAC-I10NM
7360 M:      Tony Luck <tony.luck@intel.com>
7361 L:      linux-edac@vger.kernel.org
7362 S:      Maintained
7363 F:      drivers/edac/i10nm_base.c
7364
7365 EDAC-I3000
7366 L:      linux-edac@vger.kernel.org
7367 S:      Orphan
7368 F:      drivers/edac/i3000_edac.c
7369
7370 EDAC-I5000
7371 L:      linux-edac@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/edac/i5000_edac.c
7374
7375 EDAC-I5400
7376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7377 L:      linux-edac@vger.kernel.org
7378 S:      Maintained
7379 F:      drivers/edac/i5400_edac.c
7380
7381 EDAC-I7300
7382 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7383 L:      linux-edac@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/edac/i7300_edac.c
7386
7387 EDAC-I7CORE
7388 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7389 L:      linux-edac@vger.kernel.org
7390 S:      Maintained
7391 F:      drivers/edac/i7core_edac.c
7392
7393 EDAC-I82443BXGX
7394 M:      Tim Small <tim@buttersideup.com>
7395 L:      linux-edac@vger.kernel.org
7396 S:      Maintained
7397 F:      drivers/edac/i82443bxgx_edac.c
7398
7399 EDAC-I82975X
7400 M:      "Arvind R." <arvino55@gmail.com>
7401 L:      linux-edac@vger.kernel.org
7402 S:      Maintained
7403 F:      drivers/edac/i82975x_edac.c
7404
7405 EDAC-IE31200
7406 M:      Jason Baron <jbaron@akamai.com>
7407 L:      linux-edac@vger.kernel.org
7408 S:      Maintained
7409 F:      drivers/edac/ie31200_edac.c
7410
7411 EDAC-IGEN6
7412 M:      Tony Luck <tony.luck@intel.com>
7413 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7414 L:      linux-edac@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/edac/igen6_edac.c
7417
7418 EDAC-MPC85XX
7419 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7420 L:      linux-edac@vger.kernel.org
7421 S:      Maintained
7422 F:      drivers/edac/mpc85xx_edac.[ch]
7423
7424 EDAC-PASEMI
7425 M:      Egor Martovetsky <egor@pasemi.com>
7426 L:      linux-edac@vger.kernel.org
7427 S:      Maintained
7428 F:      drivers/edac/pasemi_edac.c
7429
7430 EDAC-PND2
7431 M:      Tony Luck <tony.luck@intel.com>
7432 L:      linux-edac@vger.kernel.org
7433 S:      Maintained
7434 F:      drivers/edac/pnd2_edac.[ch]
7435
7436 EDAC-QCOM
7437 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7438 L:      linux-arm-msm@vger.kernel.org
7439 L:      linux-edac@vger.kernel.org
7440 S:      Maintained
7441 F:      drivers/edac/qcom_edac.c
7442
7443 EDAC-R82600
7444 M:      Tim Small <tim@buttersideup.com>
7445 L:      linux-edac@vger.kernel.org
7446 S:      Maintained
7447 F:      drivers/edac/r82600_edac.c
7448
7449 EDAC-SBRIDGE
7450 M:      Tony Luck <tony.luck@intel.com>
7451 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/edac/sb_edac.c
7455
7456 EDAC-SKYLAKE
7457 M:      Tony Luck <tony.luck@intel.com>
7458 L:      linux-edac@vger.kernel.org
7459 S:      Maintained
7460 F:      drivers/edac/skx_*.[ch]
7461
7462 EDAC-TI
7463 M:      Tero Kristo <kristo@kernel.org>
7464 L:      linux-edac@vger.kernel.org
7465 S:      Odd Fixes
7466 F:      drivers/edac/ti_edac.c
7467
7468 EDIROL UA-101/UA-1000 DRIVER
7469 M:      Clemens Ladisch <clemens@ladisch.de>
7470 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7471 S:      Maintained
7472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7473 F:      sound/usb/misc/ua101.c
7474
7475 EFI TEST DRIVER
7476 M:      Ivan Hu <ivan.hu@canonical.com>
7477 M:      Ard Biesheuvel <ardb@kernel.org>
7478 L:      linux-efi@vger.kernel.org
7479 S:      Maintained
7480 F:      drivers/firmware/efi/test/
7481
7482 EFI VARIABLE FILESYSTEM
7483 M:      Jeremy Kerr <jk@ozlabs.org>
7484 M:      Ard Biesheuvel <ardb@kernel.org>
7485 L:      linux-efi@vger.kernel.org
7486 S:      Maintained
7487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7488 F:      fs/efivarfs/
7489
7490 EFIFB FRAMEBUFFER DRIVER
7491 M:      Peter Jones <pjones@redhat.com>
7492 L:      linux-fbdev@vger.kernel.org
7493 S:      Maintained
7494 F:      drivers/video/fbdev/efifb.c
7495
7496 EFS FILESYSTEM
7497 S:      Orphan
7498 W:      http://aeschi.ch.eu.org/efs/
7499 F:      fs/efs/
7500
7501 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7502 M:      Douglas Miller <dougmill@linux.ibm.com>
7503 L:      netdev@vger.kernel.org
7504 S:      Maintained
7505 F:      drivers/net/ethernet/ibm/ehea/
7506
7507 ELM327 CAN NETWORK DRIVER
7508 M:      Max Staudt <max@enpas.org>
7509 L:      linux-can@vger.kernel.org
7510 S:      Maintained
7511 F:      Documentation/networking/device_drivers/can/can327.rst
7512 F:      drivers/net/can/can327.c
7513
7514 EM28XX VIDEO4LINUX DRIVER
7515 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7516 L:      linux-media@vger.kernel.org
7517 S:      Maintained
7518 W:      https://linuxtv.org
7519 T:      git git://linuxtv.org/media_tree.git
7520 F:      Documentation/admin-guide/media/em28xx*
7521 F:      drivers/media/usb/em28xx/
7522
7523 EMBEDDED LINUX
7524 M:      Olivia Mackall <olivia@selenic.com>
7525 M:      David Woodhouse <dwmw2@infradead.org>
7526 L:      linux-embedded@vger.kernel.org
7527 S:      Maintained
7528
7529 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7530 M:      Adrian Hunter <adrian.hunter@intel.com>
7531 M:      Ritesh Harjani <riteshh@codeaurora.org>
7532 M:      Asutosh Das <asutoshd@codeaurora.org>
7533 L:      linux-mmc@vger.kernel.org
7534 S:      Supported
7535 F:      drivers/mmc/host/cqhci*
7536
7537 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7538 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7539 L:      linux-scsi@vger.kernel.org
7540 S:      Supported
7541 W:      http://www.broadcom.com
7542 F:      drivers/scsi/be2iscsi/
7543
7544 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7545 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7546 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7547 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7548 L:      netdev@vger.kernel.org
7549 S:      Supported
7550 W:      http://www.emulex.com
7551 F:      drivers/net/ethernet/emulex/benet/
7552
7553 EMULEX ONECONNECT ROCE DRIVER
7554 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7555 L:      linux-rdma@vger.kernel.org
7556 S:      Odd Fixes
7557 W:      http://www.broadcom.com
7558 F:      drivers/infiniband/hw/ocrdma/
7559 F:      include/uapi/rdma/ocrdma-abi.h
7560
7561 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7562 M:      James Smart <james.smart@broadcom.com>
7563 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7564 L:      linux-scsi@vger.kernel.org
7565 S:      Supported
7566 W:      http://www.broadcom.com
7567 F:      drivers/scsi/lpfc/
7568
7569 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7570 M:      James Smart <james.smart@broadcom.com>
7571 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7572 L:      linux-scsi@vger.kernel.org
7573 L:      target-devel@vger.kernel.org
7574 S:      Supported
7575 W:      http://www.broadcom.com
7576 F:      drivers/scsi/elx/
7577
7578 ENE CB710 FLASH CARD READER DRIVER
7579 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7580 S:      Maintained
7581 F:      drivers/misc/cb710/
7582 F:      drivers/mmc/host/cb710-mmc.*
7583 F:      include/linux/cb710.h
7584
7585 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7586 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7587 S:      Maintained
7588 F:      drivers/media/rc/ene_ir.*
7589
7590 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7591 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7592 L:      linuxppc-dev@lists.ozlabs.org
7593 S:      Maintained
7594 F:      drivers/tty/ehv_bytechan.c
7595
7596 EPSON S1D13XXX FRAMEBUFFER DRIVER
7597 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7598 S:      Maintained
7599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7600 F:      drivers/video/fbdev/s1d13xxxfb.c
7601 F:      include/video/s1d13xxxfb.h
7602
7603 EROFS FILE SYSTEM
7604 M:      Gao Xiang <xiang@kernel.org>
7605 M:      Chao Yu <chao@kernel.org>
7606 R:      Yue Hu <huyue2@coolpad.com>
7607 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7608 L:      linux-erofs@lists.ozlabs.org
7609 S:      Maintained
7610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7611 F:      Documentation/ABI/testing/sysfs-fs-erofs
7612 F:      Documentation/filesystems/erofs.rst
7613 F:      fs/erofs/
7614 F:      include/trace/events/erofs.h
7615
7616 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7617 M:      Jeff Layton <jlayton@kernel.org>
7618 S:      Maintained
7619 F:      include/linux/errseq.h
7620 F:      lib/errseq.c
7621
7622 ESD CAN/USB DRIVERS
7623 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7624 R:      socketcan@esd.eu
7625 L:      linux-can@vger.kernel.org
7626 S:      Maintained
7627 F:      drivers/net/can/usb/esd_usb.c
7628
7629 ET131X NETWORK DRIVER
7630 M:      Mark Einon <mark.einon@gmail.com>
7631 S:      Odd Fixes
7632 F:      drivers/net/ethernet/agere/
7633
7634 ETAS ES58X CAN/USB DRIVER
7635 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7636 L:      linux-can@vger.kernel.org
7637 S:      Maintained
7638 F:      Documentation/networking/devlink/etas_es58x.rst
7639 F:      drivers/net/can/usb/etas_es58x/
7640
7641 ETHERNET BRIDGE
7642 M:      Roopa Prabhu <roopa@nvidia.com>
7643 M:      Nikolay Aleksandrov <razor@blackwall.org>
7644 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7645 L:      netdev@vger.kernel.org
7646 S:      Maintained
7647 W:      http://www.linuxfoundation.org/en/Net:Bridge
7648 F:      include/linux/netfilter_bridge/
7649 F:      net/bridge/
7650
7651 ETHERNET PHY LIBRARY
7652 M:      Andrew Lunn <andrew@lunn.ch>
7653 M:      Heiner Kallweit <hkallweit1@gmail.com>
7654 R:      Russell King <linux@armlinux.org.uk>
7655 L:      netdev@vger.kernel.org
7656 S:      Maintained
7657 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7658 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7659 F:      Documentation/devicetree/bindings/net/mdio*
7660 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7661 F:      Documentation/networking/phy.rst
7662 F:      drivers/net/mdio/
7663 F:      drivers/net/mdio/acpi_mdio.c
7664 F:      drivers/net/mdio/fwnode_mdio.c
7665 F:      drivers/net/mdio/of_mdio.c
7666 F:      drivers/net/pcs/
7667 F:      drivers/net/phy/
7668 F:      include/dt-bindings/net/qca-ar803x.h
7669 F:      include/linux/linkmode.h
7670 F:      include/linux/*mdio*.h
7671 F:      include/linux/mdio/*.h
7672 F:      include/linux/mii.h
7673 F:      include/linux/of_net.h
7674 F:      include/linux/phy.h
7675 F:      include/linux/phy_fixed.h
7676 F:      include/linux/platform_data/mdio-bcm-unimac.h
7677 F:      include/linux/platform_data/mdio-gpio.h
7678 F:      include/trace/events/mdio.h
7679 F:      include/uapi/linux/mdio.h
7680 F:      include/uapi/linux/mii.h
7681 F:      net/core/of_net.c
7682
7683 EXEC & BINFMT API
7684 R:      Eric Biederman <ebiederm@xmission.com>
7685 R:      Kees Cook <keescook@chromium.org>
7686 L:      linux-mm@kvack.org
7687 S:      Supported
7688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7689 F:      fs/*binfmt_*.c
7690 F:      fs/exec.c
7691 F:      include/linux/binfmts.h
7692 F:      include/linux/elf.h
7693 F:      include/uapi/linux/binfmts.h
7694 F:      include/uapi/linux/elf.h
7695 F:      tools/testing/selftests/exec/
7696 N:      asm/elf.h
7697 N:      binfmt
7698
7699 EXFAT FILE SYSTEM
7700 M:      Namjae Jeon <linkinjeon@kernel.org>
7701 M:      Sungjong Seo <sj1557.seo@samsung.com>
7702 L:      linux-fsdevel@vger.kernel.org
7703 S:      Maintained
7704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7705 F:      fs/exfat/
7706
7707 EXT2 FILE SYSTEM
7708 M:      Jan Kara <jack@suse.com>
7709 L:      linux-ext4@vger.kernel.org
7710 S:      Maintained
7711 F:      Documentation/filesystems/ext2.rst
7712 F:      fs/ext2/
7713 F:      include/linux/ext2*
7714
7715 EXT4 FILE SYSTEM
7716 M:      "Theodore Ts'o" <tytso@mit.edu>
7717 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7718 L:      linux-ext4@vger.kernel.org
7719 S:      Maintained
7720 W:      http://ext4.wiki.kernel.org
7721 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7723 F:      Documentation/filesystems/ext4/
7724 F:      fs/ext4/
7725 F:      include/trace/events/ext4.h
7726
7727 Extended Verification Module (EVM)
7728 M:      Mimi Zohar <zohar@linux.ibm.com>
7729 L:      linux-integrity@vger.kernel.org
7730 S:      Supported
7731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7732 F:      security/integrity/evm/
7733 F:      security/integrity/
7734
7735 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7736 M:      Ard Biesheuvel <ardb@kernel.org>
7737 L:      linux-efi@vger.kernel.org
7738 S:      Maintained
7739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7740 F:      Documentation/admin-guide/efi-stub.rst
7741 F:      arch/*/include/asm/efi.h
7742 F:      arch/*/kernel/efi.c
7743 F:      arch/arm/boot/compressed/efi-header.S
7744 F:      arch/x86/platform/efi/
7745 F:      drivers/firmware/efi/
7746 F:      include/linux/efi*.h
7747
7748 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7749 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7750 M:      Chanwoo Choi <cw00.choi@samsung.com>
7751 L:      linux-kernel@vger.kernel.org
7752 S:      Maintained
7753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7754 F:      Documentation/devicetree/bindings/extcon/
7755 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7756 F:      drivers/extcon/
7757 F:      include/linux/extcon.h
7758 F:      include/linux/extcon/
7759
7760 EXTRA BOOT CONFIG
7761 M:      Masami Hiramatsu <mhiramat@kernel.org>
7762 L:      linux-kernel@vger.kernel.org
7763 L:      linux-trace-kernel@vger.kernel.org
7764 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7765 S:      Maintained
7766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7767 F:      Documentation/admin-guide/bootconfig.rst
7768 F:      fs/proc/bootconfig.c
7769 F:      include/linux/bootconfig.h
7770 F:      lib/bootconfig-data.S
7771 F:      lib/bootconfig.c
7772 F:      tools/bootconfig/*
7773 F:      tools/bootconfig/scripts/*
7774
7775 EXYNOS DP DRIVER
7776 M:      Jingoo Han <jingoohan1@gmail.com>
7777 L:      dri-devel@lists.freedesktop.org
7778 S:      Maintained
7779 F:      drivers/gpu/drm/exynos/exynos_dp*
7780
7781 EXYNOS SYSMMU (IOMMU) driver
7782 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7783 L:      iommu@lists.linux.dev
7784 S:      Maintained
7785 F:      drivers/iommu/exynos-iommu.c
7786
7787 F2FS FILE SYSTEM
7788 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7789 M:      Chao Yu <chao@kernel.org>
7790 L:      linux-f2fs-devel@lists.sourceforge.net
7791 S:      Maintained
7792 W:      https://f2fs.wiki.kernel.org/
7793 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7795 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7796 F:      Documentation/filesystems/f2fs.rst
7797 F:      fs/f2fs/
7798 F:      include/linux/f2fs_fs.h
7799 F:      include/trace/events/f2fs.h
7800 F:      include/uapi/linux/f2fs.h
7801
7802 F71805F HARDWARE MONITORING DRIVER
7803 M:      Jean Delvare <jdelvare@suse.com>
7804 L:      linux-hwmon@vger.kernel.org
7805 S:      Maintained
7806 F:      Documentation/hwmon/f71805f.rst
7807 F:      drivers/hwmon/f71805f.c
7808
7809 FADDR2LINE
7810 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7811 S:      Maintained
7812 F:      scripts/faddr2line
7813
7814 FAILOVER MODULE
7815 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7816 L:      netdev@vger.kernel.org
7817 S:      Supported
7818 F:      Documentation/networking/failover.rst
7819 F:      include/net/failover.h
7820 F:      net/core/failover.c
7821
7822 FANOTIFY
7823 M:      Jan Kara <jack@suse.cz>
7824 R:      Amir Goldstein <amir73il@gmail.com>
7825 R:      Matthew Bobrowski <repnop@google.com>
7826 L:      linux-fsdevel@vger.kernel.org
7827 S:      Maintained
7828 F:      fs/notify/fanotify/
7829 F:      include/linux/fanotify.h
7830 F:      include/uapi/linux/fanotify.h
7831
7832 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7833 M:      Linus Walleij <linus.walleij@linaro.org>
7834 L:      linux-usb@vger.kernel.org
7835 S:      Maintained
7836 F:      drivers/usb/fotg210/
7837
7838 FARSYNC SYNCHRONOUS DRIVER
7839 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7840 S:      Supported
7841 W:      http://www.farsite.co.uk/
7842 F:      drivers/net/wan/farsync.*
7843
7844 FAULT INJECTION SUPPORT
7845 M:      Akinobu Mita <akinobu.mita@gmail.com>
7846 S:      Supported
7847 F:      Documentation/fault-injection/
7848 F:      lib/fault-inject.c
7849
7850 FBTFT Framebuffer drivers
7851 L:      dri-devel@lists.freedesktop.org
7852 L:      linux-fbdev@vger.kernel.org
7853 S:      Orphan
7854 F:      drivers/staging/fbtft/
7855
7856 FC0011 TUNER DRIVER
7857 M:      Michael Buesch <m@bues.ch>
7858 L:      linux-media@vger.kernel.org
7859 S:      Maintained
7860 F:      drivers/media/tuners/fc0011.c
7861 F:      drivers/media/tuners/fc0011.h
7862
7863 FC2580 MEDIA DRIVER
7864 M:      Antti Palosaari <crope@iki.fi>
7865 L:      linux-media@vger.kernel.org
7866 S:      Maintained
7867 W:      https://linuxtv.org
7868 W:      http://palosaari.fi/linux/
7869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7870 T:      git git://linuxtv.org/anttip/media_tree.git
7871 F:      drivers/media/tuners/fc2580*
7872
7873 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7874 M:      Hannes Reinecke <hare@suse.de>
7875 L:      linux-scsi@vger.kernel.org
7876 S:      Supported
7877 W:      www.Open-FCoE.org
7878 F:      drivers/scsi/fcoe/
7879 F:      drivers/scsi/libfc/
7880 F:      include/scsi/fc/
7881 F:      include/scsi/libfc.h
7882 F:      include/scsi/libfcoe.h
7883 F:      include/uapi/scsi/fc/
7884
7885 FILE LOCKING (flock() and fcntl()/lockf())
7886 M:      Jeff Layton <jlayton@kernel.org>
7887 M:      Chuck Lever <chuck.lever@oracle.com>
7888 L:      linux-fsdevel@vger.kernel.org
7889 S:      Maintained
7890 F:      fs/fcntl.c
7891 F:      fs/locks.c
7892 F:      include/linux/fcntl.h
7893 F:      include/uapi/linux/fcntl.h
7894
7895 FILESYSTEM DIRECT ACCESS (DAX)
7896 M:      Dan Williams <dan.j.williams@intel.com>
7897 R:      Matthew Wilcox <willy@infradead.org>
7898 R:      Jan Kara <jack@suse.cz>
7899 L:      linux-fsdevel@vger.kernel.org
7900 L:      nvdimm@lists.linux.dev
7901 S:      Supported
7902 F:      fs/dax.c
7903 F:      include/linux/dax.h
7904 F:      include/trace/events/fs_dax.h
7905
7906 FILESYSTEMS (VFS and infrastructure)
7907 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7908 L:      linux-fsdevel@vger.kernel.org
7909 S:      Maintained
7910 F:      fs/*
7911 F:      include/linux/fs.h
7912 F:      include/linux/fs_types.h
7913 F:      include/uapi/linux/fs.h
7914 F:      include/uapi/linux/openat2.h
7915
7916 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7917 M:      Riku Voipio <riku.voipio@iki.fi>
7918 L:      linux-hwmon@vger.kernel.org
7919 S:      Maintained
7920 F:      drivers/hwmon/f75375s.c
7921 F:      include/linux/f75375s.h
7922
7923 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7924 M:      Clemens Ladisch <clemens@ladisch.de>
7925 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7927 S:      Maintained
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7929 F:      include/uapi/sound/firewire.h
7930 F:      sound/firewire/
7931
7932 FIREWIRE MEDIA DRIVERS (firedtv)
7933 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7934 L:      linux-media@vger.kernel.org
7935 L:      linux1394-devel@lists.sourceforge.net
7936 S:      Maintained
7937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7938 F:      drivers/media/firewire/
7939
7940 FIREWIRE SBP-2 TARGET
7941 M:      Chris Boot <bootc@bootc.net>
7942 L:      linux-scsi@vger.kernel.org
7943 L:      target-devel@vger.kernel.org
7944 L:      linux1394-devel@lists.sourceforge.net
7945 S:      Maintained
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7947 F:      drivers/target/sbp/
7948
7949 FIREWIRE SUBSYSTEM
7950 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7951 L:      linux1394-devel@lists.sourceforge.net
7952 S:      Maintained
7953 W:      http://ieee1394.wiki.kernel.org/
7954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7955 F:      drivers/firewire/
7956 F:      include/linux/firewire.h
7957 F:      include/uapi/linux/firewire*.h
7958 F:      tools/firewire/
7959
7960 FIRMWARE FRAMEWORK FOR ARMV8-A
7961 M:      Sudeep Holla <sudeep.holla@arm.com>
7962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7963 S:      Maintained
7964 F:      drivers/firmware/arm_ffa/
7965 F:      include/linux/arm_ffa.h
7966
7967 FIRMWARE LOADER (request_firmware)
7968 M:      Luis Chamberlain <mcgrof@kernel.org>
7969 M:      Russ Weight <russell.h.weight@intel.com>
7970 L:      linux-kernel@vger.kernel.org
7971 S:      Maintained
7972 F:      Documentation/firmware_class/
7973 F:      drivers/base/firmware_loader/
7974 F:      include/linux/firmware.h
7975
7976 FLEXTIMER FTM-QUADDEC DRIVER
7977 M:      Patrick Havelange <patrick.havelange@essensium.com>
7978 L:      linux-iio@vger.kernel.org
7979 S:      Maintained
7980 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7981 F:      drivers/counter/ftm-quaddec.c
7982
7983 FLOPPY DRIVER
7984 M:      Denis Efremov <efremov@linux.com>
7985 L:      linux-block@vger.kernel.org
7986 S:      Odd Fixes
7987 F:      drivers/block/floppy.c
7988
7989 FLYSKY FSIA6B RC RECEIVER
7990 M:      Markus Koch <markus@notsyncing.net>
7991 L:      linux-input@vger.kernel.org
7992 S:      Maintained
7993 F:      drivers/input/joystick/fsia6b.c
7994
7995 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7996 M:      Geoffrey D. Bennett <g@b4.vu>
7997 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7998 S:      Maintained
7999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8000 F:      sound/usb/mixer_scarlett_gen2.c
8001
8002 FORCEDETH GIGABIT ETHERNET DRIVER
8003 M:      Rain River <rain.1986.08.12@gmail.com>
8004 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8005 L:      netdev@vger.kernel.org
8006 S:      Maintained
8007 F:      drivers/net/ethernet/nvidia/*
8008
8009 FORTIFY_SOURCE
8010 M:      Kees Cook <keescook@chromium.org>
8011 L:      linux-hardening@vger.kernel.org
8012 S:      Supported
8013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8014 F:      include/linux/fortify-string.h
8015 F:      lib/fortify_kunit.c
8016 F:      lib/memcpy_kunit.c
8017 F:      lib/strscpy_kunit.c
8018 F:      lib/test_fortify/*
8019 F:      scripts/test_fortify.sh
8020 K:      \b__NO_FORTIFY\b
8021
8022 FPGA DFL DRIVERS
8023 M:      Wu Hao <hao.wu@intel.com>
8024 R:      Tom Rix <trix@redhat.com>
8025 L:      linux-fpga@vger.kernel.org
8026 S:      Maintained
8027 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8028 F:      Documentation/fpga/dfl.rst
8029 F:      drivers/fpga/dfl*
8030 F:      drivers/uio/uio_dfl.c
8031 F:      include/linux/dfl.h
8032 F:      include/uapi/linux/fpga-dfl.h
8033
8034 FPGA MANAGER FRAMEWORK
8035 M:      Moritz Fischer <mdf@kernel.org>
8036 M:      Wu Hao <hao.wu@intel.com>
8037 M:      Xu Yilun <yilun.xu@intel.com>
8038 R:      Tom Rix <trix@redhat.com>
8039 L:      linux-fpga@vger.kernel.org
8040 S:      Maintained
8041 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8043 F:      Documentation/devicetree/bindings/fpga/
8044 F:      Documentation/driver-api/fpga/
8045 F:      Documentation/fpga/
8046 F:      drivers/fpga/
8047 F:      include/linux/fpga/
8048
8049 INTEL MAX10 BMC SECURE UPDATES
8050 M:      Russ Weight <russell.h.weight@intel.com>
8051 L:      linux-fpga@vger.kernel.org
8052 S:      Maintained
8053 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8054 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8055
8056 MICROCHIP POLARFIRE FPGA DRIVERS
8057 M:      Conor Dooley <conor.dooley@microchip.com>
8058 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8059 L:      linux-fpga@vger.kernel.org
8060 S:      Supported
8061 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8062 F:      drivers/fpga/microchip-spi.c
8063
8064 FPU EMULATOR
8065 M:      Bill Metzenthen <billm@melbpc.org.au>
8066 S:      Maintained
8067 W:      https://floatingpoint.billm.au/
8068 F:      arch/x86/math-emu/
8069
8070 FRAMEBUFFER CORE
8071 M:      Daniel Vetter <daniel@ffwll.ch>
8072 F:      drivers/video/fbdev/core/
8073 S:      Odd Fixes
8074 T:      git git://anongit.freedesktop.org/drm/drm-misc
8075
8076 FRAMEBUFFER LAYER
8077 M:      Helge Deller <deller@gmx.de>
8078 L:      linux-fbdev@vger.kernel.org
8079 L:      dri-devel@lists.freedesktop.org
8080 S:      Maintained
8081 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8083 F:      Documentation/fb/
8084 F:      drivers/video/
8085 F:      include/linux/fb.h
8086 F:      include/uapi/linux/fb.h
8087 F:      include/uapi/video/
8088 F:      include/video/
8089
8090 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8091 M:      Horia Geantă <horia.geanta@nxp.com>
8092 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8093 M:      Gaurav Jain <gaurav.jain@nxp.com>
8094 L:      linux-crypto@vger.kernel.org
8095 S:      Maintained
8096 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8097 F:      drivers/crypto/caam/
8098
8099 FREESCALE COLDFIRE M5441X MMC DRIVER
8100 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8101 L:      linux-mmc@vger.kernel.org
8102 S:      Maintained
8103 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8104 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8105
8106 FREESCALE DIU FRAMEBUFFER DRIVER
8107 M:      Timur Tabi <timur@kernel.org>
8108 L:      linux-fbdev@vger.kernel.org
8109 S:      Maintained
8110 F:      drivers/video/fbdev/fsl-diu-fb.*
8111
8112 FREESCALE DMA DRIVER
8113 M:      Li Yang <leoyang.li@nxp.com>
8114 M:      Zhang Wei <zw@zh-kernel.org>
8115 L:      linuxppc-dev@lists.ozlabs.org
8116 S:      Maintained
8117 F:      drivers/dma/fsldma.*
8118
8119 FREESCALE DSPI DRIVER
8120 M:      Vladimir Oltean <olteanv@gmail.com>
8121 L:      linux-spi@vger.kernel.org
8122 S:      Maintained
8123 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8124 F:      drivers/spi/spi-fsl-dspi.c
8125 F:      include/linux/spi/spi-fsl-dspi.h
8126
8127 FREESCALE ENETC ETHERNET DRIVERS
8128 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8129 L:      netdev@vger.kernel.org
8130 S:      Maintained
8131 F:      drivers/net/ethernet/freescale/enetc/
8132
8133 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8134 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8135 L:      netdev@vger.kernel.org
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8138 F:      drivers/net/ethernet/freescale/gianfar*
8139
8140 FREESCALE GPMI NAND DRIVER
8141 M:      Han Xu <han.xu@nxp.com>
8142 L:      linux-mtd@lists.infradead.org
8143 S:      Maintained
8144 F:      drivers/mtd/nand/raw/gpmi-nand/*
8145
8146 FREESCALE I2C CPM DRIVER
8147 M:      Jochen Friedrich <jochen@scram.de>
8148 L:      linuxppc-dev@lists.ozlabs.org
8149 L:      linux-i2c@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/i2c/busses/i2c-cpm.c
8152
8153 FREESCALE IMX / MXC FEC DRIVER
8154 M:      Wei Fang <wei.fang@nxp.com>
8155 R:      Shenwei Wang <shenwei.wang@nxp.com>
8156 R:      Clark Wang <xiaoning.wang@nxp.com>
8157 R:      NXP Linux Team <linux-imx@nxp.com>
8158 L:      netdev@vger.kernel.org
8159 S:      Maintained
8160 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8161 F:      drivers/net/ethernet/freescale/fec.h
8162 F:      drivers/net/ethernet/freescale/fec_main.c
8163 F:      drivers/net/ethernet/freescale/fec_ptp.c
8164
8165 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8166 M:      Sascha Hauer <s.hauer@pengutronix.de>
8167 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8168 L:      linux-fbdev@vger.kernel.org
8169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8170 S:      Maintained
8171 F:      drivers/video/fbdev/imxfb.c
8172
8173 FREESCALE IMX DDR PMU DRIVER
8174 M:      Frank Li <Frank.li@nxp.com>
8175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8176 S:      Maintained
8177 F:      Documentation/admin-guide/perf/imx-ddr.rst
8178 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8179 F:      drivers/perf/fsl_imx8_ddr_perf.c
8180
8181 FREESCALE IMX I2C DRIVER
8182 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8183 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8184 L:      linux-i2c@vger.kernel.org
8185 S:      Maintained
8186 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8187 F:      drivers/i2c/busses/i2c-imx.c
8188
8189 FREESCALE IMX LPI2C DRIVER
8190 M:      Dong Aisheng <aisheng.dong@nxp.com>
8191 L:      linux-i2c@vger.kernel.org
8192 L:      linux-imx@nxp.com
8193 S:      Maintained
8194 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8195 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8196
8197 FREESCALE MPC I2C DRIVER
8198 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8199 L:      linux-i2c@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8202 F:      drivers/i2c/busses/i2c-mpc.c
8203
8204 FREESCALE QORIQ DPAA ETHERNET DRIVER
8205 M:      Madalin Bucur <madalin.bucur@nxp.com>
8206 L:      netdev@vger.kernel.org
8207 S:      Maintained
8208 F:      drivers/net/ethernet/freescale/dpaa
8209
8210 FREESCALE QORIQ DPAA FMAN DRIVER
8211 M:      Madalin Bucur <madalin.bucur@nxp.com>
8212 L:      netdev@vger.kernel.org
8213 S:      Maintained
8214 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8215 F:      drivers/net/ethernet/freescale/fman
8216
8217 FREESCALE QORIQ PTP CLOCK DRIVER
8218 M:      Yangbo Lu <yangbo.lu@nxp.com>
8219 L:      netdev@vger.kernel.org
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8222 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8223 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8224 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8225 F:      drivers/ptp/ptp_qoriq.c
8226 F:      drivers/ptp/ptp_qoriq_debugfs.c
8227 F:      include/linux/fsl/ptp_qoriq.h
8228
8229 FREESCALE QUAD SPI DRIVER
8230 M:      Han Xu <han.xu@nxp.com>
8231 L:      linux-spi@vger.kernel.org
8232 S:      Maintained
8233 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8234 F:      drivers/spi/spi-fsl-qspi.c
8235
8236 FREESCALE QUICC ENGINE LIBRARY
8237 M:      Qiang Zhao <qiang.zhao@nxp.com>
8238 L:      linuxppc-dev@lists.ozlabs.org
8239 S:      Maintained
8240 F:      drivers/soc/fsl/qe/
8241 F:      include/soc/fsl/qe/
8242
8243 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8244 M:      Li Yang <leoyang.li@nxp.com>
8245 L:      netdev@vger.kernel.org
8246 L:      linuxppc-dev@lists.ozlabs.org
8247 S:      Maintained
8248 F:      drivers/net/ethernet/freescale/ucc_geth*
8249
8250 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8251 M:      Zhao Qiang <qiang.zhao@nxp.com>
8252 L:      netdev@vger.kernel.org
8253 L:      linuxppc-dev@lists.ozlabs.org
8254 S:      Maintained
8255 F:      drivers/net/wan/fsl_ucc_hdlc*
8256
8257 FREESCALE QUICC ENGINE UCC UART DRIVER
8258 M:      Timur Tabi <timur@kernel.org>
8259 L:      linuxppc-dev@lists.ozlabs.org
8260 S:      Maintained
8261 F:      drivers/tty/serial/ucc_uart.c
8262
8263 FREESCALE SOC DRIVERS
8264 M:      Li Yang <leoyang.li@nxp.com>
8265 L:      linuxppc-dev@lists.ozlabs.org
8266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8267 S:      Maintained
8268 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8269 F:      Documentation/devicetree/bindings/soc/fsl/
8270 F:      drivers/soc/fsl/
8271 F:      include/linux/fsl/
8272 F:      include/soc/fsl/
8273
8274 FREESCALE SOC FS_ENET DRIVER
8275 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8276 L:      linuxppc-dev@lists.ozlabs.org
8277 L:      netdev@vger.kernel.org
8278 S:      Maintained
8279 F:      drivers/net/ethernet/freescale/fs_enet/
8280 F:      include/linux/fs_enet_pd.h
8281
8282 FREESCALE SOC SOUND DRIVERS
8283 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8284 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8285 R:      Fabio Estevam <festevam@gmail.com>
8286 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8288 L:      linuxppc-dev@lists.ozlabs.org
8289 S:      Maintained
8290 F:      sound/soc/fsl/fsl*
8291 F:      sound/soc/fsl/imx*
8292 F:      sound/soc/fsl/mpc8610_hpcd.c
8293
8294 FREESCALE USB PERIPHERAL DRIVERS
8295 M:      Li Yang <leoyang.li@nxp.com>
8296 L:      linux-usb@vger.kernel.org
8297 L:      linuxppc-dev@lists.ozlabs.org
8298 S:      Maintained
8299 F:      drivers/usb/gadget/udc/fsl*
8300
8301 FREESCALE USB PHY DRIVER
8302 M:      Ran Wang <ran.wang_1@nxp.com>
8303 L:      linux-usb@vger.kernel.org
8304 L:      linuxppc-dev@lists.ozlabs.org
8305 S:      Maintained
8306 F:      drivers/usb/phy/phy-fsl-usb*
8307
8308 FREEVXFS FILESYSTEM
8309 M:      Christoph Hellwig <hch@infradead.org>
8310 S:      Maintained
8311 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8312 F:      fs/freevxfs/
8313
8314 FREEZER
8315 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8316 M:      Pavel Machek <pavel@ucw.cz>
8317 L:      linux-pm@vger.kernel.org
8318 S:      Supported
8319 F:      Documentation/power/freezing-of-tasks.rst
8320 F:      include/linux/freezer.h
8321 F:      kernel/freezer.c
8322
8323 FRONTSWAP API
8324 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8325 L:      linux-kernel@vger.kernel.org
8326 S:      Maintained
8327 F:      include/linux/frontswap.h
8328 F:      mm/frontswap.c
8329
8330 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8331 M:      David Howells <dhowells@redhat.com>
8332 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8333 S:      Supported
8334 F:      Documentation/filesystems/caching/
8335 F:      fs/fscache/
8336 F:      include/linux/fscache*.h
8337
8338 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8339 M:      Eric Biggers <ebiggers@kernel.org>
8340 M:      Theodore Y. Ts'o <tytso@mit.edu>
8341 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8342 L:      linux-fscrypt@vger.kernel.org
8343 S:      Supported
8344 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8345 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8346 F:      Documentation/filesystems/fscrypt.rst
8347 F:      fs/crypto/
8348 F:      include/linux/fscrypt.h
8349 F:      include/uapi/linux/fscrypt.h
8350
8351 FSI SUBSYSTEM
8352 M:      Jeremy Kerr <jk@ozlabs.org>
8353 M:      Joel Stanley <joel@jms.id.au>
8354 R:      Alistar Popple <alistair@popple.id.au>
8355 R:      Eddie James <eajames@linux.ibm.com>
8356 L:      linux-fsi@lists.ozlabs.org
8357 S:      Supported
8358 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8360 F:      drivers/fsi/
8361 F:      include/linux/fsi*.h
8362 F:      include/trace/events/fsi*.h
8363
8364 FSI-ATTACHED I2C DRIVER
8365 M:      Eddie James <eajames@linux.ibm.com>
8366 L:      linux-i2c@vger.kernel.org
8367 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8368 S:      Maintained
8369 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8370 F:      drivers/i2c/busses/i2c-fsi.c
8371
8372 FSI-ATTACHED SPI DRIVER
8373 M:      Eddie James <eajames@linux.ibm.com>
8374 L:      linux-spi@vger.kernel.org
8375 S:      Maintained
8376 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8377 F:      drivers/spi/spi-fsi.c
8378
8379 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8380 M:      Jan Kara <jack@suse.cz>
8381 R:      Amir Goldstein <amir73il@gmail.com>
8382 L:      linux-fsdevel@vger.kernel.org
8383 S:      Maintained
8384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8385 F:      fs/notify/
8386 F:      include/linux/fsnotify*.h
8387
8388 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8389 M:      Eric Biggers <ebiggers@kernel.org>
8390 M:      Theodore Y. Ts'o <tytso@mit.edu>
8391 L:      fsverity@lists.linux.dev
8392 S:      Supported
8393 Q:      https://patchwork.kernel.org/project/fsverity/list/
8394 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8395 F:      Documentation/filesystems/fsverity.rst
8396 F:      fs/verity/
8397 F:      include/linux/fsverity.h
8398 F:      include/uapi/linux/fsverity.h
8399
8400 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8401 M:      Michael Zaidman <michael.zaidman@gmail.com>
8402 L:      linux-i2c@vger.kernel.org
8403 L:      linux-input@vger.kernel.org
8404 S:      Maintained
8405 F:      drivers/hid/hid-ft260.c
8406
8407 FUJITSU LAPTOP EXTRAS
8408 M:      Jonathan Woithe <jwoithe@just42.net>
8409 L:      platform-driver-x86@vger.kernel.org
8410 S:      Maintained
8411 F:      drivers/platform/x86/fujitsu-laptop.c
8412
8413 FUJITSU M-5MO LS CAMERA ISP DRIVER
8414 M:      Kyungmin Park <kyungmin.park@samsung.com>
8415 M:      Heungjun Kim <riverful.kim@samsung.com>
8416 L:      linux-media@vger.kernel.org
8417 S:      Maintained
8418 F:      drivers/media/i2c/m5mols/
8419 F:      include/media/i2c/m5mols.h
8420
8421 FUJITSU TABLET EXTRAS
8422 M:      Robert Gerlach <khnz@gmx.de>
8423 L:      platform-driver-x86@vger.kernel.org
8424 S:      Maintained
8425 F:      drivers/platform/x86/fujitsu-tablet.c
8426
8427 FUNCTION HOOKS (FTRACE)
8428 M:      Steven Rostedt <rostedt@goodmis.org>
8429 M:      Masami Hiramatsu <mhiramat@kernel.org>
8430 R:      Mark Rutland <mark.rutland@arm.com>
8431 L:      linux-kernel@vger.kernel.org
8432 L:      linux-trace-kernel@vger.kernel.org
8433 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8434 S:      Maintained
8435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8436 F:      Documentation/trace/ftrace*
8437 F:      kernel/trace/ftrace*
8438 F:      kernel/trace/fgraph.c
8439 F:      arch/*/*/*/*ftrace*
8440 F:      arch/*/*/*ftrace*
8441 F:      include/*/ftrace.h
8442 F:      samples/ftrace
8443
8444 FUNGIBLE ETHERNET DRIVERS
8445 M:      Dimitris Michailidis <dmichail@fungible.com>
8446 L:      netdev@vger.kernel.org
8447 S:      Supported
8448 F:      drivers/net/ethernet/fungible/
8449
8450 FUSE: FILESYSTEM IN USERSPACE
8451 M:      Miklos Szeredi <miklos@szeredi.hu>
8452 L:      linux-fsdevel@vger.kernel.org
8453 S:      Maintained
8454 W:      https://github.com/libfuse/
8455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8456 F:      Documentation/filesystems/fuse.rst
8457 F:      fs/fuse/
8458 F:      include/uapi/linux/fuse.h
8459
8460 FUTEX SUBSYSTEM
8461 M:      Thomas Gleixner <tglx@linutronix.de>
8462 M:      Ingo Molnar <mingo@redhat.com>
8463 R:      Peter Zijlstra <peterz@infradead.org>
8464 R:      Darren Hart <dvhart@infradead.org>
8465 R:      Davidlohr Bueso <dave@stgolabs.net>
8466 R:      André Almeida <andrealmeid@igalia.com>
8467 L:      linux-kernel@vger.kernel.org
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8470 F:      Documentation/locking/*futex*
8471 F:      include/asm-generic/futex.h
8472 F:      include/linux/futex.h
8473 F:      include/uapi/linux/futex.h
8474 F:      kernel/futex/*
8475 F:      tools/perf/bench/futex*
8476 F:      tools/testing/selftests/futex/
8477
8478 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8479 M:      Tim Harvey <tharvey@gateworks.com>
8480 S:      Maintained
8481 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8482 F:      drivers/mfd/gateworks-gsc.c
8483 F:      include/linux/mfd/gsc.h
8484 F:      Documentation/hwmon/gsc-hwmon.rst
8485 F:      drivers/hwmon/gsc-hwmon.c
8486 F:      include/linux/platform_data/gsc_hwmon.h
8487
8488 GCC PLUGINS
8489 M:      Kees Cook <keescook@chromium.org>
8490 L:      linux-hardening@vger.kernel.org
8491 S:      Maintained
8492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8493 F:      Documentation/kbuild/gcc-plugins.rst
8494 F:      scripts/Makefile.gcc-plugins
8495 F:      scripts/gcc-plugins/
8496
8497 GCOV BASED KERNEL PROFILING
8498 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8499 S:      Maintained
8500 F:      Documentation/dev-tools/gcov.rst
8501 F:      kernel/gcov/
8502
8503 GDB KERNEL DEBUGGING HELPER SCRIPTS
8504 M:      Jan Kiszka <jan.kiszka@siemens.com>
8505 M:      Kieran Bingham <kbingham@kernel.org>
8506 S:      Supported
8507 F:      scripts/gdb/
8508
8509 GEMINI CRYPTO DRIVER
8510 M:      Corentin Labbe <clabbe@baylibre.com>
8511 L:      linux-crypto@vger.kernel.org
8512 S:      Maintained
8513 F:      drivers/crypto/gemini/
8514
8515 GEMTEK FM RADIO RECEIVER DRIVER
8516 M:      Hans Verkuil <hverkuil@xs4all.nl>
8517 L:      linux-media@vger.kernel.org
8518 S:      Maintained
8519 W:      https://linuxtv.org
8520 T:      git git://linuxtv.org/media_tree.git
8521 F:      drivers/media/radio/radio-gemtek*
8522
8523 GENERIC ARCHITECTURE TOPOLOGY
8524 M:      Sudeep Holla <sudeep.holla@arm.com>
8525 L:      linux-kernel@vger.kernel.org
8526 S:      Maintained
8527 F:      drivers/base/arch_topology.c
8528 F:      include/linux/arch_topology.h
8529
8530 GENERIC ENTRY CODE
8531 M:      Thomas Gleixner <tglx@linutronix.de>
8532 M:      Peter Zijlstra <peterz@infradead.org>
8533 M:      Andy Lutomirski <luto@kernel.org>
8534 L:      linux-kernel@vger.kernel.org
8535 S:      Maintained
8536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8537 F:      include/linux/entry-common.h
8538 F:      include/linux/entry-kvm.h
8539 F:      kernel/entry/
8540
8541 GENERIC GPIO I2C DRIVER
8542 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8543 S:      Supported
8544 F:      drivers/i2c/busses/i2c-gpio.c
8545 F:      include/linux/platform_data/i2c-gpio.h
8546
8547 GENERIC GPIO I2C MULTIPLEXER DRIVER
8548 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8549 L:      linux-i2c@vger.kernel.org
8550 S:      Supported
8551 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8552 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8553 F:      include/linux/platform_data/i2c-mux-gpio.h
8554
8555 GENERIC HDLC (WAN) DRIVERS
8556 M:      Krzysztof Halasa <khc@pm.waw.pl>
8557 S:      Maintained
8558 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8559 F:      drivers/net/wan/c101.c
8560 F:      drivers/net/wan/hd6457*
8561 F:      drivers/net/wan/hdlc*
8562 F:      drivers/net/wan/n2.c
8563 F:      drivers/net/wan/pc300too.c
8564 F:      drivers/net/wan/pci200syn.c
8565 F:      drivers/net/wan/wanxl*
8566
8567 GENERIC INCLUDE/ASM HEADER FILES
8568 M:      Arnd Bergmann <arnd@arndb.de>
8569 L:      linux-arch@vger.kernel.org
8570 S:      Maintained
8571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8572 F:      include/asm-generic/
8573 F:      include/uapi/asm-generic/
8574
8575 GENERIC PHY FRAMEWORK
8576 M:      Vinod Koul <vkoul@kernel.org>
8577 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8578 L:      linux-phy@lists.infradead.org
8579 S:      Supported
8580 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8582 F:      Documentation/devicetree/bindings/phy/
8583 F:      drivers/phy/
8584 F:      include/dt-bindings/phy/
8585 F:      include/linux/phy/
8586
8587 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8588 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8589 S:      Supported
8590 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8591
8592 GENERIC PM DOMAINS
8593 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8594 M:      Kevin Hilman <khilman@kernel.org>
8595 M:      Ulf Hansson <ulf.hansson@linaro.org>
8596 L:      linux-pm@vger.kernel.org
8597 S:      Supported
8598 F:      Documentation/devicetree/bindings/power/power?domain*
8599 F:      drivers/base/power/domain*.c
8600 F:      include/linux/pm_domain.h
8601
8602 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8603 M:      Eugen Hristev <eugen.hristev@microchip.com>
8604 L:      linux-input@vger.kernel.org
8605 S:      Maintained
8606 F:      drivers/input/touchscreen/resistive-adc-touch.c
8607
8608 GENERIC STRING LIBRARY
8609 R:      Andy Shevchenko <andy@kernel.org>
8610 S:      Maintained
8611 F:      lib/string.c
8612 F:      lib/string_helpers.c
8613 F:      lib/test_string.c
8614 F:      lib/test-string_helpers.c
8615
8616 GENERIC UIO DRIVER FOR PCI DEVICES
8617 M:      "Michael S. Tsirkin" <mst@redhat.com>
8618 L:      kvm@vger.kernel.org
8619 S:      Supported
8620 F:      drivers/uio/uio_pci_generic.c
8621
8622 GENERIC VDSO LIBRARY
8623 M:      Andy Lutomirski <luto@kernel.org>
8624 M:      Thomas Gleixner <tglx@linutronix.de>
8625 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8626 L:      linux-kernel@vger.kernel.org
8627 S:      Maintained
8628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8629 F:      include/asm-generic/vdso/vsyscall.h
8630 F:      include/vdso/
8631 F:      kernel/time/vsyscall.c
8632 F:      lib/vdso/
8633
8634 GENWQE (IBM Generic Workqueue Card)
8635 M:      Frank Haverkamp <haver@linux.ibm.com>
8636 S:      Supported
8637 F:      drivers/misc/genwqe/
8638
8639 GET_MAINTAINER SCRIPT
8640 M:      Joe Perches <joe@perches.com>
8641 S:      Maintained
8642 F:      scripts/get_maintainer.pl
8643
8644 GFS2 FILE SYSTEM
8645 M:      Bob Peterson <rpeterso@redhat.com>
8646 M:      Andreas Gruenbacher <agruenba@redhat.com>
8647 L:      cluster-devel@redhat.com
8648 S:      Supported
8649 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8651 F:      Documentation/filesystems/gfs2*
8652 F:      fs/gfs2/
8653 F:      include/uapi/linux/gfs2_ondisk.h
8654
8655 GIGABYTE WMI DRIVER
8656 M:      Thomas Weißschuh <thomas@weissschuh.net>
8657 L:      platform-driver-x86@vger.kernel.org
8658 S:      Maintained
8659 F:      drivers/platform/x86/gigabyte-wmi.c
8660
8661 GNSS SUBSYSTEM
8662 M:      Johan Hovold <johan@kernel.org>
8663 S:      Maintained
8664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8665 F:      Documentation/ABI/testing/sysfs-class-gnss
8666 F:      Documentation/devicetree/bindings/gnss/
8667 F:      drivers/gnss/
8668 F:      include/linux/gnss.h
8669
8670 GO7007 MPEG CODEC
8671 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8672 L:      linux-media@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/media/usb/go7007/
8675
8676 GOODIX TOUCHSCREEN
8677 M:      Bastien Nocera <hadess@hadess.net>
8678 M:      Hans de Goede <hdegoede@redhat.com>
8679 L:      linux-input@vger.kernel.org
8680 S:      Maintained
8681 F:      drivers/input/touchscreen/goodix*
8682
8683 GOOGLE ETHERNET DRIVERS
8684 M:      Jeroen de Borst <jeroendb@google.com>
8685 M:      Catherine Sullivan <csully@google.com>
8686 R:      Shailend Chand <shailend@google.com>
8687 L:      netdev@vger.kernel.org
8688 S:      Supported
8689 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8690 F:      drivers/net/ethernet/google
8691
8692 GPD POCKET FAN DRIVER
8693 M:      Hans de Goede <hdegoede@redhat.com>
8694 L:      platform-driver-x86@vger.kernel.org
8695 S:      Maintained
8696 F:      drivers/platform/x86/gpd-pocket-fan.c
8697
8698 GPIO ACPI SUPPORT
8699 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8700 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8701 L:      linux-gpio@vger.kernel.org
8702 L:      linux-acpi@vger.kernel.org
8703 S:      Supported
8704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8705 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8706 F:      drivers/gpio/gpiolib-acpi.c
8707 F:      drivers/gpio/gpiolib-acpi.h
8708
8709 GPIO AGGREGATOR
8710 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8711 L:      linux-gpio@vger.kernel.org
8712 S:      Supported
8713 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8714 F:      drivers/gpio/gpio-aggregator.c
8715
8716 GPIO IR Transmitter
8717 M:      Sean Young <sean@mess.org>
8718 L:      linux-media@vger.kernel.org
8719 S:      Maintained
8720 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8721 F:      drivers/media/rc/gpio-ir-tx.c
8722
8723 GPIO MOCKUP DRIVER
8724 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8725 L:      linux-gpio@vger.kernel.org
8726 S:      Maintained
8727 F:      drivers/gpio/gpio-mockup.c
8728 F:      tools/testing/selftests/gpio/
8729
8730 GPIO REGMAP
8731 R:      Michael Walle <michael@walle.cc>
8732 S:      Maintained
8733 F:      drivers/gpio/gpio-regmap.c
8734 F:      include/linux/gpio/regmap.h
8735
8736 GPIO SUBSYSTEM
8737 M:      Linus Walleij <linus.walleij@linaro.org>
8738 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8739 L:      linux-gpio@vger.kernel.org
8740 S:      Maintained
8741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8742 F:      Documentation/ABI/obsolete/sysfs-gpio
8743 F:      Documentation/ABI/testing/gpio-cdev
8744 F:      Documentation/admin-guide/gpio/
8745 F:      Documentation/devicetree/bindings/gpio/
8746 F:      Documentation/driver-api/gpio/
8747 F:      drivers/gpio/
8748 F:      include/asm-generic/gpio.h
8749 F:      include/dt-bindings/gpio/
8750 F:      include/linux/gpio.h
8751 F:      include/linux/gpio/
8752 F:      include/linux/of_gpio.h
8753 F:      include/uapi/linux/gpio.h
8754 F:      tools/gpio/
8755
8756 GRE DEMULTIPLEXER DRIVER
8757 M:      Dmitry Kozlov <xeb@mail.ru>
8758 L:      netdev@vger.kernel.org
8759 S:      Maintained
8760 F:      include/net/gre.h
8761 F:      net/ipv4/gre_demux.c
8762 F:      net/ipv4/gre_offload.c
8763
8764 GRETH 10/100/1G Ethernet MAC device driver
8765 M:      Andreas Larsson <andreas@gaisler.com>
8766 L:      netdev@vger.kernel.org
8767 S:      Maintained
8768 F:      drivers/net/ethernet/aeroflex/
8769
8770 GREYBUS AUDIO PROTOCOLS DRIVERS
8771 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8772 M:      Mark Greer <mgreer@animalcreek.com>
8773 S:      Maintained
8774 F:      drivers/staging/greybus/audio_apbridgea.c
8775 F:      drivers/staging/greybus/audio_apbridgea.h
8776 F:      drivers/staging/greybus/audio_codec.c
8777 F:      drivers/staging/greybus/audio_codec.h
8778 F:      drivers/staging/greybus/audio_gb.c
8779 F:      drivers/staging/greybus/audio_manager.c
8780 F:      drivers/staging/greybus/audio_manager.h
8781 F:      drivers/staging/greybus/audio_manager_module.c
8782 F:      drivers/staging/greybus/audio_manager_private.h
8783 F:      drivers/staging/greybus/audio_manager_sysfs.c
8784 F:      drivers/staging/greybus/audio_module.c
8785 F:      drivers/staging/greybus/audio_topology.c
8786
8787 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8788 M:      Viresh Kumar <vireshk@kernel.org>
8789 S:      Maintained
8790 F:      drivers/staging/greybus/authentication.c
8791 F:      drivers/staging/greybus/bootrom.c
8792 F:      drivers/staging/greybus/firmware.h
8793 F:      drivers/staging/greybus/fw-core.c
8794 F:      drivers/staging/greybus/fw-download.c
8795 F:      drivers/staging/greybus/fw-management.c
8796 F:      drivers/staging/greybus/greybus_authentication.h
8797 F:      drivers/staging/greybus/greybus_firmware.h
8798 F:      drivers/staging/greybus/hid.c
8799 F:      drivers/staging/greybus/i2c.c
8800 F:      drivers/staging/greybus/spi.c
8801 F:      drivers/staging/greybus/spilib.c
8802 F:      drivers/staging/greybus/spilib.h
8803
8804 GREYBUS LOOPBACK DRIVER
8805 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/loopback.c
8808
8809 GREYBUS PLATFORM DRIVERS
8810 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8811 S:      Maintained
8812 F:      drivers/staging/greybus/arche-apb-ctrl.c
8813 F:      drivers/staging/greybus/arche-platform.c
8814 F:      drivers/staging/greybus/arche_platform.h
8815
8816 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8817 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8818 S:      Maintained
8819 F:      drivers/staging/greybus/gpio.c
8820 F:      drivers/staging/greybus/light.c
8821 F:      drivers/staging/greybus/power_supply.c
8822 F:      drivers/staging/greybus/sdio.c
8823 F:      drivers/staging/greybus/spi.c
8824 F:      drivers/staging/greybus/spilib.c
8825
8826 GREYBUS SUBSYSTEM
8827 M:      Johan Hovold <johan@kernel.org>
8828 M:      Alex Elder <elder@kernel.org>
8829 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8830 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8831 S:      Maintained
8832 F:      drivers/greybus/
8833 F:      drivers/staging/greybus/
8834 F:      include/linux/greybus.h
8835 F:      include/linux/greybus/
8836
8837 GREYBUS UART PROTOCOLS DRIVERS
8838 M:      David Lin <dtwlin@gmail.com>
8839 S:      Maintained
8840 F:      drivers/staging/greybus/log.c
8841 F:      drivers/staging/greybus/uart.c
8842
8843 GS1662 VIDEO SERIALIZER
8844 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8845 L:      linux-media@vger.kernel.org
8846 S:      Maintained
8847 T:      git git://linuxtv.org/media_tree.git
8848 F:      drivers/media/spi/gs1662.c
8849
8850 GSPCA FINEPIX SUBDRIVER
8851 M:      Frank Zago <frank@zago.net>
8852 L:      linux-media@vger.kernel.org
8853 S:      Maintained
8854 T:      git git://linuxtv.org/media_tree.git
8855 F:      drivers/media/usb/gspca/finepix.c
8856
8857 GSPCA GL860 SUBDRIVER
8858 M:      Olivier Lorin <o.lorin@laposte.net>
8859 L:      linux-media@vger.kernel.org
8860 S:      Maintained
8861 T:      git git://linuxtv.org/media_tree.git
8862 F:      drivers/media/usb/gspca/gl860/
8863
8864 GSPCA M5602 SUBDRIVER
8865 M:      Erik Andren <erik.andren@gmail.com>
8866 L:      linux-media@vger.kernel.org
8867 S:      Maintained
8868 T:      git git://linuxtv.org/media_tree.git
8869 F:      drivers/media/usb/gspca/m5602/
8870
8871 GSPCA PAC207 SONIXB SUBDRIVER
8872 M:      Hans Verkuil <hverkuil@xs4all.nl>
8873 L:      linux-media@vger.kernel.org
8874 S:      Odd Fixes
8875 T:      git git://linuxtv.org/media_tree.git
8876 F:      drivers/media/usb/gspca/pac207.c
8877
8878 GSPCA SN9C20X SUBDRIVER
8879 M:      Brian Johnson <brijohn@gmail.com>
8880 L:      linux-media@vger.kernel.org
8881 S:      Maintained
8882 T:      git git://linuxtv.org/media_tree.git
8883 F:      drivers/media/usb/gspca/sn9c20x.c
8884
8885 GSPCA T613 SUBDRIVER
8886 M:      Leandro Costantino <lcostantino@gmail.com>
8887 L:      linux-media@vger.kernel.org
8888 S:      Maintained
8889 T:      git git://linuxtv.org/media_tree.git
8890 F:      drivers/media/usb/gspca/t613.c
8891
8892 GSPCA USB WEBCAM DRIVER
8893 M:      Hans Verkuil <hverkuil@xs4all.nl>
8894 L:      linux-media@vger.kernel.org
8895 S:      Odd Fixes
8896 T:      git git://linuxtv.org/media_tree.git
8897 F:      drivers/media/usb/gspca/
8898
8899 GTP (GPRS Tunneling Protocol)
8900 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8901 M:      Harald Welte <laforge@gnumonks.org>
8902 L:      osmocom-net-gprs@lists.osmocom.org
8903 S:      Maintained
8904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8905 F:      drivers/net/gtp.c
8906
8907 GUID PARTITION TABLE (GPT)
8908 M:      Davidlohr Bueso <dave@stgolabs.net>
8909 L:      linux-efi@vger.kernel.org
8910 S:      Maintained
8911 F:      block/partitions/efi.*
8912
8913 HABANALABS PCI DRIVER
8914 M:      Oded Gabbay <ogabbay@kernel.org>
8915 S:      Supported
8916 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8917 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8918 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8919 F:      drivers/misc/habanalabs/
8920 F:      include/trace/events/habanalabs.h
8921 F:      include/uapi/misc/habanalabs.h
8922
8923 HACKRF MEDIA DRIVER
8924 M:      Antti Palosaari <crope@iki.fi>
8925 L:      linux-media@vger.kernel.org
8926 S:      Maintained
8927 W:      https://linuxtv.org
8928 W:      http://palosaari.fi/linux/
8929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8930 T:      git git://linuxtv.org/anttip/media_tree.git
8931 F:      drivers/media/usb/hackrf/
8932
8933 HANTRO VPU CODEC DRIVER
8934 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8935 M:      Philipp Zabel <p.zabel@pengutronix.de>
8936 L:      linux-media@vger.kernel.org
8937 L:      linux-rockchip@lists.infradead.org
8938 S:      Maintained
8939 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8940 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8941 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8942 F:      drivers/media/platform/verisilicon/
8943
8944 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8945 M:      Frank Seidel <frank@f-seidel.de>
8946 L:      platform-driver-x86@vger.kernel.org
8947 S:      Maintained
8948 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8949 F:      drivers/platform/x86/hdaps.c
8950
8951 HARDWARE MONITORING
8952 M:      Jean Delvare <jdelvare@suse.com>
8953 M:      Guenter Roeck <linux@roeck-us.net>
8954 L:      linux-hwmon@vger.kernel.org
8955 S:      Maintained
8956 W:      http://hwmon.wiki.kernel.org/
8957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8958 F:      Documentation/ABI/testing/sysfs-class-hwmon
8959 F:      Documentation/devicetree/bindings/hwmon/
8960 F:      Documentation/hwmon/
8961 F:      drivers/hwmon/
8962 F:      include/linux/hwmon*.h
8963 F:      include/trace/events/hwmon*.h
8964 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8965
8966 HARDWARE RANDOM NUMBER GENERATOR CORE
8967 M:      Olivia Mackall <olivia@selenic.com>
8968 M:      Herbert Xu <herbert@gondor.apana.org.au>
8969 L:      linux-crypto@vger.kernel.org
8970 S:      Odd fixes
8971 F:      Documentation/admin-guide/hw_random.rst
8972 F:      Documentation/devicetree/bindings/rng/
8973 F:      drivers/char/hw_random/
8974 F:      include/linux/hw_random.h
8975
8976 HARDWARE SPINLOCK CORE
8977 M:      Ohad Ben-Cohen <ohad@wizery.com>
8978 M:      Bjorn Andersson <andersson@kernel.org>
8979 R:      Baolin Wang <baolin.wang7@gmail.com>
8980 L:      linux-remoteproc@vger.kernel.org
8981 S:      Maintained
8982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8983 F:      Documentation/devicetree/bindings/hwlock/
8984 F:      Documentation/locking/hwspinlock.rst
8985 F:      drivers/hwspinlock/
8986 F:      include/linux/hwspinlock.h
8987
8988 HARDWARE TRACING FACILITIES
8989 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8990 S:      Maintained
8991 F:      drivers/hwtracing/
8992
8993 HARMONY SOUND DRIVER
8994 L:      linux-parisc@vger.kernel.org
8995 S:      Maintained
8996 F:      sound/parisc/harmony.*
8997
8998 HDPVR USB VIDEO ENCODER DRIVER
8999 M:      Hans Verkuil <hverkuil@xs4all.nl>
9000 L:      linux-media@vger.kernel.org
9001 S:      Odd Fixes
9002 W:      https://linuxtv.org
9003 T:      git git://linuxtv.org/media_tree.git
9004 F:      drivers/media/usb/hdpvr/
9005
9006 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9007 M:      Matt Hsiao <matt.hsiao@hpe.com>
9008 S:      Supported
9009 F:      drivers/misc/hpilo.[ch]
9010
9011 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9012 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9013 S:      Supported
9014 F:      Documentation/watchdog/hpwdt.rst
9015 F:      drivers/watchdog/hpwdt.c
9016
9017 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9018 M:      Don Brace <don.brace@microchip.com>
9019 L:      storagedev@microchip.com
9020 L:      linux-scsi@vger.kernel.org
9021 S:      Supported
9022 F:      Documentation/scsi/hpsa.rst
9023 F:      drivers/scsi/hpsa*.[ch]
9024 F:      include/linux/cciss*.h
9025 F:      include/uapi/linux/cciss*.h
9026
9027 HFI1 DRIVER
9028 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9029 L:      linux-rdma@vger.kernel.org
9030 S:      Supported
9031 F:      drivers/infiniband/hw/hfi1
9032
9033 HFS FILESYSTEM
9034 L:      linux-fsdevel@vger.kernel.org
9035 S:      Orphan
9036 F:      Documentation/filesystems/hfs.rst
9037 F:      fs/hfs/
9038
9039 HFSPLUS FILESYSTEM
9040 L:      linux-fsdevel@vger.kernel.org
9041 S:      Orphan
9042 F:      Documentation/filesystems/hfsplus.rst
9043 F:      fs/hfsplus/
9044
9045 HGA FRAMEBUFFER DRIVER
9046 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9047 L:      linux-nvidia@lists.surfsouth.com
9048 S:      Maintained
9049 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9050 F:      drivers/video/fbdev/hgafb.c
9051
9052 HIBERNATION (aka Software Suspend, aka swsusp)
9053 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9054 M:      Pavel Machek <pavel@ucw.cz>
9055 L:      linux-pm@vger.kernel.org
9056 S:      Supported
9057 B:      https://bugzilla.kernel.org
9058 F:      arch/*/include/asm/suspend*.h
9059 F:      arch/x86/power/
9060 F:      drivers/base/power/
9061 F:      include/linux/freezer.h
9062 F:      include/linux/pm.h
9063 F:      include/linux/suspend.h
9064 F:      kernel/power/
9065
9066 HID CORE LAYER
9067 M:      Jiri Kosina <jikos@kernel.org>
9068 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9069 L:      linux-input@vger.kernel.org
9070 S:      Maintained
9071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9072 F:      Documentation/hid/
9073 F:      drivers/hid/
9074 F:      include/linux/hid*
9075 F:      include/uapi/linux/hid*
9076 F:      samples/hid/
9077 F:      tools/testing/selftests/hid/
9078
9079 HID LOGITECH DRIVERS
9080 R:      Filipe Laíns <lains@riseup.net>
9081 L:      linux-input@vger.kernel.org
9082 S:      Maintained
9083 F:      drivers/hid/hid-logitech-*
9084
9085 HID++ LOGITECH DRIVERS
9086 R:      Filipe Laíns <lains@riseup.net>
9087 R:      Bastien Nocera <hadess@hadess.net>
9088 L:      linux-input@vger.kernel.org
9089 S:      Maintained
9090 F:      drivers/hid/hid-logitech-hidpp.c
9091
9092 HID PLAYSTATION DRIVER
9093 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9094 L:      linux-input@vger.kernel.org
9095 S:      Supported
9096 F:      drivers/hid/hid-playstation.c
9097
9098 HID PHOENIX RC FLIGHT CONTROLLER
9099 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9100 L:      linux-input@vger.kernel.org
9101 S:      Maintained
9102 F:      drivers/hid/hid-pxrc.c
9103
9104 HID SENSOR HUB DRIVERS
9105 M:      Jiri Kosina <jikos@kernel.org>
9106 M:      Jonathan Cameron <jic23@kernel.org>
9107 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9108 L:      linux-input@vger.kernel.org
9109 L:      linux-iio@vger.kernel.org
9110 S:      Maintained
9111 F:      Documentation/hid/hid-sensor*
9112 F:      drivers/hid/hid-sensor-*
9113 F:      drivers/iio/*/hid-*
9114 F:      include/linux/hid-sensor-*
9115
9116 HID VRC-2 CAR CONTROLLER DRIVER
9117 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9118 L:      linux-input@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/hid/hid-vrc2.c
9121
9122 HID WACOM DRIVER
9123 M:      Ping Cheng <ping.cheng@wacom.com>
9124 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9125 L:      linux-input@vger.kernel.org
9126 S:      Maintained
9127 F:      drivers/hid/wacom.h
9128 F:      drivers/hid/wacom_*
9129
9130 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9131 M:      Thomas Gleixner <tglx@linutronix.de>
9132 L:      linux-kernel@vger.kernel.org
9133 S:      Maintained
9134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9135 F:      Documentation/timers/
9136 F:      include/linux/clockchips.h
9137 F:      include/linux/hrtimer.h
9138 F:      kernel/time/clockevents.c
9139 F:      kernel/time/hrtimer.c
9140 F:      kernel/time/timer_*.c
9141
9142 HIGH-SPEED SCC DRIVER FOR AX.25
9143 L:      linux-hams@vger.kernel.org
9144 S:      Orphan
9145 F:      drivers/net/hamradio/scc.c
9146
9147 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9148 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9149 S:      Supported
9150 W:      http://www.highpoint-tech.com
9151 F:      Documentation/scsi/hptiop.rst
9152 F:      drivers/scsi/hptiop.c
9153
9154 HIMAX HX83112B TOUCHSCREEN SUPPORT
9155 M:      Job Noorman <job@noorman.info>
9156 L:      linux-input@vger.kernel.org
9157 S:      Maintained
9158 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9159 F:      drivers/input/touchscreen/himax_hx83112b.c
9160
9161 HIPPI
9162 M:      Jes Sorensen <jes@trained-monkey.org>
9163 L:      linux-hippi@sunsite.dk
9164 S:      Maintained
9165 F:      drivers/net/hippi/
9166 F:      include/linux/hippidevice.h
9167 F:      include/uapi/linux/if_hippi.h
9168 F:      net/802/hippi.c
9169
9170 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9171 M:      Kurt Kanzenbach <kurt@linutronix.de>
9172 L:      netdev@vger.kernel.org
9173 S:      Maintained
9174 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9175 F:      drivers/net/dsa/hirschmann/*
9176 F:      include/linux/platform_data/hirschmann-hellcreek.h
9177 F:      net/dsa/tag_hellcreek.c
9178
9179 HISILICON DMA DRIVER
9180 M:      Zhou Wang <wangzhou1@hisilicon.com>
9181 M:      Jie Hai <haijie1@huawei.com>
9182 L:      dmaengine@vger.kernel.org
9183 S:      Maintained
9184 F:      drivers/dma/hisi_dma.c
9185
9186 HISILICON GPIO DRIVER
9187 M:      Jay Fang <f.fangjian@huawei.com>
9188 L:      linux-gpio@vger.kernel.org
9189 S:      Maintained
9190 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9191 F:      drivers/gpio/gpio-hisi.c
9192
9193 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9194 M:      Longfang Liu <liulongfang@huawei.com>
9195 L:      linux-crypto@vger.kernel.org
9196 S:      Maintained
9197 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9198 F:      drivers/crypto/hisilicon/hpre/hpre.h
9199 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9200 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9201
9202 HISILICON I2C CONTROLLER DRIVER
9203 M:      Yicong Yang <yangyicong@hisilicon.com>
9204 L:      linux-i2c@vger.kernel.org
9205 S:      Maintained
9206 W:      https://www.hisilicon.com
9207 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9208 F:      drivers/i2c/busses/i2c-hisi.c
9209
9210 HISILICON LPC BUS DRIVER
9211 M:      Jay Fang <f.fangjian@huawei.com>
9212 S:      Maintained
9213 W:      http://www.hisilicon.com
9214 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9215 F:      drivers/bus/hisi_lpc.c
9216
9217 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9218 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9219 M:      Salil Mehta <salil.mehta@huawei.com>
9220 L:      netdev@vger.kernel.org
9221 S:      Maintained
9222 W:      http://www.hisilicon.com
9223 F:      drivers/net/ethernet/hisilicon/hns3/
9224
9225 HISILICON NETWORK SUBSYSTEM DRIVER
9226 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9227 M:      Salil Mehta <salil.mehta@huawei.com>
9228 L:      netdev@vger.kernel.org
9229 S:      Maintained
9230 W:      http://www.hisilicon.com
9231 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9232 F:      drivers/net/ethernet/hisilicon/
9233
9234 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9235 M:      John Stultz <jstultz@google.com>
9236 L:      linux-kernel@vger.kernel.org
9237 S:      Maintained
9238 F:      drivers/misc/hisi_hikey_usb.c
9239
9240 HISILICON PMU DRIVER
9241 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9242 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9243 S:      Supported
9244 W:      http://www.hisilicon.com
9245 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9246 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9247 F:      drivers/perf/hisilicon
9248
9249 HISILICON HNS3 PMU DRIVER
9250 M:      Guangbin Huang <huangguangbin2@huawei.com>
9251 S:      Supported
9252 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9253 F:      drivers/perf/hisilicon/hns3_pmu.c
9254
9255 HISILICON PTT DRIVER
9256 M:      Yicong Yang <yangyicong@hisilicon.com>
9257 L:      linux-kernel@vger.kernel.org
9258 S:      Maintained
9259 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9260 F:      Documentation/trace/hisi-ptt.rst
9261 F:      drivers/hwtracing/ptt/
9262
9263 HISILICON QM DRIVER
9264 M:      Weili Qian <qianweili@huawei.com>
9265 M:      Zhou Wang <wangzhou1@hisilicon.com>
9266 L:      linux-crypto@vger.kernel.org
9267 S:      Maintained
9268 F:      drivers/crypto/hisilicon/Kconfig
9269 F:      drivers/crypto/hisilicon/Makefile
9270 F:      drivers/crypto/hisilicon/qm.c
9271 F:      drivers/crypto/hisilicon/sgl.c
9272 F:      include/linux/hisi_acc_qm.h
9273
9274 HISILICON ZIP Controller DRIVER
9275 M:      Yang Shen <shenyang39@huawei.com>
9276 M:      Zhou Wang <wangzhou1@hisilicon.com>
9277 L:      linux-crypto@vger.kernel.org
9278 S:      Maintained
9279 F:      Documentation/ABI/testing/debugfs-hisi-zip
9280 F:      drivers/crypto/hisilicon/zip/
9281
9282 HISILICON ROCE DRIVER
9283 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9284 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9285 L:      linux-rdma@vger.kernel.org
9286 S:      Maintained
9287 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9288 F:      drivers/infiniband/hw/hns/
9289
9290 HISILICON SAS Controller
9291 M:      Xiang Chen <chenxiang66@hisilicon.com>
9292 S:      Supported
9293 W:      http://www.hisilicon.com
9294 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9295 F:      drivers/scsi/hisi_sas/
9296
9297 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9298 M:      Kai Ye <yekai13@huawei.com>
9299 M:      Longfang Liu <liulongfang@huawei.com>
9300 L:      linux-crypto@vger.kernel.org
9301 S:      Maintained
9302 F:      Documentation/ABI/testing/debugfs-hisi-sec
9303 F:      drivers/crypto/hisilicon/sec2/sec.h
9304 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9305 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9306 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9307
9308 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9309 M:      Jay Fang <f.fangjian@huawei.com>
9310 L:      linux-spi@vger.kernel.org
9311 S:      Maintained
9312 W:      http://www.hisilicon.com
9313 F:      drivers/spi/spi-hisi-kunpeng.c
9314
9315 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9316 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9317 L:      linux-kernel@vger.kernel.org
9318 S:      Maintained
9319 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9320 F:      drivers/spmi/hisi-spmi-controller.c
9321
9322 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9323 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9324 L:      linux-kernel@vger.kernel.org
9325 S:      Maintained
9326 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9327 F:      drivers/mfd/hi6421-spmi-pmic.c
9328
9329 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9330 M:      Weili Qian <qianweili@huawei.com>
9331 S:      Maintained
9332 F:      drivers/crypto/hisilicon/trng/trng.c
9333
9334 HISILICON V3XX SPI NOR FLASH Controller Driver
9335 M:      Jay Fang <f.fangjian@huawei.com>
9336 S:      Maintained
9337 W:      http://www.hisilicon.com
9338 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9339
9340 HMM - Heterogeneous Memory Management
9341 M:      Jérôme Glisse <jglisse@redhat.com>
9342 L:      linux-mm@kvack.org
9343 S:      Maintained
9344 F:      Documentation/mm/hmm.rst
9345 F:      include/linux/hmm*
9346 F:      lib/test_hmm*
9347 F:      mm/hmm*
9348 F:      tools/testing/selftests/vm/*hmm*
9349
9350 HOST AP DRIVER
9351 M:      Jouni Malinen <j@w1.fi>
9352 L:      linux-wireless@vger.kernel.org
9353 S:      Obsolete
9354 W:      http://w1.fi/hostap-driver.html
9355 F:      drivers/net/wireless/intersil/hostap/
9356
9357 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9358 L:      platform-driver-x86@vger.kernel.org
9359 S:      Orphan
9360 F:      drivers/platform/x86/hp/tc1100-wmi.c
9361
9362 HPET:   High Precision Event Timers driver
9363 M:      Clemens Ladisch <clemens@ladisch.de>
9364 S:      Maintained
9365 F:      Documentation/timers/hpet.rst
9366 F:      drivers/char/hpet.c
9367 F:      include/linux/hpet.h
9368 F:      include/uapi/linux/hpet.h
9369
9370 HPET:   x86
9371 S:      Orphan
9372 F:      arch/x86/include/asm/hpet.h
9373 F:      arch/x86/kernel/hpet.c
9374
9375 HPFS FILESYSTEM
9376 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9377 S:      Maintained
9378 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9379 F:      fs/hpfs/
9380
9381 HSI SUBSYSTEM
9382 M:      Sebastian Reichel <sre@kernel.org>
9383 S:      Maintained
9384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9385 F:      Documentation/ABI/testing/sysfs-bus-hsi
9386 F:      Documentation/driver-api/hsi.rst
9387 F:      drivers/hsi/
9388 F:      include/linux/hsi/
9389 F:      include/uapi/linux/hsi/
9390
9391 HSO 3G MODEM DRIVER
9392 L:      linux-usb@vger.kernel.org
9393 S:      Orphan
9394 F:      drivers/net/usb/hso.c
9395
9396 HSR NETWORK PROTOCOL
9397 L:      netdev@vger.kernel.org
9398 S:      Orphan
9399 F:      net/hsr/
9400
9401 HT16K33 LED CONTROLLER DRIVER
9402 M:      Robin van der Gracht <robin@protonic.nl>
9403 S:      Maintained
9404 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9405 F:      drivers/auxdisplay/ht16k33.c
9406
9407 HTCPEN TOUCHSCREEN DRIVER
9408 M:      Pau Oliva Fora <pof@eslack.org>
9409 L:      linux-input@vger.kernel.org
9410 S:      Maintained
9411 F:      drivers/input/touchscreen/htcpen.c
9412
9413 HTE SUBSYSTEM
9414 M:      Dipen Patel <dipenp@nvidia.com>
9415 S:      Maintained
9416 F:      Documentation/devicetree/bindings/timestamp/
9417 F:      Documentation/driver-api/hte/
9418 F:      drivers/hte/
9419 F:      include/linux/hte.h
9420
9421 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9422 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9423 L:      linux-iio@vger.kernel.org
9424 S:      Maintained
9425 W:      http://www.st.com/
9426 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9427 F:      drivers/iio/humidity/hts221*
9428
9429 HUAWEI ETHERNET DRIVER
9430 M:      Cai Huoqing <cai.huoqing@linux.dev>
9431 L:      netdev@vger.kernel.org
9432 S:      Maintained
9433 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9434 F:      drivers/net/ethernet/huawei/hinic/
9435
9436 HUGETLB SUBSYSTEM
9437 M:      Mike Kravetz <mike.kravetz@oracle.com>
9438 M:      Muchun Song <muchun.song@linux.dev>
9439 L:      linux-mm@kvack.org
9440 S:      Maintained
9441 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9442 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9443 F:      Documentation/mm/hugetlbfs_reserv.rst
9444 F:      Documentation/mm/vmemmap_dedup.rst
9445 F:      fs/hugetlbfs/
9446 F:      include/linux/hugetlb.h
9447 F:      mm/hugetlb.c
9448 F:      mm/hugetlb_vmemmap.c
9449 F:      mm/hugetlb_vmemmap.h
9450
9451 HVA ST MEDIA DRIVER
9452 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9453 L:      linux-media@vger.kernel.org
9454 S:      Supported
9455 W:      https://linuxtv.org
9456 T:      git git://linuxtv.org/media_tree.git
9457 F:      drivers/media/platform/st/sti/hva
9458
9459 HWPOISON MEMORY FAILURE HANDLING
9460 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9461 R:      Miaohe Lin <linmiaohe@huawei.com>
9462 L:      linux-mm@kvack.org
9463 S:      Maintained
9464 F:      mm/hwpoison-inject.c
9465 F:      mm/memory-failure.c
9466
9467 HYCON HY46XX TOUCHSCREEN SUPPORT
9468 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9469 L:      linux-input@vger.kernel.org
9470 S:      Maintained
9471 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9472 F:      drivers/input/touchscreen/hycon-hy46xx.c
9473
9474 HYGON PROCESSOR SUPPORT
9475 M:      Pu Wen <puwen@hygon.cn>
9476 L:      linux-kernel@vger.kernel.org
9477 S:      Maintained
9478 F:      arch/x86/kernel/cpu/hygon.c
9479
9480 HYNIX HI556 SENSOR DRIVER
9481 M:      Shawn Tu <shawnx.tu@intel.com>
9482 L:      linux-media@vger.kernel.org
9483 S:      Maintained
9484 T:      git git://linuxtv.org/media_tree.git
9485 F:      drivers/media/i2c/hi556.c
9486
9487 HYNIX HI846 SENSOR DRIVER
9488 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9489 L:      linux-media@vger.kernel.org
9490 S:      Maintained
9491 F:      drivers/media/i2c/hi846.c
9492
9493 HYNIX HI847 SENSOR DRIVER
9494 M:      Shawn Tu <shawnx.tu@intel.com>
9495 L:      linux-media@vger.kernel.org
9496 S:      Maintained
9497 F:      drivers/media/i2c/hi847.c
9498
9499 Hyper-V/Azure CORE AND DRIVERS
9500 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9501 M:      Haiyang Zhang <haiyangz@microsoft.com>
9502 M:      Wei Liu <wei.liu@kernel.org>
9503 M:      Dexuan Cui <decui@microsoft.com>
9504 L:      linux-hyperv@vger.kernel.org
9505 S:      Supported
9506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9507 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9508 F:      Documentation/ABI/testing/debugfs-hyperv
9509 F:      Documentation/virt/hyperv
9510 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9511 F:      arch/arm64/hyperv
9512 F:      arch/arm64/include/asm/hyperv-tlfs.h
9513 F:      arch/arm64/include/asm/mshyperv.h
9514 F:      arch/x86/hyperv
9515 F:      arch/x86/include/asm/hyperv-tlfs.h
9516 F:      arch/x86/include/asm/mshyperv.h
9517 F:      arch/x86/include/asm/trace/hyperv.h
9518 F:      arch/x86/kernel/cpu/mshyperv.c
9519 F:      drivers/clocksource/hyperv_timer.c
9520 F:      drivers/hid/hid-hyperv.c
9521 F:      drivers/hv/
9522 F:      drivers/input/serio/hyperv-keyboard.c
9523 F:      drivers/iommu/hyperv-iommu.c
9524 F:      drivers/net/ethernet/microsoft/
9525 F:      drivers/net/hyperv/
9526 F:      drivers/pci/controller/pci-hyperv-intf.c
9527 F:      drivers/pci/controller/pci-hyperv.c
9528 F:      drivers/scsi/storvsc_drv.c
9529 F:      drivers/uio/uio_hv_generic.c
9530 F:      drivers/video/fbdev/hyperv_fb.c
9531 F:      include/asm-generic/hyperv-tlfs.h
9532 F:      include/asm-generic/mshyperv.h
9533 F:      include/clocksource/hyperv_timer.h
9534 F:      include/linux/hyperv.h
9535 F:      include/net/mana
9536 F:      include/uapi/linux/hyperv.h
9537 F:      net/vmw_vsock/hyperv_transport.c
9538 F:      tools/hv/
9539
9540 HYPERBUS SUPPORT
9541 M:      Vignesh Raghavendra <vigneshr@ti.com>
9542 L:      linux-mtd@lists.infradead.org
9543 S:      Supported
9544 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9545 C:      irc://irc.oftc.net/mtd
9546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9547 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9548 F:      drivers/mtd/hyperbus/
9549 F:      include/linux/mtd/hyperbus.h
9550
9551 HYPERVISOR VIRTUAL CONSOLE DRIVER
9552 L:      linuxppc-dev@lists.ozlabs.org
9553 S:      Odd Fixes
9554 F:      drivers/tty/hvc/
9555
9556 I2C ACPI SUPPORT
9557 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9558 L:      linux-i2c@vger.kernel.org
9559 L:      linux-acpi@vger.kernel.org
9560 S:      Maintained
9561 F:      drivers/i2c/i2c-core-acpi.c
9562
9563 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9564 M:      Ajay Gupta <ajayg@nvidia.com>
9565 L:      linux-i2c@vger.kernel.org
9566 S:      Maintained
9567 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9568 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9569
9570 I2C MUXES
9571 M:      Peter Rosin <peda@axentia.se>
9572 L:      linux-i2c@vger.kernel.org
9573 S:      Maintained
9574 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9575 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9576 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9577 F:      Documentation/i2c/i2c-topology.rst
9578 F:      Documentation/i2c/muxes/
9579 F:      drivers/i2c/i2c-mux.c
9580 F:      drivers/i2c/muxes/
9581 F:      include/linux/i2c-mux.h
9582
9583 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9584 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9585 L:      linux-i2c@vger.kernel.org
9586 S:      Maintained
9587 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9588 F:      drivers/i2c/busses/i2c-mv64xxx.c
9589
9590 I2C OVER PARALLEL PORT
9591 M:      Jean Delvare <jdelvare@suse.com>
9592 L:      linux-i2c@vger.kernel.org
9593 S:      Maintained
9594 F:      Documentation/i2c/busses/i2c-parport.rst
9595 F:      drivers/i2c/busses/i2c-parport.c
9596
9597 I2C SUBSYSTEM
9598 M:      Wolfram Sang <wsa@kernel.org>
9599 L:      linux-i2c@vger.kernel.org
9600 S:      Maintained
9601 W:      https://i2c.wiki.kernel.org/
9602 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9604 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9605 F:      Documentation/i2c/
9606 F:      drivers/i2c/*
9607 F:      include/dt-bindings/i2c/i2c.h
9608 F:      include/linux/i2c-dev.h
9609 F:      include/linux/i2c-smbus.h
9610 F:      include/linux/i2c.h
9611 F:      include/uapi/linux/i2c-*.h
9612 F:      include/uapi/linux/i2c.h
9613
9614 I2C SUBSYSTEM HOST DRIVERS
9615 L:      linux-i2c@vger.kernel.org
9616 S:      Odd Fixes
9617 W:      https://i2c.wiki.kernel.org/
9618 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9620 F:      Documentation/devicetree/bindings/i2c/
9621 F:      drivers/i2c/algos/
9622 F:      drivers/i2c/busses/
9623 F:      include/dt-bindings/i2c/
9624
9625 I2C-TAOS-EVM DRIVER
9626 M:      Jean Delvare <jdelvare@suse.com>
9627 L:      linux-i2c@vger.kernel.org
9628 S:      Maintained
9629 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9630 F:      drivers/i2c/busses/i2c-taos-evm.c
9631
9632 I2C-TINY-USB DRIVER
9633 M:      Till Harbaum <till@harbaum.org>
9634 L:      linux-i2c@vger.kernel.org
9635 S:      Maintained
9636 W:      http://www.harbaum.org/till/i2c_tiny_usb
9637 F:      drivers/i2c/busses/i2c-tiny-usb.c
9638
9639 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9640 M:      Jean Delvare <jdelvare@suse.com>
9641 L:      linux-i2c@vger.kernel.org
9642 S:      Maintained
9643 F:      Documentation/i2c/busses/i2c-ali1535.rst
9644 F:      Documentation/i2c/busses/i2c-ali1563.rst
9645 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9646 F:      Documentation/i2c/busses/i2c-amd756.rst
9647 F:      Documentation/i2c/busses/i2c-amd8111.rst
9648 F:      Documentation/i2c/busses/i2c-i801.rst
9649 F:      Documentation/i2c/busses/i2c-nforce2.rst
9650 F:      Documentation/i2c/busses/i2c-piix4.rst
9651 F:      Documentation/i2c/busses/i2c-sis5595.rst
9652 F:      Documentation/i2c/busses/i2c-sis630.rst
9653 F:      Documentation/i2c/busses/i2c-sis96x.rst
9654 F:      Documentation/i2c/busses/i2c-via.rst
9655 F:      Documentation/i2c/busses/i2c-viapro.rst
9656 F:      drivers/i2c/busses/i2c-ali1535.c
9657 F:      drivers/i2c/busses/i2c-ali1563.c
9658 F:      drivers/i2c/busses/i2c-ali15x3.c
9659 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9660 F:      drivers/i2c/busses/i2c-amd756.c
9661 F:      drivers/i2c/busses/i2c-amd8111.c
9662 F:      drivers/i2c/busses/i2c-i801.c
9663 F:      drivers/i2c/busses/i2c-isch.c
9664 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9665 F:      drivers/i2c/busses/i2c-nforce2.c
9666 F:      drivers/i2c/busses/i2c-piix4.c
9667 F:      drivers/i2c/busses/i2c-sis5595.c
9668 F:      drivers/i2c/busses/i2c-sis630.c
9669 F:      drivers/i2c/busses/i2c-sis96x.c
9670 F:      drivers/i2c/busses/i2c-via.c
9671 F:      drivers/i2c/busses/i2c-viapro.c
9672
9673 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9674 M:      Hans de Goede <hdegoede@redhat.com>
9675 L:      linux-i2c@vger.kernel.org
9676 S:      Maintained
9677 F:      drivers/i2c/busses/i2c-cht-wc.c
9678
9679 I2C/SMBUS ISMT DRIVER
9680 M:      Seth Heasley <seth.heasley@intel.com>
9681 M:      Neil Horman <nhorman@tuxdriver.com>
9682 L:      linux-i2c@vger.kernel.org
9683 F:      Documentation/i2c/busses/i2c-ismt.rst
9684 F:      drivers/i2c/busses/i2c-ismt.c
9685
9686 I2C/SMBUS STUB DRIVER
9687 M:      Jean Delvare <jdelvare@suse.com>
9688 L:      linux-i2c@vger.kernel.org
9689 S:      Maintained
9690 F:      drivers/i2c/i2c-stub.c
9691
9692 I3C DRIVER FOR CADENCE I3C MASTER IP
9693 M:      Przemysław Gaj <pgaj@cadence.com>
9694 S:      Maintained
9695 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9696 F:      drivers/i3c/master/i3c-master-cdns.c
9697
9698 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9699 S:      Orphan
9700 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9701 F:      drivers/i3c/master/dw*
9702
9703 I3C SUBSYSTEM
9704 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9705 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9706 S:      Maintained
9707 C:      irc://chat.freenode.net/linux-i3c
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9709 F:      Documentation/ABI/testing/sysfs-bus-i3c
9710 F:      Documentation/devicetree/bindings/i3c/
9711 F:      Documentation/driver-api/i3c
9712 F:      drivers/i3c/
9713 F:      include/linux/i3c/
9714
9715 IA64 (Itanium) PLATFORM
9716 L:      linux-ia64@vger.kernel.org
9717 S:      Orphan
9718 F:      Documentation/ia64/
9719 F:      arch/ia64/
9720
9721 IBM Operation Panel Input Driver
9722 M:      Eddie James <eajames@linux.ibm.com>
9723 L:      linux-input@vger.kernel.org
9724 S:      Maintained
9725 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9726 F:      drivers/input/misc/ibm-panel.c
9727
9728 IBM Power 842 compression accelerator
9729 M:      Haren Myneni <haren@us.ibm.com>
9730 S:      Supported
9731 F:      crypto/842.c
9732 F:      drivers/crypto/nx/Kconfig
9733 F:      drivers/crypto/nx/Makefile
9734 F:      drivers/crypto/nx/nx-842*
9735 F:      include/linux/sw842.h
9736 F:      lib/842/
9737
9738 IBM Power in-Nest Crypto Acceleration
9739 M:      Breno Leitão <leitao@debian.org>
9740 M:      Nayna Jain <nayna@linux.ibm.com>
9741 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9742 L:      linux-crypto@vger.kernel.org
9743 S:      Supported
9744 F:      drivers/crypto/nx/Kconfig
9745 F:      drivers/crypto/nx/Makefile
9746 F:      drivers/crypto/nx/nx-aes*
9747 F:      drivers/crypto/nx/nx-sha*
9748 F:      drivers/crypto/nx/nx.*
9749 F:      drivers/crypto/nx/nx_csbcpb.h
9750 F:      drivers/crypto/nx/nx_debugfs.c
9751
9752 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9753 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9754 L:      linux-pci@vger.kernel.org
9755 L:      linuxppc-dev@lists.ozlabs.org
9756 S:      Supported
9757 F:      drivers/pci/hotplug/rpadlpar*
9758
9759 IBM Power Linux RAID adapter
9760 M:      Brian King <brking@us.ibm.com>
9761 S:      Supported
9762 F:      drivers/scsi/ipr.*
9763
9764 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9765 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9766 L:      linux-pci@vger.kernel.org
9767 L:      linuxppc-dev@lists.ozlabs.org
9768 S:      Supported
9769 F:      drivers/pci/hotplug/rpaphp*
9770
9771 IBM Power SRIOV Virtual NIC Device Driver
9772 M:      Haren Myneni <haren@linux.ibm.com>
9773 M:      Rick Lindsley <ricklind@linux.ibm.com>
9774 R:      Nick Child <nnac123@linux.ibm.com>
9775 R:      Dany Madden <danymadden@us.ibm.com>
9776 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9777 L:      netdev@vger.kernel.org
9778 S:      Supported
9779 F:      drivers/net/ethernet/ibm/ibmvnic.*
9780
9781 IBM Power Virtual Accelerator Switchboard
9782 L:      linuxppc-dev@lists.ozlabs.org
9783 S:      Supported
9784 F:      arch/powerpc/include/asm/vas.h
9785 F:      arch/powerpc/platforms/powernv/copy-paste.h
9786 F:      arch/powerpc/platforms/powernv/vas*
9787
9788 IBM Power Virtual Ethernet Device Driver
9789 M:      Nick Child <nnac123@linux.ibm.com>
9790 L:      netdev@vger.kernel.org
9791 S:      Supported
9792 F:      drivers/net/ethernet/ibm/ibmveth.*
9793
9794 IBM Power Virtual FC Device Drivers
9795 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9796 L:      linux-scsi@vger.kernel.org
9797 S:      Supported
9798 F:      drivers/scsi/ibmvscsi/ibmvfc*
9799
9800 IBM Power Virtual Management Channel Driver
9801 M:      Brad Warrum <bwarrum@linux.ibm.com>
9802 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9803 S:      Supported
9804 F:      drivers/misc/ibmvmc.*
9805
9806 IBM Power Virtual SCSI Device Drivers
9807 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9808 L:      linux-scsi@vger.kernel.org
9809 S:      Supported
9810 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9811 F:      include/scsi/viosrp.h
9812
9813 IBM Power Virtual SCSI Device Target Driver
9814 M:      Michael Cyr <mikecyr@linux.ibm.com>
9815 L:      linux-scsi@vger.kernel.org
9816 L:      target-devel@vger.kernel.org
9817 S:      Supported
9818 F:      drivers/scsi/ibmvscsi_tgt/
9819
9820 IBM Power VMX Cryptographic instructions
9821 M:      Breno Leitão <leitao@debian.org>
9822 M:      Nayna Jain <nayna@linux.ibm.com>
9823 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9824 L:      linux-crypto@vger.kernel.org
9825 S:      Supported
9826 F:      drivers/crypto/vmx/Kconfig
9827 F:      drivers/crypto/vmx/Makefile
9828 F:      drivers/crypto/vmx/aes*
9829 F:      drivers/crypto/vmx/ghash*
9830 F:      drivers/crypto/vmx/ppc-xlate.pl
9831 F:      drivers/crypto/vmx/vmx.c
9832
9833 IBM ServeRAID RAID DRIVER
9834 S:      Orphan
9835 F:      drivers/scsi/ips.*
9836
9837 ICH LPC AND GPIO DRIVER
9838 M:      Peter Tyser <ptyser@xes-inc.com>
9839 S:      Maintained
9840 F:      drivers/gpio/gpio-ich.c
9841 F:      drivers/mfd/lpc_ich.c
9842
9843 ICY I2C DRIVER
9844 M:      Max Staudt <max@enpas.org>
9845 L:      linux-i2c@vger.kernel.org
9846 S:      Maintained
9847 F:      drivers/i2c/busses/i2c-icy.c
9848
9849 IDEAPAD LAPTOP EXTRAS DRIVER
9850 M:      Ike Panhc <ike.pan@canonical.com>
9851 L:      platform-driver-x86@vger.kernel.org
9852 S:      Maintained
9853 W:      http://launchpad.net/ideapad-laptop
9854 F:      drivers/platform/x86/ideapad-laptop.c
9855
9856 IDEAPAD LAPTOP SLIDEBAR DRIVER
9857 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9858 L:      linux-input@vger.kernel.org
9859 S:      Maintained
9860 W:      https://github.com/o2genum/ideapad-slidebar
9861 F:      drivers/input/misc/ideapad_slidebar.c
9862
9863 IDMAPPED MOUNTS
9864 M:      Christian Brauner <brauner@kernel.org>
9865 M:      Seth Forshee <sforshee@kernel.org>
9866 L:      linux-fsdevel@vger.kernel.org
9867 S:      Maintained
9868 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9869 F:      Documentation/filesystems/idmappings.rst
9870 F:      tools/testing/selftests/mount_setattr/
9871 F:      include/linux/mnt_idmapping.*
9872
9873 IDT VersaClock 5 CLOCK DRIVER
9874 M:      Luca Ceresoli <luca@lucaceresoli.net>
9875 S:      Maintained
9876 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9877 F:      drivers/clk/clk-versaclock5.c
9878
9879 IEEE 802.15.4 SUBSYSTEM
9880 M:      Alexander Aring <alex.aring@gmail.com>
9881 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9882 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9883 L:      linux-wpan@vger.kernel.org
9884 S:      Maintained
9885 W:      https://linux-wpan.org/
9886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9888 F:      Documentation/networking/ieee802154.rst
9889 F:      drivers/net/ieee802154/
9890 F:      include/linux/ieee802154.h
9891 F:      include/linux/nl802154.h
9892 F:      include/net/af_ieee802154.h
9893 F:      include/net/cfg802154.h
9894 F:      include/net/ieee802154_netdev.h
9895 F:      include/net/mac802154.h
9896 F:      include/net/nl802154.h
9897 F:      net/ieee802154/
9898 F:      net/mac802154/
9899
9900 IFE PROTOCOL
9901 M:      Yotam Gigi <yotam.gi@gmail.com>
9902 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9903 F:      include/net/ife.h
9904 F:      include/uapi/linux/ife.h
9905 F:      net/ife
9906
9907 IGORPLUG-USB IR RECEIVER
9908 M:      Sean Young <sean@mess.org>
9909 L:      linux-media@vger.kernel.org
9910 S:      Maintained
9911 F:      drivers/media/rc/igorplugusb.c
9912
9913 IGUANAWORKS USB IR TRANSCEIVER
9914 M:      Sean Young <sean@mess.org>
9915 L:      linux-media@vger.kernel.org
9916 S:      Maintained
9917 F:      drivers/media/rc/iguanair.c
9918
9919 IIO DIGITAL POTENTIOMETER DAC
9920 M:      Peter Rosin <peda@axentia.se>
9921 L:      linux-iio@vger.kernel.org
9922 S:      Maintained
9923 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9924 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9925 F:      drivers/iio/dac/dpot-dac.c
9926
9927 IIO ENVELOPE DETECTOR
9928 M:      Peter Rosin <peda@axentia.se>
9929 L:      linux-iio@vger.kernel.org
9930 S:      Maintained
9931 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9932 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9933 F:      drivers/iio/adc/envelope-detector.c
9934
9935 IIO MULTIPLEXER
9936 M:      Peter Rosin <peda@axentia.se>
9937 L:      linux-iio@vger.kernel.org
9938 S:      Maintained
9939 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9940 F:      drivers/iio/multiplexer/iio-mux.c
9941
9942 IIO SCMI BASED DRIVER
9943 M:      Jyoti Bhayana <jbhayana@google.com>
9944 L:      linux-iio@vger.kernel.org
9945 S:      Maintained
9946 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9947
9948 IIO SUBSYSTEM AND DRIVERS
9949 M:      Jonathan Cameron <jic23@kernel.org>
9950 R:      Lars-Peter Clausen <lars@metafoo.de>
9951 L:      linux-iio@vger.kernel.org
9952 S:      Maintained
9953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9954 F:      Documentation/ABI/testing/configfs-iio*
9955 F:      Documentation/ABI/testing/sysfs-bus-iio*
9956 F:      Documentation/devicetree/bindings/iio/
9957 F:      drivers/iio/
9958 F:      drivers/staging/iio/
9959 F:      include/dt-bindings/iio/
9960 F:      include/linux/iio/
9961 F:      tools/iio/
9962
9963 IIO UNIT CONVERTER
9964 M:      Peter Rosin <peda@axentia.se>
9965 L:      linux-iio@vger.kernel.org
9966 S:      Maintained
9967 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9968 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9969 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9970 F:      drivers/iio/afe/iio-rescale.c
9971
9972 IKANOS/ADI EAGLE ADSL USB DRIVER
9973 M:      Matthieu Castet <castet.matthieu@free.fr>
9974 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9975 S:      Maintained
9976 F:      drivers/usb/atm/ueagle-atm.c
9977
9978 IMAGIS TOUCHSCREEN DRIVER
9979 M:      Markuss Broks <markuss.broks@gmail.com>
9980 S:      Maintained
9981 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9982 F:      drivers/input/touchscreen/imagis.c
9983
9984 IMGTEC ASCII LCD DRIVER
9985 M:      Paul Burton <paulburton@kernel.org>
9986 S:      Maintained
9987 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9988 F:      drivers/auxdisplay/img-ascii-lcd.c
9989
9990 IMGTEC IR DECODER DRIVER
9991 S:      Orphan
9992 F:      drivers/media/rc/img-ir/
9993
9994 IMON SOUNDGRAPH USB IR RECEIVER
9995 M:      Sean Young <sean@mess.org>
9996 L:      linux-media@vger.kernel.org
9997 S:      Maintained
9998 F:      drivers/media/rc/imon.c
9999 F:      drivers/media/rc/imon_raw.c
10000
10001 IMS TWINTURBO FRAMEBUFFER DRIVER
10002 L:      linux-fbdev@vger.kernel.org
10003 S:      Orphan
10004 F:      drivers/video/fbdev/imsttfb.c
10005
10006 INA209 HARDWARE MONITOR DRIVER
10007 M:      Guenter Roeck <linux@roeck-us.net>
10008 L:      linux-hwmon@vger.kernel.org
10009 S:      Maintained
10010 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10011 F:      Documentation/hwmon/ina209.rst
10012 F:      drivers/hwmon/ina209.c
10013
10014 INA2XX HARDWARE MONITOR DRIVER
10015 M:      Guenter Roeck <linux@roeck-us.net>
10016 L:      linux-hwmon@vger.kernel.org
10017 S:      Maintained
10018 F:      Documentation/hwmon/ina2xx.rst
10019 F:      drivers/hwmon/ina2xx.c
10020 F:      include/linux/platform_data/ina2xx.h
10021
10022 INDEX OF FURTHER KERNEL DOCUMENTATION
10023 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10024 S:      Maintained
10025 F:      Documentation/process/kernel-docs.rst
10026
10027 INDUSTRY PACK SUBSYSTEM (IPACK)
10028 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10029 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10030 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10031 L:      industrypack-devel@lists.sourceforge.net
10032 S:      Maintained
10033 W:      http://industrypack.sourceforge.net
10034 F:      drivers/ipack/
10035
10036 INFINEON DPS310 Driver
10037 M:      Eddie James <eajames@linux.ibm.com>
10038 L:      linux-iio@vger.kernel.org
10039 S:      Maintained
10040 F:      drivers/iio/pressure/dps310.c
10041
10042 INFINEON PEB2466 ASoC CODEC
10043 M:      Herve Codina <herve.codina@bootlin.com>
10044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10045 S:      Maintained
10046 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10047 F:      sound/soc/codecs/peb2466.c
10048
10049 INFINIBAND SUBSYSTEM
10050 M:      Jason Gunthorpe <jgg@nvidia.com>
10051 M:      Leon Romanovsky <leonro@nvidia.com>
10052 L:      linux-rdma@vger.kernel.org
10053 S:      Supported
10054 W:      https://github.com/linux-rdma/rdma-core
10055 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10057 F:      Documentation/devicetree/bindings/infiniband/
10058 F:      Documentation/infiniband/
10059 F:      drivers/infiniband/
10060 F:      include/rdma/
10061 F:      include/trace/events/ib_mad.h
10062 F:      include/trace/events/ib_umad.h
10063 F:      include/trace/misc/rdma.h
10064 F:      include/uapi/linux/if_infiniband.h
10065 F:      include/uapi/rdma/
10066 F:      samples/bpf/ibumad_kern.c
10067 F:      samples/bpf/ibumad_user.c
10068
10069 INGENIC JZ4780 NAND DRIVER
10070 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10071 L:      linux-mtd@lists.infradead.org
10072 L:      linux-mips@vger.kernel.org
10073 S:      Maintained
10074 F:      drivers/mtd/nand/raw/ingenic/
10075
10076 INGENIC JZ47xx SoCs
10077 M:      Paul Cercueil <paul@crapouillou.net>
10078 L:      linux-mips@vger.kernel.org
10079 S:      Maintained
10080 F:      arch/mips/boot/dts/ingenic/
10081 F:      arch/mips/generic/board-ingenic.c
10082 F:      arch/mips/include/asm/mach-ingenic/
10083 F:      arch/mips/ingenic/Kconfig
10084 F:      drivers/clk/ingenic/
10085 F:      drivers/dma/dma-jz4780.c
10086 F:      drivers/gpu/drm/ingenic/
10087 F:      drivers/i2c/busses/i2c-jz4780.c
10088 F:      drivers/iio/adc/ingenic-adc.c
10089 F:      drivers/irqchip/irq-ingenic.c
10090 F:      drivers/memory/jz4780-nemc.c
10091 F:      drivers/mmc/host/jz4740_mmc.c
10092 F:      drivers/mtd/nand/raw/ingenic/
10093 F:      drivers/pinctrl/pinctrl-ingenic.c
10094 F:      drivers/power/supply/ingenic-battery.c
10095 F:      drivers/pwm/pwm-jz4740.c
10096 F:      drivers/remoteproc/ingenic_rproc.c
10097 F:      drivers/rtc/rtc-jz4740.c
10098 F:      drivers/tty/serial/8250/8250_ingenic.c
10099 F:      drivers/usb/musb/jz4740.c
10100 F:      drivers/watchdog/jz4740_wdt.c
10101 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10102 F:      include/linux/mfd/ingenic-tcu.h
10103 F:      sound/soc/codecs/jz47*
10104 F:      sound/soc/jz4740/
10105
10106 INJOINIC IP5xxx POWER BANK IC DRIVER
10107 M:      Samuel Holland <samuel@sholland.org>
10108 S:      Maintained
10109 F:      drivers/power/supply/ip5xxx_power.c
10110
10111 INOTIFY
10112 M:      Jan Kara <jack@suse.cz>
10113 R:      Amir Goldstein <amir73il@gmail.com>
10114 L:      linux-fsdevel@vger.kernel.org
10115 S:      Maintained
10116 F:      Documentation/filesystems/inotify.rst
10117 F:      fs/notify/inotify/
10118 F:      include/linux/inotify.h
10119 F:      include/uapi/linux/inotify.h
10120
10121 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10122 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10123 L:      linux-input@vger.kernel.org
10124 S:      Maintained
10125 Q:      http://patchwork.kernel.org/project/linux-input/list/
10126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10127 F:      Documentation/devicetree/bindings/input/
10128 F:      Documentation/devicetree/bindings/serio/
10129 F:      Documentation/input/
10130 F:      drivers/input/
10131 F:      include/dt-bindings/input/
10132 F:      include/linux/input.h
10133 F:      include/linux/input/
10134 F:      include/uapi/linux/input-event-codes.h
10135 F:      include/uapi/linux/input.h
10136
10137 INPUT MULTITOUCH (MT) PROTOCOL
10138 M:      Henrik Rydberg <rydberg@bitmath.org>
10139 L:      linux-input@vger.kernel.org
10140 S:      Odd fixes
10141 F:      Documentation/input/multi-touch-protocol.rst
10142 F:      drivers/input/input-mt.c
10143 K:      \b(ABS|SYN)_MT_
10144
10145 INSIDE SECURE CRYPTO DRIVER
10146 M:      Antoine Tenart <atenart@kernel.org>
10147 L:      linux-crypto@vger.kernel.org
10148 S:      Maintained
10149 F:      drivers/crypto/inside-secure/
10150
10151 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10152 M:      Mimi Zohar <zohar@linux.ibm.com>
10153 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10154 L:      linux-integrity@vger.kernel.org
10155 S:      Supported
10156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10157 F:      security/integrity/ima/
10158 F:      security/integrity/
10159
10160 INTEL 810/815 FRAMEBUFFER DRIVER
10161 M:      Antonino Daplas <adaplas@gmail.com>
10162 L:      linux-fbdev@vger.kernel.org
10163 S:      Maintained
10164 F:      drivers/video/fbdev/i810/
10165
10166 INTEL 8255 GPIO DRIVER
10167 M:      William Breathitt Gray <william.gray@linaro.org>
10168 L:      linux-gpio@vger.kernel.org
10169 S:      Maintained
10170 F:      drivers/gpio/gpio-i8255.c
10171 F:      drivers/gpio/gpio-i8255.h
10172
10173 INTEL ASoC DRIVERS
10174 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10175 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10176 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10177 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10178 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10179 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10180 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10182 S:      Supported
10183 F:      sound/soc/intel/
10184
10185 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10186 M:      Hans de Goede <hdegoede@redhat.com>
10187 L:      platform-driver-x86@vger.kernel.org
10188 S:      Maintained
10189 F:      drivers/platform/x86/intel/atomisp2/pm.c
10190
10191 INTEL ATOMISP2 LED DRIVER
10192 M:      Hans de Goede <hdegoede@redhat.com>
10193 L:      platform-driver-x86@vger.kernel.org
10194 S:      Maintained
10195 F:      drivers/platform/x86/intel/atomisp2/led.c
10196
10197 INTEL BIOS SAR INT1092 DRIVER
10198 M:      Shravan Sudhakar <s.shravan@intel.com>
10199 M:      Intel Corporation <linuxwwan@intel.com>
10200 L:      platform-driver-x86@vger.kernel.org
10201 S:      Maintained
10202 F:      drivers/platform/x86/intel/int1092/
10203
10204 INTEL BROXTON PMC DRIVER
10205 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10206 M:      Zha Qipeng <qipeng.zha@intel.com>
10207 S:      Maintained
10208 F:      drivers/mfd/intel_pmc_bxt.c
10209 F:      include/linux/mfd/intel_pmc_bxt.h
10210
10211 INTEL C600 SERIES SAS CONTROLLER DRIVER
10212 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10213 L:      linux-scsi@vger.kernel.org
10214 S:      Supported
10215 T:      git git://git.code.sf.net/p/intel-sas/isci
10216 F:      drivers/scsi/isci/
10217
10218 INTEL CPU family model numbers
10219 M:      Tony Luck <tony.luck@intel.com>
10220 M:      x86@kernel.org
10221 L:      linux-kernel@vger.kernel.org
10222 S:      Supported
10223 F:      arch/x86/include/asm/intel-family.h
10224
10225 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10226 M:      Jani Nikula <jani.nikula@linux.intel.com>
10227 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10228 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10229 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10230 L:      intel-gfx@lists.freedesktop.org
10231 S:      Supported
10232 W:      https://01.org/linuxgraphics/
10233 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10234 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10235 C:      irc://irc.oftc.net/intel-gfx
10236 T:      git git://anongit.freedesktop.org/drm-intel
10237 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10238 F:      Documentation/gpu/i915.rst
10239 F:      drivers/gpu/drm/i915/
10240 F:      include/drm/i915*
10241 F:      include/uapi/drm/i915_drm.h
10242
10243 INTEL ETHERNET DRIVERS
10244 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10245 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10246 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10247 S:      Supported
10248 W:      http://www.intel.com/support/feedback.htm
10249 W:      http://e1000.sourceforge.net/
10250 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10253 F:      Documentation/networking/device_drivers/ethernet/intel/
10254 F:      drivers/net/ethernet/intel/
10255 F:      drivers/net/ethernet/intel/*/
10256 F:      include/linux/avf/virtchnl.h
10257 F:      include/linux/net/intel/iidc.h
10258
10259 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10260 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10261 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10262 L:      linux-rdma@vger.kernel.org
10263 S:      Supported
10264 F:      drivers/infiniband/hw/irdma/
10265 F:      include/uapi/rdma/irdma-abi.h
10266
10267 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10268 M:      Maik Broemme <mbroemme@libmpq.org>
10269 L:      linux-fbdev@vger.kernel.org
10270 S:      Maintained
10271 F:      Documentation/fb/intelfb.rst
10272 F:      drivers/video/fbdev/intelfb/
10273
10274 INTEL GPIO DRIVERS
10275 M:      Andy Shevchenko <andy@kernel.org>
10276 L:      linux-gpio@vger.kernel.org
10277 S:      Supported
10278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10279 F:      drivers/gpio/gpio-ich.c
10280 F:      drivers/gpio/gpio-merrifield.c
10281 F:      drivers/gpio/gpio-ml-ioh.c
10282 F:      drivers/gpio/gpio-pch.c
10283 F:      drivers/gpio/gpio-sch.c
10284 F:      drivers/gpio/gpio-sodaville.c
10285
10286 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10287 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10288 M:      Zhi Wang <zhi.a.wang@intel.com>
10289 L:      intel-gvt-dev@lists.freedesktop.org
10290 L:      intel-gfx@lists.freedesktop.org
10291 S:      Supported
10292 W:      https://01.org/igvt-g
10293 T:      git https://github.com/intel/gvt-linux.git
10294 F:      drivers/gpu/drm/i915/gvt/
10295
10296 INTEL HID EVENT DRIVER
10297 M:      Alex Hung <alexhung@gmail.com>
10298 L:      platform-driver-x86@vger.kernel.org
10299 S:      Maintained
10300 F:      drivers/platform/x86/intel/hid.c
10301
10302 INTEL I/OAT DMA DRIVER
10303 M:      Dave Jiang <dave.jiang@intel.com>
10304 R:      Dan Williams <dan.j.williams@intel.com>
10305 L:      dmaengine@vger.kernel.org
10306 S:      Supported
10307 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10308 F:      drivers/dma/ioat*
10309
10310 INTEL IDXD DRIVER
10311 M:      Fenghua Yu <fenghua.yu@intel.com>
10312 M:      Dave Jiang <dave.jiang@intel.com>
10313 L:      dmaengine@vger.kernel.org
10314 S:      Supported
10315 F:      drivers/dma/idxd/*
10316 F:      include/uapi/linux/idxd.h
10317
10318 INTEL IDLE DRIVER
10319 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10320 M:      Len Brown <lenb@kernel.org>
10321 L:      linux-pm@vger.kernel.org
10322 S:      Supported
10323 B:      https://bugzilla.kernel.org
10324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10325 F:      drivers/idle/intel_idle.c
10326
10327 INTEL IN FIELD SCAN (IFS) DEVICE
10328 M:      Jithu Joseph <jithu.joseph@intel.com>
10329 R:      Ashok Raj <ashok.raj@intel.com>
10330 R:      Tony Luck <tony.luck@intel.com>
10331 S:      Maintained
10332 F:      drivers/platform/x86/intel/ifs
10333 F:      include/trace/events/intel_ifs.h
10334
10335 INTEL INTEGRATED SENSOR HUB DRIVER
10336 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10337 M:      Jiri Kosina <jikos@kernel.org>
10338 L:      linux-input@vger.kernel.org
10339 S:      Maintained
10340 F:      drivers/hid/intel-ish-hid/
10341
10342 INTEL IOMMU (VT-d)
10343 M:      David Woodhouse <dwmw2@infradead.org>
10344 M:      Lu Baolu <baolu.lu@linux.intel.com>
10345 L:      iommu@lists.linux.dev
10346 S:      Supported
10347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10348 F:      drivers/iommu/intel/
10349 F:      include/linux/intel-svm.h
10350
10351 INTEL IPU3 CSI-2 CIO2 DRIVER
10352 M:      Yong Zhi <yong.zhi@intel.com>
10353 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10354 M:      Bingbu Cao <bingbu.cao@intel.com>
10355 M:      Dan Scally <djrscally@gmail.com>
10356 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10357 L:      linux-media@vger.kernel.org
10358 S:      Maintained
10359 T:      git git://linuxtv.org/media_tree.git
10360 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10361 F:      drivers/media/pci/intel/ipu3/
10362
10363 INTEL IPU3 CSI-2 IMGU DRIVER
10364 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10365 R:      Bingbu Cao <bingbu.cao@intel.com>
10366 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10367 L:      linux-media@vger.kernel.org
10368 S:      Maintained
10369 F:      Documentation/admin-guide/media/ipu3.rst
10370 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10371 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10372 F:      drivers/staging/media/ipu3/
10373
10374 INTEL IXP4XX CRYPTO SUPPORT
10375 M:      Corentin Labbe <clabbe@baylibre.com>
10376 L:      linux-crypto@vger.kernel.org
10377 S:      Maintained
10378 F:      drivers/crypto/ixp4xx_crypto.c
10379
10380 INTEL ISHTP ECLITE DRIVER
10381 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10382 L:      platform-driver-x86@vger.kernel.org
10383 S:      Supported
10384 F:      drivers/platform/x86/intel/ishtp_eclite.c
10385
10386 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10387 M:      Krzysztof Halasa <khalasa@piap.pl>
10388 S:      Maintained
10389 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10390 F:      drivers/net/wan/ixp4xx_hss.c
10391 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10392 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10393 F:      include/linux/soc/ixp4xx/npe.h
10394 F:      include/linux/soc/ixp4xx/qmgr.h
10395
10396 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10397 M:      Deepak Saxena <dsaxena@plexity.net>
10398 S:      Maintained
10399 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10400 F:      drivers/char/hw_random/ixp4xx-rng.c
10401
10402 INTEL KEEM BAY DRM DRIVER
10403 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10404 M:      Edmund Dea <edmund.j.dea@intel.com>
10405 S:      Maintained
10406 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10407 F:      drivers/gpu/drm/kmb/
10408
10409 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10410 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10411 S:      Maintained
10412 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10413 F:      drivers/crypto/keembay/Kconfig
10414 F:      drivers/crypto/keembay/Makefile
10415 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10416 F:      drivers/crypto/keembay/ocs-aes.c
10417 F:      drivers/crypto/keembay/ocs-aes.h
10418
10419 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10420 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10421 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10422 M:      Mark Gross <mgross@linux.intel.com>
10423 S:      Maintained
10424 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10425 F:      drivers/crypto/keembay/Kconfig
10426 F:      drivers/crypto/keembay/Makefile
10427 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10428
10429 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10430 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10431 M:      Declan Murphy <declan.murphy@intel.com>
10432 S:      Maintained
10433 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10434 F:      drivers/crypto/keembay/Kconfig
10435 F:      drivers/crypto/keembay/Makefile
10436 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10437 F:      drivers/crypto/keembay/ocs-hcu.c
10438 F:      drivers/crypto/keembay/ocs-hcu.h
10439
10440 INTEL THUNDER BAY EMMC PHY DRIVER
10441 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10442 M:      Rashmi A <rashmi.a@intel.com>
10443 S:      Maintained
10444 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10445 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10446
10447 INTEL MANAGEMENT ENGINE (mei)
10448 M:      Tomas Winkler <tomas.winkler@intel.com>
10449 L:      linux-kernel@vger.kernel.org
10450 S:      Supported
10451 F:      Documentation/driver-api/mei/*
10452 F:      drivers/misc/mei/
10453 F:      drivers/watchdog/mei_wdt.c
10454 F:      include/linux/mei_aux.h
10455 F:      include/linux/mei_cl_bus.h
10456 F:      include/uapi/linux/mei.h
10457 F:      samples/mei/*
10458
10459 INTEL MAX 10 BMC MFD DRIVER
10460 M:      Xu Yilun <yilun.xu@intel.com>
10461 R:      Tom Rix <trix@redhat.com>
10462 S:      Maintained
10463 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10464 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10465 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10466 F:      drivers/mfd/intel-m10-bmc.c
10467 F:      include/linux/mfd/intel-m10-bmc.h
10468
10469 INTEL MENLOW THERMAL DRIVER
10470 M:      Sujith Thomas <sujith.thomas@intel.com>
10471 L:      linux-pm@vger.kernel.org
10472 S:      Supported
10473 F:      drivers/thermal/intel/intel_menlow.c
10474
10475 INTEL P-Unit IPC DRIVER
10476 M:      Zha Qipeng <qipeng.zha@intel.com>
10477 L:      platform-driver-x86@vger.kernel.org
10478 S:      Maintained
10479 F:      arch/x86/include/asm/intel_punit_ipc.h
10480 F:      drivers/platform/x86/intel/punit_ipc.c
10481
10482 INTEL PMC CORE DRIVER
10483 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10484 M:      David E Box <david.e.box@intel.com>
10485 L:      platform-driver-x86@vger.kernel.org
10486 S:      Maintained
10487 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10488 F:      drivers/platform/x86/intel/pmc/
10489
10490 INTEL PMIC GPIO DRIVERS
10491 M:      Andy Shevchenko <andy@kernel.org>
10492 S:      Supported
10493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10494 F:      drivers/gpio/gpio-*cove.c
10495
10496 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10497 M:      Andy Shevchenko <andy@kernel.org>
10498 S:      Supported
10499 F:      drivers/mfd/intel_soc_pmic*
10500 F:      include/linux/mfd/intel_soc_pmic*
10501
10502 INTEL PMT DRIVERS
10503 M:      David E. Box <david.e.box@linux.intel.com>
10504 S:      Supported
10505 F:      drivers/platform/x86/intel/pmt/
10506
10507 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10508 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10509 L:      linux-wireless@vger.kernel.org
10510 S:      Maintained
10511 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10512 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10513 F:      drivers/net/wireless/intel/ipw2x00/
10514
10515 INTEL PSTATE DRIVER
10516 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10517 M:      Len Brown <lenb@kernel.org>
10518 L:      linux-pm@vger.kernel.org
10519 S:      Supported
10520 F:      drivers/cpufreq/intel_pstate.c
10521
10522 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10523 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10524 L:      linux-iio@vger.kernel.org
10525 F:      drivers/counter/intel-qep.c
10526
10527 INTEL SCU DRIVERS
10528 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10529 S:      Maintained
10530 F:      arch/x86/include/asm/intel_scu_ipc.h
10531 F:      drivers/platform/x86/intel_scu_*
10532
10533 INTEL SDSI DRIVER
10534 M:      David E. Box <david.e.box@linux.intel.com>
10535 S:      Supported
10536 F:      drivers/platform/x86/intel/sdsi.c
10537 F:      tools/arch/x86/intel_sdsi/
10538 F:      tools/testing/selftests/drivers/sdsi/
10539
10540 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10541 M:      Daniel Scally <djrscally@gmail.com>
10542 S:      Maintained
10543 F:      drivers/platform/x86/intel/int3472/
10544
10545 INTEL SPEED SELECT TECHNOLOGY
10546 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10547 L:      platform-driver-x86@vger.kernel.org
10548 S:      Maintained
10549 F:      drivers/platform/x86/intel/speed_select_if/
10550 F:      include/uapi/linux/isst_if.h
10551 F:      tools/power/x86/intel-speed-select/
10552
10553 INTEL STRATIX10 FIRMWARE DRIVERS
10554 M:      Dinh Nguyen <dinguyen@kernel.org>
10555 L:      linux-kernel@vger.kernel.org
10556 S:      Maintained
10557 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10558 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10559 F:      drivers/firmware/stratix10-rsu.c
10560 F:      drivers/firmware/stratix10-svc.c
10561 F:      include/linux/firmware/intel/stratix10-smc.h
10562 F:      include/linux/firmware/intel/stratix10-svc-client.h
10563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10564
10565 INTEL TELEMETRY DRIVER
10566 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10567 M:      "David E. Box" <david.e.box@linux.intel.com>
10568 L:      platform-driver-x86@vger.kernel.org
10569 S:      Maintained
10570 F:      arch/x86/include/asm/intel_telemetry.h
10571 F:      drivers/platform/x86/intel/telemetry/
10572
10573 INTEL TPMI DRIVER
10574 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10575 L:      platform-driver-x86@vger.kernel.org
10576 S:      Maintained
10577 F:      drivers/platform/x86/intel/tpmi.c
10578 F:      include/linux/intel_tpmi.h
10579
10580 INTEL UNCORE FREQUENCY CONTROL
10581 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10582 L:      platform-driver-x86@vger.kernel.org
10583 S:      Maintained
10584 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10585 F:      drivers/platform/x86/intel/uncore-frequency/
10586
10587 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10588 M:      David E. Box <david.e.box@linux.intel.com>
10589 S:      Supported
10590 F:      drivers/platform/x86/intel/vsec.*
10591
10592 INTEL VIRTUAL BUTTON DRIVER
10593 M:      AceLan Kao <acelan.kao@canonical.com>
10594 L:      platform-driver-x86@vger.kernel.org
10595 S:      Maintained
10596 F:      drivers/platform/x86/intel/vbtn.c
10597
10598 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10599 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10600 L:      linux-wireless@vger.kernel.org
10601 S:      Supported
10602 F:      drivers/net/wireless/intel/iwlegacy/
10603
10604 INTEL WIRELESS WIFI LINK (iwlwifi)
10605 M:      Gregory Greenman <gregory.greenman@intel.com>
10606 L:      linux-wireless@vger.kernel.org
10607 S:      Supported
10608 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10610 F:      drivers/net/wireless/intel/iwlwifi/
10611
10612 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10613 M:      Jithu Joseph <jithu.joseph@intel.com>
10614 R:      Maurice Ma <maurice.ma@intel.com>
10615 S:      Maintained
10616 W:      https://slimbootloader.github.io/security/firmware-update.html
10617 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10618
10619 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10620 L:      Dell.Client.Kernel@dell.com
10621 S:      Maintained
10622 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10623
10624 INTEL WWAN IOSM DRIVER
10625 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10626 M:      Intel Corporation <linuxwwan@intel.com>
10627 L:      netdev@vger.kernel.org
10628 S:      Maintained
10629 F:      drivers/net/wwan/iosm/
10630
10631 INTEL(R) TRACE HUB
10632 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10633 S:      Supported
10634 F:      Documentation/trace/intel_th.rst
10635 F:      drivers/hwtracing/intel_th/
10636 F:      include/linux/intel_th.h
10637
10638 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10639 M:      Ning Sun <ning.sun@intel.com>
10640 L:      tboot-devel@lists.sourceforge.net
10641 S:      Supported
10642 W:      http://tboot.sourceforge.net
10643 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10644 F:      Documentation/x86/intel_txt.rst
10645 F:      arch/x86/kernel/tboot.c
10646 F:      include/linux/tboot.h
10647
10648 INTEL SGX
10649 M:      Jarkko Sakkinen <jarkko@kernel.org>
10650 R:      Dave Hansen <dave.hansen@linux.intel.com>
10651 L:      linux-sgx@vger.kernel.org
10652 S:      Supported
10653 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10655 F:      Documentation/x86/sgx.rst
10656 F:      arch/x86/entry/vdso/vsgx.S
10657 F:      arch/x86/include/asm/sgx.h
10658 F:      arch/x86/include/uapi/asm/sgx.h
10659 F:      arch/x86/kernel/cpu/sgx/*
10660 F:      tools/testing/selftests/sgx/*
10661 K:      \bSGX_
10662
10663 INTERCONNECT API
10664 M:      Georgi Djakov <djakov@kernel.org>
10665 L:      linux-pm@vger.kernel.org
10666 S:      Maintained
10667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10668 F:      Documentation/devicetree/bindings/interconnect/
10669 F:      Documentation/driver-api/interconnect.rst
10670 F:      drivers/interconnect/
10671 F:      include/dt-bindings/interconnect/
10672 F:      include/linux/interconnect-provider.h
10673 F:      include/linux/interconnect.h
10674
10675 INTERRUPT COUNTER DRIVER
10676 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10677 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10678 L:      linux-iio@vger.kernel.org
10679 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10680 F:      drivers/counter/interrupt-cnt.c
10681
10682 INTERSIL ISL7998X VIDEO DECODER DRIVER
10683 M:      Michael Tretter <m.tretter@pengutronix.de>
10684 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10685 L:      linux-media@vger.kernel.org
10686 S:      Maintained
10687 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10688 F:      drivers/media/i2c/isl7998x.c
10689
10690 INVENSENSE ICM-426xx IMU DRIVER
10691 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10692 L:      linux-iio@vger.kernel.org
10693 S:      Maintained
10694 W:      https://invensense.tdk.com/
10695 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10696 F:      drivers/iio/imu/inv_icm42600/
10697
10698 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10699 M:      Linus Walleij <linus.walleij@linaro.org>
10700 L:      linux-iio@vger.kernel.org
10701 S:      Maintained
10702 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10703 F:      drivers/iio/gyro/mpu3050*
10704
10705 IOC3 ETHERNET DRIVER
10706 M:      Ralf Baechle <ralf@linux-mips.org>
10707 L:      linux-mips@vger.kernel.org
10708 S:      Maintained
10709 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10710
10711 IOMAP FILESYSTEM LIBRARY
10712 M:      Christoph Hellwig <hch@infradead.org>
10713 M:      Darrick J. Wong <djwong@kernel.org>
10714 L:      linux-xfs@vger.kernel.org
10715 L:      linux-fsdevel@vger.kernel.org
10716 S:      Supported
10717 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10718 F:      fs/iomap/
10719 F:      include/linux/iomap.h
10720
10721 IOMMU DMA-API LAYER
10722 M:      Robin Murphy <robin.murphy@arm.com>
10723 L:      iommu@lists.linux.dev
10724 S:      Maintained
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10726 F:      drivers/iommu/dma-iommu.c
10727 F:      drivers/iommu/dma-iommu.h
10728 F:      drivers/iommu/iova.c
10729 F:      include/linux/iova.h
10730
10731 IOMMUFD
10732 M:      Jason Gunthorpe <jgg@nvidia.com>
10733 M:      Kevin Tian <kevin.tian@intel.com>
10734 L:      iommu@lists.linux.dev
10735 S:      Maintained
10736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10737 F:      Documentation/userspace-api/iommufd.rst
10738 F:      drivers/iommu/iommufd/
10739 F:      include/linux/iommufd.h
10740 F:      include/uapi/linux/iommufd.h
10741 F:      tools/testing/selftests/iommu/
10742
10743 IOMMU SUBSYSTEM
10744 M:      Joerg Roedel <joro@8bytes.org>
10745 M:      Will Deacon <will@kernel.org>
10746 R:      Robin Murphy <robin.murphy@arm.com>
10747 L:      iommu@lists.linux.dev
10748 S:      Maintained
10749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10750 F:      Documentation/devicetree/bindings/iommu/
10751 F:      Documentation/userspace-api/iommu.rst
10752 F:      drivers/iommu/
10753 F:      include/linux/iommu.h
10754 F:      include/linux/iova.h
10755 F:      include/linux/of_iommu.h
10756 F:      include/uapi/linux/iommu.h
10757
10758 IOSYS-MAP HELPERS
10759 M:      Thomas Zimmermann <tzimmermann@suse.de>
10760 L:      dri-devel@lists.freedesktop.org
10761 S:      Maintained
10762 T:      git git://anongit.freedesktop.org/drm/drm-misc
10763 F:      include/linux/iosys-map.h
10764
10765 IO_URING
10766 M:      Jens Axboe <axboe@kernel.dk>
10767 R:      Pavel Begunkov <asml.silence@gmail.com>
10768 L:      io-uring@vger.kernel.org
10769 S:      Maintained
10770 T:      git git://git.kernel.dk/linux-block
10771 T:      git git://git.kernel.dk/liburing
10772 F:      io_uring/
10773 F:      include/linux/io_uring.h
10774 F:      include/linux/io_uring_types.h
10775 F:      include/trace/events/io_uring.h
10776 F:      include/uapi/linux/io_uring.h
10777 F:      tools/io_uring/
10778
10779 IPMI SUBSYSTEM
10780 M:      Corey Minyard <minyard@acm.org>
10781 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10782 S:      Supported
10783 W:      http://openipmi.sourceforge.net/
10784 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10785 F:      Documentation/driver-api/ipmi.rst
10786 F:      Documentation/devicetree/bindings/ipmi/
10787 F:      drivers/char/ipmi/
10788 F:      include/linux/ipmi*
10789 F:      include/uapi/linux/ipmi*
10790
10791 IPS SCSI RAID DRIVER
10792 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10793 L:      linux-scsi@vger.kernel.org
10794 S:      Maintained
10795 W:      http://www.adaptec.com/
10796 F:      drivers/scsi/ips*
10797
10798 IPVS
10799 M:      Simon Horman <horms@verge.net.au>
10800 M:      Julian Anastasov <ja@ssi.bg>
10801 L:      netdev@vger.kernel.org
10802 L:      lvs-devel@vger.kernel.org
10803 S:      Maintained
10804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10806 F:      Documentation/networking/ipvs-sysctl.rst
10807 F:      include/net/ip_vs.h
10808 F:      include/uapi/linux/ip_vs.h
10809 F:      net/netfilter/ipvs/
10810
10811 IPWIRELESS DRIVER
10812 M:      Jiri Kosina <jikos@kernel.org>
10813 M:      David Sterba <dsterba@suse.com>
10814 S:      Odd Fixes
10815 F:      drivers/tty/ipwireless/
10816
10817 IRON DEVICE AUDIO CODEC DRIVERS
10818 M:      Kiseok Jo <kiseok.jo@irondevice.com>
10819 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10820 S:      Maintained
10821 F:      Documentation/devicetree/bindings/sound/irondevice,*
10822 F:      sound/soc/codecs/sma*
10823
10824 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10825 M:      Marc Zyngier <maz@kernel.org>
10826 S:      Maintained
10827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10828 F:      Documentation/core-api/irq/irq-domain.rst
10829 F:      include/linux/irqdomain.h
10830 F:      kernel/irq/irqdomain.c
10831 F:      kernel/irq/msi.c
10832
10833 IRQ SUBSYSTEM
10834 M:      Thomas Gleixner <tglx@linutronix.de>
10835 L:      linux-kernel@vger.kernel.org
10836 S:      Maintained
10837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10838 F:      kernel/irq/
10839 F:      include/linux/group_cpus.h
10840 F:      lib/group_cpus.c
10841
10842 IRQCHIP DRIVERS
10843 M:      Thomas Gleixner <tglx@linutronix.de>
10844 M:      Marc Zyngier <maz@kernel.org>
10845 L:      linux-kernel@vger.kernel.org
10846 S:      Maintained
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10848 F:      Documentation/devicetree/bindings/interrupt-controller/
10849 F:      drivers/irqchip/
10850
10851 ISA
10852 M:      William Breathitt Gray <william.gray@linaro.org>
10853 S:      Maintained
10854 F:      Documentation/driver-api/isa.rst
10855 F:      drivers/base/isa.c
10856 F:      include/linux/isa.h
10857
10858 ISA RADIO MODULE
10859 M:      Hans Verkuil <hverkuil@xs4all.nl>
10860 L:      linux-media@vger.kernel.org
10861 S:      Maintained
10862 W:      https://linuxtv.org
10863 T:      git git://linuxtv.org/media_tree.git
10864 F:      drivers/media/radio/radio-isa*
10865
10866 ISAPNP
10867 M:      Jaroslav Kysela <perex@perex.cz>
10868 S:      Maintained
10869 F:      Documentation/driver-api/isapnp.rst
10870 F:      drivers/pnp/isapnp/
10871 F:      include/linux/isapnp.h
10872
10873 ISCSI
10874 M:      Lee Duncan <lduncan@suse.com>
10875 M:      Chris Leech <cleech@redhat.com>
10876 M:      Mike Christie <michael.christie@oracle.com>
10877 L:      open-iscsi@googlegroups.com
10878 L:      linux-scsi@vger.kernel.org
10879 S:      Maintained
10880 W:      www.open-iscsi.com
10881 F:      drivers/scsi/*iscsi*
10882 F:      include/scsi/*iscsi*
10883
10884 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10885 M:      Peter Jones <pjones@redhat.com>
10886 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10887 S:      Maintained
10888 F:      drivers/firmware/iscsi_ibft*
10889
10890 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10891 M:      Sagi Grimberg <sagi@grimberg.me>
10892 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10893 L:      linux-rdma@vger.kernel.org
10894 S:      Supported
10895 W:      http://www.openfabrics.org
10896 W:      www.open-iscsi.org
10897 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10898 F:      drivers/infiniband/ulp/iser/
10899
10900 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10901 M:      Sagi Grimberg <sagi@grimberg.me>
10902 L:      linux-rdma@vger.kernel.org
10903 L:      target-devel@vger.kernel.org
10904 S:      Supported
10905 W:      http://www.linux-iscsi.org
10906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10907 F:      drivers/infiniband/ulp/isert
10908
10909 ISDN/CMTP OVER BLUETOOTH
10910 M:      Karsten Keil <isdn@linux-pingi.de>
10911 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10912 L:      netdev@vger.kernel.org
10913 S:      Odd Fixes
10914 W:      http://www.isdn4linux.de
10915 F:      Documentation/isdn/
10916 F:      drivers/isdn/capi/
10917 F:      include/linux/isdn/
10918 F:      include/uapi/linux/isdn/
10919 F:      net/bluetooth/cmtp/
10920
10921 ISDN/mISDN SUBSYSTEM
10922 M:      Karsten Keil <isdn@linux-pingi.de>
10923 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10924 L:      netdev@vger.kernel.org
10925 S:      Maintained
10926 W:      http://www.isdn4linux.de
10927 F:      drivers/isdn/Kconfig
10928 F:      drivers/isdn/Makefile
10929 F:      drivers/isdn/hardware/
10930 F:      drivers/isdn/mISDN/
10931
10932 ISOFS FILESYSTEM
10933 M:      Jan Kara <jack@suse.cz>
10934 L:      linux-fsdevel@vger.kernel.org
10935 S:      Maintained
10936 F:      Documentation/filesystems/isofs.rst
10937 F:      fs/isofs/
10938
10939 IT87 HARDWARE MONITORING DRIVER
10940 M:      Jean Delvare <jdelvare@suse.com>
10941 L:      linux-hwmon@vger.kernel.org
10942 S:      Maintained
10943 F:      Documentation/hwmon/it87.rst
10944 F:      drivers/hwmon/it87.c
10945
10946 IT913X MEDIA DRIVER
10947 M:      Antti Palosaari <crope@iki.fi>
10948 L:      linux-media@vger.kernel.org
10949 S:      Maintained
10950 W:      https://linuxtv.org
10951 W:      http://palosaari.fi/linux/
10952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10953 T:      git git://linuxtv.org/anttip/media_tree.git
10954 F:      drivers/media/tuners/it913x*
10955
10956 ITE IT66121 HDMI BRIDGE DRIVER
10957 M:      Phong LE <ple@baylibre.com>
10958 M:      Neil Armstrong <neil.armstrong@linaro.org>
10959 S:      Maintained
10960 T:      git git://anongit.freedesktop.org/drm/drm-misc
10961 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10962 F:      drivers/gpu/drm/bridge/ite-it66121.c
10963
10964 IVTV VIDEO4LINUX DRIVER
10965 M:      Andy Walls <awalls@md.metrocast.net>
10966 L:      linux-media@vger.kernel.org
10967 S:      Maintained
10968 W:      https://linuxtv.org
10969 T:      git git://linuxtv.org/media_tree.git
10970 F:      Documentation/admin-guide/media/ivtv*
10971 F:      drivers/media/pci/ivtv/
10972 F:      include/uapi/linux/ivtv*
10973
10974 IX2505V MEDIA DRIVER
10975 M:      Malcolm Priestley <tvboxspy@gmail.com>
10976 L:      linux-media@vger.kernel.org
10977 S:      Maintained
10978 W:      https://linuxtv.org
10979 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10980 F:      drivers/media/dvb-frontends/ix2505v*
10981
10982 JAILHOUSE HYPERVISOR INTERFACE
10983 M:      Jan Kiszka <jan.kiszka@siemens.com>
10984 L:      jailhouse-dev@googlegroups.com
10985 S:      Maintained
10986 F:      arch/x86/include/asm/jailhouse_para.h
10987 F:      arch/x86/kernel/jailhouse.c
10988
10989 JC42.4 TEMPERATURE SENSOR DRIVER
10990 M:      Guenter Roeck <linux@roeck-us.net>
10991 L:      linux-hwmon@vger.kernel.org
10992 S:      Maintained
10993 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10994 F:      Documentation/hwmon/jc42.rst
10995 F:      drivers/hwmon/jc42.c
10996
10997 JFS FILESYSTEM
10998 M:      Dave Kleikamp <shaggy@kernel.org>
10999 L:      jfs-discussion@lists.sourceforge.net
11000 S:      Odd Fixes
11001 W:      http://jfs.sourceforge.net/
11002 T:      git https://github.com/kleikamp/linux-shaggy.git
11003 F:      Documentation/admin-guide/jfs.rst
11004 F:      fs/jfs/
11005
11006 JME NETWORK DRIVER
11007 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
11008 L:      netdev@vger.kernel.org
11009 S:      Maintained
11010 F:      drivers/net/ethernet/jme.*
11011
11012 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11013 M:      David Woodhouse <dwmw2@infradead.org>
11014 M:      Richard Weinberger <richard@nod.at>
11015 L:      linux-mtd@lists.infradead.org
11016 S:      Odd Fixes
11017 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11018 T:      git git://git.infradead.org/ubifs-2.6.git
11019 F:      fs/jffs2/
11020 F:      include/uapi/linux/jffs2.h
11021
11022 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11023 M:      "Theodore Ts'o" <tytso@mit.edu>
11024 M:      Jan Kara <jack@suse.com>
11025 L:      linux-ext4@vger.kernel.org
11026 S:      Maintained
11027 F:      fs/jbd2/
11028 F:      include/linux/jbd2.h
11029
11030 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11031 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11032 L:      linux-media@vger.kernel.org
11033 L:      linux-renesas-soc@vger.kernel.org
11034 S:      Maintained
11035 F:      drivers/media/platform/renesas/rcar_jpu.c
11036
11037 JSM Neo PCI based serial card
11038 L:      linux-serial@vger.kernel.org
11039 S:      Orphan
11040 F:      drivers/tty/serial/jsm/
11041
11042 K10TEMP HARDWARE MONITORING DRIVER
11043 M:      Clemens Ladisch <clemens@ladisch.de>
11044 L:      linux-hwmon@vger.kernel.org
11045 S:      Maintained
11046 F:      Documentation/hwmon/k10temp.rst
11047 F:      drivers/hwmon/k10temp.c
11048
11049 K8TEMP HARDWARE MONITORING DRIVER
11050 M:      Rudolf Marek <r.marek@assembler.cz>
11051 L:      linux-hwmon@vger.kernel.org
11052 S:      Maintained
11053 F:      Documentation/hwmon/k8temp.rst
11054 F:      drivers/hwmon/k8temp.c
11055
11056 KASAN
11057 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11058 R:      Alexander Potapenko <glider@google.com>
11059 R:      Andrey Konovalov <andreyknvl@gmail.com>
11060 R:      Dmitry Vyukov <dvyukov@google.com>
11061 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11062 L:      kasan-dev@googlegroups.com
11063 S:      Maintained
11064 F:      Documentation/dev-tools/kasan.rst
11065 F:      arch/*/include/asm/*kasan.h
11066 F:      arch/*/mm/kasan_init*
11067 F:      include/linux/kasan*.h
11068 F:      lib/Kconfig.kasan
11069 F:      mm/kasan/
11070 F:      scripts/Makefile.kasan
11071
11072 KCONFIG
11073 M:      Masahiro Yamada <masahiroy@kernel.org>
11074 L:      linux-kbuild@vger.kernel.org
11075 S:      Maintained
11076 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11078 F:      Documentation/kbuild/kconfig*
11079 F:      scripts/Kconfig.include
11080 F:      scripts/kconfig/
11081
11082 KCOV
11083 R:      Dmitry Vyukov <dvyukov@google.com>
11084 R:      Andrey Konovalov <andreyknvl@gmail.com>
11085 L:      kasan-dev@googlegroups.com
11086 S:      Maintained
11087 F:      Documentation/dev-tools/kcov.rst
11088 F:      include/linux/kcov.h
11089 F:      include/uapi/linux/kcov.h
11090 F:      kernel/kcov.c
11091 F:      scripts/Makefile.kcov
11092
11093 KCSAN
11094 M:      Marco Elver <elver@google.com>
11095 R:      Dmitry Vyukov <dvyukov@google.com>
11096 L:      kasan-dev@googlegroups.com
11097 S:      Maintained
11098 F:      Documentation/dev-tools/kcsan.rst
11099 F:      include/linux/kcsan*.h
11100 F:      kernel/kcsan/
11101 F:      lib/Kconfig.kcsan
11102 F:      scripts/Makefile.kcsan
11103
11104 KDUMP
11105 M:      Baoquan He <bhe@redhat.com>
11106 R:      Vivek Goyal <vgoyal@redhat.com>
11107 R:      Dave Young <dyoung@redhat.com>
11108 L:      kexec@lists.infradead.org
11109 S:      Maintained
11110 W:      http://lse.sourceforge.net/kdump/
11111 F:      Documentation/admin-guide/kdump/
11112 F:      fs/proc/vmcore.c
11113 F:      include/linux/crash_core.h
11114 F:      include/linux/crash_dump.h
11115 F:      include/uapi/linux/vmcore.h
11116 F:      kernel/crash_*.c
11117
11118 KEENE FM RADIO TRANSMITTER DRIVER
11119 M:      Hans Verkuil <hverkuil@xs4all.nl>
11120 L:      linux-media@vger.kernel.org
11121 S:      Maintained
11122 W:      https://linuxtv.org
11123 T:      git git://linuxtv.org/media_tree.git
11124 F:      drivers/media/radio/radio-keene*
11125
11126 KERNEL AUTOMOUNTER
11127 M:      Ian Kent <raven@themaw.net>
11128 L:      autofs@vger.kernel.org
11129 S:      Maintained
11130 F:      fs/autofs/
11131
11132 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11133 M:      Masahiro Yamada <masahiroy@kernel.org>
11134 R:      Nathan Chancellor <nathan@kernel.org>
11135 R:      Nick Desaulniers <ndesaulniers@google.com>
11136 R:      Nicolas Schier <nicolas@fjasle.eu>
11137 L:      linux-kbuild@vger.kernel.org
11138 S:      Maintained
11139 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11141 F:      Documentation/kbuild/
11142 F:      Makefile
11143 F:      scripts/*vmlinux*
11144 F:      scripts/Kbuild*
11145 F:      scripts/Makefile*
11146 F:      scripts/basic/
11147 F:      scripts/dummy-tools/
11148 F:      scripts/mk*
11149 F:      scripts/mod/
11150 F:      scripts/package/
11151
11152 KERNEL HARDENING (not covered by other areas)
11153 M:      Kees Cook <keescook@chromium.org>
11154 L:      linux-hardening@vger.kernel.org
11155 S:      Supported
11156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11157 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11158 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11159 F:      include/linux/overflow.h
11160 F:      include/linux/randomize_kstack.h
11161 F:      mm/usercopy.c
11162 K:      \b(add|choose)_random_kstack_offset\b
11163 K:      \b__check_(object_size|heap_object)\b
11164
11165 KERNEL JANITORS
11166 L:      kernel-janitors@vger.kernel.org
11167 S:      Odd Fixes
11168 W:      http://kernelnewbies.org/KernelJanitors
11169
11170 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11171 M:      Chuck Lever <chuck.lever@oracle.com>
11172 M:      Jeff Layton <jlayton@kernel.org>
11173 L:      linux-nfs@vger.kernel.org
11174 S:      Supported
11175 W:      http://nfs.sourceforge.net/
11176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11177 F:      fs/exportfs/
11178 F:      fs/lockd/
11179 F:      fs/nfs_common/
11180 F:      fs/nfsd/
11181 F:      include/linux/lockd/
11182 F:      include/linux/sunrpc/
11183 F:      include/trace/events/rpcgss.h
11184 F:      include/trace/events/rpcrdma.h
11185 F:      include/trace/events/sunrpc.h
11186 F:      include/trace/misc/fs.h
11187 F:      include/trace/misc/nfs.h
11188 F:      include/trace/misc/sunrpc.h
11189 F:      include/uapi/linux/nfsd/
11190 F:      include/uapi/linux/sunrpc/
11191 F:      net/sunrpc/
11192 F:      Documentation/filesystems/nfs/
11193
11194 KERNEL REGRESSIONS
11195 M:      Thorsten Leemhuis <linux@leemhuis.info>
11196 L:      regressions@lists.linux.dev
11197 S:      Supported
11198 F:      Documentation/admin-guide/reporting-regressions.rst
11199 F:      Documentation/process/handling-regressions.rst
11200
11201 KERNEL SELFTEST FRAMEWORK
11202 M:      Shuah Khan <shuah@kernel.org>
11203 M:      Shuah Khan <skhan@linuxfoundation.org>
11204 L:      linux-kselftest@vger.kernel.org
11205 S:      Maintained
11206 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11208 F:      Documentation/dev-tools/kselftest*
11209 F:      tools/testing/selftests/
11210
11211 KERNEL SMB3 SERVER (KSMBD)
11212 M:      Namjae Jeon <linkinjeon@kernel.org>
11213 M:      Steve French <sfrench@samba.org>
11214 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11215 R:      Tom Talpey <tom@talpey.com>
11216 L:      linux-cifs@vger.kernel.org
11217 S:      Maintained
11218 T:      git git://git.samba.org/ksmbd.git
11219 F:      Documentation/filesystems/cifs/ksmbd.rst
11220 F:      fs/ksmbd/
11221 F:      fs/smbfs_common/
11222
11223 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11224 M:      Brendan Higgins <brendanhiggins@google.com>
11225 M:      David Gow <davidgow@google.com>
11226 L:      linux-kselftest@vger.kernel.org
11227 L:      kunit-dev@googlegroups.com
11228 S:      Maintained
11229 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11230 F:      Documentation/dev-tools/kunit/
11231 F:      include/kunit/
11232 F:      lib/kunit/
11233 F:      tools/testing/kunit/
11234
11235 KERNEL USERMODE HELPER
11236 M:      Luis Chamberlain <mcgrof@kernel.org>
11237 L:      linux-kernel@vger.kernel.org
11238 S:      Maintained
11239 F:      include/linux/umh.h
11240 F:      kernel/umh.c
11241
11242 KERNEL VIRTUAL MACHINE (KVM)
11243 M:      Paolo Bonzini <pbonzini@redhat.com>
11244 L:      kvm@vger.kernel.org
11245 S:      Supported
11246 W:      http://www.linux-kvm.org
11247 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11248 F:      Documentation/virt/kvm/
11249 F:      include/asm-generic/kvm*
11250 F:      include/kvm/iodev.h
11251 F:      include/linux/kvm*
11252 F:      include/trace/events/kvm.h
11253 F:      include/uapi/asm-generic/kvm*
11254 F:      include/uapi/linux/kvm*
11255 F:      tools/kvm/
11256 F:      tools/testing/selftests/kvm/
11257 F:      virt/kvm/*
11258
11259 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11260 M:      Marc Zyngier <maz@kernel.org>
11261 R:      James Morse <james.morse@arm.com>
11262 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11263 R:      Oliver Upton <oliver.upton@linux.dev>
11264 R:      Zenghui Yu <yuzenghui@huawei.com>
11265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11266 L:      kvmarm@lists.linux.dev
11267 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11268 S:      Maintained
11269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11270 F:      arch/arm64/include/asm/kvm*
11271 F:      arch/arm64/include/uapi/asm/kvm*
11272 F:      arch/arm64/kvm/
11273 F:      include/kvm/arm_*
11274 F:      tools/testing/selftests/kvm/*/aarch64/
11275 F:      tools/testing/selftests/kvm/aarch64/
11276
11277 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11278 M:      Huacai Chen <chenhuacai@kernel.org>
11279 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11280 L:      linux-mips@vger.kernel.org
11281 L:      kvm@vger.kernel.org
11282 S:      Maintained
11283 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11284 F:      arch/mips/include/asm/kvm*
11285 F:      arch/mips/include/uapi/asm/kvm*
11286 F:      arch/mips/kvm/
11287
11288 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11289 L:      linuxppc-dev@lists.ozlabs.org
11290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11291 F:      arch/powerpc/include/asm/kvm*
11292 F:      arch/powerpc/include/uapi/asm/kvm*
11293 F:      arch/powerpc/kernel/kvm*
11294 F:      arch/powerpc/kvm/
11295
11296 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11297 M:      Anup Patel <anup@brainfault.org>
11298 R:      Atish Patra <atishp@atishpatra.org>
11299 L:      kvm@vger.kernel.org
11300 L:      kvm-riscv@lists.infradead.org
11301 L:      linux-riscv@lists.infradead.org
11302 S:      Maintained
11303 T:      git https://github.com/kvm-riscv/linux.git
11304 F:      arch/riscv/include/asm/kvm*
11305 F:      arch/riscv/include/uapi/asm/kvm*
11306 F:      arch/riscv/kvm/
11307 F:      tools/testing/selftests/kvm/*/riscv/
11308
11309 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11310 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11311 M:      Janosch Frank <frankja@linux.ibm.com>
11312 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11313 R:      David Hildenbrand <david@redhat.com>
11314 L:      kvm@vger.kernel.org
11315 S:      Supported
11316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11317 F:      Documentation/virt/kvm/s390*
11318 F:      arch/s390/include/asm/gmap.h
11319 F:      arch/s390/include/asm/kvm*
11320 F:      arch/s390/include/uapi/asm/kvm*
11321 F:      arch/s390/include/uapi/asm/uvdevice.h
11322 F:      arch/s390/kernel/uv.c
11323 F:      arch/s390/kvm/
11324 F:      arch/s390/mm/gmap.c
11325 F:      drivers/s390/char/uvdevice.c
11326 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11327 F:      tools/testing/selftests/kvm/*/s390x/
11328 F:      tools/testing/selftests/kvm/s390x/
11329
11330 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11331 M:      Sean Christopherson <seanjc@google.com>
11332 M:      Paolo Bonzini <pbonzini@redhat.com>
11333 L:      kvm@vger.kernel.org
11334 S:      Supported
11335 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11336 F:      arch/x86/include/asm/kvm*
11337 F:      arch/x86/include/asm/svm.h
11338 F:      arch/x86/include/asm/vmx*.h
11339 F:      arch/x86/include/uapi/asm/kvm*
11340 F:      arch/x86/include/uapi/asm/svm.h
11341 F:      arch/x86/include/uapi/asm/vmx.h
11342 F:      arch/x86/kvm/
11343 F:      arch/x86/kvm/*/
11344
11345 KVM PARAVIRT (KVM/paravirt)
11346 M:      Paolo Bonzini <pbonzini@redhat.com>
11347 R:      Wanpeng Li <wanpengli@tencent.com>
11348 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11349 L:      kvm@vger.kernel.org
11350 S:      Supported
11351 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11352 F:      arch/x86/kernel/kvm.c
11353 F:      arch/x86/kernel/kvmclock.c
11354 F:      arch/x86/include/asm/pvclock-abi.h
11355 F:      include/linux/kvm_para.h
11356 F:      include/uapi/linux/kvm_para.h
11357 F:      include/uapi/asm-generic/kvm_para.h
11358 F:      include/asm-generic/kvm_para.h
11359 F:      arch/um/include/asm/kvm_para.h
11360 F:      arch/x86/include/asm/kvm_para.h
11361 F:      arch/x86/include/uapi/asm/kvm_para.h
11362
11363 KVM X86 HYPER-V (KVM/hyper-v)
11364 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11365 M:      Sean Christopherson <seanjc@google.com>
11366 M:      Paolo Bonzini <pbonzini@redhat.com>
11367 L:      kvm@vger.kernel.org
11368 S:      Supported
11369 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11370 F:      arch/x86/kvm/hyperv.*
11371 F:      arch/x86/kvm/kvm_onhyperv.*
11372 F:      arch/x86/kvm/svm/hyperv.*
11373 F:      arch/x86/kvm/svm/svm_onhyperv.*
11374 F:      arch/x86/kvm/vmx/hyperv.*
11375
11376 KVM X86 Xen (KVM/Xen)
11377 M:      David Woodhouse <dwmw2@infradead.org>
11378 M:      Paul Durrant <paul@xen.org>
11379 M:      Sean Christopherson <seanjc@google.com>
11380 M:      Paolo Bonzini <pbonzini@redhat.com>
11381 L:      kvm@vger.kernel.org
11382 S:      Supported
11383 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11384 F:      arch/x86/kvm/xen.*
11385
11386 KERNFS
11387 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11388 M:      Tejun Heo <tj@kernel.org>
11389 S:      Supported
11390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11391 F:      fs/kernfs/
11392 F:      include/linux/kernfs.h
11393
11394 KEXEC
11395 M:      Eric Biederman <ebiederm@xmission.com>
11396 L:      kexec@lists.infradead.org
11397 S:      Maintained
11398 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11399 F:      include/linux/kexec.h
11400 F:      include/uapi/linux/kexec.h
11401 F:      kernel/kexec*
11402
11403 KEYS-ENCRYPTED
11404 M:      Mimi Zohar <zohar@linux.ibm.com>
11405 L:      linux-integrity@vger.kernel.org
11406 L:      keyrings@vger.kernel.org
11407 S:      Supported
11408 F:      Documentation/security/keys/trusted-encrypted.rst
11409 F:      include/keys/encrypted-type.h
11410 F:      security/keys/encrypted-keys/
11411
11412 KEYS-TRUSTED
11413 M:      James Bottomley <jejb@linux.ibm.com>
11414 M:      Jarkko Sakkinen <jarkko@kernel.org>
11415 M:      Mimi Zohar <zohar@linux.ibm.com>
11416 L:      linux-integrity@vger.kernel.org
11417 L:      keyrings@vger.kernel.org
11418 S:      Supported
11419 F:      Documentation/security/keys/trusted-encrypted.rst
11420 F:      include/keys/trusted-type.h
11421 F:      include/keys/trusted_tpm.h
11422 F:      security/keys/trusted-keys/
11423
11424 KEYS-TRUSTED-TEE
11425 M:      Sumit Garg <sumit.garg@linaro.org>
11426 L:      linux-integrity@vger.kernel.org
11427 L:      keyrings@vger.kernel.org
11428 S:      Supported
11429 F:      include/keys/trusted_tee.h
11430 F:      security/keys/trusted-keys/trusted_tee.c
11431
11432 KEYS-TRUSTED-CAAM
11433 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11434 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11435 L:      linux-integrity@vger.kernel.org
11436 L:      keyrings@vger.kernel.org
11437 S:      Maintained
11438 F:      include/keys/trusted_caam.h
11439 F:      security/keys/trusted-keys/trusted_caam.c
11440
11441 KEYS/KEYRINGS
11442 M:      David Howells <dhowells@redhat.com>
11443 M:      Jarkko Sakkinen <jarkko@kernel.org>
11444 L:      keyrings@vger.kernel.org
11445 S:      Maintained
11446 F:      Documentation/security/keys/core.rst
11447 F:      include/keys/
11448 F:      include/linux/key-type.h
11449 F:      include/linux/key.h
11450 F:      include/linux/keyctl.h
11451 F:      include/uapi/linux/keyctl.h
11452 F:      security/keys/
11453
11454 KEYS/KEYRINGS_INTEGRITY
11455 M:      Jarkko Sakkinen <jarkko@kernel.org>
11456 M:      Mimi Zohar <zohar@linux.ibm.com>
11457 L:      linux-integrity@vger.kernel.org
11458 L:      keyrings@vger.kernel.org
11459 S:      Supported
11460 F:      security/integrity/platform_certs
11461
11462 KFENCE
11463 M:      Alexander Potapenko <glider@google.com>
11464 M:      Marco Elver <elver@google.com>
11465 R:      Dmitry Vyukov <dvyukov@google.com>
11466 L:      kasan-dev@googlegroups.com
11467 S:      Maintained
11468 F:      Documentation/dev-tools/kfence.rst
11469 F:      arch/*/include/asm/kfence.h
11470 F:      include/linux/kfence.h
11471 F:      lib/Kconfig.kfence
11472 F:      mm/kfence/
11473
11474 KFIFO
11475 M:      Stefani Seibold <stefani@seibold.net>
11476 S:      Maintained
11477 F:      include/linux/kfifo.h
11478 F:      lib/kfifo.c
11479 F:      samples/kfifo/
11480
11481 KGDB / KDB /debug_core
11482 M:      Jason Wessel <jason.wessel@windriver.com>
11483 M:      Daniel Thompson <daniel.thompson@linaro.org>
11484 R:      Douglas Anderson <dianders@chromium.org>
11485 L:      kgdb-bugreport@lists.sourceforge.net
11486 S:      Maintained
11487 W:      http://kgdb.wiki.kernel.org/
11488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11489 F:      Documentation/dev-tools/kgdb.rst
11490 F:      drivers/misc/kgdbts.c
11491 F:      drivers/tty/serial/kgdboc.c
11492 F:      include/linux/kdb.h
11493 F:      include/linux/kgdb.h
11494 F:      kernel/debug/
11495 F:      kernel/module/kdb.c
11496
11497 KHADAS MCU MFD DRIVER
11498 M:      Neil Armstrong <neil.armstrong@linaro.org>
11499 L:      linux-amlogic@lists.infradead.org
11500 S:      Maintained
11501 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11502 F:      drivers/mfd/khadas-mcu.c
11503 F:      include/linux/mfd/khadas-mcu.h
11504 F:      drivers/thermal/khadas_mcu_fan.c
11505
11506 KIONIX/ROHM KX022A ACCELEROMETER
11507 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11508 L:      linux-iio@vger.kernel.org
11509 S:      Supported
11510 F:      drivers/iio/accel/kionix-kx022a*
11511
11512 KMEMLEAK
11513 M:      Catalin Marinas <catalin.marinas@arm.com>
11514 S:      Maintained
11515 F:      Documentation/dev-tools/kmemleak.rst
11516 F:      include/linux/kmemleak.h
11517 F:      mm/kmemleak.c
11518 F:      samples/kmemleak/kmemleak-test.c
11519
11520 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11521 M:      Luis Chamberlain <mcgrof@kernel.org>
11522 L:      linux-kernel@vger.kernel.org
11523 L:      linux-modules@vger.kernel.org
11524 S:      Maintained
11525 F:      include/linux/kmod.h
11526 F:      kernel/kmod.c
11527 F:      lib/test_kmod.c
11528 F:      tools/testing/selftests/kmod/
11529
11530 KMSAN
11531 M:      Alexander Potapenko <glider@google.com>
11532 R:      Marco Elver <elver@google.com>
11533 R:      Dmitry Vyukov <dvyukov@google.com>
11534 L:      kasan-dev@googlegroups.com
11535 S:      Maintained
11536 F:      Documentation/dev-tools/kmsan.rst
11537 F:      arch/*/include/asm/kmsan.h
11538 F:      arch/*/mm/kmsan_*
11539 F:      include/linux/kmsan*.h
11540 F:      lib/Kconfig.kmsan
11541 F:      mm/kmsan/
11542 F:      scripts/Makefile.kmsan
11543
11544 KPROBES
11545 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11546 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11547 M:      "David S. Miller" <davem@davemloft.net>
11548 M:      Masami Hiramatsu <mhiramat@kernel.org>
11549 L:      linux-kernel@vger.kernel.org
11550 L:      linux-trace-kernel@vger.kernel.org
11551 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11552 S:      Maintained
11553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11554 F:      Documentation/trace/kprobes.rst
11555 F:      include/asm-generic/kprobes.h
11556 F:      include/linux/kprobes.h
11557 F:      kernel/kprobes.c
11558 F:      lib/test_kprobes.c
11559 F:      samples/kprobes
11560
11561 KS0108 LCD CONTROLLER DRIVER
11562 M:      Miguel Ojeda <ojeda@kernel.org>
11563 S:      Maintained
11564 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11565 F:      drivers/auxdisplay/ks0108.c
11566 F:      include/linux/ks0108.h
11567
11568 KTD253 BACKLIGHT DRIVER
11569 M:      Linus Walleij <linus.walleij@linaro.org>
11570 S:      Maintained
11571 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11572 F:      drivers/video/backlight/ktd253-backlight.c
11573
11574 KTEST
11575 M:      Steven Rostedt <rostedt@goodmis.org>
11576 M:      John Hawley <warthog9@eaglescrag.net>
11577 S:      Maintained
11578 F:      tools/testing/ktest
11579
11580 L3MDEV
11581 M:      David Ahern <dsahern@kernel.org>
11582 L:      netdev@vger.kernel.org
11583 S:      Maintained
11584 F:      include/net/l3mdev.h
11585 F:      net/l3mdev
11586
11587 LANDLOCK SECURITY MODULE
11588 M:      Mickaël Salaün <mic@digikod.net>
11589 L:      linux-security-module@vger.kernel.org
11590 S:      Supported
11591 W:      https://landlock.io
11592 T:      git https://github.com/landlock-lsm/linux.git
11593 F:      Documentation/security/landlock.rst
11594 F:      Documentation/userspace-api/landlock.rst
11595 F:      include/uapi/linux/landlock.h
11596 F:      samples/landlock/
11597 F:      security/landlock/
11598 F:      tools/testing/selftests/landlock/
11599 K:      landlock
11600 K:      LANDLOCK
11601
11602 LANTIQ / INTEL Ethernet drivers
11603 M:      Hauke Mehrtens <hauke@hauke-m.de>
11604 L:      netdev@vger.kernel.org
11605 S:      Maintained
11606 F:      drivers/net/dsa/lantiq_gswip.c
11607 F:      drivers/net/dsa/lantiq_pce.h
11608 F:      drivers/net/ethernet/lantiq_xrx200.c
11609 F:      net/dsa/tag_gswip.c
11610
11611 LANTIQ MIPS ARCHITECTURE
11612 M:      John Crispin <john@phrozen.org>
11613 L:      linux-mips@vger.kernel.org
11614 S:      Maintained
11615 F:      arch/mips/lantiq
11616 F:      drivers/soc/lantiq
11617
11618 LASI 53c700 driver for PARISC
11619 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11620 L:      linux-scsi@vger.kernel.org
11621 S:      Maintained
11622 F:      Documentation/scsi/53c700.rst
11623 F:      drivers/scsi/53c700*
11624
11625 LEAKING_ADDRESSES
11626 M:      Tobin C. Harding <me@tobin.cc>
11627 M:      Tycho Andersen <tycho@tycho.pizza>
11628 L:      linux-hardening@vger.kernel.org
11629 S:      Maintained
11630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11631 F:      scripts/leaking_addresses.pl
11632
11633 LED SUBSYSTEM
11634 M:      Pavel Machek <pavel@ucw.cz>
11635 M:      Lee Jones <lee@kernel.org>
11636 L:      linux-leds@vger.kernel.org
11637 S:      Maintained
11638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11639 F:      Documentation/devicetree/bindings/leds/
11640 F:      drivers/leds/
11641 F:      include/dt-bindings/leds/
11642 F:      include/linux/leds.h
11643
11644 LEGACY EEPROM DRIVER
11645 M:      Jean Delvare <jdelvare@suse.com>
11646 S:      Maintained
11647 F:      Documentation/misc-devices/eeprom.rst
11648 F:      drivers/misc/eeprom/eeprom.c
11649
11650 LEGO MINDSTORMS EV3
11651 R:      David Lechner <david@lechnology.com>
11652 S:      Maintained
11653 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11654 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11655 F:      drivers/power/supply/lego_ev3_battery.c
11656
11657 LEGO USB Tower driver
11658 M:      Juergen Stuber <starblue@users.sourceforge.net>
11659 L:      legousb-devel@lists.sourceforge.net
11660 S:      Maintained
11661 W:      http://legousb.sourceforge.net/
11662 F:      drivers/usb/misc/legousbtower.c
11663
11664 LETSKETCH HID TABLET DRIVER
11665 M:      Hans de Goede <hdegoede@redhat.com>
11666 L:      linux-input@vger.kernel.org
11667 S:      Maintained
11668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11669 F:      drivers/hid/hid-letsketch.c
11670
11671 LG LAPTOP EXTRAS
11672 M:      Matan Ziv-Av <matan@svgalib.org>
11673 L:      platform-driver-x86@vger.kernel.org
11674 S:      Maintained
11675 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11676 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11677 F:      drivers/platform/x86/lg-laptop.c
11678
11679 LG2160 MEDIA DRIVER
11680 M:      Michael Krufky <mkrufky@linuxtv.org>
11681 L:      linux-media@vger.kernel.org
11682 S:      Maintained
11683 W:      https://linuxtv.org
11684 W:      http://github.com/mkrufky
11685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11686 T:      git git://linuxtv.org/mkrufky/tuners.git
11687 F:      drivers/media/dvb-frontends/lg2160.*
11688
11689 LGDT3305 MEDIA DRIVER
11690 M:      Michael Krufky <mkrufky@linuxtv.org>
11691 L:      linux-media@vger.kernel.org
11692 S:      Maintained
11693 W:      https://linuxtv.org
11694 W:      http://github.com/mkrufky
11695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11696 T:      git git://linuxtv.org/mkrufky/tuners.git
11697 F:      drivers/media/dvb-frontends/lgdt3305.*
11698
11699 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11700 M:      Viresh Kumar <vireshk@kernel.org>
11701 L:      linux-ide@vger.kernel.org
11702 S:      Maintained
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11704 F:      drivers/ata/pata_arasan_cf.c
11705 F:      include/linux/pata_arasan_cf_data.h
11706
11707 LIBATA PATA DRIVERS
11708 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11709 L:      linux-ide@vger.kernel.org
11710 F:      drivers/ata/ata_*.c
11711 F:      drivers/ata/pata_*.c
11712
11713 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11714 M:      Linus Walleij <linus.walleij@linaro.org>
11715 L:      linux-ide@vger.kernel.org
11716 S:      Maintained
11717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11718 F:      drivers/ata/pata_ftide010.c
11719 F:      drivers/ata/sata_gemini.c
11720 F:      drivers/ata/sata_gemini.h
11721
11722 LIBATA SATA AHCI PLATFORM devices support
11723 M:      Hans de Goede <hdegoede@redhat.com>
11724 M:      Jens Axboe <axboe@kernel.dk>
11725 L:      linux-ide@vger.kernel.org
11726 S:      Maintained
11727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11728 F:      drivers/ata/ahci_platform.c
11729 F:      drivers/ata/libahci_platform.c
11730 F:      include/linux/ahci_platform.h
11731
11732 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11733 M:      Serge Semin <fancer.lancer@gmail.com>
11734 L:      linux-ide@vger.kernel.org
11735 S:      Maintained
11736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11737 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11738 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11739 F:      drivers/ata/ahci_dwc.c
11740
11741 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11742 M:      Mikael Pettersson <mikpelinux@gmail.com>
11743 L:      linux-ide@vger.kernel.org
11744 S:      Maintained
11745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11746 F:      drivers/ata/sata_promise.*
11747
11748 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11749 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11750 L:      linux-ide@vger.kernel.org
11751 S:      Maintained
11752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11753 F:      Documentation/ABI/testing/sysfs-ata
11754 F:      Documentation/devicetree/bindings/ata/
11755 F:      drivers/ata/
11756 F:      include/linux/ata.h
11757 F:      include/linux/libata.h
11758
11759 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11760 M:      Vishal Verma <vishal.l.verma@intel.com>
11761 M:      Dan Williams <dan.j.williams@intel.com>
11762 M:      Dave Jiang <dave.jiang@intel.com>
11763 L:      nvdimm@lists.linux.dev
11764 S:      Supported
11765 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11766 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11767 F:      drivers/nvdimm/btt*
11768
11769 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11770 M:      Dan Williams <dan.j.williams@intel.com>
11771 M:      Vishal Verma <vishal.l.verma@intel.com>
11772 M:      Dave Jiang <dave.jiang@intel.com>
11773 L:      nvdimm@lists.linux.dev
11774 S:      Supported
11775 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11776 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11777 F:      drivers/nvdimm/pmem*
11778
11779 LIBNVDIMM: DEVICETREE BINDINGS
11780 M:      Oliver O'Halloran <oohall@gmail.com>
11781 L:      nvdimm@lists.linux.dev
11782 S:      Supported
11783 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11784 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11785 F:      drivers/nvdimm/of_pmem.c
11786
11787 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11788 M:      Dan Williams <dan.j.williams@intel.com>
11789 M:      Vishal Verma <vishal.l.verma@intel.com>
11790 M:      Dave Jiang <dave.jiang@intel.com>
11791 M:      Ira Weiny <ira.weiny@intel.com>
11792 L:      nvdimm@lists.linux.dev
11793 S:      Supported
11794 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11795 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11797 F:      drivers/acpi/nfit/*
11798 F:      drivers/nvdimm/*
11799 F:      include/linux/libnvdimm.h
11800 F:      include/linux/nd.h
11801 F:      include/uapi/linux/ndctl.h
11802 F:      tools/testing/nvdimm/
11803
11804 LICENSES and SPDX stuff
11805 M:      Thomas Gleixner <tglx@linutronix.de>
11806 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11807 L:      linux-spdx@vger.kernel.org
11808 S:      Maintained
11809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11810 F:      COPYING
11811 F:      Documentation/process/license-rules.rst
11812 F:      LICENSES/
11813 F:      scripts/spdxcheck-test.sh
11814 F:      scripts/spdxcheck.py
11815 F:      scripts/spdxexclude
11816
11817 LINEAR RANGES HELPERS
11818 M:      Mark Brown <broonie@kernel.org>
11819 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11820 F:      lib/linear_ranges.c
11821 F:      lib/test_linear_ranges.c
11822 F:      include/linux/linear_range.h
11823
11824 LINUX FOR POWER MACINTOSH
11825 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11826 L:      linuxppc-dev@lists.ozlabs.org
11827 S:      Odd Fixes
11828 F:      arch/powerpc/platforms/powermac/
11829 F:      drivers/macintosh/
11830
11831 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11832 M:      Michael Ellerman <mpe@ellerman.id.au>
11833 R:      Nicholas Piggin <npiggin@gmail.com>
11834 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11835 L:      linuxppc-dev@lists.ozlabs.org
11836 S:      Supported
11837 W:      https://github.com/linuxppc/wiki/wiki
11838 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11840 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11841 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11842 F:      Documentation/devicetree/bindings/powerpc/
11843 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11844 F:      Documentation/powerpc/
11845 F:      arch/powerpc/
11846 F:      drivers/*/*/*pasemi*
11847 F:      drivers/*/*pasemi*
11848 F:      drivers/char/tpm/tpm_ibmvtpm*
11849 F:      drivers/crypto/nx/
11850 F:      drivers/crypto/vmx/
11851 F:      drivers/i2c/busses/i2c-opal.c
11852 F:      drivers/net/ethernet/ibm/ibmveth.*
11853 F:      drivers/net/ethernet/ibm/ibmvnic.*
11854 F:      drivers/pci/hotplug/pnv_php.c
11855 F:      drivers/pci/hotplug/rpa*
11856 F:      drivers/rtc/rtc-opal.c
11857 F:      drivers/scsi/ibmvscsi/
11858 F:      drivers/tty/hvc/hvc_opal.c
11859 F:      drivers/watchdog/wdrtas.c
11860 F:      tools/testing/selftests/powerpc
11861 N:      /pmac
11862 N:      powermac
11863 N:      powernv
11864 N:      [^a-z0-9]ps3
11865 N:      pseries
11866
11867 LINUX FOR POWERPC EMBEDDED MPC5XXX
11868 M:      Anatolij Gustschin <agust@denx.de>
11869 L:      linuxppc-dev@lists.ozlabs.org
11870 S:      Odd Fixes
11871 F:      arch/powerpc/platforms/512x/
11872 F:      arch/powerpc/platforms/52xx/
11873
11874 LINUX FOR POWERPC EMBEDDED PPC4XX
11875 L:      linuxppc-dev@lists.ozlabs.org
11876 S:      Orphan
11877 F:      arch/powerpc/platforms/40x/
11878 F:      arch/powerpc/platforms/44x/
11879
11880 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11881 M:      Scott Wood <oss@buserror.net>
11882 L:      linuxppc-dev@lists.ozlabs.org
11883 S:      Odd fixes
11884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11885 F:      Documentation/devicetree/bindings/powerpc/fsl/
11886 F:      arch/powerpc/platforms/83xx/
11887 F:      arch/powerpc/platforms/85xx/
11888
11889 LINUX FOR POWERPC EMBEDDED PPC8XX
11890 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11891 L:      linuxppc-dev@lists.ozlabs.org
11892 S:      Maintained
11893 F:      arch/powerpc/platforms/8xx/
11894
11895 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11896 M:      Kees Cook <keescook@chromium.org>
11897 S:      Maintained
11898 F:      drivers/misc/lkdtm/*
11899 F:      tools/testing/selftests/lkdtm/*
11900
11901 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11902 M:      Alan Stern <stern@rowland.harvard.edu>
11903 M:      Andrea Parri <parri.andrea@gmail.com>
11904 M:      Will Deacon <will@kernel.org>
11905 M:      Peter Zijlstra <peterz@infradead.org>
11906 M:      Boqun Feng <boqun.feng@gmail.com>
11907 M:      Nicholas Piggin <npiggin@gmail.com>
11908 M:      David Howells <dhowells@redhat.com>
11909 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11910 M:      Luc Maranget <luc.maranget@inria.fr>
11911 M:      "Paul E. McKenney" <paulmck@kernel.org>
11912 R:      Akira Yokosawa <akiyks@gmail.com>
11913 R:      Daniel Lustig <dlustig@nvidia.com>
11914 R:      Joel Fernandes <joel@joelfernandes.org>
11915 L:      linux-kernel@vger.kernel.org
11916 L:      linux-arch@vger.kernel.org
11917 S:      Supported
11918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11919 F:      Documentation/atomic_bitops.txt
11920 F:      Documentation/atomic_t.txt
11921 F:      Documentation/core-api/refcount-vs-atomic.rst
11922 F:      Documentation/litmus-tests/
11923 F:      Documentation/memory-barriers.txt
11924 F:      tools/memory-model/
11925
11926 LIS3LV02D ACCELEROMETER DRIVER
11927 M:      Eric Piel <eric.piel@tremplin-utc.net>
11928 S:      Maintained
11929 F:      Documentation/misc-devices/lis3lv02d.rst
11930 F:      drivers/misc/lis3lv02d/
11931 F:      drivers/platform/x86/hp/hp_accel.c
11932
11933 LIST KUNIT TEST
11934 M:      David Gow <davidgow@google.com>
11935 L:      linux-kselftest@vger.kernel.org
11936 L:      kunit-dev@googlegroups.com
11937 S:      Maintained
11938 F:      lib/list-test.c
11939
11940 LITEX PLATFORM
11941 M:      Karol Gugala <kgugala@antmicro.com>
11942 M:      Mateusz Holenko <mholenko@antmicro.com>
11943 M:      Gabriel Somlo <gsomlo@gmail.com>
11944 M:      Joel Stanley <joel@jms.id.au>
11945 S:      Maintained
11946 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11947 F:      arch/openrisc/boot/dts/or1klitex.dts
11948 F:      include/linux/litex.h
11949 F:      drivers/tty/serial/liteuart.c
11950 F:      drivers/soc/litex/*
11951 F:      drivers/net/ethernet/litex/*
11952 F:      drivers/mmc/host/litex_mmc.c
11953 N:      litex
11954
11955 LIVE PATCHING
11956 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11957 M:      Jiri Kosina <jikos@kernel.org>
11958 M:      Miroslav Benes <mbenes@suse.cz>
11959 M:      Petr Mladek <pmladek@suse.com>
11960 R:      Joe Lawrence <joe.lawrence@redhat.com>
11961 L:      live-patching@vger.kernel.org
11962 S:      Maintained
11963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11964 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11965 F:      Documentation/livepatch/
11966 F:      arch/powerpc/include/asm/livepatch.h
11967 F:      include/linux/livepatch.h
11968 F:      kernel/livepatch/
11969 F:      kernel/module/livepatch.c
11970 F:      lib/livepatch/
11971 F:      samples/livepatch/
11972 F:      tools/testing/selftests/livepatch/
11973
11974 LLC (802.2)
11975 L:      netdev@vger.kernel.org
11976 S:      Odd fixes
11977 F:      include/linux/llc.h
11978 F:      include/net/llc*
11979 F:      include/uapi/linux/llc.h
11980 F:      net/llc/
11981
11982 LM73 HARDWARE MONITOR DRIVER
11983 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11984 L:      linux-hwmon@vger.kernel.org
11985 S:      Maintained
11986 F:      drivers/hwmon/lm73.c
11987
11988 LM78 HARDWARE MONITOR DRIVER
11989 M:      Jean Delvare <jdelvare@suse.com>
11990 L:      linux-hwmon@vger.kernel.org
11991 S:      Maintained
11992 F:      Documentation/hwmon/lm78.rst
11993 F:      drivers/hwmon/lm78.c
11994
11995 LM83 HARDWARE MONITOR DRIVER
11996 M:      Jean Delvare <jdelvare@suse.com>
11997 L:      linux-hwmon@vger.kernel.org
11998 S:      Maintained
11999 F:      Documentation/hwmon/lm83.rst
12000 F:      drivers/hwmon/lm83.c
12001
12002 LM90 HARDWARE MONITOR DRIVER
12003 M:      Jean Delvare <jdelvare@suse.com>
12004 L:      linux-hwmon@vger.kernel.org
12005 S:      Maintained
12006 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12007 F:      Documentation/hwmon/lm90.rst
12008 F:      drivers/hwmon/lm90.c
12009 F:      include/dt-bindings/thermal/lm90.h
12010
12011 LM95234 HARDWARE MONITOR DRIVER
12012 M:      Guenter Roeck <linux@roeck-us.net>
12013 L:      linux-hwmon@vger.kernel.org
12014 S:      Maintained
12015 F:      Documentation/hwmon/lm95234.rst
12016 F:      drivers/hwmon/lm95234.c
12017
12018 LME2510 MEDIA DRIVER
12019 M:      Malcolm Priestley <tvboxspy@gmail.com>
12020 L:      linux-media@vger.kernel.org
12021 S:      Maintained
12022 W:      https://linuxtv.org
12023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12024 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12025
12026 LOADPIN SECURITY MODULE
12027 M:      Kees Cook <keescook@chromium.org>
12028 S:      Supported
12029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12030 F:      Documentation/admin-guide/LSM/LoadPin.rst
12031 F:      security/loadpin/
12032
12033 LOCKING PRIMITIVES
12034 M:      Peter Zijlstra <peterz@infradead.org>
12035 M:      Ingo Molnar <mingo@redhat.com>
12036 M:      Will Deacon <will@kernel.org>
12037 R:      Waiman Long <longman@redhat.com>
12038 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12039 L:      linux-kernel@vger.kernel.org
12040 S:      Maintained
12041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12042 F:      Documentation/locking/
12043 F:      arch/*/include/asm/spinlock*.h
12044 F:      include/linux/lockdep.h
12045 F:      include/linux/mutex*.h
12046 F:      include/linux/rwlock*.h
12047 F:      include/linux/rwsem*.h
12048 F:      include/linux/seqlock.h
12049 F:      include/linux/spinlock*.h
12050 F:      kernel/locking/
12051 F:      lib/locking*.[ch]
12052 X:      kernel/locking/locktorture.c
12053
12054 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12055 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12056 L:      linux-ntfs-dev@lists.sourceforge.net
12057 S:      Maintained
12058 W:      http://www.linux-ntfs.org/content/view/19/37/
12059 F:      Documentation/admin-guide/ldm.rst
12060 F:      block/partitions/ldm.*
12061
12062 LOGITECH HID GAMING KEYBOARDS
12063 M:      Hans de Goede <hdegoede@redhat.com>
12064 L:      linux-input@vger.kernel.org
12065 S:      Maintained
12066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12067 F:      drivers/hid/hid-lg-g15.c
12068
12069 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12070 M:      Adrien Grassein <adrien.grassein@gmail.com>
12071 S:      Maintained
12072 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12073 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12074
12075 LOONGARCH
12076 M:      Huacai Chen <chenhuacai@kernel.org>
12077 R:      WANG Xuerui <kernel@xen0n.name>
12078 L:      loongarch@lists.linux.dev
12079 S:      Maintained
12080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12081 F:      arch/loongarch/
12082 F:      drivers/*/*loongarch*
12083 F:      Documentation/loongarch/
12084 F:      Documentation/translations/zh_CN/loongarch/
12085
12086 LOONGSON-2 SOC SERIES GUTS DRIVER
12087 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12088 L:      loongarch@lists.linux.dev
12089 S:      Maintained
12090 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12091 F:      drivers/soc/loongson/loongson2_guts.c
12092
12093 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12094 M:      zhanghongchen <zhanghongchen@loongson.cn>
12095 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12096 L:      linux-gpio@vger.kernel.org
12097 S:      Maintained
12098 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12099 F:      drivers/pinctrl/pinctrl-loongson2.c
12100
12101 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12102 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12103 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12104 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12105 L:      MPT-FusionLinux.pdl@broadcom.com
12106 L:      linux-scsi@vger.kernel.org
12107 S:      Supported
12108 W:      http://www.avagotech.com/support/
12109 F:      drivers/message/fusion/
12110 F:      drivers/scsi/mpt3sas/
12111
12112 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12113 M:      Matthew Wilcox <willy@infradead.org>
12114 L:      linux-scsi@vger.kernel.org
12115 S:      Maintained
12116 F:      drivers/scsi/sym53c8xx_2/
12117
12118 LTC1660 DAC DRIVER
12119 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12120 L:      linux-iio@vger.kernel.org
12121 S:      Maintained
12122 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12123 F:      drivers/iio/dac/ltc1660.c
12124
12125 LTC2688 IIO DAC DRIVER
12126 M:      Nuno Sá <nuno.sa@analog.com>
12127 L:      linux-iio@vger.kernel.org
12128 S:      Supported
12129 W:      https://ez.analog.com/linux-software-drivers
12130 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12131 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12132 F:      drivers/iio/dac/ltc2688.c
12133
12134 LTC2947 HARDWARE MONITOR DRIVER
12135 M:      Nuno Sá <nuno.sa@analog.com>
12136 L:      linux-hwmon@vger.kernel.org
12137 S:      Supported
12138 W:      https://ez.analog.com/linux-software-drivers
12139 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12140 F:      drivers/hwmon/ltc2947-core.c
12141 F:      drivers/hwmon/ltc2947-i2c.c
12142 F:      drivers/hwmon/ltc2947-spi.c
12143 F:      drivers/hwmon/ltc2947.h
12144
12145 LTC2983 IIO TEMPERATURE DRIVER
12146 M:      Nuno Sá <nuno.sa@analog.com>
12147 L:      linux-iio@vger.kernel.org
12148 S:      Supported
12149 W:      https://ez.analog.com/linux-software-drivers
12150 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12151 F:      drivers/iio/temperature/ltc2983.c
12152
12153 LTC4261 HARDWARE MONITOR DRIVER
12154 M:      Guenter Roeck <linux@roeck-us.net>
12155 L:      linux-hwmon@vger.kernel.org
12156 S:      Maintained
12157 F:      Documentation/hwmon/ltc4261.rst
12158 F:      drivers/hwmon/ltc4261.c
12159
12160 LTC4306 I2C MULTIPLEXER DRIVER
12161 M:      Michael Hennerich <michael.hennerich@analog.com>
12162 L:      linux-i2c@vger.kernel.org
12163 S:      Supported
12164 W:      https://ez.analog.com/linux-software-drivers
12165 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12166 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12167
12168 LTP (Linux Test Project)
12169 M:      Mike Frysinger <vapier@gentoo.org>
12170 M:      Cyril Hrubis <chrubis@suse.cz>
12171 M:      Wanlong Gao <wanlong.gao@gmail.com>
12172 M:      Jan Stancek <jstancek@redhat.com>
12173 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12174 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12175 L:      ltp@lists.linux.it (subscribers-only)
12176 S:      Maintained
12177 W:      http://linux-test-project.github.io/
12178 T:      git https://github.com/linux-test-project/ltp.git
12179
12180 LYNX 28G SERDES PHY DRIVER
12181 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12182 L:      netdev@vger.kernel.org
12183 S:      Supported
12184 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12185 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12186
12187 LYNX PCS MODULE
12188 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12189 L:      netdev@vger.kernel.org
12190 S:      Supported
12191 F:      drivers/net/pcs/pcs-lynx.c
12192 F:      include/linux/pcs-lynx.h
12193
12194 M68K ARCHITECTURE
12195 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12196 L:      linux-m68k@lists.linux-m68k.org
12197 S:      Maintained
12198 W:      http://www.linux-m68k.org/
12199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12200 F:      arch/m68k/
12201 F:      drivers/zorro/
12202
12203 M68K ON APPLE MACINTOSH
12204 M:      Joshua Thompson <funaho@jurai.org>
12205 L:      linux-m68k@lists.linux-m68k.org
12206 S:      Maintained
12207 W:      http://www.mac.linux-m68k.org/
12208 F:      arch/m68k/mac/
12209 F:      drivers/macintosh/adb-iop.c
12210 F:      drivers/macintosh/via-macii.c
12211
12212 M68K ON HP9000/300
12213 M:      Philip Blundell <philb@gnu.org>
12214 S:      Maintained
12215 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12216 F:      arch/m68k/hp300/
12217
12218 M88DS3103 MEDIA DRIVER
12219 M:      Antti Palosaari <crope@iki.fi>
12220 L:      linux-media@vger.kernel.org
12221 S:      Maintained
12222 W:      https://linuxtv.org
12223 W:      http://palosaari.fi/linux/
12224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12225 T:      git git://linuxtv.org/anttip/media_tree.git
12226 F:      drivers/media/dvb-frontends/m88ds3103*
12227
12228 M88RS2000 MEDIA DRIVER
12229 M:      Malcolm Priestley <tvboxspy@gmail.com>
12230 L:      linux-media@vger.kernel.org
12231 S:      Maintained
12232 W:      https://linuxtv.org
12233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12234 F:      drivers/media/dvb-frontends/m88rs2000*
12235
12236 MA901 MASTERKIT USB FM RADIO DRIVER
12237 M:      Alexey Klimov <klimov.linux@gmail.com>
12238 L:      linux-media@vger.kernel.org
12239 S:      Maintained
12240 T:      git git://linuxtv.org/media_tree.git
12241 F:      drivers/media/radio/radio-ma901.c
12242
12243 MAC80211
12244 M:      Johannes Berg <johannes@sipsolutions.net>
12245 L:      linux-wireless@vger.kernel.org
12246 S:      Maintained
12247 W:      https://wireless.wiki.kernel.org/
12248 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12251 F:      Documentation/networking/mac80211-injection.rst
12252 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12253 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12254 F:      include/net/mac80211.h
12255 F:      net/mac80211/
12256
12257 MAILBOX API
12258 M:      Jassi Brar <jassisinghbrar@gmail.com>
12259 L:      linux-kernel@vger.kernel.org
12260 S:      Maintained
12261 F:      drivers/mailbox/
12262 F:      include/linux/mailbox_client.h
12263 F:      include/linux/mailbox_controller.h
12264 F:      include/dt-bindings/mailbox/
12265 F:      Documentation/devicetree/bindings/mailbox/
12266
12267 MAILBOX ARM MHUv2
12268 M:      Viresh Kumar <viresh.kumar@linaro.org>
12269 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12270 L:      linux-kernel@vger.kernel.org
12271 S:      Maintained
12272 F:      drivers/mailbox/arm_mhuv2.c
12273 F:      include/linux/mailbox/arm_mhuv2_message.h
12274 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12275
12276 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12277 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12278 M:      Matt Johnston <matt@codeconstruct.com.au>
12279 L:      netdev@vger.kernel.org
12280 S:      Maintained
12281 F:      Documentation/networking/mctp.rst
12282 F:      drivers/net/mctp/
12283 F:      include/net/mctp.h
12284 F:      include/net/mctpdevice.h
12285 F:      include/net/netns/mctp.h
12286 F:      net/mctp/
12287
12288 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12289 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12290 L:      linux-man@vger.kernel.org
12291 S:      Maintained
12292 W:      http://www.kernel.org/doc/man-pages
12293
12294 MAPLE TREE
12295 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12296 L:      linux-mm@kvack.org
12297 S:      Supported
12298 F:      Documentation/core-api/maple_tree.rst
12299 F:      include/linux/maple_tree.h
12300 F:      include/trace/events/maple_tree.h
12301 F:      lib/maple_tree.c
12302 F:      lib/test_maple_tree.c
12303 F:      tools/testing/radix-tree/linux/maple_tree.h
12304 F:      tools/testing/radix-tree/maple.c
12305
12306 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12307 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12308 L:      linux-mips@vger.kernel.org
12309 S:      Maintained
12310 F:      arch/mips/boot/dts/img/pistachio*
12311
12312 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12313 M:      Andrew Lunn <andrew@lunn.ch>
12314 L:      netdev@vger.kernel.org
12315 S:      Maintained
12316 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12317 F:      Documentation/networking/devlink/mv88e6xxx.rst
12318 F:      drivers/net/dsa/mv88e6xxx/
12319 F:      include/linux/dsa/mv88e6xxx.h
12320 F:      include/linux/platform_data/mv88e6xxx.h
12321
12322 MARVELL ARMADA 3700 PHY DRIVERS
12323 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12324 S:      Maintained
12325 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12326 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12327 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12328 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12329
12330 MARVELL ARMADA 3700 SERIAL DRIVER
12331 M:      Pali Rohár <pali@kernel.org>
12332 S:      Maintained
12333 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12334 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12335 F:      drivers/tty/serial/mvebu-uart.c
12336
12337 MARVELL ARMADA DRM SUPPORT
12338 M:      Russell King <linux@armlinux.org.uk>
12339 S:      Maintained
12340 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12341 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12342 F:      Documentation/devicetree/bindings/display/armada/
12343 F:      drivers/gpu/drm/armada/
12344 F:      include/uapi/drm/armada_drm.h
12345
12346 MARVELL CRYPTO DRIVER
12347 M:      Boris Brezillon <bbrezillon@kernel.org>
12348 M:      Arnaud Ebalard <arno@natisbad.org>
12349 M:      Srujana Challa <schalla@marvell.com>
12350 L:      linux-crypto@vger.kernel.org
12351 S:      Maintained
12352 F:      drivers/crypto/marvell/
12353 F:      include/linux/soc/marvell/octeontx2/
12354
12355 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12356 M:      Mirko Lindner <mlindner@marvell.com>
12357 M:      Stephen Hemminger <stephen@networkplumber.org>
12358 L:      netdev@vger.kernel.org
12359 S:      Maintained
12360 F:      drivers/net/ethernet/marvell/sk*
12361
12362 MARVELL LIBERTAS WIRELESS DRIVER
12363 L:      libertas-dev@lists.infradead.org
12364 S:      Orphan
12365 F:      drivers/net/wireless/marvell/libertas/
12366
12367 MARVELL MACCHIATOBIN SUPPORT
12368 M:      Russell King <linux@armlinux.org.uk>
12369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12370 S:      Maintained
12371 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12372
12373 MARVELL MV643XX ETHERNET DRIVER
12374 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12375 L:      netdev@vger.kernel.org
12376 S:      Maintained
12377 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12378 F:      include/linux/mv643xx.h
12379
12380 MARVELL MV88X3310 PHY DRIVER
12381 M:      Russell King <linux@armlinux.org.uk>
12382 M:      Marek Behún <kabel@kernel.org>
12383 L:      netdev@vger.kernel.org
12384 S:      Maintained
12385 F:      drivers/net/phy/marvell10g.c
12386
12387 MARVELL MVEBU THERMAL DRIVER
12388 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12389 S:      Maintained
12390 F:      drivers/thermal/armada_thermal.c
12391
12392 MARVELL MVNETA ETHERNET DRIVER
12393 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12394 L:      netdev@vger.kernel.org
12395 S:      Maintained
12396 F:      drivers/net/ethernet/marvell/mvneta.*
12397
12398 MARVELL MVPP2 ETHERNET DRIVER
12399 M:      Marcin Wojtas <mw@semihalf.com>
12400 M:      Russell King <linux@armlinux.org.uk>
12401 L:      netdev@vger.kernel.org
12402 S:      Maintained
12403 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12404 F:      drivers/net/ethernet/marvell/mvpp2/
12405
12406 MARVELL MWIFIEX WIRELESS DRIVER
12407 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12408 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12409 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12410 M:      Xinming Hu <huxinming820@gmail.com>
12411 L:      linux-wireless@vger.kernel.org
12412 S:      Maintained
12413 F:      drivers/net/wireless/marvell/mwifiex/
12414
12415 MARVELL MWL8K WIRELESS DRIVER
12416 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12417 L:      linux-wireless@vger.kernel.org
12418 S:      Odd Fixes
12419 F:      drivers/net/wireless/marvell/mwl8k.c
12420
12421 MARVELL NAND CONTROLLER DRIVER
12422 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12423 L:      linux-mtd@lists.infradead.org
12424 S:      Maintained
12425 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12426 F:      drivers/mtd/nand/raw/marvell_nand.c
12427
12428 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12429 M:      Sunil Goutham <sgoutham@marvell.com>
12430 M:      Geetha sowjanya <gakula@marvell.com>
12431 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12432 M:      hariprasad <hkelam@marvell.com>
12433 L:      netdev@vger.kernel.org
12434 S:      Supported
12435 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12436 F:      include/linux/soc/marvell/octeontx2/
12437
12438 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12439 M:      Sunil Goutham <sgoutham@marvell.com>
12440 M:      Linu Cherian <lcherian@marvell.com>
12441 M:      Geetha sowjanya <gakula@marvell.com>
12442 M:      Jerin Jacob <jerinj@marvell.com>
12443 M:      hariprasad <hkelam@marvell.com>
12444 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12445 L:      netdev@vger.kernel.org
12446 S:      Supported
12447 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12448 F:      drivers/net/ethernet/marvell/octeontx2/af/
12449
12450 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12451 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12452 S:      Supported
12453 W:      https://github.com/Marvell-switching/switchdev-prestera
12454 F:      drivers/net/ethernet/marvell/prestera/
12455
12456 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12457 M:      Nicolas Pitre <nico@fluxnic.net>
12458 S:      Odd Fixes
12459 F:      drivers/mmc/host/mvsdio.*
12460
12461 MARVELL USB MDIO CONTROLLER DRIVER
12462 M:      Tobias Waldekranz <tobias@waldekranz.com>
12463 L:      netdev@vger.kernel.org
12464 S:      Maintained
12465 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12466 F:      drivers/net/mdio/mdio-mvusb.c
12467
12468 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12469 M:      Hu Ziji <huziji@marvell.com>
12470 L:      linux-mmc@vger.kernel.org
12471 S:      Supported
12472 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12473 F:      drivers/mmc/host/sdhci-xenon*
12474
12475 MARVELL OCTEON ENDPOINT DRIVER
12476 M:      Veerasenareddy Burru <vburru@marvell.com>
12477 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12478 L:      netdev@vger.kernel.org
12479 S:      Supported
12480 F:      drivers/net/ethernet/marvell/octeon_ep
12481
12482 MATROX FRAMEBUFFER DRIVER
12483 L:      linux-fbdev@vger.kernel.org
12484 S:      Orphan
12485 F:      drivers/video/fbdev/matrox/matroxfb_*
12486 F:      include/uapi/linux/matroxfb.h
12487
12488 MAX15301 DRIVER
12489 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12490 L:      linux-hwmon@vger.kernel.org
12491 S:      Maintained
12492 F:      Documentation/hwmon/max15301.rst
12493 F:      drivers/hwmon/pmbus/max15301.c
12494
12495 MAX16065 HARDWARE MONITOR DRIVER
12496 M:      Guenter Roeck <linux@roeck-us.net>
12497 L:      linux-hwmon@vger.kernel.org
12498 S:      Maintained
12499 F:      Documentation/hwmon/max16065.rst
12500 F:      drivers/hwmon/max16065.c
12501
12502 MAX2175 SDR TUNER DRIVER
12503 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12504 L:      linux-media@vger.kernel.org
12505 S:      Maintained
12506 T:      git git://linuxtv.org/media_tree.git
12507 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12508 F:      Documentation/userspace-api/media/drivers/max2175.rst
12509 F:      drivers/media/i2c/max2175*
12510 F:      include/uapi/linux/max2175.h
12511
12512 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12513 L:      linux-hwmon@vger.kernel.org
12514 S:      Orphan
12515 F:      Documentation/hwmon/max6650.rst
12516 F:      drivers/hwmon/max6650.c
12517
12518 MAX6697 HARDWARE MONITOR DRIVER
12519 M:      Guenter Roeck <linux@roeck-us.net>
12520 L:      linux-hwmon@vger.kernel.org
12521 S:      Maintained
12522 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12523 F:      Documentation/hwmon/max6697.rst
12524 F:      drivers/hwmon/max6697.c
12525 F:      include/linux/platform_data/max6697.h
12526
12527 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12528 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12529 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12530 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12531 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12532 L:      linux-media@vger.kernel.org
12533 S:      Maintained
12534 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12535 F:      drivers/media/i2c/max9286.c
12536
12537 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12538 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12539 L:      linux-media@vger.kernel.org
12540 S:      Maintained
12541 F:      drivers/staging/media/max96712/max96712.c
12542
12543 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12544 M:      Peter Rosin <peda@axentia.se>
12545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12546 S:      Maintained
12547 F:      Documentation/devicetree/bindings/sound/max9860.txt
12548 F:      sound/soc/codecs/max9860.*
12549
12550 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12551 M:      Andreas Klinger <ak@it-klinger.de>
12552 L:      linux-iio@vger.kernel.org
12553 S:      Maintained
12554 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12555 F:      drivers/iio/proximity/mb1232.c
12556
12557 MAXIM MAX11205 DRIVER
12558 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12559 L:      linux-iio@vger.kernel.org
12560 S:      Supported
12561 W:      https://ez.analog.com/linux-software-drivers
12562 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12563 F:      drivers/iio/adc/max11205.c
12564
12565 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12566 R:      Iskren Chernev <iskren.chernev@gmail.com>
12567 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12568 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12569 R:      Matheus Castello <matheus@castello.eng.br>
12570 L:      linux-pm@vger.kernel.org
12571 S:      Maintained
12572 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12573 F:      drivers/power/supply/max17040_battery.c
12574
12575 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12576 R:      Hans de Goede <hdegoede@redhat.com>
12577 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12578 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12579 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12580 R:      Purism Kernel Team <kernel@puri.sm>
12581 L:      linux-pm@vger.kernel.org
12582 S:      Maintained
12583 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12584 F:      drivers/power/supply/max17042_battery.c
12585
12586 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12587 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12588 L:      linux-kernel@vger.kernel.org
12589 S:      Maintained
12590 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12591 F:      drivers/regulator/max20086-regulator.c
12592
12593 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12594 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12595 L:      linux-iio@vger.kernel.org
12596 S:      Maintained
12597 F:      drivers/iio/temperature/max30208.c
12598
12599 MAXIM MAX77650 PMIC MFD DRIVER
12600 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12601 L:      linux-kernel@vger.kernel.org
12602 S:      Maintained
12603 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12604 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12605 F:      drivers/gpio/gpio-max77650.c
12606 F:      drivers/input/misc/max77650-onkey.c
12607 F:      drivers/leds/leds-max77650.c
12608 F:      drivers/mfd/max77650.c
12609 F:      drivers/power/supply/max77650-charger.c
12610 F:      drivers/regulator/max77650-regulator.c
12611 F:      include/linux/mfd/max77650.h
12612
12613 MAXIM MAX77714 PMIC MFD DRIVER
12614 M:      Luca Ceresoli <luca@lucaceresoli.net>
12615 S:      Maintained
12616 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12617 F:      drivers/mfd/max77714.c
12618 F:      include/linux/mfd/max77714.h
12619
12620 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12621 M:      Javier Martinez Canillas <javier@dowhile0.org>
12622 L:      linux-kernel@vger.kernel.org
12623 S:      Supported
12624 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12625 F:      drivers/regulator/max77802-regulator.c
12626 F:      include/dt-bindings/*/*max77802.h
12627
12628 MAXIM MAX77976 BATTERY CHARGER
12629 M:      Luca Ceresoli <luca@lucaceresoli.net>
12630 S:      Supported
12631 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12632 F:      drivers/power/supply/max77976_charger.c
12633
12634 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12635 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12636 L:      linux-pm@vger.kernel.org
12637 S:      Supported
12638 B:      mailto:linux-samsung-soc@vger.kernel.org
12639 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12640 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12641 F:      drivers/power/supply/max14577_charger.c
12642 F:      drivers/power/supply/max77693_charger.c
12643
12644 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12645 M:      Chanwoo Choi <cw00.choi@samsung.com>
12646 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12647 L:      linux-kernel@vger.kernel.org
12648 S:      Supported
12649 B:      mailto:linux-samsung-soc@vger.kernel.org
12650 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12651 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12652 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12653 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12654 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12655 F:      drivers/*/*max77843.c
12656 F:      drivers/*/max14577*.c
12657 F:      drivers/*/max77686*.c
12658 F:      drivers/*/max77693*.c
12659 F:      drivers/clk/clk-max77686.c
12660 F:      drivers/extcon/extcon-max14577.c
12661 F:      drivers/extcon/extcon-max77693.c
12662 F:      drivers/rtc/rtc-max77686.c
12663 F:      include/linux/mfd/max14577*.h
12664 F:      include/linux/mfd/max77686*.h
12665 F:      include/linux/mfd/max77693*.h
12666
12667 MAXIRADIO FM RADIO RECEIVER DRIVER
12668 M:      Hans Verkuil <hverkuil@xs4all.nl>
12669 L:      linux-media@vger.kernel.org
12670 S:      Maintained
12671 W:      https://linuxtv.org
12672 T:      git git://linuxtv.org/media_tree.git
12673 F:      drivers/media/radio/radio-maxiradio*
12674
12675 MAXLINEAR ETHERNET PHY DRIVER
12676 M:      Xu Liang <lxu@maxlinear.com>
12677 L:      netdev@vger.kernel.org
12678 S:      Supported
12679 F:      drivers/net/phy/mxl-gpy.c
12680
12681 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12682 R:      Yasushi SHOJI <yashi@spacecubics.com>
12683 L:      linux-can@vger.kernel.org
12684 S:      Maintained
12685 F:      drivers/net/can/usb/mcba_usb.c
12686
12687 MCAN MMIO DEVICE DRIVER
12688 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12689 L:      linux-can@vger.kernel.org
12690 S:      Maintained
12691 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12692 F:      drivers/net/can/m_can/m_can.c
12693 F:      drivers/net/can/m_can/m_can.h
12694 F:      drivers/net/can/m_can/m_can_platform.c
12695
12696 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12697 M:      Rishi Gupta <gupt21@gmail.com>
12698 L:      linux-i2c@vger.kernel.org
12699 L:      linux-input@vger.kernel.org
12700 S:      Maintained
12701 F:      drivers/hid/hid-mcp2221.c
12702
12703 MCP251XFD SPI-CAN NETWORK DRIVER
12704 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12705 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12706 R:      Thomas Kopp <thomas.kopp@microchip.com>
12707 L:      linux-can@vger.kernel.org
12708 S:      Maintained
12709 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12710 F:      drivers/net/can/spi/mcp251xfd/
12711
12712 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12713 M:      Peter Rosin <peda@axentia.se>
12714 L:      linux-iio@vger.kernel.org
12715 S:      Maintained
12716 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12717 F:      drivers/iio/potentiometer/mcp4018.c
12718 F:      drivers/iio/potentiometer/mcp4531.c
12719
12720 MCR20A IEEE-802.15.4 RADIO DRIVER
12721 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12722 L:      linux-wpan@vger.kernel.org
12723 S:      Odd Fixes
12724 W:      https://github.com/xueliu/mcr20a-linux
12725 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12726 F:      drivers/net/ieee802154/mcr20a.c
12727 F:      drivers/net/ieee802154/mcr20a.h
12728
12729 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12730 M:      William Breathitt Gray <william.gray@linaro.org>
12731 L:      linux-iio@vger.kernel.org
12732 S:      Maintained
12733 F:      drivers/iio/dac/cio-dac.c
12734
12735 MEDIA CONTROLLER FRAMEWORK
12736 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12737 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12738 L:      linux-media@vger.kernel.org
12739 S:      Supported
12740 W:      https://www.linuxtv.org
12741 T:      git git://linuxtv.org/media_tree.git
12742 F:      drivers/media/mc/
12743 F:      include/media/media-*.h
12744 F:      include/uapi/linux/media.h
12745
12746 MEDIA DRIVER FOR FREESCALE IMX PXP
12747 M:      Philipp Zabel <p.zabel@pengutronix.de>
12748 L:      linux-media@vger.kernel.org
12749 S:      Maintained
12750 T:      git git://linuxtv.org/media_tree.git
12751 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12752
12753 MEDIA DRIVERS FOR ASCOT2E
12754 M:      Sergey Kozlov <serjk@netup.ru>
12755 M:      Abylay Ospan <aospan@netup.ru>
12756 L:      linux-media@vger.kernel.org
12757 S:      Supported
12758 W:      https://linuxtv.org
12759 W:      http://netup.tv/
12760 T:      git git://linuxtv.org/media_tree.git
12761 F:      drivers/media/dvb-frontends/ascot2e*
12762
12763 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12764 M:      Jasmin Jessich <jasmin@anw.at>
12765 L:      linux-media@vger.kernel.org
12766 S:      Maintained
12767 W:      https://linuxtv.org
12768 T:      git git://linuxtv.org/media_tree.git
12769 F:      drivers/media/dvb-frontends/cxd2099*
12770
12771 MEDIA DRIVERS FOR CXD2841ER
12772 M:      Sergey Kozlov <serjk@netup.ru>
12773 M:      Abylay Ospan <aospan@netup.ru>
12774 L:      linux-media@vger.kernel.org
12775 S:      Supported
12776 W:      https://linuxtv.org
12777 W:      http://netup.tv/
12778 T:      git git://linuxtv.org/media_tree.git
12779 F:      drivers/media/dvb-frontends/cxd2841er*
12780
12781 MEDIA DRIVERS FOR CXD2880
12782 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12783 L:      linux-media@vger.kernel.org
12784 S:      Supported
12785 W:      http://linuxtv.org/
12786 T:      git git://linuxtv.org/media_tree.git
12787 F:      drivers/media/dvb-frontends/cxd2880/*
12788 F:      drivers/media/spi/cxd2880*
12789
12790 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12791 L:      linux-media@vger.kernel.org
12792 S:      Orphan
12793 W:      https://linuxtv.org
12794 T:      git git://linuxtv.org/media_tree.git
12795 F:      drivers/media/pci/ddbridge/*
12796
12797 MEDIA DRIVERS FOR FREESCALE IMX
12798 M:      Steve Longerbeam <slongerbeam@gmail.com>
12799 M:      Philipp Zabel <p.zabel@pengutronix.de>
12800 L:      linux-media@vger.kernel.org
12801 S:      Maintained
12802 T:      git git://linuxtv.org/media_tree.git
12803 F:      Documentation/admin-guide/media/imx.rst
12804 F:      Documentation/devicetree/bindings/media/imx.txt
12805 F:      drivers/staging/media/imx/
12806 F:      include/linux/imx-media.h
12807 F:      include/media/imx.h
12808
12809 MEDIA DRIVERS FOR FREESCALE IMX7
12810 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12811 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12812 L:      linux-media@vger.kernel.org
12813 S:      Maintained
12814 T:      git git://linuxtv.org/media_tree.git
12815 F:      Documentation/admin-guide/media/imx7.rst
12816 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12817 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12818 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12819 F:      drivers/media/platform/nxp/imx7-media-csi.c
12820
12821 MEDIA DRIVERS FOR HELENE
12822 M:      Abylay Ospan <aospan@netup.ru>
12823 L:      linux-media@vger.kernel.org
12824 S:      Supported
12825 W:      https://linuxtv.org
12826 W:      http://netup.tv/
12827 T:      git git://linuxtv.org/media_tree.git
12828 F:      drivers/media/dvb-frontends/helene*
12829
12830 MEDIA DRIVERS FOR HORUS3A
12831 M:      Sergey Kozlov <serjk@netup.ru>
12832 M:      Abylay Ospan <aospan@netup.ru>
12833 L:      linux-media@vger.kernel.org
12834 S:      Supported
12835 W:      https://linuxtv.org
12836 W:      http://netup.tv/
12837 T:      git git://linuxtv.org/media_tree.git
12838 F:      drivers/media/dvb-frontends/horus3a*
12839
12840 MEDIA DRIVERS FOR LNBH25
12841 M:      Sergey Kozlov <serjk@netup.ru>
12842 M:      Abylay Ospan <aospan@netup.ru>
12843 L:      linux-media@vger.kernel.org
12844 S:      Supported
12845 W:      https://linuxtv.org
12846 W:      http://netup.tv/
12847 T:      git git://linuxtv.org/media_tree.git
12848 F:      drivers/media/dvb-frontends/lnbh25*
12849
12850 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12851 L:      linux-media@vger.kernel.org
12852 S:      Orphan
12853 W:      https://linuxtv.org
12854 T:      git git://linuxtv.org/media_tree.git
12855 F:      drivers/media/dvb-frontends/mxl5xx*
12856
12857 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12858 M:      Sergey Kozlov <serjk@netup.ru>
12859 M:      Abylay Ospan <aospan@netup.ru>
12860 L:      linux-media@vger.kernel.org
12861 S:      Supported
12862 W:      https://linuxtv.org
12863 W:      http://netup.tv/
12864 T:      git git://linuxtv.org/media_tree.git
12865 F:      drivers/media/pci/netup_unidvb/*
12866
12867 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12868 M:      Dmitry Osipenko <digetx@gmail.com>
12869 L:      linux-media@vger.kernel.org
12870 L:      linux-tegra@vger.kernel.org
12871 S:      Maintained
12872 T:      git git://linuxtv.org/media_tree.git
12873 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12874 F:      drivers/media/platform/nvidia/tegra-vde/
12875
12876 MEDIA DRIVERS FOR RENESAS - CEU
12877 M:      Jacopo Mondi <jacopo@jmondi.org>
12878 L:      linux-media@vger.kernel.org
12879 L:      linux-renesas-soc@vger.kernel.org
12880 S:      Supported
12881 T:      git git://linuxtv.org/media_tree.git
12882 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12883 F:      drivers/media/platform/renesas/renesas-ceu.c
12884 F:      include/media/drv-intf/renesas-ceu.h
12885
12886 MEDIA DRIVERS FOR RENESAS - DRIF
12887 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12888 L:      linux-media@vger.kernel.org
12889 L:      linux-renesas-soc@vger.kernel.org
12890 S:      Supported
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12893 F:      drivers/media/platform/renesas/rcar_drif.c
12894
12895 MEDIA DRIVERS FOR RENESAS - FCP
12896 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12897 L:      linux-media@vger.kernel.org
12898 L:      linux-renesas-soc@vger.kernel.org
12899 S:      Supported
12900 T:      git git://linuxtv.org/media_tree.git
12901 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12902 F:      drivers/media/platform/renesas/rcar-fcp.c
12903 F:      include/media/rcar-fcp.h
12904
12905 MEDIA DRIVERS FOR RENESAS - FDP1
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,fdp1.yaml
12912 F:      drivers/media/platform/renesas/rcar_fdp1.c
12913
12914 MEDIA DRIVERS FOR RENESAS - VIN
12915 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12916 L:      linux-media@vger.kernel.org
12917 L:      linux-renesas-soc@vger.kernel.org
12918 S:      Supported
12919 T:      git git://linuxtv.org/media_tree.git
12920 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12921 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12922 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12923 F:      drivers/media/platform/renesas/rcar-isp.c
12924 F:      drivers/media/platform/renesas/rcar-vin/
12925
12926 MEDIA DRIVERS FOR RENESAS - VSP1
12927 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12928 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12929 L:      linux-media@vger.kernel.org
12930 L:      linux-renesas-soc@vger.kernel.org
12931 S:      Supported
12932 T:      git git://linuxtv.org/media_tree.git
12933 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12934 F:      drivers/media/platform/renesas/vsp1/
12935
12936 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12937 L:      linux-media@vger.kernel.org
12938 S:      Orphan
12939 W:      https://linuxtv.org
12940 T:      git git://linuxtv.org/media_tree.git
12941 F:      drivers/media/dvb-frontends/stv0910*
12942
12943 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12944 L:      linux-media@vger.kernel.org
12945 S:      Orphan
12946 W:      https://linuxtv.org
12947 T:      git git://linuxtv.org/media_tree.git
12948 F:      drivers/media/dvb-frontends/stv6111*
12949
12950 MEDIA DRIVERS FOR STM32 - DCMI
12951 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12952 L:      linux-media@vger.kernel.org
12953 S:      Supported
12954 T:      git git://linuxtv.org/media_tree.git
12955 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12956 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12957
12958 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12959 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12960 L:      linux-media@vger.kernel.org
12961 S:      Maintained
12962 W:      https://linuxtv.org
12963 Q:      http://patchwork.kernel.org/project/linux-media/list/
12964 T:      git git://linuxtv.org/media_tree.git
12965 F:      Documentation/admin-guide/media/
12966 F:      Documentation/devicetree/bindings/media/
12967 F:      Documentation/driver-api/media/
12968 F:      Documentation/userspace-api/media/
12969 F:      drivers/media/
12970 F:      drivers/staging/media/
12971 F:      include/dt-bindings/media/
12972 F:      include/linux/platform_data/media/
12973 F:      include/media/
12974 F:      include/uapi/linux/dvb/
12975 F:      include/uapi/linux/ivtv*
12976 F:      include/uapi/linux/media.h
12977 F:      include/uapi/linux/meye.h
12978 F:      include/uapi/linux/uvcvideo.h
12979 F:      include/uapi/linux/v4l2-*
12980 F:      include/uapi/linux/videodev2.h
12981
12982 MEDIATEK BLUETOOTH DRIVER
12983 M:      Sean Wang <sean.wang@mediatek.com>
12984 L:      linux-bluetooth@vger.kernel.org
12985 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12986 S:      Maintained
12987 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12988 F:      drivers/bluetooth/btmtkuart.c
12989
12990 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12991 M:      Sean Wang <sean.wang@mediatek.com>
12992 L:      linux-pm@vger.kernel.org
12993 S:      Maintained
12994 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12995 F:      drivers/power/reset/mt6323-poweroff.c
12996
12997 MEDIATEK CIR DRIVER
12998 M:      Sean Wang <sean.wang@mediatek.com>
12999 S:      Maintained
13000 F:      drivers/media/rc/mtk-cir.c
13001
13002 MEDIATEK DMA DRIVER
13003 M:      Sean Wang <sean.wang@mediatek.com>
13004 L:      dmaengine@vger.kernel.org
13005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13006 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13007 S:      Maintained
13008 F:      Documentation/devicetree/bindings/dma/mtk-*
13009 F:      drivers/dma/mediatek/
13010
13011 MEDIATEK ETHERNET DRIVER
13012 M:      Felix Fietkau <nbd@nbd.name>
13013 M:      John Crispin <john@phrozen.org>
13014 M:      Sean Wang <sean.wang@mediatek.com>
13015 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
13016 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13017 L:      netdev@vger.kernel.org
13018 S:      Maintained
13019 F:      drivers/net/ethernet/mediatek/
13020
13021 MEDIATEK I2C CONTROLLER DRIVER
13022 M:      Qii Wang <qii.wang@mediatek.com>
13023 L:      linux-i2c@vger.kernel.org
13024 S:      Maintained
13025 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13026 F:      drivers/i2c/busses/i2c-mt65xx.c
13027
13028 MEDIATEK IOMMU DRIVER
13029 M:      Yong Wu <yong.wu@mediatek.com>
13030 L:      iommu@lists.linux.dev
13031 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13032 S:      Supported
13033 F:      Documentation/devicetree/bindings/iommu/mediatek*
13034 F:      drivers/iommu/mtk_iommu*
13035 F:      include/dt-bindings/memory/mt*-port.h
13036
13037 MEDIATEK JPEG DRIVER
13038 M:      Bin Liu <bin.liu@mediatek.com>
13039 S:      Supported
13040 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13041 F:      drivers/media/platform/mediatek/jpeg/
13042
13043 MEDIATEK KEYPAD DRIVER
13044 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13045 S:      Supported
13046 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13047 F:      drivers/input/keyboard/mt6779-keypad.c
13048
13049 MEDIATEK MDP DRIVER
13050 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13051 M:      Houlong Wei <houlong.wei@mediatek.com>
13052 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13053 S:      Supported
13054 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13055 F:      drivers/media/platform/mediatek/mdp/
13056 F:      drivers/media/platform/mediatek/vpu/
13057
13058 MEDIATEK MEDIA DRIVER
13059 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13060 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13061 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13062 S:      Supported
13063 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13064 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13065 F:      drivers/media/platform/mediatek/vcodec/
13066 F:      drivers/media/platform/mediatek/vpu/
13067
13068 MEDIATEK MMC/SD/SDIO DRIVER
13069 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13070 S:      Maintained
13071 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13072 F:      drivers/mmc/host/mtk-sd.c
13073
13074 MEDIATEK MT76 WIRELESS LAN DRIVER
13075 M:      Felix Fietkau <nbd@nbd.name>
13076 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13077 M:      Ryder Lee <ryder.lee@mediatek.com>
13078 R:      Shayne Chen <shayne.chen@mediatek.com>
13079 R:      Sean Wang <sean.wang@mediatek.com>
13080 L:      linux-wireless@vger.kernel.org
13081 S:      Maintained
13082 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13083 F:      drivers/net/wireless/mediatek/mt76/
13084
13085 MEDIATEK MT7601U WIRELESS LAN DRIVER
13086 M:      Jakub Kicinski <kuba@kernel.org>
13087 L:      linux-wireless@vger.kernel.org
13088 S:      Maintained
13089 F:      drivers/net/wireless/mediatek/mt7601u/
13090
13091 MEDIATEK MT7621 CLOCK DRIVER
13092 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13093 S:      Maintained
13094 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13095 F:      drivers/clk/ralink/clk-mt7621.c
13096
13097 MEDIATEK MT7621/28/88 I2C DRIVER
13098 M:      Stefan Roese <sr@denx.de>
13099 L:      linux-i2c@vger.kernel.org
13100 S:      Maintained
13101 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13102 F:      drivers/i2c/busses/i2c-mt7621.c
13103
13104 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13105 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13106 S:      Maintained
13107 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13108 F:      drivers/pci/controller/pcie-mt7621.c
13109
13110 MEDIATEK MT7621 PHY PCI DRIVER
13111 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13112 S:      Maintained
13113 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13114 F:      drivers/phy/ralink/phy-mt7621-pci.c
13115
13116 MEDIATEK NAND CONTROLLER DRIVER
13117 L:      linux-mtd@lists.infradead.org
13118 S:      Orphan
13119 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13120 F:      drivers/mtd/nand/raw/mtk_*
13121
13122 MEDIATEK PMIC LED DRIVER
13123 M:      Sean Wang <sean.wang@mediatek.com>
13124 S:      Maintained
13125 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13126 F:      drivers/leds/leds-mt6323.c
13127
13128 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13129 M:      Sean Wang <sean.wang@mediatek.com>
13130 S:      Maintained
13131 F:      drivers/char/hw_random/mtk-rng.c
13132
13133 MEDIATEK SMI DRIVER
13134 M:      Yong Wu <yong.wu@mediatek.com>
13135 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13136 S:      Supported
13137 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13138 F:      drivers/memory/mtk-smi.c
13139 F:      include/soc/mediatek/smi.h
13140
13141 MEDIATEK SWITCH DRIVER
13142 M:      Sean Wang <sean.wang@mediatek.com>
13143 M:      Landen Chao <Landen.Chao@mediatek.com>
13144 M:      DENG Qingfang <dqfext@gmail.com>
13145 L:      netdev@vger.kernel.org
13146 S:      Maintained
13147 F:      drivers/net/dsa/mt7530.*
13148 F:      net/dsa/tag_mtk.c
13149
13150 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13151 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13152 M:      Intel Corporation <linuxwwan@intel.com>
13153 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13154 R:      Liu Haijun <haijun.liu@mediatek.com>
13155 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13156 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13157 L:      netdev@vger.kernel.org
13158 S:      Supported
13159 F:      drivers/net/wwan/t7xx/
13160
13161 MEDIATEK USB3 DRD IP DRIVER
13162 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13163 L:      linux-usb@vger.kernel.org
13164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13165 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13166 S:      Maintained
13167 F:      Documentation/devicetree/bindings/usb/mediatek,*
13168 F:      drivers/usb/host/xhci-mtk*
13169 F:      drivers/usb/mtu3/
13170
13171 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13172 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13173 M:      Martin Donnelly <martin.donnelly@ge.com>
13174 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13175 S:      Maintained
13176 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13177 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13178
13179 MEGARAID SCSI/SAS DRIVERS
13180 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13181 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13182 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13183 L:      megaraidlinux.pdl@broadcom.com
13184 L:      linux-scsi@vger.kernel.org
13185 S:      Maintained
13186 W:      http://www.avagotech.com/support/
13187 F:      Documentation/scsi/megaraid.rst
13188 F:      drivers/scsi/megaraid.*
13189 F:      drivers/scsi/megaraid/
13190
13191 MELEXIS MLX90614 DRIVER
13192 M:      Crt Mori <cmo@melexis.com>
13193 L:      linux-iio@vger.kernel.org
13194 S:      Supported
13195 W:      http://www.melexis.com
13196 F:      drivers/iio/temperature/mlx90614.c
13197
13198 MELEXIS MLX90632 DRIVER
13199 M:      Crt Mori <cmo@melexis.com>
13200 L:      linux-iio@vger.kernel.org
13201 S:      Supported
13202 W:      http://www.melexis.com
13203 F:      drivers/iio/temperature/mlx90632.c
13204
13205 MELFAS MIP4 TOUCHSCREEN DRIVER
13206 M:      Sangwon Jee <jeesw@melfas.com>
13207 S:      Supported
13208 W:      http://www.melfas.com
13209 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13210 F:      drivers/input/touchscreen/melfas_mip4.c
13211
13212 MELLANOX BLUEFIELD I2C DRIVER
13213 M:      Khalil Blaiech <kblaiech@nvidia.com>
13214 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13215 L:      linux-i2c@vger.kernel.org
13216 S:      Supported
13217 F:      drivers/i2c/busses/i2c-mlxbf.c
13218
13219 MELLANOX ETHERNET DRIVER (mlx4_en)
13220 M:      Tariq Toukan <tariqt@nvidia.com>
13221 L:      netdev@vger.kernel.org
13222 S:      Supported
13223 W:      http://www.mellanox.com
13224 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13225 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13226
13227 MELLANOX ETHERNET DRIVER (mlx5e)
13228 M:      Saeed Mahameed <saeedm@nvidia.com>
13229 L:      netdev@vger.kernel.org
13230 S:      Supported
13231 W:      http://www.mellanox.com
13232 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13233 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13234
13235 MELLANOX ETHERNET INNOVA DRIVERS
13236 R:      Boris Pismenny <borisp@nvidia.com>
13237 L:      netdev@vger.kernel.org
13238 S:      Supported
13239 W:      http://www.mellanox.com
13240 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13241 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13242 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13243 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13244
13245 MELLANOX ETHERNET SWITCH DRIVERS
13246 M:      Ido Schimmel <idosch@nvidia.com>
13247 M:      Petr Machata <petrm@nvidia.com>
13248 L:      netdev@vger.kernel.org
13249 S:      Supported
13250 W:      http://www.mellanox.com
13251 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13252 F:      drivers/net/ethernet/mellanox/mlxsw/
13253 F:      tools/testing/selftests/drivers/net/mlxsw/
13254
13255 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13256 M:      mlxsw@nvidia.com
13257 L:      netdev@vger.kernel.org
13258 S:      Supported
13259 W:      http://www.mellanox.com
13260 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13261 F:      drivers/net/ethernet/mellanox/mlxfw/
13262
13263 MELLANOX HARDWARE PLATFORM SUPPORT
13264 M:      Hans de Goede <hdegoede@redhat.com>
13265 M:      Mark Gross <markgross@kernel.org>
13266 M:      Vadim Pasternak <vadimp@nvidia.com>
13267 L:      platform-driver-x86@vger.kernel.org
13268 S:      Supported
13269 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13270 F:      drivers/platform/mellanox/
13271 F:      include/linux/platform_data/mlxreg.h
13272
13273 MELLANOX MLX4 core VPI driver
13274 M:      Tariq Toukan <tariqt@nvidia.com>
13275 L:      netdev@vger.kernel.org
13276 L:      linux-rdma@vger.kernel.org
13277 S:      Supported
13278 W:      http://www.mellanox.com
13279 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13280 F:      drivers/net/ethernet/mellanox/mlx4/
13281 F:      include/linux/mlx4/
13282
13283 MELLANOX MLX4 IB driver
13284 M:      Yishai Hadas <yishaih@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/mlx4/
13290 F:      include/linux/mlx4/
13291 F:      include/uapi/rdma/mlx4-abi.h
13292
13293 MELLANOX MLX5 core VPI driver
13294 M:      Saeed Mahameed <saeedm@nvidia.com>
13295 M:      Leon Romanovsky <leonro@nvidia.com>
13296 L:      netdev@vger.kernel.org
13297 L:      linux-rdma@vger.kernel.org
13298 S:      Supported
13299 W:      http://www.mellanox.com
13300 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13301 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13302 F:      drivers/net/ethernet/mellanox/mlx5/core/
13303 F:      include/linux/mlx5/
13304
13305 MELLANOX MLX5 IB driver
13306 M:      Leon Romanovsky <leonro@nvidia.com>
13307 L:      linux-rdma@vger.kernel.org
13308 S:      Supported
13309 W:      http://www.mellanox.com
13310 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13311 F:      drivers/infiniband/hw/mlx5/
13312 F:      include/linux/mlx5/
13313 F:      include/uapi/rdma/mlx5-abi.h
13314
13315 MELLANOX MLXCPLD I2C AND MUX DRIVER
13316 M:      Vadim Pasternak <vadimp@nvidia.com>
13317 M:      Michael Shych <michaelsh@nvidia.com>
13318 L:      linux-i2c@vger.kernel.org
13319 S:      Supported
13320 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13321 F:      drivers/i2c/busses/i2c-mlxcpld.c
13322 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13323
13324 MELLANOX MLXCPLD LED DRIVER
13325 M:      Vadim Pasternak <vadimp@nvidia.com>
13326 L:      linux-leds@vger.kernel.org
13327 S:      Supported
13328 F:      Documentation/leds/leds-mlxcpld.rst
13329 F:      drivers/leds/leds-mlxcpld.c
13330 F:      drivers/leds/leds-mlxreg.c
13331
13332 MELLANOX PLATFORM DRIVER
13333 M:      Vadim Pasternak <vadimp@nvidia.com>
13334 L:      platform-driver-x86@vger.kernel.org
13335 S:      Supported
13336 F:      drivers/platform/x86/mlx-platform.c
13337
13338 MEMBARRIER SUPPORT
13339 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13340 M:      "Paul E. McKenney" <paulmck@kernel.org>
13341 L:      linux-kernel@vger.kernel.org
13342 S:      Supported
13343 F:      arch/powerpc/include/asm/membarrier.h
13344 F:      include/uapi/linux/membarrier.h
13345 F:      kernel/sched/membarrier.c
13346
13347 MEMBLOCK
13348 M:      Mike Rapoport <rppt@kernel.org>
13349 L:      linux-mm@kvack.org
13350 S:      Maintained
13351 F:      Documentation/core-api/boot-time-mm.rst
13352 F:      include/linux/memblock.h
13353 F:      mm/memblock.c
13354 F:      tools/testing/memblock/
13355
13356 MEMORY CONTROLLER DRIVERS
13357 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13358 L:      linux-kernel@vger.kernel.org
13359 S:      Maintained
13360 B:      mailto:krzysztof.kozlowski@linaro.org
13361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13362 F:      Documentation/devicetree/bindings/memory-controllers/
13363 F:      drivers/memory/
13364 F:      include/dt-bindings/memory/
13365 F:      include/memory/
13366
13367 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13368 M:      Dmitry Osipenko <digetx@gmail.com>
13369 L:      linux-pm@vger.kernel.org
13370 L:      linux-tegra@vger.kernel.org
13371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13372 S:      Maintained
13373 F:      drivers/devfreq/tegra30-devfreq.c
13374
13375 MEMORY MANAGEMENT
13376 M:      Andrew Morton <akpm@linux-foundation.org>
13377 L:      linux-mm@kvack.org
13378 S:      Maintained
13379 W:      http://www.linux-mm.org
13380 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13381 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13382 F:      include/linux/gfp.h
13383 F:      include/linux/gfp_types.h
13384 F:      include/linux/memory_hotplug.h
13385 F:      include/linux/mm.h
13386 F:      include/linux/mmzone.h
13387 F:      include/linux/pagewalk.h
13388 F:      mm/
13389 F:      tools/testing/selftests/vm/
13390
13391 VMALLOC
13392 M:      Andrew Morton <akpm@linux-foundation.org>
13393 R:      Uladzislau Rezki <urezki@gmail.com>
13394 R:      Christoph Hellwig <hch@infradead.org>
13395 L:      linux-mm@kvack.org
13396 S:      Maintained
13397 W:      http://www.linux-mm.org
13398 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13399 F:      include/linux/vmalloc.h
13400 F:      mm/vmalloc.c
13401
13402 MEMORY HOT(UN)PLUG
13403 M:      David Hildenbrand <david@redhat.com>
13404 M:      Oscar Salvador <osalvador@suse.de>
13405 L:      linux-mm@kvack.org
13406 S:      Maintained
13407 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13408 F:      Documentation/core-api/memory-hotplug.rst
13409 F:      drivers/base/memory.c
13410 F:      include/linux/memory_hotplug.h
13411 F:      mm/memory_hotplug.c
13412 F:      tools/testing/selftests/memory-hotplug/
13413
13414 MEMORY TECHNOLOGY DEVICES (MTD)
13415 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13416 M:      Richard Weinberger <richard@nod.at>
13417 M:      Vignesh Raghavendra <vigneshr@ti.com>
13418 L:      linux-mtd@lists.infradead.org
13419 S:      Maintained
13420 W:      http://www.linux-mtd.infradead.org/
13421 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13422 C:      irc://irc.oftc.net/mtd
13423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13425 F:      Documentation/devicetree/bindings/mtd/
13426 F:      drivers/mtd/
13427 F:      include/linux/mtd/
13428 F:      include/uapi/mtd/
13429
13430 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13431 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13432 L:      linux-iio@vger.kernel.org
13433 S:      Maintained
13434 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13435 F:      drivers/iio/accel/msa311.c
13436
13437 MEN A21 WATCHDOG DRIVER
13438 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13439 L:      linux-watchdog@vger.kernel.org
13440 S:      Maintained
13441 F:      drivers/watchdog/mena21_wdt.c
13442
13443 MEN CHAMELEON BUS (mcb)
13444 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13445 S:      Maintained
13446 F:      Documentation/driver-api/men-chameleon-bus.rst
13447 F:      drivers/mcb/
13448 F:      include/linux/mcb.h
13449
13450 MEN F21BMC (Board Management Controller)
13451 M:      Andreas Werner <andreas.werner@men.de>
13452 S:      Supported
13453 F:      Documentation/hwmon/menf21bmc.rst
13454 F:      drivers/hwmon/menf21bmc_hwmon.c
13455 F:      drivers/leds/leds-menf21bmc.c
13456 F:      drivers/mfd/menf21bmc.c
13457 F:      drivers/watchdog/menf21bmc_wdt.c
13458
13459 MEN Z069 WATCHDOG DRIVER
13460 M:      Johannes Thumshirn <jth@kernel.org>
13461 L:      linux-watchdog@vger.kernel.org
13462 S:      Maintained
13463 F:      drivers/watchdog/menz69_wdt.c
13464
13465 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13466 M:      Neil Armstrong <neil.armstrong@linaro.org>
13467 L:      linux-media@vger.kernel.org
13468 L:      linux-amlogic@lists.infradead.org
13469 S:      Supported
13470 W:      http://linux-meson.com/
13471 T:      git git://linuxtv.org/media_tree.git
13472 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13473 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13474 F:      drivers/media/cec/platform/meson/ao-cec.c
13475
13476 MESON GE2D DRIVER FOR AMLOGIC SOCS
13477 M:      Neil Armstrong <neil.armstrong@linaro.org>
13478 L:      linux-media@vger.kernel.org
13479 L:      linux-amlogic@lists.infradead.org
13480 S:      Supported
13481 T:      git git://linuxtv.org/media_tree.git
13482 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13483 F:      drivers/media/platform/amlogic/meson-ge2d/
13484
13485 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13486 M:      Liang Yang <liang.yang@amlogic.com>
13487 L:      linux-mtd@lists.infradead.org
13488 S:      Maintained
13489 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13490 F:      drivers/mtd/nand/raw/meson_*
13491
13492 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13493 M:      Neil Armstrong <neil.armstrong@linaro.org>
13494 L:      linux-media@vger.kernel.org
13495 L:      linux-amlogic@lists.infradead.org
13496 S:      Supported
13497 T:      git git://linuxtv.org/media_tree.git
13498 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13499 F:      drivers/staging/media/meson/vdec/
13500
13501 METHODE UDPU SUPPORT
13502 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13503 S:      Maintained
13504 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13505
13506 MHI BUS
13507 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13508 L:      mhi@lists.linux.dev
13509 L:      linux-arm-msm@vger.kernel.org
13510 S:      Maintained
13511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13512 F:      Documentation/ABI/stable/sysfs-bus-mhi
13513 F:      Documentation/mhi/
13514 F:      drivers/bus/mhi/
13515 F:      include/linux/mhi.h
13516
13517 MICROBLAZE ARCHITECTURE
13518 M:      Michal Simek <monstr@monstr.eu>
13519 S:      Supported
13520 W:      http://www.monstr.eu/fdt/
13521 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13522 F:      arch/microblaze/
13523
13524 MICROCHIP AT91 DMA DRIVERS
13525 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13526 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13528 L:      dmaengine@vger.kernel.org
13529 S:      Supported
13530 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13531 F:      drivers/dma/at_hdmac.c
13532 F:      drivers/dma/at_xdmac.c
13533 F:      include/dt-bindings/dma/at91.h
13534
13535 MICROCHIP AT91 SERIAL DRIVER
13536 M:      Richard Genoud <richard.genoud@gmail.com>
13537 S:      Maintained
13538 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13539 F:      drivers/tty/serial/atmel_serial.c
13540 F:      drivers/tty/serial/atmel_serial.h
13541
13542 MICROCHIP AT91 USART MFD DRIVER
13543 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13544 L:      linux-kernel@vger.kernel.org
13545 S:      Supported
13546 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13547 F:      drivers/mfd/at91-usart.c
13548 F:      include/dt-bindings/mfd/at91-usart.h
13549
13550 MICROCHIP AT91 USART SPI DRIVER
13551 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13552 L:      linux-spi@vger.kernel.org
13553 S:      Supported
13554 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13555 F:      drivers/spi/spi-at91-usart.c
13556
13557 MICROCHIP AUDIO ASOC DRIVERS
13558 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13559 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13560 S:      Supported
13561 F:      sound/soc/atmel
13562
13563 MICROCHIP CSI2DC DRIVER
13564 M:      Eugen Hristev <eugen.hristev@microchip.com>
13565 L:      linux-media@vger.kernel.org
13566 S:      Supported
13567 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13568 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13569
13570 MICROCHIP ECC DRIVER
13571 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13572 L:      linux-crypto@vger.kernel.org
13573 S:      Maintained
13574 F:      drivers/crypto/atmel-ecc.*
13575
13576 MICROCHIP EIC DRIVER
13577 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13579 S:      Supported
13580 F:      drivers/irqchip/irq-mchp-eic.c
13581
13582 MICROCHIP I2C DRIVER
13583 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13584 L:      linux-i2c@vger.kernel.org
13585 S:      Supported
13586 F:      drivers/i2c/busses/i2c-at91-*.c
13587 F:      drivers/i2c/busses/i2c-at91.h
13588
13589 MICROCHIP ISC DRIVER
13590 M:      Eugen Hristev <eugen.hristev@microchip.com>
13591 L:      linux-media@vger.kernel.org
13592 S:      Supported
13593 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13594 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13595 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13596 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13597 F:      drivers/media/platform/microchip/microchip-isc*
13598 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13599 F:      include/linux/atmel-isc-media.h
13600
13601 MICROCHIP ISI DRIVER
13602 M:      Eugen Hristev <eugen.hristev@microchip.com>
13603 L:      linux-media@vger.kernel.org
13604 S:      Supported
13605 F:      drivers/media/platform/atmel/atmel-isi.c
13606 F:      drivers/media/platform/atmel/atmel-isi.h
13607
13608 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13609 M:      Woojung Huh <woojung.huh@microchip.com>
13610 M:      UNGLinuxDriver@microchip.com
13611 L:      netdev@vger.kernel.org
13612 S:      Maintained
13613 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13614 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13615 F:      drivers/net/dsa/microchip/*
13616 F:      include/linux/dsa/ksz_common.h
13617 F:      include/linux/platform_data/microchip-ksz.h
13618 F:      net/dsa/tag_ksz.c
13619
13620 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13621 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13622 R:      UNGLinuxDriver@microchip.com
13623 L:      netdev@vger.kernel.org
13624 S:      Maintained
13625 F:      drivers/net/phy/microchip_t1.c
13626
13627 MICROCHIP LAN743X ETHERNET DRIVER
13628 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13629 M:      UNGLinuxDriver@microchip.com
13630 L:      netdev@vger.kernel.org
13631 S:      Maintained
13632 F:      drivers/net/ethernet/microchip/lan743x_*
13633
13634 MICROCHIP LAN966X ETHERNET DRIVER
13635 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13636 M:      UNGLinuxDriver@microchip.com
13637 L:      netdev@vger.kernel.org
13638 S:      Maintained
13639 F:      drivers/net/ethernet/microchip/lan966x/*
13640
13641 MICROCHIP LCDFB DRIVER
13642 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13643 L:      linux-fbdev@vger.kernel.org
13644 S:      Maintained
13645 F:      drivers/video/fbdev/atmel_lcdfb.c
13646 F:      include/video/atmel_lcdc.h
13647
13648 MICROCHIP MCP16502 PMIC DRIVER
13649 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13651 S:      Supported
13652 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13653 F:      drivers/regulator/mcp16502.c
13654
13655 MICROCHIP MCP3911 ADC DRIVER
13656 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13657 M:      Kent Gustavsson <kent@minoris.se>
13658 L:      linux-iio@vger.kernel.org
13659 S:      Maintained
13660 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13661 F:      drivers/iio/adc/mcp3911.c
13662
13663 MICROCHIP MMC/SD/SDIO MCI DRIVER
13664 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13665 S:      Maintained
13666 F:      drivers/mmc/host/atmel-mci.c
13667
13668 MICROCHIP NAND DRIVER
13669 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13670 L:      linux-mtd@lists.infradead.org
13671 S:      Supported
13672 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13673 F:      drivers/mtd/nand/raw/atmel/*
13674
13675 MICROCHIP PCI1XXXX GP DRIVER
13676 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13677 L:      linux-gpio@vger.kernel.org
13678 S:      Supported
13679 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13680 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13681 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13682
13683 MICROCHIP OTPC DRIVER
13684 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13686 S:      Supported
13687 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13688 F:      drivers/nvmem/microchip-otpc.c
13689 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13690
13691 MICROCHIP PCI1XXXX I2C DRIVER
13692 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13693 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13694 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13695 L:      linux-i2c@vger.kernel.org
13696 S:      Maintained
13697 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13698
13699 MICROCHIP PWM DRIVER
13700 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13702 L:      linux-pwm@vger.kernel.org
13703 S:      Supported
13704 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13705 F:      drivers/pwm/pwm-atmel.c
13706
13707 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13708 M:      Eugen Hristev <eugen.hristev@microchip.com>
13709 L:      linux-iio@vger.kernel.org
13710 S:      Supported
13711 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13712 F:      drivers/iio/adc/at91-sama5d2_adc.c
13713 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13714
13715 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13716 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13717 S:      Supported
13718 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13719
13720 MICROCHIP SPI DRIVER
13721 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13722 S:      Supported
13723 F:      drivers/spi/spi-atmel.*
13724
13725 MICROCHIP SSC DRIVER
13726 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13728 S:      Supported
13729 F:      drivers/misc/atmel-ssc.c
13730 F:      include/linux/atmel-ssc.h
13731
13732 MICROCHIP SOC DRIVERS
13733 M:      Conor Dooley <conor@kernel.org>
13734 S:      Supported
13735 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13736 F:      drivers/soc/microchip/
13737
13738 MICROCHIP USB251XB DRIVER
13739 M:      Richard Leitner <richard.leitner@skidata.com>
13740 L:      linux-usb@vger.kernel.org
13741 S:      Maintained
13742 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13743 F:      drivers/usb/misc/usb251xb.c
13744
13745 MICROCHIP USBA UDC DRIVER
13746 M:      Cristian Birsan <cristian.birsan@microchip.com>
13747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13748 S:      Supported
13749 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13750
13751 MICROCHIP WILC1000 WIFI DRIVER
13752 M:      Ajay Singh <ajay.kathat@microchip.com>
13753 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13754 L:      linux-wireless@vger.kernel.org
13755 S:      Supported
13756 F:      drivers/net/wireless/microchip/wilc1000/
13757
13758 MICROSEMI MIPS SOCS
13759 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13760 M:      UNGLinuxDriver@microchip.com
13761 L:      linux-mips@vger.kernel.org
13762 S:      Supported
13763 F:      Documentation/devicetree/bindings/mips/mscc.txt
13764 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13765 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13766 F:      arch/mips/boot/dts/mscc/
13767 F:      arch/mips/configs/generic/board-ocelot.config
13768 F:      arch/mips/generic/board-ocelot.c
13769
13770 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13771 M:      Don Brace <don.brace@microchip.com>
13772 L:      storagedev@microchip.com
13773 L:      linux-scsi@vger.kernel.org
13774 S:      Supported
13775 F:      Documentation/scsi/smartpqi.rst
13776 F:      drivers/scsi/smartpqi/Kconfig
13777 F:      drivers/scsi/smartpqi/Makefile
13778 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13779 F:      include/linux/cciss*.h
13780 F:      include/uapi/linux/cciss*.h
13781
13782 MICROSOFT MANA RDMA DRIVER
13783 M:      Long Li <longli@microsoft.com>
13784 M:      Ajay Sharma <sharmaajay@microsoft.com>
13785 L:      linux-rdma@vger.kernel.org
13786 S:      Supported
13787 F:      drivers/infiniband/hw/mana/
13788 F:      include/net/mana
13789 F:      include/uapi/rdma/mana-abi.h
13790
13791 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13792 M:      Maximilian Luz <luzmaximilian@gmail.com>
13793 L:      platform-driver-x86@vger.kernel.org
13794 S:      Maintained
13795 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13796
13797 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13798 M:      Maximilian Luz <luzmaximilian@gmail.com>
13799 L:      linux-pm@vger.kernel.org
13800 L:      platform-driver-x86@vger.kernel.org
13801 S:      Maintained
13802 F:      drivers/power/supply/surface_battery.c
13803 F:      drivers/power/supply/surface_charger.c
13804
13805 MICROSOFT SURFACE DTX DRIVER
13806 M:      Maximilian Luz <luzmaximilian@gmail.com>
13807 L:      platform-driver-x86@vger.kernel.org
13808 S:      Maintained
13809 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13810 F:      drivers/platform/surface/surface_dtx.c
13811 F:      include/uapi/linux/surface_aggregator/dtx.h
13812
13813 MICROSOFT SURFACE GPE LID SUPPORT 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_gpe.c
13818
13819 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13820 M:      Hans de Goede <hdegoede@redhat.com>
13821 M:      Mark Gross <markgross@kernel.org>
13822 M:      Maximilian Luz <luzmaximilian@gmail.com>
13823 L:      platform-driver-x86@vger.kernel.org
13824 S:      Maintained
13825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13826 F:      drivers/platform/surface/
13827
13828 MICROSOFT SURFACE HID TRANSPORT DRIVER
13829 M:      Maximilian Luz <luzmaximilian@gmail.com>
13830 L:      linux-input@vger.kernel.org
13831 L:      platform-driver-x86@vger.kernel.org
13832 S:      Maintained
13833 F:      drivers/hid/surface-hid/
13834
13835 MICROSOFT SURFACE HOT-PLUG DRIVER
13836 M:      Maximilian Luz <luzmaximilian@gmail.com>
13837 L:      platform-driver-x86@vger.kernel.org
13838 S:      Maintained
13839 F:      drivers/platform/surface/surface_hotplug.c
13840
13841 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13842 M:      Maximilian Luz <luzmaximilian@gmail.com>
13843 L:      platform-driver-x86@vger.kernel.org
13844 S:      Maintained
13845 F:      drivers/platform/surface/surface_platform_profile.c
13846
13847 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13848 M:      Chen Yu <yu.c.chen@intel.com>
13849 L:      platform-driver-x86@vger.kernel.org
13850 S:      Supported
13851 F:      drivers/platform/surface/surfacepro3_button.c
13852
13853 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13854 M:      Maximilian Luz <luzmaximilian@gmail.com>
13855 L:      platform-driver-x86@vger.kernel.org
13856 S:      Maintained
13857 W:      https://github.com/linux-surface/surface-aggregator-module
13858 C:      irc://irc.libera.chat/linux-surface
13859 F:      Documentation/driver-api/surface_aggregator/
13860 F:      drivers/platform/surface/aggregator/
13861 F:      drivers/platform/surface/surface_acpi_notify.c
13862 F:      drivers/platform/surface/surface_aggregator_cdev.c
13863 F:      drivers/platform/surface/surface_aggregator_registry.c
13864 F:      include/linux/surface_acpi_notify.h
13865 F:      include/linux/surface_aggregator/
13866 F:      include/uapi/linux/surface_aggregator/
13867
13868 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13869 M:      Maximilian Luz <luzmaximilian@gmail.com>
13870 L:      platform-driver-x86@vger.kernel.org
13871 S:      Maintained
13872 F:      drivers/platform/surface/surface_aggregator_hub.c
13873
13874 MICROTEK X6 SCANNER
13875 M:      Oliver Neukum <oliver@neukum.org>
13876 S:      Maintained
13877 F:      drivers/usb/image/microtek.*
13878
13879 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13880 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13881 M:      Luka Perkov <luka.perkov@sartura.hr>
13882 S:      Maintained
13883 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13884 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13885 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13886 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13887 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13888 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13889
13890 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13891 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13892 L:      linux-media@vger.kernel.org
13893 S:      Maintained
13894 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13895 F:      Documentation/driver-api/media/drivers/ccs/
13896 F:      Documentation/userspace-api/media/drivers/ccs.rst
13897 F:      drivers/media/i2c/ccs-pll.c
13898 F:      drivers/media/i2c/ccs-pll.h
13899 F:      drivers/media/i2c/ccs/
13900 F:      include/uapi/linux/ccs.h
13901 F:      include/uapi/linux/smiapp.h
13902
13903 MIPS
13904 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13905 L:      linux-mips@vger.kernel.org
13906 S:      Maintained
13907 W:      http://www.linux-mips.org/
13908 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13910 F:      Documentation/devicetree/bindings/mips/
13911 F:      Documentation/mips/
13912 F:      arch/mips/
13913 F:      drivers/platform/mips/
13914 F:      include/dt-bindings/mips/
13915
13916 MIPS BOSTON DEVELOPMENT BOARD
13917 M:      Paul Burton <paulburton@kernel.org>
13918 L:      linux-mips@vger.kernel.org
13919 S:      Maintained
13920 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13921 F:      arch/mips/boot/dts/img/boston.dts
13922 F:      arch/mips/configs/generic/board-boston.config
13923 F:      drivers/clk/imgtec/clk-boston.c
13924 F:      include/dt-bindings/clock/boston-clock.h
13925
13926 MIPS CORE DRIVERS
13927 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13928 M:      Serge Semin <fancer.lancer@gmail.com>
13929 L:      linux-mips@vger.kernel.org
13930 S:      Supported
13931 F:      drivers/bus/mips_cdmm.c
13932 F:      drivers/clocksource/mips-gic-timer.c
13933 F:      drivers/cpuidle/cpuidle-cps.c
13934 F:      drivers/irqchip/irq-mips-cpu.c
13935 F:      drivers/irqchip/irq-mips-gic.c
13936
13937 MIPS GENERIC PLATFORM
13938 M:      Paul Burton <paulburton@kernel.org>
13939 L:      linux-mips@vger.kernel.org
13940 S:      Supported
13941 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13942 F:      arch/mips/generic/
13943 F:      arch/mips/tools/generic-board-config.sh
13944
13945 MIPS RINT INSTRUCTION EMULATION
13946 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13947 L:      linux-mips@vger.kernel.org
13948 S:      Supported
13949 F:      arch/mips/math-emu/dp_rint.c
13950 F:      arch/mips/math-emu/sp_rint.c
13951
13952 MIPS/LOONGSON1 ARCHITECTURE
13953 M:      Keguang Zhang <keguang.zhang@gmail.com>
13954 L:      linux-mips@vger.kernel.org
13955 S:      Maintained
13956 F:      arch/mips/include/asm/mach-loongson32/
13957 F:      arch/mips/loongson32/
13958 F:      drivers/*/*/*loongson1*
13959 F:      drivers/*/*loongson1*
13960
13961 MIPS/LOONGSON2EF ARCHITECTURE
13962 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13963 L:      linux-mips@vger.kernel.org
13964 S:      Maintained
13965 F:      arch/mips/include/asm/mach-loongson2ef/
13966 F:      arch/mips/loongson2ef/
13967 F:      drivers/cpufreq/loongson2_cpufreq.c
13968
13969 MIPS/LOONGSON64 ARCHITECTURE
13970 M:      Huacai Chen <chenhuacai@kernel.org>
13971 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13972 L:      linux-mips@vger.kernel.org
13973 S:      Maintained
13974 F:      arch/mips/include/asm/mach-loongson64/
13975 F:      arch/mips/loongson64/
13976 F:      drivers/irqchip/irq-loongson*
13977 F:      drivers/platform/mips/cpu_hwmon.c
13978
13979 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13980 M:      Hans Verkuil <hverkuil@xs4all.nl>
13981 L:      linux-media@vger.kernel.org
13982 S:      Odd Fixes
13983 W:      https://linuxtv.org
13984 T:      git git://linuxtv.org/media_tree.git
13985 F:      drivers/media/radio/radio-miropcm20*
13986
13987 MMP SUPPORT
13988 R:      Lubomir Rintel <lkundrak@v3.sk>
13989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13990 S:      Odd Fixes
13991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13992 F:      arch/arm/boot/dts/mmp*
13993 F:      arch/arm/mach-mmp/
13994 F:      include/linux/soc/mmp/
13995
13996 MMP USB PHY DRIVERS
13997 R:      Lubomir Rintel <lkundrak@v3.sk>
13998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13999 S:      Maintained
14000 F:      drivers/phy/marvell/phy-mmp3-usb.c
14001 F:      drivers/phy/marvell/phy-pxa-usb.c
14002
14003 MMU GATHER AND TLB INVALIDATION
14004 M:      Will Deacon <will@kernel.org>
14005 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14006 M:      Andrew Morton <akpm@linux-foundation.org>
14007 M:      Nick Piggin <npiggin@gmail.com>
14008 M:      Peter Zijlstra <peterz@infradead.org>
14009 L:      linux-arch@vger.kernel.org
14010 L:      linux-mm@kvack.org
14011 S:      Maintained
14012 F:      arch/*/include/asm/tlb.h
14013 F:      include/asm-generic/tlb.h
14014 F:      mm/mmu_gather.c
14015
14016 MN88472 MEDIA DRIVER
14017 M:      Antti Palosaari <crope@iki.fi>
14018 L:      linux-media@vger.kernel.org
14019 S:      Maintained
14020 W:      https://linuxtv.org
14021 W:      http://palosaari.fi/linux/
14022 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14023 F:      drivers/media/dvb-frontends/mn88472*
14024
14025 MN88473 MEDIA DRIVER
14026 M:      Antti Palosaari <crope@iki.fi>
14027 L:      linux-media@vger.kernel.org
14028 S:      Maintained
14029 W:      https://linuxtv.org
14030 W:      http://palosaari.fi/linux/
14031 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14032 F:      drivers/media/dvb-frontends/mn88473*
14033
14034 MODULE SUPPORT
14035 M:      Luis Chamberlain <mcgrof@kernel.org>
14036 L:      linux-modules@vger.kernel.org
14037 L:      linux-kernel@vger.kernel.org
14038 S:      Maintained
14039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14040 F:      include/linux/module.h
14041 F:      kernel/module/
14042 F:      scripts/module*
14043
14044 MONOLITHIC POWER SYSTEM PMIC DRIVER
14045 M:      Saravanan Sekar <sravanhome@gmail.com>
14046 S:      Maintained
14047 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14048 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14049 F:      drivers/iio/adc/mp2629_adc.c
14050 F:      drivers/mfd/mp2629.c
14051 F:      drivers/power/supply/mp2629_charger.c
14052 F:      drivers/regulator/mp5416.c
14053 F:      drivers/regulator/mpq7920.c
14054 F:      drivers/regulator/mpq7920.h
14055 F:      include/linux/mfd/mp2629.h
14056
14057 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
14058 S:      Orphan
14059 W:      http://popies.net/meye/
14060 F:      Documentation/userspace-api/media/drivers/meye*
14061 F:      drivers/staging/media/deprecated/meye/
14062 F:      include/uapi/linux/meye.h
14063
14064 MOTORCOMM PHY DRIVER
14065 M:      Peter Geis <pgwipeout@gmail.com>
14066 M:      Frank <Frank.Sae@motor-comm.com>
14067 L:      netdev@vger.kernel.org
14068 S:      Maintained
14069 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14070 F:      drivers/net/phy/motorcomm.c
14071
14072 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14073 M:      Jiri Slaby <jirislaby@kernel.org>
14074 S:      Maintained
14075 F:      Documentation/driver-api/tty/moxa-smartio.rst
14076 F:      drivers/tty/mxser.*
14077
14078 MR800 AVERMEDIA USB FM RADIO DRIVER
14079 M:      Alexey Klimov <klimov.linux@gmail.com>
14080 L:      linux-media@vger.kernel.org
14081 S:      Maintained
14082 T:      git git://linuxtv.org/media_tree.git
14083 F:      drivers/media/radio/radio-mr800.c
14084
14085 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14086 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14087 L:      linux-wpan@vger.kernel.org
14088 S:      Odd Fixes
14089 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14090 F:      drivers/net/ieee802154/mrf24j40.c
14091
14092 MSI LAPTOP SUPPORT
14093 M:      "Lee, Chun-Yi" <jlee@suse.com>
14094 L:      platform-driver-x86@vger.kernel.org
14095 S:      Maintained
14096 F:      drivers/platform/x86/msi-laptop.c
14097
14098 MSI WMI SUPPORT
14099 L:      platform-driver-x86@vger.kernel.org
14100 S:      Orphan
14101 F:      drivers/platform/x86/msi-wmi.c
14102
14103 MSI001 MEDIA DRIVER
14104 M:      Antti Palosaari <crope@iki.fi>
14105 L:      linux-media@vger.kernel.org
14106 S:      Maintained
14107 W:      https://linuxtv.org
14108 W:      http://palosaari.fi/linux/
14109 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14110 T:      git git://linuxtv.org/anttip/media_tree.git
14111 F:      drivers/media/tuners/msi001*
14112
14113 MSI2500 MEDIA DRIVER
14114 M:      Antti Palosaari <crope@iki.fi>
14115 L:      linux-media@vger.kernel.org
14116 S:      Maintained
14117 W:      https://linuxtv.org
14118 W:      http://palosaari.fi/linux/
14119 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14120 T:      git git://linuxtv.org/anttip/media_tree.git
14121 F:      drivers/media/usb/msi2500/
14122
14123 MSTAR INTERRUPT CONTROLLER DRIVER
14124 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14125 M:      Daniel Palmer <daniel@thingy.jp>
14126 S:      Maintained
14127 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14128 F:      drivers/irqchip/irq-mst-intc.c
14129
14130 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14131 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14132 L:      linux-mtd@lists.infradead.org
14133 S:      Maintained
14134 F:      drivers/mtd/devices/docg3*
14135
14136 MT9M032 APTINA SENSOR DRIVER
14137 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14138 L:      linux-media@vger.kernel.org
14139 S:      Maintained
14140 T:      git git://linuxtv.org/media_tree.git
14141 F:      drivers/media/i2c/mt9m032.c
14142 F:      include/media/i2c/mt9m032.h
14143
14144 MT9P031 APTINA CAMERA SENSOR
14145 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14146 L:      linux-media@vger.kernel.org
14147 S:      Maintained
14148 T:      git git://linuxtv.org/media_tree.git
14149 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14150 F:      drivers/media/i2c/mt9p031.c
14151 F:      include/media/i2c/mt9p031.h
14152
14153 MT9T001 APTINA CAMERA SENSOR
14154 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14155 L:      linux-media@vger.kernel.org
14156 S:      Maintained
14157 T:      git git://linuxtv.org/media_tree.git
14158 F:      drivers/media/i2c/mt9t001.c
14159 F:      include/media/i2c/mt9t001.h
14160
14161 MT9T112 APTINA CAMERA SENSOR
14162 M:      Jacopo Mondi <jacopo@jmondi.org>
14163 L:      linux-media@vger.kernel.org
14164 S:      Odd Fixes
14165 T:      git git://linuxtv.org/media_tree.git
14166 F:      drivers/media/i2c/mt9t112.c
14167 F:      include/media/i2c/mt9t112.h
14168
14169 MT9V032 APTINA CAMERA SENSOR
14170 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14171 L:      linux-media@vger.kernel.org
14172 S:      Maintained
14173 T:      git git://linuxtv.org/media_tree.git
14174 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14175 F:      drivers/media/i2c/mt9v032.c
14176 F:      include/media/i2c/mt9v032.h
14177
14178 MT9V111 APTINA CAMERA SENSOR
14179 M:      Jacopo Mondi <jacopo@jmondi.org>
14180 L:      linux-media@vger.kernel.org
14181 S:      Maintained
14182 T:      git git://linuxtv.org/media_tree.git
14183 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14184 F:      drivers/media/i2c/mt9v111.c
14185
14186 MULTIFUNCTION DEVICES (MFD)
14187 M:      Lee Jones <lee@kernel.org>
14188 S:      Supported
14189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14190 F:      Documentation/devicetree/bindings/mfd/
14191 F:      drivers/mfd/
14192 F:      include/dt-bindings/mfd/
14193 F:      include/linux/mfd/
14194
14195 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14196 S:      Orphan
14197 F:      drivers/mmc/host/mmc_spi.c
14198 F:      include/linux/spi/mmc_spi.h
14199
14200 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14201 M:      Ulf Hansson <ulf.hansson@linaro.org>
14202 L:      linux-mmc@vger.kernel.org
14203 S:      Maintained
14204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14205 F:      Documentation/devicetree/bindings/mmc/
14206 F:      drivers/mmc/
14207 F:      include/linux/mmc/
14208 F:      include/uapi/linux/mmc/
14209
14210 MULTIPLEXER SUBSYSTEM
14211 M:      Peter Rosin <peda@axentia.se>
14212 S:      Maintained
14213 F:      Documentation/ABI/testing/sysfs-class-mux*
14214 F:      Documentation/devicetree/bindings/mux/
14215 F:      drivers/mux/
14216 F:      include/dt-bindings/mux/
14217 F:      include/linux/mux/
14218
14219 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14220 M:      Bin Liu <b-liu@ti.com>
14221 L:      linux-usb@vger.kernel.org
14222 S:      Maintained
14223 F:      drivers/usb/musb/
14224
14225 MXL301RF MEDIA DRIVER
14226 M:      Akihiro Tsukada <tskd08@gmail.com>
14227 L:      linux-media@vger.kernel.org
14228 S:      Odd Fixes
14229 F:      drivers/media/tuners/mxl301rf*
14230
14231 MXL5007T MEDIA DRIVER
14232 M:      Michael Krufky <mkrufky@linuxtv.org>
14233 L:      linux-media@vger.kernel.org
14234 S:      Maintained
14235 W:      https://linuxtv.org
14236 W:      http://github.com/mkrufky
14237 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14238 T:      git git://linuxtv.org/mkrufky/tuners.git
14239 F:      drivers/media/tuners/mxl5007t.*
14240
14241 MXSFB DRM DRIVER
14242 M:      Marek Vasut <marex@denx.de>
14243 M:      Stefan Agner <stefan@agner.ch>
14244 L:      dri-devel@lists.freedesktop.org
14245 S:      Supported
14246 T:      git git://anongit.freedesktop.org/drm/drm-misc
14247 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14248 F:      drivers/gpu/drm/mxsfb/
14249
14250 MYLEX DAC960 PCI RAID Controller
14251 M:      Hannes Reinecke <hare@kernel.org>
14252 L:      linux-scsi@vger.kernel.org
14253 S:      Supported
14254 F:      drivers/scsi/myrb.*
14255 F:      drivers/scsi/myrs.*
14256
14257 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14258 M:      Chris Lee <christopher.lee@cspi.com>
14259 L:      netdev@vger.kernel.org
14260 S:      Supported
14261 W:      https://www.cspi.com/ethernet-products/support/downloads/
14262 F:      drivers/net/ethernet/myricom/myri10ge/
14263
14264 NAND FLASH SUBSYSTEM
14265 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14266 R:      Richard Weinberger <richard@nod.at>
14267 L:      linux-mtd@lists.infradead.org
14268 S:      Maintained
14269 W:      http://www.linux-mtd.infradead.org/
14270 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14271 C:      irc://irc.oftc.net/mtd
14272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14273 F:      drivers/mtd/nand/
14274 F:      include/linux/mtd/*nand*.h
14275
14276 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14277 M:      Daniel Mack <zonque@gmail.com>
14278 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14279 S:      Maintained
14280 W:      http://www.native-instruments.com
14281 F:      sound/usb/caiaq/
14282
14283 NATSEMI ETHERNET DRIVER (DP8381x)
14284 S:      Orphan
14285 F:      drivers/net/ethernet/natsemi/natsemi.c
14286
14287 NCR 5380 SCSI DRIVERS
14288 M:      Finn Thain <fthain@linux-m68k.org>
14289 M:      Michael Schmitz <schmitzmic@gmail.com>
14290 L:      linux-scsi@vger.kernel.org
14291 S:      Maintained
14292 F:      Documentation/scsi/g_NCR5380.rst
14293 F:      drivers/scsi/NCR5380.*
14294 F:      drivers/scsi/arm/cumana_1.c
14295 F:      drivers/scsi/arm/oak.c
14296 F:      drivers/scsi/atari_scsi.*
14297 F:      drivers/scsi/dmx3191d.c
14298 F:      drivers/scsi/g_NCR5380.*
14299 F:      drivers/scsi/mac_scsi.*
14300 F:      drivers/scsi/sun3_scsi.*
14301 F:      drivers/scsi/sun3_scsi_vme.c
14302
14303 NCSI LIBRARY
14304 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14305 S:      Maintained
14306 F:      net/ncsi/
14307
14308 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14309 M:      Guenter Roeck <linux@roeck-us.net>
14310 L:      linux-hwmon@vger.kernel.org
14311 S:      Maintained
14312 F:      Documentation/hwmon/nct6775.rst
14313 F:      drivers/hwmon/nct6775-core.c
14314 F:      drivers/hwmon/nct6775-platform.c
14315 F:      drivers/hwmon/nct6775.h
14316
14317 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14318 M:      Zev Weiss <zev@bewilderbeest.net>
14319 L:      linux-hwmon@vger.kernel.org
14320 S:      Maintained
14321 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14322 F:      drivers/hwmon/nct6775-i2c.c
14323
14324 NETDEVSIM
14325 M:      Jakub Kicinski <kuba@kernel.org>
14326 S:      Maintained
14327 F:      drivers/net/netdevsim/*
14328
14329 NETEM NETWORK EMULATOR
14330 M:      Stephen Hemminger <stephen@networkplumber.org>
14331 L:      netdev@vger.kernel.org
14332 S:      Maintained
14333 F:      net/sched/sch_netem.c
14334
14335 NETERION 10GbE DRIVERS (s2io)
14336 M:      Jon Mason <jdmason@kudzu.us>
14337 L:      netdev@vger.kernel.org
14338 S:      Supported
14339 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14340 F:      drivers/net/ethernet/neterion/
14341
14342 NETFILTER
14343 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14344 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14345 M:      Florian Westphal <fw@strlen.de>
14346 L:      netfilter-devel@vger.kernel.org
14347 L:      coreteam@netfilter.org
14348 S:      Maintained
14349 W:      http://www.netfilter.org/
14350 W:      http://www.iptables.org/
14351 W:      http://www.nftables.org/
14352 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14353 C:      irc://irc.libera.chat/netfilter
14354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14356 F:      include/linux/netfilter*
14357 F:      include/linux/netfilter/
14358 F:      include/net/netfilter/
14359 F:      include/uapi/linux/netfilter*
14360 F:      include/uapi/linux/netfilter/
14361 F:      net/*/netfilter.c
14362 F:      net/*/netfilter/
14363 F:      net/bridge/br_netfilter*.c
14364 F:      net/netfilter/
14365
14366 NETROM NETWORK LAYER
14367 M:      Ralf Baechle <ralf@linux-mips.org>
14368 L:      linux-hams@vger.kernel.org
14369 S:      Maintained
14370 W:      http://www.linux-ax25.org/
14371 F:      include/net/netrom.h
14372 F:      include/uapi/linux/netrom.h
14373 F:      net/netrom/
14374
14375 NETRONIX EMBEDDED CONTROLLER
14376 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14377 S:      Maintained
14378 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14379 F:      drivers/mfd/ntxec.c
14380 F:      drivers/pwm/pwm-ntxec.c
14381 F:      drivers/rtc/rtc-ntxec.c
14382 F:      include/linux/mfd/ntxec.h
14383
14384 NETRONOME ETHERNET DRIVERS
14385 M:      Simon Horman <simon.horman@corigine.com>
14386 R:      Jakub Kicinski <kuba@kernel.org>
14387 L:      oss-drivers@corigine.com
14388 S:      Maintained
14389 F:      drivers/net/ethernet/netronome/
14390
14391 NETWORK BLOCK DEVICE (NBD)
14392 M:      Josef Bacik <josef@toxicpanda.com>
14393 L:      linux-block@vger.kernel.org
14394 L:      nbd@other.debian.org
14395 S:      Maintained
14396 F:      Documentation/admin-guide/blockdev/nbd.rst
14397 F:      drivers/block/nbd.c
14398 F:      include/trace/events/nbd.h
14399 F:      include/uapi/linux/nbd.h
14400
14401 NETWORK DROP MONITOR
14402 M:      Neil Horman <nhorman@tuxdriver.com>
14403 L:      netdev@vger.kernel.org
14404 S:      Maintained
14405 W:      https://fedorahosted.org/dropwatch/
14406 F:      include/uapi/linux/net_dropmon.h
14407 F:      net/core/drop_monitor.c
14408
14409 NETWORKING DRIVERS
14410 M:      "David S. Miller" <davem@davemloft.net>
14411 M:      Eric Dumazet <edumazet@google.com>
14412 M:      Jakub Kicinski <kuba@kernel.org>
14413 M:      Paolo Abeni <pabeni@redhat.com>
14414 L:      netdev@vger.kernel.org
14415 S:      Maintained
14416 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14419 F:      Documentation/devicetree/bindings/net/
14420 F:      drivers/connector/
14421 F:      drivers/net/
14422 F:      include/dt-bindings/net/
14423 F:      include/linux/etherdevice.h
14424 F:      include/linux/fcdevice.h
14425 F:      include/linux/fddidevice.h
14426 F:      include/linux/hippidevice.h
14427 F:      include/linux/if_*
14428 F:      include/linux/inetdevice.h
14429 F:      include/linux/netdevice.h
14430 F:      include/uapi/linux/if_*
14431 F:      include/uapi/linux/netdevice.h
14432
14433 NETWORKING DRIVERS (WIRELESS)
14434 M:      Kalle Valo <kvalo@kernel.org>
14435 L:      linux-wireless@vger.kernel.org
14436 S:      Maintained
14437 W:      https://wireless.wiki.kernel.org/
14438 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14441 F:      Documentation/devicetree/bindings/net/wireless/
14442 F:      drivers/net/wireless/
14443
14444 NETWORKING [DSA]
14445 M:      Andrew Lunn <andrew@lunn.ch>
14446 M:      Florian Fainelli <f.fainelli@gmail.com>
14447 M:      Vladimir Oltean <olteanv@gmail.com>
14448 S:      Maintained
14449 F:      Documentation/devicetree/bindings/net/dsa/
14450 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14451 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14452 F:      drivers/net/dsa/
14453 F:      include/linux/dsa/
14454 F:      include/linux/platform_data/dsa.h
14455 F:      include/net/dsa.h
14456 F:      net/dsa/
14457 F:      tools/testing/selftests/drivers/net/dsa/
14458
14459 NETWORKING [GENERAL]
14460 M:      "David S. Miller" <davem@davemloft.net>
14461 M:      Eric Dumazet <edumazet@google.com>
14462 M:      Jakub Kicinski <kuba@kernel.org>
14463 M:      Paolo Abeni <pabeni@redhat.com>
14464 L:      netdev@vger.kernel.org
14465 S:      Maintained
14466 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14467 B:      mailto:netdev@vger.kernel.org
14468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14470 F:      Documentation/core-api/netlink.rst
14471 F:      Documentation/networking/
14472 F:      Documentation/process/maintainer-netdev.rst
14473 F:      Documentation/userspace-api/netlink/
14474 F:      include/linux/in.h
14475 F:      include/linux/net.h
14476 F:      include/linux/netdevice.h
14477 F:      include/net/
14478 F:      include/uapi/linux/in.h
14479 F:      include/uapi/linux/net.h
14480 F:      include/uapi/linux/net_namespace.h
14481 F:      include/uapi/linux/netdevice.h
14482 F:      lib/net_utils.c
14483 F:      lib/random32.c
14484 F:      net/
14485 F:      tools/net/
14486 F:      tools/testing/selftests/net/
14487
14488 NETWORKING [IPSEC]
14489 M:      Steffen Klassert <steffen.klassert@secunet.com>
14490 M:      Herbert Xu <herbert@gondor.apana.org.au>
14491 M:      "David S. Miller" <davem@davemloft.net>
14492 L:      netdev@vger.kernel.org
14493 S:      Maintained
14494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14496 F:      include/net/xfrm.h
14497 F:      include/uapi/linux/xfrm.h
14498 F:      net/ipv4/ah4.c
14499 F:      net/ipv4/esp4*
14500 F:      net/ipv4/ip_vti.c
14501 F:      net/ipv4/ipcomp.c
14502 F:      net/ipv4/xfrm*
14503 F:      net/ipv6/ah6.c
14504 F:      net/ipv6/esp6*
14505 F:      net/ipv6/ip6_vti.c
14506 F:      net/ipv6/ipcomp6.c
14507 F:      net/ipv6/xfrm*
14508 F:      net/key/
14509 F:      net/xfrm/
14510 F:      tools/testing/selftests/net/ipsec.c
14511
14512 NETWORKING [IPv4/IPv6]
14513 M:      "David S. Miller" <davem@davemloft.net>
14514 M:      David Ahern <dsahern@kernel.org>
14515 L:      netdev@vger.kernel.org
14516 S:      Maintained
14517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14518 F:      arch/x86/net/*
14519 F:      include/linux/ip.h
14520 F:      include/linux/ipv6*
14521 F:      include/net/fib*
14522 F:      include/net/ip*
14523 F:      include/net/route.h
14524 F:      net/ipv4/
14525 F:      net/ipv6/
14526
14527 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14528 M:      Paul Moore <paul@paul-moore.com>
14529 L:      netdev@vger.kernel.org
14530 L:      linux-security-module@vger.kernel.org
14531 S:      Maintained
14532 W:      https://github.com/netlabel
14533 F:      Documentation/netlabel/
14534 F:      include/net/calipso.h
14535 F:      include/net/cipso_ipv4.h
14536 F:      include/net/netlabel.h
14537 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14538 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14539 F:      net/ipv4/cipso_ipv4.c
14540 F:      net/ipv6/calipso.c
14541 F:      net/netfilter/xt_CONNSECMARK.c
14542 F:      net/netfilter/xt_SECMARK.c
14543 F:      net/netlabel/
14544
14545 NETWORKING [MPTCP]
14546 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14547 L:      netdev@vger.kernel.org
14548 L:      mptcp@lists.linux.dev
14549 S:      Maintained
14550 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14551 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14552 F:      Documentation/networking/mptcp-sysctl.rst
14553 F:      include/net/mptcp.h
14554 F:      include/trace/events/mptcp.h
14555 F:      include/uapi/linux/mptcp.h
14556 F:      net/mptcp/
14557 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14558 F:      tools/testing/selftests/net/mptcp/
14559
14560 NETWORKING [TCP]
14561 M:      Eric Dumazet <edumazet@google.com>
14562 L:      netdev@vger.kernel.org
14563 S:      Maintained
14564 F:      include/linux/tcp.h
14565 F:      include/net/tcp.h
14566 F:      include/trace/events/tcp.h
14567 F:      include/uapi/linux/tcp.h
14568 F:      net/ipv4/syncookies.c
14569 F:      net/ipv4/tcp*.c
14570 F:      net/ipv6/syncookies.c
14571 F:      net/ipv6/tcp*.c
14572
14573 NETWORKING [TLS]
14574 M:      Boris Pismenny <borisp@nvidia.com>
14575 M:      John Fastabend <john.fastabend@gmail.com>
14576 M:      Jakub Kicinski <kuba@kernel.org>
14577 L:      netdev@vger.kernel.org
14578 S:      Maintained
14579 F:      include/net/tls.h
14580 F:      include/uapi/linux/tls.h
14581 F:      net/tls/*
14582
14583 NETXEN (1/10) GbE SUPPORT
14584 M:      Manish Chopra <manishc@marvell.com>
14585 M:      Rahul Verma <rahulv@marvell.com>
14586 M:      GR-Linux-NIC-Dev@marvell.com
14587 L:      netdev@vger.kernel.org
14588 S:      Supported
14589 F:      drivers/net/ethernet/qlogic/netxen/
14590
14591 NET_FAILOVER MODULE
14592 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14593 L:      netdev@vger.kernel.org
14594 S:      Supported
14595 F:      Documentation/networking/net_failover.rst
14596 F:      drivers/net/net_failover.c
14597 F:      include/net/net_failover.h
14598
14599 NEXTHOP
14600 M:      David Ahern <dsahern@kernel.org>
14601 L:      netdev@vger.kernel.org
14602 S:      Maintained
14603 F:      include/net/netns/nexthop.h
14604 F:      include/net/nexthop.h
14605 F:      include/uapi/linux/nexthop.h
14606 F:      net/ipv4/nexthop.c
14607
14608 NFC SUBSYSTEM
14609 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14610 L:      linux-nfc@lists.01.org (subscribers-only)
14611 L:      netdev@vger.kernel.org
14612 S:      Maintained
14613 B:      mailto:linux-nfc@lists.01.org
14614 F:      Documentation/devicetree/bindings/net/nfc/
14615 F:      drivers/nfc/
14616 F:      include/linux/platform_data/nfcmrvl.h
14617 F:      include/net/nfc/
14618 F:      include/uapi/linux/nfc.h
14619 F:      net/nfc/
14620
14621 NFC VIRTUAL NCI DEVICE DRIVER
14622 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14623 L:      netdev@vger.kernel.org
14624 L:      linux-nfc@lists.01.org (subscribers-only)
14625 S:      Supported
14626 F:      drivers/nfc/virtual_ncidev.c
14627 F:      tools/testing/selftests/nci/
14628
14629 NFS, SUNRPC, AND LOCKD CLIENTS
14630 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14631 M:      Anna Schumaker <anna@kernel.org>
14632 L:      linux-nfs@vger.kernel.org
14633 S:      Maintained
14634 W:      http://client.linux-nfs.org
14635 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14636 F:      fs/lockd/
14637 F:      fs/nfs/
14638 F:      fs/nfs_common/
14639 F:      include/linux/lockd/
14640 F:      include/linux/nfs*
14641 F:      include/linux/sunrpc/
14642 F:      include/uapi/linux/nfs*
14643 F:      include/uapi/linux/sunrpc/
14644 F:      net/sunrpc/
14645 F:      Documentation/filesystems/nfs/
14646
14647 NILFS2 FILESYSTEM
14648 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14649 L:      linux-nilfs@vger.kernel.org
14650 S:      Supported
14651 W:      https://nilfs.sourceforge.io/
14652 W:      https://nilfs.osdn.jp/
14653 T:      git https://github.com/konis/nilfs2.git
14654 F:      Documentation/filesystems/nilfs2.rst
14655 F:      fs/nilfs2/
14656 F:      include/trace/events/nilfs2.h
14657 F:      include/uapi/linux/nilfs2_api.h
14658 F:      include/uapi/linux/nilfs2_ondisk.h
14659
14660 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14661 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14662 S:      Maintained
14663 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14664 F:      Documentation/scsi/NinjaSCSI.rst
14665 F:      drivers/scsi/pcmcia/nsp_*
14666
14667 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14668 M:      GOTO Masanori <gotom@debian.or.jp>
14669 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14670 S:      Maintained
14671 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14672 F:      Documentation/scsi/NinjaSCSI.rst
14673 F:      drivers/scsi/nsp32*
14674
14675 NINTENDO HID DRIVER
14676 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14677 L:      linux-input@vger.kernel.org
14678 S:      Maintained
14679 F:      drivers/hid/hid-nintendo*
14680
14681 NIOS2 ARCHITECTURE
14682 M:      Dinh Nguyen <dinguyen@kernel.org>
14683 S:      Maintained
14684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14685 F:      arch/nios2/
14686
14687 NITRO ENCLAVES (NE)
14688 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14689 L:      linux-kernel@vger.kernel.org
14690 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14691 S:      Supported
14692 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14693 F:      Documentation/virt/ne_overview.rst
14694 F:      drivers/virt/nitro_enclaves/
14695 F:      include/linux/nitro_enclaves.h
14696 F:      include/uapi/linux/nitro_enclaves.h
14697 F:      samples/nitro_enclaves/
14698
14699 NOHZ, DYNTICKS SUPPORT
14700 M:      Frederic Weisbecker <fweisbec@gmail.com>
14701 M:      Thomas Gleixner <tglx@linutronix.de>
14702 M:      Ingo Molnar <mingo@kernel.org>
14703 L:      linux-kernel@vger.kernel.org
14704 S:      Maintained
14705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14706 F:      include/linux/sched/nohz.h
14707 F:      include/linux/tick.h
14708 F:      kernel/time/tick*.*
14709
14710 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14711 M:      Pavel Machek <pavel@ucw.cz>
14712 M:      Sakari Ailus <sakari.ailus@iki.fi>
14713 L:      linux-media@vger.kernel.org
14714 S:      Maintained
14715 F:      drivers/media/i2c/ad5820.c
14716 F:      drivers/media/i2c/et8ek8
14717
14718 NOKIA N900 POWER SUPPLY DRIVERS
14719 R:      Pali Rohár <pali@kernel.org>
14720 F:      drivers/power/supply/bq2415x_charger.c
14721 F:      drivers/power/supply/bq27xxx_battery.c
14722 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14723 F:      drivers/power/supply/isp1704_charger.c
14724 F:      drivers/power/supply/rx51_battery.c
14725 F:      include/linux/power/bq2415x_charger.h
14726 F:      include/linux/power/bq27xxx_battery.h
14727
14728 NOLIBC HEADER FILE
14729 M:      Willy Tarreau <w@1wt.eu>
14730 S:      Maintained
14731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14732 F:      tools/include/nolibc/
14733 F:      tools/testing/selftests/nolibc/
14734
14735 NSDEPS
14736 M:      Matthias Maennich <maennich@google.com>
14737 S:      Maintained
14738 F:      Documentation/core-api/symbol-namespaces.rst
14739 F:      scripts/nsdeps
14740
14741 NTB AMD DRIVER
14742 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14743 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14744 L:      ntb@lists.linux.dev
14745 S:      Supported
14746 F:      drivers/ntb/hw/amd/
14747
14748 NTB DRIVER CORE
14749 M:      Jon Mason <jdmason@kudzu.us>
14750 M:      Dave Jiang <dave.jiang@intel.com>
14751 M:      Allen Hubbe <allenbh@gmail.com>
14752 L:      ntb@lists.linux.dev
14753 S:      Supported
14754 W:      https://github.com/jonmason/ntb/wiki
14755 T:      git git://github.com/jonmason/ntb.git
14756 F:      drivers/net/ntb_netdev.c
14757 F:      drivers/ntb/
14758 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14759 F:      include/linux/ntb.h
14760 F:      include/linux/ntb_transport.h
14761 F:      tools/testing/selftests/ntb/
14762
14763 NTB IDT DRIVER
14764 M:      Serge Semin <fancer.lancer@gmail.com>
14765 L:      ntb@lists.linux.dev
14766 S:      Supported
14767 F:      drivers/ntb/hw/idt/
14768
14769 NTB INTEL DRIVER
14770 M:      Dave Jiang <dave.jiang@intel.com>
14771 L:      ntb@lists.linux.dev
14772 S:      Supported
14773 W:      https://github.com/davejiang/linux/wiki
14774 T:      git https://github.com/davejiang/linux.git
14775 F:      drivers/ntb/hw/intel/
14776
14777 NTFS FILESYSTEM
14778 M:      Anton Altaparmakov <anton@tuxera.com>
14779 L:      linux-ntfs-dev@lists.sourceforge.net
14780 S:      Supported
14781 W:      http://www.tuxera.com/
14782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14783 F:      Documentation/filesystems/ntfs.rst
14784 F:      fs/ntfs/
14785
14786 NTFS3 FILESYSTEM
14787 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14788 L:      ntfs3@lists.linux.dev
14789 S:      Supported
14790 W:      http://www.paragon-software.com/
14791 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14792 F:      Documentation/filesystems/ntfs3.rst
14793 F:      fs/ntfs3/
14794
14795 NUBUS SUBSYSTEM
14796 M:      Finn Thain <fthain@linux-m68k.org>
14797 L:      linux-m68k@lists.linux-m68k.org
14798 S:      Maintained
14799 F:      arch/*/include/asm/nubus.h
14800 F:      drivers/nubus/
14801 F:      include/linux/nubus.h
14802 F:      include/uapi/linux/nubus.h
14803
14804 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14805 M:      Antonino Daplas <adaplas@gmail.com>
14806 L:      linux-fbdev@vger.kernel.org
14807 S:      Maintained
14808 F:      drivers/video/fbdev/nvidia/
14809 F:      drivers/video/fbdev/riva/
14810
14811 NVIDIA WMI EC BACKLIGHT DRIVER
14812 M:      Daniel Dadap <ddadap@nvidia.com>
14813 L:      platform-driver-x86@vger.kernel.org
14814 S:      Supported
14815 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14816 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14817
14818 NVM EXPRESS DRIVER
14819 M:      Keith Busch <kbusch@kernel.org>
14820 M:      Jens Axboe <axboe@fb.com>
14821 M:      Christoph Hellwig <hch@lst.de>
14822 M:      Sagi Grimberg <sagi@grimberg.me>
14823 L:      linux-nvme@lists.infradead.org
14824 S:      Supported
14825 W:      http://git.infradead.org/nvme.git
14826 T:      git://git.infradead.org/nvme.git
14827 F:      Documentation/nvme/
14828 F:      drivers/nvme/host/
14829 F:      drivers/nvme/common/
14830 F:      include/linux/nvme.h
14831 F:      include/linux/nvme-*.h
14832 F:      include/uapi/linux/nvme_ioctl.h
14833
14834 NVM EXPRESS FABRICS AUTHENTICATION
14835 M:      Hannes Reinecke <hare@suse.de>
14836 L:      linux-nvme@lists.infradead.org
14837 S:      Supported
14838 F:      drivers/nvme/host/auth.c
14839 F:      drivers/nvme/target/auth.c
14840 F:      drivers/nvme/target/fabrics-cmd-auth.c
14841 F:      include/linux/nvme-auth.h
14842
14843 NVM EXPRESS HARDWARE MONITORING SUPPORT
14844 M:      Guenter Roeck <linux@roeck-us.net>
14845 L:      linux-nvme@lists.infradead.org
14846 S:      Supported
14847 F:      drivers/nvme/host/hwmon.c
14848
14849 NVM EXPRESS FC TRANSPORT DRIVERS
14850 M:      James Smart <james.smart@broadcom.com>
14851 L:      linux-nvme@lists.infradead.org
14852 S:      Supported
14853 F:      drivers/nvme/host/fc.c
14854 F:      drivers/nvme/target/fc.c
14855 F:      drivers/nvme/target/fcloop.c
14856 F:      include/linux/nvme-fc-driver.h
14857 F:      include/linux/nvme-fc.h
14858
14859 NVM EXPRESS TARGET DRIVER
14860 M:      Christoph Hellwig <hch@lst.de>
14861 M:      Sagi Grimberg <sagi@grimberg.me>
14862 M:      Chaitanya Kulkarni <kch@nvidia.com>
14863 L:      linux-nvme@lists.infradead.org
14864 S:      Supported
14865 W:      http://git.infradead.org/nvme.git
14866 T:      git://git.infradead.org/nvme.git
14867 F:      drivers/nvme/target/
14868
14869 NVMEM FRAMEWORK
14870 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14871 S:      Maintained
14872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14873 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14874 F:      Documentation/devicetree/bindings/nvmem/
14875 F:      drivers/nvmem/
14876 F:      include/linux/nvmem-consumer.h
14877 F:      include/linux/nvmem-provider.h
14878
14879 NXP C45 TJA11XX PHY DRIVER
14880 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14881 L:      netdev@vger.kernel.org
14882 S:      Maintained
14883 F:      drivers/net/phy/nxp-c45-tja11xx.c
14884
14885 NXP FSPI DRIVER
14886 M:      Han Xu <han.xu@nxp.com>
14887 M:      Haibo Chen <haibo.chen@nxp.com>
14888 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14889 L:      linux-spi@vger.kernel.org
14890 S:      Maintained
14891 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14892 F:      drivers/spi/spi-nxp-fspi.c
14893
14894 NXP FXAS21002C DRIVER
14895 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14896 L:      linux-iio@vger.kernel.org
14897 S:      Maintained
14898 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14899 F:      drivers/iio/gyro/fxas21002c.h
14900 F:      drivers/iio/gyro/fxas21002c_core.c
14901 F:      drivers/iio/gyro/fxas21002c_i2c.c
14902 F:      drivers/iio/gyro/fxas21002c_spi.c
14903
14904 NXP i.MX CLOCK DRIVERS
14905 M:      Abel Vesa <abelvesa@kernel.org>
14906 L:      linux-clk@vger.kernel.org
14907 L:      linux-imx@nxp.com
14908 S:      Maintained
14909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14910 F:      Documentation/devicetree/bindings/clock/imx*
14911 F:      drivers/clk/imx/
14912 F:      include/dt-bindings/clock/imx*
14913
14914 NXP i.MX 8MQ DCSS DRIVER
14915 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14916 R:      Lucas Stach <l.stach@pengutronix.de>
14917 L:      dri-devel@lists.freedesktop.org
14918 S:      Maintained
14919 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14920 F:      drivers/gpu/drm/imx/dcss/
14921
14922 NXP i.MX 8QXP ADC DRIVER
14923 M:      Cai Huoqing <cai.huoqing@linux.dev>
14924 M:      Haibo Chen <haibo.chen@nxp.com>
14925 L:      linux-imx@nxp.com
14926 L:      linux-iio@vger.kernel.org
14927 S:      Maintained
14928 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14929 F:      drivers/iio/adc/imx8qxp-adc.c
14930
14931 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14932 M:      Haibo Chen <haibo.chen@nxp.com>
14933 L:      linux-iio@vger.kernel.org
14934 L:      linux-imx@nxp.com
14935 S:      Maintained
14936 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14937 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14938 F:      drivers/iio/adc/imx7d_adc.c
14939 F:      drivers/iio/adc/vf610_adc.c
14940
14941 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14942 M:      Jagan Teki <jagan@amarulasolutions.com>
14943 S:      Maintained
14944 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14945 F:      drivers/regulator/pf8x00-regulator.c
14946
14947 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14948 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14949 L:      linux-kernel@vger.kernel.org
14950 S:      Maintained
14951 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14952 F:      drivers/extcon/extcon-ptn5150.c
14953
14954 NXP SGTL5000 DRIVER
14955 M:      Fabio Estevam <festevam@gmail.com>
14956 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14957 S:      Maintained
14958 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14959 F:      sound/soc/codecs/sgtl5000*
14960
14961 NXP SJA1105 ETHERNET SWITCH DRIVER
14962 M:      Vladimir Oltean <olteanv@gmail.com>
14963 L:      linux-kernel@vger.kernel.org
14964 S:      Maintained
14965 F:      drivers/net/dsa/sja1105
14966 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14967
14968 NXP TDA998X DRM DRIVER
14969 M:      Russell King <linux@armlinux.org.uk>
14970 S:      Maintained
14971 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14972 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14973 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14974 F:      include/drm/i2c/tda998x.h
14975 F:      include/dt-bindings/display/tda998x.h
14976 K:      "nxp,tda998x"
14977
14978 NXP TFA9879 DRIVER
14979 M:      Peter Rosin <peda@axentia.se>
14980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14981 S:      Maintained
14982 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14983 F:      sound/soc/codecs/tfa9879*
14984
14985 NXP/Goodix TFA989X (TFA1) DRIVER
14986 M:      Stephan Gerhold <stephan@gerhold.net>
14987 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14988 S:      Maintained
14989 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14990 F:      sound/soc/codecs/tfa989x.c
14991
14992 NXP-NCI NFC DRIVER
14993 L:      linux-nfc@lists.01.org (subscribers-only)
14994 S:      Orphan
14995 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14996 F:      drivers/nfc/nxp-nci
14997
14998 NXP i.MX 8MP DW100 V4L2 DRIVER
14999 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15000 L:      linux-media@vger.kernel.org
15001 S:      Maintained
15002 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15003 F:      Documentation/userspace-api/media/drivers/dw100.rst
15004 F:      drivers/media/platform/nxp/dw100/
15005 F:      include/uapi/linux/dw100.h
15006
15007 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15008 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
15009 R:      NXP Linux Team <linux-imx@nxp.com>
15010 L:      linux-media@vger.kernel.org
15011 S:      Maintained
15012 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15013 F:      drivers/media/platform/nxp/imx-jpeg
15014
15015 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15016 M:      Jonas Malaco <jonas@protocubo.io>
15017 L:      linux-hwmon@vger.kernel.org
15018 S:      Maintained
15019 F:      Documentation/hwmon/nzxt-kraken2.rst
15020 F:      drivers/hwmon/nzxt-kraken2.c
15021
15022 NZXT-SMART2 HARDWARE MONITORING DRIVER
15023 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15024 L:      linux-hwmon@vger.kernel.org
15025 S:      Maintained
15026 F:      Documentation/hwmon/nzxt-smart2.rst
15027 F:      drivers/hwmon/nzxt-smart2.c
15028
15029 OBJAGG
15030 M:      Jiri Pirko <jiri@nvidia.com>
15031 L:      netdev@vger.kernel.org
15032 S:      Supported
15033 F:      include/linux/objagg.h
15034 F:      lib/objagg.c
15035 F:      lib/test_objagg.c
15036
15037 OBJTOOL
15038 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15039 M:      Peter Zijlstra <peterz@infradead.org>
15040 S:      Supported
15041 F:      tools/objtool/
15042 F:      include/linux/objtool.h
15043
15044 OCELOT ETHERNET SWITCH DRIVER
15045 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15046 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15047 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15048 M:      UNGLinuxDriver@microchip.com
15049 L:      netdev@vger.kernel.org
15050 S:      Supported
15051 F:      drivers/net/dsa/ocelot/*
15052 F:      drivers/net/ethernet/mscc/
15053 F:      include/soc/mscc/ocelot*
15054 F:      net/dsa/tag_ocelot.c
15055 F:      net/dsa/tag_ocelot_8021q.c
15056 F:      tools/testing/selftests/drivers/net/ocelot/*
15057
15058 OCELOT EXTERNAL SWITCH CONTROL
15059 M:      Colin Foster <colin.foster@in-advantage.com>
15060 S:      Supported
15061 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15062 F:      drivers/mfd/ocelot*
15063 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15064 F:      include/linux/mfd/ocelot.h
15065
15066 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15067 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15068 M:      Andrew Donnellan <ajd@linux.ibm.com>
15069 L:      linuxppc-dev@lists.ozlabs.org
15070 S:      Supported
15071 F:      Documentation/userspace-api/accelerators/ocxl.rst
15072 F:      arch/powerpc/include/asm/pnv-ocxl.h
15073 F:      arch/powerpc/platforms/powernv/ocxl.c
15074 F:      drivers/misc/ocxl/
15075 F:      include/misc/ocxl*
15076 F:      include/uapi/misc/ocxl.h
15077
15078 OMAP AUDIO SUPPORT
15079 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15080 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15081 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15082 L:      linux-omap@vger.kernel.org
15083 S:      Maintained
15084 F:      sound/soc/ti/n810.c
15085 F:      sound/soc/ti/omap*
15086 F:      sound/soc/ti/rx51.c
15087 F:      sound/soc/ti/sdma-pcm.*
15088
15089 OMAP CLOCK FRAMEWORK SUPPORT
15090 M:      Paul Walmsley <paul@pwsan.com>
15091 L:      linux-omap@vger.kernel.org
15092 S:      Maintained
15093 F:      arch/arm/*omap*/*clock*
15094
15095 OMAP DEVICE TREE SUPPORT
15096 M:      Benoît Cousson <bcousson@baylibre.com>
15097 M:      Tony Lindgren <tony@atomide.com>
15098 L:      linux-omap@vger.kernel.org
15099 L:      devicetree@vger.kernel.org
15100 S:      Maintained
15101 F:      arch/arm/boot/dts/*am3*
15102 F:      arch/arm/boot/dts/*am4*
15103 F:      arch/arm/boot/dts/*am5*
15104 F:      arch/arm/boot/dts/*dra7*
15105 F:      arch/arm/boot/dts/*omap*
15106 F:      arch/arm/boot/dts/logicpd-som-lv*
15107 F:      arch/arm/boot/dts/logicpd-torpedo*
15108
15109 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15110 L:      linux-omap@vger.kernel.org
15111 L:      linux-fbdev@vger.kernel.org
15112 S:      Orphan
15113 F:      Documentation/arm/omap/dss.rst
15114 F:      drivers/video/fbdev/omap2/
15115
15116 OMAP FRAMEBUFFER SUPPORT
15117 L:      linux-fbdev@vger.kernel.org
15118 L:      linux-omap@vger.kernel.org
15119 S:      Orphan
15120 F:      drivers/video/fbdev/omap/
15121
15122 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15123 M:      Roger Quadros <rogerq@kernel.org>
15124 M:      Tony Lindgren <tony@atomide.com>
15125 L:      linux-omap@vger.kernel.org
15126 S:      Maintained
15127 F:      arch/arm/mach-omap2/*gpmc*
15128 F:      drivers/memory/omap-gpmc.c
15129
15130 OMAP GPIO DRIVER
15131 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15132 M:      Santosh Shilimkar <ssantosh@kernel.org>
15133 M:      Kevin Hilman <khilman@kernel.org>
15134 L:      linux-omap@vger.kernel.org
15135 S:      Maintained
15136 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15137 F:      drivers/gpio/gpio-omap.c
15138
15139 OMAP HARDWARE SPINLOCK SUPPORT
15140 M:      Ohad Ben-Cohen <ohad@wizery.com>
15141 L:      linux-omap@vger.kernel.org
15142 S:      Maintained
15143 F:      drivers/hwspinlock/omap_hwspinlock.c
15144
15145 OMAP HS MMC SUPPORT
15146 L:      linux-mmc@vger.kernel.org
15147 L:      linux-omap@vger.kernel.org
15148 S:      Orphan
15149 F:      drivers/mmc/host/omap_hsmmc.c
15150
15151 OMAP HWMOD DATA
15152 M:      Paul Walmsley <paul@pwsan.com>
15153 L:      linux-omap@vger.kernel.org
15154 S:      Maintained
15155 F:      arch/arm/mach-omap2/omap_hwmod*data*
15156
15157 OMAP HWMOD SUPPORT
15158 M:      Benoît Cousson <bcousson@baylibre.com>
15159 M:      Paul Walmsley <paul@pwsan.com>
15160 L:      linux-omap@vger.kernel.org
15161 S:      Maintained
15162 F:      arch/arm/mach-omap2/omap_hwmod.*
15163
15164 OMAP I2C DRIVER
15165 M:      Vignesh R <vigneshr@ti.com>
15166 L:      linux-omap@vger.kernel.org
15167 L:      linux-i2c@vger.kernel.org
15168 S:      Maintained
15169 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15170 F:      drivers/i2c/busses/i2c-omap.c
15171
15172 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15173 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15174 L:      linux-media@vger.kernel.org
15175 S:      Maintained
15176 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15177 F:      drivers/media/platform/ti/omap3isp/
15178 F:      drivers/staging/media/omap4iss/
15179
15180 OMAP MMC SUPPORT
15181 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15182 L:      linux-omap@vger.kernel.org
15183 S:      Odd Fixes
15184 F:      drivers/mmc/host/omap.c
15185
15186 OMAP POWER MANAGEMENT SUPPORT
15187 M:      Kevin Hilman <khilman@kernel.org>
15188 L:      linux-omap@vger.kernel.org
15189 S:      Maintained
15190 F:      arch/arm/*omap*/*pm*
15191 F:      drivers/cpufreq/omap-cpufreq.c
15192
15193 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15194 M:      Paul Walmsley <paul@pwsan.com>
15195 L:      linux-omap@vger.kernel.org
15196 S:      Maintained
15197 F:      arch/arm/mach-omap2/prm*
15198
15199 OMAP RANDOM NUMBER GENERATOR SUPPORT
15200 M:      Deepak Saxena <dsaxena@plexity.net>
15201 S:      Maintained
15202 F:      drivers/char/hw_random/omap-rng.c
15203
15204 OMAP USB SUPPORT
15205 L:      linux-usb@vger.kernel.org
15206 L:      linux-omap@vger.kernel.org
15207 S:      Orphan
15208 F:      arch/arm/*omap*/usb*
15209 F:      drivers/usb/*/*omap*
15210
15211 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15212 M:      Mark Jackson <mpfj@newflow.co.uk>
15213 L:      linux-omap@vger.kernel.org
15214 S:      Maintained
15215 F:      arch/arm/boot/dts/am335x-nano.dts
15216
15217 OMAP1 SUPPORT
15218 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15219 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15220 M:      Tony Lindgren <tony@atomide.com>
15221 L:      linux-omap@vger.kernel.org
15222 S:      Maintained
15223 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15225 F:      arch/arm/configs/omap1_defconfig
15226 F:      arch/arm/mach-omap1/
15227 F:      drivers/i2c/busses/i2c-omap.c
15228 F:      include/linux/platform_data/ams-delta-fiq.h
15229 F:      include/linux/platform_data/i2c-omap.h
15230
15231 OMAP2+ SUPPORT
15232 M:      Tony Lindgren <tony@atomide.com>
15233 L:      linux-omap@vger.kernel.org
15234 S:      Maintained
15235 W:      http://www.muru.com/linux/omap/
15236 W:      http://linux.omap.com/
15237 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15239 F:      arch/arm/configs/omap2plus_defconfig
15240 F:      arch/arm/mach-omap2/
15241 F:      drivers/bus/ti-sysc.c
15242 F:      drivers/i2c/busses/i2c-omap.c
15243 F:      drivers/irqchip/irq-omap-intc.c
15244 F:      drivers/mfd/*omap*.c
15245 F:      drivers/mfd/menelaus.c
15246 F:      drivers/mfd/palmas.c
15247 F:      drivers/mfd/tps65217.c
15248 F:      drivers/mfd/tps65218.c
15249 F:      drivers/mfd/tps65219.c
15250 F:      drivers/mfd/tps65910.c
15251 F:      drivers/mfd/twl-core.[ch]
15252 F:      drivers/mfd/twl4030*.c
15253 F:      drivers/mfd/twl6030*.c
15254 F:      drivers/mfd/twl6040*.c
15255 F:      drivers/regulator/palmas-regulator*.c
15256 F:      drivers/regulator/pbias-regulator.c
15257 F:      drivers/regulator/tps65217-regulator.c
15258 F:      drivers/regulator/tps65218-regulator.c
15259 F:      drivers/regulator/tps65219-regulator.c
15260 F:      drivers/regulator/tps65910-regulator.c
15261 F:      drivers/regulator/twl-regulator.c
15262 F:      drivers/regulator/twl6030-regulator.c
15263 F:      include/linux/platform_data/i2c-omap.h
15264 F:      include/linux/platform_data/ti-sysc.h
15265
15266 OMFS FILESYSTEM
15267 M:      Bob Copeland <me@bobcopeland.com>
15268 L:      linux-karma-devel@lists.sourceforge.net
15269 S:      Maintained
15270 F:      Documentation/filesystems/omfs.rst
15271 F:      fs/omfs/
15272
15273 OMNIKEY CARDMAN 4000 DRIVER
15274 M:      Harald Welte <laforge@gnumonks.org>
15275 S:      Maintained
15276 F:      drivers/char/pcmcia/cm4000_cs.c
15277 F:      include/linux/cm4000_cs.h
15278 F:      include/uapi/linux/cm4000_cs.h
15279
15280 OMNIKEY CARDMAN 4040 DRIVER
15281 M:      Harald Welte <laforge@gnumonks.org>
15282 S:      Maintained
15283 F:      drivers/char/pcmcia/cm4040_cs.*
15284
15285 OMNIVISION OG01A1B SENSOR DRIVER
15286 M:      Shawn Tu <shawnx.tu@intel.com>
15287 L:      linux-media@vger.kernel.org
15288 S:      Maintained
15289 F:      drivers/media/i2c/og01a1b.c
15290
15291 OMNIVISION OV02A10 SENSOR DRIVER
15292 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15293 L:      linux-media@vger.kernel.org
15294 S:      Maintained
15295 T:      git git://linuxtv.org/media_tree.git
15296 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15297 F:      drivers/media/i2c/ov02a10.c
15298
15299 OMNIVISION OV08D10 SENSOR DRIVER
15300 M:      Jimmy Su <jimmy.su@intel.com>
15301 L:      linux-media@vger.kernel.org
15302 S:      Maintained
15303 T:      git git://linuxtv.org/media_tree.git
15304 F:      drivers/media/i2c/ov08d10.c
15305
15306 OMNIVISION OV08X40 SENSOR DRIVER
15307 M:      Jason Chen <jason.z.chen@intel.com>
15308 L:      linux-media@vger.kernel.org
15309 S:      Maintained
15310 T:      git git://linuxtv.org/media_tree.git
15311 F:      drivers/media/i2c/ov08x40.c
15312
15313 OMNIVISION OV13858 SENSOR DRIVER
15314 M:      Sakari Ailus <sakari.ailus@linux.intel.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/ov13858.c
15319
15320 OMNIVISION OV13B10 SENSOR DRIVER
15321 M:      Arec Kao <arec.kao@intel.com>
15322 L:      linux-media@vger.kernel.org
15323 S:      Maintained
15324 T:      git git://linuxtv.org/media_tree.git
15325 F:      drivers/media/i2c/ov13b10.c
15326
15327 OMNIVISION OV2680 SENSOR DRIVER
15328 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15329 L:      linux-media@vger.kernel.org
15330 S:      Maintained
15331 T:      git git://linuxtv.org/media_tree.git
15332 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15333 F:      drivers/media/i2c/ov2680.c
15334
15335 OMNIVISION OV2685 SENSOR DRIVER
15336 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15337 L:      linux-media@vger.kernel.org
15338 S:      Maintained
15339 T:      git git://linuxtv.org/media_tree.git
15340 F:      drivers/media/i2c/ov2685.c
15341
15342 OMNIVISION OV2740 SENSOR DRIVER
15343 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15344 R:      Shawn Tu <shawnx.tu@intel.com>
15345 R:      Bingbu Cao <bingbu.cao@intel.com>
15346 L:      linux-media@vger.kernel.org
15347 S:      Maintained
15348 T:      git git://linuxtv.org/media_tree.git
15349 F:      drivers/media/i2c/ov2740.c
15350
15351 OMNIVISION OV4689 SENSOR DRIVER
15352 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15353 L:      linux-media@vger.kernel.org
15354 S:      Maintained
15355 T:      git git://linuxtv.org/media_tree.git
15356 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15357 F:      drivers/media/i2c/ov5647.c
15358
15359 OMNIVISION OV5640 SENSOR DRIVER
15360 M:      Steve Longerbeam <slongerbeam@gmail.com>
15361 L:      linux-media@vger.kernel.org
15362 S:      Maintained
15363 T:      git git://linuxtv.org/media_tree.git
15364 F:      drivers/media/i2c/ov5640.c
15365
15366 OMNIVISION OV5647 SENSOR DRIVER
15367 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15368 M:      Jacopo Mondi <jacopo@jmondi.org>
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,ov5647.yaml
15373 F:      drivers/media/i2c/ov5647.c
15374
15375 OMNIVISION OV5670 SENSOR DRIVER
15376 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.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/ov5670.c
15381
15382 OMNIVISION OV5675 SENSOR DRIVER
15383 M:      Shawn Tu <shawnx.tu@intel.com>
15384 L:      linux-media@vger.kernel.org
15385 S:      Maintained
15386 T:      git git://linuxtv.org/media_tree.git
15387 F:      drivers/media/i2c/ov5675.c
15388
15389 OMNIVISION OV5693 SENSOR DRIVER
15390 M:      Daniel Scally <djrscally@gmail.com>
15391 L:      linux-media@vger.kernel.org
15392 S:      Maintained
15393 T:      git git://linuxtv.org/media_tree.git
15394 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15395 F:      drivers/media/i2c/ov5693.c
15396
15397 OMNIVISION OV5695 SENSOR DRIVER
15398 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15399 L:      linux-media@vger.kernel.org
15400 S:      Maintained
15401 T:      git git://linuxtv.org/media_tree.git
15402 F:      drivers/media/i2c/ov5695.c
15403
15404 OMNIVISION OV7670 SENSOR DRIVER
15405 L:      linux-media@vger.kernel.org
15406 S:      Orphan
15407 T:      git git://linuxtv.org/media_tree.git
15408 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15409 F:      drivers/media/i2c/ov7670.c
15410
15411 OMNIVISION OV772x SENSOR DRIVER
15412 M:      Jacopo Mondi <jacopo@jmondi.org>
15413 L:      linux-media@vger.kernel.org
15414 S:      Odd fixes
15415 T:      git git://linuxtv.org/media_tree.git
15416 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15417 F:      drivers/media/i2c/ov772x.c
15418 F:      include/media/i2c/ov772x.h
15419
15420 OMNIVISION OV7740 SENSOR DRIVER
15421 M:      Wenyou Yang <wenyou.yang@microchip.com>
15422 L:      linux-media@vger.kernel.org
15423 S:      Maintained
15424 T:      git git://linuxtv.org/media_tree.git
15425 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15426 F:      drivers/media/i2c/ov7740.c
15427
15428 OMNIVISION OV8856 SENSOR DRIVER
15429 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15430 L:      linux-media@vger.kernel.org
15431 S:      Maintained
15432 T:      git git://linuxtv.org/media_tree.git
15433 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15434 F:      drivers/media/i2c/ov8856.c
15435
15436 OMNIVISION OV9282 SENSOR DRIVER
15437 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15438 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15439 L:      linux-media@vger.kernel.org
15440 S:      Maintained
15441 T:      git git://linuxtv.org/media_tree.git
15442 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15443 F:      drivers/media/i2c/ov9282.c
15444
15445 OMNIVISION OV9640 SENSOR DRIVER
15446 M:      Petr Cvek <petrcvekcz@gmail.com>
15447 L:      linux-media@vger.kernel.org
15448 S:      Maintained
15449 F:      drivers/media/i2c/ov9640.*
15450
15451 OMNIVISION OV9650 SENSOR DRIVER
15452 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15453 R:      Akinobu Mita <akinobu.mita@gmail.com>
15454 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15455 L:      linux-media@vger.kernel.org
15456 S:      Maintained
15457 T:      git git://linuxtv.org/media_tree.git
15458 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15459 F:      drivers/media/i2c/ov9650.c
15460
15461 OMNIVISION OV9734 SENSOR DRIVER
15462 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15463 R:      Bingbu Cao <bingbu.cao@intel.com>
15464 L:      linux-media@vger.kernel.org
15465 S:      Maintained
15466 T:      git git://linuxtv.org/media_tree.git
15467 F:      drivers/media/i2c/ov9734.c
15468
15469 ONBOARD USB HUB DRIVER
15470 M:      Matthias Kaehlcke <mka@chromium.org>
15471 L:      linux-usb@vger.kernel.org
15472 S:      Maintained
15473 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15474 F:      drivers/usb/misc/onboard_usb_hub.c
15475
15476 ONENAND FLASH DRIVER
15477 M:      Kyungmin Park <kyungmin.park@samsung.com>
15478 L:      linux-mtd@lists.infradead.org
15479 S:      Maintained
15480 F:      drivers/mtd/nand/onenand/
15481 F:      include/linux/mtd/onenand*.h
15482
15483 ONEXPLAYER FAN DRIVER
15484 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15485 L:      linux-hwmon@vger.kernel.org
15486 S:      Maintained
15487 F:      drivers/hwmon/oxp-sensors.c
15488
15489 ONION OMEGA2+ BOARD
15490 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15491 L:      linux-mips@vger.kernel.org
15492 S:      Maintained
15493 F:      arch/mips/boot/dts/ralink/omega2p.dts
15494
15495 ONSEMI ETHERNET PHY DRIVERS
15496 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15497 L:      netdev@vger.kernel.org
15498 S:      Supported
15499 W:      http://www.onsemi.com
15500 F:      drivers/net/phy/ncn*
15501
15502 OP-TEE DRIVER
15503 M:      Jens Wiklander <jens.wiklander@linaro.org>
15504 L:      op-tee@lists.trustedfirmware.org
15505 S:      Maintained
15506 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15507 F:      drivers/tee/optee/
15508
15509 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15510 M:      Sumit Garg <sumit.garg@linaro.org>
15511 L:      op-tee@lists.trustedfirmware.org
15512 S:      Maintained
15513 F:      drivers/char/hw_random/optee-rng.c
15514
15515 OP-TEE RTC DRIVER
15516 M:      Clément Léger <clement.leger@bootlin.com>
15517 L:      linux-rtc@vger.kernel.org
15518 S:      Maintained
15519 F:      drivers/rtc/rtc-optee.c
15520
15521 OPA-VNIC DRIVER
15522 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15523 L:      linux-rdma@vger.kernel.org
15524 S:      Supported
15525 F:      drivers/infiniband/ulp/opa_vnic
15526
15527 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15528 M:      Rob Herring <robh+dt@kernel.org>
15529 M:      Frank Rowand <frowand.list@gmail.com>
15530 L:      devicetree@vger.kernel.org
15531 S:      Maintained
15532 C:      irc://irc.libera.chat/devicetree
15533 W:      http://www.devicetree.org/
15534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15535 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15536 F:      drivers/of/
15537 F:      include/linux/of*.h
15538 F:      scripts/dtc/
15539 K:      of_overlay_notifier_
15540 K:      of_overlay_fdt_apply
15541 K:      of_overlay_remove
15542
15543 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15544 M:      Rob Herring <robh+dt@kernel.org>
15545 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15546 L:      devicetree@vger.kernel.org
15547 S:      Maintained
15548 C:      irc://irc.libera.chat/devicetree
15549 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15551 F:      Documentation/devicetree/
15552 F:      arch/*/boot/dts/
15553 F:      include/dt-bindings/
15554
15555 OPENCOMPUTE PTP CLOCK DRIVER
15556 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15557 M:      Vadim Fedorenko <vadfed@fb.com>
15558 L:      netdev@vger.kernel.org
15559 S:      Maintained
15560 F:      drivers/ptp/ptp_ocp.c
15561
15562 OPENCORES I2C BUS DRIVER
15563 M:      Peter Korsgaard <peter@korsgaard.com>
15564 M:      Andrew Lunn <andrew@lunn.ch>
15565 L:      linux-i2c@vger.kernel.org
15566 S:      Maintained
15567 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15568 F:      Documentation/i2c/busses/i2c-ocores.rst
15569 F:      drivers/i2c/busses/i2c-ocores.c
15570 F:      include/linux/platform_data/i2c-ocores.h
15571
15572 OPENRISC ARCHITECTURE
15573 M:      Jonas Bonn <jonas@southpole.se>
15574 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15575 M:      Stafford Horne <shorne@gmail.com>
15576 L:      linux-openrisc@vger.kernel.org
15577 S:      Maintained
15578 W:      http://openrisc.io
15579 T:      git https://github.com/openrisc/linux.git
15580 F:      Documentation/devicetree/bindings/openrisc/
15581 F:      Documentation/openrisc/
15582 F:      arch/openrisc/
15583 F:      drivers/irqchip/irq-ompic.c
15584 F:      drivers/irqchip/irq-or1k-*
15585
15586 OPENVSWITCH
15587 M:      Pravin B Shelar <pshelar@ovn.org>
15588 L:      netdev@vger.kernel.org
15589 L:      dev@openvswitch.org
15590 S:      Maintained
15591 W:      http://openvswitch.org
15592 F:      include/uapi/linux/openvswitch.h
15593 F:      net/openvswitch/
15594 F:      tools/testing/selftests/net/openvswitch/
15595
15596 OPERATING PERFORMANCE POINTS (OPP)
15597 M:      Viresh Kumar <vireshk@kernel.org>
15598 M:      Nishanth Menon <nm@ti.com>
15599 M:      Stephen Boyd <sboyd@kernel.org>
15600 L:      linux-pm@vger.kernel.org
15601 S:      Maintained
15602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15603 F:      Documentation/devicetree/bindings/opp/
15604 F:      Documentation/power/opp.rst
15605 F:      drivers/opp/
15606 F:      include/linux/pm_opp.h
15607
15608 OPL4 DRIVER
15609 M:      Clemens Ladisch <clemens@ladisch.de>
15610 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15611 S:      Maintained
15612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15613 F:      sound/drivers/opl4/
15614
15615 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15616 M:      Mark Fasheh <mark@fasheh.com>
15617 M:      Joel Becker <jlbec@evilplan.org>
15618 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15619 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15620 S:      Supported
15621 W:      http://ocfs2.wiki.kernel.org
15622 F:      Documentation/filesystems/dlmfs.rst
15623 F:      Documentation/filesystems/ocfs2.rst
15624 F:      fs/ocfs2/
15625
15626 ORANGEFS FILESYSTEM
15627 M:      Mike Marshall <hubcap@omnibond.com>
15628 R:      Martin Brandenburg <martin@omnibond.com>
15629 L:      devel@lists.orangefs.org
15630 S:      Supported
15631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15632 F:      Documentation/filesystems/orangefs.rst
15633 F:      fs/orangefs/
15634
15635 ORINOCO DRIVER
15636 L:      linux-wireless@vger.kernel.org
15637 S:      Orphan
15638 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15639 W:      http://www.nongnu.org/orinoco/
15640 F:      drivers/net/wireless/intersil/orinoco/
15641
15642 OV2659 OMNIVISION SENSOR DRIVER
15643 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15644 L:      linux-media@vger.kernel.org
15645 S:      Maintained
15646 W:      https://linuxtv.org
15647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15648 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15649 F:      drivers/media/i2c/ov2659.c
15650 F:      include/media/i2c/ov2659.h
15651
15652 OVERLAY FILESYSTEM
15653 M:      Miklos Szeredi <miklos@szeredi.hu>
15654 L:      linux-unionfs@vger.kernel.org
15655 S:      Supported
15656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15657 F:      Documentation/filesystems/overlayfs.rst
15658 F:      fs/overlayfs/
15659
15660 P54 WIRELESS DRIVER
15661 M:      Christian Lamparter <chunkeey@googlemail.com>
15662 L:      linux-wireless@vger.kernel.org
15663 S:      Maintained
15664 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15665 F:      drivers/net/wireless/intersil/p54/
15666
15667 PACKET SOCKETS
15668 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15669 S:      Maintained
15670 F:      include/uapi/linux/if_packet.h
15671 F:      net/packet/af_packet.c
15672
15673 PACKING
15674 M:      Vladimir Oltean <olteanv@gmail.com>
15675 L:      netdev@vger.kernel.org
15676 S:      Supported
15677 F:      Documentation/core-api/packing.rst
15678 F:      include/linux/packing.h
15679 F:      lib/packing.c
15680
15681 PADATA PARALLEL EXECUTION MECHANISM
15682 M:      Steffen Klassert <steffen.klassert@secunet.com>
15683 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15684 L:      linux-crypto@vger.kernel.org
15685 L:      linux-kernel@vger.kernel.org
15686 S:      Maintained
15687 F:      Documentation/core-api/padata.rst
15688 F:      include/linux/padata.h
15689 F:      kernel/padata.c
15690
15691 PAGE CACHE
15692 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15693 L:      linux-fsdevel@vger.kernel.org
15694 S:      Supported
15695 T:      git git://git.infradead.org/users/willy/pagecache.git
15696 F:      Documentation/filesystems/locking.rst
15697 F:      Documentation/filesystems/vfs.rst
15698 F:      include/linux/pagemap.h
15699 F:      mm/filemap.c
15700 F:      mm/page-writeback.c
15701 F:      mm/readahead.c
15702 F:      mm/truncate.c
15703
15704 PAGE POOL
15705 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15706 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15707 L:      netdev@vger.kernel.org
15708 S:      Supported
15709 F:      Documentation/networking/page_pool.rst
15710 F:      include/net/page_pool.h
15711 F:      include/trace/events/page_pool.h
15712 F:      net/core/page_pool.c
15713
15714 PAGE TABLE CHECK
15715 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15716 M:      Andrew Morton <akpm@linux-foundation.org>
15717 L:      linux-mm@kvack.org
15718 S:      Maintained
15719 F:      Documentation/mm/page_table_check.rst
15720 F:      include/linux/page_table_check.h
15721 F:      mm/page_table_check.c
15722
15723 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15724 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15725 L:      platform-driver-x86@vger.kernel.org
15726 S:      Maintained
15727 F:      drivers/platform/x86/panasonic-laptop.c
15728
15729 PARALLAX PING IIO SENSOR DRIVER
15730 M:      Andreas Klinger <ak@it-klinger.de>
15731 L:      linux-iio@vger.kernel.org
15732 S:      Maintained
15733 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15734 F:      drivers/iio/proximity/ping.c
15735
15736 PARALLEL LCD/KEYPAD PANEL DRIVER
15737 M:      Willy Tarreau <willy@haproxy.com>
15738 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15739 S:      Odd Fixes
15740 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15741 F:      drivers/auxdisplay/panel.c
15742
15743 PARALLEL PORT SUBSYSTEM
15744 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15745 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15746 L:      linux-parport@lists.infradead.org (subscribers-only)
15747 S:      Maintained
15748 F:      Documentation/driver-api/parport*.rst
15749 F:      drivers/char/ppdev.c
15750 F:      drivers/parport/
15751 F:      include/linux/parport*.h
15752 F:      include/uapi/linux/ppdev.h
15753
15754 PARAVIRT_OPS INTERFACE
15755 M:      Juergen Gross <jgross@suse.com>
15756 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15757 R:      Alexey Makhalov <amakhalov@vmware.com>
15758 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15759 L:      virtualization@lists.linux-foundation.org
15760 L:      x86@kernel.org
15761 S:      Supported
15762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15763 F:      Documentation/virt/paravirt_ops.rst
15764 F:      arch/*/include/asm/paravirt*.h
15765 F:      arch/*/kernel/paravirt*
15766 F:      include/linux/hypervisor.h
15767
15768 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15769 M:      Tim Waugh <tim@cyberelk.net>
15770 L:      linux-parport@lists.infradead.org (subscribers-only)
15771 S:      Maintained
15772 F:      Documentation/admin-guide/blockdev/paride.rst
15773 F:      drivers/block/paride/
15774
15775 PARISC ARCHITECTURE
15776 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15777 M:      Helge Deller <deller@gmx.de>
15778 L:      linux-parisc@vger.kernel.org
15779 S:      Maintained
15780 W:      https://parisc.wiki.kernel.org
15781 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15784 F:      Documentation/parisc/
15785 F:      arch/parisc/
15786 F:      drivers/char/agp/parisc-agp.c
15787 F:      drivers/input/misc/hp_sdc_rtc.c
15788 F:      drivers/input/serio/gscps2.c
15789 F:      drivers/input/serio/hp_sdc*
15790 F:      drivers/parisc/
15791 F:      drivers/parport/parport_gsc.*
15792 F:      drivers/tty/serial/8250/8250_parisc.c
15793 F:      drivers/video/console/sti*
15794 F:      drivers/video/fbdev/sti*
15795 F:      drivers/video/logo/logo_parisc*
15796 F:      include/linux/hp_sdc.h
15797
15798 PARMAN
15799 M:      Jiri Pirko <jiri@nvidia.com>
15800 L:      netdev@vger.kernel.org
15801 S:      Supported
15802 F:      include/linux/parman.h
15803 F:      lib/parman.c
15804 F:      lib/test_parman.c
15805
15806 PC ENGINES APU BOARD DRIVER
15807 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15808 S:      Maintained
15809 F:      drivers/platform/x86/pcengines-apuv2.c
15810
15811 PC87360 HARDWARE MONITORING DRIVER
15812 M:      Jim Cromie <jim.cromie@gmail.com>
15813 L:      linux-hwmon@vger.kernel.org
15814 S:      Maintained
15815 F:      Documentation/hwmon/pc87360.rst
15816 F:      drivers/hwmon/pc87360.c
15817
15818 PC8736x GPIO DRIVER
15819 M:      Jim Cromie <jim.cromie@gmail.com>
15820 S:      Maintained
15821 F:      drivers/char/pc8736x_gpio.c
15822
15823 PC87427 HARDWARE MONITORING DRIVER
15824 M:      Jean Delvare <jdelvare@suse.com>
15825 L:      linux-hwmon@vger.kernel.org
15826 S:      Maintained
15827 F:      Documentation/hwmon/pc87427.rst
15828 F:      drivers/hwmon/pc87427.c
15829
15830 PCA9532 LED DRIVER
15831 M:      Riku Voipio <riku.voipio@iki.fi>
15832 S:      Maintained
15833 F:      drivers/leds/leds-pca9532.c
15834 F:      include/linux/leds-pca9532.h
15835
15836 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15837 M:      Guenter Roeck <linux@roeck-us.net>
15838 L:      linux-i2c@vger.kernel.org
15839 S:      Maintained
15840 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15841
15842 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15843 M:      Khalid Aziz <khalid@gonehiking.org>
15844 S:      Maintained
15845 F:      drivers/firmware/pcdp.*
15846
15847 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15848 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15849 M:      Pali Rohár <pali@kernel.org>
15850 L:      linux-pci@vger.kernel.org
15851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15852 S:      Maintained
15853 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15854 F:      drivers/pci/controller/pci-aardvark.c
15855
15856 PCI DRIVER FOR ALTERA PCIE IP
15857 M:      Joyce Ooi <joyce.ooi@intel.com>
15858 L:      linux-pci@vger.kernel.org
15859 S:      Supported
15860 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15861 F:      drivers/pci/controller/pcie-altera.c
15862
15863 PCI DRIVER FOR APPLIEDMICRO XGENE
15864 M:      Toan Le <toan@os.amperecomputing.com>
15865 L:      linux-pci@vger.kernel.org
15866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15867 S:      Maintained
15868 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15869 F:      drivers/pci/controller/pci-xgene.c
15870
15871 PCI DRIVER FOR ARM VERSATILE PLATFORM
15872 M:      Rob Herring <robh@kernel.org>
15873 L:      linux-pci@vger.kernel.org
15874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15875 S:      Maintained
15876 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15877 F:      drivers/pci/controller/pci-versatile.c
15878
15879 PCI DRIVER FOR ARMADA 8K
15880 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15881 L:      linux-pci@vger.kernel.org
15882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15883 S:      Maintained
15884 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15885 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15886
15887 PCI DRIVER FOR CADENCE PCIE IP
15888 M:      Tom Joseph <tjoseph@cadence.com>
15889 L:      linux-pci@vger.kernel.org
15890 S:      Maintained
15891 F:      Documentation/devicetree/bindings/pci/cdns,*
15892 F:      drivers/pci/controller/cadence/
15893
15894 PCI DRIVER FOR FREESCALE LAYERSCAPE
15895 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15896 M:      Mingkai Hu <mingkai.hu@nxp.com>
15897 M:      Roy Zang <roy.zang@nxp.com>
15898 L:      linuxppc-dev@lists.ozlabs.org
15899 L:      linux-pci@vger.kernel.org
15900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15901 S:      Maintained
15902 F:      drivers/pci/controller/dwc/*layerscape*
15903
15904 PCI DRIVER FOR GENERIC OF HOSTS
15905 M:      Will Deacon <will@kernel.org>
15906 L:      linux-pci@vger.kernel.org
15907 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15908 S:      Maintained
15909 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15910 F:      drivers/pci/controller/pci-host-common.c
15911 F:      drivers/pci/controller/pci-host-generic.c
15912
15913 PCI DRIVER FOR IMX6
15914 M:      Richard Zhu <hongxing.zhu@nxp.com>
15915 M:      Lucas Stach <l.stach@pengutronix.de>
15916 L:      linux-pci@vger.kernel.org
15917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15918 S:      Maintained
15919 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15920 F:      drivers/pci/controller/dwc/*imx6*
15921
15922 PCI DRIVER FOR FU740
15923 M:      Paul Walmsley <paul.walmsley@sifive.com>
15924 M:      Greentime Hu <greentime.hu@sifive.com>
15925 L:      linux-pci@vger.kernel.org
15926 S:      Maintained
15927 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15928 F:      drivers/pci/controller/dwc/pcie-fu740.c
15929
15930 PCI DRIVER FOR INTEL IXP4XX
15931 M:      Linus Walleij <linus.walleij@linaro.org>
15932 S:      Maintained
15933 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15934 F:      drivers/pci/controller/pci-ixp4xx.c
15935
15936 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15937 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15938 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15939 L:      linux-pci@vger.kernel.org
15940 S:      Supported
15941 F:      drivers/pci/controller/vmd.c
15942
15943 PCI DRIVER FOR MICROSEMI SWITCHTEC
15944 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15945 M:      Logan Gunthorpe <logang@deltatee.com>
15946 L:      linux-pci@vger.kernel.org
15947 S:      Maintained
15948 F:      Documentation/ABI/testing/sysfs-class-switchtec
15949 F:      Documentation/driver-api/switchtec.rst
15950 F:      drivers/ntb/hw/mscc/
15951 F:      drivers/pci/switch/switchtec*
15952 F:      include/linux/switchtec.h
15953 F:      include/uapi/linux/switchtec_ioctl.h
15954
15955 PCI DRIVER FOR MOBIVEIL PCIE IP
15956 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15957 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15958 L:      linux-pci@vger.kernel.org
15959 S:      Supported
15960 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15961 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15962
15963 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15964 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15965 M:      Pali Rohár <pali@kernel.org>
15966 L:      linux-pci@vger.kernel.org
15967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15968 S:      Maintained
15969 F:      drivers/pci/controller/*mvebu*
15970
15971 PCI DRIVER FOR NVIDIA TEGRA
15972 M:      Thierry Reding <thierry.reding@gmail.com>
15973 L:      linux-tegra@vger.kernel.org
15974 L:      linux-pci@vger.kernel.org
15975 S:      Supported
15976 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15977 F:      drivers/pci/controller/pci-tegra.c
15978
15979 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15980 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15981 L:      linux-pci@vger.kernel.org
15982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15983 S:      Maintained
15984 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15985 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15986
15987 PCI DRIVER FOR RENESAS R-CAR
15988 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15989 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15990 L:      linux-pci@vger.kernel.org
15991 L:      linux-renesas-soc@vger.kernel.org
15992 S:      Maintained
15993 F:      Documentation/devicetree/bindings/pci/*rcar*
15994 F:      drivers/pci/controller/*rcar*
15995
15996 PCI DRIVER FOR SAMSUNG EXYNOS
15997 M:      Jingoo Han <jingoohan1@gmail.com>
15998 L:      linux-pci@vger.kernel.org
15999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16000 L:      linux-samsung-soc@vger.kernel.org
16001 S:      Maintained
16002 F:      drivers/pci/controller/dwc/pci-exynos.c
16003
16004 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16005 M:      Jingoo Han <jingoohan1@gmail.com>
16006 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16007 L:      linux-pci@vger.kernel.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16010 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16011 F:      drivers/pci/controller/dwc/*designware*
16012
16013 PCI DRIVER FOR TI DRA7XX/J721E
16014 M:      Vignesh Raghavendra <vigneshr@ti.com>
16015 L:      linux-omap@vger.kernel.org
16016 L:      linux-pci@vger.kernel.org
16017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16018 S:      Supported
16019 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16020 F:      drivers/pci/controller/cadence/pci-j721e.c
16021 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16022
16023 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16024 M:      Linus Walleij <linus.walleij@linaro.org>
16025 L:      linux-pci@vger.kernel.org
16026 S:      Maintained
16027 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16028 F:      drivers/pci/controller/pci-v3-semi.c
16029
16030 PCI ENDPOINT SUBSYSTEM
16031 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16032 M:      Krzysztof Wilczyński <kw@linux.com>
16033 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16034 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16035 L:      linux-pci@vger.kernel.org
16036 S:      Supported
16037 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16038 B:      https://bugzilla.kernel.org
16039 C:      irc://irc.oftc.net/linux-pci
16040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16041 F:      Documentation/PCI/endpoint/*
16042 F:      Documentation/misc-devices/pci-endpoint-test.rst
16043 F:      drivers/misc/pci_endpoint_test.c
16044 F:      drivers/pci/endpoint/
16045 F:      tools/pci/
16046
16047 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16048 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16049 R:      Oliver O'Halloran <oohall@gmail.com>
16050 L:      linuxppc-dev@lists.ozlabs.org
16051 S:      Supported
16052 F:      Documentation/PCI/pci-error-recovery.rst
16053 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16054 F:      arch/powerpc/include/*/eeh*.h
16055 F:      arch/powerpc/kernel/eeh*.c
16056 F:      arch/powerpc/platforms/*/eeh*.c
16057 F:      drivers/pci/pcie/aer.c
16058 F:      drivers/pci/pcie/dpc.c
16059 F:      drivers/pci/pcie/err.c
16060
16061 PCI ERROR RECOVERY
16062 M:      Linas Vepstas <linasvepstas@gmail.com>
16063 L:      linux-pci@vger.kernel.org
16064 S:      Supported
16065 F:      Documentation/PCI/pci-error-recovery.rst
16066
16067 PCI PEER-TO-PEER DMA (P2PDMA)
16068 M:      Bjorn Helgaas <bhelgaas@google.com>
16069 M:      Logan Gunthorpe <logang@deltatee.com>
16070 L:      linux-pci@vger.kernel.org
16071 S:      Supported
16072 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16073 B:      https://bugzilla.kernel.org
16074 C:      irc://irc.oftc.net/linux-pci
16075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16076 F:      Documentation/driver-api/pci/p2pdma.rst
16077 F:      drivers/pci/p2pdma.c
16078 F:      include/linux/pci-p2pdma.h
16079
16080 PCI MSI DRIVER FOR ALTERA MSI IP
16081 M:      Joyce Ooi <joyce.ooi@intel.com>
16082 L:      linux-pci@vger.kernel.org
16083 S:      Supported
16084 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16085 F:      drivers/pci/controller/pcie-altera-msi.c
16086
16087 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16088 M:      Toan Le <toan@os.amperecomputing.com>
16089 L:      linux-pci@vger.kernel.org
16090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16091 S:      Maintained
16092 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16093 F:      drivers/pci/controller/pci-xgene-msi.c
16094
16095 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16096 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16097 M:      Krzysztof Wilczyński <kw@linux.com>
16098 R:      Rob Herring <robh@kernel.org>
16099 L:      linux-pci@vger.kernel.org
16100 S:      Supported
16101 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16102 B:      https://bugzilla.kernel.org
16103 C:      irc://irc.oftc.net/linux-pci
16104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16105 F:      Documentation/devicetree/bindings/pci/
16106 F:      drivers/pci/controller/
16107 F:      drivers/pci/pci-bridge-emul.c
16108 F:      drivers/pci/pci-bridge-emul.h
16109
16110 PCI SUBSYSTEM
16111 M:      Bjorn Helgaas <bhelgaas@google.com>
16112 L:      linux-pci@vger.kernel.org
16113 S:      Supported
16114 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16115 B:      https://bugzilla.kernel.org
16116 C:      irc://irc.oftc.net/linux-pci
16117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16118 F:      Documentation/PCI/
16119 F:      Documentation/devicetree/bindings/pci/
16120 F:      arch/x86/kernel/early-quirks.c
16121 F:      arch/x86/kernel/quirks.c
16122 F:      arch/x86/pci/
16123 F:      drivers/acpi/pci*
16124 F:      drivers/pci/
16125 F:      include/asm-generic/pci*
16126 F:      include/linux/of_pci.h
16127 F:      include/linux/pci*
16128 F:      include/uapi/linux/pci*
16129 F:      lib/pci*
16130
16131 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16132 M:      Jonathan Chocron <jonnyc@amazon.com>
16133 L:      linux-pci@vger.kernel.org
16134 S:      Maintained
16135 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16136 F:      drivers/pci/controller/dwc/pcie-al.c
16137
16138 PCIE DRIVER FOR AMLOGIC MESON
16139 M:      Yue Wang <yue.wang@Amlogic.com>
16140 L:      linux-pci@vger.kernel.org
16141 L:      linux-amlogic@lists.infradead.org
16142 S:      Maintained
16143 F:      drivers/pci/controller/dwc/pci-meson.c
16144
16145 PCIE DRIVER FOR AXIS ARTPEC
16146 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16147 L:      linux-arm-kernel@axis.com
16148 L:      linux-pci@vger.kernel.org
16149 S:      Maintained
16150 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16151 F:      drivers/pci/controller/dwc/*artpec*
16152
16153 PCIE DRIVER FOR CAVIUM THUNDERX
16154 M:      Robert Richter <rric@kernel.org>
16155 L:      linux-pci@vger.kernel.org
16156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16157 S:      Odd Fixes
16158 F:      drivers/pci/controller/pci-thunder-*
16159
16160 PCIE DRIVER FOR HISILICON
16161 M:      Zhou Wang <wangzhou1@hisilicon.com>
16162 L:      linux-pci@vger.kernel.org
16163 S:      Maintained
16164 F:      drivers/pci/controller/dwc/pcie-hisi.c
16165
16166 PCIE DRIVER FOR HISILICON KIRIN
16167 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16168 M:      Binghui Wang <wangbinghui@hisilicon.com>
16169 L:      linux-pci@vger.kernel.org
16170 S:      Maintained
16171 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16172 F:      drivers/pci/controller/dwc/pcie-kirin.c
16173
16174 PCIE DRIVER FOR HISILICON STB
16175 M:      Shawn Guo <shawn.guo@linaro.org>
16176 L:      linux-pci@vger.kernel.org
16177 S:      Maintained
16178 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16179 F:      drivers/pci/controller/dwc/pcie-histb.c
16180
16181 PCIE DRIVER FOR INTEL KEEM BAY
16182 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16183 L:      linux-pci@vger.kernel.org
16184 S:      Supported
16185 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16186 F:      drivers/pci/controller/dwc/pcie-keembay.c
16187
16188 PCIE DRIVER FOR INTEL LGM GW SOC
16189 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16190 L:      linux-pci@vger.kernel.org
16191 S:      Maintained
16192 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16193 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16194
16195 PCIE DRIVER FOR MEDIATEK
16196 M:      Ryder Lee <ryder.lee@mediatek.com>
16197 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16198 L:      linux-pci@vger.kernel.org
16199 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16200 S:      Supported
16201 F:      Documentation/devicetree/bindings/pci/mediatek*
16202 F:      drivers/pci/controller/*mediatek*
16203
16204 PCIE DRIVER FOR MICROCHIP
16205 M:      Daire McNamara <daire.mcnamara@microchip.com>
16206 L:      linux-pci@vger.kernel.org
16207 S:      Supported
16208 F:      Documentation/devicetree/bindings/pci/microchip*
16209 F:      drivers/pci/controller/*microchip*
16210
16211 PCIE DRIVER FOR QUALCOMM MSM
16212 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16213 L:      linux-pci@vger.kernel.org
16214 L:      linux-arm-msm@vger.kernel.org
16215 S:      Maintained
16216 F:      drivers/pci/controller/dwc/pcie-qcom.c
16217
16218 PCIE ENDPOINT DRIVER FOR QUALCOMM
16219 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16220 L:      linux-pci@vger.kernel.org
16221 L:      linux-arm-msm@vger.kernel.org
16222 S:      Maintained
16223 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16224 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16225
16226 PCIE DRIVER FOR ROCKCHIP
16227 M:      Shawn Lin <shawn.lin@rock-chips.com>
16228 L:      linux-pci@vger.kernel.org
16229 L:      linux-rockchip@lists.infradead.org
16230 S:      Maintained
16231 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16232 F:      drivers/pci/controller/pcie-rockchip*
16233
16234 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16235 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16236 L:      linux-pci@vger.kernel.org
16237 S:      Maintained
16238 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16239 F:      drivers/pci/controller/dwc/pcie-uniphier*
16240
16241 PCIE DRIVER FOR ST SPEAR13XX
16242 M:      Pratyush Anand <pratyush.anand@gmail.com>
16243 L:      linux-pci@vger.kernel.org
16244 S:      Maintained
16245 F:      drivers/pci/controller/dwc/*spear*
16246
16247 PCI DRIVER FOR XILINX VERSAL CPM
16248 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16249 M:      Michal Simek <michal.simek@amd.com>
16250 L:      linux-pci@vger.kernel.org
16251 S:      Maintained
16252 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16253 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16254
16255 PCMCIA SUBSYSTEM
16256 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16257 S:      Odd Fixes
16258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16259 F:      Documentation/pcmcia/
16260 F:      drivers/pcmcia/
16261 F:      include/pcmcia/
16262 F:      tools/pcmcia/
16263
16264 PCNET32 NETWORK DRIVER
16265 M:      Don Fry <pcnet32@frontier.com>
16266 L:      netdev@vger.kernel.org
16267 S:      Maintained
16268 F:      drivers/net/ethernet/amd/pcnet32.c
16269
16270 PCRYPT PARALLEL CRYPTO ENGINE
16271 M:      Steffen Klassert <steffen.klassert@secunet.com>
16272 L:      linux-crypto@vger.kernel.org
16273 S:      Maintained
16274 F:      crypto/pcrypt.c
16275 F:      include/crypto/pcrypt.h
16276
16277 PEAQ WMI HOTKEYS DRIVER
16278 M:      Hans de Goede <hdegoede@redhat.com>
16279 L:      platform-driver-x86@vger.kernel.org
16280 S:      Maintained
16281 F:      drivers/platform/x86/peaq-wmi.c
16282
16283 PECI HARDWARE MONITORING DRIVERS
16284 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16285 L:      linux-hwmon@vger.kernel.org
16286 S:      Supported
16287 F:      Documentation/hwmon/peci-cputemp.rst
16288 F:      Documentation/hwmon/peci-dimmtemp.rst
16289 F:      drivers/hwmon/peci/
16290
16291 PECI SUBSYSTEM
16292 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16293 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16294 S:      Supported
16295 F:      Documentation/devicetree/bindings/peci/
16296 F:      Documentation/peci/
16297 F:      drivers/peci/
16298 F:      include/linux/peci-cpu.h
16299 F:      include/linux/peci.h
16300
16301 PENSANDO ETHERNET DRIVERS
16302 M:      Shannon Nelson <shannon.nelson@amd.com>
16303 M:      Brett Creeley <brett.creeley@amd.com>
16304 M:      drivers@pensando.io
16305 L:      netdev@vger.kernel.org
16306 S:      Supported
16307 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16308 F:      drivers/net/ethernet/pensando/
16309
16310 PER-CPU MEMORY ALLOCATOR
16311 M:      Dennis Zhou <dennis@kernel.org>
16312 M:      Tejun Heo <tj@kernel.org>
16313 M:      Christoph Lameter <cl@linux.com>
16314 L:      linux-mm@kvack.org
16315 S:      Maintained
16316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16317 F:      arch/*/include/asm/percpu.h
16318 F:      include/linux/percpu*.h
16319 F:      lib/percpu*.c
16320 F:      mm/percpu*.c
16321
16322 PER-TASK DELAY ACCOUNTING
16323 M:      Balbir Singh <bsingharora@gmail.com>
16324 S:      Maintained
16325 F:      include/linux/delayacct.h
16326 F:      kernel/delayacct.c
16327
16328 PERFORMANCE EVENTS SUBSYSTEM
16329 M:      Peter Zijlstra <peterz@infradead.org>
16330 M:      Ingo Molnar <mingo@redhat.com>
16331 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16332 R:      Mark Rutland <mark.rutland@arm.com>
16333 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16334 R:      Jiri Olsa <jolsa@kernel.org>
16335 R:      Namhyung Kim <namhyung@kernel.org>
16336 L:      linux-perf-users@vger.kernel.org
16337 L:      linux-kernel@vger.kernel.org
16338 S:      Supported
16339 W:      https://perf.wiki.kernel.org/
16340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16341 F:      arch/*/events/*
16342 F:      arch/*/events/*/*
16343 F:      arch/*/include/asm/perf_event.h
16344 F:      arch/*/kernel/*/*/perf_event*.c
16345 F:      arch/*/kernel/*/perf_event*.c
16346 F:      arch/*/kernel/perf_callchain.c
16347 F:      arch/*/kernel/perf_event*.c
16348 F:      include/linux/perf_event.h
16349 F:      include/uapi/linux/perf_event.h
16350 F:      kernel/events/*
16351 F:      tools/lib/perf/
16352 F:      tools/perf/
16353
16354 PERFORMANCE EVENTS TOOLING ARM64
16355 R:      John Garry <john.g.garry@oracle.com>
16356 R:      Will Deacon <will@kernel.org>
16357 R:      James Clark <james.clark@arm.com>
16358 R:      Mike Leach <mike.leach@linaro.org>
16359 R:      Leo Yan <leo.yan@linaro.org>
16360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16361 S:      Supported
16362 F:      tools/build/feature/test-libopencsd.c
16363 F:      tools/perf/arch/arm*/
16364 F:      tools/perf/pmu-events/arch/arm64/
16365 F:      tools/perf/util/arm-spe*
16366 F:      tools/perf/util/cs-etm*
16367
16368 PERSONALITY HANDLING
16369 M:      Christoph Hellwig <hch@infradead.org>
16370 L:      linux-abi-devel@lists.sourceforge.net
16371 S:      Maintained
16372 F:      include/linux/personality.h
16373 F:      include/uapi/linux/personality.h
16374
16375 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16376 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16377 L:      linux-input@vger.kernel.org
16378 S:      Maintained
16379 F:      Documentation/input/devices/pxrc.rst
16380 F:      drivers/input/joystick/pxrc.c
16381
16382 PHONET PROTOCOL
16383 M:      Remi Denis-Courmont <courmisch@gmail.com>
16384 S:      Supported
16385 F:      Documentation/networking/phonet.rst
16386 F:      include/linux/phonet.h
16387 F:      include/net/phonet/
16388 F:      include/uapi/linux/phonet.h
16389 F:      net/phonet/
16390
16391 PHRAM MTD DRIVER
16392 M:      Joern Engel <joern@lazybastard.org>
16393 L:      linux-mtd@lists.infradead.org
16394 S:      Maintained
16395 F:      drivers/mtd/devices/phram.c
16396
16397 PICOLCD HID DRIVER
16398 M:      Bruno Prémont <bonbons@linux-vserver.org>
16399 L:      linux-input@vger.kernel.org
16400 S:      Maintained
16401 F:      drivers/hid/hid-picolcd*
16402
16403 PIDFD API
16404 M:      Christian Brauner <christian@brauner.io>
16405 L:      linux-kernel@vger.kernel.org
16406 S:      Maintained
16407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16408 F:      samples/pidfd/
16409 F:      tools/testing/selftests/clone3/
16410 F:      tools/testing/selftests/pid_namespace/
16411 F:      tools/testing/selftests/pidfd/
16412 K:      (?i)pidfd
16413 K:      (?i)clone3
16414 K:      \b(clone_args|kernel_clone_args)\b
16415
16416 PIN CONTROL SUBSYSTEM
16417 M:      Linus Walleij <linus.walleij@linaro.org>
16418 L:      linux-gpio@vger.kernel.org
16419 S:      Maintained
16420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16421 F:      Documentation/devicetree/bindings/pinctrl/
16422 F:      Documentation/driver-api/pin-control.rst
16423 F:      drivers/pinctrl/
16424 F:      include/dt-bindings/pinctrl/
16425 F:      include/linux/pinctrl/
16426
16427 PIN CONTROLLER - AMD
16428 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16429 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16430 S:      Maintained
16431 F:      drivers/pinctrl/pinctrl-amd.c
16432
16433 PIN CONTROLLER - FREESCALE
16434 M:      Dong Aisheng <aisheng.dong@nxp.com>
16435 M:      Fabio Estevam <festevam@gmail.com>
16436 M:      Shawn Guo <shawnguo@kernel.org>
16437 M:      Jacky Bai <ping.bai@nxp.com>
16438 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16439 L:      linux-gpio@vger.kernel.org
16440 S:      Maintained
16441 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16442 F:      drivers/pinctrl/freescale/
16443
16444 PIN CONTROLLER - INTEL
16445 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16446 M:      Andy Shevchenko <andy@kernel.org>
16447 S:      Supported
16448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16449 F:      drivers/pinctrl/intel/
16450
16451 PIN CONTROLLER - KEEMBAY
16452 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16453 S:      Supported
16454 F:      drivers/pinctrl/pinctrl-keembay*
16455
16456 PIN CONTROLLER - MEDIATEK
16457 M:      Sean Wang <sean.wang@kernel.org>
16458 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16459 S:      Maintained
16460 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16461 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16462 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16463 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16464 F:      drivers/pinctrl/mediatek/
16465
16466 PIN CONTROLLER - MICROCHIP AT91
16467 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16469 L:      linux-gpio@vger.kernel.org
16470 S:      Supported
16471 F:      drivers/gpio/gpio-sama5d2-piobu.c
16472 F:      drivers/pinctrl/pinctrl-at91*
16473
16474 PIN CONTROLLER - QUALCOMM
16475 M:      Bjorn Andersson <andersson@kernel.org>
16476 L:      linux-arm-msm@vger.kernel.org
16477 S:      Maintained
16478 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16479 F:      drivers/pinctrl/qcom/
16480
16481 PIN CONTROLLER - RENESAS
16482 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16483 L:      linux-renesas-soc@vger.kernel.org
16484 S:      Supported
16485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16486 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16487 F:      drivers/pinctrl/renesas/
16488
16489 PIN CONTROLLER - SAMSUNG
16490 M:      Tomasz Figa <tomasz.figa@gmail.com>
16491 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16492 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16493 R:      Alim Akhtar <alim.akhtar@samsung.com>
16494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16495 L:      linux-samsung-soc@vger.kernel.org
16496 S:      Maintained
16497 C:      irc://irc.libera.chat/linux-exynos
16498 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16499 B:      mailto:linux-samsung-soc@vger.kernel.org
16500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16501 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16502 F:      drivers/pinctrl/samsung/
16503 F:      include/dt-bindings/pinctrl/samsung.h
16504
16505 PIN CONTROLLER - SINGLE
16506 M:      Tony Lindgren <tony@atomide.com>
16507 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16509 L:      linux-omap@vger.kernel.org
16510 S:      Maintained
16511 F:      drivers/pinctrl/pinctrl-single.c
16512
16513 PIN CONTROLLER - THUNDERBAY
16514 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16515 S:      Supported
16516 F:      drivers/pinctrl/pinctrl-thunderbay.c
16517
16518 PIN CONTROLLER - SUNPLUS / TIBBO
16519 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16520 M:      Wells Lu <wellslutw@gmail.com>
16521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16522 S:      Maintained
16523 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16524 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16525 F:      drivers/pinctrl/sunplus/
16526 F:      include/dt-bindings/pinctrl/sppctl*.h
16527
16528 PINE64 PINEPHONE KEYBOARD DRIVER
16529 M:      Samuel Holland <samuel@sholland.org>
16530 S:      Supported
16531 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16532 F:      drivers/input/keyboard/pinephone-keyboard.c
16533
16534 PKTCDVD DRIVER
16535 M:      linux-block@vger.kernel.org
16536 S:      Orphan
16537 F:      drivers/block/pktcdvd.c
16538 F:      include/linux/pktcdvd.h
16539 F:      include/uapi/linux/pktcdvd.h
16540
16541 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16542 M:      Tomasz Duszynski <tduszyns@gmail.com>
16543 S:      Maintained
16544 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16545 F:      drivers/iio/chemical/pms7003.c
16546
16547 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16548 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16549 L:      netdev@vger.kernel.org
16550 S:      Maintained
16551 F:      drivers/net/phy/mdio-open-alliance.h
16552 F:      net/ethtool/plca.c
16553
16554 PLDMFW LIBRARY
16555 M:      Jacob Keller <jacob.e.keller@intel.com>
16556 S:      Maintained
16557 F:      Documentation/driver-api/pldmfw/
16558 F:      include/linux/pldmfw.h
16559 F:      lib/pldmfw/
16560
16561 PLX DMA DRIVER
16562 M:      Logan Gunthorpe <logang@deltatee.com>
16563 S:      Maintained
16564 F:      drivers/dma/plx_dma.c
16565
16566 PM6764TR DRIVER
16567 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16568 L:      linux-hwmon@vger.kernel.org
16569 S:      Maintained
16570 F:      Documentation/hwmon/pm6764tr.rst
16571 F:      drivers/hwmon/pmbus/pm6764tr.c
16572
16573 PM-GRAPH UTILITY
16574 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16575 L:      linux-pm@vger.kernel.org
16576 S:      Supported
16577 W:      https://01.org/pm-graph
16578 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16579 T:      git git://github.com/intel/pm-graph
16580 F:      tools/power/pm-graph
16581
16582 PMBUS HARDWARE MONITORING DRIVERS
16583 M:      Guenter Roeck <linux@roeck-us.net>
16584 L:      linux-hwmon@vger.kernel.org
16585 S:      Maintained
16586 W:      http://hwmon.wiki.kernel.org/
16587 W:      http://www.roeck-us.net/linux/drivers/
16588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16589 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16590 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16591 F:      Documentation/hwmon/adm1275.rst
16592 F:      Documentation/hwmon/ibm-cffps.rst
16593 F:      Documentation/hwmon/ir35221.rst
16594 F:      Documentation/hwmon/lm25066.rst
16595 F:      Documentation/hwmon/ltc2978.rst
16596 F:      Documentation/hwmon/ltc3815.rst
16597 F:      Documentation/hwmon/max16064.rst
16598 F:      Documentation/hwmon/max20751.rst
16599 F:      Documentation/hwmon/max31785.rst
16600 F:      Documentation/hwmon/max34440.rst
16601 F:      Documentation/hwmon/max8688.rst
16602 F:      Documentation/hwmon/pmbus-core.rst
16603 F:      Documentation/hwmon/pmbus.rst
16604 F:      Documentation/hwmon/tps40422.rst
16605 F:      Documentation/hwmon/ucd9000.rst
16606 F:      Documentation/hwmon/ucd9200.rst
16607 F:      Documentation/hwmon/zl6100.rst
16608 F:      drivers/hwmon/pmbus/
16609 F:      include/linux/pmbus.h
16610
16611 PMC SIERRA MaxRAID DRIVER
16612 L:      linux-scsi@vger.kernel.org
16613 S:      Orphan
16614 W:      http://www.pmc-sierra.com/
16615 F:      drivers/scsi/pmcraid.*
16616
16617 PMC SIERRA PM8001 DRIVER
16618 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16619 L:      linux-scsi@vger.kernel.org
16620 S:      Supported
16621 F:      drivers/scsi/pm8001/
16622
16623 PNI RM3100 IIO DRIVER
16624 M:      Song Qiang <songqiang1304521@gmail.com>
16625 L:      linux-iio@vger.kernel.org
16626 S:      Maintained
16627 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16628 F:      drivers/iio/magnetometer/rm3100*
16629
16630 PNP SUPPORT
16631 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16632 L:      linux-acpi@vger.kernel.org
16633 S:      Maintained
16634 F:      drivers/pnp/
16635 F:      include/linux/pnp.h
16636
16637 POSIX CLOCKS and TIMERS
16638 M:      Thomas Gleixner <tglx@linutronix.de>
16639 L:      linux-kernel@vger.kernel.org
16640 S:      Maintained
16641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16642 F:      fs/timerfd.c
16643 F:      include/linux/time_namespace.h
16644 F:      include/linux/timer*
16645 F:      kernel/time/*timer*
16646 F:      kernel/time/namespace.c
16647
16648 POWER MANAGEMENT CORE
16649 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16650 L:      linux-pm@vger.kernel.org
16651 S:      Supported
16652 B:      https://bugzilla.kernel.org
16653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16654 F:      drivers/base/power/
16655 F:      drivers/powercap/
16656 F:      include/linux/intel_rapl.h
16657 F:      include/linux/pm.h
16658 F:      include/linux/pm_*
16659 F:      include/linux/powercap.h
16660 F:      kernel/configs/nopm.config
16661
16662 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16663 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16664 L:      linux-pm@vger.kernel.org
16665 S:      Supported
16666 B:      https://bugzilla.kernel.org
16667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16668 F:      drivers/powercap/dtpm*
16669 F:      include/linux/dtpm.h
16670
16671 POWER STATE COORDINATION INTERFACE (PSCI)
16672 M:      Mark Rutland <mark.rutland@arm.com>
16673 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16675 S:      Maintained
16676 F:      drivers/firmware/psci/
16677 F:      include/linux/psci.h
16678 F:      include/uapi/linux/psci.h
16679
16680 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16681 M:      Sebastian Reichel <sre@kernel.org>
16682 L:      linux-pm@vger.kernel.org
16683 S:      Maintained
16684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16685 F:      Documentation/ABI/testing/sysfs-class-power
16686 F:      Documentation/devicetree/bindings/power/supply/
16687 F:      drivers/power/supply/
16688 F:      include/linux/power/
16689 F:      include/linux/power_supply.h
16690
16691 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16692 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16693 L:      linuxppc-dev@lists.ozlabs.org
16694 S:      Maintained
16695 F:      drivers/char/powernv-op-panel.c
16696
16697 PPP OVER ATM (RFC 2364)
16698 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16699 S:      Maintained
16700 F:      include/uapi/linux/atmppp.h
16701 F:      net/atm/pppoatm.c
16702
16703 PPP OVER ETHERNET
16704 M:      Michal Ostrowski <mostrows@earthlink.net>
16705 S:      Maintained
16706 F:      drivers/net/ppp/pppoe.c
16707 F:      drivers/net/ppp/pppox.c
16708
16709 PPP OVER L2TP
16710 M:      James Chapman <jchapman@katalix.com>
16711 S:      Maintained
16712 F:      include/linux/if_pppol2tp.h
16713 F:      include/uapi/linux/if_pppol2tp.h
16714 F:      net/l2tp/l2tp_ppp.c
16715
16716 PPP PROTOCOL DRIVERS AND COMPRESSORS
16717 M:      Paul Mackerras <paulus@samba.org>
16718 L:      linux-ppp@vger.kernel.org
16719 S:      Maintained
16720 F:      drivers/net/ppp/ppp_*
16721
16722 PPS SUPPORT
16723 M:      Rodolfo Giometti <giometti@enneenne.com>
16724 L:      linuxpps@ml.enneenne.com (subscribers-only)
16725 S:      Maintained
16726 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16727 F:      Documentation/ABI/testing/sysfs-pps
16728 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16729 F:      Documentation/driver-api/pps.rst
16730 F:      drivers/pps/
16731 F:      include/linux/pps*.h
16732 F:      include/uapi/linux/pps.h
16733
16734 PPTP DRIVER
16735 M:      Dmitry Kozlov <xeb@mail.ru>
16736 L:      netdev@vger.kernel.org
16737 S:      Maintained
16738 W:      http://sourceforge.net/projects/accel-pptp
16739 F:      drivers/net/ppp/pptp.c
16740
16741 PRESSURE STALL INFORMATION (PSI)
16742 M:      Johannes Weiner <hannes@cmpxchg.org>
16743 M:      Suren Baghdasaryan <surenb@google.com>
16744 S:      Maintained
16745 F:      include/linux/psi*
16746 F:      kernel/sched/psi.c
16747
16748 PRINTK
16749 M:      Petr Mladek <pmladek@suse.com>
16750 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16751 R:      Steven Rostedt <rostedt@goodmis.org>
16752 R:      John Ogness <john.ogness@linutronix.de>
16753 S:      Maintained
16754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16755 F:      include/linux/printk.h
16756 F:      kernel/printk/
16757
16758 PRINTK INDEXING
16759 R:      Chris Down <chris@chrisdown.name>
16760 S:      Maintained
16761 F:      Documentation/core-api/printk-index.rst
16762 F:      kernel/printk/index.c
16763 K:      printk_index
16764
16765 PROC FILESYSTEM
16766 L:      linux-kernel@vger.kernel.org
16767 L:      linux-fsdevel@vger.kernel.org
16768 S:      Maintained
16769 F:      Documentation/filesystems/proc.rst
16770 F:      fs/proc/
16771 F:      include/linux/proc_fs.h
16772 F:      tools/testing/selftests/proc/
16773
16774 PROC SYSCTL
16775 M:      Luis Chamberlain <mcgrof@kernel.org>
16776 M:      Kees Cook <keescook@chromium.org>
16777 M:      Iurii Zaikin <yzaikin@google.com>
16778 L:      linux-kernel@vger.kernel.org
16779 L:      linux-fsdevel@vger.kernel.org
16780 S:      Maintained
16781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16782 F:      fs/proc/proc_sysctl.c
16783 F:      include/linux/sysctl.h
16784 F:      kernel/sysctl-test.c
16785 F:      kernel/sysctl.c
16786 F:      tools/testing/selftests/sysctl/
16787
16788 PS3 NETWORK SUPPORT
16789 M:      Geoff Levand <geoff@infradead.org>
16790 L:      netdev@vger.kernel.org
16791 L:      linuxppc-dev@lists.ozlabs.org
16792 S:      Maintained
16793 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16794
16795 PS3 PLATFORM SUPPORT
16796 M:      Geoff Levand <geoff@infradead.org>
16797 L:      linuxppc-dev@lists.ozlabs.org
16798 S:      Maintained
16799 F:      arch/powerpc/boot/ps3*
16800 F:      arch/powerpc/include/asm/lv1call.h
16801 F:      arch/powerpc/include/asm/ps3*.h
16802 F:      arch/powerpc/platforms/ps3/
16803 F:      drivers/*/ps3*
16804 F:      drivers/ps3/
16805 F:      drivers/rtc/rtc-ps3.c
16806 F:      drivers/usb/host/*ps3.c
16807 F:      sound/ppc/snd_ps3*
16808
16809 PS3VRAM DRIVER
16810 M:      Jim Paris <jim@jtan.com>
16811 M:      Geoff Levand <geoff@infradead.org>
16812 L:      linuxppc-dev@lists.ozlabs.org
16813 S:      Maintained
16814 F:      drivers/block/ps3vram.c
16815
16816 PSAMPLE PACKET SAMPLING SUPPORT
16817 M:      Yotam Gigi <yotam.gi@gmail.com>
16818 S:      Maintained
16819 F:      include/net/psample.h
16820 F:      include/uapi/linux/psample.h
16821 F:      net/psample
16822
16823 PSTORE FILESYSTEM
16824 M:      Kees Cook <keescook@chromium.org>
16825 R:      Tony Luck <tony.luck@intel.com>
16826 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16827 L:      linux-hardening@vger.kernel.org
16828 S:      Supported
16829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16830 F:      Documentation/admin-guide/ramoops.rst
16831 F:      Documentation/admin-guide/pstore-blk.rst
16832 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16833 F:      drivers/acpi/apei/erst.c
16834 F:      drivers/firmware/efi/efi-pstore.c
16835 F:      fs/pstore/
16836 F:      include/linux/pstore*
16837 K:      \b(pstore|ramoops)
16838
16839 PTP HARDWARE CLOCK SUPPORT
16840 M:      Richard Cochran <richardcochran@gmail.com>
16841 L:      netdev@vger.kernel.org
16842 S:      Maintained
16843 W:      http://linuxptp.sourceforge.net/
16844 F:      Documentation/ABI/testing/sysfs-ptp
16845 F:      Documentation/driver-api/ptp.rst
16846 F:      drivers/net/phy/dp83640*
16847 F:      drivers/ptp/*
16848 F:      include/linux/ptp_cl*
16849 K:      (?:\b|_)ptp(?:\b|_)
16850
16851 PTP VIRTUAL CLOCK SUPPORT
16852 M:      Yangbo Lu <yangbo.lu@nxp.com>
16853 L:      netdev@vger.kernel.org
16854 S:      Maintained
16855 F:      drivers/ptp/ptp_vclock.c
16856 F:      net/ethtool/phc_vclocks.c
16857
16858 PTRACE SUPPORT
16859 M:      Oleg Nesterov <oleg@redhat.com>
16860 S:      Maintained
16861 F:      arch/*/*/ptrace*.c
16862 F:      arch/*/include/asm/ptrace*.h
16863 F:      arch/*/ptrace*.c
16864 F:      include/asm-generic/syscall.h
16865 F:      include/linux/ptrace.h
16866 F:      include/linux/regset.h
16867 F:      include/uapi/linux/ptrace.h
16868 F:      kernel/ptrace.c
16869
16870 PULSE8-CEC DRIVER
16871 M:      Hans Verkuil <hverkuil@xs4all.nl>
16872 L:      linux-media@vger.kernel.org
16873 S:      Maintained
16874 T:      git git://linuxtv.org/media_tree.git
16875 F:      drivers/media/cec/usb/pulse8/
16876
16877 PURELIFI PLFXLC DRIVER
16878 M:      Srinivasan Raju <srini.raju@purelifi.com>
16879 L:      linux-wireless@vger.kernel.org
16880 S:      Supported
16881 F:      drivers/net/wireless/purelifi/plfxlc/
16882
16883 PVRUSB2 VIDEO4LINUX DRIVER
16884 M:      Mike Isely <isely@pobox.com>
16885 L:      pvrusb2@isely.net       (subscribers-only)
16886 L:      linux-media@vger.kernel.org
16887 S:      Maintained
16888 W:      http://www.isely.net/pvrusb2/
16889 T:      git git://linuxtv.org/media_tree.git
16890 F:      Documentation/driver-api/media/drivers/pvrusb2*
16891 F:      drivers/media/usb/pvrusb2/
16892
16893 PWC WEBCAM DRIVER
16894 M:      Hans Verkuil <hverkuil@xs4all.nl>
16895 L:      linux-media@vger.kernel.org
16896 S:      Odd Fixes
16897 T:      git git://linuxtv.org/media_tree.git
16898 F:      drivers/media/usb/pwc/*
16899 F:      include/trace/events/pwc.h
16900
16901 PWM IR Transmitter
16902 M:      Sean Young <sean@mess.org>
16903 L:      linux-media@vger.kernel.org
16904 S:      Maintained
16905 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16906 F:      drivers/media/rc/pwm-ir-tx.c
16907
16908 PWM SUBSYSTEM
16909 M:      Thierry Reding <thierry.reding@gmail.com>
16910 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16911 L:      linux-pwm@vger.kernel.org
16912 S:      Maintained
16913 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16915 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16916 F:      Documentation/devicetree/bindings/pwm/
16917 F:      Documentation/driver-api/pwm.rst
16918 F:      drivers/gpio/gpio-mvebu.c
16919 F:      drivers/pwm/
16920 F:      drivers/video/backlight/pwm_bl.c
16921 F:      include/dt-bindings/pwm/
16922 F:      include/linux/pwm.h
16923 F:      include/linux/pwm_backlight.h
16924 K:      pwm_(config|apply_state|ops)
16925
16926 PXA GPIO DRIVER
16927 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16928 L:      linux-gpio@vger.kernel.org
16929 S:      Maintained
16930 F:      drivers/gpio/gpio-pxa.c
16931
16932 PXA MMCI DRIVER
16933 S:      Orphan
16934
16935 PXA RTC DRIVER
16936 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16937 L:      linux-rtc@vger.kernel.org
16938 S:      Maintained
16939
16940 PXA2xx/PXA3xx SUPPORT
16941 M:      Daniel Mack <daniel@zonque.org>
16942 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16943 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16945 S:      Maintained
16946 T:      git git://github.com/hzhuang1/linux.git
16947 T:      git git://github.com/rjarzmik/linux.git
16948 F:      arch/arm/boot/dts/pxa*
16949 F:      arch/arm/mach-pxa/
16950 F:      drivers/dma/pxa*
16951 F:      drivers/pcmcia/pxa2xx*
16952 F:      drivers/pinctrl/pxa/
16953 F:      drivers/spi/spi-pxa2xx*
16954 F:      drivers/usb/gadget/udc/pxa2*
16955 F:      include/sound/pxa2xx-lib.h
16956 F:      sound/arm/pxa*
16957 F:      sound/soc/pxa/
16958
16959 QAT DRIVER
16960 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16961 L:      qat-linux@intel.com
16962 S:      Supported
16963 F:      drivers/crypto/qat/
16964
16965 QCOM AUDIO (ASoC) DRIVERS
16966 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16967 M:      Banajit Goswami <bgoswami@quicinc.com>
16968 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16969 S:      Supported
16970 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16971 F:      Documentation/devicetree/bindings/sound/qcom,*
16972 F:      drivers/soc/qcom/apr.c
16973 F:      include/dt-bindings/sound/qcom,wcd9335.h
16974 F:      sound/soc/codecs/lpass-rx-macro.*
16975 F:      sound/soc/codecs/lpass-tx-macro.*
16976 F:      sound/soc/codecs/lpass-va-macro.c
16977 F:      sound/soc/codecs/lpass-wsa-macro.*
16978 F:      sound/soc/codecs/msm8916-wcd-analog.c
16979 F:      sound/soc/codecs/msm8916-wcd-digital.c
16980 F:      sound/soc/codecs/wcd9335.*
16981 F:      sound/soc/codecs/wcd934x.c
16982 F:      sound/soc/codecs/wcd-clsh-v2.*
16983 F:      sound/soc/codecs/wcd-mbhc-v2.*
16984 F:      sound/soc/codecs/wsa881x.c
16985 F:      sound/soc/codecs/wsa883x.c
16986 F:      sound/soc/qcom/
16987
16988 QCOM EMBEDDED USB DEBUGGER (EUD)
16989 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16990 L:      linux-arm-msm@vger.kernel.org
16991 S:      Maintained
16992 F:      Documentation/ABI/testing/sysfs-driver-eud
16993 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16994 F:      drivers/usb/misc/qcom_eud.c
16995
16996 QCOM IPA DRIVER
16997 M:      Alex Elder <elder@kernel.org>
16998 L:      netdev@vger.kernel.org
16999 S:      Supported
17000 F:      drivers/net/ipa/
17001
17002 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17003 M:      Gabriel Somlo <somlo@cmu.edu>
17004 M:      "Michael S. Tsirkin" <mst@redhat.com>
17005 L:      qemu-devel@nongnu.org
17006 S:      Maintained
17007 F:      drivers/firmware/qemu_fw_cfg.c
17008 F:      include/uapi/linux/qemu_fw_cfg.h
17009
17010 QIB DRIVER
17011 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17012 L:      linux-rdma@vger.kernel.org
17013 S:      Supported
17014 F:      drivers/infiniband/hw/qib/
17015
17016 QLOGIC QL41xxx FCOE DRIVER
17017 M:      Saurav Kashyap <skashyap@marvell.com>
17018 M:      Javed Hasan <jhasan@marvell.com>
17019 M:      GR-QLogic-Storage-Upstream@marvell.com
17020 L:      linux-scsi@vger.kernel.org
17021 S:      Supported
17022 F:      drivers/scsi/qedf/
17023
17024 QLOGIC QL41xxx ISCSI DRIVER
17025 M:      Nilesh Javali <njavali@marvell.com>
17026 M:      Manish Rangankar <mrangankar@marvell.com>
17027 M:      GR-QLogic-Storage-Upstream@marvell.com
17028 L:      linux-scsi@vger.kernel.org
17029 S:      Supported
17030 F:      drivers/scsi/qedi/
17031
17032 QLOGIC QL4xxx ETHERNET DRIVER
17033 M:      Ariel Elior <aelior@marvell.com>
17034 M:      Manish Chopra <manishc@marvell.com>
17035 L:      netdev@vger.kernel.org
17036 S:      Supported
17037 F:      drivers/net/ethernet/qlogic/qed/
17038 F:      drivers/net/ethernet/qlogic/qede/
17039 F:      include/linux/qed/
17040
17041 QLOGIC QL4xxx RDMA DRIVER
17042 M:      Michal Kalderon <mkalderon@marvell.com>
17043 M:      Ariel Elior <aelior@marvell.com>
17044 L:      linux-rdma@vger.kernel.org
17045 S:      Supported
17046 F:      drivers/infiniband/hw/qedr/
17047 F:      include/uapi/rdma/qedr-abi.h
17048
17049 QLOGIC QLA1280 SCSI DRIVER
17050 M:      Michael Reed <mdr@sgi.com>
17051 L:      linux-scsi@vger.kernel.org
17052 S:      Maintained
17053 F:      drivers/scsi/qla1280.[ch]
17054
17055 QLOGIC QLA2XXX FC-SCSI DRIVER
17056 M:      Nilesh Javali <njavali@marvell.com>
17057 M:      GR-QLogic-Storage-Upstream@marvell.com
17058 L:      linux-scsi@vger.kernel.org
17059 S:      Supported
17060 F:      drivers/scsi/qla2xxx/
17061
17062 QLOGIC QLA3XXX NETWORK DRIVER
17063 M:      GR-Linux-NIC-Dev@marvell.com
17064 L:      netdev@vger.kernel.org
17065 S:      Supported
17066 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17067
17068 QLOGIC QLA4XXX iSCSI DRIVER
17069 M:      Nilesh Javali <njavali@marvell.com>
17070 M:      Manish Rangankar <mrangankar@marvell.com>
17071 M:      GR-QLogic-Storage-Upstream@marvell.com
17072 L:      linux-scsi@vger.kernel.org
17073 S:      Supported
17074 F:      drivers/scsi/qla4xxx/
17075
17076 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17077 M:      Shahed Shaikh <shshaikh@marvell.com>
17078 M:      Manish Chopra <manishc@marvell.com>
17079 M:      GR-Linux-NIC-Dev@marvell.com
17080 L:      netdev@vger.kernel.org
17081 S:      Supported
17082 F:      drivers/net/ethernet/qlogic/qlcnic/
17083
17084 QLOGIC QLGE 10Gb ETHERNET DRIVER
17085 M:      Manish Chopra <manishc@marvell.com>
17086 M:      GR-Linux-NIC-Dev@marvell.com
17087 M:      Coiby Xu <coiby.xu@gmail.com>
17088 L:      netdev@vger.kernel.org
17089 S:      Supported
17090 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17091 F:      drivers/staging/qlge/
17092
17093 QM1D1B0004 MEDIA DRIVER
17094 M:      Akihiro Tsukada <tskd08@gmail.com>
17095 L:      linux-media@vger.kernel.org
17096 S:      Odd Fixes
17097 F:      drivers/media/tuners/qm1d1b0004*
17098
17099 QM1D1C0042 MEDIA DRIVER
17100 M:      Akihiro Tsukada <tskd08@gmail.com>
17101 L:      linux-media@vger.kernel.org
17102 S:      Odd Fixes
17103 F:      drivers/media/tuners/qm1d1c0042*
17104
17105 QNX4 FILESYSTEM
17106 M:      Anders Larsen <al@alarsen.net>
17107 S:      Maintained
17108 W:      http://www.alarsen.net/linux/qnx4fs/
17109 F:      fs/qnx4/
17110 F:      include/uapi/linux/qnx4_fs.h
17111 F:      include/uapi/linux/qnxtypes.h
17112
17113 QORIQ DPAA2 FSL-MC BUS DRIVER
17114 M:      Stuart Yoder <stuyoder@gmail.com>
17115 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17116 L:      linux-kernel@vger.kernel.org
17117 S:      Maintained
17118 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17119 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17120 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17121 F:      drivers/bus/fsl-mc/
17122 F:      include/uapi/linux/fsl_mc.h
17123
17124 QT1010 MEDIA DRIVER
17125 M:      Antti Palosaari <crope@iki.fi>
17126 L:      linux-media@vger.kernel.org
17127 S:      Maintained
17128 W:      https://linuxtv.org
17129 W:      http://palosaari.fi/linux/
17130 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17131 T:      git git://linuxtv.org/anttip/media_tree.git
17132 F:      drivers/media/tuners/qt1010*
17133
17134 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17135 M:      Kalle Valo <kvalo@kernel.org>
17136 L:      ath10k@lists.infradead.org
17137 S:      Supported
17138 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17140 F:      drivers/net/wireless/ath/ath10k/
17141 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17142
17143 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17144 M:      Kalle Valo <kvalo@kernel.org>
17145 L:      ath11k@lists.infradead.org
17146 S:      Supported
17147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17148 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17149 F:      drivers/net/wireless/ath/ath11k/
17150
17151 QUALCOMM ATH12K WIRELESS DRIVER
17152 M:      Kalle Valo <kvalo@kernel.org>
17153 L:      ath12k@lists.infradead.org
17154 S:      Supported
17155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17156 F:      drivers/net/wireless/ath/ath12k/
17157
17158 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17159 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17160 L:      linux-wireless@vger.kernel.org
17161 S:      Maintained
17162 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17163 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17164 F:      drivers/net/wireless/ath/ath9k/
17165
17166 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17167 M:      Stephan Gerhold <stephan@gerhold.net>
17168 L:      netdev@vger.kernel.org
17169 L:      linux-arm-msm@vger.kernel.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17172 F:      drivers/net/wwan/qcom_bam_dmux.c
17173
17174 QUALCOMM CAMERA SUBSYSTEM DRIVER
17175 M:      Robert Foss <rfoss@kernel.org>
17176 M:      Todor Tomov <todor.too@gmail.com>
17177 L:      linux-media@vger.kernel.org
17178 S:      Maintained
17179 F:      Documentation/admin-guide/media/qcom_camss.rst
17180 F:      Documentation/devicetree/bindings/media/*camss*
17181 F:      drivers/media/platform/qcom/camss/
17182
17183 QUALCOMM CLOCK DRIVERS
17184 M:      Bjorn Andersson <andersson@kernel.org>
17185 L:      linux-arm-msm@vger.kernel.org
17186 S:      Supported
17187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17188 F:      Documentation/devicetree/bindings/clock/qcom,*
17189 F:      drivers/clk/qcom/
17190 F:      include/dt-bindings/clock/qcom,*
17191
17192 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17193 M:      Niklas Cassel <nks@flawful.org>
17194 L:      linux-pm@vger.kernel.org
17195 L:      linux-arm-msm@vger.kernel.org
17196 S:      Maintained
17197 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17198 F:      drivers/soc/qcom/cpr.c
17199
17200 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17201 M:      Ilia Lin <ilia.lin@kernel.org>
17202 L:      linux-pm@vger.kernel.org
17203 S:      Maintained
17204 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17205 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17206 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17207
17208 QUALCOMM CRYPTO DRIVERS
17209 M:      Thara Gopinath <thara.gopinath@gmail.com>
17210 L:      linux-crypto@vger.kernel.org
17211 L:      linux-arm-msm@vger.kernel.org
17212 S:      Maintained
17213 F:      drivers/crypto/qce/
17214
17215 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17216 M:      Timur Tabi <timur@kernel.org>
17217 L:      netdev@vger.kernel.org
17218 S:      Maintained
17219 F:      drivers/net/ethernet/qualcomm/emac/
17220
17221 QUALCOMM ETHQOS ETHERNET DRIVER
17222 M:      Vinod Koul <vkoul@kernel.org>
17223 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17224 L:      netdev@vger.kernel.org
17225 S:      Maintained
17226 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17227 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17228
17229 QUALCOMM FASTRPC DRIVER
17230 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17231 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17232 L:      linux-arm-msm@vger.kernel.org
17233 S:      Maintained
17234 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17235 F:      drivers/misc/fastrpc.c
17236 F:      include/uapi/misc/fastrpc.h
17237
17238 QUALCOMM HEXAGON ARCHITECTURE
17239 M:      Brian Cain <bcain@quicinc.com>
17240 L:      linux-hexagon@vger.kernel.org
17241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17242 S:      Supported
17243 F:      arch/hexagon/
17244
17245 QUALCOMM HIDMA DRIVER
17246 M:      Sinan Kaya <okaya@kernel.org>
17247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17248 L:      linux-arm-msm@vger.kernel.org
17249 L:      dmaengine@vger.kernel.org
17250 S:      Supported
17251 F:      drivers/dma/qcom/hidma*
17252
17253 QUALCOMM I2C CCI DRIVER
17254 M:      Loic Poulain <loic.poulain@linaro.org>
17255 M:      Robert Foss <rfoss@kernel.org>
17256 L:      linux-i2c@vger.kernel.org
17257 L:      linux-arm-msm@vger.kernel.org
17258 S:      Maintained
17259 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17260 F:      drivers/i2c/busses/i2c-qcom-cci.c
17261
17262 QUALCOMM INTERCONNECT BWMON DRIVER
17263 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17264 L:      linux-arm-msm@vger.kernel.org
17265 S:      Maintained
17266 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17267 F:      drivers/soc/qcom/icc-bwmon.c
17268
17269 QUALCOMM IOMMU
17270 M:      Rob Clark <robdclark@gmail.com>
17271 L:      iommu@lists.linux.dev
17272 L:      linux-arm-msm@vger.kernel.org
17273 S:      Maintained
17274 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17275
17276 QUALCOMM IPC ROUTER (QRTR) DRIVER
17277 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17278 L:      linux-arm-msm@vger.kernel.org
17279 S:      Maintained
17280 F:      include/trace/events/qrtr.h
17281 F:      include/uapi/linux/qrtr.h
17282 F:      net/qrtr/
17283
17284 QUALCOMM IPCC MAILBOX DRIVER
17285 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17286 L:      linux-arm-msm@vger.kernel.org
17287 S:      Supported
17288 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17289 F:      drivers/mailbox/qcom-ipcc.c
17290 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17291
17292 QUALCOMM IPQ4019 USB PHY DRIVER
17293 M:      Robert Marko <robert.marko@sartura.hr>
17294 M:      Luka Perkov <luka.perkov@sartura.hr>
17295 L:      linux-arm-msm@vger.kernel.org
17296 S:      Maintained
17297 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17298 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17299
17300 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17301 M:      Robert Marko <robert.marko@sartura.hr>
17302 M:      Luka Perkov <luka.perkov@sartura.hr>
17303 L:      linux-arm-msm@vger.kernel.org
17304 S:      Maintained
17305 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17306 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17307
17308 QUALCOMM NAND CONTROLLER DRIVER
17309 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17310 L:      linux-mtd@lists.infradead.org
17311 L:      linux-arm-msm@vger.kernel.org
17312 S:      Maintained
17313 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17314 F:      drivers/mtd/nand/raw/qcom_nandc.c
17315
17316 QUALCOMM RMNET DRIVER
17317 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17318 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17319 L:      netdev@vger.kernel.org
17320 S:      Maintained
17321 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17322 F:      drivers/net/ethernet/qualcomm/rmnet/
17323 F:      include/linux/if_rmnet.h
17324
17325 QUALCOMM TSENS THERMAL DRIVER
17326 M:      Amit Kucheria <amitk@kernel.org>
17327 M:      Thara Gopinath <thara.gopinath@gmail.com>
17328 L:      linux-pm@vger.kernel.org
17329 L:      linux-arm-msm@vger.kernel.org
17330 S:      Maintained
17331 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17332 F:      drivers/thermal/qcom/
17333
17334 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17335 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17336 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17337 L:      linux-media@vger.kernel.org
17338 L:      linux-arm-msm@vger.kernel.org
17339 S:      Maintained
17340 T:      git git://linuxtv.org/media_tree.git
17341 F:      Documentation/devicetree/bindings/media/*venus*
17342 F:      drivers/media/platform/qcom/venus/
17343
17344 QUALCOMM WCN36XX WIRELESS DRIVER
17345 M:      Loic Poulain <loic.poulain@linaro.org>
17346 L:      wcn36xx@lists.infradead.org
17347 S:      Supported
17348 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17349 F:      drivers/net/wireless/ath/wcn36xx/
17350
17351 QUANTENNA QTNFMAC WIRELESS DRIVER
17352 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17353 R:      Sergey Matyukevich <geomatsi@gmail.com>
17354 L:      linux-wireless@vger.kernel.org
17355 S:      Maintained
17356 F:      drivers/net/wireless/quantenna
17357
17358 RADEON and AMDGPU DRM DRIVERS
17359 M:      Alex Deucher <alexander.deucher@amd.com>
17360 M:      Christian König <christian.koenig@amd.com>
17361 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17362 L:      amd-gfx@lists.freedesktop.org
17363 S:      Supported
17364 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17365 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17366 C:      irc://irc.oftc.net/radeon
17367 F:      Documentation/gpu/amdgpu/
17368 F:      drivers/gpu/drm/amd/
17369 F:      drivers/gpu/drm/radeon/
17370 F:      include/uapi/drm/amdgpu_drm.h
17371 F:      include/uapi/drm/radeon_drm.h
17372
17373 RADEON FRAMEBUFFER DISPLAY DRIVER
17374 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17375 L:      linux-fbdev@vger.kernel.org
17376 S:      Maintained
17377 F:      drivers/video/fbdev/aty/radeon*
17378 F:      include/uapi/linux/radeonfb.h
17379
17380 RADIOSHARK RADIO DRIVER
17381 M:      Hans Verkuil <hverkuil@xs4all.nl>
17382 L:      linux-media@vger.kernel.org
17383 S:      Maintained
17384 T:      git git://linuxtv.org/media_tree.git
17385 F:      drivers/media/radio/radio-shark.c
17386
17387 RADIOSHARK2 RADIO DRIVER
17388 M:      Hans Verkuil <hverkuil@xs4all.nl>
17389 L:      linux-media@vger.kernel.org
17390 S:      Maintained
17391 T:      git git://linuxtv.org/media_tree.git
17392 F:      drivers/media/radio/radio-shark2.c
17393 F:      drivers/media/radio/radio-tea5777.c
17394
17395 RADOS BLOCK DEVICE (RBD)
17396 M:      Ilya Dryomov <idryomov@gmail.com>
17397 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17398 L:      ceph-devel@vger.kernel.org
17399 S:      Supported
17400 W:      http://ceph.com/
17401 T:      git https://github.com/ceph/ceph-client.git
17402 F:      Documentation/ABI/testing/sysfs-bus-rbd
17403 F:      drivers/block/rbd.c
17404 F:      drivers/block/rbd_types.h
17405
17406 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17407 M:      Paul Mackerras <paulus@samba.org>
17408 L:      linux-fbdev@vger.kernel.org
17409 S:      Maintained
17410 F:      drivers/video/fbdev/aty/aty128fb.c
17411
17412 RAINSHADOW-CEC DRIVER
17413 M:      Hans Verkuil <hverkuil@xs4all.nl>
17414 L:      linux-media@vger.kernel.org
17415 S:      Maintained
17416 T:      git git://linuxtv.org/media_tree.git
17417 F:      drivers/media/cec/usb/rainshadow/
17418
17419 RALINK MIPS ARCHITECTURE
17420 M:      John Crispin <john@phrozen.org>
17421 L:      linux-mips@vger.kernel.org
17422 S:      Maintained
17423 F:      arch/mips/ralink
17424
17425 RALINK MT7621 MIPS ARCHITECTURE
17426 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17427 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17428 L:      linux-mips@vger.kernel.org
17429 S:      Maintained
17430 F:      arch/mips/boot/dts/ralink/mt7621*
17431
17432 RALINK PINCTRL DRIVER
17433 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17434 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17435 L:      linux-mips@vger.kernel.org
17436 S:      Maintained
17437 F:      drivers/pinctrl/ralink/
17438
17439 RALINK RT2X00 WIRELESS LAN DRIVER
17440 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17441 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17442 L:      linux-wireless@vger.kernel.org
17443 S:      Maintained
17444 F:      drivers/net/wireless/ralink/rt2x00/
17445
17446 RAMDISK RAM BLOCK DEVICE DRIVER
17447 M:      Jens Axboe <axboe@kernel.dk>
17448 S:      Maintained
17449 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17450 F:      drivers/block/brd.c
17451
17452 RANCHU VIRTUAL BOARD FOR MIPS
17453 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17454 L:      linux-mips@vger.kernel.org
17455 S:      Supported
17456 F:      arch/mips/configs/generic/board-ranchu.config
17457 F:      arch/mips/generic/board-ranchu.c
17458
17459 RANDOM NUMBER DRIVER
17460 M:      "Theodore Ts'o" <tytso@mit.edu>
17461 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17462 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17463 S:      Maintained
17464 F:      drivers/char/random.c
17465 F:      drivers/virt/vmgenid.c
17466
17467 RAPIDIO SUBSYSTEM
17468 M:      Matt Porter <mporter@kernel.crashing.org>
17469 M:      Alexandre Bounine <alex.bou9@gmail.com>
17470 S:      Maintained
17471 F:      drivers/rapidio/
17472
17473 RAS INFRASTRUCTURE
17474 M:      Tony Luck <tony.luck@intel.com>
17475 M:      Borislav Petkov <bp@alien8.de>
17476 L:      linux-edac@vger.kernel.org
17477 S:      Maintained
17478 F:      Documentation/admin-guide/ras.rst
17479 F:      drivers/ras/
17480 F:      include/linux/ras.h
17481 F:      include/ras/ras_event.h
17482
17483 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17484 L:      linux-wireless@vger.kernel.org
17485 S:      Orphan
17486 F:      drivers/net/wireless/ray*
17487
17488 RC-CORE / LIRC FRAMEWORK
17489 M:      Sean Young <sean@mess.org>
17490 L:      linux-media@vger.kernel.org
17491 S:      Maintained
17492 W:      http://linuxtv.org
17493 T:      git git://linuxtv.org/media_tree.git
17494 F:      Documentation/driver-api/media/rc-core.rst
17495 F:      Documentation/userspace-api/media/rc/
17496 F:      drivers/media/rc/
17497 F:      include/media/rc-map.h
17498 F:      include/media/rc-core.h
17499 F:      include/uapi/linux/lirc.h
17500
17501 RCMM REMOTE CONTROLS DECODER
17502 M:      Patrick Lerda <patrick9876@free.fr>
17503 S:      Maintained
17504 F:      drivers/media/rc/ir-rcmm-decoder.c
17505
17506 RCUTORTURE TEST FRAMEWORK
17507 M:      "Paul E. McKenney" <paulmck@kernel.org>
17508 M:      Josh Triplett <josh@joshtriplett.org>
17509 R:      Steven Rostedt <rostedt@goodmis.org>
17510 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17511 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17512 L:      rcu@vger.kernel.org
17513 S:      Supported
17514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17515 F:      tools/testing/selftests/rcutorture
17516
17517 RDACM20 Camera Sensor
17518 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17519 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17520 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17521 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17522 L:      linux-media@vger.kernel.org
17523 S:      Maintained
17524 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17525 F:      drivers/media/i2c/max9271.c
17526 F:      drivers/media/i2c/max9271.h
17527 F:      drivers/media/i2c/rdacm20.c
17528
17529 RDACM21 Camera Sensor
17530 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17531 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17532 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17533 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17534 L:      linux-media@vger.kernel.org
17535 S:      Maintained
17536 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17537 F:      drivers/media/i2c/max9271.c
17538 F:      drivers/media/i2c/max9271.h
17539 F:      drivers/media/i2c/rdacm21.c
17540
17541 RDC R-321X SoC
17542 M:      Florian Fainelli <florian@openwrt.org>
17543 S:      Maintained
17544
17545 RDC R6040 FAST ETHERNET DRIVER
17546 M:      Florian Fainelli <f.fainelli@gmail.com>
17547 L:      netdev@vger.kernel.org
17548 S:      Maintained
17549 F:      drivers/net/ethernet/rdc/r6040.c
17550
17551 RDMAVT - RDMA verbs software
17552 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17553 L:      linux-rdma@vger.kernel.org
17554 S:      Supported
17555 F:      drivers/infiniband/sw/rdmavt
17556
17557 RDS - RELIABLE DATAGRAM SOCKETS
17558 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17559 L:      netdev@vger.kernel.org
17560 L:      linux-rdma@vger.kernel.org
17561 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17562 S:      Supported
17563 W:      https://oss.oracle.com/projects/rds/
17564 F:      Documentation/networking/rds.rst
17565 F:      net/rds/
17566
17567 RDT - RESOURCE ALLOCATION
17568 M:      Fenghua Yu <fenghua.yu@intel.com>
17569 M:      Reinette Chatre <reinette.chatre@intel.com>
17570 L:      linux-kernel@vger.kernel.org
17571 S:      Supported
17572 F:      Documentation/x86/resctrl*
17573 F:      arch/x86/include/asm/resctrl.h
17574 F:      arch/x86/kernel/cpu/resctrl/
17575 F:      tools/testing/selftests/resctrl/
17576
17577 READ-COPY UPDATE (RCU)
17578 M:      "Paul E. McKenney" <paulmck@kernel.org>
17579 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17580 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17581 M:      Josh Triplett <josh@joshtriplett.org>
17582 R:      Steven Rostedt <rostedt@goodmis.org>
17583 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17584 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17585 R:      Joel Fernandes <joel@joelfernandes.org>
17586 L:      rcu@vger.kernel.org
17587 S:      Supported
17588 W:      http://www.rdrop.com/users/paulmck/RCU/
17589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17590 F:      Documentation/RCU/
17591 F:      include/linux/rcu*
17592 F:      kernel/rcu/
17593 X:      Documentation/RCU/torture.rst
17594 X:      include/linux/srcu*.h
17595 X:      kernel/rcu/srcu*.c
17596
17597 REAL TIME CLOCK (RTC) SUBSYSTEM
17598 M:      Alessandro Zummo <a.zummo@towertech.it>
17599 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17600 L:      linux-rtc@vger.kernel.org
17601 S:      Maintained
17602 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17604 F:      Documentation/admin-guide/rtc.rst
17605 F:      Documentation/devicetree/bindings/rtc/
17606 F:      drivers/rtc/
17607 F:      include/linux/platform_data/rtc-*
17608 F:      include/linux/rtc.h
17609 F:      include/linux/rtc/
17610 F:      include/uapi/linux/rtc.h
17611 F:      tools/testing/selftests/rtc/
17612
17613 REALTEK AUDIO CODECS
17614 M:      Oder Chiou <oder_chiou@realtek.com>
17615 S:      Maintained
17616 F:      include/sound/rt*.h
17617 F:      sound/soc/codecs/rt*
17618
17619 REALTEK OTTO WATCHDOG
17620 M:      Sander Vanheule <sander@svanheule.net>
17621 L:      linux-watchdog@vger.kernel.org
17622 S:      Maintained
17623 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17624 F:      drivers/watchdog/realtek_otto_wdt.c
17625
17626 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17627 M:      Linus Walleij <linus.walleij@linaro.org>
17628 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17629 S:      Maintained
17630 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17631 F:      drivers/net/dsa/realtek/*
17632
17633 REALTEK WIRELESS DRIVER (rtlwifi family)
17634 M:      Ping-Ke Shih <pkshih@realtek.com>
17635 L:      linux-wireless@vger.kernel.org
17636 S:      Maintained
17637 W:      https://wireless.wiki.kernel.org/
17638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17639 F:      drivers/net/wireless/realtek/rtlwifi/
17640
17641 REALTEK WIRELESS DRIVER (rtw88)
17642 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17643 L:      linux-wireless@vger.kernel.org
17644 S:      Maintained
17645 F:      drivers/net/wireless/realtek/rtw88/
17646
17647 REALTEK WIRELESS DRIVER (rtw89)
17648 M:      Ping-Ke Shih <pkshih@realtek.com>
17649 L:      linux-wireless@vger.kernel.org
17650 S:      Maintained
17651 F:      drivers/net/wireless/realtek/rtw89/
17652
17653 REDPINE WIRELESS DRIVER
17654 L:      linux-wireless@vger.kernel.org
17655 S:      Orphan
17656 F:      drivers/net/wireless/rsi/
17657
17658 REGISTER MAP ABSTRACTION
17659 M:      Mark Brown <broonie@kernel.org>
17660 L:      linux-kernel@vger.kernel.org
17661 S:      Supported
17662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17663 F:      Documentation/devicetree/bindings/regmap/
17664 F:      drivers/base/regmap/
17665 F:      include/linux/regmap.h
17666
17667 REISERFS FILE SYSTEM
17668 L:      reiserfs-devel@vger.kernel.org
17669 S:      Supported
17670 F:      fs/reiserfs/
17671
17672 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17673 M:      Bjorn Andersson <andersson@kernel.org>
17674 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17675 L:      linux-remoteproc@vger.kernel.org
17676 S:      Maintained
17677 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17678 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17679 F:      Documentation/devicetree/bindings/remoteproc/
17680 F:      Documentation/staging/remoteproc.rst
17681 F:      drivers/remoteproc/
17682 F:      include/linux/remoteproc.h
17683 F:      include/linux/remoteproc/
17684
17685 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17686 M:      Bjorn Andersson <andersson@kernel.org>
17687 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17688 L:      linux-remoteproc@vger.kernel.org
17689 S:      Maintained
17690 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17691 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17692 F:      Documentation/staging/rpmsg.rst
17693 F:      drivers/rpmsg/
17694 F:      include/linux/rpmsg.h
17695 F:      include/linux/rpmsg/
17696 F:      include/uapi/linux/rpmsg.h
17697 F:      samples/rpmsg/
17698
17699 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17700 M:      Stephan Gerhold <stephan@gerhold.net>
17701 L:      netdev@vger.kernel.org
17702 L:      linux-remoteproc@vger.kernel.org
17703 S:      Maintained
17704 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17705
17706 RENESAS CLOCK DRIVERS
17707 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17708 L:      linux-renesas-soc@vger.kernel.org
17709 S:      Supported
17710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17711 F:      Documentation/devicetree/bindings/clock/renesas,*
17712 F:      drivers/clk/renesas/
17713
17714 RENESAS EMEV2 I2C DRIVER
17715 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17716 L:      linux-renesas-soc@vger.kernel.org
17717 S:      Supported
17718 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17719 F:      drivers/i2c/busses/i2c-emev2.c
17720
17721 RENESAS ETHERNET DRIVERS
17722 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17723 L:      netdev@vger.kernel.org
17724 L:      linux-renesas-soc@vger.kernel.org
17725 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17726 F:      drivers/net/ethernet/renesas/
17727 F:      include/linux/sh_eth.h
17728
17729 RENESAS IDT821034 ASoC CODEC
17730 M:      Herve Codina <herve.codina@bootlin.com>
17731 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17732 S:      Maintained
17733 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17734 F:      sound/soc/codecs/idt821034.c
17735
17736 RENESAS R-CAR GYROADC DRIVER
17737 M:      Marek Vasut <marek.vasut@gmail.com>
17738 L:      linux-iio@vger.kernel.org
17739 S:      Supported
17740 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17741 F:      drivers/iio/adc/rcar-gyroadc.c
17742
17743 RENESAS R-CAR I2C DRIVERS
17744 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17745 L:      linux-renesas-soc@vger.kernel.org
17746 S:      Supported
17747 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17748 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17749 F:      drivers/i2c/busses/i2c-rcar.c
17750 F:      drivers/i2c/busses/i2c-sh_mobile.c
17751
17752 RENESAS R-CAR SATA DRIVER
17753 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17754 S:      Supported
17755 L:      linux-ide@vger.kernel.org
17756 L:      linux-renesas-soc@vger.kernel.org
17757 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17758 F:      drivers/ata/sata_rcar.c
17759
17760 RENESAS R-CAR THERMAL DRIVERS
17761 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17762 L:      linux-renesas-soc@vger.kernel.org
17763 S:      Supported
17764 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17765 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17766 F:      drivers/thermal/rcar_gen3_thermal.c
17767 F:      drivers/thermal/rcar_thermal.c
17768
17769 RENESAS RIIC DRIVER
17770 M:      Chris Brandt <chris.brandt@renesas.com>
17771 L:      linux-renesas-soc@vger.kernel.org
17772 S:      Supported
17773 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17774 F:      drivers/i2c/busses/i2c-riic.c
17775
17776 RENESAS USB PHY DRIVER
17777 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17778 L:      linux-renesas-soc@vger.kernel.org
17779 S:      Maintained
17780 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17781
17782 RENESAS RZ/G2L A/D DRIVER
17783 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17784 L:      linux-iio@vger.kernel.org
17785 L:      linux-renesas-soc@vger.kernel.org
17786 S:      Supported
17787 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17788 F:      drivers/iio/adc/rzg2l_adc.c
17789
17790 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17791 M:      Clément Léger <clement.leger@bootlin.com>
17792 L:      linux-renesas-soc@vger.kernel.org
17793 L:      netdev@vger.kernel.org
17794 S:      Maintained
17795 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17796 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17797 F:      drivers/net/dsa/rzn1_a5psw*
17798 F:      drivers/net/pcs/pcs-rzn1-miic.c
17799 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17800 F:      include/linux/pcs-rzn1-miic.h
17801 F:      net/dsa/tag_rzn1_a5psw.c
17802
17803 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17804 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17805 L:      linux-rtc@vger.kernel.org
17806 L:      linux-renesas-soc@vger.kernel.org
17807 S:      Maintained
17808 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17809 F:      drivers/rtc/rtc-rzn1.c
17810
17811 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17812 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17813 L:      linux-mtd@lists.infradead.org
17814 L:      linux-renesas-soc@vger.kernel.org
17815 S:      Maintained
17816 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17817 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17818
17819 RENESAS VERSACLOCK 7 CLOCK DRIVER
17820 M:      Alex Helms <alexander.helms.jy@renesas.com>
17821 S:      Maintained
17822 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17823 F:      drivers/clk/clk-versaclock7.c
17824
17825 RESET CONTROLLER FRAMEWORK
17826 M:      Philipp Zabel <p.zabel@pengutronix.de>
17827 S:      Maintained
17828 T:      git git://git.pengutronix.de/git/pza/linux
17829 F:      Documentation/devicetree/bindings/reset/
17830 F:      Documentation/driver-api/reset.rst
17831 F:      drivers/reset/
17832 F:      include/dt-bindings/reset/
17833 F:      include/linux/reset-controller.h
17834 F:      include/linux/reset.h
17835 F:      include/linux/reset/
17836 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17837
17838 RESTARTABLE SEQUENCES SUPPORT
17839 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17840 M:      Peter Zijlstra <peterz@infradead.org>
17841 M:      "Paul E. McKenney" <paulmck@kernel.org>
17842 M:      Boqun Feng <boqun.feng@gmail.com>
17843 L:      linux-kernel@vger.kernel.org
17844 S:      Supported
17845 F:      include/trace/events/rseq.h
17846 F:      include/uapi/linux/rseq.h
17847 F:      kernel/rseq.c
17848 F:      tools/testing/selftests/rseq/
17849
17850 RFKILL
17851 M:      Johannes Berg <johannes@sipsolutions.net>
17852 L:      linux-wireless@vger.kernel.org
17853 S:      Maintained
17854 W:      https://wireless.wiki.kernel.org/
17855 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17858 F:      Documentation/ABI/stable/sysfs-class-rfkill
17859 F:      Documentation/driver-api/rfkill.rst
17860 F:      include/linux/rfkill.h
17861 F:      include/uapi/linux/rfkill.h
17862 F:      net/rfkill/
17863
17864 RHASHTABLE
17865 M:      Thomas Graf <tgraf@suug.ch>
17866 M:      Herbert Xu <herbert@gondor.apana.org.au>
17867 L:      netdev@vger.kernel.org
17868 S:      Maintained
17869 F:      include/linux/rhashtable-types.h
17870 F:      include/linux/rhashtable.h
17871 F:      lib/rhashtable.c
17872 F:      lib/test_rhashtable.c
17873
17874 RICOH R5C592 MEMORYSTICK DRIVER
17875 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17876 S:      Maintained
17877 F:      drivers/memstick/host/r592.*
17878
17879 RICOH SMARTMEDIA/XD DRIVER
17880 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17881 S:      Maintained
17882 F:      drivers/mtd/nand/raw/r852.c
17883 F:      drivers/mtd/nand/raw/r852.h
17884
17885 RISC-V PMU DRIVERS
17886 M:      Atish Patra <atishp@atishpatra.org>
17887 R:      Anup Patel <anup@brainfault.org>
17888 L:      linux-riscv@lists.infradead.org
17889 S:      Supported
17890 F:      drivers/perf/riscv_pmu.c
17891 F:      drivers/perf/riscv_pmu_legacy.c
17892 F:      drivers/perf/riscv_pmu_sbi.c
17893
17894 RISC-V ARCHITECTURE
17895 M:      Paul Walmsley <paul.walmsley@sifive.com>
17896 M:      Palmer Dabbelt <palmer@dabbelt.com>
17897 M:      Albert Ou <aou@eecs.berkeley.edu>
17898 L:      linux-riscv@lists.infradead.org
17899 S:      Supported
17900 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17901 C:      irc://irc.libera.chat/riscv
17902 P:      Documentation/riscv/patch-acceptance.rst
17903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17904 F:      arch/riscv/
17905 N:      riscv
17906 K:      riscv
17907
17908 RISC-V MICROCHIP FPGA SUPPORT
17909 M:      Conor Dooley <conor.dooley@microchip.com>
17910 M:      Daire McNamara <daire.mcnamara@microchip.com>
17911 L:      linux-riscv@lists.infradead.org
17912 S:      Supported
17913 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17914 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17915 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17916 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17917 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17918 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17919 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17920 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17921 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17922 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17923 F:      arch/riscv/boot/dts/microchip/
17924 F:      drivers/char/hw_random/mpfs-rng.c
17925 F:      drivers/clk/microchip/clk-mpfs.c
17926 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17927 F:      drivers/mailbox/mailbox-mpfs.c
17928 F:      drivers/pci/controller/pcie-microchip-host.c
17929 F:      drivers/reset/reset-mpfs.c
17930 F:      drivers/rtc/rtc-mpfs.c
17931 F:      drivers/soc/microchip/mpfs-sys-controller.c
17932 F:      drivers/spi/spi-microchip-core-qspi.c
17933 F:      drivers/spi/spi-microchip-core.c
17934 F:      drivers/usb/musb/mpfs.c
17935 F:      include/soc/microchip/mpfs.h
17936
17937 RISC-V MISC SOC SUPPORT
17938 M:      Conor Dooley <conor@kernel.org>
17939 L:      linux-riscv@lists.infradead.org
17940 S:      Maintained
17941 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17942 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17943 F:      Documentation/devicetree/bindings/riscv/
17944 F:      arch/riscv/boot/dts/
17945
17946 RNBD BLOCK DRIVERS
17947 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17948 M:      Jack Wang <jinpu.wang@ionos.com>
17949 L:      linux-block@vger.kernel.org
17950 S:      Maintained
17951 F:      drivers/block/rnbd/
17952
17953 ROCCAT DRIVERS
17954 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17955 S:      Maintained
17956 W:      http://sourceforge.net/projects/roccat/
17957 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17958 F:      drivers/hid/hid-roccat*
17959 F:      include/linux/hid-roccat*
17960
17961 ROCKCHIP CRYPTO DRIVERS
17962 M:      Corentin Labbe <clabbe@baylibre.com>
17963 L:      linux-crypto@vger.kernel.org
17964 S:      Maintained
17965 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17966 F:      drivers/crypto/rockchip/
17967
17968 ROCKCHIP I2S TDM DRIVER
17969 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17970 L:      linux-rockchip@lists.infradead.org
17971 S:      Maintained
17972 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17973 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17974
17975 ROCKCHIP ISP V1 DRIVER
17976 M:      Dafna Hirschfeld <dafna@fastmail.com>
17977 L:      linux-media@vger.kernel.org
17978 L:      linux-rockchip@lists.infradead.org
17979 S:      Maintained
17980 F:      Documentation/admin-guide/media/rkisp1.rst
17981 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17982 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17983 F:      drivers/media/platform/rockchip/rkisp1
17984 F:      include/uapi/linux/rkisp1-config.h
17985
17986 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17987 M:      Jacob Chen <jacob-chen@iotwrt.com>
17988 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17989 L:      linux-media@vger.kernel.org
17990 L:      linux-rockchip@lists.infradead.org
17991 S:      Maintained
17992 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17993 F:      drivers/media/platform/rockchip/rga/
17994
17995 ROCKCHIP VIDEO DECODER DRIVER
17996 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17997 L:      linux-media@vger.kernel.org
17998 L:      linux-rockchip@lists.infradead.org
17999 S:      Maintained
18000 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18001 F:      drivers/staging/media/rkvdec/
18002
18003 ROCKER DRIVER
18004 M:      Jiri Pirko <jiri@resnulli.us>
18005 L:      netdev@vger.kernel.org
18006 S:      Supported
18007 F:      drivers/net/ethernet/rocker/
18008
18009 ROCKETPORT EXPRESS/INFINITY DRIVER
18010 M:      Kevin Cernekee <cernekee@gmail.com>
18011 L:      linux-serial@vger.kernel.org
18012 S:      Odd Fixes
18013 F:      drivers/tty/serial/rp2.*
18014
18015 ROHM BD99954 CHARGER IC
18016 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18017 S:      Supported
18018 F:      drivers/power/supply/bd99954-charger.c
18019 F:      drivers/power/supply/bd99954-charger.h
18020
18021 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18022 M:      Tomasz Duszynski <tduszyns@gmail.com>
18023 S:      Maintained
18024 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18025 F:      drivers/iio/light/bh1750.c
18026
18027 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18028 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18029 L:      linux-kernel@vger.kernel.org
18030 L:      linux-renesas-soc@vger.kernel.org
18031 S:      Supported
18032 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18033 F:      drivers/gpio/gpio-bd9571mwv.c
18034 F:      drivers/mfd/bd9571mwv.c
18035 F:      drivers/regulator/bd9571mwv-regulator.c
18036 F:      include/linux/mfd/bd9571mwv.h
18037
18038 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18039 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18040 S:      Supported
18041 F:      drivers/clk/clk-bd718x7.c
18042 F:      drivers/gpio/gpio-bd71815.c
18043 F:      drivers/gpio/gpio-bd71828.c
18044 F:      drivers/mfd/rohm-bd71828.c
18045 F:      drivers/mfd/rohm-bd718x7.c
18046 F:      drivers/mfd/rohm-bd9576.c
18047 F:      drivers/regulator/bd71815-regulator.c
18048 F:      drivers/regulator/bd71828-regulator.c
18049 F:      drivers/regulator/bd718x7-regulator.c
18050 F:      drivers/regulator/bd9576-regulator.c
18051 F:      drivers/regulator/rohm-regulator.c
18052 F:      drivers/rtc/rtc-bd70528.c
18053 F:      drivers/watchdog/bd9576_wdt.c
18054 F:      include/linux/mfd/rohm-bd71815.h
18055 F:      include/linux/mfd/rohm-bd71828.h
18056 F:      include/linux/mfd/rohm-bd718x7.h
18057 F:      include/linux/mfd/rohm-bd957x.h
18058 F:      include/linux/mfd/rohm-generic.h
18059 F:      include/linux/mfd/rohm-shared.h
18060
18061 ROSE NETWORK LAYER
18062 M:      Ralf Baechle <ralf@linux-mips.org>
18063 L:      linux-hams@vger.kernel.org
18064 S:      Maintained
18065 W:      http://www.linux-ax25.org/
18066 F:      include/net/rose.h
18067 F:      include/uapi/linux/rose.h
18068 F:      net/rose/
18069
18070 ROTATION DRIVER FOR ALLWINNER A83T
18071 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18072 L:      linux-media@vger.kernel.org
18073 S:      Maintained
18074 T:      git git://linuxtv.org/media_tree.git
18075 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18076 F:      drivers/media/platform/sunxi/sun8i-rotate/
18077
18078 RPMSG TTY DRIVER
18079 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18080 L:      linux-remoteproc@vger.kernel.org
18081 S:      Maintained
18082 F:      drivers/tty/rpmsg_tty.c
18083
18084 RTL2830 MEDIA DRIVER
18085 M:      Antti Palosaari <crope@iki.fi>
18086 L:      linux-media@vger.kernel.org
18087 S:      Maintained
18088 W:      https://linuxtv.org
18089 W:      http://palosaari.fi/linux/
18090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18091 T:      git git://linuxtv.org/anttip/media_tree.git
18092 F:      drivers/media/dvb-frontends/rtl2830*
18093
18094 RTL2832 MEDIA DRIVER
18095 M:      Antti Palosaari <crope@iki.fi>
18096 L:      linux-media@vger.kernel.org
18097 S:      Maintained
18098 W:      https://linuxtv.org
18099 W:      http://palosaari.fi/linux/
18100 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18101 T:      git git://linuxtv.org/anttip/media_tree.git
18102 F:      drivers/media/dvb-frontends/rtl2832*
18103
18104 RTL2832_SDR MEDIA DRIVER
18105 M:      Antti Palosaari <crope@iki.fi>
18106 L:      linux-media@vger.kernel.org
18107 S:      Maintained
18108 W:      https://linuxtv.org
18109 W:      http://palosaari.fi/linux/
18110 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18111 T:      git git://linuxtv.org/anttip/media_tree.git
18112 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18113
18114 RTL8180 WIRELESS DRIVER
18115 L:      linux-wireless@vger.kernel.org
18116 S:      Orphan
18117 W:      https://wireless.wiki.kernel.org/
18118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18119 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18120
18121 RTL8187 WIRELESS DRIVER
18122 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18123 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18124 M:      Larry Finger <Larry.Finger@lwfinger.net>
18125 L:      linux-wireless@vger.kernel.org
18126 S:      Maintained
18127 W:      https://wireless.wiki.kernel.org/
18128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18129 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18130
18131 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18132 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18133 L:      linux-wireless@vger.kernel.org
18134 S:      Maintained
18135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18136 F:      drivers/net/wireless/realtek/rtl8xxxu/
18137
18138 RTRS TRANSPORT DRIVERS
18139 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18140 M:      Jack Wang <jinpu.wang@ionos.com>
18141 L:      linux-rdma@vger.kernel.org
18142 S:      Maintained
18143 F:      drivers/infiniband/ulp/rtrs/
18144
18145 RUNTIME VERIFICATION (RV)
18146 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18147 M:      Steven Rostedt <rostedt@goodmis.org>
18148 L:      linux-trace-devel@vger.kernel.org
18149 S:      Maintained
18150 F:      Documentation/trace/rv/
18151 F:      include/linux/rv.h
18152 F:      include/rv/
18153 F:      kernel/trace/rv/
18154 F:      tools/verification/
18155
18156 RUST
18157 M:      Miguel Ojeda <ojeda@kernel.org>
18158 M:      Alex Gaynor <alex.gaynor@gmail.com>
18159 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18160 R:      Boqun Feng <boqun.feng@gmail.com>
18161 R:      Gary Guo <gary@garyguo.net>
18162 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18163 L:      rust-for-linux@vger.kernel.org
18164 S:      Supported
18165 W:      https://github.com/Rust-for-Linux/linux
18166 B:      https://github.com/Rust-for-Linux/linux/issues
18167 C:      zulip://rust-for-linux.zulipchat.com
18168 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18169 F:      Documentation/rust/
18170 F:      rust/
18171 F:      samples/rust/
18172 F:      scripts/*rust*
18173 K:      \b(?i:rust)\b
18174
18175 RXRPC SOCKETS (AF_RXRPC)
18176 M:      David Howells <dhowells@redhat.com>
18177 M:      Marc Dionne <marc.dionne@auristor.com>
18178 L:      linux-afs@lists.infradead.org
18179 S:      Supported
18180 W:      https://www.infradead.org/~dhowells/kafs/
18181 F:      Documentation/networking/rxrpc.rst
18182 F:      include/keys/rxrpc-type.h
18183 F:      include/net/af_rxrpc.h
18184 F:      include/trace/events/rxrpc.h
18185 F:      include/uapi/linux/rxrpc.h
18186 F:      net/rxrpc/
18187
18188 S3 SAVAGE FRAMEBUFFER DRIVER
18189 M:      Antonino Daplas <adaplas@gmail.com>
18190 L:      linux-fbdev@vger.kernel.org
18191 S:      Maintained
18192 F:      drivers/video/fbdev/savage/
18193
18194 S390 ARCHITECTURE
18195 M:      Heiko Carstens <hca@linux.ibm.com>
18196 M:      Vasily Gorbik <gor@linux.ibm.com>
18197 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18198 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18199 R:      Sven Schnelle <svens@linux.ibm.com>
18200 L:      linux-s390@vger.kernel.org
18201 S:      Supported
18202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18203 F:      Documentation/driver-api/s390-drivers.rst
18204 F:      Documentation/s390/
18205 F:      arch/s390/
18206 F:      drivers/s390/
18207 F:      drivers/watchdog/diag288_wdt.c
18208
18209 S390 COMMON I/O LAYER
18210 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18211 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18212 L:      linux-s390@vger.kernel.org
18213 S:      Supported
18214 F:      drivers/s390/cio/
18215
18216 S390 DASD DRIVER
18217 M:      Stefan Haberland <sth@linux.ibm.com>
18218 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18219 L:      linux-s390@vger.kernel.org
18220 S:      Supported
18221 F:      block/partitions/ibm.c
18222 F:      drivers/s390/block/dasd*
18223 F:      include/linux/dasd_mod.h
18224
18225 S390 IOMMU (PCI)
18226 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18227 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18228 L:      linux-s390@vger.kernel.org
18229 S:      Supported
18230 F:      drivers/iommu/s390-iommu.c
18231
18232 S390 IUCV NETWORK LAYER
18233 M:      Alexandra Winter <wintera@linux.ibm.com>
18234 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18235 L:      linux-s390@vger.kernel.org
18236 L:      netdev@vger.kernel.org
18237 S:      Supported
18238 F:      drivers/s390/net/*iucv*
18239 F:      include/net/iucv/
18240 F:      net/iucv/
18241
18242 S390 NETWORK DRIVERS
18243 M:      Alexandra Winter <wintera@linux.ibm.com>
18244 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18245 L:      linux-s390@vger.kernel.org
18246 L:      netdev@vger.kernel.org
18247 S:      Supported
18248 F:      drivers/s390/net/
18249
18250 S390 MM
18251 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18252 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18253 L:      linux-s390@vger.kernel.org
18254 S:      Supported
18255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18256 F:      arch/s390/include/asm/pgtable.h
18257 F:      arch/s390/mm
18258
18259 S390 PCI SUBSYSTEM
18260 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18261 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18262 L:      linux-s390@vger.kernel.org
18263 S:      Supported
18264 F:      arch/s390/pci/
18265 F:      drivers/pci/hotplug/s390_pci_hpc.c
18266 F:      Documentation/s390/pci.rst
18267
18268 S390 SCM DRIVER
18269 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18270 L:      linux-s390@vger.kernel.org
18271 S:      Supported
18272 F:      drivers/s390/block/scm*
18273 F:      drivers/s390/cio/scm.c
18274
18275 S390 VFIO AP DRIVER
18276 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18277 M:      Halil Pasic <pasic@linux.ibm.com>
18278 M:      Jason Herne <jjherne@linux.ibm.com>
18279 L:      linux-s390@vger.kernel.org
18280 S:      Supported
18281 F:      Documentation/s390/vfio-ap*
18282 F:      drivers/s390/crypto/vfio_ap*
18283
18284 S390 VFIO-CCW DRIVER
18285 M:      Eric Farman <farman@linux.ibm.com>
18286 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18287 R:      Halil Pasic <pasic@linux.ibm.com>
18288 L:      linux-s390@vger.kernel.org
18289 L:      kvm@vger.kernel.org
18290 S:      Supported
18291 F:      Documentation/s390/vfio-ccw.rst
18292 F:      drivers/s390/cio/vfio_ccw*
18293 F:      include/uapi/linux/vfio_ccw.h
18294
18295 S390 VFIO-PCI DRIVER
18296 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18297 M:      Eric Farman <farman@linux.ibm.com>
18298 L:      linux-s390@vger.kernel.org
18299 L:      kvm@vger.kernel.org
18300 S:      Supported
18301 F:      arch/s390/kvm/pci*
18302 F:      drivers/vfio/pci/vfio_pci_zdev.c
18303 F:      include/uapi/linux/vfio_zdev.h
18304
18305 S390 ZCRYPT DRIVER
18306 M:      Harald Freudenberger <freude@linux.ibm.com>
18307 L:      linux-s390@vger.kernel.org
18308 S:      Supported
18309 F:      drivers/s390/crypto/
18310
18311 S390 ZFCP DRIVER
18312 M:      Steffen Maier <maier@linux.ibm.com>
18313 M:      Benjamin Block <bblock@linux.ibm.com>
18314 L:      linux-s390@vger.kernel.org
18315 S:      Supported
18316 F:      drivers/s390/scsi/zfcp_*
18317
18318 SAA6588 RDS RECEIVER DRIVER
18319 M:      Hans Verkuil <hverkuil@xs4all.nl>
18320 L:      linux-media@vger.kernel.org
18321 S:      Odd Fixes
18322 W:      https://linuxtv.org
18323 T:      git git://linuxtv.org/media_tree.git
18324 F:      drivers/media/i2c/saa6588*
18325
18326 SAA7134 VIDEO4LINUX DRIVER
18327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18328 L:      linux-media@vger.kernel.org
18329 S:      Odd fixes
18330 W:      https://linuxtv.org
18331 T:      git git://linuxtv.org/media_tree.git
18332 F:      Documentation/driver-api/media/drivers/saa7134*
18333 F:      drivers/media/pci/saa7134/
18334
18335 SAA7146 VIDEO4LINUX-2 DRIVER
18336 M:      Hans Verkuil <hverkuil@xs4all.nl>
18337 L:      linux-media@vger.kernel.org
18338 S:      Maintained
18339 T:      git git://linuxtv.org/media_tree.git
18340 F:      drivers/staging/media/deprecated/saa7146/
18341
18342 SAFESETID SECURITY MODULE
18343 M:      Micah Morton <mortonm@chromium.org>
18344 S:      Supported
18345 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18346 F:      security/safesetid/
18347
18348 SAMSUNG AUDIO (ASoC) DRIVERS
18349 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18350 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18351 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18352 S:      Supported
18353 B:      mailto:linux-samsung-soc@vger.kernel.org
18354 F:      Documentation/devicetree/bindings/sound/samsung*
18355 F:      sound/soc/samsung/
18356
18357 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18358 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18359 L:      linux-crypto@vger.kernel.org
18360 L:      linux-samsung-soc@vger.kernel.org
18361 S:      Maintained
18362 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18363 F:      drivers/crypto/exynos-rng.c
18364
18365 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18366 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18367 L:      linux-samsung-soc@vger.kernel.org
18368 S:      Maintained
18369 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18370 F:      drivers/char/hw_random/exynos-trng.c
18371
18372 SAMSUNG FRAMEBUFFER DRIVER
18373 M:      Jingoo Han <jingoohan1@gmail.com>
18374 L:      linux-fbdev@vger.kernel.org
18375 S:      Maintained
18376 F:      drivers/video/fbdev/s3c-fb.c
18377
18378 SAMSUNG INTERCONNECT DRIVERS
18379 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18380 M:      Artur Świgoń <a.swigon@samsung.com>
18381 L:      linux-pm@vger.kernel.org
18382 L:      linux-samsung-soc@vger.kernel.org
18383 S:      Supported
18384 F:      drivers/interconnect/samsung/
18385
18386 SAMSUNG LAPTOP DRIVER
18387 M:      Corentin Chary <corentin.chary@gmail.com>
18388 L:      platform-driver-x86@vger.kernel.org
18389 S:      Maintained
18390 F:      drivers/platform/x86/samsung-laptop.c
18391
18392 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18393 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18394 L:      linux-kernel@vger.kernel.org
18395 L:      linux-samsung-soc@vger.kernel.org
18396 S:      Supported
18397 B:      mailto:linux-samsung-soc@vger.kernel.org
18398 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18399 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18400 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18401 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18402 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18403 F:      drivers/clk/clk-s2mps11.c
18404 F:      drivers/mfd/sec*.c
18405 F:      drivers/regulator/s2m*.c
18406 F:      drivers/regulator/s5m*.c
18407 F:      drivers/rtc/rtc-s5m.c
18408 F:      include/linux/mfd/samsung/
18409
18410 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18411 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18412 L:      linux-media@vger.kernel.org
18413 L:      linux-samsung-soc@vger.kernel.org
18414 S:      Maintained
18415 F:      drivers/media/platform/samsung/s3c-camif/
18416 F:      include/media/drv-intf/s3c_camif.h
18417
18418 SAMSUNG S3FWRN5 NFC DRIVER
18419 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18420 L:      linux-nfc@lists.01.org (subscribers-only)
18421 S:      Maintained
18422 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18423 F:      drivers/nfc/s3fwrn5
18424
18425 SAMSUNG S5C73M3 CAMERA DRIVER
18426 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18427 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18428 L:      linux-media@vger.kernel.org
18429 S:      Supported
18430 F:      drivers/media/i2c/s5c73m3/*
18431
18432 SAMSUNG S5K5BAF CAMERA DRIVER
18433 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18434 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18435 L:      linux-media@vger.kernel.org
18436 S:      Supported
18437 F:      drivers/media/i2c/s5k5baf.c
18438
18439 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18440 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18441 M:      Vladimir Zapolskiy <vz@mleia.com>
18442 L:      linux-crypto@vger.kernel.org
18443 L:      linux-samsung-soc@vger.kernel.org
18444 S:      Maintained
18445 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18446 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18447 F:      drivers/crypto/s5p-sss.c
18448
18449 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18450 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18451 L:      linux-media@vger.kernel.org
18452 S:      Supported
18453 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18454 F:      drivers/media/platform/samsung/exynos4-is/
18455
18456 SAMSUNG SOC CLOCK DRIVERS
18457 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18458 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18459 M:      Tomasz Figa <tomasz.figa@gmail.com>
18460 M:      Chanwoo Choi <cw00.choi@samsung.com>
18461 R:      Alim Akhtar <alim.akhtar@samsung.com>
18462 L:      linux-samsung-soc@vger.kernel.org
18463 S:      Supported
18464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18466 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18467 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18468 F:      drivers/clk/samsung/
18469 F:      include/dt-bindings/clock/exynos*.h
18470 F:      include/dt-bindings/clock/s5p*.h
18471 F:      include/dt-bindings/clock/samsung,*.h
18472 F:      include/linux/clk/samsung.h
18473
18474 SAMSUNG SPI DRIVERS
18475 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18476 M:      Andi Shyti <andi@etezian.org>
18477 L:      linux-spi@vger.kernel.org
18478 L:      linux-samsung-soc@vger.kernel.org
18479 S:      Maintained
18480 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18481 F:      drivers/spi/spi-s3c*
18482 F:      include/linux/platform_data/spi-s3c64xx.h
18483
18484 SAMSUNG SXGBE DRIVERS
18485 M:      Byungho An <bh74.an@samsung.com>
18486 L:      netdev@vger.kernel.org
18487 S:      Supported
18488 F:      drivers/net/ethernet/samsung/sxgbe/
18489
18490 SAMSUNG THERMAL DRIVER
18491 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18492 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18493 L:      linux-pm@vger.kernel.org
18494 L:      linux-samsung-soc@vger.kernel.org
18495 S:      Maintained
18496 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18497 F:      drivers/thermal/samsung/
18498
18499 SAMSUNG USB2 PHY DRIVER
18500 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18501 L:      linux-kernel@vger.kernel.org
18502 S:      Supported
18503 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18504 F:      Documentation/driver-api/phy/samsung-usb2.rst
18505 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18506 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18507 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18508 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18509 F:      drivers/phy/samsung/phy-samsung-usb2.c
18510 F:      drivers/phy/samsung/phy-samsung-usb2.h
18511
18512 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18513 M:      Paul Barker <paul.barker@sancloud.com>
18514 R:      Marc Murphy <marc.murphy@sancloud.com>
18515 S:      Supported
18516 F:      arch/arm/boot/dts/am335x-sancloud*
18517
18518 SC1200 WDT DRIVER
18519 M:      Zwane Mwaikambo <zwanem@gmail.com>
18520 S:      Maintained
18521 F:      drivers/watchdog/sc1200wdt.c
18522
18523 SCHEDULER
18524 M:      Ingo Molnar <mingo@redhat.com>
18525 M:      Peter Zijlstra <peterz@infradead.org>
18526 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18527 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18528 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18529 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18530 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18531 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18532 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18533 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18534 L:      linux-kernel@vger.kernel.org
18535 S:      Maintained
18536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18537 F:      include/linux/preempt.h
18538 F:      include/linux/sched.h
18539 F:      include/linux/wait.h
18540 F:      include/uapi/linux/sched.h
18541 F:      kernel/sched/
18542
18543 SCR24X CHIP CARD INTERFACE DRIVER
18544 M:      Lubomir Rintel <lkundrak@v3.sk>
18545 S:      Supported
18546 F:      drivers/char/pcmcia/scr24x_cs.c
18547
18548 SCSI RDMA PROTOCOL (SRP) INITIATOR
18549 M:      Bart Van Assche <bvanassche@acm.org>
18550 L:      linux-rdma@vger.kernel.org
18551 S:      Supported
18552 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18553 F:      drivers/infiniband/ulp/srp/
18554 F:      include/scsi/srp.h
18555
18556 SCSI RDMA PROTOCOL (SRP) TARGET
18557 M:      Bart Van Assche <bvanassche@acm.org>
18558 L:      linux-rdma@vger.kernel.org
18559 L:      target-devel@vger.kernel.org
18560 S:      Supported
18561 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18562 F:      drivers/infiniband/ulp/srpt/
18563
18564 SCSI SG DRIVER
18565 M:      Doug Gilbert <dgilbert@interlog.com>
18566 L:      linux-scsi@vger.kernel.org
18567 S:      Maintained
18568 W:      http://sg.danny.cz/sg
18569 F:      Documentation/scsi/scsi-generic.rst
18570 F:      drivers/scsi/sg.c
18571 F:      include/scsi/sg.h
18572
18573 SCSI SUBSYSTEM
18574 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18575 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18576 L:      linux-scsi@vger.kernel.org
18577 S:      Maintained
18578 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18581 F:      Documentation/devicetree/bindings/scsi/
18582 F:      drivers/scsi/
18583 F:      drivers/ufs/
18584 F:      include/scsi/
18585
18586 SCSI TAPE DRIVER
18587 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18588 L:      linux-scsi@vger.kernel.org
18589 S:      Maintained
18590 F:      Documentation/scsi/st.rst
18591 F:      drivers/scsi/st.*
18592 F:      drivers/scsi/st_*.h
18593
18594 SCSI TARGET CORE USER DRIVER
18595 M:      Bodo Stroesser <bostroesser@gmail.com>
18596 L:      linux-scsi@vger.kernel.org
18597 L:      target-devel@vger.kernel.org
18598 S:      Supported
18599 F:      Documentation/target/tcmu-design.rst
18600 F:      drivers/target/target_core_user.c
18601 F:      include/uapi/linux/target_core_user.h
18602
18603 SCSI TARGET SUBSYSTEM
18604 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18605 L:      linux-scsi@vger.kernel.org
18606 L:      target-devel@vger.kernel.org
18607 S:      Supported
18608 W:      http://www.linux-iscsi.org
18609 Q:      https://patchwork.kernel.org/project/target-devel/list/
18610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18611 F:      Documentation/target/
18612 F:      drivers/target/
18613 F:      include/target/
18614
18615 SCTP PROTOCOL
18616 M:      Neil Horman <nhorman@tuxdriver.com>
18617 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18618 M:      Xin Long <lucien.xin@gmail.com>
18619 L:      linux-sctp@vger.kernel.org
18620 S:      Maintained
18621 W:      http://lksctp.sourceforge.net
18622 F:      Documentation/networking/sctp.rst
18623 F:      include/linux/sctp.h
18624 F:      include/net/sctp/
18625 F:      include/uapi/linux/sctp.h
18626 F:      net/sctp/
18627
18628 SCx200 CPU SUPPORT
18629 M:      Jim Cromie <jim.cromie@gmail.com>
18630 S:      Odd Fixes
18631 F:      Documentation/i2c/busses/scx200_acb.rst
18632 F:      arch/x86/platform/scx200/
18633 F:      drivers/i2c/busses/scx200*
18634 F:      drivers/mtd/maps/scx200_docflash.c
18635 F:      drivers/watchdog/scx200_wdt.c
18636 F:      include/linux/scx200.h
18637
18638 SCx200 GPIO DRIVER
18639 M:      Jim Cromie <jim.cromie@gmail.com>
18640 S:      Maintained
18641 F:      drivers/char/scx200_gpio.c
18642 F:      include/linux/scx200_gpio.h
18643
18644 SCx200 HRT CLOCKSOURCE DRIVER
18645 M:      Jim Cromie <jim.cromie@gmail.com>
18646 S:      Maintained
18647 F:      drivers/clocksource/scx200_hrt.c
18648
18649 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18650 M:      Sascha Sommer <saschasommer@freenet.de>
18651 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18652 S:      Maintained
18653 F:      drivers/mmc/host/sdricoh_cs.c
18654
18655 SECO BOARDS CEC DRIVER
18656 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18657 S:      Maintained
18658 F:      drivers/media/cec/platform/seco/seco-cec.c
18659 F:      drivers/media/cec/platform/seco/seco-cec.h
18660
18661 SECURE COMPUTING
18662 M:      Kees Cook <keescook@chromium.org>
18663 R:      Andy Lutomirski <luto@amacapital.net>
18664 R:      Will Drewry <wad@chromium.org>
18665 S:      Supported
18666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18667 F:      Documentation/userspace-api/seccomp_filter.rst
18668 F:      include/linux/seccomp.h
18669 F:      include/uapi/linux/seccomp.h
18670 F:      kernel/seccomp.c
18671 F:      tools/testing/selftests/kselftest_harness.h
18672 F:      tools/testing/selftests/seccomp/*
18673 K:      \bsecure_computing
18674 K:      \bTIF_SECCOMP\b
18675
18676 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18677 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18678 M:      Al Cooper <alcooperx@gmail.com>
18679 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18680 L:      linux-mmc@vger.kernel.org
18681 S:      Maintained
18682 F:      drivers/mmc/host/sdhci-brcmstb*
18683
18684 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18685 M:      Adrian Hunter <adrian.hunter@intel.com>
18686 L:      linux-mmc@vger.kernel.org
18687 S:      Supported
18688 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18689 F:      drivers/mmc/host/sdhci*
18690
18691 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18692 M:      Eugen Hristev <eugen.hristev@microchip.com>
18693 L:      linux-mmc@vger.kernel.org
18694 S:      Supported
18695 F:      drivers/mmc/host/sdhci-of-at91.c
18696
18697 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18698 M:      Ben Dooks <ben-linux@fluff.org>
18699 M:      Jaehoon Chung <jh80.chung@samsung.com>
18700 L:      linux-mmc@vger.kernel.org
18701 S:      Maintained
18702 F:      drivers/mmc/host/sdhci-s3c*
18703
18704 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18705 M:      Viresh Kumar <vireshk@kernel.org>
18706 L:      linux-mmc@vger.kernel.org
18707 S:      Maintained
18708 F:      drivers/mmc/host/sdhci-spear.c
18709
18710 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18711 M:      Vignesh Raghavendra <vigneshr@ti.com>
18712 L:      linux-mmc@vger.kernel.org
18713 S:      Maintained
18714 F:      drivers/mmc/host/sdhci-omap.c
18715
18716 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18717 M:      Haibo Chen <haibo.chen@nxp.com>
18718 L:      linux-imx@nxp.com
18719 L:      linux-mmc@vger.kernel.org
18720 S:      Maintained
18721 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18722
18723 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18724 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18725 L:      linux-block@vger.kernel.org
18726 S:      Supported
18727 F:      block/opal_proto.h
18728 F:      block/sed*
18729 F:      include/linux/sed*
18730 F:      include/uapi/linux/sed*
18731
18732 SECURITY CONTACT
18733 M:      Security Officers <security@kernel.org>
18734 S:      Supported
18735 F:      Documentation/admin-guide/security-bugs.rst
18736
18737 SECURITY SUBSYSTEM
18738 M:      Paul Moore <paul@paul-moore.com>
18739 M:      James Morris <jmorris@namei.org>
18740 M:      "Serge E. Hallyn" <serge@hallyn.com>
18741 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18742 S:      Supported
18743 W:      http://kernsec.org/
18744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18745 F:      security/
18746 X:      security/selinux/
18747
18748 SELINUX SECURITY MODULE
18749 M:      Paul Moore <paul@paul-moore.com>
18750 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18751 M:      Eric Paris <eparis@parisplace.org>
18752 L:      selinux@vger.kernel.org
18753 S:      Supported
18754 W:      https://selinuxproject.org
18755 W:      https://github.com/SELinuxProject
18756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18757 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18758 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18759 F:      Documentation/admin-guide/LSM/SELinux.rst
18760 F:      include/trace/events/avc.h
18761 F:      include/uapi/linux/selinux_netlink.h
18762 F:      scripts/selinux/
18763 F:      security/selinux/
18764
18765 SENSABLE PHANTOM
18766 M:      Jiri Slaby <jirislaby@kernel.org>
18767 S:      Maintained
18768 F:      drivers/misc/phantom.c
18769 F:      include/uapi/linux/phantom.h
18770
18771 SENSEAIR SUNRISE 006-0-0007
18772 M:      Jacopo Mondi <jacopo@jmondi.org>
18773 S:      Maintained
18774 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18775 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18776 F:      drivers/iio/chemical/sunrise_co2.c
18777
18778 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18779 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18780 S:      Maintained
18781 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18782 F:      drivers/iio/chemical/scd30.h
18783 F:      drivers/iio/chemical/scd30_core.c
18784 F:      drivers/iio/chemical/scd30_i2c.c
18785 F:      drivers/iio/chemical/scd30_serial.c
18786
18787 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18788 M:      Roan van Dijk <roan@protonic.nl>
18789 S:      Maintained
18790 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18791 F:      drivers/iio/chemical/scd4x.c
18792
18793 SENSIRION SGP40 GAS SENSOR DRIVER
18794 M:      Andreas Klinger <ak@it-klinger.de>
18795 S:      Maintained
18796 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18797 F:      drivers/iio/chemical/sgp40.c
18798
18799 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18800 M:      Tomasz Duszynski <tduszyns@gmail.com>
18801 S:      Maintained
18802 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18803 F:      drivers/iio/chemical/sps30.c
18804 F:      drivers/iio/chemical/sps30_i2c.c
18805 F:      drivers/iio/chemical/sps30_serial.c
18806
18807 SERIAL DEVICE BUS
18808 M:      Rob Herring <robh@kernel.org>
18809 L:      linux-serial@vger.kernel.org
18810 S:      Maintained
18811 F:      Documentation/devicetree/bindings/serial/serial.yaml
18812 F:      drivers/tty/serdev/
18813 F:      include/linux/serdev.h
18814
18815 SERIAL DRIVERS
18816 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18817 L:      linux-serial@vger.kernel.org
18818 S:      Maintained
18819 F:      Documentation/devicetree/bindings/serial/
18820 F:      drivers/tty/serial/
18821
18822 SERIAL IR RECEIVER
18823 M:      Sean Young <sean@mess.org>
18824 L:      linux-media@vger.kernel.org
18825 S:      Maintained
18826 F:      drivers/media/rc/serial_ir.c
18827
18828 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18829 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18830 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18831 S:      Maintained
18832 F:      Documentation/devicetree/bindings/slimbus/
18833 F:      drivers/slimbus/
18834 F:      include/linux/slimbus.h
18835
18836 SFC NETWORK DRIVER
18837 M:      Edward Cree <ecree.xilinx@gmail.com>
18838 M:      Martin Habets <habetsm.xilinx@gmail.com>
18839 L:      netdev@vger.kernel.org
18840 S:      Supported
18841 F:      Documentation/networking/devlink/sfc.rst
18842 F:      drivers/net/ethernet/sfc/
18843
18844 SFF/SFP/SFP+ MODULE SUPPORT
18845 M:      Russell King <linux@armlinux.org.uk>
18846 L:      netdev@vger.kernel.org
18847 S:      Maintained
18848 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18849 F:      drivers/net/phy/phylink.c
18850 F:      drivers/net/phy/sfp*
18851 F:      include/linux/mdio/mdio-i2c.h
18852 F:      include/linux/phylink.h
18853 F:      include/linux/sfp.h
18854 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)
18855
18856 SGI GRU DRIVER
18857 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18858 S:      Maintained
18859 F:      drivers/misc/sgi-gru/
18860
18861 SGI XP/XPC/XPNET DRIVER
18862 M:      Robin Holt <robinmholt@gmail.com>
18863 M:      Steve Wahl <steve.wahl@hpe.com>
18864 R:      Mike Travis <mike.travis@hpe.com>
18865 S:      Maintained
18866 F:      drivers/misc/sgi-xp/
18867
18868 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18869 M:      Karsten Graul <kgraul@linux.ibm.com>
18870 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18871 M:      Jan Karcher <jaka@linux.ibm.com>
18872 L:      linux-s390@vger.kernel.org
18873 S:      Supported
18874 F:      net/smc/
18875
18876 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18877 M:      Linus Walleij <linus.walleij@linaro.org>
18878 L:      linux-iio@vger.kernel.org
18879 S:      Maintained
18880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18881 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18882 F:      drivers/iio/light/gp2ap002.c
18883
18884 SHARP RJ54N1CB0C SENSOR DRIVER
18885 M:      Jacopo Mondi <jacopo@jmondi.org>
18886 L:      linux-media@vger.kernel.org
18887 S:      Odd fixes
18888 T:      git git://linuxtv.org/media_tree.git
18889 F:      drivers/media/i2c/rj54n1cb0c.c
18890 F:      include/media/i2c/rj54n1cb0c.h
18891
18892 SH_VOU V4L2 OUTPUT DRIVER
18893 L:      linux-media@vger.kernel.org
18894 S:      Orphan
18895 F:      drivers/media/platform/renesas/sh_vou.c
18896 F:      include/media/drv-intf/sh_vou.h
18897
18898 SI2157 MEDIA DRIVER
18899 M:      Antti Palosaari <crope@iki.fi>
18900 L:      linux-media@vger.kernel.org
18901 S:      Maintained
18902 W:      https://linuxtv.org
18903 W:      http://palosaari.fi/linux/
18904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18905 T:      git git://linuxtv.org/anttip/media_tree.git
18906 F:      drivers/media/tuners/si2157*
18907
18908 SI2165 MEDIA DRIVER
18909 M:      Matthias Schwarzott <zzam@gentoo.org>
18910 L:      linux-media@vger.kernel.org
18911 S:      Maintained
18912 W:      https://linuxtv.org
18913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18914 F:      drivers/media/dvb-frontends/si2165*
18915
18916 SI2168 MEDIA DRIVER
18917 M:      Antti Palosaari <crope@iki.fi>
18918 L:      linux-media@vger.kernel.org
18919 S:      Maintained
18920 W:      https://linuxtv.org
18921 W:      http://palosaari.fi/linux/
18922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18923 T:      git git://linuxtv.org/anttip/media_tree.git
18924 F:      drivers/media/dvb-frontends/si2168*
18925
18926 SI470X FM RADIO RECEIVER I2C DRIVER
18927 M:      Hans Verkuil <hverkuil@xs4all.nl>
18928 L:      linux-media@vger.kernel.org
18929 S:      Odd Fixes
18930 W:      https://linuxtv.org
18931 T:      git git://linuxtv.org/media_tree.git
18932 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18933
18934 SI470X FM RADIO RECEIVER USB DRIVER
18935 M:      Hans Verkuil <hverkuil@xs4all.nl>
18936 L:      linux-media@vger.kernel.org
18937 S:      Maintained
18938 W:      https://linuxtv.org
18939 T:      git git://linuxtv.org/media_tree.git
18940 F:      drivers/media/radio/si470x/radio-si470x-common.c
18941 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18942 F:      drivers/media/radio/si470x/radio-si470x.h
18943
18944 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18945 M:      Eduardo Valentin <edubezval@gmail.com>
18946 L:      linux-media@vger.kernel.org
18947 S:      Odd Fixes
18948 W:      https://linuxtv.org
18949 T:      git git://linuxtv.org/media_tree.git
18950 F:      drivers/media/radio/si4713/si4713.?
18951
18952 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18953 M:      Eduardo Valentin <edubezval@gmail.com>
18954 L:      linux-media@vger.kernel.org
18955 S:      Odd Fixes
18956 W:      https://linuxtv.org
18957 T:      git git://linuxtv.org/media_tree.git
18958 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18959
18960 SI4713 FM RADIO TRANSMITTER USB DRIVER
18961 M:      Hans Verkuil <hverkuil@xs4all.nl>
18962 L:      linux-media@vger.kernel.org
18963 S:      Maintained
18964 W:      https://linuxtv.org
18965 T:      git git://linuxtv.org/media_tree.git
18966 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18967
18968 SIANO DVB DRIVER
18969 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18970 L:      linux-media@vger.kernel.org
18971 S:      Odd fixes
18972 W:      https://linuxtv.org
18973 T:      git git://linuxtv.org/media_tree.git
18974 F:      drivers/media/common/siano/
18975 F:      drivers/media/mmc/siano/
18976 F:      drivers/media/usb/siano/
18977 F:      drivers/media/usb/siano/
18978
18979 SIFIVE DRIVERS
18980 M:      Palmer Dabbelt <palmer@dabbelt.com>
18981 M:      Paul Walmsley <paul.walmsley@sifive.com>
18982 L:      linux-riscv@lists.infradead.org
18983 S:      Supported
18984 N:      sifive
18985 K:      [^@]sifive
18986
18987 SIFIVE FU540 SYSTEM-ON-CHIP
18988 M:      Paul Walmsley <paul.walmsley@sifive.com>
18989 M:      Palmer Dabbelt <palmer@dabbelt.com>
18990 L:      linux-riscv@lists.infradead.org
18991 S:      Supported
18992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18993 N:      fu540
18994 K:      fu540
18995
18996 SIFIVE PDMA DRIVER
18997 M:      Green Wan <green.wan@sifive.com>
18998 S:      Maintained
18999 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19000 F:      drivers/dma/sf-pdma/
19001
19002 SIFIVE SOC DRIVERS
19003 M:      Conor Dooley <conor@kernel.org>
19004 L:      linux-riscv@lists.infradead.org
19005 S:      Maintained
19006 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19007 F:      drivers/soc/sifive/
19008
19009 SILEAD TOUCHSCREEN DRIVER
19010 M:      Hans de Goede <hdegoede@redhat.com>
19011 L:      linux-input@vger.kernel.org
19012 L:      platform-driver-x86@vger.kernel.org
19013 S:      Maintained
19014 F:      drivers/input/touchscreen/silead.c
19015 F:      drivers/platform/x86/touchscreen_dmi.c
19016
19017 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19018 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
19019 S:      Supported
19020 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19021 F:      drivers/net/wireless/silabs/wfx/
19022
19023 SILICON MOTION SM712 FRAME BUFFER DRIVER
19024 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19025 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19026 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19027 L:      linux-fbdev@vger.kernel.org
19028 S:      Maintained
19029 F:      Documentation/fb/sm712fb.rst
19030 F:      drivers/video/fbdev/sm712*
19031
19032 SILVACO I3C DUAL-ROLE MASTER
19033 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19034 M:      Conor Culhane <conor.culhane@silvaco.com>
19035 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19036 S:      Maintained
19037 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19038 F:      drivers/i3c/master/svc-i3c-master.c
19039
19040 SIMPLEFB FB DRIVER
19041 M:      Hans de Goede <hdegoede@redhat.com>
19042 L:      linux-fbdev@vger.kernel.org
19043 S:      Maintained
19044 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19045 F:      drivers/video/fbdev/simplefb.c
19046 F:      include/linux/platform_data/simplefb.h
19047
19048 SIMTEC EB110ATX (Chalice CATS)
19049 M:      Simtec Linux Team <linux@simtec.co.uk>
19050 S:      Supported
19051 W:      http://www.simtec.co.uk/products/EB110ATX/
19052
19053 SIOX
19054 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19055 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19056 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19057 S:      Supported
19058 F:      drivers/gpio/gpio-siox.c
19059 F:      drivers/siox/*
19060 F:      include/trace/events/siox.h
19061
19062 SIPHASH PRF ROUTINES
19063 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19064 S:      Maintained
19065 F:      include/linux/siphash.h
19066 F:      lib/siphash.c
19067 F:      lib/siphash_kunit.c
19068
19069 SIS 190 ETHERNET DRIVER
19070 M:      Francois Romieu <romieu@fr.zoreil.com>
19071 L:      netdev@vger.kernel.org
19072 S:      Maintained
19073 F:      drivers/net/ethernet/sis/sis190.c
19074
19075 SIS 900/7016 FAST ETHERNET DRIVER
19076 M:      Daniele Venzano <venza@brownhat.org>
19077 L:      netdev@vger.kernel.org
19078 S:      Maintained
19079 W:      http://www.brownhat.org/sis900.html
19080 F:      drivers/net/ethernet/sis/sis900.*
19081
19082 SIS FRAMEBUFFER DRIVER
19083 M:      Thomas Winischhofer <thomas@winischhofer.net>
19084 S:      Maintained
19085 W:      http://www.winischhofer.net/linuxsisvga.shtml
19086 F:      Documentation/fb/sisfb.rst
19087 F:      drivers/video/fbdev/sis/
19088 F:      include/video/sisfb.h
19089
19090 SIS I2C TOUCHSCREEN DRIVER
19091 M:      Mika Penttilä <mpenttil@redhat.com>
19092 L:      linux-input@vger.kernel.org
19093 S:      Maintained
19094 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19095 F:      drivers/input/touchscreen/sis_i2c.c
19096
19097 SIS USB2VGA DRIVER
19098 M:      Thomas Winischhofer <thomas@winischhofer.net>
19099 S:      Maintained
19100 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19101 F:      drivers/usb/misc/sisusbvga/
19102
19103 SL28 CPLD MFD DRIVER
19104 M:      Michael Walle <michael@walle.cc>
19105 S:      Maintained
19106 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19107 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19108 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19109 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19110 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19111 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19112 F:      drivers/gpio/gpio-sl28cpld.c
19113 F:      drivers/hwmon/sl28cpld-hwmon.c
19114 F:      drivers/irqchip/irq-sl28cpld.c
19115 F:      drivers/pwm/pwm-sl28cpld.c
19116 F:      drivers/watchdog/sl28cpld_wdt.c
19117
19118 SLAB ALLOCATOR
19119 M:      Christoph Lameter <cl@linux.com>
19120 M:      Pekka Enberg <penberg@kernel.org>
19121 M:      David Rientjes <rientjes@google.com>
19122 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19123 M:      Andrew Morton <akpm@linux-foundation.org>
19124 M:      Vlastimil Babka <vbabka@suse.cz>
19125 R:      Roman Gushchin <roman.gushchin@linux.dev>
19126 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19127 L:      linux-mm@kvack.org
19128 S:      Maintained
19129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19130 F:      include/linux/sl?b*.h
19131 F:      mm/sl?b*
19132
19133 SLCAN CAN NETWORK DRIVER
19134 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19135 L:      linux-can@vger.kernel.org
19136 S:      Maintained
19137 F:      drivers/net/can/slcan/
19138
19139 SLEEPABLE READ-COPY UPDATE (SRCU)
19140 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19141 M:      "Paul E. McKenney" <paulmck@kernel.org>
19142 M:      Josh Triplett <josh@joshtriplett.org>
19143 R:      Steven Rostedt <rostedt@goodmis.org>
19144 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19145 L:      rcu@vger.kernel.org
19146 S:      Supported
19147 W:      http://www.rdrop.com/users/paulmck/RCU/
19148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19149 F:      include/linux/srcu*.h
19150 F:      kernel/rcu/srcu*.c
19151
19152 SMACK SECURITY MODULE
19153 M:      Casey Schaufler <casey@schaufler-ca.com>
19154 L:      linux-security-module@vger.kernel.org
19155 S:      Maintained
19156 W:      http://schaufler-ca.com
19157 T:      git git://github.com/cschaufler/smack-next
19158 F:      Documentation/admin-guide/LSM/Smack.rst
19159 F:      security/smack/
19160
19161 SMC91x ETHERNET DRIVER
19162 M:      Nicolas Pitre <nico@fluxnic.net>
19163 S:      Odd Fixes
19164 F:      drivers/net/ethernet/smsc/smc91x.*
19165
19166 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19167 M:      Mark Rutland <mark.rutland@arm.com>
19168 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19169 M:      Sudeep Holla <sudeep.holla@arm.com>
19170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19171 S:      Maintained
19172 F:      drivers/firmware/smccc/
19173 F:      include/linux/arm-smccc.h
19174
19175 SMM665 HARDWARE MONITOR DRIVER
19176 M:      Guenter Roeck <linux@roeck-us.net>
19177 L:      linux-hwmon@vger.kernel.org
19178 S:      Maintained
19179 F:      Documentation/hwmon/smm665.rst
19180 F:      drivers/hwmon/smm665.c
19181
19182 SMSC EMC2103 HARDWARE MONITOR DRIVER
19183 M:      Steve Glendinning <steve.glendinning@shawell.net>
19184 L:      linux-hwmon@vger.kernel.org
19185 S:      Maintained
19186 F:      Documentation/hwmon/emc2103.rst
19187 F:      drivers/hwmon/emc2103.c
19188
19189 SMSC SCH5627 HARDWARE MONITOR DRIVER
19190 M:      Hans de Goede <hdegoede@redhat.com>
19191 L:      linux-hwmon@vger.kernel.org
19192 S:      Supported
19193 F:      Documentation/hwmon/sch5627.rst
19194 F:      drivers/hwmon/sch5627.c
19195
19196 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19197 M:      Steve Glendinning <steve.glendinning@shawell.net>
19198 L:      linux-fbdev@vger.kernel.org
19199 S:      Maintained
19200 F:      drivers/video/fbdev/smscufx.c
19201
19202 SMSC47B397 HARDWARE MONITOR DRIVER
19203 M:      Jean Delvare <jdelvare@suse.com>
19204 L:      linux-hwmon@vger.kernel.org
19205 S:      Maintained
19206 F:      Documentation/hwmon/smsc47b397.rst
19207 F:      drivers/hwmon/smsc47b397.c
19208
19209 SMSC911x ETHERNET DRIVER
19210 M:      Steve Glendinning <steve.glendinning@shawell.net>
19211 L:      netdev@vger.kernel.org
19212 S:      Maintained
19213 F:      drivers/net/ethernet/smsc/smsc911x.*
19214 F:      include/linux/smsc911x.h
19215
19216 SMSC9420 PCI ETHERNET DRIVER
19217 M:      Steve Glendinning <steve.glendinning@shawell.net>
19218 L:      netdev@vger.kernel.org
19219 S:      Maintained
19220 F:      drivers/net/ethernet/smsc/smsc9420.*
19221
19222 SOCIONEXT (SNI) AVE NETWORK DRIVER
19223 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19224 L:      netdev@vger.kernel.org
19225 S:      Maintained
19226 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19227 F:      drivers/net/ethernet/socionext/sni_ave.c
19228
19229 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19230 M:      Jassi Brar <jaswinder.singh@linaro.org>
19231 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19232 L:      netdev@vger.kernel.org
19233 S:      Maintained
19234 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19235 F:      drivers/net/ethernet/socionext/netsec.c
19236
19237 SOCIONEXT (SNI) Synquacer SPI DRIVER
19238 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19239 M:      Jassi Brar <jaswinder.singh@linaro.org>
19240 L:      linux-spi@vger.kernel.org
19241 S:      Maintained
19242 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19243 F:      drivers/spi/spi-synquacer.c
19244
19245 SOCIONEXT SYNQUACER I2C DRIVER
19246 M:      Ard Biesheuvel <ardb@kernel.org>
19247 L:      linux-i2c@vger.kernel.org
19248 S:      Maintained
19249 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19250 F:      drivers/i2c/busses/i2c-synquacer.c
19251
19252 SOCIONEXT UNIPHIER SOUND DRIVER
19253 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19254 S:      Orphan
19255 F:      sound/soc/uniphier/
19256
19257 SOCKET TIMESTAMPING
19258 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19259 S:      Maintained
19260 F:      Documentation/networking/timestamping.rst
19261 F:      include/uapi/linux/net_tstamp.h
19262 F:      tools/testing/selftests/net/so_txtime.c
19263
19264 SOEKRIS NET48XX LED SUPPORT
19265 M:      Chris Boot <bootc@bootc.net>
19266 S:      Maintained
19267 F:      drivers/leds/leds-net48xx.c
19268
19269 SOFT-IWARP DRIVER (siw)
19270 M:      Bernard Metzler <bmt@zurich.ibm.com>
19271 L:      linux-rdma@vger.kernel.org
19272 S:      Supported
19273 F:      drivers/infiniband/sw/siw/
19274 F:      include/uapi/rdma/siw-abi.h
19275
19276 SOFT-ROCE DRIVER (rxe)
19277 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19278 L:      linux-rdma@vger.kernel.org
19279 S:      Supported
19280 F:      drivers/infiniband/sw/rxe/
19281 F:      include/uapi/rdma/rdma_user_rxe.h
19282
19283 SOFTLOGIC 6x10 MPEG CODEC
19284 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19285 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19286 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19287 M:      Ismael Luceno <ismael@iodev.co.uk>
19288 L:      linux-media@vger.kernel.org
19289 S:      Supported
19290 F:      drivers/media/pci/solo6x10/
19291
19292 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19293 M:      James Morse <james.morse@arm.com>
19294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19295 S:      Maintained
19296 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19297 F:      drivers/firmware/arm_sdei.c
19298 F:      include/linux/arm_sdei.h
19299 F:      include/uapi/linux/arm_sdei.h
19300
19301 SOFTWARE NODES AND DEVICE PROPERTIES
19302 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19303 R:      Daniel Scally <djrscally@gmail.com>
19304 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19305 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19306 L:      linux-acpi@vger.kernel.org
19307 S:      Maintained
19308 F:      drivers/base/property.c
19309 F:      drivers/base/swnode.c
19310 F:      include/linux/fwnode.h
19311 F:      include/linux/property.h
19312
19313 SOFTWARE RAID (Multiple Disks) SUPPORT
19314 M:      Song Liu <song@kernel.org>
19315 L:      linux-raid@vger.kernel.org
19316 S:      Supported
19317 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19319 F:      drivers/md/Kconfig
19320 F:      drivers/md/Makefile
19321 F:      drivers/md/md*
19322 F:      drivers/md/raid*
19323 F:      include/linux/raid/
19324 F:      include/uapi/linux/raid/
19325
19326 SOLIDRUN CLEARFOG SUPPORT
19327 M:      Russell King <linux@armlinux.org.uk>
19328 S:      Maintained
19329 F:      arch/arm/boot/dts/armada-388-clearfog*
19330 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19331
19332 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19333 M:      Russell King <linux@armlinux.org.uk>
19334 S:      Maintained
19335 F:      arch/arm/boot/dts/imx6*-cubox-i*
19336 F:      arch/arm/boot/dts/imx6*-hummingboard*
19337 F:      arch/arm/boot/dts/imx6*-sr-*
19338
19339 SONIC NETWORK DRIVER
19340 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19341 L:      netdev@vger.kernel.org
19342 S:      Maintained
19343 F:      drivers/net/ethernet/natsemi/sonic.*
19344
19345 SONICS SILICON BACKPLANE DRIVER (SSB)
19346 M:      Michael Buesch <m@bues.ch>
19347 L:      linux-wireless@vger.kernel.org
19348 S:      Maintained
19349 F:      drivers/ssb/
19350 F:      include/linux/ssb/
19351
19352 SONY IMX208 SENSOR DRIVER
19353 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19354 L:      linux-media@vger.kernel.org
19355 S:      Maintained
19356 T:      git git://linuxtv.org/media_tree.git
19357 F:      drivers/media/i2c/imx208.c
19358
19359 SONY IMX214 SENSOR DRIVER
19360 M:      Ricardo Ribalda <ribalda@kernel.org>
19361 L:      linux-media@vger.kernel.org
19362 S:      Maintained
19363 T:      git git://linuxtv.org/media_tree.git
19364 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19365 F:      drivers/media/i2c/imx214.c
19366
19367 SONY IMX219 SENSOR DRIVER
19368 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19369 L:      linux-media@vger.kernel.org
19370 S:      Maintained
19371 T:      git git://linuxtv.org/media_tree.git
19372 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19373 F:      drivers/media/i2c/imx219.c
19374
19375 SONY IMX258 SENSOR DRIVER
19376 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19377 L:      linux-media@vger.kernel.org
19378 S:      Maintained
19379 T:      git git://linuxtv.org/media_tree.git
19380 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19381 F:      drivers/media/i2c/imx258.c
19382
19383 SONY IMX274 SENSOR DRIVER
19384 M:      Leon Luo <leonl@leopardimaging.com>
19385 L:      linux-media@vger.kernel.org
19386 S:      Maintained
19387 T:      git git://linuxtv.org/media_tree.git
19388 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19389 F:      drivers/media/i2c/imx274.c
19390
19391 SONY IMX290 SENSOR DRIVER
19392 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19393 L:      linux-media@vger.kernel.org
19394 S:      Maintained
19395 T:      git git://linuxtv.org/media_tree.git
19396 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19397 F:      drivers/media/i2c/imx290.c
19398
19399 SONY IMX319 SENSOR DRIVER
19400 M:      Bingbu Cao <bingbu.cao@intel.com>
19401 L:      linux-media@vger.kernel.org
19402 S:      Maintained
19403 T:      git git://linuxtv.org/media_tree.git
19404 F:      drivers/media/i2c/imx319.c
19405
19406 SONY IMX334 SENSOR DRIVER
19407 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19408 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19409 L:      linux-media@vger.kernel.org
19410 S:      Maintained
19411 T:      git git://linuxtv.org/media_tree.git
19412 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19413 F:      drivers/media/i2c/imx334.c
19414
19415 SONY IMX335 SENSOR DRIVER
19416 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19417 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19418 L:      linux-media@vger.kernel.org
19419 S:      Maintained
19420 T:      git git://linuxtv.org/media_tree.git
19421 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19422 F:      drivers/media/i2c/imx335.c
19423
19424 SONY IMX355 SENSOR DRIVER
19425 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19426 L:      linux-media@vger.kernel.org
19427 S:      Maintained
19428 T:      git git://linuxtv.org/media_tree.git
19429 F:      drivers/media/i2c/imx355.c
19430
19431 SONY IMX412 SENSOR DRIVER
19432 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19433 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19434 L:      linux-media@vger.kernel.org
19435 S:      Maintained
19436 T:      git git://linuxtv.org/media_tree.git
19437 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19438 F:      drivers/media/i2c/imx412.c
19439
19440 SONY MEMORYSTICK SUBSYSTEM
19441 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19442 M:      Alex Dubov <oakad@yahoo.com>
19443 M:      Ulf Hansson <ulf.hansson@linaro.org>
19444 L:      linux-mmc@vger.kernel.org
19445 S:      Maintained
19446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19447 F:      drivers/memstick/
19448 F:      include/linux/memstick.h
19449
19450 SONY VAIO CONTROL DEVICE DRIVER
19451 M:      Mattia Dongili <malattia@linux.it>
19452 L:      platform-driver-x86@vger.kernel.org
19453 S:      Maintained
19454 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19455 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19456 F:      drivers/char/sonypi.c
19457 F:      drivers/platform/x86/sony-laptop.c
19458 F:      include/linux/sony-laptop.h
19459
19460 SOUND
19461 M:      Jaroslav Kysela <perex@perex.cz>
19462 M:      Takashi Iwai <tiwai@suse.com>
19463 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19464 S:      Maintained
19465 W:      http://www.alsa-project.org/
19466 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19468 F:      Documentation/sound/
19469 F:      include/sound/
19470 F:      include/uapi/sound/
19471 F:      sound/
19472 F:      tools/testing/selftests/alsa
19473
19474 SOUND - COMPRESSED AUDIO
19475 M:      Vinod Koul <vkoul@kernel.org>
19476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19477 S:      Supported
19478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19479 F:      Documentation/sound/designs/compress-offload.rst
19480 F:      include/sound/compress_driver.h
19481 F:      include/uapi/sound/compress_*
19482 F:      sound/core/compress_offload.c
19483 F:      sound/soc/soc-compress.c
19484
19485 SOUND - DMAENGINE HELPERS
19486 M:      Lars-Peter Clausen <lars@metafoo.de>
19487 S:      Supported
19488 F:      include/sound/dmaengine_pcm.h
19489 F:      sound/core/pcm_dmaengine.c
19490 F:      sound/soc/soc-generic-dmaengine-pcm.c
19491
19492 SOUND - ALSA SELFTESTS
19493 M:      Mark Brown <broonie@kernel.org>
19494 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19495 L:      linux-kselftest@vger.kernel.org
19496 S:      Supported
19497 F:      tools/testing/selftests/alsa
19498
19499 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19500 M:      Liam Girdwood <lgirdwood@gmail.com>
19501 M:      Mark Brown <broonie@kernel.org>
19502 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19503 S:      Supported
19504 W:      http://alsa-project.org/main/index.php/ASoC
19505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19506 F:      Documentation/devicetree/bindings/sound/
19507 F:      Documentation/sound/soc/
19508 F:      include/dt-bindings/sound/
19509 F:      include/sound/soc*
19510 F:      sound/soc/
19511
19512 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19513 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19514 M:      Liam Girdwood <lgirdwood@gmail.com>
19515 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19516 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19517 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19518 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19519 M:      Daniel Baluta <daniel.baluta@nxp.com>
19520 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19521 S:      Supported
19522 W:      https://github.com/thesofproject/linux/
19523 F:      sound/soc/sof/
19524
19525 SOUNDWIRE SUBSYSTEM
19526 M:      Vinod Koul <vkoul@kernel.org>
19527 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19528 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19529 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19530 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19531 S:      Supported
19532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19533 F:      Documentation/driver-api/soundwire/
19534 F:      drivers/soundwire/
19535 F:      include/linux/soundwire/
19536
19537 SP2 MEDIA DRIVER
19538 M:      Olli Salonen <olli.salonen@iki.fi>
19539 L:      linux-media@vger.kernel.org
19540 S:      Maintained
19541 W:      https://linuxtv.org
19542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19543 F:      drivers/media/dvb-frontends/sp2*
19544
19545 SPANISH DOCUMENTATION
19546 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19547 S:      Maintained
19548 F:      Documentation/translations/sp_SP/
19549
19550 SPARC + UltraSPARC (sparc/sparc64)
19551 M:      "David S. Miller" <davem@davemloft.net>
19552 L:      sparclinux@vger.kernel.org
19553 S:      Maintained
19554 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19557 F:      arch/sparc/
19558 F:      drivers/sbus/
19559
19560 SPARC SERIAL DRIVERS
19561 M:      "David S. Miller" <davem@davemloft.net>
19562 L:      sparclinux@vger.kernel.org
19563 S:      Maintained
19564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19566 F:      drivers/tty/serial/suncore.c
19567 F:      drivers/tty/serial/sunhv.c
19568 F:      drivers/tty/serial/sunsab.c
19569 F:      drivers/tty/serial/sunsab.h
19570 F:      drivers/tty/serial/sunsu.c
19571 F:      drivers/tty/serial/sunzilog.c
19572 F:      drivers/tty/serial/sunzilog.h
19573 F:      drivers/tty/vcc.c
19574 F:      include/linux/sunserialcore.h
19575
19576 SPARSE CHECKER
19577 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19578 L:      linux-sparse@vger.kernel.org
19579 S:      Maintained
19580 W:      https://sparse.docs.kernel.org/
19581 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19582 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19583 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19584 F:      include/linux/compiler.h
19585
19586 SPEAKUP CONSOLE SPEECH DRIVER
19587 M:      William Hubbs <w.d.hubbs@gmail.com>
19588 M:      Chris Brannon <chris@the-brannons.com>
19589 M:      Kirk Reiser <kirk@reisers.ca>
19590 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19591 L:      speakup@linux-speakup.org
19592 S:      Odd Fixes
19593 W:      http://www.linux-speakup.org/
19594 W:      https://github.com/linux-speakup/speakup
19595 B:      https://github.com/linux-speakup/speakup/issues
19596 F:      drivers/accessibility/speakup/
19597
19598 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19599 M:      Viresh Kumar <vireshk@kernel.org>
19600 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19601 M:      soc@kernel.org
19602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19603 S:      Maintained
19604 W:      http://www.st.com/spear
19605 F:      arch/arm/boot/dts/spear*
19606 F:      arch/arm/mach-spear/
19607 F:      drivers/clk/spear/
19608 F:      drivers/pinctrl/spear/
19609
19610 SPI NOR SUBSYSTEM
19611 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19612 M:      Pratyush Yadav <pratyush@kernel.org>
19613 R:      Michael Walle <michael@walle.cc>
19614 L:      linux-mtd@lists.infradead.org
19615 S:      Maintained
19616 W:      http://www.linux-mtd.infradead.org/
19617 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19618 C:      irc://irc.oftc.net/mtd
19619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19620 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19621 F:      drivers/mtd/spi-nor/
19622 F:      include/linux/mtd/spi-nor.h
19623
19624 SPI SUBSYSTEM
19625 M:      Mark Brown <broonie@kernel.org>
19626 L:      linux-spi@vger.kernel.org
19627 S:      Maintained
19628 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19630 F:      Documentation/devicetree/bindings/spi/
19631 F:      Documentation/spi/
19632 F:      drivers/spi/
19633 F:      include/linux/spi/
19634 F:      include/uapi/linux/spi/
19635 F:      tools/spi/
19636
19637 SPIDERNET NETWORK DRIVER for CELL
19638 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19639 M:      Geoff Levand <geoff@infradead.org>
19640 L:      netdev@vger.kernel.org
19641 L:      linuxppc-dev@lists.ozlabs.org
19642 S:      Maintained
19643 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19644 F:      drivers/net/ethernet/toshiba/spider_net*
19645
19646 SPMI SUBSYSTEM
19647 M:      Stephen Boyd <sboyd@kernel.org>
19648 L:      linux-kernel@vger.kernel.org
19649 S:      Maintained
19650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19651 F:      Documentation/devicetree/bindings/spmi/
19652 F:      drivers/spmi/
19653 F:      include/dt-bindings/spmi/spmi.h
19654 F:      include/linux/spmi.h
19655 F:      include/trace/events/spmi.h
19656
19657 SPU FILE SYSTEM
19658 M:      Jeremy Kerr <jk@ozlabs.org>
19659 L:      linuxppc-dev@lists.ozlabs.org
19660 S:      Supported
19661 W:      http://www.ibm.com/developerworks/power/cell/
19662 F:      Documentation/filesystems/spufs/spufs.rst
19663 F:      arch/powerpc/platforms/cell/spufs/
19664
19665 SQUASHFS FILE SYSTEM
19666 M:      Phillip Lougher <phillip@squashfs.org.uk>
19667 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19668 S:      Maintained
19669 W:      http://squashfs.org.uk
19670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19671 F:      Documentation/filesystems/squashfs.rst
19672 F:      fs/squashfs/
19673
19674 SRM (Alpha) environment access
19675 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19676 S:      Maintained
19677 F:      arch/alpha/kernel/srm_env.c
19678
19679 ST LSM6DSx IMU IIO DRIVER
19680 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19681 L:      linux-iio@vger.kernel.org
19682 S:      Maintained
19683 W:      http://www.st.com/
19684 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19685 F:      drivers/iio/imu/st_lsm6dsx/
19686
19687 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19688 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19689 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19690 L:      linux-media@vger.kernel.org
19691 S:      Maintained
19692 T:      git git://linuxtv.org/media_tree.git
19693 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19694 F:      drivers/media/i2c/st-mipid02.c
19695
19696 ST STM32 I2C/SMBUS DRIVER
19697 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19698 M:      Alain Volmat <alain.volmat@foss.st.com>
19699 L:      linux-i2c@vger.kernel.org
19700 S:      Maintained
19701 F:      drivers/i2c/busses/i2c-stm32*
19702
19703 ST STM32 SPI DRIVER
19704 M:      Alain Volmat <alain.volmat@foss.st.com>
19705 L:      linux-spi@vger.kernel.org
19706 S:      Maintained
19707 F:      drivers/spi/spi-stm32.c
19708
19709 ST STPDDC60 DRIVER
19710 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19711 L:      linux-hwmon@vger.kernel.org
19712 S:      Maintained
19713 F:      Documentation/hwmon/stpddc60.rst
19714 F:      drivers/hwmon/pmbus/stpddc60.c
19715
19716 ST VGXY61 DRIVER
19717 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19718 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19719 L:      linux-media@vger.kernel.org
19720 S:      Maintained
19721 T:      git git://linuxtv.org/media_tree.git
19722 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19723 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19724 F:      drivers/media/i2c/st-vgxy61.c
19725
19726 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19727 M:      Song Qiang <songqiang1304521@gmail.com>
19728 L:      linux-iio@vger.kernel.org
19729 S:      Maintained
19730 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19731 F:      drivers/iio/proximity/vl53l0x-i2c.c
19732
19733 STABLE BRANCH
19734 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19735 M:      Sasha Levin <sashal@kernel.org>
19736 L:      stable@vger.kernel.org
19737 S:      Supported
19738 F:      Documentation/process/stable-kernel-rules.rst
19739
19740 STAGING - ATOMISP DRIVER
19741 M:      Hans de Goede <hdegoede@redhat.com>
19742 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19743 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19744 L:      linux-media@vger.kernel.org
19745 S:      Maintained
19746 F:      drivers/staging/media/atomisp/
19747
19748 STAGING - FIELDBUS SUBSYSTEM
19749 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19750 S:      Maintained
19751 F:      drivers/staging/fieldbus/*
19752 F:      drivers/staging/fieldbus/Documentation/
19753
19754 STAGING - HMS ANYBUS-S BUS
19755 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19756 S:      Maintained
19757 F:      drivers/staging/fieldbus/anybuss/
19758
19759 STAGING - INDUSTRIAL IO
19760 M:      Jonathan Cameron <jic23@kernel.org>
19761 L:      linux-iio@vger.kernel.org
19762 S:      Odd Fixes
19763 F:      Documentation/devicetree/bindings/staging/iio/
19764 F:      drivers/staging/iio/
19765
19766 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19767 M:      Marc Dietrich <marvin24@gmx.de>
19768 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19769 L:      linux-tegra@vger.kernel.org
19770 S:      Maintained
19771 F:      drivers/staging/nvec/
19772
19773 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19774 M:      Jens Frederich <jfrederich@gmail.com>
19775 M:      Jon Nettleton <jon.nettleton@gmail.com>
19776 S:      Maintained
19777 W:      http://wiki.laptop.org/go/DCON
19778 F:      drivers/staging/olpc_dcon/
19779
19780 STAGING - REALTEK RTL8188EU DRIVERS
19781 M:      Larry Finger <Larry.Finger@lwfinger.net>
19782 M:      Phillip Potter <phil@philpotter.co.uk>
19783 R:      Pavel Skripkin <paskripkin@gmail.com>
19784 S:      Supported
19785 F:      drivers/staging/r8188eu/
19786
19787 STAGING - REALTEK RTL8712U DRIVERS
19788 M:      Larry Finger <Larry.Finger@lwfinger.net>
19789 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19790 S:      Odd Fixes
19791 F:      drivers/staging/rtl8712/
19792
19793 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19794 M:      Michael Hennerich <michael.hennerich@analog.com>
19795 L:      linux-fbdev@vger.kernel.org
19796 S:      Supported
19797 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19798 F:      drivers/staging/fbtft/fb_seps525.c
19799
19800 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19801 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19802 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19803 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19804 L:      linux-fbdev@vger.kernel.org
19805 S:      Maintained
19806 F:      drivers/staging/sm750fb/
19807
19808 STAGING - VIA VT665X DRIVERS
19809 M:      Forest Bond <forest@alittletooquiet.net>
19810 S:      Odd Fixes
19811 F:      drivers/staging/vt665?/
19812
19813 STAGING SUBSYSTEM
19814 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19815 L:      linux-staging@lists.linux.dev
19816 S:      Supported
19817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19818 F:      drivers/staging/
19819
19820 STARFIRE/DURALAN NETWORK DRIVER
19821 M:      Ion Badulescu <ionut@badula.org>
19822 S:      Odd Fixes
19823 F:      drivers/net/ethernet/adaptec/starfire*
19824
19825 STARFIVE DEVICETREES
19826 M:      Emil Renner Berthing <kernel@esmil.dk>
19827 S:      Maintained
19828 F:      arch/riscv/boot/dts/starfive/
19829
19830 STARFIVE JH7100 CLOCK DRIVERS
19831 M:      Emil Renner Berthing <kernel@esmil.dk>
19832 S:      Maintained
19833 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19834 F:      drivers/clk/starfive/clk-starfive-jh7100*
19835 F:      include/dt-bindings/clock/starfive-jh7100*.h
19836
19837 STARFIVE JH71X0 PINCTRL DRIVERS
19838 M:      Emil Renner Berthing <kernel@esmil.dk>
19839 M:      Jianlong Huang <jianlong.huang@starfivetech.com>
19840 L:      linux-gpio@vger.kernel.org
19841 S:      Maintained
19842 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
19843 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
19844 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19845 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
19846
19847 STARFIVE JH7100 RESET CONTROLLER DRIVER
19848 M:      Emil Renner Berthing <kernel@esmil.dk>
19849 S:      Maintained
19850 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19851 F:      drivers/reset/reset-starfive-jh7100.c
19852 F:      include/dt-bindings/reset/starfive-jh7100.h
19853
19854 STARFIVE TRNG DRIVER
19855 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
19856 S:      Supported
19857 F:      Documentation/devicetree/bindings/rng/starfive*
19858 F:      drivers/char/hw_random/jh7110-trng.c
19859
19860 STATIC BRANCH/CALL
19861 M:      Peter Zijlstra <peterz@infradead.org>
19862 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19863 M:      Jason Baron <jbaron@akamai.com>
19864 R:      Steven Rostedt <rostedt@goodmis.org>
19865 R:      Ard Biesheuvel <ardb@kernel.org>
19866 S:      Supported
19867 F:      arch/*/include/asm/jump_label*.h
19868 F:      arch/*/include/asm/static_call*.h
19869 F:      arch/*/kernel/jump_label.c
19870 F:      arch/*/kernel/static_call.c
19871 F:      include/linux/jump_label*.h
19872 F:      include/linux/static_call*.h
19873 F:      kernel/jump_label.c
19874 F:      kernel/static_call.c
19875
19876 STI AUDIO (ASoC) DRIVERS
19877 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19878 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19879 S:      Maintained
19880 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19881 F:      sound/soc/sti/
19882
19883 STI CEC DRIVER
19884 M:      Alain Volmat <alain.volmat@foss.st.com>
19885 S:      Maintained
19886 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19887 F:      drivers/media/cec/platform/sti/
19888
19889 STK1160 USB VIDEO CAPTURE DRIVER
19890 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19891 L:      linux-media@vger.kernel.org
19892 S:      Maintained
19893 T:      git git://linuxtv.org/media_tree.git
19894 F:      drivers/media/usb/stk1160/
19895
19896 STM32 AUDIO (ASoC) DRIVERS
19897 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19898 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19899 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19900 S:      Maintained
19901 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19902 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19903 F:      sound/soc/stm/
19904
19905 STM32 TIMER/LPTIMER DRIVERS
19906 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19907 S:      Maintained
19908 F:      Documentation/ABI/testing/*timer-stm32
19909 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19910 F:      drivers/*/stm32-*timer*
19911 F:      drivers/pwm/pwm-stm32*
19912 F:      include/linux/*/stm32-*tim*
19913
19914 STMMAC ETHERNET DRIVER
19915 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19916 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19917 M:      Jose Abreu <joabreu@synopsys.com>
19918 L:      netdev@vger.kernel.org
19919 S:      Supported
19920 W:      http://www.stlinux.com
19921 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19922 F:      drivers/net/ethernet/stmicro/stmmac/
19923
19924 SUN3/3X
19925 M:      Sam Creasey <sammy@sammy.net>
19926 S:      Maintained
19927 W:      http://sammy.net/sun3/
19928 F:      arch/m68k/include/asm/sun3*
19929 F:      arch/m68k/kernel/*sun3*
19930 F:      arch/m68k/sun3*/
19931 F:      drivers/net/ethernet/i825xx/sun3*
19932
19933 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19934 M:      Hans de Goede <hdegoede@redhat.com>
19935 L:      linux-input@vger.kernel.org
19936 S:      Maintained
19937 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19938 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19939
19940 SUNDANCE NETWORK DRIVER
19941 M:      Denis Kirjanov <kda@linux-powerpc.org>
19942 L:      netdev@vger.kernel.org
19943 S:      Maintained
19944 F:      drivers/net/ethernet/dlink/sundance.c
19945
19946 SUN HAPPY MEAL ETHERNET DRIVER
19947 M:      Sean Anderson <seanga2@gmail.com>
19948 S:      Maintained
19949 F:      drivers/net/ethernet/sun/sunhme.*
19950
19951 SUNPLUS ETHERNET DRIVER
19952 M:      Wells Lu <wellslutw@gmail.com>
19953 L:      netdev@vger.kernel.org
19954 S:      Maintained
19955 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19956 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19957 F:      drivers/net/ethernet/sunplus/
19958
19959 SUNPLUS MMC DRIVER
19960 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
19961 M:      Li-hao Kuo <lhjeff911@gmail.com>
19962 S:      Maintained
19963 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19964 F:      drivers/mmc/host/sunplus-mmc.c
19965
19966 SUNPLUS OCOTP DRIVER
19967 M:      Vincent Shih <vincent.sunplus@gmail.com>
19968 S:      Maintained
19969 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19970 F:      drivers/nvmem/sunplus-ocotp.c
19971
19972 SUNPLUS USB2 PHY DRIVER
19973 M:      Vincent Shih <vincent.sunplus@gmail.com>
19974 L:      linux-usb@vger.kernel.org
19975 S:      Maintained
19976 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19977 F:      drivers/phy/sunplus/Kconfig
19978 F:      drivers/phy/sunplus/Makefile
19979 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19980
19981 SUNPLUS PWM DRIVER
19982 M:      Hammer Hsieh <hammerh0314@gmail.com>
19983 S:      Maintained
19984 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19985 F:      drivers/pwm/pwm-sunplus.c
19986
19987 SUNPLUS RTC DRIVER
19988 M:      Vincent Shih <vincent.sunplus@gmail.com>
19989 L:      linux-rtc@vger.kernel.org
19990 S:      Maintained
19991 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19992 F:      drivers/rtc/rtc-sunplus.c
19993
19994 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19995 M:      Li-hao Kuo <lhjeff911@gmail.com>
19996 L:      linux-spi@vger.kernel.org
19997 S:      Maintained
19998 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19999 F:      drivers/spi/spi-sunplus-sp7021.c
20000
20001 SUNPLUS UART DRIVER
20002 M:      Hammer Hsieh <hammerh0314@gmail.com>
20003 S:      Maintained
20004 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20005 F:      drivers/tty/serial/sunplus-uart.c
20006
20007 SUNPLUS WATCHDOG DRIVER
20008 M:      Xiantao Hu <xt.hu@cqplus1.com>
20009 L:      linux-watchdog@vger.kernel.org
20010 S:      Maintained
20011 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20012 F:      drivers/watchdog/sunplus_wdt.c
20013
20014 SUPERH
20015 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
20016 M:      Rich Felker <dalias@libc.org>
20017 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
20018 L:      linux-sh@vger.kernel.org
20019 S:      Maintained
20020 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20021 F:      Documentation/sh/
20022 F:      arch/sh/
20023 F:      drivers/sh/
20024
20025 SUSPEND TO RAM
20026 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20027 M:      Len Brown <len.brown@intel.com>
20028 M:      Pavel Machek <pavel@ucw.cz>
20029 L:      linux-pm@vger.kernel.org
20030 S:      Supported
20031 B:      https://bugzilla.kernel.org
20032 F:      Documentation/power/
20033 F:      arch/x86/kernel/acpi/sleep*
20034 F:      arch/x86/kernel/acpi/wakeup*
20035 F:      drivers/base/power/
20036 F:      include/linux/freezer.h
20037 F:      include/linux/pm.h
20038 F:      include/linux/suspend.h
20039 F:      kernel/power/
20040
20041 SVGA HANDLING
20042 M:      Martin Mares <mj@ucw.cz>
20043 L:      linux-video@atrey.karlin.mff.cuni.cz
20044 S:      Maintained
20045 F:      Documentation/admin-guide/svga.rst
20046 F:      arch/x86/boot/video*
20047
20048 SWITCHDEV
20049 M:      Jiri Pirko <jiri@resnulli.us>
20050 M:      Ivan Vecera <ivecera@redhat.com>
20051 L:      netdev@vger.kernel.org
20052 S:      Supported
20053 F:      include/net/switchdev.h
20054 F:      net/switchdev/
20055
20056 SY8106A REGULATOR DRIVER
20057 M:      Icenowy Zheng <icenowy@aosc.io>
20058 S:      Maintained
20059 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20060 F:      drivers/regulator/sy8106a-regulator.c
20061
20062 SYNC FILE FRAMEWORK
20063 M:      Sumit Semwal <sumit.semwal@linaro.org>
20064 R:      Gustavo Padovan <gustavo@padovan.org>
20065 L:      linux-media@vger.kernel.org
20066 L:      dri-devel@lists.freedesktop.org
20067 S:      Maintained
20068 T:      git git://anongit.freedesktop.org/drm/drm-misc
20069 F:      Documentation/driver-api/sync_file.rst
20070 F:      drivers/dma-buf/dma-fence*
20071 F:      drivers/dma-buf/sw_sync.c
20072 F:      drivers/dma-buf/sync_*
20073 F:      include/linux/sync_file.h
20074 F:      include/uapi/linux/sync_file.h
20075
20076 SYNOPSYS ARC ARCHITECTURE
20077 M:      Vineet Gupta <vgupta@kernel.org>
20078 L:      linux-snps-arc@lists.infradead.org
20079 S:      Supported
20080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20081 F:      Documentation/arc/
20082 F:      Documentation/devicetree/bindings/arc/*
20083 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20084 F:      arch/arc/
20085 F:      drivers/clocksource/arc_timer.c
20086 F:      drivers/tty/serial/arc_uart.c
20087
20088 SYNOPSYS ARC HSDK SDP pll clock driver
20089 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20090 S:      Supported
20091 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20092 F:      drivers/clk/clk-hsdk-pll.c
20093
20094 SYNOPSYS ARC SDP clock driver
20095 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20096 S:      Supported
20097 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20098 F:      drivers/clk/axs10x/*
20099
20100 SYNOPSYS ARC SDP platform support
20101 M:      Alexey Brodkin <abrodkin@synopsys.com>
20102 S:      Supported
20103 F:      Documentation/devicetree/bindings/arc/axs10*
20104 F:      arch/arc/boot/dts/ax*
20105 F:      arch/arc/plat-axs10x
20106
20107 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20108 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20109 S:      Supported
20110 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20111 F:      drivers/reset/reset-axs10x.c
20112
20113 SYNOPSYS CREG GPIO DRIVER
20114 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20115 S:      Maintained
20116 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20117 F:      drivers/gpio/gpio-creg-snps.c
20118
20119 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20120 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20121 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20122 S:      Supported
20123 F:      drivers/tty/serial/8250/8250_dw.c
20124 F:      drivers/tty/serial/8250/8250_dwlib.*
20125 F:      drivers/tty/serial/8250/8250_lpss.c
20126
20127 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20128 M:      Hoan Tran <hoan@os.amperecomputing.com>
20129 M:      Serge Semin <fancer.lancer@gmail.com>
20130 L:      linux-gpio@vger.kernel.org
20131 S:      Maintained
20132 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20133 F:      drivers/gpio/gpio-dwapb.c
20134
20135 SYNOPSYS DESIGNWARE APB SSI DRIVER
20136 M:      Serge Semin <fancer.lancer@gmail.com>
20137 L:      linux-spi@vger.kernel.org
20138 S:      Supported
20139 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20140 F:      drivers/spi/spi-dw*
20141
20142 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20143 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20144 S:      Maintained
20145 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20146 F:      drivers/dma/dw-axi-dmac/
20147
20148 SYNOPSYS DESIGNWARE DMAC DRIVER
20149 M:      Viresh Kumar <vireshk@kernel.org>
20150 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20151 S:      Maintained
20152 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20153 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20154 F:      drivers/dma/dw/
20155 F:      include/dt-bindings/dma/dw-dmac.h
20156 F:      include/linux/dma/dw.h
20157 F:      include/linux/platform_data/dma-dw.h
20158
20159 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20160 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20161 L:      netdev@vger.kernel.org
20162 S:      Supported
20163 F:      drivers/net/ethernet/synopsys/
20164
20165 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20166 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20167 L:      netdev@vger.kernel.org
20168 S:      Supported
20169 F:      drivers/net/pcs/pcs-xpcs.c
20170 F:      drivers/net/pcs/pcs-xpcs.h
20171 F:      include/linux/pcs/pcs-xpcs.h
20172
20173 SYNOPSYS DESIGNWARE I2C DRIVER
20174 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20175 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20176 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20177 R:      Jan Dabros <jsd@semihalf.com>
20178 L:      linux-i2c@vger.kernel.org
20179 S:      Supported
20180 F:      drivers/i2c/busses/i2c-designware-*
20181
20182 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20183 M:      Jaehoon Chung <jh80.chung@samsung.com>
20184 L:      linux-mmc@vger.kernel.org
20185 S:      Maintained
20186 F:      drivers/mmc/host/dw_mmc*
20187
20188 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20189 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20190 S:      Supported
20191 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20192 F:      drivers/reset/reset-hsdk.c
20193 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20194
20195 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20196 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20197 M:      Manjunath M B <manjumb@synopsys.com>
20198 L:      linux-mmc@vger.kernel.org
20199 S:      Maintained
20200 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20201
20202 SYSTEM CONFIGURATION (SYSCON)
20203 M:      Lee Jones <lee@kernel.org>
20204 M:      Arnd Bergmann <arnd@arndb.de>
20205 S:      Supported
20206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20207 F:      drivers/mfd/syscon.c
20208
20209 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20210 M:      Sudeep Holla <sudeep.holla@arm.com>
20211 R:      Cristian Marussi <cristian.marussi@arm.com>
20212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20213 S:      Maintained
20214 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20215 F:      drivers/clk/clk-sc[mp]i.c
20216 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20217 F:      drivers/firmware/arm_scmi/
20218 F:      drivers/firmware/arm_scpi.c
20219 F:      drivers/powercap/arm_scmi_powercap.c
20220 F:      drivers/regulator/scmi-regulator.c
20221 F:      drivers/reset/reset-scmi.c
20222 F:      include/linux/sc[mp]i_protocol.h
20223 F:      include/trace/events/scmi.h
20224 F:      include/uapi/linux/virtio_scmi.h
20225
20226 SYSTEM RESET/SHUTDOWN DRIVERS
20227 M:      Sebastian Reichel <sre@kernel.org>
20228 L:      linux-pm@vger.kernel.org
20229 S:      Maintained
20230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20231 F:      Documentation/devicetree/bindings/power/reset/
20232 F:      drivers/power/reset/
20233
20234 SYSTEM TRACE MODULE CLASS
20235 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20236 S:      Maintained
20237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20238 F:      Documentation/trace/stm.rst
20239 F:      drivers/hwtracing/stm/
20240 F:      include/linux/stm.h
20241 F:      include/uapi/linux/stm.h
20242
20243 SYSTEM76 ACPI DRIVER
20244 M:      Jeremy Soller <jeremy@system76.com>
20245 M:      System76 Product Development <productdev@system76.com>
20246 L:      platform-driver-x86@vger.kernel.org
20247 S:      Maintained
20248 F:      drivers/platform/x86/system76_acpi.c
20249
20250 SYSV FILESYSTEM
20251 S:      Orphan
20252 F:      Documentation/filesystems/sysv-fs.rst
20253 F:      fs/sysv/
20254 F:      include/linux/sysv_fs.h
20255
20256 TASKSTATS STATISTICS INTERFACE
20257 M:      Balbir Singh <bsingharora@gmail.com>
20258 S:      Maintained
20259 F:      Documentation/accounting/taskstats*
20260 F:      include/linux/taskstats*
20261 F:      kernel/taskstats.c
20262
20263 TC subsystem
20264 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20265 M:      Cong Wang <xiyou.wangcong@gmail.com>
20266 M:      Jiri Pirko <jiri@resnulli.us>
20267 L:      netdev@vger.kernel.org
20268 S:      Maintained
20269 F:      include/net/pkt_cls.h
20270 F:      include/net/pkt_sched.h
20271 F:      include/net/tc_act/
20272 F:      include/uapi/linux/pkt_cls.h
20273 F:      include/uapi/linux/pkt_sched.h
20274 F:      include/uapi/linux/tc_act/
20275 F:      include/uapi/linux/tc_ematch/
20276 F:      net/sched/
20277 F:      tools/testing/selftests/tc-testing
20278
20279 TC90522 MEDIA DRIVER
20280 M:      Akihiro Tsukada <tskd08@gmail.com>
20281 L:      linux-media@vger.kernel.org
20282 S:      Odd Fixes
20283 F:      drivers/media/dvb-frontends/tc90522*
20284
20285 TCP LOW PRIORITY MODULE
20286 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20287 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20288 S:      Maintained
20289 W:      http://tcp-lp-mod.sourceforge.net/
20290 F:      net/ipv4/tcp_lp.c
20291
20292 TDA10071 MEDIA DRIVER
20293 M:      Antti Palosaari <crope@iki.fi>
20294 L:      linux-media@vger.kernel.org
20295 S:      Maintained
20296 W:      https://linuxtv.org
20297 W:      http://palosaari.fi/linux/
20298 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20299 T:      git git://linuxtv.org/anttip/media_tree.git
20300 F:      drivers/media/dvb-frontends/tda10071*
20301
20302 TDA18212 MEDIA DRIVER
20303 M:      Antti Palosaari <crope@iki.fi>
20304 L:      linux-media@vger.kernel.org
20305 S:      Maintained
20306 W:      https://linuxtv.org
20307 W:      http://palosaari.fi/linux/
20308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20309 T:      git git://linuxtv.org/anttip/media_tree.git
20310 F:      drivers/media/tuners/tda18212*
20311
20312 TDA18218 MEDIA DRIVER
20313 M:      Antti Palosaari <crope@iki.fi>
20314 L:      linux-media@vger.kernel.org
20315 S:      Maintained
20316 W:      https://linuxtv.org
20317 W:      http://palosaari.fi/linux/
20318 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20319 T:      git git://linuxtv.org/anttip/media_tree.git
20320 F:      drivers/media/tuners/tda18218*
20321
20322 TDA18250 MEDIA DRIVER
20323 M:      Olli Salonen <olli.salonen@iki.fi>
20324 L:      linux-media@vger.kernel.org
20325 S:      Maintained
20326 W:      https://linuxtv.org
20327 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20328 T:      git git://linuxtv.org/media_tree.git
20329 F:      drivers/media/tuners/tda18250*
20330
20331 TDA18271 MEDIA DRIVER
20332 M:      Michael Krufky <mkrufky@linuxtv.org>
20333 L:      linux-media@vger.kernel.org
20334 S:      Maintained
20335 W:      https://linuxtv.org
20336 W:      http://github.com/mkrufky
20337 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20338 T:      git git://linuxtv.org/mkrufky/tuners.git
20339 F:      drivers/media/tuners/tda18271*
20340
20341 TDA1997x MEDIA DRIVER
20342 M:      Tim Harvey <tharvey@gateworks.com>
20343 L:      linux-media@vger.kernel.org
20344 S:      Maintained
20345 W:      https://linuxtv.org
20346 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20347 F:      drivers/media/i2c/tda1997x.*
20348
20349 TDA827x MEDIA DRIVER
20350 M:      Michael Krufky <mkrufky@linuxtv.org>
20351 L:      linux-media@vger.kernel.org
20352 S:      Maintained
20353 W:      https://linuxtv.org
20354 W:      http://github.com/mkrufky
20355 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20356 T:      git git://linuxtv.org/mkrufky/tuners.git
20357 F:      drivers/media/tuners/tda8290.*
20358
20359 TDA8290 MEDIA DRIVER
20360 M:      Michael Krufky <mkrufky@linuxtv.org>
20361 L:      linux-media@vger.kernel.org
20362 S:      Maintained
20363 W:      https://linuxtv.org
20364 W:      http://github.com/mkrufky
20365 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20366 T:      git git://linuxtv.org/mkrufky/tuners.git
20367 F:      drivers/media/tuners/tda8290.*
20368
20369 TDA9840 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/tda9840*
20376
20377 TEA5761 TUNER DRIVER
20378 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20379 L:      linux-media@vger.kernel.org
20380 S:      Odd fixes
20381 W:      https://linuxtv.org
20382 T:      git git://linuxtv.org/media_tree.git
20383 F:      drivers/media/tuners/tea5761.*
20384
20385 TEA5767 TUNER DRIVER
20386 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20387 L:      linux-media@vger.kernel.org
20388 S:      Maintained
20389 W:      https://linuxtv.org
20390 T:      git git://linuxtv.org/media_tree.git
20391 F:      drivers/media/tuners/tea5767.*
20392
20393 TEA6415C MEDIA DRIVER
20394 M:      Hans Verkuil <hverkuil@xs4all.nl>
20395 L:      linux-media@vger.kernel.org
20396 S:      Maintained
20397 W:      https://linuxtv.org
20398 T:      git git://linuxtv.org/media_tree.git
20399 F:      drivers/media/i2c/tea6415c*
20400
20401 TEA6420 MEDIA DRIVER
20402 M:      Hans Verkuil <hverkuil@xs4all.nl>
20403 L:      linux-media@vger.kernel.org
20404 S:      Maintained
20405 W:      https://linuxtv.org
20406 T:      git git://linuxtv.org/media_tree.git
20407 F:      drivers/media/i2c/tea6420*
20408
20409 TEAM DRIVER
20410 M:      Jiri Pirko <jiri@resnulli.us>
20411 L:      netdev@vger.kernel.org
20412 S:      Supported
20413 F:      drivers/net/team/
20414 F:      include/linux/if_team.h
20415 F:      include/uapi/linux/if_team.h
20416 F:      tools/testing/selftests/drivers/net/team/
20417
20418 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20419 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20420 S:      Maintained
20421 F:      arch/x86/platform/ts5500/
20422
20423 TECHNOTREND USB IR RECEIVER
20424 M:      Sean Young <sean@mess.org>
20425 L:      linux-media@vger.kernel.org
20426 S:      Maintained
20427 F:      drivers/media/rc/ttusbir.c
20428
20429 TECHWELL TW9910 VIDEO DECODER
20430 L:      linux-media@vger.kernel.org
20431 S:      Orphan
20432 F:      drivers/media/i2c/tw9910.c
20433 F:      include/media/i2c/tw9910.h
20434
20435 TEE SUBSYSTEM
20436 M:      Jens Wiklander <jens.wiklander@linaro.org>
20437 R:      Sumit Garg <sumit.garg@linaro.org>
20438 L:      op-tee@lists.trustedfirmware.org
20439 S:      Maintained
20440 F:      Documentation/staging/tee.rst
20441 F:      drivers/tee/
20442 F:      include/linux/tee_drv.h
20443 F:      include/uapi/linux/tee.h
20444
20445 TEGRA ARCHITECTURE SUPPORT
20446 M:      Thierry Reding <thierry.reding@gmail.com>
20447 M:      Jonathan Hunter <jonathanh@nvidia.com>
20448 L:      linux-tegra@vger.kernel.org
20449 S:      Supported
20450 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20452 N:      [^a-z]tegra
20453
20454 TEGRA CLOCK DRIVER
20455 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20456 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20457 S:      Supported
20458 F:      drivers/clk/tegra/
20459
20460 TEGRA DMA DRIVERS
20461 M:      Laxman Dewangan <ldewangan@nvidia.com>
20462 M:      Jon Hunter <jonathanh@nvidia.com>
20463 S:      Supported
20464 F:      drivers/dma/tegra*
20465
20466 TEGRA I2C DRIVER
20467 M:      Laxman Dewangan <ldewangan@nvidia.com>
20468 R:      Dmitry Osipenko <digetx@gmail.com>
20469 S:      Supported
20470 F:      drivers/i2c/busses/i2c-tegra.c
20471
20472 TEGRA IOMMU DRIVERS
20473 M:      Thierry Reding <thierry.reding@gmail.com>
20474 R:      Krishna Reddy <vdumpa@nvidia.com>
20475 L:      linux-tegra@vger.kernel.org
20476 S:      Supported
20477 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20478 F:      drivers/iommu/tegra*
20479
20480 TEGRA KBC DRIVER
20481 M:      Laxman Dewangan <ldewangan@nvidia.com>
20482 S:      Supported
20483 F:      drivers/input/keyboard/tegra-kbc.c
20484
20485 TEGRA NAND DRIVER
20486 M:      Stefan Agner <stefan@agner.ch>
20487 M:      Lucas Stach <dev@lynxeye.de>
20488 S:      Maintained
20489 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20490 F:      drivers/mtd/nand/raw/tegra_nand.c
20491
20492 TEGRA PWM DRIVER
20493 M:      Thierry Reding <thierry.reding@gmail.com>
20494 S:      Supported
20495 F:      drivers/pwm/pwm-tegra.c
20496
20497 TEGRA SERIAL DRIVER
20498 M:      Laxman Dewangan <ldewangan@nvidia.com>
20499 S:      Supported
20500 F:      drivers/tty/serial/serial-tegra.c
20501
20502 TEGRA SPI DRIVER
20503 M:      Laxman Dewangan <ldewangan@nvidia.com>
20504 S:      Supported
20505 F:      drivers/spi/spi-tegra*
20506
20507 TEGRA QUAD SPI DRIVER
20508 M:      Thierry Reding <thierry.reding@gmail.com>
20509 M:      Jonathan Hunter <jonathanh@nvidia.com>
20510 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20511 L:      linux-tegra@vger.kernel.org
20512 S:      Maintained
20513 F:      drivers/spi/spi-tegra210-quad.c
20514
20515 TEGRA VIDEO DRIVER
20516 M:      Thierry Reding <thierry.reding@gmail.com>
20517 M:      Jonathan Hunter <jonathanh@nvidia.com>
20518 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20519 L:      linux-media@vger.kernel.org
20520 L:      linux-tegra@vger.kernel.org
20521 S:      Maintained
20522 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20523 F:      drivers/staging/media/tegra-video/
20524
20525 TEGRA XUSB PADCTL DRIVER
20526 M:      JC Kuo <jckuo@nvidia.com>
20527 S:      Supported
20528 F:      drivers/phy/tegra/xusb*
20529
20530 TEHUTI ETHERNET DRIVER
20531 M:      Andy Gospodarek <andy@greyhouse.net>
20532 L:      netdev@vger.kernel.org
20533 S:      Supported
20534 F:      drivers/net/ethernet/tehuti/*
20535
20536 TELECOM CLOCK DRIVER FOR MCPL0010
20537 M:      Mark Gross <markgross@kernel.org>
20538 S:      Supported
20539 F:      drivers/char/tlclk.c
20540
20541 TEMPO SEMICONDUCTOR DRIVERS
20542 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20543 S:      Maintained
20544 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20545 F:      sound/soc/codecs/tscs*.c
20546 F:      sound/soc/codecs/tscs*.h
20547
20548 TENSILICA XTENSA PORT (xtensa)
20549 M:      Chris Zankel <chris@zankel.net>
20550 M:      Max Filippov <jcmvbkbc@gmail.com>
20551 L:      linux-xtensa@linux-xtensa.org
20552 S:      Maintained
20553 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20554 F:      arch/xtensa/
20555 F:      drivers/irqchip/irq-xtensa-*
20556
20557 TEXAS INSTRUMENTS ASoC DRIVERS
20558 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20559 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20560 S:      Maintained
20561 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20562 F:      sound/soc/ti/
20563
20564 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20565 M:      Ricardo Ribalda <ribalda@kernel.org>
20566 L:      linux-iio@vger.kernel.org
20567 S:      Supported
20568 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20569 F:      drivers/iio/dac/ti-dac7612.c
20570
20571 TEXAS INSTRUMENTS DMA DRIVERS
20572 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20573 L:      dmaengine@vger.kernel.org
20574 S:      Maintained
20575 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20576 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20577 F:      Documentation/devicetree/bindings/dma/ti/
20578 F:      drivers/dma/ti/
20579 X:      drivers/dma/ti/cppi41.c
20580 F:      include/linux/dma/k3-udma-glue.h
20581 F:      include/linux/dma/ti-cppi5.h
20582 F:      include/linux/dma/k3-psil.h
20583
20584 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20585 M:      Nishanth Menon <nm@ti.com>
20586 M:      Tero Kristo <kristo@kernel.org>
20587 M:      Santosh Shilimkar <ssantosh@kernel.org>
20588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20589 S:      Maintained
20590 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20591 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20592 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20593 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20594 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20595 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20596 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20597 F:      drivers/clk/keystone/sci-clk.c
20598 F:      drivers/firmware/ti_sci*
20599 F:      drivers/irqchip/irq-ti-sci-inta.c
20600 F:      drivers/irqchip/irq-ti-sci-intr.c
20601 F:      drivers/reset/reset-ti-sci.c
20602 F:      drivers/soc/ti/ti_sci_inta_msi.c
20603 F:      drivers/soc/ti/ti_sci_pm_domains.c
20604 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20605 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20606 F:      include/linux/soc/ti/ti_sci_protocol.h
20607
20608 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20609 M:      Robert Marko <robert.marko@sartura.hr>
20610 M:      Luka Perkov <luka.perkov@sartura.hr>
20611 L:      linux-hwmon@vger.kernel.org
20612 S:      Maintained
20613 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20614 F:      Documentation/hwmon/tps23861.rst
20615 F:      drivers/hwmon/tps23861.c
20616
20617 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20618 M:      Puranjay Mohan <puranjay12@gmail.com>
20619 L:      linux-iio@vger.kernel.org
20620 S:      Supported
20621 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20622 F:      drivers/iio/temperature/tmp117.c
20623
20624 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20625 M:      Hans Verkuil <hverkuil@xs4all.nl>
20626 L:      linux-media@vger.kernel.org
20627 S:      Maintained
20628 W:      https://linuxtv.org
20629 T:      git git://linuxtv.org/media_tree.git
20630 F:      drivers/media/radio/radio-raremono.c
20631
20632 THERMAL
20633 M:      Rafael J. Wysocki <rafael@kernel.org>
20634 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20635 R:      Amit Kucheria <amitk@kernel.org>
20636 R:      Zhang Rui <rui.zhang@intel.com>
20637 L:      linux-pm@vger.kernel.org
20638 S:      Supported
20639 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20641 F:      Documentation/ABI/testing/sysfs-class-thermal
20642 F:      Documentation/admin-guide/thermal/
20643 F:      Documentation/devicetree/bindings/thermal/
20644 F:      Documentation/driver-api/thermal/
20645 F:      drivers/thermal/
20646 F:      include/dt-bindings/thermal/
20647 F:      include/linux/cpu_cooling.h
20648 F:      include/linux/thermal.h
20649 F:      include/uapi/linux/thermal.h
20650 F:      tools/lib/thermal/
20651 F:      tools/thermal/
20652
20653 THERMAL DRIVER FOR AMLOGIC SOCS
20654 M:      Guillaume La Roque <glaroque@baylibre.com>
20655 L:      linux-pm@vger.kernel.org
20656 L:      linux-amlogic@lists.infradead.org
20657 S:      Supported
20658 W:      http://linux-meson.com/
20659 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20660 F:      drivers/thermal/amlogic_thermal.c
20661
20662 THERMAL/CPU_COOLING
20663 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20664 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20665 M:      Viresh Kumar <viresh.kumar@linaro.org>
20666 R:      Lukasz Luba <lukasz.luba@arm.com>
20667 L:      linux-pm@vger.kernel.org
20668 S:      Supported
20669 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20670 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20671 F:      drivers/thermal/cpufreq_cooling.c
20672 F:      drivers/thermal/cpuidle_cooling.c
20673 F:      include/linux/cpu_cooling.h
20674
20675 THERMAL/POWER_ALLOCATOR
20676 M:      Lukasz Luba <lukasz.luba@arm.com>
20677 L:      linux-pm@vger.kernel.org
20678 S:      Maintained
20679 F:      Documentation/driver-api/thermal/power_allocator.rst
20680 F:      drivers/thermal/gov_power_allocator.c
20681 F:      include/trace/events/thermal_power_allocator.h
20682
20683 THINKPAD ACPI EXTRAS DRIVER
20684 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20685 L:      ibm-acpi-devel@lists.sourceforge.net
20686 L:      platform-driver-x86@vger.kernel.org
20687 S:      Maintained
20688 W:      http://ibm-acpi.sourceforge.net
20689 W:      http://thinkwiki.org/wiki/Ibm-acpi
20690 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20691 F:      drivers/platform/x86/thinkpad_acpi.c
20692
20693 THINKPAD LMI DRIVER
20694 M:      Mark Pearson <markpearson@lenovo.com>
20695 L:      platform-driver-x86@vger.kernel.org
20696 S:      Maintained
20697 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20698 F:      drivers/platform/x86/think-lmi.?
20699
20700 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20701 M:      Isaac Hazan <isaac.hazan@intel.com>
20702 L:      linux-usb@vger.kernel.org
20703 S:      Maintained
20704 F:      drivers/thunderbolt/dma_test.c
20705
20706 THUNDERBOLT DRIVER
20707 M:      Andreas Noever <andreas.noever@gmail.com>
20708 M:      Michael Jamet <michael.jamet@intel.com>
20709 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20710 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20711 L:      linux-usb@vger.kernel.org
20712 S:      Maintained
20713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20714 F:      Documentation/admin-guide/thunderbolt.rst
20715 F:      drivers/thunderbolt/
20716 F:      include/linux/thunderbolt.h
20717
20718 THUNDERBOLT NETWORK DRIVER
20719 M:      Michael Jamet <michael.jamet@intel.com>
20720 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20721 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20722 L:      netdev@vger.kernel.org
20723 S:      Maintained
20724 F:      drivers/net/thunderbolt/
20725
20726 THUNDERX GPIO DRIVER
20727 M:      Robert Richter <rric@kernel.org>
20728 S:      Odd Fixes
20729 F:      drivers/gpio/gpio-thunderx.c
20730
20731 TI AM437X VPFE DRIVER
20732 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20733 L:      linux-media@vger.kernel.org
20734 S:      Maintained
20735 W:      https://linuxtv.org
20736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20737 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20738 F:      drivers/media/platform/ti/am437x/
20739
20740 TI BANDGAP AND THERMAL DRIVER
20741 M:      Eduardo Valentin <edubezval@gmail.com>
20742 M:      Keerthy <j-keerthy@ti.com>
20743 L:      linux-pm@vger.kernel.org
20744 L:      linux-omap@vger.kernel.org
20745 S:      Maintained
20746 F:      drivers/thermal/ti-soc-thermal/
20747
20748 TI BQ27XXX POWER SUPPLY DRIVER
20749 F:      drivers/power/supply/bq27xxx_battery.c
20750 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20751 F:      include/linux/power/bq27xxx_battery.h
20752
20753 TI CDCE706 CLOCK DRIVER
20754 M:      Max Filippov <jcmvbkbc@gmail.com>
20755 S:      Maintained
20756 F:      drivers/clk/clk-cdce706.c
20757
20758 TI CLOCK DRIVER
20759 M:      Tero Kristo <kristo@kernel.org>
20760 L:      linux-omap@vger.kernel.org
20761 S:      Odd Fixes
20762 F:      drivers/clk/ti/
20763 F:      include/linux/clk/ti.h
20764
20765 TI DAVINCI MACHINE SUPPORT
20766 M:      Sekhar Nori <nsekhar@ti.com>
20767 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20769 S:      Supported
20770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20771 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20772 F:      arch/arm/boot/dts/da850*
20773 F:      arch/arm/mach-davinci/
20774 F:      drivers/i2c/busses/i2c-davinci.c
20775
20776 TI DAVINCI SERIES CLOCK DRIVER
20777 M:      David Lechner <david@lechnology.com>
20778 R:      Sekhar Nori <nsekhar@ti.com>
20779 S:      Maintained
20780 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20781 F:      drivers/clk/davinci/
20782 F:      include/linux/clk/davinci.h
20783
20784 TI DAVINCI SERIES GPIO DRIVER
20785 M:      Keerthy <j-keerthy@ti.com>
20786 L:      linux-gpio@vger.kernel.org
20787 S:      Maintained
20788 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20789 F:      drivers/gpio/gpio-davinci.c
20790
20791 TI DAVINCI SERIES MEDIA DRIVER
20792 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20793 L:      linux-media@vger.kernel.org
20794 S:      Maintained
20795 W:      https://linuxtv.org
20796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20797 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20798 F:      drivers/media/platform/ti/davinci/
20799 F:      include/media/davinci/
20800
20801 TI ENHANCED CAPTURE (eCAP) DRIVER
20802 M:      Vignesh Raghavendra <vigneshr@ti.com>
20803 R:      Julien Panis <jpanis@baylibre.com>
20804 L:      linux-iio@vger.kernel.org
20805 L:      linux-omap@vger.kernel.org
20806 S:      Maintained
20807 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20808 F:      drivers/counter/ti-ecap-capture.c
20809
20810 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20811 R:      David Lechner <david@lechnology.com>
20812 L:      linux-iio@vger.kernel.org
20813 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20814 F:      drivers/counter/ti-eqep.c
20815
20816 TI ETHERNET SWITCH DRIVER (CPSW)
20817 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20818 L:      linux-omap@vger.kernel.org
20819 L:      netdev@vger.kernel.org
20820 S:      Maintained
20821 F:      drivers/net/ethernet/ti/cpsw*
20822 F:      drivers/net/ethernet/ti/davinci*
20823
20824 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20825 M:      Alex Dubov <oakad@yahoo.com>
20826 S:      Maintained
20827 W:      http://tifmxx.berlios.de/
20828 F:      drivers/memstick/host/tifm_ms.c
20829 F:      drivers/misc/tifm*
20830 F:      drivers/mmc/host/tifm_sd.c
20831 F:      include/linux/tifm.h
20832
20833 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20834 M:      Nishanth Menon <nm@ti.com>
20835 M:      Santosh Shilimkar <ssantosh@kernel.org>
20836 L:      linux-kernel@vger.kernel.org
20837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20838 S:      Maintained
20839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20840 F:      drivers/soc/ti/*
20841
20842 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20843 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20844 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20845 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20846 S:      Maintained
20847 F:      sound/soc/codecs/isabelle*
20848 F:      sound/soc/codecs/lm49453*
20849
20850 TI PCM3060 ASoC CODEC DRIVER
20851 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20852 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20853 S:      Maintained
20854 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20855 F:      sound/soc/codecs/pcm3060*
20856
20857 TI TAS571X FAMILY ASoC CODEC DRIVER
20858 M:      Kevin Cernekee <cernekee@chromium.org>
20859 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20860 S:      Odd Fixes
20861 F:      sound/soc/codecs/tas571x*
20862
20863 TI TRF7970A NFC DRIVER
20864 M:      Mark Greer <mgreer@animalcreek.com>
20865 L:      linux-wireless@vger.kernel.org
20866 L:      linux-nfc@lists.01.org (subscribers-only)
20867 S:      Supported
20868 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20869 F:      drivers/nfc/trf7970a.c
20870
20871 TI TSC2046 ADC DRIVER
20872 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20873 R:      kernel@pengutronix.de
20874 L:      linux-iio@vger.kernel.org
20875 S:      Maintained
20876 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20877 F:      drivers/iio/adc/ti-tsc2046.c
20878
20879 TI TWL4030 SERIES SOC CODEC DRIVER
20880 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20881 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20882 S:      Maintained
20883 F:      sound/soc/codecs/twl4030*
20884
20885 TI VPE/CAL DRIVERS
20886 M:      Benoit Parrot <bparrot@ti.com>
20887 L:      linux-media@vger.kernel.org
20888 S:      Maintained
20889 W:      http://linuxtv.org/
20890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20891 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20892 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20893 F:      drivers/media/platform/ti/cal/
20894 F:      drivers/media/platform/ti/vpe/
20895
20896 TI WILINK WIRELESS DRIVERS
20897 L:      linux-wireless@vger.kernel.org
20898 S:      Orphan
20899 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20900 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20902 F:      drivers/net/wireless/ti/
20903
20904 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20905 M:      John Stultz <jstultz@google.com>
20906 M:      Thomas Gleixner <tglx@linutronix.de>
20907 R:      Stephen Boyd <sboyd@kernel.org>
20908 L:      linux-kernel@vger.kernel.org
20909 S:      Supported
20910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20911 F:      include/linux/clocksource.h
20912 F:      include/linux/time.h
20913 F:      include/linux/timex.h
20914 F:      include/uapi/linux/time.h
20915 F:      include/uapi/linux/timex.h
20916 F:      kernel/time/alarmtimer.c
20917 F:      kernel/time/clocksource.c
20918 F:      kernel/time/ntp.c
20919 F:      kernel/time/time*.c
20920 F:      tools/testing/selftests/timers/
20921
20922 TIPC NETWORK LAYER
20923 M:      Jon Maloy <jmaloy@redhat.com>
20924 M:      Ying Xue <ying.xue@windriver.com>
20925 L:      netdev@vger.kernel.org (core kernel code)
20926 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20927 S:      Maintained
20928 W:      http://tipc.sourceforge.net/
20929 F:      include/uapi/linux/tipc*.h
20930 F:      net/tipc/
20931
20932 TLAN NETWORK DRIVER
20933 M:      Samuel Chessman <chessman@tux.org>
20934 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20935 S:      Maintained
20936 W:      http://sourceforge.net/projects/tlan/
20937 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20938 F:      drivers/net/ethernet/ti/tlan.*
20939
20940 TM6000 VIDEO4LINUX DRIVER
20941 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20942 L:      linux-media@vger.kernel.org
20943 S:      Odd fixes
20944 W:      https://linuxtv.org
20945 T:      git git://linuxtv.org/media_tree.git
20946 F:      Documentation/admin-guide/media/tm6000*
20947 F:      drivers/staging/media/deprecated/tm6000/
20948
20949 TMIO/SDHI MMC DRIVER
20950 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20951 L:      linux-mmc@vger.kernel.org
20952 L:      linux-renesas-soc@vger.kernel.org
20953 S:      Supported
20954 F:      drivers/mmc/host/renesas_sdhi*
20955 F:      drivers/mmc/host/tmio_mmc*
20956 F:      include/linux/mfd/tmio.h
20957
20958 TMP401 HARDWARE MONITOR DRIVER
20959 M:      Guenter Roeck <linux@roeck-us.net>
20960 L:      linux-hwmon@vger.kernel.org
20961 S:      Maintained
20962 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20963 F:      Documentation/hwmon/tmp401.rst
20964 F:      drivers/hwmon/tmp401.c
20965
20966 TMP464 HARDWARE MONITOR DRIVER
20967 M:      Agathe Porte <agathe.porte@nokia.com>
20968 M:      Guenter Roeck <linux@roeck-us.net>
20969 L:      linux-hwmon@vger.kernel.org
20970 S:      Maintained
20971 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20972 F:      Documentation/hwmon/tmp464.rst
20973 F:      drivers/hwmon/tmp464.c
20974
20975 TMP513 HARDWARE MONITOR DRIVER
20976 M:      Eric Tremblay <etremblay@distech-controls.com>
20977 L:      linux-hwmon@vger.kernel.org
20978 S:      Maintained
20979 F:      Documentation/hwmon/tmp513.rst
20980 F:      drivers/hwmon/tmp513.c
20981
20982 TMPFS (SHMEM FILESYSTEM)
20983 M:      Hugh Dickins <hughd@google.com>
20984 L:      linux-mm@kvack.org
20985 S:      Maintained
20986 F:      include/linux/shmem_fs.h
20987 F:      mm/shmem.c
20988
20989 TOMOYO SECURITY MODULE
20990 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20991 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20992 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20993 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20994 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20995 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20996 S:      Maintained
20997 W:      https://tomoyo.osdn.jp/
20998 F:      security/tomoyo/
20999
21000 TOPSTAR LAPTOP EXTRAS DRIVER
21001 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
21002 L:      platform-driver-x86@vger.kernel.org
21003 S:      Maintained
21004 F:      drivers/platform/x86/topstar-laptop.c
21005
21006 TORTURE-TEST MODULES
21007 M:      Davidlohr Bueso <dave@stgolabs.net>
21008 M:      "Paul E. McKenney" <paulmck@kernel.org>
21009 M:      Josh Triplett <josh@joshtriplett.org>
21010 L:      linux-kernel@vger.kernel.org
21011 S:      Supported
21012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21013 F:      Documentation/RCU/torture.rst
21014 F:      kernel/locking/locktorture.c
21015 F:      kernel/rcu/rcuscale.c
21016 F:      kernel/rcu/rcutorture.c
21017 F:      kernel/rcu/refscale.c
21018 F:      kernel/torture.c
21019
21020 TOSHIBA ACPI EXTRAS DRIVER
21021 M:      Azael Avalos <coproscefalo@gmail.com>
21022 L:      platform-driver-x86@vger.kernel.org
21023 S:      Maintained
21024 F:      drivers/platform/x86/toshiba_acpi.c
21025
21026 TOSHIBA BLUETOOTH DRIVER
21027 M:      Azael Avalos <coproscefalo@gmail.com>
21028 L:      platform-driver-x86@vger.kernel.org
21029 S:      Maintained
21030 F:      drivers/platform/x86/toshiba_bluetooth.c
21031
21032 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21033 M:      Azael Avalos <coproscefalo@gmail.com>
21034 L:      platform-driver-x86@vger.kernel.org
21035 S:      Maintained
21036 F:      drivers/platform/x86/toshiba_haps.c
21037
21038 TOSHIBA SMM DRIVER
21039 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21040 S:      Maintained
21041 W:      http://www.buzzard.org.uk/toshiba/
21042 F:      drivers/char/toshiba.c
21043 F:      include/linux/toshiba.h
21044 F:      include/uapi/linux/toshiba.h
21045
21046 TOSHIBA TC358743 DRIVER
21047 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21048 L:      linux-media@vger.kernel.org
21049 S:      Maintained
21050 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21051 F:      drivers/media/i2c/tc358743*
21052 F:      include/media/i2c/tc358743.h
21053
21054 TOSHIBA WMI HOTKEYS DRIVER
21055 M:      Azael Avalos <coproscefalo@gmail.com>
21056 L:      platform-driver-x86@vger.kernel.org
21057 S:      Maintained
21058 F:      drivers/platform/x86/toshiba-wmi.c
21059
21060 TPM DEVICE DRIVER
21061 M:      Peter Huewe <peterhuewe@gmx.de>
21062 M:      Jarkko Sakkinen <jarkko@kernel.org>
21063 R:      Jason Gunthorpe <jgg@ziepe.ca>
21064 L:      linux-integrity@vger.kernel.org
21065 S:      Maintained
21066 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21067 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21069 F:      drivers/char/tpm/
21070
21071 TPS546D24 DRIVER
21072 M:      Duke Du <dukedu83@gmail.com>
21073 L:      linux-hwmon@vger.kernel.org
21074 S:      Maintained
21075 F:      Documentation/hwmon/tps546d24.rst
21076 F:      drivers/hwmon/pmbus/tps546d24.c
21077
21078 TRACING
21079 M:      Steven Rostedt <rostedt@goodmis.org>
21080 M:      Masami Hiramatsu <mhiramat@kernel.org>
21081 L:      linux-kernel@vger.kernel.org
21082 L:      linux-trace-kernel@vger.kernel.org
21083 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21084 S:      Maintained
21085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21086 F:      Documentation/trace/*
21087 F:      fs/tracefs/
21088 F:      include/linux/trace*.h
21089 F:      include/trace/
21090 F:      kernel/trace/
21091 F:      scripts/tracing/
21092 F:      tools/testing/selftests/ftrace/
21093
21094 TRACING MMIO ACCESSES (MMIOTRACE)
21095 M:      Steven Rostedt <rostedt@goodmis.org>
21096 M:      Masami Hiramatsu <mhiramat@kernel.org>
21097 R:      Karol Herbst <karolherbst@gmail.com>
21098 R:      Pekka Paalanen <ppaalanen@gmail.com>
21099 L:      linux-kernel@vger.kernel.org
21100 L:      nouveau@lists.freedesktop.org
21101 S:      Maintained
21102 F:      arch/x86/mm/kmmio.c
21103 F:      arch/x86/mm/mmio-mod.c
21104 F:      arch/x86/mm/testmmiotrace.c
21105 F:      include/linux/mmiotrace.h
21106 F:      kernel/trace/trace_mmiotrace.c
21107
21108 TRACING OS NOISE / LATENCY TRACERS
21109 M:      Steven Rostedt <rostedt@goodmis.org>
21110 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21111 S:      Maintained
21112 F:      kernel/trace/trace_osnoise.c
21113 F:      include/trace/events/osnoise.h
21114 F:      kernel/trace/trace_hwlat.c
21115 F:      kernel/trace/trace_irqsoff.c
21116 F:      kernel/trace/trace_sched_wakeup.c
21117 F:      Documentation/trace/osnoise-tracer.rst
21118 F:      Documentation/trace/timerlat-tracer.rst
21119 F:      Documentation/trace/hwlat_detector.rst
21120 F:      arch/*/kernel/trace.c
21121
21122 Real-time Linux Analysis (RTLA) tools
21123 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21124 M:      Steven Rostedt <rostedt@goodmis.org>
21125 L:      linux-trace-devel@vger.kernel.org
21126 S:      Maintained
21127 F:      Documentation/tools/rtla/
21128 F:      tools/tracing/rtla/
21129
21130 TRADITIONAL CHINESE DOCUMENTATION
21131 M:      Hu Haowen <src.res@email.cn>
21132 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21133 S:      Maintained
21134 W:      https://github.com/srcres258/linux-doc
21135 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21136 F:      Documentation/translations/zh_TW/
21137
21138 TTY LAYER
21139 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21140 M:      Jiri Slaby <jirislaby@kernel.org>
21141 S:      Supported
21142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21143 F:      Documentation/driver-api/serial/
21144 F:      drivers/tty/
21145 F:      drivers/tty/serial/serial_core.c
21146 F:      include/linux/selection.h
21147 F:      include/linux/serial.h
21148 F:      include/linux/serial_core.h
21149 F:      include/linux/sysrq.h
21150 F:      include/linux/tty*.h
21151 F:      include/linux/vt.h
21152 F:      include/linux/vt_*.h
21153 F:      include/uapi/linux/serial.h
21154 F:      include/uapi/linux/serial_core.h
21155 F:      include/uapi/linux/tty.h
21156
21157 TUA9001 MEDIA DRIVER
21158 M:      Antti Palosaari <crope@iki.fi>
21159 L:      linux-media@vger.kernel.org
21160 S:      Maintained
21161 W:      https://linuxtv.org
21162 W:      http://palosaari.fi/linux/
21163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21164 T:      git git://linuxtv.org/anttip/media_tree.git
21165 F:      drivers/media/tuners/tua9001*
21166
21167 TULIP NETWORK DRIVERS
21168 L:      netdev@vger.kernel.org
21169 L:      linux-parisc@vger.kernel.org
21170 S:      Orphan
21171 F:      drivers/net/ethernet/dec/tulip/
21172
21173 TUN/TAP driver
21174 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21175 S:      Maintained
21176 W:      http://vtun.sourceforge.net/tun
21177 F:      Documentation/networking/tuntap.rst
21178 F:      arch/um/os-Linux/drivers/
21179
21180 TURBOCHANNEL SUBSYSTEM
21181 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21182 M:      Ralf Baechle <ralf@linux-mips.org>
21183 L:      linux-mips@vger.kernel.org
21184 S:      Maintained
21185 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21186 F:      drivers/tc/
21187 F:      include/linux/tc.h
21188
21189 TURBOSTAT UTILITY
21190 M:      "Len Brown" <lenb@kernel.org>
21191 L:      linux-pm@vger.kernel.org
21192 S:      Supported
21193 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21194 B:      https://bugzilla.kernel.org
21195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21196 F:      tools/power/x86/turbostat/
21197
21198 TW5864 VIDEO4LINUX DRIVER
21199 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21200 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21201 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21202 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21203 L:      linux-media@vger.kernel.org
21204 S:      Supported
21205 F:      drivers/media/pci/tw5864/
21206
21207 TW68 VIDEO4LINUX DRIVER
21208 M:      Hans Verkuil <hverkuil@xs4all.nl>
21209 L:      linux-media@vger.kernel.org
21210 S:      Odd Fixes
21211 W:      https://linuxtv.org
21212 T:      git git://linuxtv.org/media_tree.git
21213 F:      drivers/media/pci/tw68/
21214
21215 TW686X VIDEO4LINUX DRIVER
21216 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21217 L:      linux-media@vger.kernel.org
21218 S:      Maintained
21219 W:      http://linuxtv.org
21220 T:      git git://linuxtv.org/media_tree.git
21221 F:      drivers/media/pci/tw686x/
21222
21223 U-BOOT ENVIRONMENT VARIABLES
21224 M:      Rafał Miłecki <rafal@milecki.pl>
21225 S:      Maintained
21226 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21227 F:      drivers/nvmem/u-boot-env.c
21228
21229 UACCE ACCELERATOR FRAMEWORK
21230 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21231 M:      Zhou Wang <wangzhou1@hisilicon.com>
21232 L:      linux-accelerators@lists.ozlabs.org
21233 L:      linux-kernel@vger.kernel.org
21234 S:      Maintained
21235 F:      Documentation/ABI/testing/sysfs-driver-uacce
21236 F:      Documentation/misc-devices/uacce.rst
21237 F:      drivers/misc/uacce/
21238 F:      include/linux/uacce.h
21239 F:      include/uapi/misc/uacce/
21240
21241 UBI FILE SYSTEM (UBIFS)
21242 M:      Richard Weinberger <richard@nod.at>
21243 L:      linux-mtd@lists.infradead.org
21244 S:      Supported
21245 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21248 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21249 F:      Documentation/filesystems/ubifs-authentication.rst
21250 F:      Documentation/filesystems/ubifs.rst
21251 F:      fs/ubifs/
21252
21253 UBLK USERSPACE BLOCK DRIVER
21254 M:      Ming Lei <ming.lei@redhat.com>
21255 L:      linux-block@vger.kernel.org
21256 S:      Maintained
21257 F:      Documentation/block/ublk.rst
21258 F:      drivers/block/ublk_drv.c
21259 F:      include/uapi/linux/ublk_cmd.h
21260
21261 UCLINUX (M68KNOMMU AND COLDFIRE)
21262 M:      Greg Ungerer <gerg@linux-m68k.org>
21263 L:      linux-m68k@lists.linux-m68k.org
21264 L:      uclinux-dev@uclinux.org  (subscribers-only)
21265 S:      Maintained
21266 W:      http://www.linux-m68k.org/
21267 W:      http://www.uclinux.org/
21268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21269 F:      arch/m68k/*/*_no.*
21270 F:      arch/m68k/68*/
21271 F:      arch/m68k/coldfire/
21272 F:      arch/m68k/include/asm/*_no.*
21273
21274 UDF FILESYSTEM
21275 M:      Jan Kara <jack@suse.com>
21276 S:      Maintained
21277 F:      Documentation/filesystems/udf.rst
21278 F:      fs/udf/
21279
21280 UDRAW TABLET
21281 M:      Bastien Nocera <hadess@hadess.net>
21282 L:      linux-input@vger.kernel.org
21283 S:      Maintained
21284 F:      drivers/hid/hid-udraw-ps3.c
21285
21286 UFS FILESYSTEM
21287 M:      Evgeniy Dushistov <dushistov@mail.ru>
21288 S:      Maintained
21289 F:      Documentation/admin-guide/ufs.rst
21290 F:      fs/ufs/
21291
21292 UHID USERSPACE HID IO DRIVER
21293 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21294 L:      linux-input@vger.kernel.org
21295 S:      Maintained
21296 F:      drivers/hid/uhid.c
21297 F:      include/uapi/linux/uhid.h
21298
21299 ULPI BUS
21300 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21301 L:      linux-usb@vger.kernel.org
21302 S:      Maintained
21303 F:      drivers/usb/common/ulpi.c
21304 F:      include/linux/ulpi/
21305
21306 UNICODE SUBSYSTEM
21307 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21308 L:      linux-fsdevel@vger.kernel.org
21309 S:      Supported
21310 F:      fs/unicode/
21311
21312 UNIFDEF
21313 M:      Tony Finch <dot@dotat.at>
21314 S:      Maintained
21315 W:      http://dotat.at/prog/unifdef
21316 F:      scripts/unifdef.c
21317
21318 UNIFORM CDROM DRIVER
21319 M:      Phillip Potter <phil@philpotter.co.uk>
21320 S:      Maintained
21321 F:      Documentation/cdrom/
21322 F:      drivers/cdrom/cdrom.c
21323 F:      include/linux/cdrom.h
21324 F:      include/uapi/linux/cdrom.h
21325
21326 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21327 R:      Alim Akhtar <alim.akhtar@samsung.com>
21328 R:      Avri Altman <avri.altman@wdc.com>
21329 R:      Bart Van Assche <bvanassche@acm.org>
21330 L:      linux-scsi@vger.kernel.org
21331 S:      Supported
21332 F:      Documentation/devicetree/bindings/ufs/
21333 F:      Documentation/scsi/ufs.rst
21334 F:      drivers/ufs/core/
21335
21336 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21337 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21338 L:      linux-scsi@vger.kernel.org
21339 S:      Supported
21340 F:      drivers/ufs/host/*dwc*
21341
21342 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21343 M:      Stanley Chu <stanley.chu@mediatek.com>
21344 L:      linux-scsi@vger.kernel.org
21345 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21346 S:      Maintained
21347 F:      drivers/ufs/host/ufs-mediatek*
21348
21349 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21350 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21351 L:      linux-renesas-soc@vger.kernel.org
21352 L:      linux-scsi@vger.kernel.org
21353 S:      Maintained
21354 F:      drivers/ufs/host/ufs-renesas.c
21355
21356 UNSORTED BLOCK IMAGES (UBI)
21357 M:      Richard Weinberger <richard@nod.at>
21358 L:      linux-mtd@lists.infradead.org
21359 S:      Supported
21360 W:      http://www.linux-mtd.infradead.org/
21361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21363 F:      drivers/mtd/ubi/
21364 F:      include/linux/mtd/ubi.h
21365 F:      include/uapi/mtd/ubi-user.h
21366
21367 USB "USBNET" DRIVER FRAMEWORK
21368 M:      Oliver Neukum <oneukum@suse.com>
21369 L:      netdev@vger.kernel.org
21370 S:      Maintained
21371 W:      http://www.linux-usb.org/usbnet
21372 F:      drivers/net/usb/usbnet.c
21373 F:      include/linux/usb/usbnet.h
21374
21375 USB ACM DRIVER
21376 M:      Oliver Neukum <oneukum@suse.com>
21377 L:      linux-usb@vger.kernel.org
21378 S:      Maintained
21379 F:      Documentation/usb/acm.rst
21380 F:      drivers/usb/class/cdc-acm.*
21381
21382 USB APPLE MFI FASTCHARGE DRIVER
21383 M:      Bastien Nocera <hadess@hadess.net>
21384 L:      linux-usb@vger.kernel.org
21385 S:      Maintained
21386 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21387
21388 USB AR5523 WIRELESS DRIVER
21389 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21390 L:      linux-wireless@vger.kernel.org
21391 S:      Maintained
21392 F:      drivers/net/wireless/ath/ar5523/
21393
21394 USB ATTACHED SCSI
21395 M:      Oliver Neukum <oneukum@suse.com>
21396 L:      linux-usb@vger.kernel.org
21397 L:      linux-scsi@vger.kernel.org
21398 S:      Maintained
21399 F:      drivers/usb/storage/uas.c
21400
21401 USB CDC ETHERNET DRIVER
21402 M:      Oliver Neukum <oliver@neukum.org>
21403 L:      linux-usb@vger.kernel.org
21404 S:      Maintained
21405 F:      drivers/net/usb/cdc_*.c
21406 F:      include/uapi/linux/usb/cdc.h
21407
21408 USB CHAOSKEY DRIVER
21409 M:      Keith Packard <keithp@keithp.com>
21410 L:      linux-usb@vger.kernel.org
21411 S:      Maintained
21412 F:      drivers/usb/misc/chaoskey.c
21413
21414 USB CYPRESS C67X00 DRIVER
21415 L:      linux-usb@vger.kernel.org
21416 S:      Orphan
21417 F:      drivers/usb/c67x00/
21418
21419 USB DAVICOM DM9601 DRIVER
21420 M:      Peter Korsgaard <peter@korsgaard.com>
21421 L:      netdev@vger.kernel.org
21422 S:      Maintained
21423 W:      http://www.linux-usb.org/usbnet
21424 F:      drivers/net/usb/dm9601.c
21425
21426 USB EHCI DRIVER
21427 M:      Alan Stern <stern@rowland.harvard.edu>
21428 L:      linux-usb@vger.kernel.org
21429 S:      Maintained
21430 F:      Documentation/usb/ehci.rst
21431 F:      drivers/usb/host/ehci*
21432
21433 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21434 M:      Jiri Kosina <jikos@kernel.org>
21435 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21436 L:      linux-usb@vger.kernel.org
21437 S:      Maintained
21438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21439 F:      Documentation/hid/hiddev.rst
21440 F:      drivers/hid/usbhid/
21441
21442 USB INTEL XHCI ROLE MUX DRIVER
21443 M:      Hans de Goede <hdegoede@redhat.com>
21444 L:      linux-usb@vger.kernel.org
21445 S:      Maintained
21446 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21447
21448 USB IP DRIVER FOR HISILICON KIRIN 960
21449 M:      Yu Chen <chenyu56@huawei.com>
21450 M:      Binghui Wang <wangbinghui@hisilicon.com>
21451 L:      linux-usb@vger.kernel.org
21452 S:      Maintained
21453 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21454 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21455
21456 USB IP DRIVER FOR HISILICON KIRIN 970
21457 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21458 L:      linux-usb@vger.kernel.org
21459 S:      Maintained
21460 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21461 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21462
21463 USB ISP116X DRIVER
21464 M:      Olav Kongas <ok@artecdesign.ee>
21465 L:      linux-usb@vger.kernel.org
21466 S:      Maintained
21467 F:      drivers/usb/host/isp116x*
21468 F:      include/linux/usb/isp116x.h
21469
21470 USB ISP1760 DRIVER
21471 M:      Rui Miguel Silva <rui.silva@linaro.org>
21472 L:      linux-usb@vger.kernel.org
21473 S:      Maintained
21474 F:      drivers/usb/isp1760/*
21475 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21476
21477 USB LAN78XX ETHERNET DRIVER
21478 M:      Woojung Huh <woojung.huh@microchip.com>
21479 M:      UNGLinuxDriver@microchip.com
21480 L:      netdev@vger.kernel.org
21481 S:      Maintained
21482 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21483 F:      drivers/net/usb/lan78xx.*
21484 F:      include/dt-bindings/net/microchip-lan78xx.h
21485
21486 USB MASS STORAGE DRIVER
21487 M:      Alan Stern <stern@rowland.harvard.edu>
21488 L:      linux-usb@vger.kernel.org
21489 L:      usb-storage@lists.one-eyed-alien.net
21490 S:      Maintained
21491 F:      drivers/usb/storage/
21492
21493 USB MIDI DRIVER
21494 M:      Clemens Ladisch <clemens@ladisch.de>
21495 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21496 S:      Maintained
21497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21498 F:      sound/usb/midi.*
21499
21500 USB NETWORKING DRIVERS
21501 L:      linux-usb@vger.kernel.org
21502 S:      Odd Fixes
21503 F:      drivers/net/usb/
21504
21505 USB OHCI DRIVER
21506 M:      Alan Stern <stern@rowland.harvard.edu>
21507 L:      linux-usb@vger.kernel.org
21508 S:      Maintained
21509 F:      Documentation/usb/ohci.rst
21510 F:      drivers/usb/host/ohci*
21511
21512 USB OTG FSM (Finite State Machine)
21513 M:      Peter Chen <peter.chen@kernel.org>
21514 L:      linux-usb@vger.kernel.org
21515 S:      Maintained
21516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21517 F:      drivers/usb/common/usb-otg-fsm.c
21518
21519 USB OVER IP DRIVER
21520 M:      Valentina Manea <valentina.manea.m@gmail.com>
21521 M:      Shuah Khan <shuah@kernel.org>
21522 M:      Shuah Khan <skhan@linuxfoundation.org>
21523 L:      linux-usb@vger.kernel.org
21524 S:      Maintained
21525 F:      Documentation/usb/usbip_protocol.rst
21526 F:      drivers/usb/usbip/
21527 F:      tools/testing/selftests/drivers/usb/usbip/
21528 F:      tools/usb/usbip/
21529
21530 USB PEGASUS DRIVER
21531 M:      Petko Manolov <petkan@nucleusys.com>
21532 L:      linux-usb@vger.kernel.org
21533 L:      netdev@vger.kernel.org
21534 S:      Maintained
21535 W:      https://github.com/petkan/pegasus
21536 T:      git https://github.com/petkan/pegasus.git
21537 F:      drivers/net/usb/pegasus.*
21538
21539 USB PRINTER DRIVER (usblp)
21540 M:      Pete Zaitcev <zaitcev@redhat.com>
21541 L:      linux-usb@vger.kernel.org
21542 S:      Supported
21543 F:      drivers/usb/class/usblp.c
21544
21545 USB RAW GADGET DRIVER
21546 R:      Andrey Konovalov <andreyknvl@gmail.com>
21547 L:      linux-usb@vger.kernel.org
21548 S:      Maintained
21549 F:      Documentation/usb/raw-gadget.rst
21550 F:      drivers/usb/gadget/legacy/raw_gadget.c
21551 F:      include/uapi/linux/usb/raw_gadget.h
21552
21553 USB QMI WWAN NETWORK DRIVER
21554 M:      Bjørn Mork <bjorn@mork.no>
21555 L:      netdev@vger.kernel.org
21556 S:      Maintained
21557 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21558 F:      drivers/net/usb/qmi_wwan.c
21559
21560 USB RTL8150 DRIVER
21561 M:      Petko Manolov <petkan@nucleusys.com>
21562 L:      linux-usb@vger.kernel.org
21563 L:      netdev@vger.kernel.org
21564 S:      Maintained
21565 W:      https://github.com/petkan/rtl8150
21566 T:      git https://github.com/petkan/rtl8150.git
21567 F:      drivers/net/usb/rtl8150.c
21568
21569 USB SERIAL SUBSYSTEM
21570 M:      Johan Hovold <johan@kernel.org>
21571 L:      linux-usb@vger.kernel.org
21572 S:      Maintained
21573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21574 F:      Documentation/usb/usb-serial.rst
21575 F:      drivers/usb/serial/
21576 F:      include/linux/usb/serial.h
21577
21578 USB SMSC75XX ETHERNET DRIVER
21579 M:      Steve Glendinning <steve.glendinning@shawell.net>
21580 L:      netdev@vger.kernel.org
21581 S:      Maintained
21582 F:      drivers/net/usb/smsc75xx.*
21583
21584 USB SMSC95XX ETHERNET DRIVER
21585 M:      Steve Glendinning <steve.glendinning@shawell.net>
21586 M:      UNGLinuxDriver@microchip.com
21587 L:      netdev@vger.kernel.org
21588 S:      Maintained
21589 F:      drivers/net/usb/smsc95xx.*
21590
21591 USB SUBSYSTEM
21592 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21593 L:      linux-usb@vger.kernel.org
21594 S:      Supported
21595 W:      http://www.linux-usb.org
21596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21597 F:      Documentation/devicetree/bindings/usb/
21598 F:      Documentation/usb/
21599 F:      drivers/usb/
21600 F:      include/dt-bindings/usb/
21601 F:      include/linux/usb.h
21602 F:      include/linux/usb/
21603
21604 USB TYPEC BUS FOR ALTERNATE MODES
21605 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21606 L:      linux-usb@vger.kernel.org
21607 S:      Maintained
21608 F:      Documentation/ABI/testing/sysfs-bus-typec
21609 F:      Documentation/driver-api/usb/typec_bus.rst
21610 F:      drivers/usb/typec/altmodes/
21611 F:      include/linux/usb/typec_altmode.h
21612
21613 USB TYPEC CLASS
21614 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21615 L:      linux-usb@vger.kernel.org
21616 S:      Maintained
21617 F:      Documentation/ABI/testing/sysfs-class-typec
21618 F:      Documentation/driver-api/usb/typec.rst
21619 F:      drivers/usb/typec/
21620 F:      include/linux/usb/typec.h
21621
21622 USB TYPEC INTEL PMC MUX DRIVER
21623 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21624 L:      linux-usb@vger.kernel.org
21625 S:      Maintained
21626 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21627 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21628
21629 USB TYPEC PI3USB30532 MUX DRIVER
21630 M:      Hans de Goede <hdegoede@redhat.com>
21631 L:      linux-usb@vger.kernel.org
21632 S:      Maintained
21633 F:      drivers/usb/typec/mux/pi3usb30532.c
21634
21635 USB TYPEC PORT CONTROLLER DRIVERS
21636 M:      Guenter Roeck <linux@roeck-us.net>
21637 L:      linux-usb@vger.kernel.org
21638 S:      Maintained
21639 F:      drivers/usb/typec/tcpm/
21640
21641 USB UHCI DRIVER
21642 M:      Alan Stern <stern@rowland.harvard.edu>
21643 L:      linux-usb@vger.kernel.org
21644 S:      Maintained
21645 F:      drivers/usb/host/uhci*
21646
21647 USB VIDEO CLASS
21648 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21649 L:      linux-media@vger.kernel.org
21650 S:      Maintained
21651 W:      http://www.ideasonboard.org/uvc/
21652 T:      git git://linuxtv.org/media_tree.git
21653 F:      drivers/media/usb/uvc/
21654 F:      include/uapi/linux/uvcvideo.h
21655
21656 USB WEBCAM GADGET
21657 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21658 M:      Daniel Scally <dan.scally@ideasonboard.com>
21659 L:      linux-usb@vger.kernel.org
21660 S:      Maintained
21661 F:      drivers/usb/gadget/function/*uvc*
21662 F:      drivers/usb/gadget/legacy/webcam.c
21663 F:      include/uapi/linux/usb/g_uvc.h
21664
21665 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21666 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21667 L:      linux-wireless@vger.kernel.org
21668 S:      Maintained
21669 F:      drivers/net/wireless/rndis_wlan.c
21670
21671 USB XHCI DRIVER
21672 M:      Mathias Nyman <mathias.nyman@intel.com>
21673 L:      linux-usb@vger.kernel.org
21674 S:      Supported
21675 F:      drivers/usb/host/pci-quirks*
21676 F:      drivers/usb/host/xhci*
21677
21678 USB ZD1201 DRIVER
21679 L:      linux-wireless@vger.kernel.org
21680 S:      Orphan
21681 W:      http://linux-lc100020.sourceforge.net
21682 F:      drivers/net/wireless/zydas/zd1201.*
21683
21684 USB ZR364XX DRIVER
21685 M:      Antoine Jacquet <royale@zerezo.com>
21686 L:      linux-usb@vger.kernel.org
21687 L:      linux-media@vger.kernel.org
21688 S:      Maintained
21689 W:      http://royale.zerezo.com/zr364xx/
21690 T:      git git://linuxtv.org/media_tree.git
21691 F:      Documentation/admin-guide/media/zr364xx*
21692 F:      drivers/staging/media/deprecated/zr364xx/
21693
21694 USER DATAGRAM PROTOCOL (UDP)
21695 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21696 S:      Maintained
21697 F:      include/linux/udp.h
21698 F:      net/ipv4/udp.c
21699 F:      net/ipv6/udp.c
21700
21701 USER-MODE LINUX (UML)
21702 M:      Richard Weinberger <richard@nod.at>
21703 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21704 M:      Johannes Berg <johannes@sipsolutions.net>
21705 L:      linux-um@lists.infradead.org
21706 S:      Maintained
21707 W:      http://user-mode-linux.sourceforge.net
21708 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21711 F:      Documentation/virt/uml/
21712 F:      arch/um/
21713 F:      arch/x86/um/
21714 F:      fs/hostfs/
21715
21716 USERSPACE COPYIN/COPYOUT (UIOVEC)
21717 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21718 S:      Maintained
21719 F:      include/linux/uio.h
21720 F:      lib/iov_iter.c
21721
21722 USERSPACE DMA BUFFER DRIVER
21723 M:      Gerd Hoffmann <kraxel@redhat.com>
21724 L:      dri-devel@lists.freedesktop.org
21725 S:      Maintained
21726 T:      git git://anongit.freedesktop.org/drm/drm-misc
21727 F:      drivers/dma-buf/udmabuf.c
21728 F:      include/uapi/linux/udmabuf.h
21729
21730 USERSPACE I/O (UIO)
21731 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21732 S:      Maintained
21733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21734 F:      Documentation/driver-api/uio-howto.rst
21735 F:      drivers/uio/
21736 F:      include/linux/uio_driver.h
21737
21738 UTIL-LINUX PACKAGE
21739 M:      Karel Zak <kzak@redhat.com>
21740 L:      util-linux@vger.kernel.org
21741 S:      Maintained
21742 W:      http://en.wikipedia.org/wiki/Util-linux
21743 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21744
21745 UUID HELPERS
21746 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21747 L:      linux-kernel@vger.kernel.org
21748 S:      Maintained
21749 F:      include/linux/uuid.h
21750 F:      include/uapi/linux/uuid.h
21751 F:      lib/test_uuid.c
21752 F:      lib/uuid.c
21753
21754 UV SYSFS DRIVER
21755 M:      Justin Ernst <justin.ernst@hpe.com>
21756 L:      platform-driver-x86@vger.kernel.org
21757 S:      Maintained
21758 F:      drivers/platform/x86/uv_sysfs.c
21759
21760 UVESAFB DRIVER
21761 M:      Michal Januszewski <spock@gentoo.org>
21762 L:      linux-fbdev@vger.kernel.org
21763 S:      Maintained
21764 W:      https://github.com/mjanusz/v86d
21765 F:      Documentation/fb/uvesafb.rst
21766 F:      drivers/video/fbdev/uvesafb.*
21767
21768 Ux500 CLOCK DRIVERS
21769 M:      Ulf Hansson <ulf.hansson@linaro.org>
21770 L:      linux-clk@vger.kernel.org
21771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21772 S:      Maintained
21773 F:      drivers/clk/ux500/
21774
21775 VF610 NAND DRIVER
21776 M:      Stefan Agner <stefan@agner.ch>
21777 L:      linux-mtd@lists.infradead.org
21778 S:      Supported
21779 F:      drivers/mtd/nand/raw/vf610_nfc.c
21780
21781 VFAT/FAT/MSDOS FILESYSTEM
21782 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21783 S:      Maintained
21784 F:      Documentation/filesystems/vfat.rst
21785 F:      fs/fat/
21786 F:      tools/testing/selftests/filesystems/fat/
21787
21788 VFIO DRIVER
21789 M:      Alex Williamson <alex.williamson@redhat.com>
21790 R:      Cornelia Huck <cohuck@redhat.com>
21791 L:      kvm@vger.kernel.org
21792 S:      Maintained
21793 T:      git https://github.com/awilliam/linux-vfio.git
21794 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21795 F:      Documentation/driver-api/vfio.rst
21796 F:      drivers/vfio/
21797 F:      include/linux/vfio.h
21798 F:      include/linux/vfio_pci_core.h
21799 F:      include/uapi/linux/vfio.h
21800
21801 VFIO FSL-MC DRIVER
21802 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21803 L:      kvm@vger.kernel.org
21804 S:      Maintained
21805 F:      drivers/vfio/fsl-mc/
21806
21807 VFIO HISILICON PCI DRIVER
21808 M:      Longfang Liu <liulongfang@huawei.com>
21809 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21810 L:      kvm@vger.kernel.org
21811 S:      Maintained
21812 F:      drivers/vfio/pci/hisilicon/
21813
21814 VFIO MEDIATED DEVICE DRIVERS
21815 M:      Kirti Wankhede <kwankhede@nvidia.com>
21816 L:      kvm@vger.kernel.org
21817 S:      Maintained
21818 F:      Documentation/driver-api/vfio-mediated-device.rst
21819 F:      drivers/vfio/mdev/
21820 F:      include/linux/mdev.h
21821 F:      samples/vfio-mdev/
21822
21823 VFIO PCI DEVICE SPECIFIC DRIVERS
21824 R:      Jason Gunthorpe <jgg@nvidia.com>
21825 R:      Yishai Hadas <yishaih@nvidia.com>
21826 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21827 R:      Kevin Tian <kevin.tian@intel.com>
21828 L:      kvm@vger.kernel.org
21829 S:      Maintained
21830 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21831 F:      drivers/vfio/pci/*/
21832
21833 VFIO PLATFORM DRIVER
21834 M:      Eric Auger <eric.auger@redhat.com>
21835 L:      kvm@vger.kernel.org
21836 S:      Maintained
21837 F:      drivers/vfio/platform/
21838
21839 VFIO MLX5 PCI DRIVER
21840 M:      Yishai Hadas <yishaih@nvidia.com>
21841 L:      kvm@vger.kernel.org
21842 S:      Maintained
21843 F:      drivers/vfio/pci/mlx5/
21844
21845 VGA_SWITCHEROO
21846 R:      Lukas Wunner <lukas@wunner.de>
21847 S:      Maintained
21848 T:      git git://anongit.freedesktop.org/drm/drm-misc
21849 F:      Documentation/gpu/vga-switcheroo.rst
21850 F:      drivers/gpu/vga/vga_switcheroo.c
21851 F:      include/linux/vga_switcheroo.h
21852
21853 VIA RHINE NETWORK DRIVER
21854 S:      Maintained
21855 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21856 F:      drivers/net/ethernet/via/via-rhine.c
21857
21858 VIA SD/MMC CARD CONTROLLER DRIVER
21859 M:      Bruce Chang <brucechang@via.com.tw>
21860 M:      Harald Welte <HaraldWelte@viatech.com>
21861 S:      Maintained
21862 F:      drivers/mmc/host/via-sdmmc.c
21863
21864 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21865 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21866 L:      linux-fbdev@vger.kernel.org
21867 S:      Maintained
21868 F:      drivers/video/fbdev/via/
21869 F:      include/linux/via-core.h
21870 F:      include/linux/via-gpio.h
21871 F:      include/linux/via_i2c.h
21872
21873 VIA VELOCITY NETWORK DRIVER
21874 M:      Francois Romieu <romieu@fr.zoreil.com>
21875 L:      netdev@vger.kernel.org
21876 S:      Maintained
21877 F:      drivers/net/ethernet/via/via-velocity.*
21878
21879 VICODEC VIRTUAL CODEC DRIVER
21880 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21881 L:      linux-media@vger.kernel.org
21882 S:      Maintained
21883 W:      https://linuxtv.org
21884 T:      git git://linuxtv.org/media_tree.git
21885 F:      drivers/media/test-drivers/vicodec/*
21886
21887 VIDEO I2C POLLING DRIVER
21888 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21889 L:      linux-media@vger.kernel.org
21890 S:      Maintained
21891 F:      drivers/media/i2c/video-i2c.c
21892
21893 VIDEO MULTIPLEXER DRIVER
21894 M:      Philipp Zabel <p.zabel@pengutronix.de>
21895 L:      linux-media@vger.kernel.org
21896 S:      Maintained
21897 F:      drivers/media/platform/video-mux.c
21898
21899 VIDEOBUF2 FRAMEWORK
21900 M:      Tomasz Figa <tfiga@chromium.org>
21901 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21902 L:      linux-media@vger.kernel.org
21903 S:      Maintained
21904 F:      drivers/media/common/videobuf2/*
21905 F:      include/media/videobuf2-*
21906
21907 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21908 M:      Shuah Khan <skhan@linuxfoundation.org>
21909 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21910 L:      linux-media@vger.kernel.org
21911 S:      Maintained
21912 W:      https://linuxtv.org
21913 T:      git git://linuxtv.org/media_tree.git
21914 F:      drivers/media/test-drivers/vimc/*
21915
21916 VIRT LIB
21917 M:      Alex Williamson <alex.williamson@redhat.com>
21918 M:      Paolo Bonzini <pbonzini@redhat.com>
21919 L:      kvm@vger.kernel.org
21920 S:      Supported
21921 F:      virt/lib/
21922
21923 VIRTIO AND VHOST VSOCK DRIVER
21924 M:      Stefan Hajnoczi <stefanha@redhat.com>
21925 M:      Stefano Garzarella <sgarzare@redhat.com>
21926 L:      kvm@vger.kernel.org
21927 L:      virtualization@lists.linux-foundation.org
21928 L:      netdev@vger.kernel.org
21929 S:      Maintained
21930 F:      drivers/vhost/vsock.c
21931 F:      include/linux/virtio_vsock.h
21932 F:      include/uapi/linux/virtio_vsock.h
21933 F:      net/vmw_vsock/virtio_transport.c
21934 F:      net/vmw_vsock/virtio_transport_common.c
21935
21936 VIRTIO BLOCK AND SCSI DRIVERS
21937 M:      "Michael S. Tsirkin" <mst@redhat.com>
21938 M:      Jason Wang <jasowang@redhat.com>
21939 R:      Paolo Bonzini <pbonzini@redhat.com>
21940 R:      Stefan Hajnoczi <stefanha@redhat.com>
21941 L:      virtualization@lists.linux-foundation.org
21942 S:      Maintained
21943 F:      drivers/block/virtio_blk.c
21944 F:      drivers/scsi/virtio_scsi.c
21945 F:      drivers/vhost/scsi.c
21946 F:      include/uapi/linux/virtio_blk.h
21947 F:      include/uapi/linux/virtio_scsi.h
21948
21949 VIRTIO CONSOLE DRIVER
21950 M:      Amit Shah <amit@kernel.org>
21951 L:      virtualization@lists.linux-foundation.org
21952 S:      Maintained
21953 F:      drivers/char/virtio_console.c
21954 F:      include/linux/virtio_console.h
21955 F:      include/uapi/linux/virtio_console.h
21956
21957 VIRTIO CORE AND NET DRIVERS
21958 M:      "Michael S. Tsirkin" <mst@redhat.com>
21959 M:      Jason Wang <jasowang@redhat.com>
21960 L:      virtualization@lists.linux-foundation.org
21961 S:      Maintained
21962 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21963 F:      Documentation/ABI/testing/sysfs-class-vduse
21964 F:      Documentation/devicetree/bindings/virtio/
21965 F:      drivers/block/virtio_blk.c
21966 F:      drivers/crypto/virtio/
21967 F:      drivers/net/virtio_net.c
21968 F:      drivers/vdpa/
21969 F:      drivers/virtio/
21970 F:      include/linux/vdpa.h
21971 F:      include/linux/virtio*.h
21972 F:      include/uapi/linux/virtio_*.h
21973 F:      tools/virtio/
21974
21975 VISL VIRTUAL STATELESS DECODER DRIVER
21976 M:      Daniel Almeida <daniel.almeida@collabora.com>
21977 L:      linux-media@vger.kernel.org
21978 S:      Supported
21979 F:      drivers/media/test-drivers/visl
21980
21981 IFCVF VIRTIO DATA PATH ACCELERATOR
21982 R:      Zhu Lingshan <lingshan.zhu@intel.com>
21983 F:      drivers/vdpa/ifcvf/
21984
21985 VIRTIO BALLOON
21986 M:      "Michael S. Tsirkin" <mst@redhat.com>
21987 M:      David Hildenbrand <david@redhat.com>
21988 L:      virtualization@lists.linux-foundation.org
21989 S:      Maintained
21990 F:      drivers/virtio/virtio_balloon.c
21991 F:      include/uapi/linux/virtio_balloon.h
21992 F:      include/linux/balloon_compaction.h
21993 F:      mm/balloon_compaction.c
21994
21995 VIRTIO CRYPTO DRIVER
21996 M:      Gonglei <arei.gonglei@huawei.com>
21997 L:      virtualization@lists.linux-foundation.org
21998 L:      linux-crypto@vger.kernel.org
21999 S:      Maintained
22000 F:      drivers/crypto/virtio/
22001 F:      include/uapi/linux/virtio_crypto.h
22002
22003 VIRTIO DRIVERS FOR S390
22004 M:      Cornelia Huck <cohuck@redhat.com>
22005 M:      Halil Pasic <pasic@linux.ibm.com>
22006 M:      Eric Farman <farman@linux.ibm.com>
22007 L:      linux-s390@vger.kernel.org
22008 L:      virtualization@lists.linux-foundation.org
22009 L:      kvm@vger.kernel.org
22010 S:      Supported
22011 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22012 F:      drivers/s390/virtio/
22013
22014 VIRTIO FILE SYSTEM
22015 M:      Vivek Goyal <vgoyal@redhat.com>
22016 M:      Stefan Hajnoczi <stefanha@redhat.com>
22017 M:      Miklos Szeredi <miklos@szeredi.hu>
22018 L:      virtualization@lists.linux-foundation.org
22019 L:      linux-fsdevel@vger.kernel.org
22020 S:      Supported
22021 W:      https://virtio-fs.gitlab.io/
22022 F:      Documentation/filesystems/virtiofs.rst
22023 F:      fs/fuse/virtio_fs.c
22024 F:      include/uapi/linux/virtio_fs.h
22025
22026 VIRTIO GPIO DRIVER
22027 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22028 M:      Viresh Kumar <vireshk@kernel.org>
22029 L:      linux-gpio@vger.kernel.org
22030 L:      virtualization@lists.linux-foundation.org
22031 S:      Maintained
22032 F:      drivers/gpio/gpio-virtio.c
22033 F:      include/uapi/linux/virtio_gpio.h
22034
22035 VIRTIO GPU DRIVER
22036 M:      David Airlie <airlied@redhat.com>
22037 M:      Gerd Hoffmann <kraxel@redhat.com>
22038 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22039 R:      Chia-I Wu <olvaffe@gmail.com>
22040 L:      dri-devel@lists.freedesktop.org
22041 L:      virtualization@lists.linux-foundation.org
22042 S:      Maintained
22043 T:      git git://anongit.freedesktop.org/drm/drm-misc
22044 F:      drivers/gpu/drm/virtio/
22045 F:      include/uapi/linux/virtio_gpu.h
22046
22047 VIRTIO HOST (VHOST)
22048 M:      "Michael S. Tsirkin" <mst@redhat.com>
22049 M:      Jason Wang <jasowang@redhat.com>
22050 L:      kvm@vger.kernel.org
22051 L:      virtualization@lists.linux-foundation.org
22052 L:      netdev@vger.kernel.org
22053 S:      Maintained
22054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22055 F:      drivers/vhost/
22056 F:      include/linux/vhost_iotlb.h
22057 F:      include/uapi/linux/vhost.h
22058
22059 VIRTIO INPUT DRIVER
22060 M:      Gerd Hoffmann <kraxel@redhat.com>
22061 S:      Maintained
22062 F:      drivers/virtio/virtio_input.c
22063 F:      include/uapi/linux/virtio_input.h
22064
22065 VIRTIO IOMMU DRIVER
22066 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22067 L:      virtualization@lists.linux-foundation.org
22068 S:      Maintained
22069 F:      drivers/iommu/virtio-iommu.c
22070 F:      include/uapi/linux/virtio_iommu.h
22071
22072 VIRTIO MEM DRIVER
22073 M:      David Hildenbrand <david@redhat.com>
22074 L:      virtualization@lists.linux-foundation.org
22075 S:      Maintained
22076 W:      https://virtio-mem.gitlab.io/
22077 F:      drivers/virtio/virtio_mem.c
22078 F:      include/uapi/linux/virtio_mem.h
22079
22080 VIRTIO SOUND DRIVER
22081 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22082 M:      "Michael S. Tsirkin" <mst@redhat.com>
22083 L:      virtualization@lists.linux-foundation.org
22084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22085 S:      Maintained
22086 F:      include/uapi/linux/virtio_snd.h
22087 F:      sound/virtio/*
22088
22089 VIRTIO I2C DRIVER
22090 M:      Conghui Chen <conghui.chen@intel.com>
22091 M:      Viresh Kumar <viresh.kumar@linaro.org>
22092 L:      linux-i2c@vger.kernel.org
22093 L:      virtualization@lists.linux-foundation.org
22094 S:      Maintained
22095 F:      drivers/i2c/busses/i2c-virtio.c
22096 F:      include/uapi/linux/virtio_i2c.h
22097
22098 VIRTIO PMEM DRIVER
22099 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22100 L:      virtualization@lists.linux-foundation.org
22101 S:      Maintained
22102 F:      drivers/nvdimm/virtio_pmem.c
22103 F:      drivers/nvdimm/nd_virtio.c
22104
22105 VIRTUAL BOX GUEST DEVICE DRIVER
22106 M:      Hans de Goede <hdegoede@redhat.com>
22107 M:      Arnd Bergmann <arnd@arndb.de>
22108 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22109 S:      Maintained
22110 F:      drivers/virt/vboxguest/
22111 F:      include/linux/vbox_utils.h
22112 F:      include/uapi/linux/vbox*.h
22113
22114 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22115 M:      Hans de Goede <hdegoede@redhat.com>
22116 L:      linux-fsdevel@vger.kernel.org
22117 S:      Maintained
22118 F:      fs/vboxsf/*
22119
22120 VIRTUAL SERIO DEVICE DRIVER
22121 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22122 S:      Maintained
22123 F:      drivers/input/serio/userio.c
22124 F:      include/uapi/linux/userio.h
22125
22126 VIVID VIRTUAL VIDEO DRIVER
22127 M:      Hans Verkuil <hverkuil@xs4all.nl>
22128 L:      linux-media@vger.kernel.org
22129 S:      Maintained
22130 W:      https://linuxtv.org
22131 T:      git git://linuxtv.org/media_tree.git
22132 F:      drivers/media/test-drivers/vivid/*
22133
22134 VIDTV VIRTUAL DIGITAL TV DRIVER
22135 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22136 L:      linux-media@vger.kernel.org
22137 S:      Maintained
22138 W:      https://linuxtv.org
22139 T:      git git://linuxtv.org/media_tree.git
22140 F:      drivers/media/test-drivers/vidtv/*
22141
22142 VLYNQ BUS
22143 M:      Florian Fainelli <f.fainelli@gmail.com>
22144 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22145 S:      Maintained
22146 F:      drivers/vlynq/vlynq.c
22147 F:      include/linux/vlynq.h
22148
22149 VME SUBSYSTEM
22150 M:      Martyn Welch <martyn@welchs.me.uk>
22151 M:      Manohar Vanga <manohar.vanga@gmail.com>
22152 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22153 L:      linux-kernel@vger.kernel.org
22154 S:      Odd fixes
22155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22156 F:      Documentation/driver-api/vme.rst
22157 F:      drivers/staging/vme_user/
22158
22159 VM SOCKETS (AF_VSOCK)
22160 M:      Stefano Garzarella <sgarzare@redhat.com>
22161 L:      virtualization@lists.linux-foundation.org
22162 L:      netdev@vger.kernel.org
22163 S:      Maintained
22164 F:      drivers/net/vsockmon.c
22165 F:      include/net/af_vsock.h
22166 F:      include/uapi/linux/vm_sockets.h
22167 F:      include/uapi/linux/vm_sockets_diag.h
22168 F:      include/uapi/linux/vsockmon.h
22169 F:      net/vmw_vsock/
22170 F:      tools/testing/vsock/
22171
22172 VMWARE BALLOON DRIVER
22173 M:      Nadav Amit <namit@vmware.com>
22174 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22175 L:      linux-kernel@vger.kernel.org
22176 S:      Supported
22177 F:      drivers/misc/vmw_balloon.c
22178
22179 VMWARE HYPERVISOR INTERFACE
22180 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22181 M:      Alexey Makhalov <amakhalov@vmware.com>
22182 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22183 L:      virtualization@lists.linux-foundation.org
22184 L:      x86@kernel.org
22185 S:      Supported
22186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22187 F:      arch/x86/include/asm/vmware.h
22188 F:      arch/x86/kernel/cpu/vmware.c
22189
22190 VMWARE PVRDMA DRIVER
22191 M:      Bryan Tan <bryantan@vmware.com>
22192 M:      Vishnu Dasa <vdasa@vmware.com>
22193 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22194 L:      linux-rdma@vger.kernel.org
22195 S:      Supported
22196 F:      drivers/infiniband/hw/vmw_pvrdma/
22197
22198 VMWARE PVSCSI DRIVER
22199 M:      Vishal Bhakta <vbhakta@vmware.com>
22200 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22201 L:      linux-scsi@vger.kernel.org
22202 S:      Supported
22203 F:      drivers/scsi/vmw_pvscsi.c
22204 F:      drivers/scsi/vmw_pvscsi.h
22205
22206 VMWARE VIRTUAL PTP CLOCK DRIVER
22207 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22208 M:      Deep Shah <sdeep@vmware.com>
22209 R:      Alexey Makhalov <amakhalov@vmware.com>
22210 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22211 L:      netdev@vger.kernel.org
22212 S:      Supported
22213 F:      drivers/ptp/ptp_vmw.c
22214
22215 VMWARE VMCI DRIVER
22216 M:      Bryan Tan <bryantan@vmware.com>
22217 M:      Vishnu Dasa <vdasa@vmware.com>
22218 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22219 L:      linux-kernel@vger.kernel.org
22220 S:      Supported
22221 F:      drivers/misc/vmw_vmci/
22222 F:      include/linux/vmw_vmci*
22223
22224 VMWARE VMMOUSE SUBDRIVER
22225 M:      Zack Rusin <zackr@vmware.com>
22226 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22227 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22228 L:      linux-input@vger.kernel.org
22229 S:      Supported
22230 F:      drivers/input/mouse/vmmouse.c
22231 F:      drivers/input/mouse/vmmouse.h
22232
22233 VMWARE VMXNET3 ETHERNET DRIVER
22234 M:      Ronak Doshi <doshir@vmware.com>
22235 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22236 L:      netdev@vger.kernel.org
22237 S:      Supported
22238 F:      drivers/net/vmxnet3/
22239
22240 VMWARE VSOCK VMCI TRANSPORT DRIVER
22241 M:      Bryan Tan <bryantan@vmware.com>
22242 M:      Vishnu Dasa <vdasa@vmware.com>
22243 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22244 L:      linux-kernel@vger.kernel.org
22245 S:      Supported
22246 F:      net/vmw_vsock/vmci_transport*
22247
22248 VOCORE VOCORE2 BOARD
22249 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22250 L:      linux-mips@vger.kernel.org
22251 S:      Maintained
22252 F:      arch/mips/boot/dts/ralink/vocore2.dts
22253
22254 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22255 M:      Liam Girdwood <lgirdwood@gmail.com>
22256 M:      Mark Brown <broonie@kernel.org>
22257 L:      linux-kernel@vger.kernel.org
22258 S:      Supported
22259 W:      http://www.slimlogic.co.uk/?p=48
22260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22261 F:      Documentation/devicetree/bindings/regulator/
22262 F:      Documentation/power/regulator/
22263 F:      drivers/regulator/
22264 F:      include/dt-bindings/regulator/
22265 F:      include/linux/regulator/
22266 K:      regulator_get_optional
22267
22268 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22269 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22270 F:      drivers/regulator/irq_helpers.c
22271
22272 VRF
22273 M:      David Ahern <dsahern@kernel.org>
22274 L:      netdev@vger.kernel.org
22275 S:      Maintained
22276 F:      Documentation/networking/vrf.rst
22277 F:      drivers/net/vrf.c
22278
22279 VSPRINTF
22280 M:      Petr Mladek <pmladek@suse.com>
22281 M:      Steven Rostedt <rostedt@goodmis.org>
22282 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22283 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22284 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22285 S:      Maintained
22286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22287 F:      Documentation/core-api/printk-formats.rst
22288 F:      lib/test_printf.c
22289 F:      lib/test_scanf.c
22290 F:      lib/vsprintf.c
22291
22292 VT1211 HARDWARE MONITOR DRIVER
22293 M:      Juerg Haefliger <juergh@proton.me>
22294 L:      linux-hwmon@vger.kernel.org
22295 S:      Maintained
22296 F:      Documentation/hwmon/vt1211.rst
22297 F:      drivers/hwmon/vt1211.c
22298
22299 VT8231 HARDWARE MONITOR DRIVER
22300 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22301 L:      linux-hwmon@vger.kernel.org
22302 S:      Maintained
22303 F:      drivers/hwmon/vt8231.c
22304
22305 VUB300 USB to SDIO/SD/MMC bridge chip
22306 L:      linux-mmc@vger.kernel.org
22307 S:      Orphan
22308 F:      drivers/mmc/host/vub300.c
22309
22310 W1 DALLAS'S 1-WIRE BUS
22311 M:      Evgeniy Polyakov <zbr@ioremap.net>
22312 S:      Maintained
22313 F:      Documentation/devicetree/bindings/w1/
22314 F:      Documentation/w1/
22315 F:      drivers/w1/
22316 F:      include/linux/w1.h
22317
22318 W83791D HARDWARE MONITORING DRIVER
22319 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22320 L:      linux-hwmon@vger.kernel.org
22321 S:      Maintained
22322 F:      Documentation/hwmon/w83791d.rst
22323 F:      drivers/hwmon/w83791d.c
22324
22325 W83793 HARDWARE MONITORING DRIVER
22326 M:      Rudolf Marek <r.marek@assembler.cz>
22327 L:      linux-hwmon@vger.kernel.org
22328 S:      Maintained
22329 F:      Documentation/hwmon/w83793.rst
22330 F:      drivers/hwmon/w83793.c
22331
22332 W83795 HARDWARE MONITORING DRIVER
22333 M:      Jean Delvare <jdelvare@suse.com>
22334 L:      linux-hwmon@vger.kernel.org
22335 S:      Maintained
22336 F:      drivers/hwmon/w83795.c
22337
22338 W83L51xD SD/MMC CARD INTERFACE DRIVER
22339 M:      Pierre Ossman <pierre@ossman.eu>
22340 S:      Maintained
22341 F:      drivers/mmc/host/wbsd.*
22342
22343 WACOM PROTOCOL 4 SERIAL TABLETS
22344 M:      Julian Squires <julian@cipht.net>
22345 M:      Hans de Goede <hdegoede@redhat.com>
22346 L:      linux-input@vger.kernel.org
22347 S:      Maintained
22348 F:      drivers/input/tablet/wacom_serial4.c
22349
22350 WANGXUN ETHERNET DRIVER
22351 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22352 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22353 W:      https://www.net-swift.com
22354 L:      netdev@vger.kernel.org
22355 S:      Maintained
22356 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22357 F:      drivers/net/ethernet/wangxun/
22358
22359 WATCHDOG DEVICE DRIVERS
22360 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22361 M:      Guenter Roeck <linux@roeck-us.net>
22362 L:      linux-watchdog@vger.kernel.org
22363 S:      Maintained
22364 W:      http://www.linux-watchdog.org/
22365 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22366 F:      Documentation/devicetree/bindings/watchdog/
22367 F:      Documentation/watchdog/
22368 F:      drivers/watchdog/
22369 F:      include/linux/watchdog.h
22370 F:      include/uapi/linux/watchdog.h
22371 F:      include/trace/events/watchdog.h
22372
22373 WHISKEYCOVE PMIC GPIO DRIVER
22374 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22375 L:      linux-gpio@vger.kernel.org
22376 S:      Maintained
22377 F:      drivers/gpio/gpio-wcove.c
22378
22379 WHWAVE RTC DRIVER
22380 M:      Dianlong Li <long17.cool@163.com>
22381 L:      linux-rtc@vger.kernel.org
22382 S:      Maintained
22383 F:      drivers/rtc/rtc-sd3078.c
22384
22385 WIIMOTE HID DRIVER
22386 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22387 L:      linux-input@vger.kernel.org
22388 S:      Maintained
22389 F:      drivers/hid/hid-wiimote*
22390
22391 WILOCITY WIL6210 WIRELESS DRIVER
22392 L:      linux-wireless@vger.kernel.org
22393 S:      Orphan
22394 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22395 F:      drivers/net/wireless/ath/wil6210/
22396
22397 WINBOND CIR DRIVER
22398 M:      David Härdeman <david@hardeman.nu>
22399 S:      Maintained
22400 F:      drivers/media/rc/winbond-cir.c
22401
22402 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22403 M:      William Breathitt Gray <william.gray@linaro.org>
22404 L:      linux-watchdog@vger.kernel.org
22405 S:      Maintained
22406 F:      drivers/watchdog/ebc-c384_wdt.c
22407
22408 WINSYSTEMS WS16C48 GPIO DRIVER
22409 M:      William Breathitt Gray <william.gray@linaro.org>
22410 L:      linux-gpio@vger.kernel.org
22411 S:      Maintained
22412 F:      drivers/gpio/gpio-ws16c48.c
22413
22414 WIREGUARD SECURE NETWORK TUNNEL
22415 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22416 L:      wireguard@lists.zx2c4.com
22417 L:      netdev@vger.kernel.org
22418 S:      Maintained
22419 F:      drivers/net/wireguard/
22420 F:      tools/testing/selftests/wireguard/
22421
22422 WISTRON LAPTOP BUTTON DRIVER
22423 M:      Miloslav Trmac <mitr@volny.cz>
22424 S:      Maintained
22425 F:      drivers/input/misc/wistron_btns.c
22426
22427 WL3501 WIRELESS PCMCIA CARD DRIVER
22428 L:      linux-wireless@vger.kernel.org
22429 S:      Odd fixes
22430 F:      drivers/net/wireless/wl3501*
22431
22432 WOLFSON MICROELECTRONICS DRIVERS
22433 L:      patches@opensource.cirrus.com
22434 S:      Supported
22435 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22436 T:      git https://github.com/CirrusLogic/linux-drivers.git
22437 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22438 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22439 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22440 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22441 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22442 F:      Documentation/devicetree/bindings/sound/wm*
22443 F:      Documentation/hwmon/wm83??.rst
22444 F:      arch/arm/mach-s3c/mach-crag6410*
22445 F:      drivers/clk/clk-wm83*.c
22446 F:      drivers/gpio/gpio-*wm*.c
22447 F:      drivers/gpio/gpio-arizona.c
22448 F:      drivers/hwmon/wm83??-hwmon.c
22449 F:      drivers/input/misc/wm831x-on.c
22450 F:      drivers/input/touchscreen/wm831x-ts.c
22451 F:      drivers/input/touchscreen/wm97*.c
22452 F:      drivers/leds/leds-wm83*.c
22453 F:      drivers/mfd/arizona*
22454 F:      drivers/mfd/cs47l24*
22455 F:      drivers/mfd/wm*.c
22456 F:      drivers/power/supply/wm83*.c
22457 F:      drivers/regulator/arizona*
22458 F:      drivers/regulator/wm8*.c
22459 F:      drivers/rtc/rtc-wm83*.c
22460 F:      drivers/video/backlight/wm83*_bl.c
22461 F:      drivers/watchdog/wm83*_wdt.c
22462 F:      include/linux/mfd/arizona/
22463 F:      include/linux/mfd/wm831x/
22464 F:      include/linux/mfd/wm8350/
22465 F:      include/linux/mfd/wm8400*
22466 F:      include/linux/regulator/arizona*
22467 F:      include/linux/wm97xx.h
22468 F:      include/sound/wm????.h
22469 F:      sound/soc/codecs/arizona*
22470 F:      sound/soc/codecs/cs47l24*
22471 F:      sound/soc/codecs/wm*
22472
22473 WORKQUEUE
22474 M:      Tejun Heo <tj@kernel.org>
22475 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22476 S:      Maintained
22477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22478 F:      Documentation/core-api/workqueue.rst
22479 F:      include/linux/workqueue.h
22480 F:      kernel/workqueue.c
22481
22482 WWAN DRIVERS
22483 M:      Loic Poulain <loic.poulain@linaro.org>
22484 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22485 R:      Johannes Berg <johannes@sipsolutions.net>
22486 L:      netdev@vger.kernel.org
22487 S:      Maintained
22488 F:      drivers/net/wwan/
22489 F:      include/linux/wwan.h
22490 F:      include/uapi/linux/wwan.h
22491
22492 X-POWERS AXP288 PMIC DRIVERS
22493 M:      Hans de Goede <hdegoede@redhat.com>
22494 S:      Maintained
22495 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22496 N:      axp288
22497
22498 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22499 M:      Chen-Yu Tsai <wens@csie.org>
22500 L:      linux-kernel@vger.kernel.org
22501 S:      Maintained
22502 N:      axp[128]
22503
22504 X.25 STACK
22505 M:      Martin Schiller <ms@dev.tdt.de>
22506 L:      linux-x25@vger.kernel.org
22507 S:      Maintained
22508 F:      Documentation/networking/lapb-module.rst
22509 F:      Documentation/networking/x25*
22510 F:      drivers/net/wan/hdlc_x25.c
22511 F:      drivers/net/wan/lapbether.c
22512 F:      include/*/lapb.h
22513 F:      include/net/x25*
22514 F:      include/uapi/linux/x25.h
22515 F:      net/lapb/
22516 F:      net/x25/
22517
22518 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22519 M:      Thomas Gleixner <tglx@linutronix.de>
22520 M:      Ingo Molnar <mingo@redhat.com>
22521 M:      Borislav Petkov <bp@alien8.de>
22522 M:      Dave Hansen <dave.hansen@linux.intel.com>
22523 M:      x86@kernel.org
22524 R:      "H. Peter Anvin" <hpa@zytor.com>
22525 L:      linux-kernel@vger.kernel.org
22526 S:      Maintained
22527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22528 F:      Documentation/devicetree/bindings/x86/
22529 F:      Documentation/x86/
22530 F:      arch/x86/
22531
22532 X86 ENTRY CODE
22533 M:      Andy Lutomirski <luto@kernel.org>
22534 L:      linux-kernel@vger.kernel.org
22535 S:      Maintained
22536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22537 F:      arch/x86/entry/
22538
22539 X86 MCE INFRASTRUCTURE
22540 M:      Tony Luck <tony.luck@intel.com>
22541 M:      Borislav Petkov <bp@alien8.de>
22542 L:      linux-edac@vger.kernel.org
22543 S:      Maintained
22544 F:      Documentation/ABI/testing/sysfs-mce
22545 F:      Documentation/x86/x86_64/machinecheck.rst
22546 F:      arch/x86/kernel/cpu/mce/*
22547
22548 X86 MICROCODE UPDATE SUPPORT
22549 M:      Borislav Petkov <bp@alien8.de>
22550 S:      Maintained
22551 F:      arch/x86/kernel/cpu/microcode/*
22552
22553 X86 MM
22554 M:      Dave Hansen <dave.hansen@linux.intel.com>
22555 M:      Andy Lutomirski <luto@kernel.org>
22556 M:      Peter Zijlstra <peterz@infradead.org>
22557 L:      linux-kernel@vger.kernel.org
22558 S:      Maintained
22559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22560 F:      arch/x86/mm/
22561
22562 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22563 M:      Hans de Goede <hdegoede@redhat.com>
22564 L:      platform-driver-x86@vger.kernel.org
22565 S:      Maintained
22566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22567 F:      drivers/platform/x86/x86-android-tablets.c
22568
22569 X86 PLATFORM DRIVERS
22570 M:      Hans de Goede <hdegoede@redhat.com>
22571 M:      Mark Gross <markgross@kernel.org>
22572 L:      platform-driver-x86@vger.kernel.org
22573 S:      Maintained
22574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22575 F:      drivers/platform/olpc/
22576 F:      drivers/platform/x86/
22577 F:      include/linux/platform_data/x86/
22578
22579 X86 PLATFORM DRIVERS - ARCH
22580 R:      Darren Hart <dvhart@infradead.org>
22581 R:      Andy Shevchenko <andy@infradead.org>
22582 L:      platform-driver-x86@vger.kernel.org
22583 L:      x86@kernel.org
22584 S:      Maintained
22585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22586 F:      arch/x86/platform
22587
22588 X86 PLATFORM UV HPE SUPERDOME FLEX
22589 M:      Steve Wahl <steve.wahl@hpe.com>
22590 R:      Mike Travis <mike.travis@hpe.com>
22591 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22592 R:      Russ Anderson <russ.anderson@hpe.com>
22593 S:      Supported
22594 F:      arch/x86/include/asm/uv/
22595 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22596 F:      arch/x86/platform/uv/
22597
22598 X86 STACK UNWINDING
22599 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22600 M:      Peter Zijlstra <peterz@infradead.org>
22601 S:      Supported
22602 F:      arch/x86/include/asm/unwind*.h
22603 F:      arch/x86/kernel/dumpstack.c
22604 F:      arch/x86/kernel/stacktrace.c
22605 F:      arch/x86/kernel/unwind_*.c
22606
22607 X86 VDSO
22608 M:      Andy Lutomirski <luto@kernel.org>
22609 L:      linux-kernel@vger.kernel.org
22610 S:      Maintained
22611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22612 F:      arch/x86/entry/vdso/
22613
22614 XARRAY
22615 M:      Matthew Wilcox <willy@infradead.org>
22616 L:      linux-fsdevel@vger.kernel.org
22617 S:      Supported
22618 F:      Documentation/core-api/xarray.rst
22619 F:      include/linux/idr.h
22620 F:      include/linux/xarray.h
22621 F:      lib/idr.c
22622 F:      lib/xarray.c
22623 F:      tools/testing/radix-tree
22624
22625 XBOX DVD IR REMOTE
22626 M:      Benjamin Valentin <benpicco@googlemail.com>
22627 S:      Maintained
22628 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22629 F:      drivers/media/rc/xbox_remote.c
22630
22631 XC2028/3028 TUNER DRIVER
22632 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22633 L:      linux-media@vger.kernel.org
22634 S:      Maintained
22635 W:      https://linuxtv.org
22636 T:      git git://linuxtv.org/media_tree.git
22637 F:      drivers/media/tuners/xc2028.*
22638
22639 XDP (eXpress Data Path)
22640 M:      Alexei Starovoitov <ast@kernel.org>
22641 M:      Daniel Borkmann <daniel@iogearbox.net>
22642 M:      David S. Miller <davem@davemloft.net>
22643 M:      Jakub Kicinski <kuba@kernel.org>
22644 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22645 M:      John Fastabend <john.fastabend@gmail.com>
22646 L:      netdev@vger.kernel.org
22647 L:      bpf@vger.kernel.org
22648 S:      Supported
22649 F:      include/net/xdp.h
22650 F:      include/net/xdp_priv.h
22651 F:      include/trace/events/xdp.h
22652 F:      kernel/bpf/cpumap.c
22653 F:      kernel/bpf/devmap.c
22654 F:      net/core/xdp.c
22655 F:      samples/bpf/xdp*
22656 F:      tools/testing/selftests/bpf/*xdp*
22657 F:      tools/testing/selftests/bpf/*/*xdp*
22658 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22659 F:      drivers/net/ethernet/*/*/*xdp*
22660 K:      (?:\b|_)xdp(?:\b|_)
22661
22662 XDP SOCKETS (AF_XDP)
22663 M:      Björn Töpel <bjorn@kernel.org>
22664 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22665 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22666 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22667 L:      netdev@vger.kernel.org
22668 L:      bpf@vger.kernel.org
22669 S:      Maintained
22670 F:      Documentation/networking/af_xdp.rst
22671 F:      include/net/xdp_sock*
22672 F:      include/net/xsk_buff_pool.h
22673 F:      include/uapi/linux/if_xdp.h
22674 F:      include/uapi/linux/xdp_diag.h
22675 F:      include/net/netns/xdp.h
22676 F:      net/xdp/
22677 F:      tools/testing/selftests/bpf/*xsk*
22678
22679 XEN BLOCK SUBSYSTEM
22680 M:      Roger Pau Monné <roger.pau@citrix.com>
22681 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22682 S:      Supported
22683 F:      drivers/block/xen*
22684 F:      drivers/block/xen-blkback/*
22685
22686 XEN HYPERVISOR ARM
22687 M:      Stefano Stabellini <sstabellini@kernel.org>
22688 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22689 S:      Maintained
22690 F:      arch/arm/include/asm/xen/
22691 F:      arch/arm/xen/
22692
22693 XEN HYPERVISOR ARM64
22694 M:      Stefano Stabellini <sstabellini@kernel.org>
22695 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22696 S:      Maintained
22697 F:      arch/arm64/include/asm/xen/
22698 F:      arch/arm64/xen/
22699
22700 XEN HYPERVISOR INTERFACE
22701 M:      Juergen Gross <jgross@suse.com>
22702 M:      Stefano Stabellini <sstabellini@kernel.org>
22703 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22704 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22705 S:      Supported
22706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22707 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22708 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22709 F:      drivers/*/xen-*front.c
22710 F:      drivers/xen/
22711 F:      include/uapi/xen/
22712 F:      include/xen/
22713 F:      kernel/configs/xen.config
22714
22715 XEN HYPERVISOR X86
22716 M:      Juergen Gross <jgross@suse.com>
22717 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22718 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22719 S:      Supported
22720 F:      arch/x86/configs/xen.config
22721 F:      arch/x86/include/asm/pvclock-abi.h
22722 F:      arch/x86/include/asm/xen/
22723 F:      arch/x86/platform/pvh/
22724 F:      arch/x86/xen/
22725
22726 XEN NETWORK BACKEND DRIVER
22727 M:      Wei Liu <wei.liu@kernel.org>
22728 M:      Paul Durrant <paul@xen.org>
22729 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22730 L:      netdev@vger.kernel.org
22731 S:      Supported
22732 F:      drivers/net/xen-netback/*
22733
22734 XEN PCI SUBSYSTEM
22735 M:      Juergen Gross <jgross@suse.com>
22736 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22737 S:      Supported
22738 F:      arch/x86/pci/*xen*
22739 F:      drivers/pci/*xen*
22740
22741 XEN PVSCSI DRIVERS
22742 M:      Juergen Gross <jgross@suse.com>
22743 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22744 L:      linux-scsi@vger.kernel.org
22745 S:      Supported
22746 F:      drivers/scsi/xen-scsifront.c
22747 F:      drivers/xen/xen-scsiback.c
22748 F:      include/xen/interface/io/vscsiif.h
22749
22750 XEN PVUSB DRIVER
22751 M:      Juergen Gross <jgross@suse.com>
22752 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22753 L:      linux-usb@vger.kernel.org
22754 S:      Supported
22755 F:      drivers/usb/host/xen*
22756 F:      include/xen/interface/io/usbif.h
22757
22758 XEN SOUND FRONTEND DRIVER
22759 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22760 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22762 S:      Supported
22763 F:      sound/xen/*
22764
22765 XEN SWIOTLB SUBSYSTEM
22766 M:      Juergen Gross <jgross@suse.com>
22767 M:      Stefano Stabellini <sstabellini@kernel.org>
22768 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22769 L:      iommu@lists.linux.dev
22770 S:      Supported
22771 F:      arch/*/include/asm/xen/swiotlb-xen.h
22772 F:      drivers/xen/swiotlb-xen.c
22773 F:      include/xen/arm/swiotlb-xen.h
22774 F:      include/xen/swiotlb-xen.h
22775
22776 XFS FILESYSTEM
22777 C:      irc://irc.oftc.net/xfs
22778 M:      Darrick J. Wong <djwong@kernel.org>
22779 L:      linux-xfs@vger.kernel.org
22780 S:      Supported
22781 W:      http://xfs.org/
22782 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22783 F:      Documentation/ABI/testing/sysfs-fs-xfs
22784 F:      Documentation/admin-guide/xfs.rst
22785 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22786 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22787 F:      fs/xfs/
22788 F:      include/uapi/linux/dqblk_xfs.h
22789 F:      include/uapi/linux/fsmap.h
22790
22791 XILINX AMS DRIVER
22792 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22793 L:      linux-iio@vger.kernel.org
22794 S:      Maintained
22795 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22796 F:      drivers/iio/adc/xilinx-ams.c
22797
22798 XILINX AXI ETHERNET DRIVER
22799 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22800 S:      Maintained
22801 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22802
22803 XILINX CAN DRIVER
22804 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22805 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22806 L:      linux-can@vger.kernel.org
22807 S:      Maintained
22808 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22809 F:      drivers/net/can/xilinx_can.c
22810
22811 XILINX GPIO DRIVER
22812 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22813 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22814 R:      Michal Simek <michal.simek@xilinx.com>
22815 S:      Maintained
22816 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22817 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22818 F:      drivers/gpio/gpio-xilinx.c
22819 F:      drivers/gpio/gpio-zynq.c
22820
22821 XILINX SD-FEC IP CORES
22822 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22823 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22824 S:      Maintained
22825 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22826 F:      Documentation/misc-devices/xilinx_sdfec.rst
22827 F:      drivers/misc/Kconfig
22828 F:      drivers/misc/Makefile
22829 F:      drivers/misc/xilinx_sdfec.c
22830 F:      include/uapi/misc/xilinx_sdfec.h
22831
22832 XILINX PWM DRIVER
22833 M:      Sean Anderson <sean.anderson@seco.com>
22834 S:      Maintained
22835 F:      drivers/pwm/pwm-xilinx.c
22836 F:      include/clocksource/timer-xilinx.h
22837
22838 XILINX UARTLITE SERIAL DRIVER
22839 M:      Peter Korsgaard <jacmet@sunsite.dk>
22840 L:      linux-serial@vger.kernel.org
22841 S:      Maintained
22842 F:      drivers/tty/serial/uartlite.c
22843
22844 XILINX VIDEO IP CORES
22845 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22846 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22847 L:      linux-media@vger.kernel.org
22848 S:      Supported
22849 T:      git git://linuxtv.org/media_tree.git
22850 F:      Documentation/devicetree/bindings/media/xilinx/
22851 F:      drivers/media/platform/xilinx/
22852 F:      include/uapi/linux/xilinx-v4l2-controls.h
22853
22854 XILINX ZYNQMP DPDMA DRIVER
22855 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22856 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22857 L:      dmaengine@vger.kernel.org
22858 S:      Supported
22859 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22860 F:      drivers/dma/xilinx/xilinx_dpdma.c
22861 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22862
22863 XILINX ZYNQMP OCM EDAC DRIVER
22864 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22865 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22866 S:      Maintained
22867 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22868 F:      drivers/edac/zynqmp_edac.c
22869
22870 XILINX ZYNQMP PSGTR PHY DRIVER
22871 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22872 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22873 L:      linux-kernel@vger.kernel.org
22874 S:      Supported
22875 T:      git https://github.com/Xilinx/linux-xlnx.git
22876 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22877 F:      drivers/phy/xilinx/phy-zynqmp.c
22878
22879 XILINX ZYNQMP SHA3 DRIVER
22880 M:      Harsha <harsha.harsha@xilinx.com>
22881 S:      Maintained
22882 F:      drivers/crypto/xilinx/zynqmp-sha.c
22883
22884 XILINX EVENT MANAGEMENT DRIVER
22885 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22886 S:      Maintained
22887 F:      drivers/soc/xilinx/xlnx_event_manager.c
22888 F:      include/linux/firmware/xlnx-event-manager.h
22889
22890 XILLYBUS DRIVER
22891 M:      Eli Billauer <eli.billauer@gmail.com>
22892 L:      linux-kernel@vger.kernel.org
22893 S:      Supported
22894 F:      drivers/char/xillybus/
22895
22896 XLP9XX I2C DRIVER
22897 M:      George Cherian <gcherian@marvell.com>
22898 L:      linux-i2c@vger.kernel.org
22899 S:      Supported
22900 W:      http://www.marvell.com
22901 F:      drivers/i2c/busses/i2c-xlp9xx.c
22902
22903 XRA1403 GPIO EXPANDER
22904 M:      Nandor Han <nandor.han@ge.com>
22905 M:      Semi Malinen <semi.malinen@ge.com>
22906 L:      linux-gpio@vger.kernel.org
22907 S:      Maintained
22908 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22909 F:      drivers/gpio/gpio-xra1403.c
22910
22911 XTENSA XTFPGA PLATFORM SUPPORT
22912 M:      Max Filippov <jcmvbkbc@gmail.com>
22913 L:      linux-xtensa@linux-xtensa.org
22914 S:      Maintained
22915 F:      drivers/spi/spi-xtensa-xtfpga.c
22916 F:      sound/soc/xtensa/xtfpga-i2s.c
22917
22918 YAM DRIVER FOR AX.25
22919 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22920 L:      linux-hams@vger.kernel.org
22921 S:      Maintained
22922 F:      drivers/net/hamradio/yam*
22923 F:      include/linux/yam.h
22924
22925 YAMA SECURITY MODULE
22926 M:      Kees Cook <keescook@chromium.org>
22927 S:      Supported
22928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22929 F:      Documentation/admin-guide/LSM/Yama.rst
22930 F:      security/yama/
22931
22932 YEALINK PHONE DRIVER
22933 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22934 L:      usbb2k-api-dev@nongnu.org
22935 S:      Maintained
22936 F:      Documentation/input/devices/yealink.rst
22937 F:      drivers/input/misc/yealink.*
22938
22939 Z8530 DRIVER FOR AX.25
22940 M:      Joerg Reuter <jreuter@yaina.de>
22941 L:      linux-hams@vger.kernel.org
22942 S:      Maintained
22943 W:      http://yaina.de/jreuter/
22944 W:      http://www.qsl.net/dl1bke/
22945 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22946 F:      drivers/net/hamradio/*scc.c
22947 F:      drivers/net/hamradio/z8530.h
22948
22949 ZBUD COMPRESSED PAGE ALLOCATOR
22950 M:      Seth Jennings <sjenning@redhat.com>
22951 M:      Dan Streetman <ddstreet@ieee.org>
22952 L:      linux-mm@kvack.org
22953 S:      Maintained
22954 F:      mm/zbud.c
22955
22956 Z3FOLD COMPRESSED PAGE ALLOCATOR
22957 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22958 R:      Miaohe Lin <linmiaohe@huawei.com>
22959 L:      linux-mm@kvack.org
22960 S:      Maintained
22961 F:      mm/z3fold.c
22962
22963 ZD1211RW WIRELESS DRIVER
22964 M:      Ulrich Kunitz <kune@deine-taler.de>
22965 L:      linux-wireless@vger.kernel.org
22966 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22967 S:      Maintained
22968 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22969 F:      drivers/net/wireless/zydas/zd1211rw/
22970
22971 ZD1301 MEDIA DRIVER
22972 M:      Antti Palosaari <crope@iki.fi>
22973 L:      linux-media@vger.kernel.org
22974 S:      Maintained
22975 W:      https://linuxtv.org/
22976 W:      http://palosaari.fi/linux/
22977 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22978 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22979
22980 ZD1301_DEMOD MEDIA DRIVER
22981 M:      Antti Palosaari <crope@iki.fi>
22982 L:      linux-media@vger.kernel.org
22983 S:      Maintained
22984 W:      https://linuxtv.org/
22985 W:      http://palosaari.fi/linux/
22986 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22987 F:      drivers/media/dvb-frontends/zd1301_demod*
22988
22989 ZHAOXIN PROCESSOR SUPPORT
22990 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22991 L:      linux-kernel@vger.kernel.org
22992 S:      Maintained
22993 F:      arch/x86/kernel/cpu/zhaoxin.c
22994
22995 ZONEFS FILESYSTEM
22996 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22997 M:      Naohiro Aota <naohiro.aota@wdc.com>
22998 R:      Johannes Thumshirn <jth@kernel.org>
22999 L:      linux-fsdevel@vger.kernel.org
23000 S:      Maintained
23001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23002 F:      Documentation/filesystems/zonefs.rst
23003 F:      fs/zonefs/
23004
23005 ZPOOL COMPRESSED PAGE STORAGE API
23006 M:      Dan Streetman <ddstreet@ieee.org>
23007 L:      linux-mm@kvack.org
23008 S:      Maintained
23009 F:      include/linux/zpool.h
23010 F:      mm/zpool.c
23011
23012 ZR36067 VIDEO FOR LINUX DRIVER
23013 M:      Corentin Labbe <clabbe@baylibre.com>
23014 L:      mjpeg-users@lists.sourceforge.net
23015 L:      linux-media@vger.kernel.org
23016 S:      Maintained
23017 W:      http://mjpeg.sourceforge.net/driver-zoran/
23018 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23019 F:      Documentation/driver-api/media/drivers/zoran.rst
23020 F:      drivers/media/pci/zoran/
23021
23022 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23023 M:      Minchan Kim <minchan@kernel.org>
23024 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23025 L:      linux-kernel@vger.kernel.org
23026 S:      Maintained
23027 F:      Documentation/admin-guide/blockdev/zram.rst
23028 F:      drivers/block/zram/
23029
23030 ZS DECSTATION Z85C30 SERIAL DRIVER
23031 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23032 S:      Maintained
23033 F:      drivers/tty/serial/zs.*
23034
23035 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23036 M:      Minchan Kim <minchan@kernel.org>
23037 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23038 L:      linux-mm@kvack.org
23039 S:      Maintained
23040 F:      Documentation/mm/zsmalloc.rst
23041 F:      include/linux/zsmalloc.h
23042 F:      mm/zsmalloc.c
23043
23044 ZSTD
23045 M:      Nick Terrell <terrelln@fb.com>
23046 S:      Maintained
23047 B:      https://github.com/facebook/zstd/issues
23048 T:      git https://github.com/terrelln/linux.git
23049 F:      include/linux/zstd*
23050 F:      lib/zstd/
23051 F:      lib/decompress_unzstd.c
23052 F:      crypto/zstd.c
23053 N:      zstd
23054 K:      zstd
23055
23056 ZSWAP COMPRESSED SWAP CACHING
23057 M:      Seth Jennings <sjenning@redhat.com>
23058 M:      Dan Streetman <ddstreet@ieee.org>
23059 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23060 L:      linux-mm@kvack.org
23061 S:      Maintained
23062 F:      mm/zswap.c
23063
23064 THE REST
23065 M:      Linus Torvalds <torvalds@linux-foundation.org>
23066 L:      linux-kernel@vger.kernel.org
23067 S:      Buried alive in reporters
23068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23069 F:      *
23070 F:      */