Merge tag 'net-next-6.3' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev...
[platform/kernel/linux-rpi.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES IDIO-16 GPIO LIBRARY
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-idio-16.c
320 F:      drivers/gpio/gpio-idio-16.h
321
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M:      William Breathitt Gray <william.gray@linaro.org>
324 L:      linux-gpio@vger.kernel.org
325 S:      Maintained
326 F:      drivers/gpio/gpio-pci-idio-16.c
327
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M:      William Breathitt Gray <william.gray@linaro.org>
330 L:      linux-gpio@vger.kernel.org
331 S:      Maintained
332 F:      drivers/gpio/gpio-pcie-idio-24.c
333
334 ACENIC DRIVER
335 M:      Jes Sorensen <jes@trained-monkey.org>
336 L:      linux-acenic@sunsite.dk
337 S:      Maintained
338 F:      drivers/net/ethernet/alteon/acenic*
339
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M:      Peter Kaestle <peter@piie.net>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 W:      http://piie.net/?section=acerhdf
345 F:      drivers/platform/x86/acerhdf.c
346
347 ACER WMI LAPTOP EXTRAS
348 M:      "Lee, Chun-Yi" <jlee@suse.com>
349 L:      platform-driver-x86@vger.kernel.org
350 S:      Maintained
351 F:      drivers/platform/x86/acer-wmi.c
352
353 ACPI
354 M:      "Rafael J. Wysocki" <rafael@kernel.org>
355 R:      Len Brown <lenb@kernel.org>
356 L:      linux-acpi@vger.kernel.org
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      Documentation/ABI/testing/configfs-acpi
362 F:      Documentation/ABI/testing/sysfs-bus-acpi
363 F:      Documentation/firmware-guide/acpi/
364 F:      arch/x86/kernel/acpi/
365 F:      arch/x86/pci/acpi.c
366 F:      drivers/acpi/
367 F:      drivers/pci/*/*acpi*
368 F:      drivers/pci/*acpi*
369 F:      drivers/pnp/pnpacpi/
370 F:      include/acpi/
371 F:      include/linux/acpi.h
372 F:      include/linux/fwnode.h
373 F:      tools/power/acpi/
374
375 ACPI APEI
376 M:      "Rafael J. Wysocki" <rafael@kernel.org>
377 R:      Len Brown <lenb@kernel.org>
378 R:      James Morse <james.morse@arm.com>
379 R:      Tony Luck <tony.luck@intel.com>
380 R:      Borislav Petkov <bp@alien8.de>
381 L:      linux-acpi@vger.kernel.org
382 F:      drivers/acpi/apei/
383
384 ACPI COMPONENT ARCHITECTURE (ACPICA)
385 M:      Robert Moore <robert.moore@intel.com>
386 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      acpica-devel@lists.linuxfoundation.org
389 S:      Supported
390 W:      https://acpica.org/
391 W:      https://github.com/acpica/acpica/
392 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
393 B:      https://bugzilla.kernel.org
394 B:      https://bugs.acpica.org
395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
396 F:      drivers/acpi/acpica/
397 F:      include/acpi/
398 F:      tools/power/acpi/
399
400 ACPI FOR ARM64 (ACPI/arm64)
401 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
402 M:      Hanjun Guo <guohanjun@huawei.com>
403 M:      Sudeep Holla <sudeep.holla@arm.com>
404 L:      linux-acpi@vger.kernel.org
405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
406 S:      Maintained
407 F:      drivers/acpi/arm64
408
409 ACPI SERIAL MULTI INSTANTIATE DRIVER
410 M:      Hans de Goede <hdegoede@redhat.com>
411 L:      platform-driver-x86@vger.kernel.org
412 S:      Maintained
413 F:      drivers/platform/x86/serial-multi-instantiate.c
414
415 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
416 M:      Sudeep Holla <sudeep.holla@arm.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 F:      drivers/mailbox/pcc.c
420
421 ACPI PMIC DRIVERS
422 M:      "Rafael J. Wysocki" <rafael@kernel.org>
423 M:      Len Brown <lenb@kernel.org>
424 R:      Andy Shevchenko <andy@kernel.org>
425 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
426 L:      linux-acpi@vger.kernel.org
427 S:      Supported
428 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
429 B:      https://bugzilla.kernel.org
430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
431 F:      drivers/acpi/pmic/
432
433 ACPI THERMAL DRIVER
434 M:      Rafael J. Wysocki <rafael@kernel.org>
435 R:      Zhang Rui <rui.zhang@intel.com>
436 L:      linux-acpi@vger.kernel.org
437 S:      Supported
438 B:      https://bugzilla.kernel.org
439 F:      drivers/acpi/*thermal*
440
441 ACPI VIOT DRIVER
442 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
443 L:      linux-acpi@vger.kernel.org
444 L:      iommu@lists.linux.dev
445 S:      Maintained
446 F:      drivers/acpi/viot.c
447 F:      include/linux/acpi_viot.h
448
449 ACPI WMI DRIVER
450 L:      platform-driver-x86@vger.kernel.org
451 S:      Orphan
452 F:      drivers/platform/x86/wmi.c
453 F:      include/uapi/linux/wmi.h
454
455 ACRN HYPERVISOR SERVICE MODULE
456 M:      Fei Li <fei1.li@intel.com>
457 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
458 S:      Supported
459 W:      https://projectacrn.org
460 F:      Documentation/virt/acrn/
461 F:      drivers/virt/acrn/
462 F:      include/uapi/linux/acrn.h
463
464 AD1889 ALSA SOUND DRIVER
465 L:      linux-parisc@vger.kernel.org
466 S:      Maintained
467 W:      https://parisc.wiki.kernel.org/index.php/AD1889
468 F:      sound/pci/ad1889.*
469
470 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
471 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
472 L:      linux-iio@vger.kernel.org
473 S:      Supported
474 F:      drivers/iio/potentiometer/ad5110.c
475
476 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5254
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/misc/ad525x_dpot.c
482
483 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD5398
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/regulator/ad5398.c
489
490 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7142
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/misc/ad714x.c
496
497 AD7877 TOUCHSCREEN DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7877
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7877.c
503
504 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
505 M:      Michael Hennerich <michael.hennerich@analog.com>
506 S:      Supported
507 W:      http://wiki.analog.com/AD7879
508 W:      https://ez.analog.com/linux-software-drivers
509 F:      drivers/input/touchscreen/ad7879.c
510
511 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
512 M:      Jiri Kosina <jikos@kernel.org>
513 S:      Maintained
514
515 ADF7242 IEEE 802.15.4 RADIO DRIVER
516 M:      Michael Hennerich <michael.hennerich@analog.com>
517 L:      linux-wpan@vger.kernel.org
518 S:      Supported
519 W:      https://wiki.analog.com/ADF7242
520 W:      https://ez.analog.com/linux-software-drivers
521 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
522 F:      drivers/net/ieee802154/adf7242.c
523
524 ADM1025 HARDWARE MONITOR DRIVER
525 M:      Jean Delvare <jdelvare@suse.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      Documentation/hwmon/adm1025.rst
529 F:      drivers/hwmon/adm1025.c
530
531 ADM1029 HARDWARE MONITOR DRIVER
532 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      drivers/hwmon/adm1029.c
536
537 ADM8211 WIRELESS DRIVER
538 L:      linux-wireless@vger.kernel.org
539 S:      Orphan
540 W:      https://wireless.wiki.kernel.org/
541 F:      drivers/net/wireless/admtek/adm8211.*
542
543 ADP1653 FLASH CONTROLLER DRIVER
544 M:      Sakari Ailus <sakari.ailus@iki.fi>
545 L:      linux-media@vger.kernel.org
546 S:      Maintained
547 F:      drivers/media/i2c/adp1653.c
548 F:      include/media/i2c/adp1653.h
549
550 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
551 M:      Michael Hennerich <michael.hennerich@analog.com>
552 S:      Supported
553 W:      http://wiki.analog.com/ADP5520
554 W:      https://ez.analog.com/linux-software-drivers
555 F:      drivers/gpio/gpio-adp5520.c
556 F:      drivers/input/keyboard/adp5520-keys.c
557 F:      drivers/leds/leds-adp5520.c
558 F:      drivers/mfd/adp5520.c
559 F:      drivers/video/backlight/adp5520_bl.c
560
561 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
562 M:      Michael Hennerich <michael.hennerich@analog.com>
563 S:      Supported
564 W:      http://wiki.analog.com/ADP5588
565 W:      https://ez.analog.com/linux-software-drivers
566 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
567 F:      drivers/input/keyboard/adp5588-keys.c
568
569 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
570 M:      Michael Hennerich <michael.hennerich@analog.com>
571 S:      Supported
572 W:      http://wiki.analog.com/ADP8860
573 W:      https://ez.analog.com/linux-software-drivers
574 F:      drivers/video/backlight/adp8860_bl.c
575
576 ADT746X FAN DRIVER
577 M:      Colin Leroy <colin@colino.net>
578 S:      Maintained
579 F:      drivers/macintosh/therm_adt746x.c
580
581 ADT7475 HARDWARE MONITOR DRIVER
582 M:      Jean Delvare <jdelvare@suse.com>
583 L:      linux-hwmon@vger.kernel.org
584 S:      Maintained
585 F:      Documentation/hwmon/adt7475.rst
586 F:      drivers/hwmon/adt7475.c
587
588 ADVANSYS SCSI DRIVER
589 M:      Matthew Wilcox <willy@infradead.org>
590 M:      Hannes Reinecke <hare@suse.com>
591 L:      linux-scsi@vger.kernel.org
592 S:      Maintained
593 F:      Documentation/scsi/advansys.rst
594 F:      drivers/scsi/advansys.c
595
596 ADVANTECH SWBTN DRIVER
597 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
598 L:      platform-driver-x86@vger.kernel.org
599 S:      Maintained
600 F:      drivers/platform/x86/adv_swbutton.c
601
602 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
606 F:      drivers/iio/accel/adxl313*
607
608 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://wiki.analog.com/ADXL345
612 W:      https://ez.analog.com/linux-software-drivers
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
614 F:      drivers/input/misc/adxl34x.c
615
616 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617 M:      Puranjay Mohan <puranjay12@gmail.com>
618 L:      linux-iio@vger.kernel.org
619 S:      Supported
620 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
621 F:      drivers/iio/accel/adxl355.h
622 F:      drivers/iio/accel/adxl355_core.c
623 F:      drivers/iio/accel/adxl355_i2c.c
624 F:      drivers/iio/accel/adxl355_spi.c
625
626 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
627 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
628 L:      linux-iio@vger.kernel.org
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
632 F:      drivers/iio/accel/adxl367*
633
634 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
635 M:      Michael Hennerich <michael.hennerich@analog.com>
636 S:      Supported
637 W:      https://ez.analog.com/linux-software-drivers
638 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
639 F:      drivers/iio/accel/adxl372.c
640 F:      drivers/iio/accel/adxl372_i2c.c
641 F:      drivers/iio/accel/adxl372_spi.c
642
643 AF9013 MEDIA DRIVER
644 M:      Antti Palosaari <crope@iki.fi>
645 L:      linux-media@vger.kernel.org
646 S:      Maintained
647 W:      https://linuxtv.org
648 W:      http://palosaari.fi/linux/
649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
650 T:      git git://linuxtv.org/anttip/media_tree.git
651 F:      drivers/media/dvb-frontends/af9013*
652
653 AF9033 MEDIA DRIVER
654 M:      Antti Palosaari <crope@iki.fi>
655 L:      linux-media@vger.kernel.org
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/dvb-frontends/af9033*
662
663 AFFS FILE SYSTEM
664 M:      David Sterba <dsterba@suse.com>
665 L:      linux-fsdevel@vger.kernel.org
666 S:      Odd Fixes
667 F:      Documentation/filesystems/affs.rst
668 F:      fs/affs/
669
670 AFS FILESYSTEM
671 M:      David Howells <dhowells@redhat.com>
672 M:      Marc Dionne <marc.dionne@auristor.com>
673 L:      linux-afs@lists.infradead.org
674 S:      Supported
675 W:      https://www.infradead.org/~dhowells/kafs/
676 F:      Documentation/filesystems/afs.rst
677 F:      fs/afs/
678 F:      include/trace/events/afs.h
679
680 AGPGART DRIVER
681 M:      David Airlie <airlied@redhat.com>
682 L:      dri-devel@lists.freedesktop.org
683 S:      Maintained
684 T:      git git://anongit.freedesktop.org/drm/drm
685 F:      drivers/char/agp/
686 F:      include/linux/agp*
687 F:      include/uapi/linux/agp*
688
689 AHA152X SCSI DRIVER
690 M:      "Juergen E. Fischer" <fischer@norbit.de>
691 L:      linux-scsi@vger.kernel.org
692 S:      Maintained
693 F:      drivers/scsi/aha152x*
694 F:      drivers/scsi/pcmcia/aha152x*
695
696 AIC7XXX / AIC79XX SCSI DRIVER
697 M:      Hannes Reinecke <hare@suse.com>
698 L:      linux-scsi@vger.kernel.org
699 S:      Maintained
700 F:      drivers/scsi/aic7xxx/
701
702 AIMSLAB FM RADIO RECEIVER DRIVER
703 M:      Hans Verkuil <hverkuil@xs4all.nl>
704 L:      linux-media@vger.kernel.org
705 S:      Maintained
706 W:      https://linuxtv.org
707 T:      git git://linuxtv.org/media_tree.git
708 F:      drivers/media/radio/radio-aimslab*
709
710 AIO
711 M:      Benjamin LaHaise <bcrl@kvack.org>
712 L:      linux-aio@kvack.org
713 S:      Supported
714 F:      fs/aio.c
715 F:      include/linux/*aio*.h
716
717 AIRSPY MEDIA DRIVER
718 M:      Antti Palosaari <crope@iki.fi>
719 L:      linux-media@vger.kernel.org
720 S:      Maintained
721 W:      https://linuxtv.org
722 W:      http://palosaari.fi/linux/
723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
724 T:      git git://linuxtv.org/anttip/media_tree.git
725 F:      drivers/media/usb/airspy/
726
727 ALACRITECH GIGABIT ETHERNET DRIVER
728 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
729 S:      Maintained
730 F:      drivers/net/ethernet/alacritech/*
731
732 ALCATEL SPEEDTOUCH USB DRIVER
733 M:      Duncan Sands <duncan.sands@free.fr>
734 L:      linux-usb@vger.kernel.org
735 S:      Maintained
736 W:      http://www.linux-usb.org/SpeedTouch/
737 F:      drivers/usb/atm/speedtch.c
738 F:      drivers/usb/atm/usbatm.c
739
740 ALCHEMY AU1XX0 MMC DRIVER
741 M:      Manuel Lauss <manuel.lauss@gmail.com>
742 S:      Maintained
743 F:      drivers/mmc/host/au1xmmc.c
744
745 ALI1563 I2C DRIVER
746 M:      Rudolf Marek <r.marek@assembler.cz>
747 L:      linux-i2c@vger.kernel.org
748 S:      Maintained
749 F:      Documentation/i2c/busses/i2c-ali1563.rst
750 F:      drivers/i2c/busses/i2c-ali1563.c
751
752 ALIBABA ELASTIC RDMA DRIVER
753 M:      Cheng Xu <chengyou@linux.alibaba.com>
754 M:      Kai Shen <kaishen@linux.alibaba.com>
755 L:      linux-rdma@vger.kernel.org
756 S:      Supported
757 F:      drivers/infiniband/hw/erdma
758 F:      include/uapi/rdma/erdma-abi.h
759
760 ALIBABA PMU DRIVER
761 M:      Shuai Xue <xueshuai@linux.alibaba.com>
762 S:      Supported
763 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
764 F:      drivers/perf/alibaba_uncore_drw_pmu.c
765
766 ALIENWARE WMI DRIVER
767 L:      Dell.Client.Kernel@dell.com
768 S:      Maintained
769 F:      drivers/platform/x86/dell/alienware-wmi.c
770
771 ALLEGRO DVT VIDEO IP CORE DRIVER
772 M:      Michael Tretter <m.tretter@pengutronix.de>
773 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
774 L:      linux-media@vger.kernel.org
775 S:      Maintained
776 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
777 F:      drivers/media/platform/allegro-dvt/
778
779 ALLWINNER A10 CSI DRIVER
780 M:      Maxime Ripard <mripard@kernel.org>
781 L:      linux-media@vger.kernel.org
782 S:      Maintained
783 T:      git git://linuxtv.org/media_tree.git
784 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
785 F:      drivers/media/platform/sunxi/sun4i-csi/
786
787 ALLWINNER A31 CSI DRIVER
788 M:      Yong Deng <yong.deng@magewell.com>
789 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
790 L:      linux-media@vger.kernel.org
791 S:      Maintained
792 T:      git git://linuxtv.org/media_tree.git
793 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
794 F:      drivers/media/platform/sunxi/sun6i-csi/
795
796 ALLWINNER A31 ISP DRIVER
797 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
798 L:      linux-media@vger.kernel.org
799 S:      Maintained
800 T:      git git://linuxtv.org/media_tree.git
801 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
802 F:      drivers/staging/media/sunxi/sun6i-isp/
803 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
804
805 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
806 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
807 L:      linux-media@vger.kernel.org
808 S:      Maintained
809 T:      git git://linuxtv.org/media_tree.git
810 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
811 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
812
813 ALLWINNER CPUFREQ DRIVER
814 M:      Yangtao Li <tiny.windzz@gmail.com>
815 L:      linux-pm@vger.kernel.org
816 S:      Maintained
817 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
818 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
819
820 ALLWINNER CRYPTO DRIVERS
821 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
822 L:      linux-crypto@vger.kernel.org
823 S:      Maintained
824 F:      drivers/crypto/allwinner/
825
826 ALLWINNER HARDWARE SPINLOCK SUPPORT
827 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
828 S:      Maintained
829 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
830 F:      drivers/hwspinlock/sun6i_hwspinlock.c
831
832 ALLWINNER THERMAL DRIVER
833 M:      Vasily Khoruzhick <anarsoul@gmail.com>
834 M:      Yangtao Li <tiny.windzz@gmail.com>
835 L:      linux-pm@vger.kernel.org
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
838 F:      drivers/thermal/sun8i_thermal.c
839
840 ALLWINNER VPU DRIVER
841 M:      Maxime Ripard <mripard@kernel.org>
842 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
843 L:      linux-media@vger.kernel.org
844 S:      Maintained
845 F:      drivers/staging/media/sunxi/cedrus/
846
847 ALLWINNER DMIC DRIVERS
848 M:      Ban Tao <fengzheng923@gmail.com>
849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
850 S:      Maintained
851 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
852 F:      sound/soc/sunxi/sun50i-dmic.c
853
854 ALPHA PORT
855 M:      Richard Henderson <richard.henderson@linaro.org>
856 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
857 M:      Matt Turner <mattst88@gmail.com>
858 L:      linux-alpha@vger.kernel.org
859 S:      Odd Fixes
860 F:      arch/alpha/
861
862 ALPS PS/2 TOUCHPAD DRIVER
863 R:      Pali Rohár <pali@kernel.org>
864 F:      drivers/input/mouse/alps.*
865
866 ALTERA I2C CONTROLLER DRIVER
867 M:      Thor Thayer <thor.thayer@linux.intel.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
870 F:      drivers/i2c/busses/i2c-altera.c
871
872 ALTERA MAILBOX DRIVER
873 M:      Mun Yew Tham <mun.yew.tham@intel.com>
874 S:      Maintained
875 F:      drivers/mailbox/mailbox-altera.c
876
877 ALTERA MSGDMA IP CORE DRIVER
878 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
879 R:      Stefan Roese <sr@denx.de>
880 L:      dmaengine@vger.kernel.org
881 S:      Odd Fixes
882 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
883 F:      drivers/dma/altera-msgdma.c
884
885 ALTERA PIO DRIVER
886 M:      Mun Yew Tham <mun.yew.tham@intel.com>
887 L:      linux-gpio@vger.kernel.org
888 S:      Maintained
889 F:      drivers/gpio/gpio-altera.c
890
891 ALTERA SYSTEM MANAGER DRIVER
892 M:      Thor Thayer <thor.thayer@linux.intel.com>
893 S:      Maintained
894 F:      drivers/mfd/altera-sysmgr.c
895 F:      include/linux/mfd/altera-sysmgr.h
896
897 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
898 M:      Thor Thayer <thor.thayer@linux.intel.com>
899 S:      Maintained
900 F:      drivers/gpio/gpio-altera-a10sr.c
901 F:      drivers/mfd/altera-a10sr.c
902 F:      drivers/reset/reset-a10sr.c
903 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
904 F:      include/linux/mfd/altera-a10sr.h
905
906 ALTERA TRIPLE SPEED ETHERNET DRIVER
907 M:      Joyce Ooi <joyce.ooi@intel.com>
908 L:      netdev@vger.kernel.org
909 S:      Maintained
910 F:      drivers/net/ethernet/altera/
911
912 ALTERA TSE PCS
913 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
914 L:      netdev@vger.kernel.org
915 S:      Supported
916 F:      drivers/net/pcs/pcs-altera-tse.c
917 F:      include/linux/pcs-altera-tse.h
918
919 ALTERA UART/JTAG UART SERIAL DRIVERS
920 M:      Tobias Klauser <tklauser@distanz.ch>
921 L:      linux-serial@vger.kernel.org
922 S:      Maintained
923 F:      drivers/tty/serial/altera_jtaguart.c
924 F:      drivers/tty/serial/altera_uart.c
925 F:      include/linux/altera_jtaguart.h
926 F:      include/linux/altera_uart.h
927
928 AMAZON ANNAPURNA LABS FIC DRIVER
929 M:      Talel Shenhar <talel@amazon.com>
930 S:      Maintained
931 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
932 F:      drivers/irqchip/irq-al-fic.c
933
934 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
935 M:      Talel Shenhar <talel@amazon.com>
936 M:      Talel Shenhar <talelshenhar@gmail.com>
937 S:      Maintained
938 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
939 F:      drivers/edac/al_mc_edac.c
940
941 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
942 M:      Talel Shenhar <talel@amazon.com>
943 S:      Maintained
944 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
945 F:      drivers/thermal/thermal_mmio.c
946
947 AMAZON ETHERNET DRIVERS
948 M:      Shay Agroskin <shayagr@amazon.com>
949 M:      Arthur Kiyanovski <akiyano@amazon.com>
950 R:      David Arinzon <darinzon@amazon.com>
951 R:      Noam Dagan <ndagan@amazon.com>
952 R:      Saeed Bishara <saeedb@amazon.com>
953 L:      netdev@vger.kernel.org
954 S:      Supported
955 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
956 F:      drivers/net/ethernet/amazon/
957
958 AMAZON RDMA EFA DRIVER
959 M:      Gal Pressman <galpress@amazon.com>
960 R:      Yossi Leybovich <sleybo@amazon.com>
961 L:      linux-rdma@vger.kernel.org
962 S:      Supported
963 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
964 F:      drivers/infiniband/hw/efa/
965 F:      include/uapi/rdma/efa-abi.h
966
967 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
968 M:      Tom Lendacky <thomas.lendacky@amd.com>
969 M:      John Allen <john.allen@amd.com>
970 L:      linux-crypto@vger.kernel.org
971 S:      Supported
972 F:      drivers/crypto/ccp/
973 F:      include/linux/ccp.h
974
975 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
976 M:      Brijesh Singh <brijesh.singh@amd.com>
977 M:      Tom Lendacky <thomas.lendacky@amd.com>
978 L:      linux-crypto@vger.kernel.org
979 S:      Supported
980 F:      drivers/crypto/ccp/sev*
981 F:      include/uapi/linux/psp-sev.h
982
983 AMD DISPLAY CORE
984 M:      Harry Wentland <harry.wentland@amd.com>
985 M:      Leo Li <sunpeng.li@amd.com>
986 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
987 L:      amd-gfx@lists.freedesktop.org
988 S:      Supported
989 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
990 F:      drivers/gpu/drm/amd/display/
991
992 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
993 M:      Huang Rui <ray.huang@amd.com>
994 L:      linux-hwmon@vger.kernel.org
995 S:      Supported
996 F:      Documentation/hwmon/fam15h_power.rst
997 F:      drivers/hwmon/fam15h_power.c
998
999 AMD FCH GPIO DRIVER
1000 M:      Enrico Weigelt, metux IT consult <info@metux.net>
1001 L:      linux-gpio@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/gpio/gpio-amd-fch.c
1004 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1005
1006 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1007 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1008 S:      Orphan
1009 F:      drivers/usb/gadget/udc/amd5536udc.*
1010
1011 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1012 M:      Andres Salomon <dilinger@queued.net>
1013 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1014 S:      Supported
1015 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1016 F:      arch/x86/include/asm/geode.h
1017 F:      drivers/char/hw_random/geode-rng.c
1018 F:      drivers/crypto/geode*
1019 F:      drivers/video/fbdev/geode/
1020
1021 AMD IOMMU (AMD-VI)
1022 M:      Joerg Roedel <joro@8bytes.org>
1023 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1024 L:      iommu@lists.linux.dev
1025 S:      Maintained
1026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1027 F:      drivers/iommu/amd/
1028 F:      include/linux/amd-iommu.h
1029
1030 AMD KFD
1031 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1032 L:      amd-gfx@lists.freedesktop.org
1033 S:      Supported
1034 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1035 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1036 F:      drivers/gpu/drm/amd/amdkfd/
1037 F:      drivers/gpu/drm/amd/include/cik_structs.h
1038 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1039 F:      drivers/gpu/drm/amd/include/v9_structs.h
1040 F:      drivers/gpu/drm/amd/include/vi_structs.h
1041 F:      include/uapi/linux/kfd_ioctl.h
1042 F:      include/uapi/linux/kfd_sysfs.h
1043
1044 AMD SPI DRIVER
1045 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1046 S:      Maintained
1047 F:      drivers/spi/spi-amd.c
1048
1049 AMD MP2 I2C DRIVER
1050 M:      Elie Morisse <syniurge@gmail.com>
1051 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1052 L:      linux-i2c@vger.kernel.org
1053 S:      Maintained
1054 F:      drivers/i2c/busses/i2c-amd-mp2*
1055
1056 AMD PMC DRIVER
1057 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1058 L:      platform-driver-x86@vger.kernel.org
1059 S:      Maintained
1060 F:      drivers/platform/x86/amd/pmc.c
1061
1062 AMD PMF DRIVER
1063 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1064 L:      platform-driver-x86@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/ABI/testing/sysfs-amd-pmf
1067 F:      drivers/platform/x86/amd/pmf/
1068
1069 AMD HSMP DRIVER
1070 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1071 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1072 L:      platform-driver-x86@vger.kernel.org
1073 S:      Maintained
1074 F:      Documentation/x86/amd_hsmp.rst
1075 F:      arch/x86/include/asm/amd_hsmp.h
1076 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1077 F:      drivers/platform/x86/amd/hsmp.c
1078
1079 AMD POWERPLAY AND SWSMU
1080 M:      Evan Quan <evan.quan@amd.com>
1081 L:      amd-gfx@lists.freedesktop.org
1082 S:      Supported
1083 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1084 F:      drivers/gpu/drm/amd/pm/
1085
1086 AMD PSTATE DRIVER
1087 M:      Huang Rui <ray.huang@amd.com>
1088 L:      linux-pm@vger.kernel.org
1089 S:      Supported
1090 F:      Documentation/admin-guide/pm/amd-pstate.rst
1091 F:      drivers/cpufreq/amd-pstate*
1092 F:      include/linux/amd-pstate.h
1093 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1094
1095 AMD PTDMA DRIVER
1096 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1097 L:      dmaengine@vger.kernel.org
1098 S:      Maintained
1099 F:      drivers/dma/ptdma/
1100
1101 AMD SEATTLE DEVICE TREE SUPPORT
1102 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1103 M:      Tom Lendacky <thomas.lendacky@amd.com>
1104 S:      Supported
1105 F:      arch/arm64/boot/dts/amd/
1106
1107 AMD XGBE DRIVER
1108 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1109 L:      netdev@vger.kernel.org
1110 S:      Supported
1111 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1112 F:      drivers/net/ethernet/amd/xgbe/
1113
1114 AMD SENSOR FUSION HUB DRIVER
1115 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1116 L:      linux-input@vger.kernel.org
1117 S:      Maintained
1118 F:      Documentation/hid/amd-sfh*
1119 F:      drivers/hid/amd-sfh-hid/
1120
1121 AMLOGIC DDR PMU DRIVER
1122 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1123 L:      linux-amlogic@lists.infradead.org
1124 S:      Supported
1125 W:      http://www.amlogic.com
1126 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1127 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1128 F:      drivers/perf/amlogic/
1129 F:      include/soc/amlogic/
1130
1131 AMPHION VPU CODEC V4L2 DRIVER
1132 M:      Ming Qian <ming.qian@nxp.com>
1133 M:      Shijie Qin <shijie.qin@nxp.com>
1134 M:      Zhou Peng <eagle.zhou@nxp.com>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1138 F:      drivers/media/platform/amphion/
1139
1140 AMS AS73211 DRIVER
1141 M:      Christian Eggers <ceggers@arri.de>
1142 L:      linux-iio@vger.kernel.org
1143 S:      Maintained
1144 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1145 F:      drivers/iio/light/as73211.c
1146
1147 AMT (Automatic Multicast Tunneling)
1148 M:      Taehee Yoo <ap420073@gmail.com>
1149 L:      netdev@vger.kernel.org
1150 S:      Maintained
1151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1153 F:      drivers/net/amt.c
1154
1155 ANALOG DEVICES INC AD4130 DRIVER
1156 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1157 L:      linux-iio@vger.kernel.org
1158 S:      Supported
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1161 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1162 F:      drivers/iio/adc/ad4130.c
1163
1164 ANALOG DEVICES INC AD7192 DRIVER
1165 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1170 F:      drivers/iio/adc/ad7192.c
1171
1172 ANALOG DEVICES INC AD7292 DRIVER
1173 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1174 L:      linux-iio@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1178 F:      drivers/iio/adc/ad7292.c
1179
1180 ANALOG DEVICES INC AD3552R DRIVER
1181 M:      Nuno Sá <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1186 F:      drivers/iio/dac/ad3552r.c
1187
1188 ANALOG DEVICES INC AD7293 DRIVER
1189 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1194 F:      drivers/iio/dac/ad7293.c
1195
1196 ANALOG DEVICES INC AD7768-1 DRIVER
1197 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1202 F:      drivers/iio/adc/ad7768-1.c
1203
1204 ANALOG DEVICES INC AD7780 DRIVER
1205 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1206 M:      Renato Lui Geh <renatogeh@gmail.com>
1207 L:      linux-iio@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1211 F:      drivers/iio/adc/ad7780.c
1212
1213 ANALOG DEVICES INC AD74115 DRIVER
1214 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1215 L:      linux-iio@vger.kernel.org
1216 S:      Supported
1217 W:      http://ez.analog.com/community/linux-device-drivers
1218 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1219 F:      drivers/iio/addac/ad74115.c
1220
1221 ANALOG DEVICES INC AD74413R DRIVER
1222 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1223 L:      linux-iio@vger.kernel.org
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1227 F:      drivers/iio/addac/ad74413r.c
1228 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1229
1230 ANALOG DEVICES INC AD9389B DRIVER
1231 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1232 L:      linux-media@vger.kernel.org
1233 S:      Maintained
1234 F:      drivers/media/i2c/ad9389b*
1235
1236 ANALOG DEVICES INC ADA4250 DRIVER
1237 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1238 L:      linux-iio@vger.kernel.org
1239 S:      Supported
1240 W:      https://ez.analog.com/linux-software-drivers
1241 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1242 F:      drivers/iio/amplifiers/ada4250.c
1243
1244 ANALOG DEVICES INC ADF4377 DRIVER
1245 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1246 L:      linux-iio@vger.kernel.org
1247 S:      Supported
1248 W:      https://ez.analog.com/linux-software-drivers
1249 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1250 F:      drivers/iio/frequency/adf4377.c
1251
1252 ANALOG DEVICES INC ADGS1408 DRIVER
1253 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1254 S:      Supported
1255 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1256 F:      drivers/mux/adgs1408.c
1257
1258 ANALOG DEVICES INC ADIN DRIVER
1259 M:      Michael Hennerich <michael.hennerich@analog.com>
1260 L:      netdev@vger.kernel.org
1261 S:      Supported
1262 W:      https://ez.analog.com/linux-software-drivers
1263 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1264 F:      drivers/net/phy/adin.c
1265
1266 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1267 M:      Nuno Sa <nuno.sa@analog.com>
1268 L:      linux-iio@vger.kernel.org
1269 S:      Supported
1270 F:      drivers/iio/imu/adis.c
1271 F:      drivers/iio/imu/adis_buffer.c
1272 F:      drivers/iio/imu/adis_trigger.c
1273 F:      include/linux/iio/imu/adis.h
1274
1275 ANALOG DEVICES INC ADIS16460 DRIVER
1276 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1277 L:      linux-iio@vger.kernel.org
1278 S:      Supported
1279 W:      https://ez.analog.com/linux-software-drivers
1280 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1281 F:      drivers/iio/imu/adis16460.c
1282
1283 ANALOG DEVICES INC ADIS16475 DRIVER
1284 M:      Nuno Sa <nuno.sa@analog.com>
1285 L:      linux-iio@vger.kernel.org
1286 W:      https://ez.analog.com/linux-software-drivers
1287 S:      Supported
1288 F:      drivers/iio/imu/adis16475.c
1289 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1290
1291 ANALOG DEVICES INC ADM1177 DRIVER
1292 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1293 L:      linux-hwmon@vger.kernel.org
1294 S:      Supported
1295 W:      https://ez.analog.com/linux-software-drivers
1296 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1297 F:      drivers/hwmon/adm1177.c
1298
1299 ANALOG DEVICES INC ADMV1013 DRIVER
1300 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1301 L:      linux-iio@vger.kernel.org
1302 S:      Supported
1303 W:      https://ez.analog.com/linux-software-drivers
1304 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1305 F:      drivers/iio/frequency/admv1013.c
1306
1307 ANALOG DEVICES INC ADMV8818 DRIVER
1308 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1309 L:      linux-iio@vger.kernel.org
1310 S:      Supported
1311 W:      https://ez.analog.com/linux-software-drivers
1312 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1313 F:      drivers/iio/filter/admv8818.c
1314
1315 ANALOG DEVICES INC ADMV1014 DRIVER
1316 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1317 L:      linux-iio@vger.kernel.org
1318 S:      Supported
1319 W:      https://ez.analog.com/linux-software-drivers
1320 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1321 F:      drivers/iio/frequency/admv1014.c
1322
1323 ANALOG DEVICES INC ADP5061 DRIVER
1324 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1325 L:      linux-pm@vger.kernel.org
1326 S:      Supported
1327 W:      https://ez.analog.com/linux-software-drivers
1328 F:      drivers/power/supply/adp5061.c
1329
1330 ANALOG DEVICES INC ADRF6780 DRIVER
1331 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1332 L:      linux-iio@vger.kernel.org
1333 S:      Supported
1334 W:      https://ez.analog.com/linux-software-drivers
1335 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1336 F:      drivers/iio/frequency/adrf6780.c
1337
1338 ANALOG DEVICES INC ADV7180 DRIVER
1339 M:      Lars-Peter Clausen <lars@metafoo.de>
1340 L:      linux-media@vger.kernel.org
1341 S:      Supported
1342 W:      https://ez.analog.com/linux-software-drivers
1343 F:      drivers/media/i2c/adv7180.c
1344 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1345
1346 ANALOG DEVICES INC ADV748X DRIVER
1347 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1348 L:      linux-media@vger.kernel.org
1349 S:      Maintained
1350 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1351 F:      drivers/media/i2c/adv748x/*
1352
1353 ANALOG DEVICES INC ADV7511 DRIVER
1354 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1355 L:      linux-media@vger.kernel.org
1356 S:      Maintained
1357 F:      drivers/media/i2c/adv7511*
1358
1359 ANALOG DEVICES INC ADV7604 DRIVER
1360 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1361 L:      linux-media@vger.kernel.org
1362 S:      Maintained
1363 F:      drivers/media/i2c/adv7604*
1364 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1365
1366 ANALOG DEVICES INC ADV7842 DRIVER
1367 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1368 L:      linux-media@vger.kernel.org
1369 S:      Maintained
1370 F:      drivers/media/i2c/adv7842*
1371
1372 ANALOG DEVICES INC ADXRS290 DRIVER
1373 M:      Nishant Malpani <nish.malpani25@gmail.com>
1374 L:      linux-iio@vger.kernel.org
1375 S:      Supported
1376 F:      drivers/iio/gyro/adxrs290.c
1377 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1378
1379 ANALOG DEVICES INC ASOC CODEC DRIVERS
1380 M:      Lars-Peter Clausen <lars@metafoo.de>
1381 M:      Nuno Sá <nuno.sa@analog.com>
1382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1383 S:      Supported
1384 W:      http://wiki.analog.com/
1385 W:      https://ez.analog.com/linux-software-drivers
1386 F:      sound/soc/codecs/ad1*
1387 F:      sound/soc/codecs/ad7*
1388 F:      sound/soc/codecs/adau*
1389 F:      sound/soc/codecs/adav*
1390 F:      sound/soc/codecs/sigmadsp.*
1391 F:      sound/soc/codecs/ssm*
1392
1393 ANALOG DEVICES INC DMA DRIVERS
1394 M:      Lars-Peter Clausen <lars@metafoo.de>
1395 S:      Supported
1396 W:      https://ez.analog.com/linux-software-drivers
1397 F:      drivers/dma/dma-axi-dmac.c
1398
1399 ANALOG DEVICES INC IIO DRIVERS
1400 M:      Lars-Peter Clausen <lars@metafoo.de>
1401 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1402 S:      Supported
1403 W:      http://wiki.analog.com/
1404 W:      https://ez.analog.com/linux-software-drivers
1405 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1406 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1407 F:      Documentation/devicetree/bindings/iio/*/adi,*
1408 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1409 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1410 F:      drivers/iio/*/ad*
1411 F:      drivers/iio/adc/ltc249*
1412 F:      drivers/iio/amplifiers/hmc425a.c
1413 F:      drivers/staging/iio/*/ad*
1414 X:      drivers/iio/*/adjd*
1415
1416 ANALOG DEVICES INC MAX31760 DRIVER
1417 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1418 S:      Maintained
1419 W:      http://wiki.analog.com/
1420 W:      https://ez.analog.com/linux-software-drivers
1421 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1422 F:      Documentation/hwmon/max31760.rst
1423 F:      drivers/hwmon/max31760.c
1424
1425 ANALOGBITS PLL LIBRARIES
1426 M:      Paul Walmsley <paul.walmsley@sifive.com>
1427 S:      Supported
1428 F:      drivers/clk/analogbits/*
1429 F:      include/linux/clk/analogbits*
1430
1431 ANDROID CONFIG FRAGMENTS
1432 M:      Rob Herring <robh@kernel.org>
1433 S:      Supported
1434 F:      kernel/configs/android*
1435
1436 ANDROID DRIVERS
1437 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1438 M:      Arve Hjønnevåg <arve@android.com>
1439 M:      Todd Kjos <tkjos@android.com>
1440 M:      Martijn Coenen <maco@android.com>
1441 M:      Joel Fernandes <joel@joelfernandes.org>
1442 M:      Christian Brauner <christian@brauner.io>
1443 M:      Carlos Llamas <cmllamas@google.com>
1444 M:      Suren Baghdasaryan <surenb@google.com>
1445 L:      linux-kernel@vger.kernel.org
1446 S:      Supported
1447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1448 F:      drivers/android/
1449
1450 ANDROID GOLDFISH PIC DRIVER
1451 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1452 S:      Supported
1453 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1454 F:      drivers/irqchip/irq-goldfish-pic.c
1455
1456 ANDROID GOLDFISH RTC DRIVER
1457 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1458 S:      Supported
1459 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1460 F:      drivers/rtc/rtc-goldfish.c
1461
1462 AOA (Apple Onboard Audio) ALSA DRIVER
1463 M:      Johannes Berg <johannes@sipsolutions.net>
1464 L:      linuxppc-dev@lists.ozlabs.org
1465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1466 S:      Maintained
1467 F:      sound/aoa/
1468
1469 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1470 M:      William Breathitt Gray <william.gray@linaro.org>
1471 L:      linux-iio@vger.kernel.org
1472 S:      Maintained
1473 F:      drivers/iio/addac/stx104.c
1474
1475 APM DRIVER
1476 M:      Jiri Kosina <jikos@kernel.org>
1477 S:      Odd fixes
1478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1479 F:      arch/x86/kernel/apm_32.c
1480 F:      drivers/char/apm-emulation.c
1481 F:      include/linux/apm_bios.h
1482 F:      include/uapi/linux/apm_bios.h
1483
1484 APPARMOR SECURITY MODULE
1485 M:      John Johansen <john.johansen@canonical.com>
1486 M:      John Johansen <john@apparmor.net>
1487 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1488 S:      Supported
1489 W:      apparmor.net
1490 B:      https://gitlab.com/apparmor/apparmor-kernel
1491 C:      irc://irc.oftc.net/apparmor
1492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1493 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1494 F:      Documentation/admin-guide/LSM/apparmor.rst
1495 F:      security/apparmor/
1496
1497 APPLE BCM5974 MULTITOUCH DRIVER
1498 M:      Henrik Rydberg <rydberg@bitmath.org>
1499 L:      linux-input@vger.kernel.org
1500 S:      Odd fixes
1501 F:      drivers/input/mouse/bcm5974.c
1502
1503 APPLE PCIE CONTROLLER DRIVER
1504 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1505 M:      Marc Zyngier <maz@kernel.org>
1506 L:      linux-pci@vger.kernel.org
1507 S:      Maintained
1508 F:      drivers/pci/controller/pcie-apple.c
1509
1510 APPLE SMC DRIVER
1511 M:      Henrik Rydberg <rydberg@bitmath.org>
1512 L:      linux-hwmon@vger.kernel.org
1513 S:      Odd fixes
1514 F:      drivers/hwmon/applesmc.c
1515
1516 APPLETALK NETWORK LAYER
1517 L:      netdev@vger.kernel.org
1518 S:      Odd fixes
1519 F:      drivers/net/appletalk/
1520 F:      include/linux/atalk.h
1521 F:      include/uapi/linux/atalk.h
1522 F:      net/appletalk/
1523
1524 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1525 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1526 S:      Supported
1527 F:      arch/arm64/boot/dts/apm/
1528
1529 APPLIED MICRO (APM) X-GENE SOC EDAC
1530 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1531 S:      Supported
1532 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1533 F:      drivers/edac/xgene_edac.c
1534
1535 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1536 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1537 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1538 S:      Supported
1539 F:      drivers/net/ethernet/apm/xgene-v2/
1540
1541 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1542 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1543 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1544 M:      Quan Nguyen <quan@os.amperecomputing.com>
1545 S:      Supported
1546 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1547 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1548 F:      drivers/net/ethernet/apm/xgene/
1549 F:      drivers/net/mdio/mdio-xgene.c
1550
1551 APPLIED MICRO (APM) X-GENE SOC PMU
1552 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1553 S:      Supported
1554 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1555 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1556 F:      drivers/perf/xgene_pmu.c
1557
1558 APTINA CAMERA SENSOR PLL
1559 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1560 L:      linux-media@vger.kernel.org
1561 S:      Maintained
1562 F:      drivers/media/i2c/aptina-pll.*
1563
1564 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1565 M:      Aleksa Savic <savicaleksa83@gmail.com>
1566 M:      Jack Doan <me@jackdoan.com>
1567 L:      linux-hwmon@vger.kernel.org
1568 S:      Maintained
1569 F:      Documentation/hwmon/aquacomputer_d5next.rst
1570 F:      drivers/hwmon/aquacomputer_d5next.c
1571
1572 AQUANTIA ETHERNET DRIVER (atlantic)
1573 M:      Igor Russkikh <irusskikh@marvell.com>
1574 L:      netdev@vger.kernel.org
1575 S:      Supported
1576 W:      https://www.marvell.com/
1577 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1578 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1579 F:      drivers/net/ethernet/aquantia/atlantic/
1580
1581 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1582 M:      Egor Pomozov <epomozov@marvell.com>
1583 L:      netdev@vger.kernel.org
1584 S:      Supported
1585 W:      http://www.aquantia.com
1586 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1587
1588 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1589 M:      Krzysztof Hałasa <khalasa@piap.pl>
1590 L:      linux-media@vger.kernel.org
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1593 F:      drivers/media/i2c/ar0521.c
1594
1595 ARASAN NAND CONTROLLER DRIVER
1596 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1597 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1598 L:      linux-mtd@lists.infradead.org
1599 S:      Maintained
1600 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1601 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1602
1603 ARC FRAMEBUFFER DRIVER
1604 M:      Jaya Kumar <jayalk@intworks.biz>
1605 S:      Maintained
1606 F:      drivers/video/fbdev/arcfb.c
1607 F:      drivers/video/fbdev/core/fb_defio.c
1608
1609 ARC PGU DRM DRIVER
1610 M:      Alexey Brodkin <abrodkin@synopsys.com>
1611 S:      Supported
1612 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1613 F:      drivers/gpu/drm/tiny/arcpgu.c
1614
1615 ARCNET NETWORK LAYER
1616 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1617 L:      netdev@vger.kernel.org
1618 S:      Maintained
1619 F:      drivers/net/arcnet/
1620 F:      include/uapi/linux/if_arcnet.h
1621
1622 ARM ARCHITECTED TIMER DRIVER
1623 M:      Mark Rutland <mark.rutland@arm.com>
1624 M:      Marc Zyngier <maz@kernel.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      arch/arm/include/asm/arch_timer.h
1628 F:      arch/arm64/include/asm/arch_timer.h
1629 F:      drivers/clocksource/arm_arch_timer.c
1630
1631 ARM HDLCD DRM DRIVER
1632 M:      Liviu Dudau <liviu.dudau@arm.com>
1633 S:      Supported
1634 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1635 F:      drivers/gpu/drm/arm/hdlcd_*
1636
1637 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1638 M:      Linus Walleij <linus.walleij@linaro.org>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 S:      Maintained
1641 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1642 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1643 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1644 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1645 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1646 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1647 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1648 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1649 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1650 F:      arch/arm/boot/dts/arm-realview-*
1651 F:      arch/arm/boot/dts/integrator*
1652 F:      arch/arm/boot/dts/versatile*
1653 F:      arch/arm/mach-versatile/
1654 F:      drivers/bus/arm-integrator-lm.c
1655 F:      drivers/clk/versatile/
1656 F:      drivers/i2c/busses/i2c-versatile.c
1657 F:      drivers/irqchip/irq-versatile-fpga.c
1658 F:      drivers/mtd/maps/physmap-versatile.*
1659 F:      drivers/power/reset/arm-versatile-reboot.c
1660 F:      drivers/soc/versatile/
1661
1662 ARM KOMEDA DRM-KMS DRIVER
1663 M:      James (Qian) Wang <james.qian.wang@arm.com>
1664 M:      Liviu Dudau <liviu.dudau@arm.com>
1665 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1666 L:      Mali DP Maintainers <malidp@foss.arm.com>
1667 S:      Supported
1668 T:      git git://anongit.freedesktop.org/drm/drm-misc
1669 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1670 F:      Documentation/gpu/komeda-kms.rst
1671 F:      drivers/gpu/drm/arm/display/include/
1672 F:      drivers/gpu/drm/arm/display/komeda/
1673
1674 ARM MALI PANFROST DRM DRIVER
1675 M:      Rob Herring <robh@kernel.org>
1676 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1677 R:      Steven Price <steven.price@arm.com>
1678 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1679 L:      dri-devel@lists.freedesktop.org
1680 S:      Supported
1681 T:      git git://anongit.freedesktop.org/drm/drm-misc
1682 F:      drivers/gpu/drm/panfrost/
1683 F:      include/uapi/drm/panfrost_drm.h
1684
1685 ARM MALI-DP DRM DRIVER
1686 M:      Liviu Dudau <liviu.dudau@arm.com>
1687 M:      Brian Starkey <brian.starkey@arm.com>
1688 L:      Mali DP Maintainers <malidp@foss.arm.com>
1689 S:      Supported
1690 T:      git git://anongit.freedesktop.org/drm/drm-misc
1691 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1692 F:      Documentation/gpu/afbc.rst
1693 F:      drivers/gpu/drm/arm/
1694
1695 ARM MFM AND FLOPPY DRIVERS
1696 M:      Ian Molton <spyro@f2s.com>
1697 S:      Maintained
1698 F:      arch/arm/include/asm/floppy.h
1699 F:      arch/arm/mach-rpc/floppydma.S
1700
1701 ARM PMU PROFILING AND DEBUGGING
1702 M:      Will Deacon <will@kernel.org>
1703 M:      Mark Rutland <mark.rutland@arm.com>
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Maintained
1706 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1707 F:      Documentation/devicetree/bindings/perf/
1708 F:      arch/arm*/include/asm/hw_breakpoint.h
1709 F:      arch/arm*/include/asm/perf_event.h
1710 F:      arch/arm*/kernel/hw_breakpoint.c
1711 F:      arch/arm*/kernel/perf_*
1712 F:      drivers/perf/
1713 F:      include/linux/perf/arm_pmu.h
1714
1715 ARM PORT
1716 M:      Russell King <linux@armlinux.org.uk>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Odd Fixes
1719 W:      http://www.armlinux.org.uk/
1720 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1721 F:      arch/arm/
1722 X:      arch/arm/boot/dts/
1723
1724 ARM PRIMECELL AACI PL041 DRIVER
1725 M:      Russell King <linux@armlinux.org.uk>
1726 S:      Odd Fixes
1727 F:      sound/arm/aaci.*
1728
1729 ARM PRIMECELL BUS SUPPORT
1730 M:      Russell King <linux@armlinux.org.uk>
1731 S:      Odd Fixes
1732 F:      drivers/amba/
1733 F:      include/linux/amba/bus.h
1734
1735 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1736 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1737 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1738 L:      linux-mtd@lists.infradead.org
1739 S:      Maintained
1740 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1741 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1742
1743 ARM PRIMECELL PL35X SMC DRIVER
1744 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1745 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1747 S:      Maintained
1748 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1749 F:      drivers/memory/pl353-smc.c
1750
1751 ARM PRIMECELL CLCD PL110 DRIVER
1752 M:      Russell King <linux@armlinux.org.uk>
1753 S:      Odd Fixes
1754 F:      drivers/video/fbdev/amba-clcd.*
1755
1756 ARM PRIMECELL KMI PL050 DRIVER
1757 M:      Russell King <linux@armlinux.org.uk>
1758 S:      Odd Fixes
1759 F:      drivers/input/serio/ambakmi.*
1760 F:      include/linux/amba/kmi.h
1761
1762 ARM PRIMECELL MMCI PL180/1 DRIVER
1763 M:      Russell King <linux@armlinux.org.uk>
1764 S:      Odd Fixes
1765 F:      drivers/mmc/host/mmci.*
1766 F:      include/linux/amba/mmci.h
1767
1768 ARM PRIMECELL SSP PL022 SPI DRIVER
1769 M:      Linus Walleij <linus.walleij@linaro.org>
1770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1771 S:      Maintained
1772 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1773 F:      drivers/spi/spi-pl022.c
1774
1775 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1776 M:      Russell King <linux@armlinux.org.uk>
1777 S:      Odd Fixes
1778 F:      drivers/tty/serial/amba-pl01*.c
1779 F:      include/linux/amba/serial.h
1780
1781 ARM PRIMECELL VIC PL190/PL192 DRIVER
1782 M:      Linus Walleij <linus.walleij@linaro.org>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 S:      Maintained
1785 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1786 F:      drivers/irqchip/irq-vic.c
1787
1788 ARM SMC WATCHDOG DRIVER
1789 M:      Julius Werner <jwerner@chromium.org>
1790 R:      Evan Benn <evanbenn@chromium.org>
1791 S:      Maintained
1792 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1793 F:      drivers/watchdog/arm_smc_wdt.c
1794
1795 ARM SMMU DRIVERS
1796 M:      Will Deacon <will@kernel.org>
1797 R:      Robin Murphy <robin.murphy@arm.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1801 F:      drivers/iommu/arm/
1802 F:      drivers/iommu/io-pgtable-arm*
1803
1804 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1805 M:      Arnd Bergmann <arnd@arndb.de>
1806 M:      Olof Johansson <olof@lixom.net>
1807 M:      soc@kernel.org
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 C:      irc://irc.libera.chat/armlinux
1811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1812 F:      arch/arm/boot/dts/Makefile
1813 F:      arch/arm64/boot/dts/Makefile
1814
1815 ARM SUB-ARCHITECTURES
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818 C:      irc://irc.libera.chat/armlinux
1819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1820 F:      arch/arm/mach-*/
1821 F:      arch/arm/plat-*/
1822
1823 ARM/ACTIONS SEMI ARCHITECTURE
1824 M:      Andreas Färber <afaerber@suse.de>
1825 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      Documentation/devicetree/bindings/arm/actions.yaml
1830 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1831 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1832 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1833 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1834 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1835 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1836 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1837 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1838 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1839 F:      arch/arm/boot/dts/owl-*
1840 F:      arch/arm/mach-actions/
1841 F:      arch/arm64/boot/dts/actions/
1842 F:      drivers/clk/actions/
1843 F:      drivers/clocksource/timer-owl*
1844 F:      drivers/dma/owl-dma.c
1845 F:      drivers/i2c/busses/i2c-owl.c
1846 F:      drivers/irqchip/irq-owl-sirq.c
1847 F:      drivers/mmc/host/owl-mmc.c
1848 F:      drivers/net/ethernet/actions/
1849 F:      drivers/pinctrl/actions/*
1850 F:      drivers/soc/actions/
1851 F:      include/dt-bindings/power/owl-*
1852 F:      include/dt-bindings/reset/actions,*
1853 F:      include/linux/soc/actions/
1854 N:      owl
1855
1856 ARM/Allwinner SoC Clock Support
1857 M:      Emilio López <emilio@elopez.com.ar>
1858 S:      Maintained
1859 F:      drivers/clk/sunxi/
1860
1861 ARM/Allwinner sunXi SoC support
1862 M:      Chen-Yu Tsai <wens@csie.org>
1863 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1864 M:      Samuel Holland <samuel@sholland.org>
1865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1866 S:      Maintained
1867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1868 L:      linux-sunxi@lists.linux.dev
1869 F:      arch/arm/mach-sunxi/
1870 F:      arch/arm64/boot/dts/allwinner/
1871 F:      drivers/clk/sunxi-ng/
1872 F:      drivers/pinctrl/sunxi/
1873 F:      drivers/soc/sunxi/
1874 N:      allwinner
1875 N:      sun[x456789]i
1876 N:      sun[25]0i
1877
1878 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1879 M:      Neil Armstrong <neil.armstrong@linaro.org>
1880 M:      Jerome Brunet <jbrunet@baylibre.com>
1881 L:      linux-amlogic@lists.infradead.org
1882 S:      Maintained
1883 F:      Documentation/devicetree/bindings/clock/amlogic*
1884 F:      drivers/clk/meson/
1885 F:      include/dt-bindings/clock/gxbb*
1886 F:      include/dt-bindings/clock/meson*
1887
1888 ARM/Amlogic Meson SoC Crypto Drivers
1889 M:      Corentin Labbe <clabbe@baylibre.com>
1890 L:      linux-crypto@vger.kernel.org
1891 L:      linux-amlogic@lists.infradead.org
1892 S:      Maintained
1893 F:      Documentation/devicetree/bindings/crypto/amlogic*
1894 F:      drivers/crypto/amlogic/
1895
1896 ARM/Amlogic Meson SoC Sound Drivers
1897 M:      Jerome Brunet <jbrunet@baylibre.com>
1898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1899 S:      Maintained
1900 F:      Documentation/devicetree/bindings/sound/amlogic*
1901 F:      sound/soc/meson/
1902
1903 ARM/Amlogic Meson SoC support
1904 M:      Neil Armstrong <neil.armstrong@linaro.org>
1905 M:      Kevin Hilman <khilman@baylibre.com>
1906 R:      Jerome Brunet <jbrunet@baylibre.com>
1907 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 L:      linux-amlogic@lists.infradead.org
1910 S:      Maintained
1911 W:      http://linux-meson.com/
1912 F:      arch/arm/boot/dts/meson*
1913 F:      arch/arm/mach-meson/
1914 F:      arch/arm64/boot/dts/amlogic/
1915 F:      drivers/mmc/host/meson*
1916 F:      drivers/pinctrl/meson/
1917 F:      drivers/rtc/rtc-meson*
1918 F:      drivers/soc/amlogic/
1919 N:      meson
1920
1921 ARM/Annapurna Labs ALPINE ARCHITECTURE
1922 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1923 M:      Antoine Tenart <atenart@kernel.org>
1924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      arch/arm/boot/dts/alpine*
1927 F:      arch/arm/mach-alpine/
1928 F:      arch/arm64/boot/dts/amazon/
1929 F:      drivers/*/*alpine*
1930
1931 ARM/APPLE MACHINE SUPPORT
1932 M:      Hector Martin <marcan@marcan.st>
1933 M:      Sven Peter <sven@svenpeter.dev>
1934 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1935 L:      asahi@lists.linux.dev
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 W:      https://asahilinux.org
1939 B:      https://github.com/AsahiLinux/linux/issues
1940 C:      irc://irc.oftc.net/asahi-dev
1941 T:      git https://github.com/AsahiLinux/linux.git
1942 F:      Documentation/devicetree/bindings/arm/apple.yaml
1943 F:      Documentation/devicetree/bindings/arm/apple/*
1944 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1945 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1946 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1947 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1948 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1949 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1950 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1951 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1952 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1953 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1954 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1955 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1956 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1957 F:      Documentation/devicetree/bindings/power/apple*
1958 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1959 F:      arch/arm64/boot/dts/apple/
1960 F:      drivers/bluetooth/hci_bcm4377.c
1961 F:      drivers/clk/clk-apple-nco.c
1962 F:      drivers/cpufreq/apple-soc-cpufreq.c
1963 F:      drivers/dma/apple-admac.c
1964 F:      drivers/i2c/busses/i2c-pasemi-core.c
1965 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1966 F:      drivers/iommu/apple-dart.c
1967 F:      drivers/iommu/io-pgtable-dart.c
1968 F:      drivers/irqchip/irq-apple-aic.c
1969 F:      drivers/mailbox/apple-mailbox.c
1970 F:      drivers/nvme/host/apple.c
1971 F:      drivers/nvmem/apple-efuses.c
1972 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1973 F:      drivers/soc/apple/*
1974 F:      drivers/watchdog/apple_wdt.c
1975 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1976 F:      include/dt-bindings/pinctrl/apple.h
1977 F:      include/linux/apple-mailbox.h
1978 F:      include/linux/soc/apple/*
1979
1980 ARM/APPLE MACHINE SOUND DRIVERS
1981 M:      Martin Povišer <povik+lin@cutebit.org>
1982 L:      asahi@lists.linux.dev
1983 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1984 S:      Maintained
1985 F:      Documentation/devicetree/bindings/sound/apple,*
1986 F:      sound/soc/apple/*
1987 F:      sound/soc/codecs/cs42l83-i2c.c
1988
1989 ARM/ARTPEC MACHINE SUPPORT
1990 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1991 M:      Lars Persson <lars.persson@axis.com>
1992 L:      linux-arm-kernel@axis.com
1993 S:      Maintained
1994 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1995 F:      arch/arm/boot/dts/artpec6*
1996 F:      arch/arm/mach-artpec
1997 F:      drivers/clk/axis
1998 F:      drivers/crypto/axis
1999 F:      drivers/mmc/host/usdhi6rol0.c
2000 F:      drivers/pinctrl/pinctrl-artpec*
2001
2002 ARM/ASPEED I2C DRIVER
2003 M:      Brendan Higgins <brendanhiggins@google.com>
2004 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2005 R:      Joel Stanley <joel@jms.id.au>
2006 L:      linux-i2c@vger.kernel.org
2007 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2008 S:      Maintained
2009 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2010 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2011 F:      drivers/i2c/busses/i2c-aspeed.c
2012 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2013
2014 ARM/ASPEED MACHINE SUPPORT
2015 M:      Joel Stanley <joel@jms.id.au>
2016 R:      Andrew Jeffery <andrew@aj.id.au>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2019 S:      Supported
2020 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2022 F:      Documentation/devicetree/bindings/arm/aspeed/
2023 F:      arch/arm/boot/dts/aspeed-*
2024 F:      arch/arm/mach-aspeed/
2025 N:      aspeed
2026
2027 ARM/BITMAIN ARCHITECTURE
2028 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2032 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2033 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2034 F:      arch/arm64/boot/dts/bitmain/
2035 F:      drivers/clk/clk-bm1880.c
2036 F:      drivers/pinctrl/pinctrl-bm1880.c
2037
2038 ARM/CALXEDA HIGHBANK ARCHITECTURE
2039 M:      Andre Przywara <andre.przywara@arm.com>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/ecx-*.dts*
2043 F:      arch/arm/boot/dts/highbank.dts
2044 F:      arch/arm/mach-highbank/
2045
2046 ARM/CAVIUM THUNDER NETWORK DRIVER
2047 M:      Sunil Goutham <sgoutham@marvell.com>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Supported
2050 F:      drivers/net/ethernet/cavium/thunder/
2051
2052 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2053 M:      Lukasz Majewski <lukma@denx.de>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      arch/arm/mach-ep93xx/ts72xx.c
2057
2058 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2059 M:      Alexander Shiyan <shc_work@mail.ru>
2060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2061 S:      Odd Fixes
2062 N:      clps711x
2063
2064 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2065 M:      Lennert Buytenhek <kernel@wantstofly.org>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068
2069 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2070 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2071 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/boot/compressed/misc-ep93xx.h
2075 F:      arch/arm/mach-ep93xx/
2076
2077 ARM/CLKDEV SUPPORT
2078 M:      Russell King <linux@armlinux.org.uk>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2082 F:      drivers/clk/clkdev.c
2083
2084 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2085 M:      Baruch Siach <baruch@tkos.co.il>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 F:      arch/arm/boot/dts/cx92755*
2089 N:      digicolor
2090
2091 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2092 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2093 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2094 R:      Mike Leach <mike.leach@linaro.org>
2095 R:      Leo Yan <leo.yan@linaro.org>
2096 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2098 S:      Maintained
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2100 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2101 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2102 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2103 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2104 F:      Documentation/trace/coresight/*
2105 F:      drivers/hwtracing/coresight/*
2106 F:      include/dt-bindings/arm/coresight-cti-dt.h
2107 F:      include/linux/coresight*
2108 F:      samples/coresight/*
2109 F:      tools/perf/tests/shell/coresight/*
2110 F:      tools/perf/arch/arm/util/auxtrace.c
2111 F:      tools/perf/arch/arm/util/cs-etm.c
2112 F:      tools/perf/arch/arm/util/cs-etm.h
2113 F:      tools/perf/arch/arm/util/pmu.c
2114 F:      tools/perf/util/cs-etm-decoder/*
2115 F:      tools/perf/util/cs-etm.*
2116
2117 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2118 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2119 M:      Linus Walleij <linus.walleij@linaro.org>
2120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2121 S:      Maintained
2122 T:      git git://github.com/ulli-kroll/linux.git
2123 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2124 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2125 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2126 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2127 F:      arch/arm/boot/dts/gemini*
2128 F:      arch/arm/mach-gemini/
2129 F:      drivers/crypto/gemini/
2130 F:      drivers/net/ethernet/cortina/
2131 F:      drivers/pinctrl/pinctrl-gemini.c
2132 F:      drivers/rtc/rtc-ftrtc010.c
2133
2134 ARM/CZ.NIC TURRIS SUPPORT
2135 M:      Marek Behún <kabel@kernel.org>
2136 S:      Maintained
2137 W:      https://www.turris.cz/
2138 F:      Documentation/ABI/testing/debugfs-moxtet
2139 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2140 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2141 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2142 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2143 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2144 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2145 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2146 F:      drivers/bus/moxtet.c
2147 F:      drivers/firmware/turris-mox-rwtm.c
2148 F:      drivers/leds/leds-turris-omnia.c
2149 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2150 F:      drivers/gpio/gpio-moxtet.c
2151 F:      drivers/watchdog/armada_37xx_wdt.c
2152 F:      include/dt-bindings/bus/moxtet.h
2153 F:      include/linux/armada-37xx-rwtm-mailbox.h
2154 F:      include/linux/moxtet.h
2155
2156 ARM/FARADAY FA526 PORT
2157 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160 T:      git git://git.berlios.de/gemini-board
2161 F:      arch/arm/mm/*-fa*
2162
2163 ARM/FOOTBRIDGE ARCHITECTURE
2164 M:      Russell King <linux@armlinux.org.uk>
2165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 W:      http://www.armlinux.org.uk/
2168 F:      arch/arm/include/asm/hardware/dec21285.h
2169 F:      arch/arm/mach-footbridge/
2170
2171 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2172 M:      Shawn Guo <shawnguo@kernel.org>
2173 M:      Sascha Hauer <s.hauer@pengutronix.de>
2174 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2175 R:      Fabio Estevam <festevam@gmail.com>
2176 R:      NXP Linux Team <linux-imx@nxp.com>
2177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2178 S:      Maintained
2179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2180 X:      drivers/media/i2c/
2181 F:      arch/arm64/boot/dts/freescale/
2182 X:      arch/arm64/boot/dts/freescale/fsl-*
2183 X:      arch/arm64/boot/dts/freescale/qoriq-*
2184 N:      imx
2185 N:      mxs
2186
2187 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2188 M:      Shawn Guo <shawnguo@kernel.org>
2189 M:      Li Yang <leoyang.li@nxp.com>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 S:      Maintained
2192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2193 F:      arch/arm/boot/dts/ls1021a*
2194 F:      arch/arm64/boot/dts/freescale/fsl-*
2195 F:      arch/arm64/boot/dts/freescale/qoriq-*
2196
2197 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2198 M:      Shawn Guo <shawnguo@kernel.org>
2199 M:      Sascha Hauer <s.hauer@pengutronix.de>
2200 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2201 R:      Stefan Agner <stefan@agner.ch>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2205 F:      arch/arm/boot/dts/vf*
2206 F:      arch/arm/mach-imx/*vf610*
2207
2208 ARM/GUMSTIX MACHINE SUPPORT
2209 M:      Steve Sakoman <sakoman@gmail.com>
2210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2211 S:      Maintained
2212
2213 ARM/HISILICON SOC SUPPORT
2214 M:      Wei Xu <xuwei5@hisilicon.com>
2215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2216 S:      Supported
2217 W:      http://www.hisilicon.com
2218 T:      git https://github.com/hisilicon/linux-hisi.git
2219 F:      arch/arm/boot/dts/hi3*
2220 F:      arch/arm/boot/dts/hip*
2221 F:      arch/arm/boot/dts/hisi*
2222 F:      arch/arm/mach-hisi/
2223 F:      arch/arm64/boot/dts/hisilicon/
2224
2225 ARM/HP JORNADA 7XX MACHINE SUPPORT
2226 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2227 S:      Maintained
2228 W:      www.jlime.com
2229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2230 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2231 F:      arch/arm/mach-sa1100/jornada720.c
2232
2233 ARM/HPE GXP ARCHITECTURE
2234 M:      Jean-Marie Verdun <verdun@hpe.com>
2235 M:      Nick Hawkins <nick.hawkins@hpe.com>
2236 S:      Maintained
2237 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2238 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2239 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2240 F:      arch/arm/boot/dts/hpe-bmc*
2241 F:      arch/arm/boot/dts/hpe-gxp*
2242 F:      arch/arm/mach-hpe/
2243 F:      drivers/clocksource/timer-gxp.c
2244 F:      drivers/spi/spi-gxp.c
2245 F:      drivers/watchdog/gxp-wdt.c
2246
2247 ARM/IGEP MACHINE SUPPORT
2248 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2249 M:      Javier Martinez Canillas <javier@dowhile0.org>
2250 L:      linux-omap@vger.kernel.org
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 F:      arch/arm/boot/dts/omap3-igep*
2254
2255 ARM/INTEL IXP4XX ARM ARCHITECTURE
2256 M:      Linus Walleij <linusw@kernel.org>
2257 M:      Imre Kaloz <kaloz@openwrt.org>
2258 M:      Krzysztof Halasa <khalasa@piap.pl>
2259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260 S:      Maintained
2261 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2262 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2263 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2264 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2265 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2266 F:      arch/arm/boot/dts/intel-ixp*
2267 F:      arch/arm/mach-ixp4xx/
2268 F:      drivers/bus/intel-ixp4xx-eb.c
2269 F:      drivers/clocksource/timer-ixp4xx.c
2270 F:      drivers/crypto/ixp4xx_crypto.c
2271 F:      drivers/gpio/gpio-ixp4xx.c
2272 F:      drivers/irqchip/irq-ixp4xx.c
2273
2274 ARM/INTEL KEEMBAY ARCHITECTURE
2275 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2276 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2277 S:      Maintained
2278 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2279 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2280 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2281
2282 ARM/INTEL XSC3 (MANZANO) ARM CORE
2283 M:      Lennert Buytenhek <kernel@wantstofly.org>
2284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2285 S:      Maintained
2286
2287 ARM/LG1K ARCHITECTURE
2288 M:      Chanho Min <chanho.min@lge.com>
2289 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2290 S:      Maintained
2291 F:      arch/arm64/boot/dts/lg/
2292
2293 ARM/LPC18XX ARCHITECTURE
2294 M:      Vladimir Zapolskiy <vz@mleia.com>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2298 F:      arch/arm/boot/dts/lpc43*
2299 F:      drivers/i2c/busses/i2c-lpc2k.c
2300 F:      drivers/memory/pl172.c
2301 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2302 F:      drivers/rtc/rtc-lpc24xx.c
2303 N:      lpc18xx
2304
2305 ARM/LPC32XX SOC SUPPORT
2306 M:      Vladimir Zapolskiy <vz@mleia.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2310 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2311 F:      arch/arm/boot/dts/lpc32*
2312 F:      arch/arm/mach-lpc32xx/
2313 F:      drivers/i2c/busses/i2c-pnx.c
2314 F:      drivers/net/ethernet/nxp/lpc_eth.c
2315 F:      drivers/usb/host/ohci-nxp.c
2316 F:      drivers/watchdog/pnx4008_wdt.c
2317 N:      lpc32xx
2318
2319 ARM/Marvell Dove/MV78xx0/Orion SOC support
2320 M:      Andrew Lunn <andrew@lunn.ch>
2321 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2322 M:      Gregory Clement <gregory.clement@bootlin.com>
2323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2324 S:      Maintained
2325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2326 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2327 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2328 F:      Documentation/devicetree/bindings/soc/dove/
2329 F:      arch/arm/boot/dts/dove*
2330 F:      arch/arm/boot/dts/orion5x*
2331 F:      arch/arm/mach-dove/
2332 F:      arch/arm/mach-mv78xx0/
2333 F:      arch/arm/mach-orion5x/
2334 F:      arch/arm/plat-orion/
2335 F:      drivers/soc/dove/
2336
2337 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2338 M:      Andrew Lunn <andrew@lunn.ch>
2339 M:      Gregory Clement <gregory.clement@bootlin.com>
2340 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Maintained
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2344 F:      Documentation/devicetree/bindings/arm/marvell/
2345 F:      arch/arm/boot/dts/armada*
2346 F:      arch/arm/boot/dts/kirkwood*
2347 F:      arch/arm/configs/mvebu_*_defconfig
2348 F:      arch/arm/mach-mvebu/
2349 F:      arch/arm64/boot/dts/marvell/armada*
2350 F:      arch/arm64/boot/dts/marvell/cn913*
2351 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2352 F:      drivers/cpufreq/armada-8k-cpufreq.c
2353 F:      drivers/cpufreq/mvebu-cpufreq.c
2354 F:      drivers/irqchip/irq-armada-370-xp.c
2355 F:      drivers/irqchip/irq-mvebu-*
2356 F:      drivers/pinctrl/mvebu/
2357 F:      drivers/rtc/rtc-armada38x.c
2358
2359 ARM/Mediatek RTC DRIVER
2360 M:      Eddie Huang <eddie.huang@mediatek.com>
2361 M:      Sean Wang <sean.wang@mediatek.com>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2366 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2367 F:      drivers/rtc/rtc-mt2712.c
2368 F:      drivers/rtc/rtc-mt6397.c
2369 F:      drivers/rtc/rtc-mt7622.c
2370
2371 ARM/Mediatek SoC support
2372 M:      Matthias Brugger <matthias.bgg@gmail.com>
2373 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2374 L:      linux-kernel@vger.kernel.org
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 W:      https://mtk.wiki.kernel.org/
2379 C:      irc://irc.libera.chat/linux-mediatek
2380 F:      arch/arm/boot/dts/mt2*
2381 F:      arch/arm/boot/dts/mt6*
2382 F:      arch/arm/boot/dts/mt7*
2383 F:      arch/arm/boot/dts/mt8*
2384 F:      arch/arm/mach-mediatek/
2385 F:      arch/arm64/boot/dts/mediatek/
2386 F:      drivers/soc/mediatek/
2387 N:      mtk
2388 N:      mt[2678]
2389 K:      mediatek
2390
2391 ARM/Mediatek USB3 PHY DRIVER
2392 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2394 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2395 S:      Maintained
2396 F:      Documentation/devicetree/bindings/phy/mediatek,*
2397 F:      drivers/phy/mediatek/
2398
2399 ARM/Microchip (AT91) SoC support
2400 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2401 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2402 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 S:      Supported
2405 W:      http://www.linux4sam.org
2406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2407 F:      arch/arm/boot/dts/at91*.dts
2408 F:      arch/arm/boot/dts/at91*.dtsi
2409 F:      arch/arm/boot/dts/sama*.dts
2410 F:      arch/arm/boot/dts/sama*.dtsi
2411 F:      arch/arm/include/debug/at91.S
2412 F:      arch/arm/mach-at91/
2413 F:      drivers/memory/atmel*
2414 F:      drivers/watchdog/sama5d4_wdt.c
2415 F:      include/soc/at91/
2416 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2417 X:      drivers/net/wireless/atmel/
2418 N:      at91
2419 N:      atmel
2420
2421 ARM/Microchip Sparx5 SoC support
2422 M:      Lars Povlsen <lars.povlsen@microchip.com>
2423 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2424 M:      Daniel Machon <daniel.machon@microchip.com>
2425 M:      UNGLinuxDriver@microchip.com
2426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2427 S:      Supported
2428 T:      git git://github.com/microchip-ung/linux-upstream.git
2429 F:      arch/arm64/boot/dts/microchip/
2430 F:      drivers/net/ethernet/microchip/vcap/
2431 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2432 N:      sparx5
2433
2434 Microchip Timer Counter Block (TCB) Capture Driver
2435 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 L:      linux-iio@vger.kernel.org
2438 S:      Maintained
2439 F:      drivers/counter/microchip-tcb-capture.c
2440
2441 ARM/MILBEAUT ARCHITECTURE
2442 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2443 M:      Takao Orito <orito.takao@socionext.com>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 S:      Maintained
2446 F:      arch/arm/boot/dts/milbeaut*
2447 F:      arch/arm/mach-milbeaut/
2448 N:      milbeaut
2449
2450 ARM/MStar/Sigmastar Armv7 SoC support
2451 M:      Daniel Palmer <daniel@thingy.jp>
2452 M:      Romain Perier <romain.perier@gmail.com>
2453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2454 S:      Maintained
2455 W:      http://linux-chenxing.org/
2456 T:      git git://github.com/linux-chenxing/linux.git
2457 F:      Documentation/devicetree/bindings/arm/mstar/*
2458 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2459 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2460 F:      arch/arm/boot/dts/mstar-*
2461 F:      arch/arm/mach-mstar/
2462 F:      drivers/clk/mstar/
2463 F:      drivers/clocksource/timer-msc313e.c
2464 F:      drivers/gpio/gpio-msc313.c
2465 F:      drivers/rtc/rtc-msc313.c
2466 F:      drivers/watchdog/msc313e_wdt.c
2467 F:      include/dt-bindings/clock/mstar-*
2468 F:      include/dt-bindings/gpio/msc313-gpio.h
2469
2470 ARM/NOMADIK/Ux500 ARCHITECTURES
2471 M:      Linus Walleij <linus.walleij@linaro.org>
2472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2473 S:      Maintained
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2475 F:      Documentation/devicetree/bindings/arm/ste-*
2476 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2477 F:      Documentation/devicetree/bindings/arm/ux500/
2478 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2479 F:      arch/arm/boot/dts/ste-*
2480 F:      arch/arm/mach-nomadik/
2481 F:      arch/arm/mach-ux500/
2482 F:      drivers/clk/clk-nomadik.c
2483 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2484 F:      drivers/dma/ste_dma40*
2485 F:      drivers/hwspinlock/u8500_hsem.c
2486 F:      drivers/i2c/busses/i2c-nomadik.c
2487 F:      drivers/iio/adc/ab8500-gpadc.c
2488 F:      drivers/mfd/ab8500*
2489 F:      drivers/mfd/abx500*
2490 F:      drivers/mfd/db8500*
2491 F:      drivers/pinctrl/nomadik/
2492 F:      drivers/rtc/rtc-ab8500.c
2493 F:      drivers/rtc/rtc-pl031.c
2494 F:      drivers/soc/ux500/
2495
2496 ARM/NUVOTON NPCM ARCHITECTURE
2497 M:      Avi Fishman <avifishman70@gmail.com>
2498 M:      Tomer Maimon <tmaimon77@gmail.com>
2499 M:      Tali Perry <tali.perry1@gmail.com>
2500 R:      Patrick Venture <venture@google.com>
2501 R:      Nancy Yuen <yuenn@google.com>
2502 R:      Benjamin Fair <benjaminfair@google.com>
2503 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2504 S:      Supported
2505 F:      Documentation/devicetree/bindings/*/*/*npcm*
2506 F:      Documentation/devicetree/bindings/*/*npcm*
2507 F:      Documentation/devicetree/bindings/arm/npcm/*
2508 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2509 F:      arch/arm/boot/dts/nuvoton-npcm*
2510 F:      arch/arm/mach-npcm/
2511 F:      arch/arm64/boot/dts/nuvoton/
2512 F:      drivers/*/*npcm*
2513 F:      drivers/*/*/*npcm*
2514 F:      drivers/rtc/rtc-nct3018y.c
2515 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2516 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2517
2518 ARM/NUVOTON WPCM450 ARCHITECTURE
2519 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2520 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      https://github.com/neuschaefer/wpcm450/wiki
2523 F:      Documentation/devicetree/bindings/*/*wpcm*
2524 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2525 F:      arch/arm/configs/wpcm450_defconfig
2526 F:      arch/arm/mach-npcm/wpcm450.c
2527 F:      drivers/*/*/*wpcm*
2528 F:      drivers/*/*wpcm*
2529
2530 ARM/NXP S32G ARCHITECTURE
2531 M:      Chester Lin <clin@suse.com>
2532 R:      Andreas Färber <afaerber@suse.de>
2533 R:      Matthias Brugger <mbrugger@suse.com>
2534 R:      NXP S32 Linux Team <s32@nxp.com>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 S:      Maintained
2537 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2538
2539 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2540 M:      Alexander Clouter <alex@digriz.org.uk>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543 W:      http://www.digriz.org.uk/ts78xx/kernel
2544 F:      arch/arm/mach-orion5x/ts78xx-*
2545
2546 ARM/OXNAS platform support
2547 M:      Neil Armstrong <neil.armstrong@linaro.org>
2548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2549 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2550 S:      Maintained
2551 F:      arch/arm/boot/dts/ox8*.dts*
2552 F:      arch/arm/mach-oxnas/
2553 F:      drivers/power/reset/oxnas-restart.c
2554 N:      oxnas
2555
2556 ARM/QUALCOMM SUPPORT
2557 M:      Andy Gross <agross@kernel.org>
2558 M:      Bjorn Andersson <andersson@kernel.org>
2559 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2560 L:      linux-arm-msm@vger.kernel.org
2561 S:      Maintained
2562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2563 F:      Documentation/devicetree/bindings/*/qcom*
2564 F:      Documentation/devicetree/bindings/soc/qcom/
2565 F:      arch/arm/boot/dts/qcom-*.dts
2566 F:      arch/arm/boot/dts/qcom-*.dtsi
2567 F:      arch/arm/configs/qcom_defconfig
2568 F:      arch/arm/mach-qcom/
2569 F:      arch/arm64/boot/dts/qcom/
2570 F:      drivers/*/*/qcom*
2571 F:      drivers/*/*/qcom/
2572 F:      drivers/*/pm8???-*
2573 F:      drivers/*/qcom*
2574 F:      drivers/*/qcom/
2575 F:      drivers/bluetooth/btqcomsmd.c
2576 F:      drivers/clocksource/timer-qcom.c
2577 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2578 F:      drivers/extcon/extcon-qcom*
2579 F:      drivers/i2c/busses/i2c-qcom-geni.c
2580 F:      drivers/i2c/busses/i2c-qup.c
2581 F:      drivers/iommu/msm*
2582 F:      drivers/mfd/ssbi.c
2583 F:      drivers/mmc/host/mmci_qcom*
2584 F:      drivers/mmc/host/sdhci-msm.c
2585 F:      drivers/pci/controller/dwc/pcie-qcom.c
2586 F:      drivers/phy/qualcomm/
2587 F:      drivers/power/*/msm*
2588 F:      drivers/reset/reset-qcom-*
2589 F:      drivers/ufs/host/ufs-qcom*
2590 F:      drivers/spi/spi-geni-qcom.c
2591 F:      drivers/spi/spi-qcom-qspi.c
2592 F:      drivers/spi/spi-qup.c
2593 F:      drivers/tty/serial/msm_serial.c
2594 F:      drivers/usb/dwc3/dwc3-qcom.c
2595 F:      include/dt-bindings/*/qcom*
2596 F:      include/linux/*/qcom*
2597 F:      include/linux/soc/qcom/
2598
2599 ARM/RDA MICRO ARCHITECTURE
2600 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2603 S:      Maintained
2604 F:      Documentation/devicetree/bindings/arm/rda.yaml
2605 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2606 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2607 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2608 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2609 F:      arch/arm/boot/dts/rda8810pl-*
2610 F:      drivers/clocksource/timer-rda.c
2611 F:      drivers/gpio/gpio-rda.c
2612 F:      drivers/irqchip/irq-rda-intc.c
2613 F:      drivers/tty/serial/rda-uart.c
2614
2615 ARM/REALTEK ARCHITECTURE
2616 M:      Andreas Färber <afaerber@suse.de>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2621 F:      arch/arm/boot/dts/rtd*
2622 F:      arch/arm/mach-realtek/
2623 F:      arch/arm64/boot/dts/realtek/
2624
2625 ARM/RISC-V/RENESAS ARCHITECTURE
2626 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2627 M:      Magnus Damm <magnus.damm@gmail.com>
2628 L:      linux-renesas-soc@vger.kernel.org
2629 S:      Supported
2630 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2631 C:      irc://irc.libera.chat/renesas-soc
2632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2633 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2634 F:      Documentation/devicetree/bindings/soc/renesas/
2635 F:      arch/arm/boot/dts/emev2*
2636 F:      arch/arm/boot/dts/gr-peach*
2637 F:      arch/arm/boot/dts/iwg20d-q7*
2638 F:      arch/arm/boot/dts/r7s*
2639 F:      arch/arm/boot/dts/r8a*
2640 F:      arch/arm/boot/dts/r9a*
2641 F:      arch/arm/boot/dts/sh*
2642 F:      arch/arm/configs/shmobile_defconfig
2643 F:      arch/arm/include/debug/renesas-scif.S
2644 F:      arch/arm/mach-shmobile/
2645 F:      arch/arm64/boot/dts/renesas/
2646 F:      arch/riscv/boot/dts/renesas/
2647 F:      drivers/soc/renesas/
2648 F:      include/linux/soc/renesas/
2649
2650 ARM/RISCPC ARCHITECTURE
2651 M:      Russell King <linux@armlinux.org.uk>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 W:      http://www.armlinux.org.uk/
2655 F:      arch/arm/include/asm/hardware/ioc.h
2656 F:      arch/arm/include/asm/hardware/iomd.h
2657 F:      arch/arm/include/asm/hardware/memc.h
2658 F:      arch/arm/mach-rpc/
2659 F:      drivers/net/ethernet/8390/etherh.c
2660 F:      drivers/net/ethernet/i825xx/ether1*
2661 F:      drivers/net/ethernet/seeq/ether3*
2662 F:      drivers/scsi/arm/
2663
2664 ARM/Rockchip SoC support
2665 M:      Heiko Stuebner <heiko@sntech.de>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 L:      linux-rockchip@lists.infradead.org
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2670 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2671 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2672 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2673 F:      arch/arm/boot/dts/rk3*
2674 F:      arch/arm/boot/dts/rv11*
2675 F:      arch/arm/mach-rockchip/
2676 F:      drivers/*/*/*rockchip*
2677 F:      drivers/*/*rockchip*
2678 F:      drivers/clk/rockchip/
2679 F:      drivers/i2c/busses/i2c-rk3x.c
2680 F:      sound/soc/rockchip/
2681 N:      rockchip
2682
2683 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2684 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2685 R:      Alim Akhtar <alim.akhtar@samsung.com>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 L:      linux-samsung-soc@vger.kernel.org
2688 S:      Maintained
2689 C:      irc://irc.libera.chat/linux-exynos
2690 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2691 B:      mailto:linux-samsung-soc@vger.kernel.org
2692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2693 F:      Documentation/arm/samsung/
2694 F:      Documentation/devicetree/bindings/arm/samsung/
2695 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2696 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2697 F:      Documentation/devicetree/bindings/soc/samsung/
2698 F:      arch/arm/boot/dts/exynos*
2699 F:      arch/arm/boot/dts/s3c*
2700 F:      arch/arm/boot/dts/s5p*
2701 F:      arch/arm/mach-exynos*/
2702 F:      arch/arm/mach-s3c/
2703 F:      arch/arm/mach-s5p*/
2704 F:      arch/arm64/boot/dts/exynos/
2705 F:      drivers/*/*/*s3c24*
2706 F:      drivers/*/*s3c24*
2707 F:      drivers/*/*s3c64xx*
2708 F:      drivers/*/*s5pv210*
2709 F:      drivers/clocksource/samsung_pwm_timer.c
2710 F:      drivers/memory/samsung/
2711 F:      drivers/pwm/pwm-samsung.c
2712 F:      drivers/soc/samsung/
2713 F:      drivers/tty/serial/samsung*
2714 F:      include/clocksource/samsung_pwm.h
2715 F:      include/linux/platform_data/*s3c*
2716 F:      include/linux/serial_s3c.h
2717 F:      include/linux/soc/samsung/
2718 N:      exynos
2719 N:      s3c64xx
2720 N:      s5pv210
2721
2722 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2723 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 L:      linux-media@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/media/platform/samsung/s5p-g2d/
2728
2729 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2730 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2731 L:      linux-samsung-soc@vger.kernel.org
2732 L:      linux-media@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2735 F:      drivers/media/cec/platform/s5p/
2736
2737 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2738 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2739 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2740 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L:      linux-media@vger.kernel.org
2743 S:      Maintained
2744 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2745 F:      drivers/media/platform/samsung/s5p-jpeg/
2746
2747 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2748 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2749 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 L:      linux-media@vger.kernel.org
2752 S:      Maintained
2753 F:      drivers/media/platform/samsung/s5p-mfc/
2754
2755 ARM/SOCFPGA ARCHITECTURE
2756 M:      Dinh Nguyen <dinguyen@kernel.org>
2757 S:      Maintained
2758 W:      http://www.rocketboards.org
2759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2760 F:      arch/arm/boot/dts/socfpga*
2761 F:      arch/arm/configs/socfpga_defconfig
2762 F:      arch/arm/mach-socfpga/
2763 F:      arch/arm64/boot/dts/altera/
2764 F:      arch/arm64/boot/dts/intel/
2765
2766 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2767 M:      Dinh Nguyen <dinguyen@kernel.org>
2768 S:      Maintained
2769 F:      drivers/clk/socfpga/
2770
2771 ARM/SOCFPGA EDAC SUPPORT
2772 M:      Dinh Nguyen <dinguyen@kernel.org>
2773 S:      Maintained
2774 F:      drivers/edac/altera_edac.[ch]
2775
2776 ARM/SPREADTRUM SoC SUPPORT
2777 M:      Orson Zhai <orsonzhai@gmail.com>
2778 M:      Baolin Wang <baolin.wang7@gmail.com>
2779 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2780 S:      Maintained
2781 F:      arch/arm64/boot/dts/sprd
2782 N:      sprd
2783 N:      sc27xx
2784 N:      sc2731
2785
2786 ARM/STI ARCHITECTURE
2787 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2789 S:      Maintained
2790 W:      http://www.stlinux.com
2791 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2792 F:      arch/arm/boot/dts/sti*
2793 F:      arch/arm/mach-sti/
2794 F:      drivers/ata/ahci_st.c
2795 F:      drivers/char/hw_random/st-rng.c
2796 F:      drivers/clocksource/arm_global_timer.c
2797 F:      drivers/clocksource/clksrc_st_lpc.c
2798 F:      drivers/cpufreq/sti-cpufreq.c
2799 F:      drivers/dma/st_fdma*
2800 F:      drivers/i2c/busses/i2c-st.c
2801 F:      drivers/media/platform/st/sti/c8sectpfe/
2802 F:      drivers/media/rc/st_rc.c
2803 F:      drivers/mmc/host/sdhci-st.c
2804 F:      drivers/phy/st/phy-miphy28lp.c
2805 F:      drivers/phy/st/phy-stih407-usb.c
2806 F:      drivers/pinctrl/pinctrl-st.c
2807 F:      drivers/remoteproc/st_remoteproc.c
2808 F:      drivers/remoteproc/st_slim_rproc.c
2809 F:      drivers/reset/sti/
2810 F:      drivers/rtc/rtc-st-lpc.c
2811 F:      drivers/tty/serial/st-asc.c
2812 F:      drivers/usb/dwc3/dwc3-st.c
2813 F:      drivers/usb/host/ehci-st.c
2814 F:      drivers/usb/host/ohci-st.c
2815 F:      drivers/watchdog/st_lpc_wdt.c
2816 F:      include/linux/remoteproc/st_slim_rproc.h
2817
2818 ARM/STM32 ARCHITECTURE
2819 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2820 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2821 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2823 S:      Maintained
2824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2825 F:      arch/arm/boot/dts/stm32*
2826 F:      arch/arm/mach-stm32/
2827 F:      drivers/clocksource/armv7m_systick.c
2828 N:      stm32
2829 N:      stm
2830
2831 ARM/SUNPLUS SP7021 SOC SUPPORT
2832 M:      Qin Jian <qinjian@cqplus1.com>
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2834 S:      Maintained
2835 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2836 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2837 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2838 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2839 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2840 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2841 F:      arch/arm/configs/sp7021_*defconfig
2842 F:      arch/arm/mach-sunplus/
2843 F:      drivers/irqchip/irq-sp7021-intc.c
2844 F:      drivers/reset/reset-sunplus.c
2845 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2846 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2847
2848 ARM/Synaptics SoC support
2849 M:      Jisheng Zhang <jszhang@kernel.org>
2850 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Maintained
2853 F:      arch/arm/boot/dts/berlin*
2854 F:      arch/arm/mach-berlin/
2855 F:      arch/arm64/boot/dts/synaptics/
2856
2857 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2858 M:      Lennert Buytenhek <kernel@wantstofly.org>
2859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 S:      Maintained
2861
2862 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2863 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2864 L:      linux-tegra@vger.kernel.org
2865 L:      linux-media@vger.kernel.org
2866 S:      Maintained
2867 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2868 F:      drivers/media/cec/platform/tegra/
2869
2870 ARM/TESLA FSD SoC SUPPORT
2871 M:      Alim Akhtar <alim.akhtar@samsung.com>
2872 M:      linux-fsd@tesla.com
2873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2874 L:      linux-samsung-soc@vger.kernel.org
2875 S:      Maintained
2876 F:      arch/arm64/boot/dts/tesla/
2877
2878 ARM/TETON BGA MACHINE SUPPORT
2879 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2881 S:      Maintained
2882
2883 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2884 M:      Santosh Shilimkar <ssantosh@kernel.org>
2885 L:      linux-kernel@vger.kernel.org
2886 S:      Maintained
2887 F:      drivers/memory/*emif*
2888
2889 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2890 M:      Nishanth Menon <nm@ti.com>
2891 M:      Santosh Shilimkar <ssantosh@kernel.org>
2892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2893 S:      Maintained
2894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2895 F:      arch/arm/boot/dts/keystone-*
2896 F:      arch/arm/mach-keystone/
2897
2898 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2899 M:      Santosh Shilimkar <ssantosh@kernel.org>
2900 L:      linux-kernel@vger.kernel.org
2901 S:      Maintained
2902 F:      drivers/clk/keystone/
2903
2904 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2905 M:      Santosh Shilimkar <ssantosh@kernel.org>
2906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2907 L:      linux-kernel@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/clocksource/timer-keystone.c
2910
2911 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2912 M:      Santosh Shilimkar <ssantosh@kernel.org>
2913 L:      linux-kernel@vger.kernel.org
2914 S:      Maintained
2915 F:      drivers/power/reset/keystone-reset.c
2916
2917 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2918 M:      Nishanth Menon <nm@ti.com>
2919 M:      Vignesh Raghavendra <vigneshr@ti.com>
2920 M:      Tero Kristo <kristo@kernel.org>
2921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2922 S:      Supported
2923 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2924 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2925 F:      arch/arm64/boot/dts/ti/Makefile
2926 F:      arch/arm64/boot/dts/ti/k3-*
2927 F:      include/dt-bindings/pinctrl/k3.h
2928
2929 ARM/TOSHIBA VISCONTI ARCHITECTURE
2930 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2932 S:      Supported
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2934 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2935 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2936 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2937 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2938 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2939 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2940 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2941 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2942 F:      arch/arm64/boot/dts/toshiba/
2943 F:      drivers/clk/visconti/
2944 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2945 F:      drivers/gpio/gpio-visconti.c
2946 F:      drivers/pci/controller/dwc/pcie-visconti.c
2947 F:      drivers/pinctrl/visconti/
2948 F:      drivers/watchdog/visconti_wdt.c
2949 N:      visconti
2950
2951 ARM/UNIPHIER ARCHITECTURE
2952 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2953 M:      Masami Hiramatsu <mhiramat@kernel.org>
2954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2955 S:      Maintained
2956 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2957 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2958 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2959 F:      arch/arm/boot/dts/uniphier*
2960 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2961 F:      arch/arm/mach-uniphier/
2962 F:      arch/arm/mm/cache-uniphier.c
2963 F:      arch/arm64/boot/dts/socionext/uniphier*
2964 F:      drivers/bus/uniphier-system-bus.c
2965 F:      drivers/clk/uniphier/
2966 F:      drivers/dma/uniphier-mdmac.c
2967 F:      drivers/gpio/gpio-uniphier.c
2968 F:      drivers/i2c/busses/i2c-uniphier*
2969 F:      drivers/irqchip/irq-uniphier-aidet.c
2970 F:      drivers/mmc/host/uniphier-sd.c
2971 F:      drivers/pinctrl/uniphier/
2972 F:      drivers/reset/reset-uniphier.c
2973 F:      drivers/tty/serial/8250/8250_uniphier.c
2974 N:      uniphier
2975
2976 ARM/VERSATILE EXPRESS PLATFORM
2977 M:      Liviu Dudau <liviu.dudau@arm.com>
2978 M:      Sudeep Holla <sudeep.holla@arm.com>
2979 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      */*/*/vexpress*
2983 F:      */*/vexpress*
2984 F:      arch/arm/boot/dts/vexpress*
2985 F:      arch/arm/mach-versatile/
2986 F:      arch/arm64/boot/dts/arm/
2987 F:      drivers/clk/versatile/clk-vexpress-osc.c
2988 F:      drivers/clocksource/timer-versatile.c
2989 N:      mps2
2990
2991 ARM/VFP SUPPORT
2992 M:      Russell King <linux@armlinux.org.uk>
2993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2994 S:      Maintained
2995 W:      http://www.armlinux.org.uk/
2996 F:      arch/arm/vfp/
2997
2998 ARM/VT8500 ARM ARCHITECTURE
2999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3000 S:      Orphan
3001 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3002 F:      arch/arm/mach-vt8500/
3003 F:      drivers/clocksource/timer-vt8500.c
3004 F:      drivers/i2c/busses/i2c-wmt.c
3005 F:      drivers/mmc/host/wmt-sdmmc.c
3006 F:      drivers/pwm/pwm-vt8500.c
3007 F:      drivers/rtc/rtc-vt8500.c
3008 F:      drivers/tty/serial/vt8500_serial.c
3009 F:      drivers/usb/host/ehci-platform.c
3010 F:      drivers/usb/host/uhci-platform.c
3011 F:      drivers/video/fbdev/vt8500lcdfb.*
3012 F:      drivers/video/fbdev/wm8505fb*
3013 F:      drivers/video/fbdev/wmt_ge_rops.*
3014
3015 ARM/ZYNQ ARCHITECTURE
3016 M:      Michal Simek <michal.simek@xilinx.com>
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 S:      Supported
3019 W:      http://wiki.xilinx.com
3020 T:      git https://github.com/Xilinx/linux-xlnx.git
3021 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3022 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3023 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3024 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3025 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3026 F:      arch/arm/mach-zynq/
3027 F:      drivers/clocksource/timer-cadence-ttc.c
3028 F:      drivers/cpuidle/cpuidle-zynq.c
3029 F:      drivers/edac/synopsys_edac.c
3030 F:      drivers/i2c/busses/i2c-cadence.c
3031 F:      drivers/i2c/busses/i2c-xiic.c
3032 F:      drivers/mmc/host/sdhci-of-arasan.c
3033 N:      zynq
3034 N:      xilinx
3035
3036 ARM64 PORT (AARCH64 ARCHITECTURE)
3037 M:      Catalin Marinas <catalin.marinas@arm.com>
3038 M:      Will Deacon <will@kernel.org>
3039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3040 S:      Maintained
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3042 F:      Documentation/arm64/
3043 F:      arch/arm64/
3044 F:      tools/testing/selftests/arm64/
3045 X:      arch/arm64/boot/dts/
3046
3047 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3048 M:      George McCollister <george.mccollister@gmail.com>
3049 L:      netdev@vger.kernel.org
3050 S:      Maintained
3051 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3052 F:      drivers/net/dsa/xrs700x/*
3053 F:      net/dsa/tag_xrs700x.c
3054
3055 AS3645A LED FLASH CONTROLLER DRIVER
3056 M:      Sakari Ailus <sakari.ailus@iki.fi>
3057 L:      linux-leds@vger.kernel.org
3058 S:      Maintained
3059 F:      drivers/leds/flash/leds-as3645a.c
3060
3061 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3062 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3063 L:      linux-media@vger.kernel.org
3064 S:      Maintained
3065 T:      git git://linuxtv.org/media_tree.git
3066 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3067 F:      drivers/media/i2c/ak7375.c
3068
3069 ASAHI KASEI AK8974 DRIVER
3070 M:      Linus Walleij <linus.walleij@linaro.org>
3071 L:      linux-iio@vger.kernel.org
3072 S:      Supported
3073 W:      http://www.akm.com/
3074 F:      drivers/iio/magnetometer/ak8974.c
3075
3076 ASC7621 HARDWARE MONITOR DRIVER
3077 M:      George Joseph <george.joseph@fairview5.com>
3078 L:      linux-hwmon@vger.kernel.org
3079 S:      Maintained
3080 F:      Documentation/hwmon/asc7621.rst
3081 F:      drivers/hwmon/asc7621.c
3082
3083 ASIX AX88796C SPI ETHERNET ADAPTER
3084 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3085 S:      Maintained
3086 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3087 F:      drivers/net/ethernet/asix/ax88796c_*
3088
3089 ASPEED PECI CONTROLLER
3090 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3091 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3092 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3093 S:      Supported
3094 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3095 F:      drivers/peci/controller/peci-aspeed.c
3096
3097 ASPEED PINCTRL DRIVERS
3098 M:      Andrew Jeffery <andrew@aj.id.au>
3099 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3100 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3101 L:      linux-gpio@vger.kernel.org
3102 S:      Maintained
3103 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3104 F:      drivers/pinctrl/aspeed/
3105
3106 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3107 M:      Eddie James <eajames@linux.ibm.com>
3108 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3111 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3112 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3113
3114 ASPEED SD/MMC DRIVER
3115 M:      Andrew Jeffery <andrew@aj.id.au>
3116 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3117 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118 L:      linux-mmc@vger.kernel.org
3119 S:      Maintained
3120 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3121 F:      drivers/mmc/host/sdhci-of-aspeed*
3122
3123 ASPEED SMC SPI DRIVER
3124 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3125 M:      Cédric Le Goater <clg@kaod.org>
3126 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3127 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3128 L:      linux-spi@vger.kernel.org
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3131 F:      drivers/spi/spi-aspeed-smc.c
3132
3133 ASPEED VIDEO ENGINE DRIVER
3134 M:      Eddie James <eajames@linux.ibm.com>
3135 L:      linux-media@vger.kernel.org
3136 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3137 S:      Maintained
3138 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3139 F:      drivers/media/platform/aspeed/
3140
3141 ASPEED USB UDC DRIVER
3142 M:      Neal Liu <neal_liu@aspeedtech.com>
3143 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3144 S:      Maintained
3145 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3146 F:      drivers/usb/gadget/udc/aspeed_udc.c
3147
3148 ASPEED CRYPTO DRIVER
3149 M:      Neal Liu <neal_liu@aspeedtech.com>
3150 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3151 S:      Maintained
3152 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3153 F:      drivers/crypto/aspeed/
3154
3155 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3156 M:      Corentin Chary <corentin.chary@gmail.com>
3157 L:      acpi4asus-user@lists.sourceforge.net
3158 L:      platform-driver-x86@vger.kernel.org
3159 S:      Maintained
3160 W:      http://acpi4asus.sf.net
3161 F:      drivers/platform/x86/asus*.c
3162 F:      drivers/platform/x86/eeepc*.c
3163
3164 ASUS TF103C DOCK DRIVER
3165 M:      Hans de Goede <hdegoede@redhat.com>
3166 L:      platform-driver-x86@vger.kernel.org
3167 S:      Maintained
3168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3169 F:      drivers/platform/x86/asus-tf103c-dock.c
3170
3171 ASUS WMI HARDWARE MONITOR DRIVER
3172 M:      Ed Brindley <kernel@maidavale.org>
3173 M:      Denis Pauk <pauk.denis@gmail.com>
3174 L:      linux-hwmon@vger.kernel.org
3175 S:      Maintained
3176 F:      drivers/hwmon/asus_wmi_sensors.c
3177
3178 ASUS EC HARDWARE MONITOR DRIVER
3179 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3180 L:      linux-hwmon@vger.kernel.org
3181 S:      Maintained
3182 F:      drivers/hwmon/asus-ec-sensors.c
3183
3184 ASUS WIRELESS RADIO CONTROL DRIVER
3185 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3186 L:      platform-driver-x86@vger.kernel.org
3187 S:      Maintained
3188 F:      drivers/platform/x86/asus-wireless.c
3189
3190 ASYMMETRIC KEYS
3191 M:      David Howells <dhowells@redhat.com>
3192 L:      keyrings@vger.kernel.org
3193 S:      Maintained
3194 F:      Documentation/crypto/asymmetric-keys.rst
3195 F:      crypto/asymmetric_keys/
3196 F:      include/crypto/pkcs7.h
3197 F:      include/crypto/public_key.h
3198 F:      include/linux/verification.h
3199
3200 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3201 R:      Dan Williams <dan.j.williams@intel.com>
3202 S:      Odd fixes
3203 W:      http://sourceforge.net/projects/xscaleiop
3204 F:      Documentation/crypto/async-tx-api.rst
3205 F:      crypto/async_tx/
3206 F:      include/linux/async_tx.h
3207
3208 AT24 EEPROM DRIVER
3209 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3210 L:      linux-i2c@vger.kernel.org
3211 S:      Maintained
3212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3213 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3214 F:      drivers/misc/eeprom/at24.c
3215
3216 ATA OVER ETHERNET (AOE) DRIVER
3217 M:      "Justin Sanders" <justin@coraid.com>
3218 S:      Supported
3219 W:      http://www.openaoe.org/
3220 F:      Documentation/admin-guide/aoe/
3221 F:      drivers/block/aoe/
3222
3223 ATC260X PMIC MFD DRIVER
3224 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3225 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3226 L:      linux-actions@lists.infradead.org
3227 S:      Maintained
3228 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3229 F:      drivers/input/misc/atc260x-onkey.c
3230 F:      drivers/mfd/atc260*
3231 F:      drivers/power/reset/atc260x-poweroff.c
3232 F:      drivers/regulator/atc260x-regulator.c
3233 F:      include/linux/mfd/atc260x/*
3234
3235 ATHEROS 71XX/9XXX GPIO DRIVER
3236 M:      Alban Bedel <albeu@free.fr>
3237 S:      Maintained
3238 W:      https://github.com/AlbanBedel/linux
3239 T:      git git://github.com/AlbanBedel/linux
3240 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3241 F:      drivers/gpio/gpio-ath79.c
3242
3243 ATHEROS 71XX/9XXX USB PHY DRIVER
3244 M:      Alban Bedel <albeu@free.fr>
3245 S:      Maintained
3246 W:      https://github.com/AlbanBedel/linux
3247 T:      git git://github.com/AlbanBedel/linux
3248 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3249 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3250
3251 ATHEROS ATH GENERIC UTILITIES
3252 M:      Kalle Valo <kvalo@kernel.org>
3253 L:      linux-wireless@vger.kernel.org
3254 S:      Supported
3255 F:      drivers/net/wireless/ath/*
3256
3257 ATHEROS ATH5K WIRELESS DRIVER
3258 M:      Jiri Slaby <jirislaby@kernel.org>
3259 M:      Nick Kossifidis <mickflemm@gmail.com>
3260 M:      Luis Chamberlain <mcgrof@kernel.org>
3261 L:      linux-wireless@vger.kernel.org
3262 S:      Maintained
3263 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3264 F:      drivers/net/wireless/ath/ath5k/
3265
3266 ATHEROS ATH6KL WIRELESS DRIVER
3267 L:      linux-wireless@vger.kernel.org
3268 S:      Orphan
3269 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3270 F:      drivers/net/wireless/ath/ath6kl/
3271
3272 ATI_REMOTE2 DRIVER
3273 M:      Ville Syrjala <syrjala@sci.fi>
3274 S:      Maintained
3275 F:      drivers/input/misc/ati_remote2.c
3276
3277 ATK0110 HWMON DRIVER
3278 M:      Luca Tettamanti <kronos.it@gmail.com>
3279 L:      linux-hwmon@vger.kernel.org
3280 S:      Maintained
3281 F:      drivers/hwmon/asus_atk0110.c
3282
3283 ATLX ETHERNET DRIVERS
3284 M:      Chris Snook <chris.snook@gmail.com>
3285 L:      netdev@vger.kernel.org
3286 S:      Maintained
3287 W:      http://sourceforge.net/projects/atl1
3288 W:      http://atl1.sourceforge.net
3289 F:      drivers/net/ethernet/atheros/
3290
3291 ATM
3292 M:      Chas Williams <3chas3@gmail.com>
3293 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3294 L:      netdev@vger.kernel.org
3295 S:      Maintained
3296 W:      http://linux-atm.sourceforge.net
3297 F:      drivers/atm/
3298 F:      include/linux/atm*
3299 F:      include/uapi/linux/atm*
3300
3301 ATMEL MACB ETHERNET DRIVER
3302 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3303 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3304 S:      Supported
3305 F:      drivers/net/ethernet/cadence/
3306
3307 ATMEL MAXTOUCH DRIVER
3308 M:      Nick Dyer <nick@shmanahar.org>
3309 S:      Maintained
3310 T:      git git://github.com/ndyer/linux.git
3311 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3312 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3313
3314 ATMEL WIRELESS DRIVER
3315 M:      Simon Kelley <simon@thekelleys.org.uk>
3316 L:      linux-wireless@vger.kernel.org
3317 S:      Maintained
3318 W:      http://www.thekelleys.org.uk/atmel
3319 W:      http://atmelwlandriver.sourceforge.net/
3320 F:      drivers/net/wireless/atmel/atmel*
3321
3322 ATOMIC INFRASTRUCTURE
3323 M:      Will Deacon <will@kernel.org>
3324 M:      Peter Zijlstra <peterz@infradead.org>
3325 R:      Boqun Feng <boqun.feng@gmail.com>
3326 R:      Mark Rutland <mark.rutland@arm.com>
3327 L:      linux-kernel@vger.kernel.org
3328 S:      Maintained
3329 F:      arch/*/include/asm/atomic*.h
3330 F:      include/*/atomic*.h
3331 F:      include/linux/refcount.h
3332 F:      Documentation/atomic_*.txt
3333 F:      scripts/atomic/
3334
3335 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3336 M:      Bradley Grove <linuxdrivers@attotech.com>
3337 L:      linux-scsi@vger.kernel.org
3338 S:      Supported
3339 W:      http://www.attotech.com
3340 F:      drivers/scsi/esas2r
3341
3342 ATUSB IEEE 802.15.4 RADIO DRIVER
3343 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3344 L:      linux-wpan@vger.kernel.org
3345 S:      Maintained
3346 F:      drivers/net/ieee802154/at86rf230.h
3347 F:      drivers/net/ieee802154/atusb.c
3348 F:      drivers/net/ieee802154/atusb.h
3349
3350 AUDIT SUBSYSTEM
3351 M:      Paul Moore <paul@paul-moore.com>
3352 M:      Eric Paris <eparis@redhat.com>
3353 L:      linux-audit@redhat.com (moderated for non-subscribers)
3354 S:      Supported
3355 W:      https://github.com/linux-audit
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3357 F:      include/asm-generic/audit_*.h
3358 F:      include/linux/audit.h
3359 F:      include/linux/audit_arch.h
3360 F:      include/uapi/linux/audit.h
3361 F:      kernel/audit*
3362 F:      lib/*audit.c
3363
3364 AUXILIARY DISPLAY DRIVERS
3365 M:      Miguel Ojeda <ojeda@kernel.org>
3366 S:      Maintained
3367 F:      Documentation/devicetree/bindings/auxdisplay/
3368 F:      drivers/auxdisplay/
3369 F:      include/linux/cfag12864b.h
3370
3371 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3372 M:      Andreas Klinger <ak@it-klinger.de>
3373 L:      linux-iio@vger.kernel.org
3374 S:      Maintained
3375 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3376 F:      drivers/iio/adc/hx711.c
3377
3378 AX.25 NETWORK LAYER
3379 M:      Ralf Baechle <ralf@linux-mips.org>
3380 L:      linux-hams@vger.kernel.org
3381 S:      Maintained
3382 W:      http://www.linux-ax25.org/
3383 F:      include/net/ax25.h
3384 F:      include/uapi/linux/ax25.h
3385 F:      net/ax25/
3386
3387 AXENTIA ARM DEVICES
3388 M:      Peter Rosin <peda@axentia.se>
3389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3390 S:      Maintained
3391 F:      arch/arm/boot/dts/at91-linea.dtsi
3392 F:      arch/arm/boot/dts/at91-natte.dtsi
3393 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3394 F:      arch/arm/boot/dts/at91-tse850-3.dts
3395
3396 AXENTIA ASOC DRIVERS
3397 M:      Peter Rosin <peda@axentia.se>
3398 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3399 S:      Maintained
3400 F:      Documentation/devicetree/bindings/sound/axentia,*
3401 F:      sound/soc/atmel/tse850-pcm5142.c
3402
3403 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3404 M:      Nuno Sá <nuno.sa@analog.com>
3405 L:      linux-hwmon@vger.kernel.org
3406 S:      Supported
3407 W:      https://ez.analog.com/linux-software-drivers
3408 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3409 F:      drivers/hwmon/axi-fan-control.c
3410
3411 AXXIA I2C CONTROLLER
3412 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3413 L:      linux-i2c@vger.kernel.org
3414 S:      Maintained
3415 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3416 F:      drivers/i2c/busses/i2c-axxia.c
3417
3418 AZ6007 DVB DRIVER
3419 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3420 L:      linux-media@vger.kernel.org
3421 S:      Maintained
3422 W:      https://linuxtv.org
3423 T:      git git://linuxtv.org/media_tree.git
3424 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3425
3426 AZTECH FM RADIO RECEIVER DRIVER
3427 M:      Hans Verkuil <hverkuil@xs4all.nl>
3428 L:      linux-media@vger.kernel.org
3429 S:      Maintained
3430 W:      https://linuxtv.org
3431 T:      git git://linuxtv.org/media_tree.git
3432 F:      drivers/media/radio/radio-aztech*
3433
3434 B43 WIRELESS DRIVER
3435 L:      linux-wireless@vger.kernel.org
3436 L:      b43-dev@lists.infradead.org
3437 S:      Odd Fixes
3438 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3439 F:      drivers/net/wireless/broadcom/b43/
3440
3441 B43LEGACY WIRELESS DRIVER
3442 M:      Larry Finger <Larry.Finger@lwfinger.net>
3443 L:      linux-wireless@vger.kernel.org
3444 L:      b43-dev@lists.infradead.org
3445 S:      Maintained
3446 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3447 F:      drivers/net/wireless/broadcom/b43legacy/
3448
3449 BACKLIGHT CLASS/SUBSYSTEM
3450 M:      Lee Jones <lee@kernel.org>
3451 M:      Daniel Thompson <daniel.thompson@linaro.org>
3452 M:      Jingoo Han <jingoohan1@gmail.com>
3453 L:      dri-devel@lists.freedesktop.org
3454 S:      Maintained
3455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3456 F:      Documentation/ABI/stable/sysfs-class-backlight
3457 F:      Documentation/ABI/testing/sysfs-class-backlight
3458 F:      Documentation/devicetree/bindings/leds/backlight
3459 F:      drivers/video/backlight/
3460 F:      include/linux/backlight.h
3461 F:      include/linux/pwm_backlight.h
3462
3463 BARCO P50 GPIO DRIVER
3464 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3465 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3466 S:      Maintained
3467 F:      drivers/platform/x86/barco-p50-gpio.c
3468
3469 BATMAN ADVANCED
3470 M:      Marek Lindner <mareklindner@neomailbox.ch>
3471 M:      Simon Wunderlich <sw@simonwunderlich.de>
3472 M:      Antonio Quartulli <a@unstable.cc>
3473 M:      Sven Eckelmann <sven@narfation.org>
3474 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3475 S:      Maintained
3476 W:      https://www.open-mesh.org/
3477 Q:      https://patchwork.open-mesh.org/project/batman/list/
3478 B:      https://www.open-mesh.org/projects/batman-adv/issues
3479 C:      ircs://irc.hackint.org/batadv
3480 T:      git https://git.open-mesh.org/linux-merge.git
3481 F:      Documentation/networking/batman-adv.rst
3482 F:      include/uapi/linux/batadv_packet.h
3483 F:      include/uapi/linux/batman_adv.h
3484 F:      net/batman-adv/
3485
3486 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3487 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3488 L:      linux-hams@vger.kernel.org
3489 S:      Maintained
3490 W:      http://www.baycom.org/~tom/ham/ham.html
3491 F:      drivers/net/hamradio/baycom*
3492
3493 BCACHE (BLOCK LAYER CACHE)
3494 M:      Coly Li <colyli@suse.de>
3495 M:      Kent Overstreet <kent.overstreet@gmail.com>
3496 L:      linux-bcache@vger.kernel.org
3497 S:      Maintained
3498 W:      http://bcache.evilpiepirate.org
3499 C:      irc://irc.oftc.net/bcache
3500 F:      drivers/md/bcache/
3501
3502 BDISP ST MEDIA DRIVER
3503 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3504 L:      linux-media@vger.kernel.org
3505 S:      Supported
3506 W:      https://linuxtv.org
3507 T:      git git://linuxtv.org/media_tree.git
3508 F:      drivers/media/platform/st/sti/bdisp
3509
3510 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3511 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3512 L:      netdev@vger.kernel.org
3513 S:      Maintained
3514 F:      drivers/net/ethernet/ec_bhf.c
3515
3516 BEFS FILE SYSTEM
3517 M:      Luis de Bethencourt <luisbg@kernel.org>
3518 M:      Salah Triki <salah.triki@gmail.com>
3519 S:      Maintained
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3521 F:      Documentation/filesystems/befs.rst
3522 F:      fs/befs/
3523
3524 BFQ I/O SCHEDULER
3525 M:      Paolo Valente <paolo.valente@linaro.org>
3526 M:      Jens Axboe <axboe@kernel.dk>
3527 L:      linux-block@vger.kernel.org
3528 S:      Maintained
3529 F:      Documentation/block/bfq-iosched.rst
3530 F:      block/bfq-*
3531
3532 BFS FILE SYSTEM
3533 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3534 S:      Maintained
3535 F:      Documentation/filesystems/bfs.rst
3536 F:      fs/bfs/
3537 F:      include/uapi/linux/bfs_fs.h
3538
3539 BITMAP API
3540 M:      Yury Norov <yury.norov@gmail.com>
3541 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3542 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3543 S:      Maintained
3544 F:      include/linux/bitmap.h
3545 F:      include/linux/cpumask.h
3546 F:      include/linux/find.h
3547 F:      include/linux/nodemask.h
3548 F:      lib/bitmap.c
3549 F:      lib/cpumask.c
3550 F:      lib/cpumask_kunit.c
3551 F:      lib/find_bit.c
3552 F:      lib/find_bit_benchmark.c
3553 F:      lib/test_bitmap.c
3554 F:      tools/include/linux/bitmap.h
3555 F:      tools/include/linux/find.h
3556 F:      tools/lib/bitmap.c
3557 F:      tools/lib/find_bit.c
3558
3559 BLINKM RGB LED DRIVER
3560 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3561 S:      Maintained
3562 F:      drivers/leds/leds-blinkm.c
3563
3564 BLOCK LAYER
3565 M:      Jens Axboe <axboe@kernel.dk>
3566 L:      linux-block@vger.kernel.org
3567 S:      Maintained
3568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3569 F:      Documentation/ABI/stable/sysfs-block
3570 F:      Documentation/block/
3571 F:      block/
3572 F:      drivers/block/
3573 F:      include/linux/bio.h
3574 F:      include/linux/blk*
3575 F:      kernel/trace/blktrace.c
3576 F:      lib/sbitmap.c
3577
3578 BLOCK2MTD DRIVER
3579 M:      Joern Engel <joern@lazybastard.org>
3580 L:      linux-mtd@lists.infradead.org
3581 S:      Maintained
3582 F:      drivers/mtd/devices/block2mtd.c
3583
3584 BLUETOOTH DRIVERS
3585 M:      Marcel Holtmann <marcel@holtmann.org>
3586 M:      Johan Hedberg <johan.hedberg@gmail.com>
3587 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3588 L:      linux-bluetooth@vger.kernel.org
3589 S:      Supported
3590 W:      http://www.bluez.org/
3591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3593 F:      drivers/bluetooth/
3594
3595 BLUETOOTH SUBSYSTEM
3596 M:      Marcel Holtmann <marcel@holtmann.org>
3597 M:      Johan Hedberg <johan.hedberg@gmail.com>
3598 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3599 L:      linux-bluetooth@vger.kernel.org
3600 S:      Supported
3601 W:      http://www.bluez.org/
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3604 F:      include/net/bluetooth/
3605 F:      net/bluetooth/
3606
3607 BONDING DRIVER
3608 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3609 M:      Andy Gospodarek <andy@greyhouse.net>
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 W:      http://sourceforge.net/projects/bonding/
3613 F:      Documentation/networking/bonding.rst
3614 F:      drivers/net/bonding/
3615 F:      include/net/bond*
3616 F:      include/uapi/linux/if_bonding.h
3617 F:      tools/testing/selftests/drivers/net/bonding/
3618
3619 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3620 M:      Dan Robertson <dan@dlrobertson.com>
3621 L:      linux-iio@vger.kernel.org
3622 S:      Maintained
3623 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3624 F:      drivers/iio/accel/bma400*
3625
3626 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3627 M:      Alexei Starovoitov <ast@kernel.org>
3628 M:      Daniel Borkmann <daniel@iogearbox.net>
3629 M:      Andrii Nakryiko <andrii@kernel.org>
3630 R:      Martin KaFai Lau <martin.lau@linux.dev>
3631 R:      Song Liu <song@kernel.org>
3632 R:      Yonghong Song <yhs@fb.com>
3633 R:      John Fastabend <john.fastabend@gmail.com>
3634 R:      KP Singh <kpsingh@kernel.org>
3635 R:      Stanislav Fomichev <sdf@google.com>
3636 R:      Hao Luo <haoluo@google.com>
3637 R:      Jiri Olsa <jolsa@kernel.org>
3638 L:      bpf@vger.kernel.org
3639 S:      Supported
3640 W:      https://bpf.io/
3641 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3644 F:      Documentation/bpf/
3645 F:      Documentation/networking/filter.rst
3646 F:      Documentation/userspace-api/ebpf/
3647 F:      arch/*/net/*
3648 F:      include/linux/bpf*
3649 F:      include/linux/btf*
3650 F:      include/linux/filter.h
3651 F:      include/trace/events/xdp.h
3652 F:      include/uapi/linux/bpf*
3653 F:      include/uapi/linux/btf*
3654 F:      include/uapi/linux/filter.h
3655 F:      kernel/bpf/
3656 F:      kernel/trace/bpf_trace.c
3657 F:      lib/test_bpf.c
3658 F:      net/bpf/
3659 F:      net/core/filter.c
3660 F:      net/sched/act_bpf.c
3661 F:      net/sched/cls_bpf.c
3662 F:      samples/bpf/
3663 F:      scripts/bpf_doc.py
3664 F:      scripts/pahole-flags.sh
3665 F:      scripts/pahole-version.sh
3666 F:      tools/bpf/
3667 F:      tools/lib/bpf/
3668 F:      tools/testing/selftests/bpf/
3669
3670 BPF JIT for ARM
3671 M:      Shubham Bansal <illusionist.neo@gmail.com>
3672 L:      bpf@vger.kernel.org
3673 S:      Odd Fixes
3674 F:      arch/arm/net/
3675
3676 BPF JIT for ARM64
3677 M:      Daniel Borkmann <daniel@iogearbox.net>
3678 M:      Alexei Starovoitov <ast@kernel.org>
3679 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3680 L:      bpf@vger.kernel.org
3681 S:      Supported
3682 F:      arch/arm64/net/
3683
3684 BPF JIT for MIPS (32-BIT AND 64-BIT)
3685 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3686 M:      Paul Burton <paulburton@kernel.org>
3687 L:      bpf@vger.kernel.org
3688 S:      Maintained
3689 F:      arch/mips/net/
3690
3691 BPF JIT for NFP NICs
3692 M:      Jakub Kicinski <kuba@kernel.org>
3693 L:      bpf@vger.kernel.org
3694 S:      Odd Fixes
3695 F:      drivers/net/ethernet/netronome/nfp/bpf/
3696
3697 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3698 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3699 M:      Michael Ellerman <mpe@ellerman.id.au>
3700 L:      bpf@vger.kernel.org
3701 S:      Supported
3702 F:      arch/powerpc/net/
3703
3704 BPF JIT for RISC-V (32-bit)
3705 M:      Luke Nelson <luke.r.nels@gmail.com>
3706 M:      Xi Wang <xi.wang@gmail.com>
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/riscv/net/
3710 X:      arch/riscv/net/bpf_jit_comp64.c
3711
3712 BPF JIT for RISC-V (64-bit)
3713 M:      Björn Töpel <bjorn@kernel.org>
3714 L:      bpf@vger.kernel.org
3715 S:      Maintained
3716 F:      arch/riscv/net/
3717 X:      arch/riscv/net/bpf_jit_comp32.c
3718
3719 BPF JIT for S390
3720 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3721 M:      Heiko Carstens <hca@linux.ibm.com>
3722 M:      Vasily Gorbik <gor@linux.ibm.com>
3723 L:      bpf@vger.kernel.org
3724 S:      Supported
3725 F:      arch/s390/net/
3726 X:      arch/s390/net/pnet.c
3727
3728 BPF JIT for SPARC (32-BIT AND 64-BIT)
3729 M:      David S. Miller <davem@davemloft.net>
3730 L:      bpf@vger.kernel.org
3731 S:      Odd Fixes
3732 F:      arch/sparc/net/
3733
3734 BPF JIT for X86 32-BIT
3735 M:      Wang YanQing <udknight@gmail.com>
3736 L:      bpf@vger.kernel.org
3737 S:      Odd Fixes
3738 F:      arch/x86/net/bpf_jit_comp32.c
3739
3740 BPF JIT for X86 64-BIT
3741 M:      Alexei Starovoitov <ast@kernel.org>
3742 M:      Daniel Borkmann <daniel@iogearbox.net>
3743 L:      bpf@vger.kernel.org
3744 S:      Supported
3745 F:      arch/x86/net/
3746 X:      arch/x86/net/bpf_jit_comp32.c
3747
3748 BPF [CORE]
3749 M:      Alexei Starovoitov <ast@kernel.org>
3750 M:      Daniel Borkmann <daniel@iogearbox.net>
3751 R:      John Fastabend <john.fastabend@gmail.com>
3752 L:      bpf@vger.kernel.org
3753 S:      Maintained
3754 F:      kernel/bpf/verifier.c
3755 F:      kernel/bpf/tnum.c
3756 F:      kernel/bpf/core.c
3757 F:      kernel/bpf/syscall.c
3758 F:      kernel/bpf/dispatcher.c
3759 F:      kernel/bpf/trampoline.c
3760 F:      include/linux/bpf*
3761 F:      include/linux/filter.h
3762 F:      include/linux/tnum.h
3763
3764 BPF [BTF]
3765 M:      Martin KaFai Lau <martin.lau@linux.dev>
3766 L:      bpf@vger.kernel.org
3767 S:      Maintained
3768 F:      kernel/bpf/btf.c
3769 F:      include/linux/btf*
3770
3771 BPF [TRACING]
3772 M:      Song Liu <song@kernel.org>
3773 R:      Jiri Olsa <jolsa@kernel.org>
3774 L:      bpf@vger.kernel.org
3775 S:      Maintained
3776 F:      kernel/trace/bpf_trace.c
3777 F:      kernel/bpf/stackmap.c
3778
3779 BPF [NETWORKING] (tc BPF, sock_addr)
3780 M:      Martin KaFai Lau <martin.lau@linux.dev>
3781 M:      Daniel Borkmann <daniel@iogearbox.net>
3782 R:      John Fastabend <john.fastabend@gmail.com>
3783 L:      bpf@vger.kernel.org
3784 L:      netdev@vger.kernel.org
3785 S:      Maintained
3786 F:      net/core/filter.c
3787 F:      net/sched/act_bpf.c
3788 F:      net/sched/cls_bpf.c
3789
3790 BPF [NETWORKING] (struct_ops, reuseport)
3791 M:      Martin KaFai Lau <martin.lau@linux.dev>
3792 L:      bpf@vger.kernel.org
3793 L:      netdev@vger.kernel.org
3794 S:      Maintained
3795 F:      kernel/bpf/bpf_struct*
3796
3797 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3798 M:      KP Singh <kpsingh@kernel.org>
3799 R:      Florent Revest <revest@chromium.org>
3800 R:      Brendan Jackman <jackmanb@chromium.org>
3801 L:      bpf@vger.kernel.org
3802 S:      Maintained
3803 F:      Documentation/bpf/prog_lsm.rst
3804 F:      include/linux/bpf_lsm.h
3805 F:      kernel/bpf/bpf_lsm.c
3806 F:      security/bpf/
3807
3808 BPF [STORAGE & CGROUPS]
3809 M:      Martin KaFai Lau <martin.lau@linux.dev>
3810 L:      bpf@vger.kernel.org
3811 S:      Maintained
3812 F:      kernel/bpf/cgroup.c
3813 F:      kernel/bpf/*storage.c
3814 F:      kernel/bpf/bpf_lru*
3815
3816 BPF [RINGBUF]
3817 M:      Andrii Nakryiko <andrii@kernel.org>
3818 L:      bpf@vger.kernel.org
3819 S:      Maintained
3820 F:      kernel/bpf/ringbuf.c
3821
3822 BPF [ITERATOR]
3823 M:      Yonghong Song <yhs@fb.com>
3824 L:      bpf@vger.kernel.org
3825 S:      Maintained
3826 F:      kernel/bpf/*iter.c
3827
3828 BPF [L7 FRAMEWORK] (sockmap)
3829 M:      John Fastabend <john.fastabend@gmail.com>
3830 M:      Jakub Sitnicki <jakub@cloudflare.com>
3831 L:      netdev@vger.kernel.org
3832 L:      bpf@vger.kernel.org
3833 S:      Maintained
3834 F:      include/linux/skmsg.h
3835 F:      net/core/skmsg.c
3836 F:      net/core/sock_map.c
3837 F:      net/ipv4/tcp_bpf.c
3838 F:      net/ipv4/udp_bpf.c
3839 F:      net/unix/unix_bpf.c
3840
3841 BPF [LIBRARY] (libbpf)
3842 M:      Andrii Nakryiko <andrii@kernel.org>
3843 L:      bpf@vger.kernel.org
3844 S:      Maintained
3845 F:      tools/lib/bpf/
3846
3847 BPF [TOOLING] (bpftool)
3848 M:      Quentin Monnet <quentin@isovalent.com>
3849 L:      bpf@vger.kernel.org
3850 S:      Maintained
3851 F:      kernel/bpf/disasm.*
3852 F:      tools/bpf/bpftool/
3853
3854 BPF [SELFTESTS] (Test Runners & Infrastructure)
3855 M:      Andrii Nakryiko <andrii@kernel.org>
3856 R:      Mykola Lysenko <mykolal@fb.com>
3857 L:      bpf@vger.kernel.org
3858 S:      Maintained
3859 F:      tools/testing/selftests/bpf/
3860
3861 BPF [DOCUMENTATION] (Related to Standardization)
3862 R:      David Vernet <void@manifault.com>
3863 L:      bpf@vger.kernel.org
3864 L:      bpf@ietf.org
3865 S:      Maintained
3866 F:      Documentation/bpf/instruction-set.rst
3867
3868 BPF [MISC]
3869 L:      bpf@vger.kernel.org
3870 S:      Odd Fixes
3871 K:      (?:\b|_)bpf(?:\b|_)
3872
3873 BROADCOM B44 10/100 ETHERNET DRIVER
3874 M:      Michael Chan <michael.chan@broadcom.com>
3875 L:      netdev@vger.kernel.org
3876 S:      Supported
3877 F:      drivers/net/ethernet/broadcom/b44.*
3878
3879 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3880 M:      Florian Fainelli <f.fainelli@gmail.com>
3881 L:      netdev@vger.kernel.org
3882 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3883 S:      Supported
3884 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3885 F:      drivers/net/dsa/b53/*
3886 F:      drivers/net/dsa/bcm_sf2*
3887 F:      include/linux/dsa/brcm.h
3888 F:      include/linux/platform_data/b53.h
3889
3890 BROADCOM BCMBCA ARM ARCHITECTURE
3891 M:      William Zhang <william.zhang@broadcom.com>
3892 M:      Anand Gore <anand.gore@broadcom.com>
3893 M:      Kursad Oney <kursad.oney@broadcom.com>
3894 M:      Florian Fainelli <f.fainelli@gmail.com>
3895 M:      Rafał Miłecki <rafal@milecki.pl>
3896 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3898 S:      Maintained
3899 T:      git https://github.com/broadcom/stblinux.git
3900 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3901 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3902 N:      bcmbca
3903 N:      bcm[9]?47622
3904 N:      bcm[9]?4912
3905 N:      bcm[9]?63138
3906 N:      bcm[9]?63146
3907 N:      bcm[9]?63148
3908 N:      bcm[9]?63158
3909 N:      bcm[9]?63178
3910 N:      bcm[9]?6756
3911 N:      bcm[9]?6813
3912 N:      bcm[9]?6846
3913 N:      bcm[9]?6855
3914 N:      bcm[9]?6856
3915 N:      bcm[9]?6858
3916 N:      bcm[9]?6878
3917
3918 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3919 M:      Florian Fainelli <f.fainelli@gmail.com>
3920 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3921 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3923 S:      Maintained
3924 T:      git https://github.com/broadcom/stblinux.git
3925 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3926 F:      drivers/pci/controller/pcie-brcmstb.c
3927 F:      drivers/staging/vc04_services
3928 N:      bcm2711
3929 N:      bcm283*
3930 N:      raspberrypi
3931
3932 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3933 M:      Florian Fainelli <f.fainelli@gmail.com>
3934 M:      Ray Jui <rjui@broadcom.com>
3935 M:      Scott Branden <sbranden@broadcom.com>
3936 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3937 S:      Maintained
3938 T:      git https://github.com/broadcom/mach-bcm
3939 F:      arch/arm/mach-bcm/
3940 N:      bcm281*
3941 N:      bcm113*
3942 N:      bcm216*
3943 N:      kona
3944
3945 BROADCOM BCM47XX MIPS ARCHITECTURE
3946 M:      Hauke Mehrtens <hauke@hauke-m.de>
3947 M:      Rafał Miłecki <zajec5@gmail.com>
3948 L:      linux-mips@vger.kernel.org
3949 S:      Maintained
3950 F:      Documentation/devicetree/bindings/mips/brcm/
3951 F:      arch/mips/bcm47xx/*
3952 F:      arch/mips/include/asm/mach-bcm47xx/*
3953
3954 BROADCOM BCM4908 ETHERNET DRIVER
3955 M:      Rafał Miłecki <rafal@milecki.pl>
3956 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 L:      netdev@vger.kernel.org
3958 S:      Maintained
3959 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3960 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3961 F:      drivers/net/ethernet/broadcom/unimac.h
3962
3963 BROADCOM BCM4908 PINMUX DRIVER
3964 M:      Rafał Miłecki <rafal@milecki.pl>
3965 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3966 L:      linux-gpio@vger.kernel.org
3967 S:      Maintained
3968 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3969 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3970
3971 BROADCOM BCM5301X ARM ARCHITECTURE
3972 M:      Florian Fainelli <f.fainelli@gmail.com>
3973 M:      Hauke Mehrtens <hauke@hauke-m.de>
3974 M:      Rafał Miłecki <zajec5@gmail.com>
3975 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3977 S:      Maintained
3978 F:      arch/arm/boot/dts/bcm470*
3979 F:      arch/arm/boot/dts/bcm5301*
3980 F:      arch/arm/boot/dts/bcm953012*
3981 F:      arch/arm/mach-bcm/bcm_5301x.c
3982
3983 BROADCOM BCM53573 ARM ARCHITECTURE
3984 M:      Florian Fainelli <f.fainelli@gmail.com>
3985 M:      Rafał Miłecki <rafal@milecki.pl>
3986 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3988 S:      Maintained
3989 F:      arch/arm/boot/dts/bcm47189*
3990 F:      arch/arm/boot/dts/bcm53573*
3991
3992 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3993 M:      Kevin Cernekee <cernekee@gmail.com>
3994 L:      linux-usb@vger.kernel.org
3995 S:      Maintained
3996 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3997
3998 BROADCOM BCM7XXX ARM ARCHITECTURE
3999 M:      Florian Fainelli <f.fainelli@gmail.com>
4000 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4002 S:      Maintained
4003 T:      git https://github.com/broadcom/stblinux.git
4004 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4005 F:      arch/arm/boot/dts/bcm7*.dts*
4006 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4007 F:      arch/arm/mach-bcm/*brcmstb*
4008 F:      arch/arm/mm/cache-b15-rac.c
4009 F:      drivers/bus/brcmstb_gisb.c
4010 F:      drivers/pci/controller/pcie-brcmstb.c
4011 N:      brcmstb
4012 N:      bcm7038
4013 N:      bcm7120
4014
4015 BROADCOM BDC DRIVER
4016 M:      Justin Chen <justinpopo6@gmail.com>
4017 M:      Al Cooper <alcooperx@gmail.com>
4018 L:      linux-usb@vger.kernel.org
4019 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4020 S:      Maintained
4021 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4022 F:      drivers/usb/gadget/udc/bdc/
4023
4024 BROADCOM BMIPS CPUFREQ DRIVER
4025 M:      Markus Mayer <mmayer@broadcom.com>
4026 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4027 L:      linux-pm@vger.kernel.org
4028 S:      Maintained
4029 F:      drivers/cpufreq/bmips-cpufreq.c
4030
4031 BROADCOM BMIPS MIPS ARCHITECTURE
4032 M:      Florian Fainelli <f.fainelli@gmail.com>
4033 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4034 L:      linux-mips@vger.kernel.org
4035 S:      Maintained
4036 T:      git https://github.com/broadcom/stblinux.git
4037 F:      arch/mips/bmips/*
4038 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4039 F:      arch/mips/include/asm/mach-bmips/*
4040 F:      arch/mips/kernel/*bmips*
4041 F:      drivers/soc/bcm/bcm63xx
4042 F:      drivers/irqchip/irq-bcm63*
4043 F:      drivers/irqchip/irq-bcm7*
4044 F:      drivers/irqchip/irq-brcmstb*
4045 F:      include/linux/bcm963xx_nvram.h
4046 F:      include/linux/bcm963xx_tag.h
4047
4048 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4049 M:      Rasesh Mody <rmody@marvell.com>
4050 M:      GR-Linux-NIC-Dev@marvell.com
4051 L:      netdev@vger.kernel.org
4052 S:      Supported
4053 F:      drivers/net/ethernet/broadcom/bnx2.*
4054 F:      drivers/net/ethernet/broadcom/bnx2_*
4055
4056 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4057 M:      Saurav Kashyap <skashyap@marvell.com>
4058 M:      Javed Hasan <jhasan@marvell.com>
4059 M:      GR-QLogic-Storage-Upstream@marvell.com
4060 L:      linux-scsi@vger.kernel.org
4061 S:      Supported
4062 F:      drivers/scsi/bnx2fc/
4063
4064 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4065 M:      Nilesh Javali <njavali@marvell.com>
4066 M:      Manish Rangankar <mrangankar@marvell.com>
4067 M:      GR-QLogic-Storage-Upstream@marvell.com
4068 L:      linux-scsi@vger.kernel.org
4069 S:      Supported
4070 F:      drivers/scsi/bnx2i/
4071
4072 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4073 M:      Ariel Elior <aelior@marvell.com>
4074 M:      Sudarsana Kalluru <skalluru@marvell.com>
4075 M:      Manish Chopra <manishc@marvell.com>
4076 L:      netdev@vger.kernel.org
4077 S:      Supported
4078 F:      drivers/net/ethernet/broadcom/bnx2x/
4079
4080 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4081 M:      Michael Chan <michael.chan@broadcom.com>
4082 L:      netdev@vger.kernel.org
4083 S:      Supported
4084 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4085 F:      drivers/net/ethernet/broadcom/bnxt/
4086 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4087
4088 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4089 M:      Arend van Spriel <aspriel@gmail.com>
4090 M:      Franky Lin <franky.lin@broadcom.com>
4091 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4092 L:      linux-wireless@vger.kernel.org
4093 L:      brcm80211-dev-list.pdl@broadcom.com
4094 L:      SHA-cyfmac-dev-list@infineon.com
4095 S:      Supported
4096 F:      drivers/net/wireless/broadcom/brcm80211/
4097
4098 BROADCOM BRCMSTB GPIO DRIVER
4099 M:      Doug Berger <opendmb@gmail.com>
4100 M:      Florian Fainelli <f.fainelli@gmail.com>
4101 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4102 S:      Supported
4103 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4104 F:      drivers/gpio/gpio-brcmstb.c
4105
4106 BROADCOM BRCMSTB I2C DRIVER
4107 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4108 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4109 L:      linux-i2c@vger.kernel.org
4110 S:      Supported
4111 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4112 F:      drivers/i2c/busses/i2c-brcmstb.c
4113
4114 BROADCOM BRCMSTB UART DRIVER
4115 M:      Al Cooper <alcooperx@gmail.com>
4116 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4117 L:      linux-serial@vger.kernel.org
4118 S:      Maintained
4119 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4120 F:      drivers/tty/serial/8250/8250_bcm7271.c
4121
4122 BROADCOM BRCMSTB USB EHCI DRIVER
4123 M:      Justin Chen <justinpopo6@gmail.com>
4124 M:      Al Cooper <alcooperx@gmail.com>
4125 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4126 L:      linux-usb@vger.kernel.org
4127 S:      Maintained
4128 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4129 F:      drivers/usb/host/ehci-brcm.*
4130
4131 BROADCOM BRCMSTB USB PIN MAP DRIVER
4132 M:      Al Cooper <alcooperx@gmail.com>
4133 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4134 L:      linux-usb@vger.kernel.org
4135 S:      Maintained
4136 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4137 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4138
4139 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4140 M:      Justin Chen <justinpopo6@gmail.com>
4141 M:      Al Cooper <alcooperx@gmail.com>
4142 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4143 L:      linux-kernel@vger.kernel.org
4144 S:      Maintained
4145 F:      drivers/phy/broadcom/phy-brcm-usb*
4146
4147 BROADCOM ETHERNET PHY DRIVERS
4148 M:      Florian Fainelli <f.fainelli@gmail.com>
4149 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4150 L:      netdev@vger.kernel.org
4151 S:      Supported
4152 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4153 F:      drivers/net/phy/bcm*.[ch]
4154 F:      drivers/net/phy/broadcom.c
4155 F:      include/linux/brcmphy.h
4156
4157 BROADCOM GENET ETHERNET DRIVER
4158 M:      Doug Berger <opendmb@gmail.com>
4159 M:      Florian Fainelli <f.fainelli@gmail.com>
4160 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4161 L:      netdev@vger.kernel.org
4162 S:      Supported
4163 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4164 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4165 F:      drivers/net/ethernet/broadcom/genet/
4166 F:      drivers/net/ethernet/broadcom/unimac.h
4167 F:      drivers/net/mdio/mdio-bcm-unimac.c
4168 F:      include/linux/platform_data/bcmgenet.h
4169 F:      include/linux/platform_data/mdio-bcm-unimac.h
4170
4171 BROADCOM IPROC ARM ARCHITECTURE
4172 M:      Ray Jui <rjui@broadcom.com>
4173 M:      Scott Branden <sbranden@broadcom.com>
4174 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4176 S:      Maintained
4177 T:      git https://github.com/broadcom/stblinux.git
4178 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4179 F:      arch/arm64/boot/dts/broadcom/stingray/*
4180 F:      drivers/clk/bcm/clk-ns*
4181 F:      drivers/clk/bcm/clk-sr*
4182 F:      drivers/pinctrl/bcm/pinctrl-ns*
4183 F:      include/dt-bindings/clock/bcm-sr*
4184 N:      iproc
4185 N:      cygnus
4186 N:      bcm[-_]nsp
4187 N:      bcm9113*
4188 N:      bcm9583*
4189 N:      bcm9585*
4190 N:      bcm9586*
4191 N:      bcm988312
4192 N:      bcm113*
4193 N:      bcm583*
4194 N:      bcm585*
4195 N:      bcm586*
4196 N:      bcm88312
4197 N:      hr2
4198 N:      stingray
4199
4200 BROADCOM IPROC GBIT ETHERNET DRIVER
4201 M:      Rafał Miłecki <rafal@milecki.pl>
4202 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4203 L:      netdev@vger.kernel.org
4204 S:      Maintained
4205 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4206 F:      drivers/net/ethernet/broadcom/bgmac*
4207 F:      drivers/net/ethernet/broadcom/unimac.h
4208
4209 BROADCOM KONA GPIO DRIVER
4210 M:      Ray Jui <rjui@broadcom.com>
4211 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4212 S:      Supported
4213 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4214 F:      drivers/gpio/gpio-bcm-kona.c
4215
4216 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4217 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4218 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4219 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4220 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4221 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4222 L:      linux-scsi@vger.kernel.org
4223 S:      Supported
4224 W:      https://www.broadcom.com/support/storage
4225 F:      drivers/scsi/mpi3mr/
4226
4227 BROADCOM NETXTREME-E ROCE DRIVER
4228 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4229 L:      linux-rdma@vger.kernel.org
4230 S:      Supported
4231 W:      http://www.broadcom.com
4232 F:      drivers/infiniband/hw/bnxt_re/
4233 F:      include/uapi/rdma/bnxt_re-abi.h
4234
4235 BROADCOM NVRAM DRIVER
4236 M:      Rafał Miłecki <zajec5@gmail.com>
4237 L:      linux-mips@vger.kernel.org
4238 S:      Maintained
4239 F:      drivers/firmware/broadcom/*
4240
4241 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4242 M:      Rafał Miłecki <rafal@milecki.pl>
4243 M:      Florian Fainelli <f.fainelli@gmail.com>
4244 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4245 L:      linux-pm@vger.kernel.org
4246 S:      Maintained
4247 T:      git https://github.com/broadcom/stblinux.git
4248 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4249 F:      include/dt-bindings/soc/bcm-pmb.h
4250
4251 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4252 M:      Rafał Miłecki <zajec5@gmail.com>
4253 L:      linux-wireless@vger.kernel.org
4254 S:      Maintained
4255 F:      drivers/bcma/
4256 F:      include/linux/bcma/
4257
4258 BROADCOM SPI DRIVER
4259 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4260 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4261 S:      Maintained
4262 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4263 F:      drivers/spi/spi-bcm-qspi.*
4264 F:      drivers/spi/spi-brcmstb-qspi.c
4265 F:      drivers/spi/spi-iproc-qspi.c
4266
4267 BROADCOM STB AVS CPUFREQ DRIVER
4268 M:      Markus Mayer <mmayer@broadcom.com>
4269 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4270 L:      linux-pm@vger.kernel.org
4271 S:      Maintained
4272 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4273 F:      drivers/cpufreq/brcmstb*
4274
4275 BROADCOM STB AVS TMON DRIVER
4276 M:      Markus Mayer <mmayer@broadcom.com>
4277 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4278 L:      linux-pm@vger.kernel.org
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4281 F:      drivers/thermal/broadcom/brcmstb*
4282
4283 BROADCOM STB DPFE DRIVER
4284 M:      Markus Mayer <mmayer@broadcom.com>
4285 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4287 S:      Maintained
4288 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4289 F:      drivers/memory/brcmstb_dpfe.c
4290
4291 BROADCOM STB NAND FLASH DRIVER
4292 M:      Brian Norris <computersforpeace@gmail.com>
4293 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4294 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4295 L:      linux-mtd@lists.infradead.org
4296 S:      Maintained
4297 F:      drivers/mtd/nand/raw/brcmnand/
4298 F:      include/linux/platform_data/brcmnand.h
4299
4300 BROADCOM STB PCIE DRIVER
4301 M:      Jim Quinlan <jim2101024@gmail.com>
4302 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4303 M:      Florian Fainelli <f.fainelli@gmail.com>
4304 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4305 L:      linux-pci@vger.kernel.org
4306 S:      Maintained
4307 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4308 F:      drivers/pci/controller/pcie-brcmstb.c
4309
4310 BROADCOM SYSTEMPORT ETHERNET DRIVER
4311 M:      Florian Fainelli <f.fainelli@gmail.com>
4312 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4313 L:      netdev@vger.kernel.org
4314 S:      Supported
4315 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4316 F:      drivers/net/ethernet/broadcom/unimac.h
4317 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4318
4319 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4320 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4321 M:      Prashant Sreedharan <prashant@broadcom.com>
4322 M:      Michael Chan <mchan@broadcom.com>
4323 L:      netdev@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/net/ethernet/broadcom/tg3.*
4326
4327 BROADCOM VK DRIVER
4328 M:      Scott Branden <scott.branden@broadcom.com>
4329 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4330 S:      Supported
4331 F:      drivers/misc/bcm-vk/
4332 F:      include/uapi/linux/misc/bcm_vk.h
4333
4334 BROCADE BFA FC SCSI DRIVER
4335 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4336 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4337 L:      linux-scsi@vger.kernel.org
4338 S:      Supported
4339 F:      drivers/scsi/bfa/
4340
4341 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4342 M:      Rasesh Mody <rmody@marvell.com>
4343 M:      Sudarsana Kalluru <skalluru@marvell.com>
4344 M:      GR-Linux-NIC-Dev@marvell.com
4345 L:      netdev@vger.kernel.org
4346 S:      Supported
4347 F:      drivers/net/ethernet/brocade/bna/
4348
4349 BSG (block layer generic sg v4 driver)
4350 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4351 L:      linux-scsi@vger.kernel.org
4352 S:      Supported
4353 F:      block/bsg.c
4354 F:      include/linux/bsg.h
4355 F:      include/uapi/linux/bsg.h
4356
4357 BT87X AUDIO DRIVER
4358 M:      Clemens Ladisch <clemens@ladisch.de>
4359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4360 S:      Maintained
4361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4362 F:      Documentation/sound/cards/bt87x.rst
4363 F:      sound/pci/bt87x.c
4364
4365 BT8XXGPIO DRIVER
4366 M:      Michael Buesch <m@bues.ch>
4367 S:      Maintained
4368 W:      http://bu3sch.de/btgpio.php
4369 F:      drivers/gpio/gpio-bt8xx.c
4370
4371 BTRFS FILE SYSTEM
4372 M:      Chris Mason <clm@fb.com>
4373 M:      Josef Bacik <josef@toxicpanda.com>
4374 M:      David Sterba <dsterba@suse.com>
4375 L:      linux-btrfs@vger.kernel.org
4376 S:      Maintained
4377 W:      https://btrfs.readthedocs.io
4378 W:      https://btrfs.wiki.kernel.org/
4379 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4380 C:      irc://irc.libera.chat/btrfs
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4382 F:      Documentation/filesystems/btrfs.rst
4383 F:      fs/btrfs/
4384 F:      include/linux/btrfs*
4385 F:      include/trace/events/btrfs.h
4386 F:      include/uapi/linux/btrfs*
4387
4388 BTTV VIDEO4LINUX DRIVER
4389 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4390 L:      linux-media@vger.kernel.org
4391 S:      Odd fixes
4392 W:      https://linuxtv.org
4393 T:      git git://linuxtv.org/media_tree.git
4394 F:      Documentation/driver-api/media/drivers/bttv*
4395 F:      drivers/media/pci/bt8xx/bttv*
4396
4397 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4398 M:      Chanwoo Choi <cw00.choi@samsung.com>
4399 L:      linux-pm@vger.kernel.org
4400 L:      linux-samsung-soc@vger.kernel.org
4401 S:      Maintained
4402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4403 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4404 F:      drivers/devfreq/exynos-bus.c
4405
4406 BUSLOGIC SCSI DRIVER
4407 M:      Khalid Aziz <khalid@gonehiking.org>
4408 L:      linux-scsi@vger.kernel.org
4409 S:      Maintained
4410 F:      drivers/scsi/BusLogic.*
4411 F:      drivers/scsi/FlashPoint.*
4412
4413 C-MEDIA CMI8788 DRIVER
4414 M:      Clemens Ladisch <clemens@ladisch.de>
4415 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4416 S:      Maintained
4417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4418 F:      sound/pci/oxygen/
4419
4420 C-SKY ARCHITECTURE
4421 M:      Guo Ren <guoren@kernel.org>
4422 L:      linux-csky@vger.kernel.org
4423 S:      Supported
4424 T:      git https://github.com/c-sky/csky-linux.git
4425 F:      Documentation/devicetree/bindings/csky/
4426 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4427 F:      Documentation/devicetree/bindings/timer/csky,*
4428 F:      arch/csky/
4429 F:      drivers/clocksource/timer-gx6605s.c
4430 F:      drivers/clocksource/timer-mp-csky.c
4431 F:      drivers/irqchip/irq-csky-*
4432 N:      csky
4433 K:      csky
4434
4435 CA8210 IEEE-802.15.4 RADIO DRIVER
4436 L:      linux-wpan@vger.kernel.org
4437 S:      Orphan
4438 W:      https://github.com/Cascoda/ca8210-linux.git
4439 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4440 F:      drivers/net/ieee802154/ca8210.c
4441
4442 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4443 M:      Damien Le Moal <damien.lemoal@wdc.com>
4444 L:      linux-riscv@lists.infradead.org
4445 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4446 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4447 F:      drivers/pinctrl/pinctrl-k210.c
4448
4449 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4450 M:      Damien Le Moal <damien.lemoal@wdc.com>
4451 L:      linux-kernel@vger.kernel.org
4452 L:      linux-riscv@lists.infradead.org
4453 S:      Maintained
4454 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4455 F:      drivers/reset/reset-k210.c
4456
4457 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4458 M:      Damien Le Moal <damien.lemoal@wdc.com>
4459 L:      linux-riscv@lists.infradead.org
4460 S:      Maintained
4461 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4462 F:      drivers/soc/canaan/
4463 F:      include/soc/canaan/
4464
4465 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4466 M:      David Howells <dhowells@redhat.com>
4467 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4468 S:      Supported
4469 F:      Documentation/filesystems/caching/cachefiles.rst
4470 F:      fs/cachefiles/
4471
4472 CADENCE MIPI-CSI2 BRIDGES
4473 M:      Maxime Ripard <mripard@kernel.org>
4474 L:      linux-media@vger.kernel.org
4475 S:      Maintained
4476 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4477 F:      drivers/media/platform/cadence/cdns-csi2*
4478
4479 CADENCE NAND DRIVER
4480 L:      linux-mtd@lists.infradead.org
4481 S:      Orphan
4482 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4483 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4484
4485 CADENCE USB3 DRD IP DRIVER
4486 M:      Peter Chen <peter.chen@kernel.org>
4487 M:      Pawel Laszczak <pawell@cadence.com>
4488 R:      Roger Quadros <rogerq@kernel.org>
4489 R:      Aswath Govindraju <a-govindraju@ti.com>
4490 L:      linux-usb@vger.kernel.org
4491 S:      Maintained
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4493 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4494 F:      drivers/usb/cdns3/
4495 X:      drivers/usb/cdns3/cdnsp*
4496
4497 CADENCE USBSSP DRD IP DRIVER
4498 M:      Pawel Laszczak <pawell@cadence.com>
4499 L:      linux-usb@vger.kernel.org
4500 S:      Maintained
4501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4502 F:      drivers/usb/cdns3/
4503 X:      drivers/usb/cdns3/cdns3*
4504
4505 CADET FM/AM RADIO RECEIVER DRIVER
4506 M:      Hans Verkuil <hverkuil@xs4all.nl>
4507 L:      linux-media@vger.kernel.org
4508 S:      Maintained
4509 W:      https://linuxtv.org
4510 T:      git git://linuxtv.org/media_tree.git
4511 F:      drivers/media/radio/radio-cadet*
4512
4513 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4514 L:      linux-media@vger.kernel.org
4515 S:      Orphan
4516 T:      git git://linuxtv.org/media_tree.git
4517 F:      Documentation/admin-guide/media/cafe_ccic*
4518 F:      drivers/media/platform/marvell/
4519
4520 CAIF NETWORK LAYER
4521 L:      netdev@vger.kernel.org
4522 S:      Orphan
4523 F:      Documentation/networking/caif/
4524 F:      drivers/net/caif/
4525 F:      include/net/caif/
4526 F:      include/uapi/linux/caif/
4527 F:      net/caif/
4528
4529 CAKE QDISC
4530 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4531 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4532 S:      Maintained
4533 F:      net/sched/sch_cake.c
4534
4535 CAN NETWORK DRIVERS
4536 M:      Wolfgang Grandegger <wg@grandegger.com>
4537 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4538 L:      linux-can@vger.kernel.org
4539 S:      Maintained
4540 W:      https://github.com/linux-can
4541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4543 F:      Documentation/devicetree/bindings/net/can/
4544 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4545 F:      drivers/net/can/
4546 F:      drivers/phy/phy-can-transceiver.c
4547 F:      include/linux/can/bittiming.h
4548 F:      include/linux/can/dev.h
4549 F:      include/linux/can/length.h
4550 F:      include/linux/can/platform/
4551 F:      include/linux/can/rx-offload.h
4552 F:      include/uapi/linux/can/error.h
4553 F:      include/uapi/linux/can/netlink.h
4554 F:      include/uapi/linux/can/vxcan.h
4555
4556 CAN NETWORK LAYER
4557 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4558 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4559 L:      linux-can@vger.kernel.org
4560 S:      Maintained
4561 W:      https://github.com/linux-can
4562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4564 F:      Documentation/networking/can.rst
4565 F:      include/linux/can/can-ml.h
4566 F:      include/linux/can/core.h
4567 F:      include/linux/can/skb.h
4568 F:      include/net/netns/can.h
4569 F:      include/uapi/linux/can.h
4570 F:      include/uapi/linux/can/bcm.h
4571 F:      include/uapi/linux/can/gw.h
4572 F:      include/uapi/linux/can/isotp.h
4573 F:      include/uapi/linux/can/raw.h
4574 F:      net/can/
4575
4576 CAN-J1939 NETWORK LAYER
4577 M:      Robin van der Gracht <robin@protonic.nl>
4578 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4579 R:      kernel@pengutronix.de
4580 L:      linux-can@vger.kernel.org
4581 S:      Maintained
4582 F:      Documentation/networking/j1939.rst
4583 F:      include/uapi/linux/can/j1939.h
4584 F:      net/can/j1939/
4585
4586 CAPABILITIES
4587 M:      Serge Hallyn <serge@hallyn.com>
4588 L:      linux-security-module@vger.kernel.org
4589 S:      Supported
4590 F:      include/linux/capability.h
4591 F:      include/uapi/linux/capability.h
4592 F:      kernel/capability.c
4593 F:      security/commoncap.c
4594
4595 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4596 M:      Kevin Tsai <ktsai@capellamicro.com>
4597 S:      Maintained
4598 F:      drivers/iio/light/cm*
4599
4600 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4601 M:      Christian Lamparter <chunkeey@googlemail.com>
4602 L:      linux-wireless@vger.kernel.org
4603 S:      Maintained
4604 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4605 F:      drivers/net/wireless/ath/carl9170/
4606
4607 CAVIUM I2C DRIVER
4608 M:      Robert Richter <rric@kernel.org>
4609 S:      Odd Fixes
4610 W:      http://www.marvell.com
4611 F:      drivers/i2c/busses/i2c-octeon*
4612 F:      drivers/i2c/busses/i2c-thunderx*
4613
4614 CAVIUM LIQUIDIO NETWORK DRIVER
4615 M:      Derek Chickles <dchickles@marvell.com>
4616 M:      Satanand Burla <sburla@marvell.com>
4617 M:      Felix Manlunas <fmanlunas@marvell.com>
4618 L:      netdev@vger.kernel.org
4619 S:      Supported
4620 W:      http://www.marvell.com
4621 F:      drivers/net/ethernet/cavium/liquidio/
4622
4623 CAVIUM MMC DRIVER
4624 M:      Robert Richter <rric@kernel.org>
4625 S:      Odd Fixes
4626 W:      http://www.marvell.com
4627 F:      drivers/mmc/host/cavium*
4628
4629 CAVIUM OCTEON-TX CRYPTO DRIVER
4630 M:      George Cherian <gcherian@marvell.com>
4631 L:      linux-crypto@vger.kernel.org
4632 S:      Supported
4633 W:      http://www.marvell.com
4634 F:      drivers/crypto/cavium/cpt/
4635
4636 CAVIUM THUNDERX2 ARM64 SOC
4637 M:      Robert Richter <rric@kernel.org>
4638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4639 S:      Odd Fixes
4640 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4641 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4642
4643 CBS/ETF/TAPRIO QDISCS
4644 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4645 S:      Maintained
4646 L:      netdev@vger.kernel.org
4647 F:      net/sched/sch_cbs.c
4648 F:      net/sched/sch_etf.c
4649 F:      net/sched/sch_taprio.c
4650
4651 CC2520 IEEE-802.15.4 RADIO DRIVER
4652 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4653 L:      linux-wpan@vger.kernel.org
4654 S:      Odd Fixes
4655 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4656 F:      drivers/net/ieee802154/cc2520.c
4657
4658 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4659 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4660 L:      linux-crypto@vger.kernel.org
4661 S:      Supported
4662 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4663 F:      drivers/crypto/ccree/
4664
4665 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4666 M:      Hadar Gat <hadar.gat@arm.com>
4667 L:      linux-crypto@vger.kernel.org
4668 S:      Supported
4669 F:      drivers/char/hw_random/cctrng.c
4670 F:      drivers/char/hw_random/cctrng.h
4671 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4672 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4673
4674 CEC FRAMEWORK
4675 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4676 L:      linux-media@vger.kernel.org
4677 S:      Supported
4678 W:      http://linuxtv.org
4679 T:      git git://linuxtv.org/media_tree.git
4680 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4681 F:      Documentation/devicetree/bindings/media/cec.txt
4682 F:      Documentation/driver-api/media/cec-core.rst
4683 F:      Documentation/userspace-api/media/cec
4684 F:      drivers/media/cec/
4685 F:      drivers/media/rc/keymaps/rc-cec.c
4686 F:      include/media/cec-notifier.h
4687 F:      include/media/cec.h
4688 F:      include/uapi/linux/cec-funcs.h
4689 F:      include/uapi/linux/cec.h
4690
4691 CEC GPIO DRIVER
4692 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4693 L:      linux-media@vger.kernel.org
4694 S:      Supported
4695 W:      http://linuxtv.org
4696 T:      git git://linuxtv.org/media_tree.git
4697 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4698 F:      drivers/media/cec/platform/cec-gpio/
4699
4700 CELL BROADBAND ENGINE ARCHITECTURE
4701 M:      Arnd Bergmann <arnd@arndb.de>
4702 L:      linuxppc-dev@lists.ozlabs.org
4703 S:      Supported
4704 W:      http://www.ibm.com/developerworks/power/cell/
4705 F:      arch/powerpc/include/asm/cell*.h
4706 F:      arch/powerpc/include/asm/spu*.h
4707 F:      arch/powerpc/include/uapi/asm/spu*.h
4708 F:      arch/powerpc/platforms/cell/
4709
4710 CELLWISE CW2015 BATTERY DRIVER
4711 M:      Tobias Schrammm <t.schramm@manjaro.org>
4712 S:      Maintained
4713 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4714 F:      drivers/power/supply/cw2015_battery.c
4715
4716 CEPH COMMON CODE (LIBCEPH)
4717 M:      Ilya Dryomov <idryomov@gmail.com>
4718 M:      Xiubo Li <xiubli@redhat.com>
4719 R:      Jeff Layton <jlayton@kernel.org>
4720 L:      ceph-devel@vger.kernel.org
4721 S:      Supported
4722 W:      http://ceph.com/
4723 T:      git https://github.com/ceph/ceph-client.git
4724 F:      include/linux/ceph/
4725 F:      include/linux/crush/
4726 F:      net/ceph/
4727
4728 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4729 M:      Xiubo Li <xiubli@redhat.com>
4730 M:      Ilya Dryomov <idryomov@gmail.com>
4731 R:      Jeff Layton <jlayton@kernel.org>
4732 L:      ceph-devel@vger.kernel.org
4733 S:      Supported
4734 W:      http://ceph.com/
4735 T:      git https://github.com/ceph/ceph-client.git
4736 F:      Documentation/filesystems/ceph.rst
4737 F:      fs/ceph/
4738
4739 CERTIFICATE HANDLING
4740 M:      David Howells <dhowells@redhat.com>
4741 M:      David Woodhouse <dwmw2@infradead.org>
4742 L:      keyrings@vger.kernel.org
4743 S:      Maintained
4744 F:      Documentation/admin-guide/module-signing.rst
4745 F:      certs/
4746 F:      scripts/sign-file.c
4747 F:      tools/certs/
4748
4749 CFAG12864B LCD DRIVER
4750 M:      Miguel Ojeda <ojeda@kernel.org>
4751 S:      Maintained
4752 F:      drivers/auxdisplay/cfag12864b.c
4753 F:      include/linux/cfag12864b.h
4754
4755 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4756 M:      Miguel Ojeda <ojeda@kernel.org>
4757 S:      Maintained
4758 F:      drivers/auxdisplay/cfag12864bfb.c
4759 F:      include/linux/cfag12864b.h
4760
4761 CHAR and MISC DRIVERS
4762 M:      Arnd Bergmann <arnd@arndb.de>
4763 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4764 S:      Supported
4765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4766 F:      drivers/char/
4767 F:      drivers/misc/
4768 F:      include/linux/miscdevice.h
4769 X:      drivers/char/agp/
4770 X:      drivers/char/hw_random/
4771 X:      drivers/char/ipmi/
4772 X:      drivers/char/random.c
4773 X:      drivers/char/tpm/
4774
4775 CHECKPATCH
4776 M:      Andy Whitcroft <apw@canonical.com>
4777 M:      Joe Perches <joe@perches.com>
4778 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4779 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4780 S:      Maintained
4781 F:      scripts/checkpatch.pl
4782
4783 CHECKPATCH DOCUMENTATION
4784 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4785 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4786 R:      Joe Perches <joe@perches.com>
4787 S:      Maintained
4788 F:      Documentation/dev-tools/checkpatch.rst
4789
4790 CHINESE DOCUMENTATION
4791 M:      Alex Shi <alexs@kernel.org>
4792 M:      Yanteng Si <siyanteng@loongson.cn>
4793 S:      Maintained
4794 F:      Documentation/translations/zh_CN/
4795
4796 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4797 M:      Peter Chen <peter.chen@kernel.org>
4798 L:      linux-usb@vger.kernel.org
4799 S:      Maintained
4800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4801 F:      drivers/usb/chipidea/
4802
4803 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4804 M:      Hans de Goede <hdegoede@redhat.com>
4805 L:      linux-input@vger.kernel.org
4806 S:      Maintained
4807 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4808 F:      drivers/input/touchscreen/chipone_icn8318.c
4809
4810 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4811 M:      Hans de Goede <hdegoede@redhat.com>
4812 L:      linux-input@vger.kernel.org
4813 S:      Maintained
4814 F:      drivers/input/touchscreen/chipone_icn8505.c
4815
4816 CHROME HARDWARE PLATFORM SUPPORT
4817 M:      Benson Leung <bleung@chromium.org>
4818 L:      chrome-platform@lists.linux.dev
4819 S:      Maintained
4820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4821 F:      drivers/platform/chrome/
4822
4823 CHROMEOS EC CODEC DRIVER
4824 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4825 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4826 R:      Guenter Roeck <groeck@chromium.org>
4827 L:      chrome-platform@lists.linux.dev
4828 S:      Maintained
4829 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4830 F:      sound/soc/codecs/cros_ec_codec.*
4831
4832 CHROMEOS EC UART DRIVER
4833 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4834 R:      Benson Leung <bleung@chromium.org>
4835 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4836 S:      Maintained
4837 F:      drivers/platform/chrome/cros_ec_uart.c
4838
4839 CHROMEOS EC SUBDRIVERS
4840 M:      Benson Leung <bleung@chromium.org>
4841 R:      Guenter Roeck <groeck@chromium.org>
4842 L:      chrome-platform@lists.linux.dev
4843 S:      Maintained
4844 F:      drivers/power/supply/cros_usbpd-charger.c
4845 N:      cros_ec
4846 N:      cros-ec
4847
4848 CHROMEOS EC USB TYPE-C DRIVER
4849 M:      Prashant Malani <pmalani@chromium.org>
4850 L:      chrome-platform@lists.linux.dev
4851 S:      Maintained
4852 F:      drivers/platform/chrome/cros_ec_typec.*
4853 F:      drivers/platform/chrome/cros_typec_switch.c
4854 F:      drivers/platform/chrome/cros_typec_vdm.*
4855
4856 CHROMEOS EC USB PD NOTIFY DRIVER
4857 M:      Prashant Malani <pmalani@chromium.org>
4858 L:      chrome-platform@lists.linux.dev
4859 S:      Maintained
4860 F:      drivers/platform/chrome/cros_usbpd_notify.c
4861 F:      include/linux/platform_data/cros_usbpd_notify.h
4862
4863 CHROMEOS HPS DRIVER
4864 M:      Dan Callaghan <dcallagh@chromium.org>
4865 R:      Sami Kyöstilä <skyostil@chromium.org>
4866 S:      Maintained
4867 F:      drivers/platform/chrome/cros_hps_i2c.c
4868
4869 CHRONTEL CH7322 CEC DRIVER
4870 M:      Joe Tessler <jrt@google.com>
4871 L:      linux-media@vger.kernel.org
4872 S:      Maintained
4873 T:      git git://linuxtv.org/media_tree.git
4874 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4875 F:      drivers/media/cec/i2c/ch7322.c
4876
4877 CIRRUS LOGIC AUDIO CODEC DRIVERS
4878 M:      James Schulman <james.schulman@cirrus.com>
4879 M:      David Rhodes <david.rhodes@cirrus.com>
4880 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4881 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4882 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4883 L:      patches@opensource.cirrus.com
4884 S:      Maintained
4885 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4886 F:      include/dt-bindings/sound/cs*
4887 F:      sound/pci/hda/cs*
4888 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4889 F:      sound/soc/codecs/cs*
4890
4891 CIRRUS LOGIC DSP FIRMWARE DRIVER
4892 M:      Simon Trimmer <simont@opensource.cirrus.com>
4893 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4894 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4895 L:      patches@opensource.cirrus.com
4896 S:      Supported
4897 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4898 T:      git https://github.com/CirrusLogic/linux-drivers.git
4899 F:      drivers/firmware/cirrus/*
4900 F:      include/linux/firmware/cirrus/*
4901
4902 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4903 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4904 L:      netdev@vger.kernel.org
4905 S:      Maintained
4906 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4907
4908 CIRRUS LOGIC LOCHNAGAR DRIVER
4909 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4910 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4911 L:      patches@opensource.cirrus.com
4912 S:      Supported
4913 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4914 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4915 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4916 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4917 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4918 F:      Documentation/hwmon/lochnagar.rst
4919 F:      drivers/clk/clk-lochnagar.c
4920 F:      drivers/hwmon/lochnagar-hwmon.c
4921 F:      drivers/mfd/lochnagar-i2c.c
4922 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4923 F:      drivers/regulator/lochnagar-regulator.c
4924 F:      include/dt-bindings/clock/lochnagar.h
4925 F:      include/dt-bindings/pinctrl/lochnagar.h
4926 F:      include/linux/mfd/lochnagar*
4927 F:      sound/soc/codecs/lochnagar-sc.c
4928
4929 CIRRUS LOGIC MADERA CODEC DRIVERS
4930 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4931 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4933 L:      patches@opensource.cirrus.com
4934 S:      Supported
4935 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4936 T:      git https://github.com/CirrusLogic/linux-drivers.git
4937 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4938 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4939 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4940 F:      drivers/gpio/gpio-madera*
4941 F:      drivers/irqchip/irq-madera*
4942 F:      drivers/mfd/cs47l*
4943 F:      drivers/mfd/madera*
4944 F:      drivers/pinctrl/cirrus/*
4945 F:      include/dt-bindings/sound/madera*
4946 F:      include/linux/irqchip/irq-madera*
4947 F:      include/linux/mfd/madera/*
4948 F:      include/sound/madera*
4949 F:      sound/soc/codecs/cs47l*
4950 F:      sound/soc/codecs/madera*
4951
4952 CISCO FCOE HBA DRIVER
4953 M:      Satish Kharat <satishkh@cisco.com>
4954 M:      Sesidhar Baddela <sebaddel@cisco.com>
4955 M:      Karan Tilak Kumar <kartilak@cisco.com>
4956 L:      linux-scsi@vger.kernel.org
4957 S:      Supported
4958 F:      drivers/scsi/fnic/
4959
4960 CISCO SCSI HBA DRIVER
4961 M:      Karan Tilak Kumar <kartilak@cisco.com>
4962 M:      Sesidhar Baddela <sebaddel@cisco.com>
4963 L:      linux-scsi@vger.kernel.org
4964 S:      Supported
4965 F:      drivers/scsi/snic/
4966
4967 CISCO VIC ETHERNET NIC DRIVER
4968 M:      Christian Benvenuti <benve@cisco.com>
4969 M:      Satish Kharat <satishkh@cisco.com>
4970 S:      Supported
4971 F:      drivers/net/ethernet/cisco/enic/
4972
4973 CISCO VIC LOW LATENCY NIC DRIVER
4974 M:      Christian Benvenuti <benve@cisco.com>
4975 M:      Nelson Escobar <neescoba@cisco.com>
4976 S:      Supported
4977 F:      drivers/infiniband/hw/usnic/
4978
4979 CLANG-FORMAT FILE
4980 M:      Miguel Ojeda <ojeda@kernel.org>
4981 S:      Maintained
4982 F:      .clang-format
4983
4984 CLANG/LLVM BUILD SUPPORT
4985 M:      Nathan Chancellor <nathan@kernel.org>
4986 M:      Nick Desaulniers <ndesaulniers@google.com>
4987 R:      Tom Rix <trix@redhat.com>
4988 L:      llvm@lists.linux.dev
4989 S:      Supported
4990 W:      https://clangbuiltlinux.github.io/
4991 B:      https://github.com/ClangBuiltLinux/linux/issues
4992 C:      irc://irc.libera.chat/clangbuiltlinux
4993 F:      Documentation/kbuild/llvm.rst
4994 F:      include/linux/compiler-clang.h
4995 F:      scripts/Makefile.clang
4996 F:      scripts/clang-tools/
4997 K:      \b(?i:clang|llvm)\b
4998
4999 CLANG CONTROL FLOW INTEGRITY SUPPORT
5000 M:      Sami Tolvanen <samitolvanen@google.com>
5001 M:      Kees Cook <keescook@chromium.org>
5002 R:      Nathan Chancellor <nathan@kernel.org>
5003 R:      Nick Desaulniers <ndesaulniers@google.com>
5004 L:      llvm@lists.linux.dev
5005 S:      Supported
5006 B:      https://github.com/ClangBuiltLinux/linux/issues
5007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5008 F:      include/linux/cfi.h
5009 F:      kernel/cfi.c
5010
5011 CLK API
5012 M:      Russell King <linux@armlinux.org.uk>
5013 L:      linux-clk@vger.kernel.org
5014 S:      Maintained
5015 F:      include/linux/clk.h
5016
5017 CLOCKSOURCE, CLOCKEVENT DRIVERS
5018 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5019 M:      Thomas Gleixner <tglx@linutronix.de>
5020 L:      linux-kernel@vger.kernel.org
5021 S:      Supported
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5023 F:      Documentation/devicetree/bindings/timer/
5024 F:      drivers/clocksource/
5025
5026 CMPC ACPI DRIVER
5027 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5028 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5029 L:      platform-driver-x86@vger.kernel.org
5030 S:      Supported
5031 F:      drivers/platform/x86/classmate-laptop.c
5032
5033 COBALT MEDIA DRIVER
5034 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5035 L:      linux-media@vger.kernel.org
5036 S:      Supported
5037 W:      https://linuxtv.org
5038 T:      git git://linuxtv.org/media_tree.git
5039 F:      drivers/media/pci/cobalt/
5040
5041 COCCINELLE/Semantic Patches (SmPL)
5042 M:      Julia Lawall <Julia.Lawall@inria.fr>
5043 M:      Nicolas Palix <nicolas.palix@imag.fr>
5044 L:      cocci@inria.fr (moderated for non-subscribers)
5045 S:      Supported
5046 W:      https://coccinelle.gitlabpages.inria.fr/website/
5047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5048 F:      Documentation/dev-tools/coccinelle.rst
5049 F:      scripts/coccicheck
5050 F:      scripts/coccinelle/
5051
5052 CODA FILE SYSTEM
5053 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5054 M:      coda@cs.cmu.edu
5055 L:      codalist@coda.cs.cmu.edu
5056 S:      Maintained
5057 W:      http://www.coda.cs.cmu.edu/
5058 F:      Documentation/filesystems/coda.rst
5059 F:      fs/coda/
5060 F:      include/linux/coda*.h
5061 F:      include/uapi/linux/coda*.h
5062
5063 CODA V4L2 MEM2MEM DRIVER
5064 M:      Philipp Zabel <p.zabel@pengutronix.de>
5065 L:      linux-media@vger.kernel.org
5066 S:      Maintained
5067 F:      Documentation/devicetree/bindings/media/coda.yaml
5068 F:      drivers/media/platform/chips-media/
5069
5070 CODE OF CONDUCT
5071 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5072 S:      Supported
5073 F:      Documentation/process/code-of-conduct-interpretation.rst
5074 F:      Documentation/process/code-of-conduct.rst
5075
5076 COMEDI DRIVERS
5077 M:      Ian Abbott <abbotti@mev.co.uk>
5078 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5079 S:      Odd Fixes
5080 F:      drivers/comedi/
5081 F:      include/linux/comedi/
5082 F:      include/uapi/linux/comedi.h
5083
5084 COMMON CLK FRAMEWORK
5085 M:      Michael Turquette <mturquette@baylibre.com>
5086 M:      Stephen Boyd <sboyd@kernel.org>
5087 L:      linux-clk@vger.kernel.org
5088 S:      Maintained
5089 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5091 F:      Documentation/devicetree/bindings/clock/
5092 F:      drivers/clk/
5093 F:      include/dt-bindings/clock/
5094 F:      include/linux/clk-pr*
5095 F:      include/linux/clk/
5096 F:      include/linux/of_clk.h
5097 X:      drivers/clk/clkdev.c
5098
5099 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5100 M:      Steve French <sfrench@samba.org>
5101 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5102 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5103 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5104 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5105 L:      linux-cifs@vger.kernel.org
5106 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5107 S:      Supported
5108 W:      https://wiki.samba.org/index.php/LinuxCIFS
5109 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5110 F:      Documentation/admin-guide/cifs/
5111 F:      fs/cifs/
5112 F:      fs/smbfs_common/
5113 F:      include/uapi/linux/cifs
5114
5115 COMPACTPCI HOTPLUG CORE
5116 M:      Scott Murray <scott@spiteful.org>
5117 L:      linux-pci@vger.kernel.org
5118 S:      Maintained
5119 F:      drivers/pci/hotplug/cpci_hotplug*
5120
5121 COMPACTPCI HOTPLUG GENERIC DRIVER
5122 M:      Scott Murray <scott@spiteful.org>
5123 L:      linux-pci@vger.kernel.org
5124 S:      Maintained
5125 F:      drivers/pci/hotplug/cpcihp_generic.c
5126
5127 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5128 M:      Scott Murray <scott@spiteful.org>
5129 L:      linux-pci@vger.kernel.org
5130 S:      Maintained
5131 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5132
5133 COMPAL LAPTOP SUPPORT
5134 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5135 L:      platform-driver-x86@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/platform/x86/compal-laptop.c
5138
5139 COMPILER ATTRIBUTES
5140 M:      Miguel Ojeda <ojeda@kernel.org>
5141 R:      Nick Desaulniers <ndesaulniers@google.com>
5142 S:      Maintained
5143 F:      include/linux/compiler_attributes.h
5144
5145 COMPUTE EXPRESS LINK (CXL)
5146 M:      Alison Schofield <alison.schofield@intel.com>
5147 M:      Vishal Verma <vishal.l.verma@intel.com>
5148 M:      Ira Weiny <ira.weiny@intel.com>
5149 M:      Ben Widawsky <bwidawsk@kernel.org>
5150 M:      Dan Williams <dan.j.williams@intel.com>
5151 L:      linux-cxl@vger.kernel.org
5152 S:      Maintained
5153 F:      drivers/cxl/
5154 F:      include/uapi/linux/cxl_mem.h
5155
5156 CONEXANT ACCESSRUNNER USB DRIVER
5157 L:      accessrunner-general@lists.sourceforge.net
5158 S:      Orphan
5159 W:      http://accessrunner.sourceforge.net/
5160 F:      drivers/usb/atm/cxacru.c
5161
5162 CONFIGFS
5163 M:      Joel Becker <jlbec@evilplan.org>
5164 M:      Christoph Hellwig <hch@lst.de>
5165 S:      Supported
5166 T:      git git://git.infradead.org/users/hch/configfs.git
5167 F:      fs/configfs/
5168 F:      include/linux/configfs.h
5169 F:      samples/configfs/
5170
5171 CONSOLE SUBSYSTEM
5172 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5173 S:      Supported
5174 F:      drivers/video/console/
5175 F:      include/linux/console*
5176
5177 CONTEXT TRACKING
5178 M:      Frederic Weisbecker <frederic@kernel.org>
5179 M:      "Paul E. McKenney" <paulmck@kernel.org>
5180 S:      Maintained
5181 F:      kernel/context_tracking.c
5182 F:      include/linux/context_tracking*
5183
5184 CONTROL GROUP (CGROUP)
5185 M:      Tejun Heo <tj@kernel.org>
5186 M:      Zefan Li <lizefan.x@bytedance.com>
5187 M:      Johannes Weiner <hannes@cmpxchg.org>
5188 L:      cgroups@vger.kernel.org
5189 S:      Maintained
5190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5191 F:      Documentation/admin-guide/cgroup-v1/
5192 F:      Documentation/admin-guide/cgroup-v2.rst
5193 F:      include/linux/cgroup*
5194 F:      kernel/cgroup/
5195 F:      tools/testing/selftests/cgroup/
5196
5197 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5198 M:      Tejun Heo <tj@kernel.org>
5199 M:      Josef Bacik <josef@toxicpanda.com>
5200 M:      Jens Axboe <axboe@kernel.dk>
5201 L:      cgroups@vger.kernel.org
5202 L:      linux-block@vger.kernel.org
5203 T:      git git://git.kernel.dk/linux-block
5204 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5205 F:      block/bfq-cgroup.c
5206 F:      block/blk-cgroup.c
5207 F:      block/blk-iocost.c
5208 F:      block/blk-iolatency.c
5209 F:      block/blk-throttle.c
5210 F:      include/linux/blk-cgroup.h
5211
5212 CONTROL GROUP - CPUSET
5213 M:      Waiman Long <longman@redhat.com>
5214 M:      Zefan Li <lizefan.x@bytedance.com>
5215 L:      cgroups@vger.kernel.org
5216 S:      Maintained
5217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5218 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5219 F:      include/linux/cpuset.h
5220 F:      kernel/cgroup/cpuset.c
5221
5222 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5223 M:      Johannes Weiner <hannes@cmpxchg.org>
5224 M:      Michal Hocko <mhocko@kernel.org>
5225 M:      Roman Gushchin <roman.gushchin@linux.dev>
5226 M:      Shakeel Butt <shakeelb@google.com>
5227 R:      Muchun Song <muchun.song@linux.dev>
5228 L:      cgroups@vger.kernel.org
5229 L:      linux-mm@kvack.org
5230 S:      Maintained
5231 F:      mm/memcontrol.c
5232 F:      mm/swap_cgroup.c
5233 F:      tools/testing/selftests/cgroup/memcg_protection.m
5234 F:      tools/testing/selftests/cgroup/test_kmem.c
5235 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5236
5237 CORETEMP HARDWARE MONITORING DRIVER
5238 M:      Fenghua Yu <fenghua.yu@intel.com>
5239 L:      linux-hwmon@vger.kernel.org
5240 S:      Maintained
5241 F:      Documentation/hwmon/coretemp.rst
5242 F:      drivers/hwmon/coretemp.c
5243
5244 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5245 M:      Marius Zachmann <mail@mariuszachmann.de>
5246 L:      linux-hwmon@vger.kernel.org
5247 S:      Maintained
5248 F:      drivers/hwmon/corsair-cpro.c
5249
5250 CORSAIR-PSU HARDWARE MONITOR DRIVER
5251 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5252 L:      linux-hwmon@vger.kernel.org
5253 S:      Maintained
5254 F:      Documentation/hwmon/corsair-psu.rst
5255 F:      drivers/hwmon/corsair-psu.c
5256
5257 COUNTER SUBSYSTEM
5258 M:      William Breathitt Gray <william.gray@linaro.org>
5259 L:      linux-iio@vger.kernel.org
5260 S:      Maintained
5261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5262 F:      Documentation/ABI/testing/sysfs-bus-counter
5263 F:      Documentation/driver-api/generic-counter.rst
5264 F:      drivers/counter/
5265 F:      include/linux/counter.h
5266 F:      include/uapi/linux/counter.h
5267 F:      tools/counter/
5268
5269 CP2615 I2C DRIVER
5270 M:      Bence Csókás <bence98@sch.bme.hu>
5271 S:      Maintained
5272 F:      drivers/i2c/busses/i2c-cp2615.c
5273
5274 CPMAC ETHERNET DRIVER
5275 M:      Florian Fainelli <f.fainelli@gmail.com>
5276 L:      netdev@vger.kernel.org
5277 S:      Maintained
5278 F:      drivers/net/ethernet/ti/cpmac.c
5279
5280 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5281 M:      Viresh Kumar <viresh.kumar@linaro.org>
5282 M:      Sudeep Holla <sudeep.holla@arm.com>
5283 L:      linux-pm@vger.kernel.org
5284 S:      Maintained
5285 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5286 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5287
5288 CPU FREQUENCY SCALING FRAMEWORK
5289 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5290 M:      Viresh Kumar <viresh.kumar@linaro.org>
5291 L:      linux-pm@vger.kernel.org
5292 S:      Maintained
5293 B:      https://bugzilla.kernel.org
5294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5296 F:      Documentation/admin-guide/pm/cpufreq.rst
5297 F:      Documentation/admin-guide/pm/intel_pstate.rst
5298 F:      Documentation/cpu-freq/
5299 F:      Documentation/devicetree/bindings/cpufreq/
5300 F:      drivers/cpufreq/
5301 F:      include/linux/cpufreq.h
5302 F:      include/linux/sched/cpufreq.h
5303 F:      kernel/sched/cpufreq*.c
5304 F:      tools/testing/selftests/cpufreq/
5305
5306 CPU IDLE TIME MANAGEMENT FRAMEWORK
5307 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5308 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5309 L:      linux-pm@vger.kernel.org
5310 S:      Maintained
5311 B:      https://bugzilla.kernel.org
5312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5313 F:      Documentation/admin-guide/pm/cpuidle.rst
5314 F:      Documentation/driver-api/pm/cpuidle.rst
5315 F:      drivers/cpuidle/
5316 F:      include/linux/cpuidle.h
5317
5318 CPU POWER MONITORING SUBSYSTEM
5319 M:      Thomas Renninger <trenn@suse.com>
5320 M:      Shuah Khan <shuah@kernel.org>
5321 M:      Shuah Khan <skhan@linuxfoundation.org>
5322 L:      linux-pm@vger.kernel.org
5323 S:      Maintained
5324 F:      tools/power/cpupower/
5325
5326 CPUID/MSR DRIVER
5327 M:      "H. Peter Anvin" <hpa@zytor.com>
5328 S:      Maintained
5329 F:      arch/x86/kernel/cpuid.c
5330 F:      arch/x86/kernel/msr.c
5331
5332 CPUIDLE DRIVER - ARM BIG LITTLE
5333 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5334 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5335 L:      linux-pm@vger.kernel.org
5336 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5337 S:      Maintained
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339 F:      drivers/cpuidle/cpuidle-big_little.c
5340
5341 CPUIDLE DRIVER - ARM EXYNOS
5342 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5343 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5344 M:      Kukjin Kim <kgene@kernel.org>
5345 L:      linux-pm@vger.kernel.org
5346 L:      linux-samsung-soc@vger.kernel.org
5347 S:      Supported
5348 F:      arch/arm/mach-exynos/pm.c
5349 F:      drivers/cpuidle/cpuidle-exynos.c
5350 F:      include/linux/platform_data/cpuidle-exynos.h
5351
5352 CPUIDLE DRIVER - ARM PSCI
5353 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5354 M:      Sudeep Holla <sudeep.holla@arm.com>
5355 L:      linux-pm@vger.kernel.org
5356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5357 S:      Supported
5358 F:      drivers/cpuidle/cpuidle-psci.c
5359
5360 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5361 M:      Ulf Hansson <ulf.hansson@linaro.org>
5362 L:      linux-pm@vger.kernel.org
5363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5364 S:      Supported
5365 F:      drivers/cpuidle/cpuidle-psci.h
5366 F:      drivers/cpuidle/cpuidle-psci-domain.c
5367
5368 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5369 M:      Ulf Hansson <ulf.hansson@linaro.org>
5370 L:      linux-pm@vger.kernel.org
5371 S:      Supported
5372 F:      drivers/cpuidle/dt_idle_genpd.c
5373 F:      drivers/cpuidle/dt_idle_genpd.h
5374
5375 CPUIDLE DRIVER - RISC-V SBI
5376 M:      Anup Patel <anup@brainfault.org>
5377 L:      linux-pm@vger.kernel.org
5378 L:      linux-riscv@lists.infradead.org
5379 S:      Maintained
5380 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5381
5382 CRAMFS FILESYSTEM
5383 M:      Nicolas Pitre <nico@fluxnic.net>
5384 S:      Maintained
5385 F:      Documentation/filesystems/cramfs.rst
5386 F:      fs/cramfs/
5387
5388 CREATIVE SB0540
5389 M:      Bastien Nocera <hadess@hadess.net>
5390 L:      linux-input@vger.kernel.org
5391 S:      Maintained
5392 F:      drivers/hid/hid-creative-sb0540.c
5393
5394 CRYPTO API
5395 M:      Herbert Xu <herbert@gondor.apana.org.au>
5396 M:      "David S. Miller" <davem@davemloft.net>
5397 L:      linux-crypto@vger.kernel.org
5398 S:      Maintained
5399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5401 F:      Documentation/crypto/
5402 F:      Documentation/devicetree/bindings/crypto/
5403 F:      arch/*/crypto/
5404 F:      crypto/
5405 F:      drivers/crypto/
5406 F:      include/crypto/
5407 F:      include/linux/crypto*
5408 F:      lib/crypto/
5409
5410 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5411 M:      Neil Horman <nhorman@tuxdriver.com>
5412 L:      linux-crypto@vger.kernel.org
5413 S:      Maintained
5414 F:      crypto/ansi_cprng.c
5415 F:      crypto/rng.c
5416
5417 CS3308 MEDIA DRIVER
5418 M:      Hans Verkuil <hverkuil@xs4all.nl>
5419 L:      linux-media@vger.kernel.org
5420 S:      Odd Fixes
5421 W:      http://linuxtv.org
5422 T:      git git://linuxtv.org/media_tree.git
5423 F:      drivers/media/i2c/cs3308.c
5424
5425 CS5535 Audio ALSA driver
5426 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5427 S:      Maintained
5428 F:      sound/pci/cs5535audio/
5429
5430 CTU CAN FD DRIVER
5431 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5432 M:      Ondrej Ille <ondrej.ille@gmail.com>
5433 L:      linux-can@vger.kernel.org
5434 S:      Maintained
5435 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5436 F:      drivers/net/can/ctucanfd/
5437
5438 CW1200 WLAN driver
5439 M:      Solomon Peachy <pizza@shaftnet.org>
5440 S:      Maintained
5441 F:      drivers/net/wireless/st/cw1200/
5442
5443 CX18 VIDEO4LINUX DRIVER
5444 M:      Andy Walls <awalls@md.metrocast.net>
5445 L:      linux-media@vger.kernel.org
5446 S:      Maintained
5447 W:      https://linuxtv.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 F:      drivers/media/pci/cx18/
5450 F:      include/uapi/linux/ivtv*
5451
5452 CX2341X MPEG ENCODER HELPER MODULE
5453 M:      Hans Verkuil <hverkuil@xs4all.nl>
5454 L:      linux-media@vger.kernel.org
5455 S:      Maintained
5456 W:      https://linuxtv.org
5457 T:      git git://linuxtv.org/media_tree.git
5458 F:      drivers/media/common/cx2341x*
5459 F:      include/media/drv-intf/cx2341x.h
5460
5461 CX24120 MEDIA DRIVER
5462 M:      Jemma Denson <jdenson@gmail.com>
5463 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5464 L:      linux-media@vger.kernel.org
5465 S:      Maintained
5466 W:      https://linuxtv.org
5467 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5468 F:      drivers/media/dvb-frontends/cx24120*
5469
5470 CX88 VIDEO4LINUX DRIVER
5471 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5472 L:      linux-media@vger.kernel.org
5473 S:      Odd fixes
5474 W:      https://linuxtv.org
5475 T:      git git://linuxtv.org/media_tree.git
5476 F:      Documentation/driver-api/media/drivers/cx88*
5477 F:      drivers/media/pci/cx88/
5478
5479 CXD2820R MEDIA DRIVER
5480 M:      Antti Palosaari <crope@iki.fi>
5481 L:      linux-media@vger.kernel.org
5482 S:      Maintained
5483 W:      https://linuxtv.org
5484 W:      http://palosaari.fi/linux/
5485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5486 T:      git git://linuxtv.org/anttip/media_tree.git
5487 F:      drivers/media/dvb-frontends/cxd2820r*
5488
5489 CXGB3 ETHERNET DRIVER (CXGB3)
5490 M:      Raju Rangoju <rajur@chelsio.com>
5491 L:      netdev@vger.kernel.org
5492 S:      Supported
5493 W:      http://www.chelsio.com
5494 F:      drivers/net/ethernet/chelsio/cxgb3/
5495
5496 CXGB3 ISCSI DRIVER (CXGB3I)
5497 M:      Varun Prakash <varun@chelsio.com>
5498 L:      linux-scsi@vger.kernel.org
5499 S:      Supported
5500 W:      http://www.chelsio.com
5501 F:      drivers/scsi/cxgbi/cxgb3i
5502
5503 CXGB4 CRYPTO DRIVER (chcr)
5504 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5505 L:      linux-crypto@vger.kernel.org
5506 S:      Supported
5507 W:      http://www.chelsio.com
5508 F:      drivers/crypto/chelsio
5509
5510 CXGB4 INLINE CRYPTO DRIVER
5511 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5512 L:      netdev@vger.kernel.org
5513 S:      Supported
5514 W:      http://www.chelsio.com
5515 F:      drivers/net/ethernet/chelsio/inline_crypto/
5516
5517 CXGB4 ETHERNET DRIVER (CXGB4)
5518 M:      Raju Rangoju <rajur@chelsio.com>
5519 L:      netdev@vger.kernel.org
5520 S:      Supported
5521 W:      http://www.chelsio.com
5522 F:      drivers/net/ethernet/chelsio/cxgb4/
5523
5524 CXGB4 ISCSI DRIVER (CXGB4I)
5525 M:      Varun Prakash <varun@chelsio.com>
5526 L:      linux-scsi@vger.kernel.org
5527 S:      Supported
5528 W:      http://www.chelsio.com
5529 F:      drivers/scsi/cxgbi/cxgb4i
5530
5531 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5532 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5533 L:      linux-rdma@vger.kernel.org
5534 S:      Supported
5535 W:      http://www.openfabrics.org
5536 F:      drivers/infiniband/hw/cxgb4/
5537 F:      include/uapi/rdma/cxgb4-abi.h
5538
5539 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5540 M:      Raju Rangoju <rajur@chelsio.com>
5541 L:      netdev@vger.kernel.org
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5545
5546 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5547 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5548 M:      Andrew Donnellan <ajd@linux.ibm.com>
5549 L:      linuxppc-dev@lists.ozlabs.org
5550 S:      Supported
5551 F:      Documentation/ABI/testing/sysfs-class-cxl
5552 F:      Documentation/powerpc/cxl.rst
5553 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5554 F:      drivers/misc/cxl/
5555 F:      include/misc/cxl*
5556 F:      include/uapi/misc/cxl.h
5557
5558 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5559 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5560 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5561 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5562 L:      linux-scsi@vger.kernel.org
5563 S:      Supported
5564 F:      Documentation/powerpc/cxlflash.rst
5565 F:      drivers/scsi/cxlflash/
5566 F:      include/uapi/scsi/cxlflash_ioctl.h
5567
5568 CYBERPRO FB DRIVER
5569 M:      Russell King <linux@armlinux.org.uk>
5570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5571 S:      Maintained
5572 W:      http://www.armlinux.org.uk/
5573 F:      drivers/video/fbdev/cyber2000fb.*
5574
5575 CYCLADES PC300 DRIVER
5576 S:      Orphan
5577 F:      drivers/net/wan/pc300*
5578
5579 CYPRESS_FIRMWARE MEDIA DRIVER
5580 M:      Antti Palosaari <crope@iki.fi>
5581 L:      linux-media@vger.kernel.org
5582 S:      Maintained
5583 W:      https://linuxtv.org
5584 W:      http://palosaari.fi/linux/
5585 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5586 T:      git git://linuxtv.org/anttip/media_tree.git
5587 F:      drivers/media/common/cypress_firmware*
5588
5589 CYPRESS CY8C95X0 PINCTRL DRIVER
5590 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5591 L:      linux-gpio@vger.kernel.org
5592 S:      Maintained
5593 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5594
5595 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5596 M:      Linus Walleij <linus.walleij@linaro.org>
5597 L:      linux-input@vger.kernel.org
5598 S:      Maintained
5599 F:      drivers/input/touchscreen/cy8ctma140.c
5600
5601 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5602 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5603 L:      linux-input@vger.kernel.org
5604 S:      Maintained
5605 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5606 F:      drivers/input/keyboard/cypress-sf.c
5607
5608 CYTTSP TOUCHSCREEN DRIVER
5609 M:      Linus Walleij <linus.walleij@linaro.org>
5610 L:      linux-input@vger.kernel.org
5611 S:      Maintained
5612 F:      drivers/input/touchscreen/cyttsp*
5613
5614 D-LINK DIR-685 TOUCHKEYS DRIVER
5615 M:      Linus Walleij <linus.walleij@linaro.org>
5616 L:      linux-input@vger.kernel.org
5617 S:      Supported
5618 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5619
5620 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5621 M:      Joshua Kinard <kumba@gentoo.org>
5622 S:      Maintained
5623 F:      drivers/rtc/rtc-ds1685.c
5624 F:      include/linux/rtc/ds1685.h
5625
5626 DAMA SLAVE for AX.25
5627 M:      Joerg Reuter <jreuter@yaina.de>
5628 L:      linux-hams@vger.kernel.org
5629 S:      Maintained
5630 W:      http://yaina.de/jreuter/
5631 W:      http://www.qsl.net/dl1bke/
5632 F:      net/ax25/af_ax25.c
5633 F:      net/ax25/ax25_dev.c
5634 F:      net/ax25/ax25_ds_*
5635 F:      net/ax25/ax25_in.c
5636 F:      net/ax25/ax25_out.c
5637 F:      net/ax25/ax25_timer.c
5638 F:      net/ax25/sysctl_net_ax25.c
5639
5640 DATA ACCESS MONITOR
5641 M:      SeongJae Park <sj@kernel.org>
5642 L:      damon@lists.linux.dev
5643 L:      linux-mm@kvack.org
5644 S:      Maintained
5645 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5646 F:      Documentation/admin-guide/mm/damon/
5647 F:      Documentation/mm/damon/
5648 F:      include/linux/damon.h
5649 F:      include/trace/events/damon.h
5650 F:      mm/damon/
5651 F:      tools/testing/selftests/damon/
5652
5653 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5654 L:      netdev@vger.kernel.org
5655 S:      Orphan
5656 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5657 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5658
5659 DC390/AM53C974 SCSI driver
5660 M:      Hannes Reinecke <hare@suse.com>
5661 L:      linux-scsi@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/scsi/am53c974.c
5664
5665 DC395x SCSI driver
5666 M:      Oliver Neukum <oliver@neukum.org>
5667 M:      Ali Akcaagac <aliakc@web.de>
5668 M:      Jamie Lenehan <lenehan@twibble.org>
5669 L:      dc395x@twibble.org
5670 S:      Maintained
5671 W:      http://twibble.org/dist/dc395x/
5672 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5673 F:      Documentation/scsi/dc395x.rst
5674 F:      drivers/scsi/dc395x.*
5675
5676 DCCP PROTOCOL
5677 L:      dccp@vger.kernel.org
5678 S:      Orphan
5679 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5680 F:      include/linux/dccp.h
5681 F:      include/linux/tfrc.h
5682 F:      include/uapi/linux/dccp.h
5683 F:      net/dccp/
5684
5685 DECSTATION PLATFORM SUPPORT
5686 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5687 L:      linux-mips@vger.kernel.org
5688 S:      Maintained
5689 W:      http://www.linux-mips.org/wiki/DECstation
5690 F:      arch/mips/dec/
5691 F:      arch/mips/include/asm/dec/
5692 F:      arch/mips/include/asm/mach-dec/
5693
5694 DEFXX FDDI NETWORK DRIVER
5695 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5696 S:      Maintained
5697 F:      drivers/net/fddi/defxx.*
5698
5699 DEFZA FDDI NETWORK DRIVER
5700 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5701 S:      Maintained
5702 F:      drivers/net/fddi/defza.*
5703
5704 DEINTERLACE DRIVERS FOR ALLWINNER H3
5705 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5706 L:      linux-media@vger.kernel.org
5707 S:      Maintained
5708 T:      git git://linuxtv.org/media_tree.git
5709 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5710 F:      drivers/media/platform/sunxi/sun8i-di/
5711
5712 DELL LAPTOP DRIVER
5713 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5714 M:      Pali Rohár <pali@kernel.org>
5715 L:      platform-driver-x86@vger.kernel.org
5716 S:      Maintained
5717 F:      drivers/platform/x86/dell/dell-laptop.c
5718
5719 DELL LAPTOP FREEFALL DRIVER
5720 M:      Pali Rohár <pali@kernel.org>
5721 S:      Maintained
5722 F:      drivers/platform/x86/dell/dell-smo8800.c
5723
5724 DELL LAPTOP RBTN DRIVER
5725 M:      Pali Rohár <pali@kernel.org>
5726 S:      Maintained
5727 F:      drivers/platform/x86/dell/dell-rbtn.*
5728
5729 DELL LAPTOP SMM DRIVER
5730 M:      Pali Rohár <pali@kernel.org>
5731 S:      Maintained
5732 F:      Documentation/ABI/obsolete/procfs-i8k
5733 F:      drivers/hwmon/dell-smm-hwmon.c
5734 F:      include/uapi/linux/i8k.h
5735
5736 DELL REMOTE BIOS UPDATE DRIVER
5737 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5738 L:      platform-driver-x86@vger.kernel.org
5739 S:      Maintained
5740 F:      drivers/platform/x86/dell/dell_rbu.c
5741
5742 DELL SMBIOS DRIVER
5743 M:      Pali Rohár <pali@kernel.org>
5744 L:      Dell.Client.Kernel@dell.com
5745 L:      platform-driver-x86@vger.kernel.org
5746 S:      Maintained
5747 F:      drivers/platform/x86/dell/dell-smbios.*
5748
5749 DELL SMBIOS SMM DRIVER
5750 L:      Dell.Client.Kernel@dell.com
5751 L:      platform-driver-x86@vger.kernel.org
5752 S:      Maintained
5753 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5754
5755 DELL SMBIOS WMI DRIVER
5756 L:      Dell.Client.Kernel@dell.com
5757 L:      platform-driver-x86@vger.kernel.org
5758 S:      Maintained
5759 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5760 F:      tools/wmi/dell-smbios-example.c
5761
5762 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5763 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5764 L:      platform-driver-x86@vger.kernel.org
5765 S:      Maintained
5766 F:      Documentation/driver-api/dcdbas.rst
5767 F:      drivers/platform/x86/dell/dcdbas.*
5768
5769 DELL WMI DESCRIPTOR DRIVER
5770 L:      Dell.Client.Kernel@dell.com
5771 S:      Maintained
5772 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5773
5774 DELL WMI DDV DRIVER
5775 M:      Armin Wolf <W_Armin@gmx.de>
5776 S:      Maintained
5777 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5778 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5779 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5780
5781 DELL WMI SYSMAN DRIVER
5782 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5783 L:      Dell.Client.Kernel@dell.com
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5787 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5788
5789 DELL WMI NOTIFICATIONS DRIVER
5790 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5791 M:      Pali Rohár <pali@kernel.org>
5792 S:      Maintained
5793 F:      drivers/platform/x86/dell/dell-wmi-base.c
5794
5795 DELL WMI HARDWARE PRIVACY SUPPORT
5796 M:      Perry Yuan <Perry.Yuan@dell.com>
5797 L:      Dell.Client.Kernel@dell.com
5798 L:      platform-driver-x86@vger.kernel.org
5799 S:      Maintained
5800 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5801
5802 DELTA ST MEDIA DRIVER
5803 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5804 L:      linux-media@vger.kernel.org
5805 S:      Supported
5806 W:      https://linuxtv.org
5807 T:      git git://linuxtv.org/media_tree.git
5808 F:      drivers/media/platform/st/sti/delta
5809
5810 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5811 M:      Zev Weiss <zev@bewilderbeest.net>
5812 L:      linux-hwmon@vger.kernel.org
5813 S:      Maintained
5814 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5815
5816 DELTA DPS920AB PSU DRIVER
5817 M:      Robert Marko <robert.marko@sartura.hr>
5818 L:      linux-hwmon@vger.kernel.org
5819 S:      Maintained
5820 F:      Documentation/hwmon/dps920ab.rst
5821 F:      drivers/hwmon/pmbus/dps920ab.c
5822
5823 DELTA NETWORKS TN48M CPLD DRIVERS
5824 M:      Robert Marko <robert.marko@sartura.hr>
5825 S:      Maintained
5826 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5827 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5828 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5829 F:      drivers/gpio/gpio-tn48m.c
5830 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5831
5832 DENALI NAND DRIVER
5833 L:      linux-mtd@lists.infradead.org
5834 S:      Orphan
5835 F:      drivers/mtd/nand/raw/denali*
5836
5837 DESIGNWARE EDMA CORE IP DRIVER
5838 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5839 L:      dmaengine@vger.kernel.org
5840 S:      Maintained
5841 F:      drivers/dma/dw-edma/
5842 F:      include/linux/dma/edma.h
5843
5844 DESIGNWARE XDATA IP DRIVER
5845 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5846 L:      linux-pci@vger.kernel.org
5847 S:      Maintained
5848 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5849 F:      drivers/misc/dw-xdata-pcie.c
5850
5851 DESIGNWARE USB2 DRD IP DRIVER
5852 M:      Minas Harutyunyan <hminas@synopsys.com>
5853 L:      linux-usb@vger.kernel.org
5854 S:      Maintained
5855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5856 F:      drivers/usb/dwc2/
5857
5858 DESIGNWARE USB3 DRD IP DRIVER
5859 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5860 L:      linux-usb@vger.kernel.org
5861 S:      Maintained
5862 F:      drivers/usb/dwc3/
5863
5864 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5865 M:      Andreas Klinger <ak@it-klinger.de>
5866 L:      linux-iio@vger.kernel.org
5867 S:      Maintained
5868 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5869 F:      drivers/iio/proximity/srf*.c
5870
5871 DEVICE COREDUMP (DEV_COREDUMP)
5872 M:      Johannes Berg <johannes@sipsolutions.net>
5873 L:      linux-kernel@vger.kernel.org
5874 S:      Maintained
5875 F:      drivers/base/devcoredump.c
5876 F:      include/linux/devcoredump.h
5877
5878 DEVICE DEPENDENCY HELPER SCRIPT
5879 M:      Saravana Kannan <saravanak@google.com>
5880 L:      linux-kernel@vger.kernel.org
5881 S:      Maintained
5882 F:      scripts/dev-needs.sh
5883
5884 DEVICE DIRECT ACCESS (DAX)
5885 M:      Dan Williams <dan.j.williams@intel.com>
5886 M:      Vishal Verma <vishal.l.verma@intel.com>
5887 M:      Dave Jiang <dave.jiang@intel.com>
5888 L:      nvdimm@lists.linux.dev
5889 S:      Supported
5890 F:      drivers/dax/
5891
5892 DEVICE FREQUENCY (DEVFREQ)
5893 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5894 M:      Kyungmin Park <kyungmin.park@samsung.com>
5895 M:      Chanwoo Choi <cw00.choi@samsung.com>
5896 L:      linux-pm@vger.kernel.org
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5899 F:      Documentation/devicetree/bindings/devfreq/
5900 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5901 F:      drivers/devfreq/
5902 F:      include/linux/devfreq.h
5903 F:      include/trace/events/devfreq.h
5904
5905 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5906 M:      Chanwoo Choi <cw00.choi@samsung.com>
5907 L:      linux-pm@vger.kernel.org
5908 S:      Supported
5909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5910 F:      Documentation/devicetree/bindings/devfreq/event/
5911 F:      drivers/devfreq/devfreq-event.c
5912 F:      drivers/devfreq/event/
5913 F:      include/dt-bindings/pmu/exynos_ppmu.h
5914 F:      include/linux/devfreq-event.h
5915
5916 DEVICE NUMBER REGISTRY
5917 M:      Torben Mathiasen <device@lanana.org>
5918 S:      Maintained
5919 W:      http://lanana.org/docs/device-list/index.html
5920
5921 DEVICE RESOURCE MANAGEMENT HELPERS
5922 M:      Hans de Goede <hdegoede@redhat.com>
5923 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5924 S:      Maintained
5925 F:      include/linux/devm-helpers.h
5926
5927 DEVICE-MAPPER  (LVM)
5928 M:      Alasdair Kergon <agk@redhat.com>
5929 M:      Mike Snitzer <snitzer@kernel.org>
5930 M:      dm-devel@redhat.com
5931 L:      dm-devel@redhat.com
5932 S:      Maintained
5933 W:      http://sources.redhat.com/dm
5934 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5936 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5937 F:      Documentation/admin-guide/device-mapper/
5938 F:      drivers/md/Kconfig
5939 F:      drivers/md/Makefile
5940 F:      drivers/md/dm*
5941 F:      drivers/md/persistent-data/
5942 F:      include/linux/device-mapper.h
5943 F:      include/linux/dm-*.h
5944 F:      include/uapi/linux/dm-*.h
5945
5946 DEVLINK
5947 M:      Jiri Pirko <jiri@nvidia.com>
5948 L:      netdev@vger.kernel.org
5949 S:      Supported
5950 F:      Documentation/networking/devlink
5951 F:      include/net/devlink.h
5952 F:      include/uapi/linux/devlink.h
5953 F:      net/devlink/
5954
5955 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5956 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5957 L:      kernel@dh-electronics.com
5958 S:      Maintained
5959 F:      arch/arm/boot/dts/imx6*-dhcom-*
5960 F:      arch/arm/boot/dts/imx6*-dhcor-*
5961
5962 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5963 M:      Marek Vasut <marex@denx.de>
5964 L:      kernel@dh-electronics.com
5965 S:      Maintained
5966 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5967 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5968
5969 DIALOG SEMICONDUCTOR DRIVERS
5970 M:      Support Opensource <support.opensource@diasemi.com>
5971 S:      Supported
5972 W:      http://www.dialog-semiconductor.com/products
5973 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5974 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5975 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5976 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5977 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5978 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5979 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5980 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5981 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5982 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5983 F:      Documentation/hwmon/da90??.rst
5984 F:      drivers/gpio/gpio-da90??.c
5985 F:      drivers/hwmon/da90??-hwmon.c
5986 F:      drivers/iio/adc/da91??-*.c
5987 F:      drivers/input/misc/da72??.[ch]
5988 F:      drivers/input/misc/da90??_onkey.c
5989 F:      drivers/input/touchscreen/da9052_tsi.c
5990 F:      drivers/leds/leds-da90??.c
5991 F:      drivers/mfd/da903x.c
5992 F:      drivers/mfd/da90??-*.c
5993 F:      drivers/mfd/da91??-*.c
5994 F:      drivers/pinctrl/pinctrl-da90??.c
5995 F:      drivers/power/supply/da9052-battery.c
5996 F:      drivers/power/supply/da91??-*.c
5997 F:      drivers/regulator/da9???-regulator.[ch]
5998 F:      drivers/regulator/slg51000-regulator.[ch]
5999 F:      drivers/rtc/rtc-da90??.c
6000 F:      drivers/thermal/da90??-thermal.c
6001 F:      drivers/video/backlight/da90??_bl.c
6002 F:      drivers/watchdog/da90??_wdt.c
6003 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6004 F:      include/linux/mfd/da903x.h
6005 F:      include/linux/mfd/da9052/
6006 F:      include/linux/mfd/da9055/
6007 F:      include/linux/mfd/da9062/
6008 F:      include/linux/mfd/da9063/
6009 F:      include/linux/mfd/da9150/
6010 F:      include/linux/regulator/da9211.h
6011 F:      include/sound/da[79]*.h
6012 F:      sound/soc/codecs/da[79]*.[ch]
6013
6014 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6015 M:      William Breathitt Gray <william.gray@linaro.org>
6016 L:      linux-gpio@vger.kernel.org
6017 S:      Maintained
6018 F:      drivers/gpio/gpio-gpio-mm.c
6019
6020 DIOLAN U2C-12 I2C DRIVER
6021 M:      Guenter Roeck <linux@roeck-us.net>
6022 L:      linux-i2c@vger.kernel.org
6023 S:      Maintained
6024 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6025
6026 DIRECTORY NOTIFICATION (DNOTIFY)
6027 M:      Jan Kara <jack@suse.cz>
6028 R:      Amir Goldstein <amir73il@gmail.com>
6029 L:      linux-fsdevel@vger.kernel.org
6030 S:      Maintained
6031 F:      Documentation/filesystems/dnotify.rst
6032 F:      fs/notify/dnotify/
6033 F:      include/linux/dnotify.h
6034
6035 DISK GEOMETRY AND PARTITION HANDLING
6036 M:      Andries Brouwer <aeb@cwi.nl>
6037 S:      Maintained
6038 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6039 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6040 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6041
6042 DISKQUOTA
6043 M:      Jan Kara <jack@suse.com>
6044 S:      Maintained
6045 F:      Documentation/filesystems/quota.rst
6046 F:      fs/quota/
6047 F:      include/linux/quota*.h
6048 F:      include/uapi/linux/quota*.h
6049
6050 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6051 M:      Bernie Thompson <bernie@plugable.com>
6052 L:      linux-fbdev@vger.kernel.org
6053 S:      Maintained
6054 W:      http://plugable.com/category/projects/udlfb/
6055 F:      Documentation/fb/udlfb.rst
6056 F:      drivers/video/fbdev/udlfb.c
6057 F:      include/video/udlfb.h
6058
6059 DISTRIBUTED LOCK MANAGER (DLM)
6060 M:      Christine Caulfield <ccaulfie@redhat.com>
6061 M:      David Teigland <teigland@redhat.com>
6062 L:      cluster-devel@redhat.com
6063 S:      Supported
6064 W:      http://sources.redhat.com/cluster/
6065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6066 F:      fs/dlm/
6067
6068 DMA BUFFER SHARING FRAMEWORK
6069 M:      Sumit Semwal <sumit.semwal@linaro.org>
6070 M:      Christian König <christian.koenig@amd.com>
6071 L:      linux-media@vger.kernel.org
6072 L:      dri-devel@lists.freedesktop.org
6073 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6074 S:      Maintained
6075 T:      git git://anongit.freedesktop.org/drm/drm-misc
6076 F:      Documentation/driver-api/dma-buf.rst
6077 F:      drivers/dma-buf/
6078 F:      include/linux/*fence.h
6079 F:      include/linux/dma-buf.h
6080 F:      include/linux/dma-resv.h
6081 K:      \bdma_(?:buf|fence|resv)\b
6082
6083 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6084 M:      Vinod Koul <vkoul@kernel.org>
6085 L:      dmaengine@vger.kernel.org
6086 S:      Maintained
6087 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6089 F:      Documentation/devicetree/bindings/dma/
6090 F:      Documentation/driver-api/dmaengine/
6091 F:      drivers/dma/
6092 F:      include/dt-bindings/dma/
6093 F:      include/linux/dma/
6094 F:      include/linux/dmaengine.h
6095 F:      include/linux/of_dma.h
6096
6097 DMA MAPPING HELPERS
6098 M:      Christoph Hellwig <hch@lst.de>
6099 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6100 R:      Robin Murphy <robin.murphy@arm.com>
6101 L:      iommu@lists.linux.dev
6102 S:      Supported
6103 W:      http://git.infradead.org/users/hch/dma-mapping.git
6104 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6105 F:      include/asm-generic/dma-mapping.h
6106 F:      include/linux/dma-direct.h
6107 F:      include/linux/dma-mapping.h
6108 F:      include/linux/dma-map-ops.h
6109 F:      include/linux/swiotlb.h
6110 F:      kernel/dma/
6111
6112 DMA MAPPING BENCHMARK
6113 M:      Xiang Chen <chenxiang66@hisilicon.com>
6114 L:      iommu@lists.linux.dev
6115 F:      kernel/dma/map_benchmark.c
6116 F:      tools/testing/selftests/dma/
6117
6118 DMA-BUF HEAPS FRAMEWORK
6119 M:      Sumit Semwal <sumit.semwal@linaro.org>
6120 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6121 R:      Liam Mark <lmark@codeaurora.org>
6122 R:      Laura Abbott <labbott@redhat.com>
6123 R:      Brian Starkey <Brian.Starkey@arm.com>
6124 R:      John Stultz <jstultz@google.com>
6125 L:      linux-media@vger.kernel.org
6126 L:      dri-devel@lists.freedesktop.org
6127 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      drivers/dma-buf/dma-heap.c
6131 F:      drivers/dma-buf/heaps/*
6132 F:      include/linux/dma-heap.h
6133 F:      include/uapi/linux/dma-heap.h
6134
6135 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6136 M:      Lukasz Luba <lukasz.luba@arm.com>
6137 L:      linux-pm@vger.kernel.org
6138 L:      linux-samsung-soc@vger.kernel.org
6139 S:      Maintained
6140 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6141 F:      drivers/memory/samsung/exynos5422-dmc.c
6142
6143 DME1737 HARDWARE MONITOR DRIVER
6144 M:      Juerg Haefliger <juergh@proton.me>
6145 L:      linux-hwmon@vger.kernel.org
6146 S:      Maintained
6147 F:      Documentation/hwmon/dme1737.rst
6148 F:      drivers/hwmon/dme1737.c
6149
6150 DMI/SMBIOS SUPPORT
6151 M:      Jean Delvare <jdelvare@suse.com>
6152 S:      Maintained
6153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6154 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6155 F:      drivers/firmware/dmi-id.c
6156 F:      drivers/firmware/dmi_scan.c
6157 F:      include/linux/dmi.h
6158
6159 DOCUMENTATION
6160 M:      Jonathan Corbet <corbet@lwn.net>
6161 L:      linux-doc@vger.kernel.org
6162 S:      Maintained
6163 P:      Documentation/doc-guide/maintainer-profile.rst
6164 T:      git git://git.lwn.net/linux.git docs-next
6165 F:      Documentation/
6166 F:      scripts/documentation-file-ref-check
6167 F:      scripts/kernel-doc
6168 F:      scripts/sphinx-pre-install
6169 X:      Documentation/ABI/
6170 X:      Documentation/admin-guide/media/
6171 X:      Documentation/devicetree/
6172 X:      Documentation/driver-api/media/
6173 X:      Documentation/firmware-guide/acpi/
6174 X:      Documentation/i2c/
6175 X:      Documentation/power/
6176 X:      Documentation/spi/
6177 X:      Documentation/userspace-api/media/
6178
6179 DOCUMENTATION REPORTING ISSUES
6180 M:      Thorsten Leemhuis <linux@leemhuis.info>
6181 L:      linux-doc@vger.kernel.org
6182 S:      Maintained
6183 F:      Documentation/admin-guide/reporting-issues.rst
6184
6185 DOCUMENTATION SCRIPTS
6186 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6187 L:      linux-doc@vger.kernel.org
6188 S:      Maintained
6189 F:      Documentation/sphinx/parse-headers.pl
6190 F:      scripts/documentation-file-ref-check
6191 F:      scripts/sphinx-pre-install
6192
6193 DOCUMENTATION/ITALIAN
6194 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6195 L:      linux-doc@vger.kernel.org
6196 S:      Maintained
6197 F:      Documentation/translations/it_IT
6198
6199 DOCUMENTATION/JAPANESE
6200 R:      Akira Yokosawa <akiyks@gmail.com>
6201 L:      linux-doc@vger.kernel.org
6202 S:      Maintained
6203 F:      Documentation/translations/ja_JP
6204
6205 DONGWOON DW9714 LENS VOICE COIL DRIVER
6206 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6207 L:      linux-media@vger.kernel.org
6208 S:      Maintained
6209 T:      git git://linuxtv.org/media_tree.git
6210 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6211 F:      drivers/media/i2c/dw9714.c
6212
6213 DONGWOON DW9768 LENS VOICE COIL DRIVER
6214 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6215 L:      linux-media@vger.kernel.org
6216 S:      Maintained
6217 T:      git git://linuxtv.org/media_tree.git
6218 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6219 F:      drivers/media/i2c/dw9768.c
6220
6221 DONGWOON DW9807 LENS VOICE COIL DRIVER
6222 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6223 L:      linux-media@vger.kernel.org
6224 S:      Maintained
6225 T:      git git://linuxtv.org/media_tree.git
6226 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6227 F:      drivers/media/i2c/dw9807-vcm.c
6228
6229 DOUBLETALK DRIVER
6230 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6231 L:      blinux-list@redhat.com
6232 S:      Maintained
6233 F:      drivers/char/dtlk.c
6234 F:      include/linux/dtlk.h
6235
6236 DPAA2 DATAPATH I/O (DPIO) DRIVER
6237 M:      Roy Pledge <Roy.Pledge@nxp.com>
6238 L:      linux-kernel@vger.kernel.org
6239 S:      Maintained
6240 F:      drivers/soc/fsl/dpio
6241
6242 DPAA2 ETHERNET DRIVER
6243 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6244 L:      netdev@vger.kernel.org
6245 S:      Maintained
6246 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6247 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6248 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6249 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6250 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6251 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6252 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6253 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6254 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6255 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6256
6257 DPAA2 ETHERNET SWITCH DRIVER
6258 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6259 L:      netdev@vger.kernel.org
6260 S:      Maintained
6261 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6262 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6263 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6264
6265 DRBD DRIVER
6266 M:      Philipp Reisner <philipp.reisner@linbit.com>
6267 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6268 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6269 L:      drbd-dev@lists.linbit.com
6270 S:      Supported
6271 W:      http://www.drbd.org
6272 T:      git git://git.linbit.com/linux-drbd.git
6273 T:      git git://git.linbit.com/drbd-8.4.git
6274 F:      Documentation/admin-guide/blockdev/
6275 F:      drivers/block/drbd/
6276 F:      include/linux/drbd*
6277 F:      lib/lru_cache.c
6278
6279 DRIVER COMPONENT FRAMEWORK
6280 L:      dri-devel@lists.freedesktop.org
6281 F:      drivers/base/component.c
6282 F:      include/linux/component.h
6283
6284 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6285 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6286 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6287 S:      Supported
6288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6289 F:      Documentation/core-api/kobject.rst
6290 F:      drivers/base/
6291 F:      fs/debugfs/
6292 F:      fs/sysfs/
6293 F:      include/linux/debugfs.h
6294 F:      include/linux/kobj*
6295 F:      lib/kobj*
6296
6297 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6298 M:      Nishanth Menon <nm@ti.com>
6299 L:      linux-pm@vger.kernel.org
6300 S:      Maintained
6301 F:      drivers/soc/ti/smartreflex.c
6302 F:      include/linux/power/smartreflex.h
6303
6304 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6305 M:      Maxime Ripard <mripard@kernel.org>
6306 M:      Chen-Yu Tsai <wens@csie.org>
6307 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6308 L:      dri-devel@lists.freedesktop.org
6309 S:      Supported
6310 T:      git git://anongit.freedesktop.org/drm/drm-misc
6311 F:      drivers/gpu/drm/sun4i/sun8i*
6312
6313 DRM DRIVER FOR ARM PL111 CLCD
6314 M:      Emma Anholt <emma@anholt.net>
6315 S:      Supported
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      drivers/gpu/drm/pl111/
6318
6319 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6320 M:      Linus Walleij <linus.walleij@linaro.org>
6321 S:      Maintained
6322 T:      git git://anongit.freedesktop.org/drm/drm-misc
6323 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6324 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6325
6326 DRM DRIVER FOR ASPEED BMC GFX
6327 M:      Joel Stanley <joel@jms.id.au>
6328 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6329 S:      Supported
6330 T:      git git://anongit.freedesktop.org/drm/drm-misc
6331 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6332 F:      drivers/gpu/drm/aspeed/
6333
6334 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6335 M:      Dave Airlie <airlied@redhat.com>
6336 R:      Thomas Zimmermann <tzimmermann@suse.de>
6337 L:      dri-devel@lists.freedesktop.org
6338 S:      Supported
6339 T:      git git://anongit.freedesktop.org/drm/drm-misc
6340 F:      drivers/gpu/drm/ast/
6341
6342 DRM DRIVER FOR BOCHS VIRTUAL GPU
6343 M:      Gerd Hoffmann <kraxel@redhat.com>
6344 L:      virtualization@lists.linux-foundation.org
6345 S:      Maintained
6346 T:      git git://anongit.freedesktop.org/drm/drm-misc
6347 F:      drivers/gpu/drm/tiny/bochs.c
6348
6349 DRM DRIVER FOR BOE HIMAX8279D PANELS
6350 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6351 S:      Maintained
6352 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6353 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6354
6355 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6356 M:      Jagan Teki <jagan@amarulasolutions.com>
6357 S:      Maintained
6358 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6359 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6360
6361 DRM DRIVER FOR EBBG FT8719 PANEL
6362 M:      Joel Selvaraj <jo@jsfamily.in>
6363 S:      Maintained
6364 T:      git git://anongit.freedesktop.org/drm/drm-misc
6365 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6366 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6367
6368 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6369 M:      Linus Walleij <linus.walleij@linaro.org>
6370 S:      Maintained
6371 T:      git git://anongit.freedesktop.org/drm/drm-misc
6372 F:      drivers/gpu/drm/tve200/
6373
6374 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6375 M:      Icenowy Zheng <icenowy@aosc.io>
6376 S:      Maintained
6377 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6378 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6379
6380 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6381 M:      Jagan Teki <jagan@amarulasolutions.com>
6382 S:      Maintained
6383 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6384 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6385
6386 DRM DRIVER FOR GENERIC EDP PANELS
6387 R:      Douglas Anderson <dianders@chromium.org>
6388 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6389 F:      drivers/gpu/drm/panel/panel-edp.c
6390
6391 DRM DRIVER FOR GENERIC USB DISPLAY
6392 M:      Noralf Trønnes <noralf@tronnes.org>
6393 S:      Maintained
6394 W:      https://github.com/notro/gud/wiki
6395 T:      git git://anongit.freedesktop.org/drm/drm-misc
6396 F:      drivers/gpu/drm/gud/
6397 F:      include/drm/gud.h
6398
6399 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6400 M:      Hans de Goede <hdegoede@redhat.com>
6401 S:      Maintained
6402 T:      git git://anongit.freedesktop.org/drm/drm-misc
6403 F:      drivers/gpu/drm/tiny/gm12u320.c
6404
6405 DRM DRIVER FOR HX8357D PANELS
6406 M:      Emma Anholt <emma@anholt.net>
6407 S:      Maintained
6408 T:      git git://anongit.freedesktop.org/drm/drm-misc
6409 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6410 F:      drivers/gpu/drm/tiny/hx8357d.c
6411
6412 DRM DRIVER FOR ILITEK ILI9225 PANELS
6413 M:      David Lechner <david@lechnology.com>
6414 S:      Maintained
6415 T:      git git://anongit.freedesktop.org/drm/drm-misc
6416 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6417 F:      drivers/gpu/drm/tiny/ili9225.c
6418
6419 DRM DRIVER FOR ILITEK ILI9486 PANELS
6420 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6421 S:      Maintained
6422 T:      git git://anongit.freedesktop.org/drm/drm-misc
6423 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6424 F:      drivers/gpu/drm/tiny/ili9486.c
6425
6426 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6427 S:      Orphan / Obsolete
6428 F:      drivers/gpu/drm/i810/
6429 F:      include/uapi/drm/i810_drm.h
6430
6431 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6432 M:      Jagan Teki <jagan@edgeble.ai>
6433 S:      Maintained
6434 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6435 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6436
6437 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6438 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6439 S:      Supported
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      drivers/gpu/drm/logicvc/
6442
6443 DRM DRIVER FOR LVDS PANELS
6444 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6445 L:      dri-devel@lists.freedesktop.org
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 S:      Maintained
6448 F:      drivers/gpu/drm/panel/panel-lvds.c
6449 F:      Documentation/devicetree/bindings/display/lvds.yaml
6450 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6451
6452 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6453 M:      Guido Günther <agx@sigxcpu.org>
6454 R:      Purism Kernel Team <kernel@puri.sm>
6455 S:      Maintained
6456 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6457 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6458
6459 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6460 S:      Orphan / Obsolete
6461 F:      drivers/gpu/drm/mga/
6462 F:      include/uapi/drm/mga_drm.h
6463
6464 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6465 M:      Dave Airlie <airlied@redhat.com>
6466 R:      Thomas Zimmermann <tzimmermann@suse.de>
6467 L:      dri-devel@lists.freedesktop.org
6468 S:      Supported
6469 T:      git git://anongit.freedesktop.org/drm/drm-misc
6470 F:      drivers/gpu/drm/mgag200/
6471
6472 DRM DRIVER FOR MI0283QT
6473 M:      Noralf Trønnes <noralf@tronnes.org>
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6477 F:      drivers/gpu/drm/tiny/mi0283qt.c
6478
6479 DRM DRIVER FOR MIPI DBI compatible panels
6480 M:      Noralf Trønnes <noralf@tronnes.org>
6481 S:      Maintained
6482 W:      https://github.com/notro/panel-mipi-dbi/wiki
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6485 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6486
6487 DRM DRIVER FOR MSM ADRENO GPU
6488 M:      Rob Clark <robdclark@gmail.com>
6489 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6490 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6491 R:      Sean Paul <sean@poorly.run>
6492 L:      linux-arm-msm@vger.kernel.org
6493 L:      dri-devel@lists.freedesktop.org
6494 L:      freedreno@lists.freedesktop.org
6495 S:      Maintained
6496 T:      git https://gitlab.freedesktop.org/drm/msm.git
6497 F:      Documentation/devicetree/bindings/display/msm/
6498 F:      drivers/gpu/drm/msm/
6499 F:      include/uapi/drm/msm_drm.h
6500
6501 DRM DRIVER FOR NOVATEK NT35510 PANELS
6502 M:      Linus Walleij <linus.walleij@linaro.org>
6503 S:      Maintained
6504 T:      git git://anongit.freedesktop.org/drm/drm-misc
6505 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6506 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6507
6508 DRM DRIVER FOR NOVATEK NT35560 PANELS
6509 M:      Linus Walleij <linus.walleij@linaro.org>
6510 S:      Maintained
6511 T:      git git://anongit.freedesktop.org/drm/drm-misc
6512 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6513 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6514
6515 DRM DRIVER FOR NOVATEK NT36672A PANELS
6516 M:      Sumit Semwal <sumit.semwal@linaro.org>
6517 S:      Maintained
6518 T:      git git://anongit.freedesktop.org/drm/drm-misc
6519 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6520 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6521
6522 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6523 M:      Ben Skeggs <bskeggs@redhat.com>
6524 M:      Karol Herbst <kherbst@redhat.com>
6525 M:      Lyude Paul <lyude@redhat.com>
6526 L:      dri-devel@lists.freedesktop.org
6527 L:      nouveau@lists.freedesktop.org
6528 S:      Supported
6529 W:      https://nouveau.freedesktop.org/
6530 Q:      https://patchwork.freedesktop.org/project/nouveau/
6531 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6532 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6533 C:      irc://irc.oftc.net/nouveau
6534 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6535 F:      drivers/gpu/drm/nouveau/
6536 F:      include/uapi/drm/nouveau_drm.h
6537
6538 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6539 M:      Stefan Mavrodiev <stefan@olimex.com>
6540 S:      Maintained
6541 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6542 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6543
6544 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6545 R:      Douglas Anderson <dianders@chromium.org>
6546 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6547 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6548
6549 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6550 M:      Noralf Trønnes <noralf@tronnes.org>
6551 S:      Maintained
6552 T:      git git://anongit.freedesktop.org/drm/drm-misc
6553 F:      Documentation/devicetree/bindings/display/repaper.txt
6554 F:      drivers/gpu/drm/tiny/repaper.c
6555
6556 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6557 M:      Javier Martinez Canillas <javierm@redhat.com>
6558 S:      Maintained
6559 T:      git git://anongit.freedesktop.org/drm/drm-misc
6560 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6561 F:      drivers/gpu/drm/solomon/ssd130x*
6562
6563 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6564 M:      Dave Airlie <airlied@redhat.com>
6565 M:      Gerd Hoffmann <kraxel@redhat.com>
6566 L:      virtualization@lists.linux-foundation.org
6567 S:      Obsolete
6568 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      drivers/gpu/drm/tiny/cirrus.c
6571
6572 DRM DRIVER FOR QXL VIRTUAL GPU
6573 M:      Dave Airlie <airlied@redhat.com>
6574 M:      Gerd Hoffmann <kraxel@redhat.com>
6575 L:      virtualization@lists.linux-foundation.org
6576 L:      spice-devel@lists.freedesktop.org
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      drivers/gpu/drm/qxl/
6580 F:      include/uapi/drm/qxl_drm.h
6581
6582 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6583 S:      Orphan / Obsolete
6584 F:      drivers/gpu/drm/r128/
6585 F:      include/uapi/drm/r128_drm.h
6586
6587 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6588 M:      Robert Chiras <robert.chiras@nxp.com>
6589 S:      Maintained
6590 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6591 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6592
6593 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6594 M:      Linus Walleij <linus.walleij@linaro.org>
6595 S:      Maintained
6596 T:      git git://anongit.freedesktop.org/drm/drm-misc
6597 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6598 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6599
6600 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6601 M:      Markuss Broks <markuss.broks@gmail.com>
6602 S:      Maintained
6603 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6604 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6605
6606 DRM DRIVER FOR SITRONIX ST7703 PANELS
6607 M:      Guido Günther <agx@sigxcpu.org>
6608 R:      Purism Kernel Team <kernel@puri.sm>
6609 R:      Ondrej Jirman <megous@megous.com>
6610 S:      Maintained
6611 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6612 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6613
6614 DRM DRIVER FOR SAVAGE VIDEO CARDS
6615 S:      Orphan / Obsolete
6616 F:      drivers/gpu/drm/savage/
6617 F:      include/uapi/drm/savage_drm.h
6618
6619 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6620 M:      Thomas Zimmermann <tzimmermann@suse.de>
6621 M:      Javier Martinez Canillas <javierm@redhat.com>
6622 L:      dri-devel@lists.freedesktop.org
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/drm_aperture.c
6626 F:      drivers/gpu/drm/tiny/ofdrm.c
6627 F:      drivers/gpu/drm/tiny/simpledrm.c
6628 F:      drivers/video/aperture.c
6629 F:      drivers/video/nomodeset.c
6630 F:      include/drm/drm_aperture.h
6631 F:      include/linux/aperture.h
6632 F:      include/video/nomodeset.h
6633
6634 DRM DRIVER FOR SIS VIDEO CARDS
6635 S:      Orphan / Obsolete
6636 F:      drivers/gpu/drm/sis/
6637 F:      include/uapi/drm/sis_drm.h
6638
6639 DRM DRIVER FOR SITRONIX ST7586 PANELS
6640 M:      David Lechner <david@lechnology.com>
6641 S:      Maintained
6642 T:      git git://anongit.freedesktop.org/drm/drm-misc
6643 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6644 F:      drivers/gpu/drm/tiny/st7586.c
6645
6646 DRM DRIVER FOR SITRONIX ST7701 PANELS
6647 M:      Jagan Teki <jagan@amarulasolutions.com>
6648 S:      Maintained
6649 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6650 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6651
6652 DRM DRIVER FOR SITRONIX ST7735R PANELS
6653 M:      David Lechner <david@lechnology.com>
6654 S:      Maintained
6655 T:      git git://anongit.freedesktop.org/drm/drm-misc
6656 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6657 F:      drivers/gpu/drm/tiny/st7735r.c
6658
6659 DRM DRIVER FOR ST-ERICSSON MCDE
6660 M:      Linus Walleij <linus.walleij@linaro.org>
6661 S:      Maintained
6662 T:      git git://anongit.freedesktop.org/drm/drm-misc
6663 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6664 F:      drivers/gpu/drm/mcde/
6665
6666 DRM DRIVER FOR TDFX VIDEO CARDS
6667 S:      Orphan / Obsolete
6668 F:      drivers/gpu/drm/tdfx/
6669
6670 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6671 M:      Jagan Teki <jagan@amarulasolutions.com>
6672 S:      Maintained
6673 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6674 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6675
6676 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6677 R:      Douglas Anderson <dianders@chromium.org>
6678 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6679 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6680
6681 DRM DRIVER FOR TPO TPG110 PANELS
6682 M:      Linus Walleij <linus.walleij@linaro.org>
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6686 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6687
6688 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6689 M:      Dave Airlie <airlied@redhat.com>
6690 R:      Sean Paul <sean@poorly.run>
6691 R:      Thomas Zimmermann <tzimmermann@suse.de>
6692 L:      dri-devel@lists.freedesktop.org
6693 S:      Supported
6694 T:      git git://anongit.freedesktop.org/drm/drm-misc
6695 F:      drivers/gpu/drm/udl/
6696
6697 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6698 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6699 M:      Melissa Wen <melissa.srw@gmail.com>
6700 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6701 R:      Daniel Vetter <daniel@ffwll.ch>
6702 L:      dri-devel@lists.freedesktop.org
6703 S:      Maintained
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      Documentation/gpu/vkms.rst
6706 F:      drivers/gpu/drm/vkms/
6707
6708 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6709 M:      Hans de Goede <hdegoede@redhat.com>
6710 L:      dri-devel@lists.freedesktop.org
6711 S:      Maintained
6712 T:      git git://anongit.freedesktop.org/drm/drm-misc
6713 F:      drivers/gpu/drm/vboxvideo/
6714
6715 DRM DRIVER FOR VMWARE VIRTUAL GPU
6716 M:      Zack Rusin <zackr@vmware.com>
6717 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6718 L:      dri-devel@lists.freedesktop.org
6719 S:      Supported
6720 T:      git git://anongit.freedesktop.org/drm/drm-misc
6721 F:      drivers/gpu/drm/vmwgfx/
6722 F:      include/uapi/drm/vmwgfx_drm.h
6723
6724 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6725 M:      Linus Walleij <linus.walleij@linaro.org>
6726 S:      Maintained
6727 T:      git git://anongit.freedesktop.org/drm/drm-misc
6728 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6729 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6730
6731 DRM DRIVERS
6732 M:      David Airlie <airlied@gmail.com>
6733 M:      Daniel Vetter <daniel@ffwll.ch>
6734 L:      dri-devel@lists.freedesktop.org
6735 S:      Maintained
6736 B:      https://gitlab.freedesktop.org/drm
6737 C:      irc://irc.oftc.net/dri-devel
6738 T:      git git://anongit.freedesktop.org/drm/drm
6739 F:      Documentation/devicetree/bindings/display/
6740 F:      Documentation/devicetree/bindings/gpu/
6741 F:      Documentation/gpu/
6742 F:      drivers/gpu/
6743 F:      include/drm/
6744 F:      include/linux/vga*
6745 F:      include/uapi/drm/
6746
6747 DRM DRIVERS AND MISC GPU PATCHES
6748 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6749 M:      Maxime Ripard <mripard@kernel.org>
6750 M:      Thomas Zimmermann <tzimmermann@suse.de>
6751 S:      Maintained
6752 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6753 T:      git git://anongit.freedesktop.org/drm/drm-misc
6754 F:      Documentation/gpu/
6755 F:      drivers/gpu/drm/*
6756 F:      drivers/gpu/vga/
6757 F:      include/drm/drm*
6758 F:      include/linux/vga*
6759 F:      include/uapi/drm/drm*
6760
6761 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6762 M:      Oded Gabbay <ogabbay@kernel.org>
6763 L:      dri-devel@lists.freedesktop.org
6764 S:      Maintained
6765 C:      irc://irc.oftc.net/dri-devel
6766 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6767 F:      Documentation/accel/
6768 F:      drivers/accel/
6769
6770 DRM DRIVERS FOR ALLWINNER A10
6771 M:      Maxime Ripard <mripard@kernel.org>
6772 M:      Chen-Yu Tsai <wens@csie.org>
6773 L:      dri-devel@lists.freedesktop.org
6774 S:      Supported
6775 T:      git git://anongit.freedesktop.org/drm/drm-misc
6776 F:      Documentation/devicetree/bindings/display/allwinner*
6777 F:      drivers/gpu/drm/sun4i/
6778
6779 DRM DRIVERS FOR AMLOGIC SOCS
6780 M:      Neil Armstrong <neil.armstrong@linaro.org>
6781 L:      dri-devel@lists.freedesktop.org
6782 L:      linux-amlogic@lists.infradead.org
6783 S:      Supported
6784 W:      http://linux-meson.com/
6785 T:      git git://anongit.freedesktop.org/drm/drm-misc
6786 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6787 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6788 F:      Documentation/gpu/meson.rst
6789 F:      drivers/gpu/drm/meson/
6790
6791 DRM DRIVERS FOR ATMEL HLCDC
6792 M:      Sam Ravnborg <sam@ravnborg.org>
6793 M:      Boris Brezillon <bbrezillon@kernel.org>
6794 L:      dri-devel@lists.freedesktop.org
6795 S:      Supported
6796 T:      git git://anongit.freedesktop.org/drm/drm-misc
6797 F:      Documentation/devicetree/bindings/display/atmel/
6798 F:      drivers/gpu/drm/atmel-hlcdc/
6799
6800 DRM DRIVERS FOR BRIDGE CHIPS
6801 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6802 M:      Neil Armstrong <neil.armstrong@linaro.org>
6803 M:      Robert Foss <rfoss@kernel.org>
6804 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6805 R:      Jonas Karlman <jonas@kwiboo.se>
6806 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6807 S:      Maintained
6808 T:      git git://anongit.freedesktop.org/drm/drm-misc
6809 F:      Documentation/devicetree/bindings/display/bridge/
6810 F:      drivers/gpu/drm/bridge/
6811
6812 DRM DRIVERS FOR EXYNOS
6813 M:      Inki Dae <inki.dae@samsung.com>
6814 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6815 M:      Kyungmin Park <kyungmin.park@samsung.com>
6816 L:      dri-devel@lists.freedesktop.org
6817 S:      Supported
6818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6819 F:      Documentation/devicetree/bindings/display/exynos/
6820 F:      Documentation/devicetree/bindings/display/samsung/
6821 F:      drivers/gpu/drm/exynos/
6822 F:      include/uapi/drm/exynos_drm.h
6823
6824 DRM DRIVERS FOR FREESCALE DCU
6825 M:      Stefan Agner <stefan@agner.ch>
6826 M:      Alison Wang <alison.wang@nxp.com>
6827 L:      dri-devel@lists.freedesktop.org
6828 S:      Supported
6829 T:      git git://anongit.freedesktop.org/drm/drm-misc
6830 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6831 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6832 F:      drivers/gpu/drm/fsl-dcu/
6833
6834 DRM DRIVERS FOR FREESCALE IMX
6835 M:      Philipp Zabel <p.zabel@pengutronix.de>
6836 L:      dri-devel@lists.freedesktop.org
6837 S:      Maintained
6838 F:      Documentation/devicetree/bindings/display/imx/
6839 F:      drivers/gpu/drm/imx/
6840 F:      drivers/gpu/ipu-v3/
6841
6842 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6843 M:      Liu Ying <victor.liu@nxp.com>
6844 L:      dri-devel@lists.freedesktop.org
6845 S:      Maintained
6846 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6847 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6848 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6849 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6850 F:      drivers/gpu/drm/bridge/imx/
6851
6852 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6853 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6854 L:      dri-devel@lists.freedesktop.org
6855 S:      Maintained
6856 T:      git git://github.com/patjak/drm-gma500
6857 F:      drivers/gpu/drm/gma500/
6858
6859 DRM DRIVERS FOR HISILICON
6860 M:      Xinliang Liu <xinliang.liu@linaro.org>
6861 M:      Tian Tao  <tiantao6@hisilicon.com>
6862 R:      John Stultz <jstultz@google.com>
6863 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6864 R:      Chen Feng <puck.chen@hisilicon.com>
6865 L:      dri-devel@lists.freedesktop.org
6866 S:      Maintained
6867 T:      git git://anongit.freedesktop.org/drm/drm-misc
6868 F:      Documentation/devicetree/bindings/display/hisilicon/
6869 F:      drivers/gpu/drm/hisilicon/
6870
6871 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6872 M:      Deepak Rawat <drawat.floss@gmail.com>
6873 L:      linux-hyperv@vger.kernel.org
6874 L:      dri-devel@lists.freedesktop.org
6875 S:      Maintained
6876 T:      git git://anongit.freedesktop.org/drm/drm-misc
6877 F:      drivers/gpu/drm/hyperv
6878
6879 DRM DRIVERS FOR LIMA
6880 M:      Qiang Yu <yuq825@gmail.com>
6881 L:      dri-devel@lists.freedesktop.org
6882 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6883 S:      Maintained
6884 T:      git git://anongit.freedesktop.org/drm/drm-misc
6885 F:      drivers/gpu/drm/lima/
6886 F:      include/uapi/drm/lima_drm.h
6887
6888 DRM DRIVERS FOR MEDIATEK
6889 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6890 M:      Philipp Zabel <p.zabel@pengutronix.de>
6891 L:      dri-devel@lists.freedesktop.org
6892 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6893 S:      Supported
6894 F:      Documentation/devicetree/bindings/display/mediatek/
6895 F:      drivers/gpu/drm/mediatek/
6896 F:      drivers/phy/mediatek/phy-mtk-dp.c
6897 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6898 F:      drivers/phy/mediatek/phy-mtk-mipi*
6899
6900 DRM DRIVERS FOR NVIDIA TEGRA
6901 M:      Thierry Reding <thierry.reding@gmail.com>
6902 L:      dri-devel@lists.freedesktop.org
6903 L:      linux-tegra@vger.kernel.org
6904 S:      Supported
6905 T:      git git://anongit.freedesktop.org/tegra/linux.git
6906 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6907 F:      Documentation/devicetree/bindings/gpu/host1x/
6908 F:      drivers/gpu/drm/tegra/
6909 F:      drivers/gpu/host1x/
6910 F:      include/linux/host1x.h
6911 F:      include/uapi/drm/tegra_drm.h
6912
6913 DRM DRIVERS FOR RENESAS
6914 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6915 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6916 L:      dri-devel@lists.freedesktop.org
6917 L:      linux-renesas-soc@vger.kernel.org
6918 S:      Supported
6919 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6920 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6921 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6922 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6923 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6924 F:      drivers/gpu/drm/rcar-du/
6925 F:      drivers/gpu/drm/shmobile/
6926 F:      include/linux/platform_data/shmob_drm.h
6927
6928 DRM DRIVERS FOR ROCKCHIP
6929 M:      Sandy Huang <hjc@rock-chips.com>
6930 M:      Heiko Stübner <heiko@sntech.de>
6931 L:      dri-devel@lists.freedesktop.org
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      Documentation/devicetree/bindings/display/rockchip/
6935 F:      drivers/gpu/drm/rockchip/
6936
6937 DRM DRIVERS FOR STI
6938 M:      Alain Volmat <alain.volmat@foss.st.com>
6939 L:      dri-devel@lists.freedesktop.org
6940 S:      Maintained
6941 T:      git git://anongit.freedesktop.org/drm/drm-misc
6942 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6943 F:      drivers/gpu/drm/sti
6944
6945 DRM DRIVERS FOR STM
6946 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6947 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6948 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6949 L:      dri-devel@lists.freedesktop.org
6950 S:      Maintained
6951 T:      git git://anongit.freedesktop.org/drm/drm-misc
6952 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6953 F:      drivers/gpu/drm/stm
6954
6955 DRM DRIVERS FOR TI KEYSTONE
6956 M:      Jyri Sarha <jyri.sarha@iki.fi>
6957 M:      Tomi Valkeinen <tomba@kernel.org>
6958 L:      dri-devel@lists.freedesktop.org
6959 S:      Maintained
6960 T:      git git://anongit.freedesktop.org/drm/drm-misc
6961 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6962 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6963 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6964 F:      drivers/gpu/drm/tidss/
6965
6966 DRM DRIVERS FOR TI LCDC
6967 M:      Jyri Sarha <jyri.sarha@iki.fi>
6968 R:      Tomi Valkeinen <tomba@kernel.org>
6969 L:      dri-devel@lists.freedesktop.org
6970 S:      Maintained
6971 F:      Documentation/devicetree/bindings/display/tilcdc/
6972 F:      drivers/gpu/drm/tilcdc/
6973
6974 DRM DRIVERS FOR TI OMAP
6975 M:      Tomi Valkeinen <tomba@kernel.org>
6976 L:      dri-devel@lists.freedesktop.org
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/display/ti/
6979 F:      drivers/gpu/drm/omapdrm/
6980
6981 DRM DRIVERS FOR V3D
6982 M:      Emma Anholt <emma@anholt.net>
6983 M:      Melissa Wen <mwen@igalia.com>
6984 S:      Supported
6985 T:      git git://anongit.freedesktop.org/drm/drm-misc
6986 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6987 F:      drivers/gpu/drm/v3d/
6988 F:      include/uapi/drm/v3d_drm.h
6989
6990 DRM DRIVERS FOR VC4
6991 M:      Emma Anholt <emma@anholt.net>
6992 M:      Maxime Ripard <mripard@kernel.org>
6993 S:      Supported
6994 T:      git git://github.com/anholt/linux
6995 T:      git git://anongit.freedesktop.org/drm/drm-misc
6996 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6997 F:      drivers/gpu/drm/vc4/
6998 F:      include/uapi/drm/vc4_drm.h
6999
7000 DRM DRIVERS FOR VIVANTE GPU IP
7001 M:      Lucas Stach <l.stach@pengutronix.de>
7002 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7003 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7004 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7005 L:      dri-devel@lists.freedesktop.org
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7008 F:      drivers/gpu/drm/etnaviv/
7009 F:      include/uapi/drm/etnaviv_drm.h
7010
7011 DRM DRIVERS FOR XEN
7012 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7013 L:      dri-devel@lists.freedesktop.org
7014 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7015 S:      Supported
7016 T:      git git://anongit.freedesktop.org/drm/drm-misc
7017 F:      Documentation/gpu/xen-front.rst
7018 F:      drivers/gpu/drm/xen/
7019
7020 DRM DRIVERS FOR XILINX
7021 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7022 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7023 L:      dri-devel@lists.freedesktop.org
7024 S:      Maintained
7025 T:      git git://anongit.freedesktop.org/drm/drm-misc
7026 F:      Documentation/devicetree/bindings/display/xlnx/
7027 F:      drivers/gpu/drm/xlnx/
7028
7029 DRM PANEL DRIVERS
7030 M:      Thierry Reding <thierry.reding@gmail.com>
7031 R:      Sam Ravnborg <sam@ravnborg.org>
7032 L:      dri-devel@lists.freedesktop.org
7033 S:      Maintained
7034 T:      git git://anongit.freedesktop.org/drm/drm-misc
7035 F:      Documentation/devicetree/bindings/display/panel/
7036 F:      drivers/gpu/drm/drm_panel.c
7037 F:      drivers/gpu/drm/panel/
7038 F:      include/drm/drm_panel.h
7039
7040 DRM PRIVACY-SCREEN CLASS
7041 M:      Hans de Goede <hdegoede@redhat.com>
7042 L:      dri-devel@lists.freedesktop.org
7043 S:      Maintained
7044 T:      git git://anongit.freedesktop.org/drm/drm-misc
7045 F:      drivers/gpu/drm/drm_privacy_screen*
7046 F:      include/drm/drm_privacy_screen*
7047
7048 DRM TTM SUBSYSTEM
7049 M:      Christian Koenig <christian.koenig@amd.com>
7050 M:      Huang Rui <ray.huang@amd.com>
7051 L:      dri-devel@lists.freedesktop.org
7052 S:      Maintained
7053 T:      git git://anongit.freedesktop.org/drm/drm-misc
7054 F:      drivers/gpu/drm/ttm/
7055 F:      include/drm/ttm/
7056
7057 DRM GPU SCHEDULER
7058 M:      Luben Tuikov <luben.tuikov@amd.com>
7059 L:      dri-devel@lists.freedesktop.org
7060 S:      Maintained
7061 T:      git git://anongit.freedesktop.org/drm/drm-misc
7062 F:      drivers/gpu/drm/scheduler/
7063 F:      include/drm/gpu_scheduler.h
7064
7065 DSBR100 USB FM RADIO DRIVER
7066 M:      Alexey Klimov <klimov.linux@gmail.com>
7067 L:      linux-media@vger.kernel.org
7068 S:      Maintained
7069 T:      git git://linuxtv.org/media_tree.git
7070 F:      drivers/media/radio/dsbr100.c
7071
7072 DT3155 MEDIA DRIVER
7073 M:      Hans Verkuil <hverkuil@xs4all.nl>
7074 L:      linux-media@vger.kernel.org
7075 S:      Odd Fixes
7076 W:      https://linuxtv.org
7077 T:      git git://linuxtv.org/media_tree.git
7078 F:      drivers/media/pci/dt3155/
7079
7080 DVB_USB_AF9015 MEDIA DRIVER
7081 M:      Antti Palosaari <crope@iki.fi>
7082 L:      linux-media@vger.kernel.org
7083 S:      Maintained
7084 W:      https://linuxtv.org
7085 W:      http://palosaari.fi/linux/
7086 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7087 T:      git git://linuxtv.org/anttip/media_tree.git
7088 F:      drivers/media/usb/dvb-usb-v2/af9015*
7089
7090 DVB_USB_AF9035 MEDIA DRIVER
7091 M:      Antti Palosaari <crope@iki.fi>
7092 L:      linux-media@vger.kernel.org
7093 S:      Maintained
7094 W:      https://linuxtv.org
7095 W:      http://palosaari.fi/linux/
7096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7097 T:      git git://linuxtv.org/anttip/media_tree.git
7098 F:      drivers/media/usb/dvb-usb-v2/af9035*
7099
7100 DVB_USB_ANYSEE MEDIA DRIVER
7101 M:      Antti Palosaari <crope@iki.fi>
7102 L:      linux-media@vger.kernel.org
7103 S:      Maintained
7104 W:      https://linuxtv.org
7105 W:      http://palosaari.fi/linux/
7106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7107 T:      git git://linuxtv.org/anttip/media_tree.git
7108 F:      drivers/media/usb/dvb-usb-v2/anysee*
7109
7110 DVB_USB_AU6610 MEDIA DRIVER
7111 M:      Antti Palosaari <crope@iki.fi>
7112 L:      linux-media@vger.kernel.org
7113 S:      Maintained
7114 W:      https://linuxtv.org
7115 W:      http://palosaari.fi/linux/
7116 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7117 T:      git git://linuxtv.org/anttip/media_tree.git
7118 F:      drivers/media/usb/dvb-usb-v2/au6610*
7119
7120 DVB_USB_CE6230 MEDIA DRIVER
7121 M:      Antti Palosaari <crope@iki.fi>
7122 L:      linux-media@vger.kernel.org
7123 S:      Maintained
7124 W:      https://linuxtv.org
7125 W:      http://palosaari.fi/linux/
7126 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7127 T:      git git://linuxtv.org/anttip/media_tree.git
7128 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7129
7130 DVB_USB_CXUSB MEDIA DRIVER
7131 M:      Michael Krufky <mkrufky@linuxtv.org>
7132 L:      linux-media@vger.kernel.org
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://github.com/mkrufky
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/media_tree.git
7138 F:      drivers/media/usb/dvb-usb/cxusb*
7139
7140 DVB_USB_EC168 MEDIA DRIVER
7141 M:      Antti Palosaari <crope@iki.fi>
7142 L:      linux-media@vger.kernel.org
7143 S:      Maintained
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 F:      drivers/media/usb/dvb-usb-v2/ec168*
7149
7150 DVB_USB_GL861 MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7156 T:      git git://linuxtv.org/anttip/media_tree.git
7157 F:      drivers/media/usb/dvb-usb-v2/gl861*
7158
7159 DVB_USB_MXL111SF MEDIA DRIVER
7160 M:      Michael Krufky <mkrufky@linuxtv.org>
7161 L:      linux-media@vger.kernel.org
7162 S:      Maintained
7163 W:      https://linuxtv.org
7164 W:      http://github.com/mkrufky
7165 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7166 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7167 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7168
7169 DVB_USB_RTL28XXU MEDIA DRIVER
7170 M:      Antti Palosaari <crope@iki.fi>
7171 L:      linux-media@vger.kernel.org
7172 S:      Maintained
7173 W:      https://linuxtv.org
7174 W:      http://palosaari.fi/linux/
7175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7176 T:      git git://linuxtv.org/anttip/media_tree.git
7177 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7178
7179 DVB_USB_V2 MEDIA DRIVER
7180 M:      Antti Palosaari <crope@iki.fi>
7181 L:      linux-media@vger.kernel.org
7182 S:      Maintained
7183 W:      https://linuxtv.org
7184 W:      http://palosaari.fi/linux/
7185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7186 T:      git git://linuxtv.org/anttip/media_tree.git
7187 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7188 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7189
7190 DYNAMIC DEBUG
7191 M:      Jason Baron <jbaron@akamai.com>
7192 S:      Maintained
7193 F:      include/linux/dynamic_debug.h
7194 F:      lib/dynamic_debug.c
7195 M:      Jim Cromie <jim.cromie@gmail.com>
7196 F:      lib/test_dynamic_debug.c
7197
7198 DYNAMIC INTERRUPT MODERATION
7199 M:      Tal Gilboa <talgi@nvidia.com>
7200 S:      Maintained
7201 F:      Documentation/networking/net_dim.rst
7202 F:      include/linux/dim.h
7203 F:      lib/dim/
7204
7205 DZ DECSTATION DZ11 SERIAL DRIVER
7206 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7207 S:      Maintained
7208 F:      drivers/tty/serial/dz.*
7209
7210 E3X0 POWER BUTTON DRIVER
7211 M:      Moritz Fischer <moritz.fischer@ettus.com>
7212 L:      usrp-users@lists.ettus.com
7213 S:      Supported
7214 W:      http://www.ettus.com
7215 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7216 F:      drivers/input/misc/e3x0-button.c
7217
7218 E4000 MEDIA DRIVER
7219 M:      Antti Palosaari <crope@iki.fi>
7220 L:      linux-media@vger.kernel.org
7221 S:      Maintained
7222 W:      https://linuxtv.org
7223 W:      http://palosaari.fi/linux/
7224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7225 T:      git git://linuxtv.org/anttip/media_tree.git
7226 F:      drivers/media/tuners/e4000*
7227
7228 EARTH_PT1 MEDIA DRIVER
7229 M:      Akihiro Tsukada <tskd08@gmail.com>
7230 L:      linux-media@vger.kernel.org
7231 S:      Odd Fixes
7232 F:      drivers/media/pci/pt1/
7233
7234 EARTH_PT3 MEDIA DRIVER
7235 M:      Akihiro Tsukada <tskd08@gmail.com>
7236 L:      linux-media@vger.kernel.org
7237 S:      Odd Fixes
7238 F:      drivers/media/pci/pt3/
7239
7240 EC100 MEDIA DRIVER
7241 M:      Antti Palosaari <crope@iki.fi>
7242 L:      linux-media@vger.kernel.org
7243 S:      Maintained
7244 W:      https://linuxtv.org
7245 W:      http://palosaari.fi/linux/
7246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7247 T:      git git://linuxtv.org/anttip/media_tree.git
7248 F:      drivers/media/dvb-frontends/ec100*
7249
7250 ECRYPT FILE SYSTEM
7251 M:      Tyler Hicks <code@tyhicks.com>
7252 L:      ecryptfs@vger.kernel.org
7253 S:      Odd Fixes
7254 W:      http://ecryptfs.org
7255 W:      https://launchpad.net/ecryptfs
7256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7257 F:      Documentation/filesystems/ecryptfs.rst
7258 F:      fs/ecryptfs/
7259
7260 EDAC-AMD64
7261 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7262 L:      linux-edac@vger.kernel.org
7263 S:      Supported
7264 F:      drivers/edac/amd64_edac*
7265 F:      drivers/edac/mce_amd*
7266
7267 EDAC-ARMADA
7268 M:      Jan Luebbe <jlu@pengutronix.de>
7269 L:      linux-edac@vger.kernel.org
7270 S:      Maintained
7271 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7272 F:      drivers/edac/armada_xp_*
7273
7274 EDAC-AST2500
7275 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7276 S:      Supported
7277 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7278 F:      drivers/edac/aspeed_edac.c
7279
7280 EDAC-BLUEFIELD
7281 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7282 S:      Supported
7283 F:      drivers/edac/bluefield_edac.c
7284
7285 EDAC-CALXEDA
7286 M:      Andre Przywara <andre.przywara@arm.com>
7287 L:      linux-edac@vger.kernel.org
7288 S:      Maintained
7289 F:      drivers/edac/highbank*
7290
7291 EDAC-CAVIUM OCTEON
7292 M:      Ralf Baechle <ralf@linux-mips.org>
7293 L:      linux-edac@vger.kernel.org
7294 L:      linux-mips@vger.kernel.org
7295 S:      Supported
7296 F:      drivers/edac/octeon_edac*
7297
7298 EDAC-CAVIUM THUNDERX
7299 M:      Robert Richter <rric@kernel.org>
7300 L:      linux-edac@vger.kernel.org
7301 S:      Odd Fixes
7302 F:      drivers/edac/thunderx_edac*
7303
7304 EDAC-CORE
7305 M:      Borislav Petkov <bp@alien8.de>
7306 M:      Tony Luck <tony.luck@intel.com>
7307 R:      James Morse <james.morse@arm.com>
7308 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7309 R:      Robert Richter <rric@kernel.org>
7310 L:      linux-edac@vger.kernel.org
7311 S:      Supported
7312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7313 F:      Documentation/admin-guide/ras.rst
7314 F:      Documentation/driver-api/edac.rst
7315 F:      drivers/edac/
7316 F:      include/linux/edac.h
7317
7318 EDAC-DMC520
7319 M:      Lei Wang <lewan@microsoft.com>
7320 L:      linux-edac@vger.kernel.org
7321 S:      Supported
7322 F:      drivers/edac/dmc520_edac.c
7323
7324 EDAC-E752X
7325 M:      Mark Gross <markgross@kernel.org>
7326 L:      linux-edac@vger.kernel.org
7327 S:      Maintained
7328 F:      drivers/edac/e752x_edac.c
7329
7330 EDAC-E7XXX
7331 L:      linux-edac@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/edac/e7xxx_edac.c
7334
7335 EDAC-FSL_DDR
7336 M:      York Sun <york.sun@nxp.com>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/fsl_ddr_edac.*
7340
7341 EDAC-GHES
7342 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7343 L:      linux-edac@vger.kernel.org
7344 S:      Maintained
7345 F:      drivers/edac/ghes_edac.c
7346
7347 EDAC-I10NM
7348 M:      Tony Luck <tony.luck@intel.com>
7349 L:      linux-edac@vger.kernel.org
7350 S:      Maintained
7351 F:      drivers/edac/i10nm_base.c
7352
7353 EDAC-I3000
7354 L:      linux-edac@vger.kernel.org
7355 S:      Orphan
7356 F:      drivers/edac/i3000_edac.c
7357
7358 EDAC-I5000
7359 L:      linux-edac@vger.kernel.org
7360 S:      Maintained
7361 F:      drivers/edac/i5000_edac.c
7362
7363 EDAC-I5400
7364 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7365 L:      linux-edac@vger.kernel.org
7366 S:      Maintained
7367 F:      drivers/edac/i5400_edac.c
7368
7369 EDAC-I7300
7370 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7371 L:      linux-edac@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/edac/i7300_edac.c
7374
7375 EDAC-I7CORE
7376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7377 L:      linux-edac@vger.kernel.org
7378 S:      Maintained
7379 F:      drivers/edac/i7core_edac.c
7380
7381 EDAC-I82443BXGX
7382 M:      Tim Small <tim@buttersideup.com>
7383 L:      linux-edac@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/edac/i82443bxgx_edac.c
7386
7387 EDAC-I82975X
7388 M:      "Arvind R." <arvino55@gmail.com>
7389 L:      linux-edac@vger.kernel.org
7390 S:      Maintained
7391 F:      drivers/edac/i82975x_edac.c
7392
7393 EDAC-IE31200
7394 M:      Jason Baron <jbaron@akamai.com>
7395 L:      linux-edac@vger.kernel.org
7396 S:      Maintained
7397 F:      drivers/edac/ie31200_edac.c
7398
7399 EDAC-IGEN6
7400 M:      Tony Luck <tony.luck@intel.com>
7401 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7402 L:      linux-edac@vger.kernel.org
7403 S:      Maintained
7404 F:      drivers/edac/igen6_edac.c
7405
7406 EDAC-MPC85XX
7407 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7408 L:      linux-edac@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/edac/mpc85xx_edac.[ch]
7411
7412 EDAC-PASEMI
7413 M:      Egor Martovetsky <egor@pasemi.com>
7414 L:      linux-edac@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/edac/pasemi_edac.c
7417
7418 EDAC-PND2
7419 M:      Tony Luck <tony.luck@intel.com>
7420 L:      linux-edac@vger.kernel.org
7421 S:      Maintained
7422 F:      drivers/edac/pnd2_edac.[ch]
7423
7424 EDAC-QCOM
7425 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7426 L:      linux-arm-msm@vger.kernel.org
7427 L:      linux-edac@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/edac/qcom_edac.c
7430
7431 EDAC-R82600
7432 M:      Tim Small <tim@buttersideup.com>
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/r82600_edac.c
7436
7437 EDAC-SBRIDGE
7438 M:      Tony Luck <tony.luck@intel.com>
7439 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7440 L:      linux-edac@vger.kernel.org
7441 S:      Maintained
7442 F:      drivers/edac/sb_edac.c
7443
7444 EDAC-SKYLAKE
7445 M:      Tony Luck <tony.luck@intel.com>
7446 L:      linux-edac@vger.kernel.org
7447 S:      Maintained
7448 F:      drivers/edac/skx_*.[ch]
7449
7450 EDAC-TI
7451 M:      Tero Kristo <kristo@kernel.org>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Odd Fixes
7454 F:      drivers/edac/ti_edac.c
7455
7456 EDIROL UA-101/UA-1000 DRIVER
7457 M:      Clemens Ladisch <clemens@ladisch.de>
7458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7459 S:      Maintained
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7461 F:      sound/usb/misc/ua101.c
7462
7463 EFI TEST DRIVER
7464 M:      Ivan Hu <ivan.hu@canonical.com>
7465 M:      Ard Biesheuvel <ardb@kernel.org>
7466 L:      linux-efi@vger.kernel.org
7467 S:      Maintained
7468 F:      drivers/firmware/efi/test/
7469
7470 EFI VARIABLE FILESYSTEM
7471 M:      Jeremy Kerr <jk@ozlabs.org>
7472 M:      Ard Biesheuvel <ardb@kernel.org>
7473 L:      linux-efi@vger.kernel.org
7474 S:      Maintained
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7476 F:      fs/efivarfs/
7477
7478 EFIFB FRAMEBUFFER DRIVER
7479 M:      Peter Jones <pjones@redhat.com>
7480 L:      linux-fbdev@vger.kernel.org
7481 S:      Maintained
7482 F:      drivers/video/fbdev/efifb.c
7483
7484 EFS FILESYSTEM
7485 S:      Orphan
7486 W:      http://aeschi.ch.eu.org/efs/
7487 F:      fs/efs/
7488
7489 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7490 M:      Douglas Miller <dougmill@linux.ibm.com>
7491 L:      netdev@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/net/ethernet/ibm/ehea/
7494
7495 ELM327 CAN NETWORK DRIVER
7496 M:      Max Staudt <max@enpas.org>
7497 L:      linux-can@vger.kernel.org
7498 S:      Maintained
7499 F:      Documentation/networking/device_drivers/can/can327.rst
7500 F:      drivers/net/can/can327.c
7501
7502 EM28XX VIDEO4LINUX DRIVER
7503 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7504 L:      linux-media@vger.kernel.org
7505 S:      Maintained
7506 W:      https://linuxtv.org
7507 T:      git git://linuxtv.org/media_tree.git
7508 F:      Documentation/admin-guide/media/em28xx*
7509 F:      drivers/media/usb/em28xx/
7510
7511 EMBEDDED LINUX
7512 M:      Olivia Mackall <olivia@selenic.com>
7513 M:      David Woodhouse <dwmw2@infradead.org>
7514 L:      linux-embedded@vger.kernel.org
7515 S:      Maintained
7516
7517 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7518 M:      Adrian Hunter <adrian.hunter@intel.com>
7519 M:      Ritesh Harjani <riteshh@codeaurora.org>
7520 M:      Asutosh Das <asutoshd@codeaurora.org>
7521 L:      linux-mmc@vger.kernel.org
7522 S:      Supported
7523 F:      drivers/mmc/host/cqhci*
7524
7525 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7526 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7527 L:      linux-scsi@vger.kernel.org
7528 S:      Supported
7529 W:      http://www.broadcom.com
7530 F:      drivers/scsi/be2iscsi/
7531
7532 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7533 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7534 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7535 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7536 L:      netdev@vger.kernel.org
7537 S:      Supported
7538 W:      http://www.emulex.com
7539 F:      drivers/net/ethernet/emulex/benet/
7540
7541 EMULEX ONECONNECT ROCE DRIVER
7542 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7543 L:      linux-rdma@vger.kernel.org
7544 S:      Odd Fixes
7545 W:      http://www.broadcom.com
7546 F:      drivers/infiniband/hw/ocrdma/
7547 F:      include/uapi/rdma/ocrdma-abi.h
7548
7549 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7550 M:      James Smart <james.smart@broadcom.com>
7551 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7552 L:      linux-scsi@vger.kernel.org
7553 S:      Supported
7554 W:      http://www.broadcom.com
7555 F:      drivers/scsi/lpfc/
7556
7557 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7558 M:      James Smart <james.smart@broadcom.com>
7559 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7560 L:      linux-scsi@vger.kernel.org
7561 L:      target-devel@vger.kernel.org
7562 S:      Supported
7563 W:      http://www.broadcom.com
7564 F:      drivers/scsi/elx/
7565
7566 ENE CB710 FLASH CARD READER DRIVER
7567 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7568 S:      Maintained
7569 F:      drivers/misc/cb710/
7570 F:      drivers/mmc/host/cb710-mmc.*
7571 F:      include/linux/cb710.h
7572
7573 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7574 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7575 S:      Maintained
7576 F:      drivers/media/rc/ene_ir.*
7577
7578 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7579 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7580 L:      linuxppc-dev@lists.ozlabs.org
7581 S:      Maintained
7582 F:      drivers/tty/ehv_bytechan.c
7583
7584 EPSON S1D13XXX FRAMEBUFFER DRIVER
7585 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7586 S:      Maintained
7587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7588 F:      drivers/video/fbdev/s1d13xxxfb.c
7589 F:      include/video/s1d13xxxfb.h
7590
7591 EROFS FILE SYSTEM
7592 M:      Gao Xiang <xiang@kernel.org>
7593 M:      Chao Yu <chao@kernel.org>
7594 R:      Yue Hu <huyue2@coolpad.com>
7595 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7596 L:      linux-erofs@lists.ozlabs.org
7597 S:      Maintained
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7599 F:      Documentation/ABI/testing/sysfs-fs-erofs
7600 F:      Documentation/filesystems/erofs.rst
7601 F:      fs/erofs/
7602 F:      include/trace/events/erofs.h
7603
7604 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7605 M:      Jeff Layton <jlayton@kernel.org>
7606 S:      Maintained
7607 F:      include/linux/errseq.h
7608 F:      lib/errseq.c
7609
7610 ESD CAN/USB DRIVERS
7611 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7612 R:      socketcan@esd.eu
7613 L:      linux-can@vger.kernel.org
7614 S:      Maintained
7615 F:      drivers/net/can/usb/esd_usb.c
7616
7617 ET131X NETWORK DRIVER
7618 M:      Mark Einon <mark.einon@gmail.com>
7619 S:      Odd Fixes
7620 F:      drivers/net/ethernet/agere/
7621
7622 ETAS ES58X CAN/USB DRIVER
7623 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7624 L:      linux-can@vger.kernel.org
7625 S:      Maintained
7626 F:      Documentation/networking/devlink/etas_es58x.rst
7627 F:      drivers/net/can/usb/etas_es58x/
7628
7629 ETHERNET BRIDGE
7630 M:      Roopa Prabhu <roopa@nvidia.com>
7631 M:      Nikolay Aleksandrov <razor@blackwall.org>
7632 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7633 L:      netdev@vger.kernel.org
7634 S:      Maintained
7635 W:      http://www.linuxfoundation.org/en/Net:Bridge
7636 F:      include/linux/netfilter_bridge/
7637 F:      net/bridge/
7638
7639 ETHERNET PHY LIBRARY
7640 M:      Andrew Lunn <andrew@lunn.ch>
7641 M:      Heiner Kallweit <hkallweit1@gmail.com>
7642 R:      Russell King <linux@armlinux.org.uk>
7643 L:      netdev@vger.kernel.org
7644 S:      Maintained
7645 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7646 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7647 F:      Documentation/devicetree/bindings/net/mdio*
7648 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7649 F:      Documentation/networking/phy.rst
7650 F:      drivers/net/mdio/
7651 F:      drivers/net/mdio/acpi_mdio.c
7652 F:      drivers/net/mdio/fwnode_mdio.c
7653 F:      drivers/net/mdio/of_mdio.c
7654 F:      drivers/net/pcs/
7655 F:      drivers/net/phy/
7656 F:      include/dt-bindings/net/qca-ar803x.h
7657 F:      include/linux/linkmode.h
7658 F:      include/linux/*mdio*.h
7659 F:      include/linux/mdio/*.h
7660 F:      include/linux/mii.h
7661 F:      include/linux/of_net.h
7662 F:      include/linux/phy.h
7663 F:      include/linux/phy_fixed.h
7664 F:      include/linux/platform_data/mdio-bcm-unimac.h
7665 F:      include/linux/platform_data/mdio-gpio.h
7666 F:      include/trace/events/mdio.h
7667 F:      include/uapi/linux/mdio.h
7668 F:      include/uapi/linux/mii.h
7669 F:      net/core/of_net.c
7670
7671 EXEC & BINFMT API
7672 R:      Eric Biederman <ebiederm@xmission.com>
7673 R:      Kees Cook <keescook@chromium.org>
7674 L:      linux-mm@kvack.org
7675 S:      Supported
7676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7677 F:      fs/*binfmt_*.c
7678 F:      fs/exec.c
7679 F:      include/linux/binfmts.h
7680 F:      include/linux/elf.h
7681 F:      include/uapi/linux/binfmts.h
7682 F:      include/uapi/linux/elf.h
7683 F:      tools/testing/selftests/exec/
7684 N:      asm/elf.h
7685 N:      binfmt
7686
7687 EXFAT FILE SYSTEM
7688 M:      Namjae Jeon <linkinjeon@kernel.org>
7689 M:      Sungjong Seo <sj1557.seo@samsung.com>
7690 L:      linux-fsdevel@vger.kernel.org
7691 S:      Maintained
7692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7693 F:      fs/exfat/
7694
7695 EXT2 FILE SYSTEM
7696 M:      Jan Kara <jack@suse.com>
7697 L:      linux-ext4@vger.kernel.org
7698 S:      Maintained
7699 F:      Documentation/filesystems/ext2.rst
7700 F:      fs/ext2/
7701 F:      include/linux/ext2*
7702
7703 EXT4 FILE SYSTEM
7704 M:      "Theodore Ts'o" <tytso@mit.edu>
7705 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7706 L:      linux-ext4@vger.kernel.org
7707 S:      Maintained
7708 W:      http://ext4.wiki.kernel.org
7709 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7711 F:      Documentation/filesystems/ext4/
7712 F:      fs/ext4/
7713 F:      include/trace/events/ext4.h
7714
7715 Extended Verification Module (EVM)
7716 M:      Mimi Zohar <zohar@linux.ibm.com>
7717 L:      linux-integrity@vger.kernel.org
7718 S:      Supported
7719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7720 F:      security/integrity/evm/
7721 F:      security/integrity/
7722
7723 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7724 M:      Ard Biesheuvel <ardb@kernel.org>
7725 L:      linux-efi@vger.kernel.org
7726 S:      Maintained
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7728 F:      Documentation/admin-guide/efi-stub.rst
7729 F:      arch/*/include/asm/efi.h
7730 F:      arch/*/kernel/efi.c
7731 F:      arch/arm/boot/compressed/efi-header.S
7732 F:      arch/x86/platform/efi/
7733 F:      drivers/firmware/efi/
7734 F:      include/linux/efi*.h
7735
7736 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7737 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7738 M:      Chanwoo Choi <cw00.choi@samsung.com>
7739 L:      linux-kernel@vger.kernel.org
7740 S:      Maintained
7741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7742 F:      Documentation/devicetree/bindings/extcon/
7743 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7744 F:      drivers/extcon/
7745 F:      include/linux/extcon.h
7746 F:      include/linux/extcon/
7747
7748 EXTRA BOOT CONFIG
7749 M:      Masami Hiramatsu <mhiramat@kernel.org>
7750 L:      linux-kernel@vger.kernel.org
7751 L:      linux-trace-kernel@vger.kernel.org
7752 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7753 S:      Maintained
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7755 F:      Documentation/admin-guide/bootconfig.rst
7756 F:      fs/proc/bootconfig.c
7757 F:      include/linux/bootconfig.h
7758 F:      lib/bootconfig-data.S
7759 F:      lib/bootconfig.c
7760 F:      tools/bootconfig/*
7761 F:      tools/bootconfig/scripts/*
7762
7763 EXYNOS DP DRIVER
7764 M:      Jingoo Han <jingoohan1@gmail.com>
7765 L:      dri-devel@lists.freedesktop.org
7766 S:      Maintained
7767 F:      drivers/gpu/drm/exynos/exynos_dp*
7768
7769 EXYNOS SYSMMU (IOMMU) driver
7770 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7771 L:      iommu@lists.linux.dev
7772 S:      Maintained
7773 F:      drivers/iommu/exynos-iommu.c
7774
7775 F2FS FILE SYSTEM
7776 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7777 M:      Chao Yu <chao@kernel.org>
7778 L:      linux-f2fs-devel@lists.sourceforge.net
7779 S:      Maintained
7780 W:      https://f2fs.wiki.kernel.org/
7781 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7783 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7784 F:      Documentation/filesystems/f2fs.rst
7785 F:      fs/f2fs/
7786 F:      include/linux/f2fs_fs.h
7787 F:      include/trace/events/f2fs.h
7788 F:      include/uapi/linux/f2fs.h
7789
7790 F71805F HARDWARE MONITORING DRIVER
7791 M:      Jean Delvare <jdelvare@suse.com>
7792 L:      linux-hwmon@vger.kernel.org
7793 S:      Maintained
7794 F:      Documentation/hwmon/f71805f.rst
7795 F:      drivers/hwmon/f71805f.c
7796
7797 FADDR2LINE
7798 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7799 S:      Maintained
7800 F:      scripts/faddr2line
7801
7802 FAILOVER MODULE
7803 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7804 L:      netdev@vger.kernel.org
7805 S:      Supported
7806 F:      Documentation/networking/failover.rst
7807 F:      include/net/failover.h
7808 F:      net/core/failover.c
7809
7810 FANOTIFY
7811 M:      Jan Kara <jack@suse.cz>
7812 R:      Amir Goldstein <amir73il@gmail.com>
7813 R:      Matthew Bobrowski <repnop@google.com>
7814 L:      linux-fsdevel@vger.kernel.org
7815 S:      Maintained
7816 F:      fs/notify/fanotify/
7817 F:      include/linux/fanotify.h
7818 F:      include/uapi/linux/fanotify.h
7819
7820 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7821 M:      Linus Walleij <linus.walleij@linaro.org>
7822 L:      linux-usb@vger.kernel.org
7823 S:      Maintained
7824 F:      drivers/usb/fotg210/
7825
7826 FARSYNC SYNCHRONOUS DRIVER
7827 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7828 S:      Supported
7829 W:      http://www.farsite.co.uk/
7830 F:      drivers/net/wan/farsync.*
7831
7832 FAULT INJECTION SUPPORT
7833 M:      Akinobu Mita <akinobu.mita@gmail.com>
7834 S:      Supported
7835 F:      Documentation/fault-injection/
7836 F:      lib/fault-inject.c
7837
7838 FBTFT Framebuffer drivers
7839 L:      dri-devel@lists.freedesktop.org
7840 L:      linux-fbdev@vger.kernel.org
7841 S:      Orphan
7842 F:      drivers/staging/fbtft/
7843
7844 FC0011 TUNER DRIVER
7845 M:      Michael Buesch <m@bues.ch>
7846 L:      linux-media@vger.kernel.org
7847 S:      Maintained
7848 F:      drivers/media/tuners/fc0011.c
7849 F:      drivers/media/tuners/fc0011.h
7850
7851 FC2580 MEDIA DRIVER
7852 M:      Antti Palosaari <crope@iki.fi>
7853 L:      linux-media@vger.kernel.org
7854 S:      Maintained
7855 W:      https://linuxtv.org
7856 W:      http://palosaari.fi/linux/
7857 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7858 T:      git git://linuxtv.org/anttip/media_tree.git
7859 F:      drivers/media/tuners/fc2580*
7860
7861 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7862 M:      Hannes Reinecke <hare@suse.de>
7863 L:      linux-scsi@vger.kernel.org
7864 S:      Supported
7865 W:      www.Open-FCoE.org
7866 F:      drivers/scsi/fcoe/
7867 F:      drivers/scsi/libfc/
7868 F:      include/scsi/fc/
7869 F:      include/scsi/libfc.h
7870 F:      include/scsi/libfcoe.h
7871 F:      include/uapi/scsi/fc/
7872
7873 FILE LOCKING (flock() and fcntl()/lockf())
7874 M:      Jeff Layton <jlayton@kernel.org>
7875 M:      Chuck Lever <chuck.lever@oracle.com>
7876 L:      linux-fsdevel@vger.kernel.org
7877 S:      Maintained
7878 F:      fs/fcntl.c
7879 F:      fs/locks.c
7880 F:      include/linux/fcntl.h
7881 F:      include/uapi/linux/fcntl.h
7882
7883 FILESYSTEM DIRECT ACCESS (DAX)
7884 M:      Dan Williams <dan.j.williams@intel.com>
7885 R:      Matthew Wilcox <willy@infradead.org>
7886 R:      Jan Kara <jack@suse.cz>
7887 L:      linux-fsdevel@vger.kernel.org
7888 L:      nvdimm@lists.linux.dev
7889 S:      Supported
7890 F:      fs/dax.c
7891 F:      include/linux/dax.h
7892 F:      include/trace/events/fs_dax.h
7893
7894 FILESYSTEMS (VFS and infrastructure)
7895 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7896 L:      linux-fsdevel@vger.kernel.org
7897 S:      Maintained
7898 F:      fs/*
7899 F:      include/linux/fs.h
7900 F:      include/linux/fs_types.h
7901 F:      include/uapi/linux/fs.h
7902 F:      include/uapi/linux/openat2.h
7903
7904 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7905 M:      Riku Voipio <riku.voipio@iki.fi>
7906 L:      linux-hwmon@vger.kernel.org
7907 S:      Maintained
7908 F:      drivers/hwmon/f75375s.c
7909 F:      include/linux/f75375s.h
7910
7911 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7912 M:      Clemens Ladisch <clemens@ladisch.de>
7913 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7914 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7915 S:      Maintained
7916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7917 F:      include/uapi/sound/firewire.h
7918 F:      sound/firewire/
7919
7920 FIREWIRE MEDIA DRIVERS (firedtv)
7921 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7922 L:      linux-media@vger.kernel.org
7923 L:      linux1394-devel@lists.sourceforge.net
7924 S:      Maintained
7925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7926 F:      drivers/media/firewire/
7927
7928 FIREWIRE SBP-2 TARGET
7929 M:      Chris Boot <bootc@bootc.net>
7930 L:      linux-scsi@vger.kernel.org
7931 L:      target-devel@vger.kernel.org
7932 L:      linux1394-devel@lists.sourceforge.net
7933 S:      Maintained
7934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7935 F:      drivers/target/sbp/
7936
7937 FIREWIRE SUBSYSTEM
7938 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7939 L:      linux1394-devel@lists.sourceforge.net
7940 S:      Maintained
7941 W:      http://ieee1394.wiki.kernel.org/
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7943 F:      drivers/firewire/
7944 F:      include/linux/firewire.h
7945 F:      include/uapi/linux/firewire*.h
7946 F:      tools/firewire/
7947
7948 FIRMWARE FRAMEWORK FOR ARMV8-A
7949 M:      Sudeep Holla <sudeep.holla@arm.com>
7950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7951 S:      Maintained
7952 F:      drivers/firmware/arm_ffa/
7953 F:      include/linux/arm_ffa.h
7954
7955 FIRMWARE LOADER (request_firmware)
7956 M:      Luis Chamberlain <mcgrof@kernel.org>
7957 M:      Russ Weight <russell.h.weight@intel.com>
7958 L:      linux-kernel@vger.kernel.org
7959 S:      Maintained
7960 F:      Documentation/firmware_class/
7961 F:      drivers/base/firmware_loader/
7962 F:      include/linux/firmware.h
7963
7964 FLEXTIMER FTM-QUADDEC DRIVER
7965 M:      Patrick Havelange <patrick.havelange@essensium.com>
7966 L:      linux-iio@vger.kernel.org
7967 S:      Maintained
7968 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7969 F:      drivers/counter/ftm-quaddec.c
7970
7971 FLOPPY DRIVER
7972 M:      Denis Efremov <efremov@linux.com>
7973 L:      linux-block@vger.kernel.org
7974 S:      Odd Fixes
7975 F:      drivers/block/floppy.c
7976
7977 FLYSKY FSIA6B RC RECEIVER
7978 M:      Markus Koch <markus@notsyncing.net>
7979 L:      linux-input@vger.kernel.org
7980 S:      Maintained
7981 F:      drivers/input/joystick/fsia6b.c
7982
7983 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7984 M:      Geoffrey D. Bennett <g@b4.vu>
7985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7988 F:      sound/usb/mixer_scarlett_gen2.c
7989
7990 FORCEDETH GIGABIT ETHERNET DRIVER
7991 M:      Rain River <rain.1986.08.12@gmail.com>
7992 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7993 L:      netdev@vger.kernel.org
7994 S:      Maintained
7995 F:      drivers/net/ethernet/nvidia/*
7996
7997 FORTIFY_SOURCE
7998 M:      Kees Cook <keescook@chromium.org>
7999 L:      linux-hardening@vger.kernel.org
8000 S:      Supported
8001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8002 F:      include/linux/fortify-string.h
8003 F:      lib/fortify_kunit.c
8004 F:      lib/memcpy_kunit.c
8005 F:      lib/strscpy_kunit.c
8006 F:      lib/test_fortify/*
8007 F:      scripts/test_fortify.sh
8008 K:      \b__NO_FORTIFY\b
8009
8010 FPGA DFL DRIVERS
8011 M:      Wu Hao <hao.wu@intel.com>
8012 R:      Tom Rix <trix@redhat.com>
8013 L:      linux-fpga@vger.kernel.org
8014 S:      Maintained
8015 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8016 F:      Documentation/fpga/dfl.rst
8017 F:      drivers/fpga/dfl*
8018 F:      drivers/uio/uio_dfl.c
8019 F:      include/linux/dfl.h
8020 F:      include/uapi/linux/fpga-dfl.h
8021
8022 FPGA MANAGER FRAMEWORK
8023 M:      Moritz Fischer <mdf@kernel.org>
8024 M:      Wu Hao <hao.wu@intel.com>
8025 M:      Xu Yilun <yilun.xu@intel.com>
8026 R:      Tom Rix <trix@redhat.com>
8027 L:      linux-fpga@vger.kernel.org
8028 S:      Maintained
8029 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8031 F:      Documentation/devicetree/bindings/fpga/
8032 F:      Documentation/driver-api/fpga/
8033 F:      Documentation/fpga/
8034 F:      drivers/fpga/
8035 F:      include/linux/fpga/
8036
8037 INTEL MAX10 BMC SECURE UPDATES
8038 M:      Russ Weight <russell.h.weight@intel.com>
8039 L:      linux-fpga@vger.kernel.org
8040 S:      Maintained
8041 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8042 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8043
8044 MICROCHIP POLARFIRE FPGA DRIVERS
8045 M:      Conor Dooley <conor.dooley@microchip.com>
8046 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8047 L:      linux-fpga@vger.kernel.org
8048 S:      Supported
8049 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8050 F:      drivers/fpga/microchip-spi.c
8051
8052 FPU EMULATOR
8053 M:      Bill Metzenthen <billm@melbpc.org.au>
8054 S:      Maintained
8055 W:      https://floatingpoint.billm.au/
8056 F:      arch/x86/math-emu/
8057
8058 FRAMEBUFFER CORE
8059 M:      Daniel Vetter <daniel@ffwll.ch>
8060 F:      drivers/video/fbdev/core/
8061 S:      Odd Fixes
8062 T:      git git://anongit.freedesktop.org/drm/drm-misc
8063
8064 FRAMEBUFFER LAYER
8065 M:      Helge Deller <deller@gmx.de>
8066 L:      linux-fbdev@vger.kernel.org
8067 L:      dri-devel@lists.freedesktop.org
8068 S:      Maintained
8069 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8071 F:      Documentation/fb/
8072 F:      drivers/video/
8073 F:      include/linux/fb.h
8074 F:      include/uapi/linux/fb.h
8075 F:      include/uapi/video/
8076 F:      include/video/
8077
8078 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8079 M:      Horia Geantă <horia.geanta@nxp.com>
8080 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8081 M:      Gaurav Jain <gaurav.jain@nxp.com>
8082 L:      linux-crypto@vger.kernel.org
8083 S:      Maintained
8084 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8085 F:      drivers/crypto/caam/
8086
8087 FREESCALE COLDFIRE M5441X MMC DRIVER
8088 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8089 L:      linux-mmc@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8092 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8093
8094 FREESCALE DIU FRAMEBUFFER DRIVER
8095 M:      Timur Tabi <timur@kernel.org>
8096 L:      linux-fbdev@vger.kernel.org
8097 S:      Maintained
8098 F:      drivers/video/fbdev/fsl-diu-fb.*
8099
8100 FREESCALE DMA DRIVER
8101 M:      Li Yang <leoyang.li@nxp.com>
8102 M:      Zhang Wei <zw@zh-kernel.org>
8103 L:      linuxppc-dev@lists.ozlabs.org
8104 S:      Maintained
8105 F:      drivers/dma/fsldma.*
8106
8107 FREESCALE DSPI DRIVER
8108 M:      Vladimir Oltean <olteanv@gmail.com>
8109 L:      linux-spi@vger.kernel.org
8110 S:      Maintained
8111 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8112 F:      drivers/spi/spi-fsl-dspi.c
8113 F:      include/linux/spi/spi-fsl-dspi.h
8114
8115 FREESCALE ENETC ETHERNET DRIVERS
8116 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8117 L:      netdev@vger.kernel.org
8118 S:      Maintained
8119 F:      drivers/net/ethernet/freescale/enetc/
8120
8121 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8122 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8123 L:      netdev@vger.kernel.org
8124 S:      Maintained
8125 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8126 F:      drivers/net/ethernet/freescale/gianfar*
8127
8128 FREESCALE GPMI NAND DRIVER
8129 M:      Han Xu <han.xu@nxp.com>
8130 L:      linux-mtd@lists.infradead.org
8131 S:      Maintained
8132 F:      drivers/mtd/nand/raw/gpmi-nand/*
8133
8134 FREESCALE I2C CPM DRIVER
8135 M:      Jochen Friedrich <jochen@scram.de>
8136 L:      linuxppc-dev@lists.ozlabs.org
8137 L:      linux-i2c@vger.kernel.org
8138 S:      Maintained
8139 F:      drivers/i2c/busses/i2c-cpm.c
8140
8141 FREESCALE IMX / MXC FEC DRIVER
8142 M:      Wei Fang <wei.fang@nxp.com>
8143 R:      Shenwei Wang <shenwei.wang@nxp.com>
8144 R:      Clark Wang <xiaoning.wang@nxp.com>
8145 R:      NXP Linux Team <linux-imx@nxp.com>
8146 L:      netdev@vger.kernel.org
8147 S:      Maintained
8148 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8149 F:      drivers/net/ethernet/freescale/fec.h
8150 F:      drivers/net/ethernet/freescale/fec_main.c
8151 F:      drivers/net/ethernet/freescale/fec_ptp.c
8152
8153 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8154 M:      Sascha Hauer <s.hauer@pengutronix.de>
8155 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8156 L:      linux-fbdev@vger.kernel.org
8157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8158 S:      Maintained
8159 F:      drivers/video/fbdev/imxfb.c
8160
8161 FREESCALE IMX DDR PMU DRIVER
8162 M:      Frank Li <Frank.li@nxp.com>
8163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8164 S:      Maintained
8165 F:      Documentation/admin-guide/perf/imx-ddr.rst
8166 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8167 F:      drivers/perf/fsl_imx8_ddr_perf.c
8168
8169 FREESCALE IMX I2C DRIVER
8170 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8171 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8172 L:      linux-i2c@vger.kernel.org
8173 S:      Maintained
8174 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8175 F:      drivers/i2c/busses/i2c-imx.c
8176
8177 FREESCALE IMX LPI2C DRIVER
8178 M:      Dong Aisheng <aisheng.dong@nxp.com>
8179 L:      linux-i2c@vger.kernel.org
8180 L:      linux-imx@nxp.com
8181 S:      Maintained
8182 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8183 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8184
8185 FREESCALE MPC I2C DRIVER
8186 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8187 L:      linux-i2c@vger.kernel.org
8188 S:      Maintained
8189 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8190 F:      drivers/i2c/busses/i2c-mpc.c
8191
8192 FREESCALE QORIQ DPAA ETHERNET DRIVER
8193 M:      Madalin Bucur <madalin.bucur@nxp.com>
8194 L:      netdev@vger.kernel.org
8195 S:      Maintained
8196 F:      drivers/net/ethernet/freescale/dpaa
8197
8198 FREESCALE QORIQ DPAA FMAN DRIVER
8199 M:      Madalin Bucur <madalin.bucur@nxp.com>
8200 L:      netdev@vger.kernel.org
8201 S:      Maintained
8202 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8203 F:      drivers/net/ethernet/freescale/fman
8204
8205 FREESCALE QORIQ PTP CLOCK DRIVER
8206 M:      Yangbo Lu <yangbo.lu@nxp.com>
8207 L:      netdev@vger.kernel.org
8208 S:      Maintained
8209 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8210 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8211 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8212 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8213 F:      drivers/ptp/ptp_qoriq.c
8214 F:      drivers/ptp/ptp_qoriq_debugfs.c
8215 F:      include/linux/fsl/ptp_qoriq.h
8216
8217 FREESCALE QUAD SPI DRIVER
8218 M:      Han Xu <han.xu@nxp.com>
8219 L:      linux-spi@vger.kernel.org
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8222 F:      drivers/spi/spi-fsl-qspi.c
8223
8224 FREESCALE QUICC ENGINE LIBRARY
8225 M:      Qiang Zhao <qiang.zhao@nxp.com>
8226 L:      linuxppc-dev@lists.ozlabs.org
8227 S:      Maintained
8228 F:      drivers/soc/fsl/qe/
8229 F:      include/soc/fsl/qe/
8230
8231 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8232 M:      Li Yang <leoyang.li@nxp.com>
8233 L:      netdev@vger.kernel.org
8234 L:      linuxppc-dev@lists.ozlabs.org
8235 S:      Maintained
8236 F:      drivers/net/ethernet/freescale/ucc_geth*
8237
8238 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8239 M:      Zhao Qiang <qiang.zhao@nxp.com>
8240 L:      netdev@vger.kernel.org
8241 L:      linuxppc-dev@lists.ozlabs.org
8242 S:      Maintained
8243 F:      drivers/net/wan/fsl_ucc_hdlc*
8244
8245 FREESCALE QUICC ENGINE UCC UART DRIVER
8246 M:      Timur Tabi <timur@kernel.org>
8247 L:      linuxppc-dev@lists.ozlabs.org
8248 S:      Maintained
8249 F:      drivers/tty/serial/ucc_uart.c
8250
8251 FREESCALE SOC DRIVERS
8252 M:      Li Yang <leoyang.li@nxp.com>
8253 L:      linuxppc-dev@lists.ozlabs.org
8254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8257 F:      Documentation/devicetree/bindings/soc/fsl/
8258 F:      drivers/soc/fsl/
8259 F:      include/linux/fsl/
8260 F:      include/soc/fsl/
8261
8262 FREESCALE SOC FS_ENET DRIVER
8263 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8264 L:      linuxppc-dev@lists.ozlabs.org
8265 L:      netdev@vger.kernel.org
8266 S:      Maintained
8267 F:      drivers/net/ethernet/freescale/fs_enet/
8268 F:      include/linux/fs_enet_pd.h
8269
8270 FREESCALE SOC SOUND DRIVERS
8271 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8272 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8273 R:      Fabio Estevam <festevam@gmail.com>
8274 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8275 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8276 L:      linuxppc-dev@lists.ozlabs.org
8277 S:      Maintained
8278 F:      sound/soc/fsl/fsl*
8279 F:      sound/soc/fsl/imx*
8280 F:      sound/soc/fsl/mpc8610_hpcd.c
8281
8282 FREESCALE USB PERIPHERAL DRIVERS
8283 M:      Li Yang <leoyang.li@nxp.com>
8284 L:      linux-usb@vger.kernel.org
8285 L:      linuxppc-dev@lists.ozlabs.org
8286 S:      Maintained
8287 F:      drivers/usb/gadget/udc/fsl*
8288
8289 FREESCALE USB PHY DRIVER
8290 M:      Ran Wang <ran.wang_1@nxp.com>
8291 L:      linux-usb@vger.kernel.org
8292 L:      linuxppc-dev@lists.ozlabs.org
8293 S:      Maintained
8294 F:      drivers/usb/phy/phy-fsl-usb*
8295
8296 FREEVXFS FILESYSTEM
8297 M:      Christoph Hellwig <hch@infradead.org>
8298 S:      Maintained
8299 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8300 F:      fs/freevxfs/
8301
8302 FREEZER
8303 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8304 M:      Pavel Machek <pavel@ucw.cz>
8305 L:      linux-pm@vger.kernel.org
8306 S:      Supported
8307 F:      Documentation/power/freezing-of-tasks.rst
8308 F:      include/linux/freezer.h
8309 F:      kernel/freezer.c
8310
8311 FRONTSWAP API
8312 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8313 L:      linux-kernel@vger.kernel.org
8314 S:      Maintained
8315 F:      include/linux/frontswap.h
8316 F:      mm/frontswap.c
8317
8318 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8319 M:      David Howells <dhowells@redhat.com>
8320 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8321 S:      Supported
8322 F:      Documentation/filesystems/caching/
8323 F:      fs/fscache/
8324 F:      include/linux/fscache*.h
8325
8326 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8327 M:      Eric Biggers <ebiggers@kernel.org>
8328 M:      Theodore Y. Ts'o <tytso@mit.edu>
8329 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8330 L:      linux-fscrypt@vger.kernel.org
8331 S:      Supported
8332 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8333 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8334 F:      Documentation/filesystems/fscrypt.rst
8335 F:      fs/crypto/
8336 F:      include/linux/fscrypt.h
8337 F:      include/uapi/linux/fscrypt.h
8338
8339 FSI SUBSYSTEM
8340 M:      Jeremy Kerr <jk@ozlabs.org>
8341 M:      Joel Stanley <joel@jms.id.au>
8342 R:      Alistar Popple <alistair@popple.id.au>
8343 R:      Eddie James <eajames@linux.ibm.com>
8344 L:      linux-fsi@lists.ozlabs.org
8345 S:      Supported
8346 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8348 F:      drivers/fsi/
8349 F:      include/linux/fsi*.h
8350 F:      include/trace/events/fsi*.h
8351
8352 FSI-ATTACHED I2C DRIVER
8353 M:      Eddie James <eajames@linux.ibm.com>
8354 L:      linux-i2c@vger.kernel.org
8355 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8356 S:      Maintained
8357 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8358 F:      drivers/i2c/busses/i2c-fsi.c
8359
8360 FSI-ATTACHED SPI DRIVER
8361 M:      Eddie James <eajames@linux.ibm.com>
8362 L:      linux-spi@vger.kernel.org
8363 S:      Maintained
8364 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8365 F:      drivers/spi/spi-fsi.c
8366
8367 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8368 M:      Jan Kara <jack@suse.cz>
8369 R:      Amir Goldstein <amir73il@gmail.com>
8370 L:      linux-fsdevel@vger.kernel.org
8371 S:      Maintained
8372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8373 F:      fs/notify/
8374 F:      include/linux/fsnotify*.h
8375
8376 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8377 M:      Eric Biggers <ebiggers@kernel.org>
8378 M:      Theodore Y. Ts'o <tytso@mit.edu>
8379 L:      fsverity@lists.linux.dev
8380 S:      Supported
8381 Q:      https://patchwork.kernel.org/project/fsverity/list/
8382 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8383 F:      Documentation/filesystems/fsverity.rst
8384 F:      fs/verity/
8385 F:      include/linux/fsverity.h
8386 F:      include/uapi/linux/fsverity.h
8387
8388 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8389 M:      Michael Zaidman <michael.zaidman@gmail.com>
8390 L:      linux-i2c@vger.kernel.org
8391 L:      linux-input@vger.kernel.org
8392 S:      Maintained
8393 F:      drivers/hid/hid-ft260.c
8394
8395 FUJITSU LAPTOP EXTRAS
8396 M:      Jonathan Woithe <jwoithe@just42.net>
8397 L:      platform-driver-x86@vger.kernel.org
8398 S:      Maintained
8399 F:      drivers/platform/x86/fujitsu-laptop.c
8400
8401 FUJITSU M-5MO LS CAMERA ISP DRIVER
8402 M:      Kyungmin Park <kyungmin.park@samsung.com>
8403 M:      Heungjun Kim <riverful.kim@samsung.com>
8404 L:      linux-media@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/media/i2c/m5mols/
8407 F:      include/media/i2c/m5mols.h
8408
8409 FUJITSU TABLET EXTRAS
8410 M:      Robert Gerlach <khnz@gmx.de>
8411 L:      platform-driver-x86@vger.kernel.org
8412 S:      Maintained
8413 F:      drivers/platform/x86/fujitsu-tablet.c
8414
8415 FUNCTION HOOKS (FTRACE)
8416 M:      Steven Rostedt <rostedt@goodmis.org>
8417 M:      Masami Hiramatsu <mhiramat@kernel.org>
8418 R:      Mark Rutland <mark.rutland@arm.com>
8419 L:      linux-kernel@vger.kernel.org
8420 L:      linux-trace-kernel@vger.kernel.org
8421 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8422 S:      Maintained
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8424 F:      Documentation/trace/ftrace*
8425 F:      kernel/trace/ftrace*
8426 F:      kernel/trace/fgraph.c
8427 F:      arch/*/*/*/*ftrace*
8428 F:      arch/*/*/*ftrace*
8429 F:      include/*/ftrace.h
8430 F:      samples/ftrace
8431
8432 FUNGIBLE ETHERNET DRIVERS
8433 M:      Dimitris Michailidis <dmichail@fungible.com>
8434 L:      netdev@vger.kernel.org
8435 S:      Supported
8436 F:      drivers/net/ethernet/fungible/
8437
8438 FUSE: FILESYSTEM IN USERSPACE
8439 M:      Miklos Szeredi <miklos@szeredi.hu>
8440 L:      linux-fsdevel@vger.kernel.org
8441 S:      Maintained
8442 W:      https://github.com/libfuse/
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8444 F:      Documentation/filesystems/fuse.rst
8445 F:      fs/fuse/
8446 F:      include/uapi/linux/fuse.h
8447
8448 FUTEX SUBSYSTEM
8449 M:      Thomas Gleixner <tglx@linutronix.de>
8450 M:      Ingo Molnar <mingo@redhat.com>
8451 R:      Peter Zijlstra <peterz@infradead.org>
8452 R:      Darren Hart <dvhart@infradead.org>
8453 R:      Davidlohr Bueso <dave@stgolabs.net>
8454 R:      André Almeida <andrealmeid@igalia.com>
8455 L:      linux-kernel@vger.kernel.org
8456 S:      Maintained
8457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8458 F:      Documentation/locking/*futex*
8459 F:      include/asm-generic/futex.h
8460 F:      include/linux/futex.h
8461 F:      include/uapi/linux/futex.h
8462 F:      kernel/futex/*
8463 F:      tools/perf/bench/futex*
8464 F:      tools/testing/selftests/futex/
8465
8466 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8467 M:      Tim Harvey <tharvey@gateworks.com>
8468 S:      Maintained
8469 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8470 F:      drivers/mfd/gateworks-gsc.c
8471 F:      include/linux/mfd/gsc.h
8472 F:      Documentation/hwmon/gsc-hwmon.rst
8473 F:      drivers/hwmon/gsc-hwmon.c
8474 F:      include/linux/platform_data/gsc_hwmon.h
8475
8476 GCC PLUGINS
8477 M:      Kees Cook <keescook@chromium.org>
8478 L:      linux-hardening@vger.kernel.org
8479 S:      Maintained
8480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8481 F:      Documentation/kbuild/gcc-plugins.rst
8482 F:      scripts/Makefile.gcc-plugins
8483 F:      scripts/gcc-plugins/
8484
8485 GCOV BASED KERNEL PROFILING
8486 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8487 S:      Maintained
8488 F:      Documentation/dev-tools/gcov.rst
8489 F:      kernel/gcov/
8490
8491 GDB KERNEL DEBUGGING HELPER SCRIPTS
8492 M:      Jan Kiszka <jan.kiszka@siemens.com>
8493 M:      Kieran Bingham <kbingham@kernel.org>
8494 S:      Supported
8495 F:      scripts/gdb/
8496
8497 GEMINI CRYPTO DRIVER
8498 M:      Corentin Labbe <clabbe@baylibre.com>
8499 L:      linux-crypto@vger.kernel.org
8500 S:      Maintained
8501 F:      drivers/crypto/gemini/
8502
8503 GEMTEK FM RADIO RECEIVER DRIVER
8504 M:      Hans Verkuil <hverkuil@xs4all.nl>
8505 L:      linux-media@vger.kernel.org
8506 S:      Maintained
8507 W:      https://linuxtv.org
8508 T:      git git://linuxtv.org/media_tree.git
8509 F:      drivers/media/radio/radio-gemtek*
8510
8511 GENERIC ARCHITECTURE TOPOLOGY
8512 M:      Sudeep Holla <sudeep.holla@arm.com>
8513 L:      linux-kernel@vger.kernel.org
8514 S:      Maintained
8515 F:      drivers/base/arch_topology.c
8516 F:      include/linux/arch_topology.h
8517
8518 GENERIC ENTRY CODE
8519 M:      Thomas Gleixner <tglx@linutronix.de>
8520 M:      Peter Zijlstra <peterz@infradead.org>
8521 M:      Andy Lutomirski <luto@kernel.org>
8522 L:      linux-kernel@vger.kernel.org
8523 S:      Maintained
8524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8525 F:      include/linux/entry-common.h
8526 F:      include/linux/entry-kvm.h
8527 F:      kernel/entry/
8528
8529 GENERIC GPIO I2C DRIVER
8530 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8531 S:      Supported
8532 F:      drivers/i2c/busses/i2c-gpio.c
8533 F:      include/linux/platform_data/i2c-gpio.h
8534
8535 GENERIC GPIO I2C MULTIPLEXER DRIVER
8536 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8537 L:      linux-i2c@vger.kernel.org
8538 S:      Supported
8539 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8540 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8541 F:      include/linux/platform_data/i2c-mux-gpio.h
8542
8543 GENERIC HDLC (WAN) DRIVERS
8544 M:      Krzysztof Halasa <khc@pm.waw.pl>
8545 S:      Maintained
8546 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8547 F:      drivers/net/wan/c101.c
8548 F:      drivers/net/wan/hd6457*
8549 F:      drivers/net/wan/hdlc*
8550 F:      drivers/net/wan/n2.c
8551 F:      drivers/net/wan/pc300too.c
8552 F:      drivers/net/wan/pci200syn.c
8553 F:      drivers/net/wan/wanxl*
8554
8555 GENERIC INCLUDE/ASM HEADER FILES
8556 M:      Arnd Bergmann <arnd@arndb.de>
8557 L:      linux-arch@vger.kernel.org
8558 S:      Maintained
8559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8560 F:      include/asm-generic/
8561 F:      include/uapi/asm-generic/
8562
8563 GENERIC PHY FRAMEWORK
8564 M:      Vinod Koul <vkoul@kernel.org>
8565 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8566 L:      linux-phy@lists.infradead.org
8567 S:      Supported
8568 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8570 F:      Documentation/devicetree/bindings/phy/
8571 F:      drivers/phy/
8572 F:      include/dt-bindings/phy/
8573 F:      include/linux/phy/
8574
8575 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8576 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8577 S:      Supported
8578 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8579
8580 GENERIC PM DOMAINS
8581 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8582 M:      Kevin Hilman <khilman@kernel.org>
8583 M:      Ulf Hansson <ulf.hansson@linaro.org>
8584 L:      linux-pm@vger.kernel.org
8585 S:      Supported
8586 F:      Documentation/devicetree/bindings/power/power?domain*
8587 F:      drivers/base/power/domain*.c
8588 F:      include/linux/pm_domain.h
8589
8590 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8591 M:      Eugen Hristev <eugen.hristev@microchip.com>
8592 L:      linux-input@vger.kernel.org
8593 S:      Maintained
8594 F:      drivers/input/touchscreen/resistive-adc-touch.c
8595
8596 GENERIC STRING LIBRARY
8597 R:      Andy Shevchenko <andy@kernel.org>
8598 S:      Maintained
8599 F:      lib/string.c
8600 F:      lib/string_helpers.c
8601 F:      lib/test_string.c
8602 F:      lib/test-string_helpers.c
8603
8604 GENERIC UIO DRIVER FOR PCI DEVICES
8605 M:      "Michael S. Tsirkin" <mst@redhat.com>
8606 L:      kvm@vger.kernel.org
8607 S:      Supported
8608 F:      drivers/uio/uio_pci_generic.c
8609
8610 GENERIC VDSO LIBRARY
8611 M:      Andy Lutomirski <luto@kernel.org>
8612 M:      Thomas Gleixner <tglx@linutronix.de>
8613 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8614 L:      linux-kernel@vger.kernel.org
8615 S:      Maintained
8616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8617 F:      include/asm-generic/vdso/vsyscall.h
8618 F:      include/vdso/
8619 F:      kernel/time/vsyscall.c
8620 F:      lib/vdso/
8621
8622 GENWQE (IBM Generic Workqueue Card)
8623 M:      Frank Haverkamp <haver@linux.ibm.com>
8624 S:      Supported
8625 F:      drivers/misc/genwqe/
8626
8627 GET_MAINTAINER SCRIPT
8628 M:      Joe Perches <joe@perches.com>
8629 S:      Maintained
8630 F:      scripts/get_maintainer.pl
8631
8632 GFS2 FILE SYSTEM
8633 M:      Bob Peterson <rpeterso@redhat.com>
8634 M:      Andreas Gruenbacher <agruenba@redhat.com>
8635 L:      cluster-devel@redhat.com
8636 S:      Supported
8637 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8639 F:      Documentation/filesystems/gfs2*
8640 F:      fs/gfs2/
8641 F:      include/uapi/linux/gfs2_ondisk.h
8642
8643 GIGABYTE WMI DRIVER
8644 M:      Thomas Weißschuh <thomas@weissschuh.net>
8645 L:      platform-driver-x86@vger.kernel.org
8646 S:      Maintained
8647 F:      drivers/platform/x86/gigabyte-wmi.c
8648
8649 GNSS SUBSYSTEM
8650 M:      Johan Hovold <johan@kernel.org>
8651 S:      Maintained
8652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8653 F:      Documentation/ABI/testing/sysfs-class-gnss
8654 F:      Documentation/devicetree/bindings/gnss/
8655 F:      drivers/gnss/
8656 F:      include/linux/gnss.h
8657
8658 GO7007 MPEG CODEC
8659 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8660 L:      linux-media@vger.kernel.org
8661 S:      Maintained
8662 F:      drivers/media/usb/go7007/
8663
8664 GOODIX TOUCHSCREEN
8665 M:      Bastien Nocera <hadess@hadess.net>
8666 M:      Hans de Goede <hdegoede@redhat.com>
8667 L:      linux-input@vger.kernel.org
8668 S:      Maintained
8669 F:      drivers/input/touchscreen/goodix*
8670
8671 GOOGLE ETHERNET DRIVERS
8672 M:      Jeroen de Borst <jeroendb@google.com>
8673 M:      Catherine Sullivan <csully@google.com>
8674 R:      Shailend Chand <shailend@google.com>
8675 L:      netdev@vger.kernel.org
8676 S:      Supported
8677 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8678 F:      drivers/net/ethernet/google
8679
8680 GPD POCKET FAN DRIVER
8681 M:      Hans de Goede <hdegoede@redhat.com>
8682 L:      platform-driver-x86@vger.kernel.org
8683 S:      Maintained
8684 F:      drivers/platform/x86/gpd-pocket-fan.c
8685
8686 GPIO ACPI SUPPORT
8687 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8688 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8689 L:      linux-gpio@vger.kernel.org
8690 L:      linux-acpi@vger.kernel.org
8691 S:      Supported
8692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8693 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8694 F:      drivers/gpio/gpiolib-acpi.c
8695 F:      drivers/gpio/gpiolib-acpi.h
8696
8697 GPIO AGGREGATOR
8698 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8699 L:      linux-gpio@vger.kernel.org
8700 S:      Supported
8701 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8702 F:      drivers/gpio/gpio-aggregator.c
8703
8704 GPIO IR Transmitter
8705 M:      Sean Young <sean@mess.org>
8706 L:      linux-media@vger.kernel.org
8707 S:      Maintained
8708 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8709 F:      drivers/media/rc/gpio-ir-tx.c
8710
8711 GPIO MOCKUP DRIVER
8712 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8713 L:      linux-gpio@vger.kernel.org
8714 S:      Maintained
8715 F:      drivers/gpio/gpio-mockup.c
8716 F:      tools/testing/selftests/gpio/
8717
8718 GPIO REGMAP
8719 R:      Michael Walle <michael@walle.cc>
8720 S:      Maintained
8721 F:      drivers/gpio/gpio-regmap.c
8722 F:      include/linux/gpio/regmap.h
8723
8724 GPIO SUBSYSTEM
8725 M:      Linus Walleij <linus.walleij@linaro.org>
8726 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8727 L:      linux-gpio@vger.kernel.org
8728 S:      Maintained
8729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8730 F:      Documentation/ABI/obsolete/sysfs-gpio
8731 F:      Documentation/ABI/testing/gpio-cdev
8732 F:      Documentation/admin-guide/gpio/
8733 F:      Documentation/devicetree/bindings/gpio/
8734 F:      Documentation/driver-api/gpio/
8735 F:      drivers/gpio/
8736 F:      include/asm-generic/gpio.h
8737 F:      include/dt-bindings/gpio/
8738 F:      include/linux/gpio.h
8739 F:      include/linux/gpio/
8740 F:      include/linux/of_gpio.h
8741 F:      include/uapi/linux/gpio.h
8742 F:      tools/gpio/
8743
8744 GRE DEMULTIPLEXER DRIVER
8745 M:      Dmitry Kozlov <xeb@mail.ru>
8746 L:      netdev@vger.kernel.org
8747 S:      Maintained
8748 F:      include/net/gre.h
8749 F:      net/ipv4/gre_demux.c
8750 F:      net/ipv4/gre_offload.c
8751
8752 GRETH 10/100/1G Ethernet MAC device driver
8753 M:      Andreas Larsson <andreas@gaisler.com>
8754 L:      netdev@vger.kernel.org
8755 S:      Maintained
8756 F:      drivers/net/ethernet/aeroflex/
8757
8758 GREYBUS AUDIO PROTOCOLS DRIVERS
8759 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8760 M:      Mark Greer <mgreer@animalcreek.com>
8761 S:      Maintained
8762 F:      drivers/staging/greybus/audio_apbridgea.c
8763 F:      drivers/staging/greybus/audio_apbridgea.h
8764 F:      drivers/staging/greybus/audio_codec.c
8765 F:      drivers/staging/greybus/audio_codec.h
8766 F:      drivers/staging/greybus/audio_gb.c
8767 F:      drivers/staging/greybus/audio_manager.c
8768 F:      drivers/staging/greybus/audio_manager.h
8769 F:      drivers/staging/greybus/audio_manager_module.c
8770 F:      drivers/staging/greybus/audio_manager_private.h
8771 F:      drivers/staging/greybus/audio_manager_sysfs.c
8772 F:      drivers/staging/greybus/audio_module.c
8773 F:      drivers/staging/greybus/audio_topology.c
8774
8775 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8776 M:      Viresh Kumar <vireshk@kernel.org>
8777 S:      Maintained
8778 F:      drivers/staging/greybus/authentication.c
8779 F:      drivers/staging/greybus/bootrom.c
8780 F:      drivers/staging/greybus/firmware.h
8781 F:      drivers/staging/greybus/fw-core.c
8782 F:      drivers/staging/greybus/fw-download.c
8783 F:      drivers/staging/greybus/fw-management.c
8784 F:      drivers/staging/greybus/greybus_authentication.h
8785 F:      drivers/staging/greybus/greybus_firmware.h
8786 F:      drivers/staging/greybus/hid.c
8787 F:      drivers/staging/greybus/i2c.c
8788 F:      drivers/staging/greybus/spi.c
8789 F:      drivers/staging/greybus/spilib.c
8790 F:      drivers/staging/greybus/spilib.h
8791
8792 GREYBUS LOOPBACK DRIVER
8793 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8794 S:      Maintained
8795 F:      drivers/staging/greybus/loopback.c
8796
8797 GREYBUS PLATFORM DRIVERS
8798 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8799 S:      Maintained
8800 F:      drivers/staging/greybus/arche-apb-ctrl.c
8801 F:      drivers/staging/greybus/arche-platform.c
8802 F:      drivers/staging/greybus/arche_platform.h
8803
8804 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8805 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/gpio.c
8808 F:      drivers/staging/greybus/light.c
8809 F:      drivers/staging/greybus/power_supply.c
8810 F:      drivers/staging/greybus/sdio.c
8811 F:      drivers/staging/greybus/spi.c
8812 F:      drivers/staging/greybus/spilib.c
8813
8814 GREYBUS SUBSYSTEM
8815 M:      Johan Hovold <johan@kernel.org>
8816 M:      Alex Elder <elder@kernel.org>
8817 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8818 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8819 S:      Maintained
8820 F:      drivers/greybus/
8821 F:      drivers/staging/greybus/
8822 F:      include/linux/greybus.h
8823 F:      include/linux/greybus/
8824
8825 GREYBUS UART PROTOCOLS DRIVERS
8826 M:      David Lin <dtwlin@gmail.com>
8827 S:      Maintained
8828 F:      drivers/staging/greybus/log.c
8829 F:      drivers/staging/greybus/uart.c
8830
8831 GS1662 VIDEO SERIALIZER
8832 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8833 L:      linux-media@vger.kernel.org
8834 S:      Maintained
8835 T:      git git://linuxtv.org/media_tree.git
8836 F:      drivers/media/spi/gs1662.c
8837
8838 GSPCA FINEPIX SUBDRIVER
8839 M:      Frank Zago <frank@zago.net>
8840 L:      linux-media@vger.kernel.org
8841 S:      Maintained
8842 T:      git git://linuxtv.org/media_tree.git
8843 F:      drivers/media/usb/gspca/finepix.c
8844
8845 GSPCA GL860 SUBDRIVER
8846 M:      Olivier Lorin <o.lorin@laposte.net>
8847 L:      linux-media@vger.kernel.org
8848 S:      Maintained
8849 T:      git git://linuxtv.org/media_tree.git
8850 F:      drivers/media/usb/gspca/gl860/
8851
8852 GSPCA M5602 SUBDRIVER
8853 M:      Erik Andren <erik.andren@gmail.com>
8854 L:      linux-media@vger.kernel.org
8855 S:      Maintained
8856 T:      git git://linuxtv.org/media_tree.git
8857 F:      drivers/media/usb/gspca/m5602/
8858
8859 GSPCA PAC207 SONIXB SUBDRIVER
8860 M:      Hans Verkuil <hverkuil@xs4all.nl>
8861 L:      linux-media@vger.kernel.org
8862 S:      Odd Fixes
8863 T:      git git://linuxtv.org/media_tree.git
8864 F:      drivers/media/usb/gspca/pac207.c
8865
8866 GSPCA SN9C20X SUBDRIVER
8867 M:      Brian Johnson <brijohn@gmail.com>
8868 L:      linux-media@vger.kernel.org
8869 S:      Maintained
8870 T:      git git://linuxtv.org/media_tree.git
8871 F:      drivers/media/usb/gspca/sn9c20x.c
8872
8873 GSPCA T613 SUBDRIVER
8874 M:      Leandro Costantino <lcostantino@gmail.com>
8875 L:      linux-media@vger.kernel.org
8876 S:      Maintained
8877 T:      git git://linuxtv.org/media_tree.git
8878 F:      drivers/media/usb/gspca/t613.c
8879
8880 GSPCA USB WEBCAM DRIVER
8881 M:      Hans Verkuil <hverkuil@xs4all.nl>
8882 L:      linux-media@vger.kernel.org
8883 S:      Odd Fixes
8884 T:      git git://linuxtv.org/media_tree.git
8885 F:      drivers/media/usb/gspca/
8886
8887 GTP (GPRS Tunneling Protocol)
8888 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8889 M:      Harald Welte <laforge@gnumonks.org>
8890 L:      osmocom-net-gprs@lists.osmocom.org
8891 S:      Maintained
8892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8893 F:      drivers/net/gtp.c
8894
8895 GUID PARTITION TABLE (GPT)
8896 M:      Davidlohr Bueso <dave@stgolabs.net>
8897 L:      linux-efi@vger.kernel.org
8898 S:      Maintained
8899 F:      block/partitions/efi.*
8900
8901 HABANALABS PCI DRIVER
8902 M:      Oded Gabbay <ogabbay@kernel.org>
8903 S:      Supported
8904 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8905 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8906 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8907 F:      drivers/misc/habanalabs/
8908 F:      include/trace/events/habanalabs.h
8909 F:      include/uapi/misc/habanalabs.h
8910
8911 HACKRF MEDIA DRIVER
8912 M:      Antti Palosaari <crope@iki.fi>
8913 L:      linux-media@vger.kernel.org
8914 S:      Maintained
8915 W:      https://linuxtv.org
8916 W:      http://palosaari.fi/linux/
8917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8918 T:      git git://linuxtv.org/anttip/media_tree.git
8919 F:      drivers/media/usb/hackrf/
8920
8921 HANTRO VPU CODEC DRIVER
8922 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8923 M:      Philipp Zabel <p.zabel@pengutronix.de>
8924 L:      linux-media@vger.kernel.org
8925 L:      linux-rockchip@lists.infradead.org
8926 S:      Maintained
8927 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8928 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8929 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8930 F:      drivers/media/platform/verisilicon/
8931
8932 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8933 M:      Frank Seidel <frank@f-seidel.de>
8934 L:      platform-driver-x86@vger.kernel.org
8935 S:      Maintained
8936 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8937 F:      drivers/platform/x86/hdaps.c
8938
8939 HARDWARE MONITORING
8940 M:      Jean Delvare <jdelvare@suse.com>
8941 M:      Guenter Roeck <linux@roeck-us.net>
8942 L:      linux-hwmon@vger.kernel.org
8943 S:      Maintained
8944 W:      http://hwmon.wiki.kernel.org/
8945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8946 F:      Documentation/ABI/testing/sysfs-class-hwmon
8947 F:      Documentation/devicetree/bindings/hwmon/
8948 F:      Documentation/hwmon/
8949 F:      drivers/hwmon/
8950 F:      include/linux/hwmon*.h
8951 F:      include/trace/events/hwmon*.h
8952 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8953
8954 HARDWARE RANDOM NUMBER GENERATOR CORE
8955 M:      Olivia Mackall <olivia@selenic.com>
8956 M:      Herbert Xu <herbert@gondor.apana.org.au>
8957 L:      linux-crypto@vger.kernel.org
8958 S:      Odd fixes
8959 F:      Documentation/admin-guide/hw_random.rst
8960 F:      Documentation/devicetree/bindings/rng/
8961 F:      drivers/char/hw_random/
8962 F:      include/linux/hw_random.h
8963
8964 HARDWARE SPINLOCK CORE
8965 M:      Ohad Ben-Cohen <ohad@wizery.com>
8966 M:      Bjorn Andersson <andersson@kernel.org>
8967 R:      Baolin Wang <baolin.wang7@gmail.com>
8968 L:      linux-remoteproc@vger.kernel.org
8969 S:      Maintained
8970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8971 F:      Documentation/devicetree/bindings/hwlock/
8972 F:      Documentation/locking/hwspinlock.rst
8973 F:      drivers/hwspinlock/
8974 F:      include/linux/hwspinlock.h
8975
8976 HARDWARE TRACING FACILITIES
8977 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8978 S:      Maintained
8979 F:      drivers/hwtracing/
8980
8981 HARMONY SOUND DRIVER
8982 L:      linux-parisc@vger.kernel.org
8983 S:      Maintained
8984 F:      sound/parisc/harmony.*
8985
8986 HDPVR USB VIDEO ENCODER DRIVER
8987 M:      Hans Verkuil <hverkuil@xs4all.nl>
8988 L:      linux-media@vger.kernel.org
8989 S:      Odd Fixes
8990 W:      https://linuxtv.org
8991 T:      git git://linuxtv.org/media_tree.git
8992 F:      drivers/media/usb/hdpvr/
8993
8994 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8995 M:      Matt Hsiao <matt.hsiao@hpe.com>
8996 S:      Supported
8997 F:      drivers/misc/hpilo.[ch]
8998
8999 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9000 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9001 S:      Supported
9002 F:      Documentation/watchdog/hpwdt.rst
9003 F:      drivers/watchdog/hpwdt.c
9004
9005 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9006 M:      Don Brace <don.brace@microchip.com>
9007 L:      storagedev@microchip.com
9008 L:      linux-scsi@vger.kernel.org
9009 S:      Supported
9010 F:      Documentation/scsi/hpsa.rst
9011 F:      drivers/scsi/hpsa*.[ch]
9012 F:      include/linux/cciss*.h
9013 F:      include/uapi/linux/cciss*.h
9014
9015 HFI1 DRIVER
9016 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9017 L:      linux-rdma@vger.kernel.org
9018 S:      Supported
9019 F:      drivers/infiniband/hw/hfi1
9020
9021 HFS FILESYSTEM
9022 L:      linux-fsdevel@vger.kernel.org
9023 S:      Orphan
9024 F:      Documentation/filesystems/hfs.rst
9025 F:      fs/hfs/
9026
9027 HFSPLUS FILESYSTEM
9028 L:      linux-fsdevel@vger.kernel.org
9029 S:      Orphan
9030 F:      Documentation/filesystems/hfsplus.rst
9031 F:      fs/hfsplus/
9032
9033 HGA FRAMEBUFFER DRIVER
9034 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9035 L:      linux-nvidia@lists.surfsouth.com
9036 S:      Maintained
9037 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9038 F:      drivers/video/fbdev/hgafb.c
9039
9040 HIBERNATION (aka Software Suspend, aka swsusp)
9041 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9042 M:      Pavel Machek <pavel@ucw.cz>
9043 L:      linux-pm@vger.kernel.org
9044 S:      Supported
9045 B:      https://bugzilla.kernel.org
9046 F:      arch/*/include/asm/suspend*.h
9047 F:      arch/x86/power/
9048 F:      drivers/base/power/
9049 F:      include/linux/freezer.h
9050 F:      include/linux/pm.h
9051 F:      include/linux/suspend.h
9052 F:      kernel/power/
9053
9054 HID CORE LAYER
9055 M:      Jiri Kosina <jikos@kernel.org>
9056 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9057 L:      linux-input@vger.kernel.org
9058 S:      Maintained
9059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9060 F:      drivers/hid/
9061 F:      include/linux/hid*
9062 F:      include/uapi/linux/hid*
9063
9064 HID LOGITECH DRIVERS
9065 R:      Filipe Laíns <lains@riseup.net>
9066 L:      linux-input@vger.kernel.org
9067 S:      Maintained
9068 F:      drivers/hid/hid-logitech-*
9069
9070 HID PLAYSTATION DRIVER
9071 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9072 L:      linux-input@vger.kernel.org
9073 S:      Supported
9074 F:      drivers/hid/hid-playstation.c
9075
9076 HID PHOENIX RC FLIGHT CONTROLLER
9077 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9078 L:      linux-input@vger.kernel.org
9079 S:      Maintained
9080 F:      drivers/hid/hid-pxrc.c
9081
9082 HID SENSOR HUB DRIVERS
9083 M:      Jiri Kosina <jikos@kernel.org>
9084 M:      Jonathan Cameron <jic23@kernel.org>
9085 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9086 L:      linux-input@vger.kernel.org
9087 L:      linux-iio@vger.kernel.org
9088 S:      Maintained
9089 F:      Documentation/hid/hid-sensor*
9090 F:      drivers/hid/hid-sensor-*
9091 F:      drivers/iio/*/hid-*
9092 F:      include/linux/hid-sensor-*
9093
9094 HID VRC-2 CAR CONTROLLER DRIVER
9095 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9096 L:      linux-input@vger.kernel.org
9097 S:      Maintained
9098 F:      drivers/hid/hid-vrc2.c
9099
9100 HID WACOM DRIVER
9101 M:      Ping Cheng <ping.cheng@wacom.com>
9102 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9103 L:      linux-input@vger.kernel.org
9104 S:      Maintained
9105 F:      drivers/hid/wacom.h
9106 F:      drivers/hid/wacom_*
9107
9108 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9109 M:      Thomas Gleixner <tglx@linutronix.de>
9110 L:      linux-kernel@vger.kernel.org
9111 S:      Maintained
9112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9113 F:      Documentation/timers/
9114 F:      include/linux/clockchips.h
9115 F:      include/linux/hrtimer.h
9116 F:      kernel/time/clockevents.c
9117 F:      kernel/time/hrtimer.c
9118 F:      kernel/time/timer_*.c
9119
9120 HIGH-SPEED SCC DRIVER FOR AX.25
9121 L:      linux-hams@vger.kernel.org
9122 S:      Orphan
9123 F:      drivers/net/hamradio/scc.c
9124
9125 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9126 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9127 S:      Supported
9128 W:      http://www.highpoint-tech.com
9129 F:      Documentation/scsi/hptiop.rst
9130 F:      drivers/scsi/hptiop.c
9131
9132 HIMAX HX83112B TOUCHSCREEN SUPPORT
9133 M:      Job Noorman <job@noorman.info>
9134 L:      linux-input@vger.kernel.org
9135 S:      Maintained
9136 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9137 F:      drivers/input/touchscreen/himax_hx83112b.c
9138
9139 HIPPI
9140 M:      Jes Sorensen <jes@trained-monkey.org>
9141 L:      linux-hippi@sunsite.dk
9142 S:      Maintained
9143 F:      drivers/net/hippi/
9144 F:      include/linux/hippidevice.h
9145 F:      include/uapi/linux/if_hippi.h
9146 F:      net/802/hippi.c
9147
9148 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9149 M:      Kurt Kanzenbach <kurt@linutronix.de>
9150 L:      netdev@vger.kernel.org
9151 S:      Maintained
9152 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9153 F:      drivers/net/dsa/hirschmann/*
9154 F:      include/linux/platform_data/hirschmann-hellcreek.h
9155 F:      net/dsa/tag_hellcreek.c
9156
9157 HISILICON DMA DRIVER
9158 M:      Zhou Wang <wangzhou1@hisilicon.com>
9159 M:      Jie Hai <haijie1@huawei.com>
9160 L:      dmaengine@vger.kernel.org
9161 S:      Maintained
9162 F:      drivers/dma/hisi_dma.c
9163
9164 HISILICON GPIO DRIVER
9165 M:      Jay Fang <f.fangjian@huawei.com>
9166 L:      linux-gpio@vger.kernel.org
9167 S:      Maintained
9168 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9169 F:      drivers/gpio/gpio-hisi.c
9170
9171 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9172 M:      Longfang Liu <liulongfang@huawei.com>
9173 L:      linux-crypto@vger.kernel.org
9174 S:      Maintained
9175 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9176 F:      drivers/crypto/hisilicon/hpre/hpre.h
9177 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9178 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9179
9180 HISILICON I2C CONTROLLER DRIVER
9181 M:      Yicong Yang <yangyicong@hisilicon.com>
9182 L:      linux-i2c@vger.kernel.org
9183 S:      Maintained
9184 W:      https://www.hisilicon.com
9185 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9186 F:      drivers/i2c/busses/i2c-hisi.c
9187
9188 HISILICON LPC BUS DRIVER
9189 M:      Jay Fang <f.fangjian@huawei.com>
9190 S:      Maintained
9191 W:      http://www.hisilicon.com
9192 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9193 F:      drivers/bus/hisi_lpc.c
9194
9195 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9196 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9197 M:      Salil Mehta <salil.mehta@huawei.com>
9198 L:      netdev@vger.kernel.org
9199 S:      Maintained
9200 W:      http://www.hisilicon.com
9201 F:      drivers/net/ethernet/hisilicon/hns3/
9202
9203 HISILICON NETWORK SUBSYSTEM DRIVER
9204 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9205 M:      Salil Mehta <salil.mehta@huawei.com>
9206 L:      netdev@vger.kernel.org
9207 S:      Maintained
9208 W:      http://www.hisilicon.com
9209 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9210 F:      drivers/net/ethernet/hisilicon/
9211
9212 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9213 M:      John Stultz <jstultz@google.com>
9214 L:      linux-kernel@vger.kernel.org
9215 S:      Maintained
9216 F:      drivers/misc/hisi_hikey_usb.c
9217
9218 HISILICON PMU DRIVER
9219 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9220 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9221 S:      Supported
9222 W:      http://www.hisilicon.com
9223 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9224 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9225 F:      drivers/perf/hisilicon
9226
9227 HISILICON HNS3 PMU DRIVER
9228 M:      Guangbin Huang <huangguangbin2@huawei.com>
9229 S:      Supported
9230 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9231 F:      drivers/perf/hisilicon/hns3_pmu.c
9232
9233 HISILICON PTT DRIVER
9234 M:      Yicong Yang <yangyicong@hisilicon.com>
9235 L:      linux-kernel@vger.kernel.org
9236 S:      Maintained
9237 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9238 F:      Documentation/trace/hisi-ptt.rst
9239 F:      drivers/hwtracing/ptt/
9240
9241 HISILICON QM DRIVER
9242 M:      Weili Qian <qianweili@huawei.com>
9243 M:      Zhou Wang <wangzhou1@hisilicon.com>
9244 L:      linux-crypto@vger.kernel.org
9245 S:      Maintained
9246 F:      drivers/crypto/hisilicon/Kconfig
9247 F:      drivers/crypto/hisilicon/Makefile
9248 F:      drivers/crypto/hisilicon/qm.c
9249 F:      drivers/crypto/hisilicon/sgl.c
9250 F:      include/linux/hisi_acc_qm.h
9251
9252 HISILICON ZIP Controller DRIVER
9253 M:      Yang Shen <shenyang39@huawei.com>
9254 M:      Zhou Wang <wangzhou1@hisilicon.com>
9255 L:      linux-crypto@vger.kernel.org
9256 S:      Maintained
9257 F:      Documentation/ABI/testing/debugfs-hisi-zip
9258 F:      drivers/crypto/hisilicon/zip/
9259
9260 HISILICON ROCE DRIVER
9261 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9262 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9263 L:      linux-rdma@vger.kernel.org
9264 S:      Maintained
9265 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9266 F:      drivers/infiniband/hw/hns/
9267
9268 HISILICON SAS Controller
9269 M:      Xiang Chen <chenxiang66@hisilicon.com>
9270 S:      Supported
9271 W:      http://www.hisilicon.com
9272 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9273 F:      drivers/scsi/hisi_sas/
9274
9275 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9276 M:      Kai Ye <yekai13@huawei.com>
9277 M:      Longfang Liu <liulongfang@huawei.com>
9278 L:      linux-crypto@vger.kernel.org
9279 S:      Maintained
9280 F:      Documentation/ABI/testing/debugfs-hisi-sec
9281 F:      drivers/crypto/hisilicon/sec2/sec.h
9282 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9283 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9284 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9285
9286 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9287 M:      Jay Fang <f.fangjian@huawei.com>
9288 L:      linux-spi@vger.kernel.org
9289 S:      Maintained
9290 W:      http://www.hisilicon.com
9291 F:      drivers/spi/spi-hisi-kunpeng.c
9292
9293 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9294 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9295 L:      linux-kernel@vger.kernel.org
9296 S:      Maintained
9297 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9298 F:      drivers/spmi/hisi-spmi-controller.c
9299
9300 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9301 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9302 L:      linux-kernel@vger.kernel.org
9303 S:      Maintained
9304 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9305 F:      drivers/mfd/hi6421-spmi-pmic.c
9306
9307 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9308 M:      Weili Qian <qianweili@huawei.com>
9309 S:      Maintained
9310 F:      drivers/crypto/hisilicon/trng/trng.c
9311
9312 HISILICON V3XX SPI NOR FLASH Controller Driver
9313 M:      Jay Fang <f.fangjian@huawei.com>
9314 S:      Maintained
9315 W:      http://www.hisilicon.com
9316 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9317
9318 HMM - Heterogeneous Memory Management
9319 M:      Jérôme Glisse <jglisse@redhat.com>
9320 L:      linux-mm@kvack.org
9321 S:      Maintained
9322 F:      Documentation/mm/hmm.rst
9323 F:      include/linux/hmm*
9324 F:      lib/test_hmm*
9325 F:      mm/hmm*
9326 F:      tools/testing/selftests/vm/*hmm*
9327
9328 HOST AP DRIVER
9329 M:      Jouni Malinen <j@w1.fi>
9330 L:      linux-wireless@vger.kernel.org
9331 S:      Obsolete
9332 W:      http://w1.fi/hostap-driver.html
9333 F:      drivers/net/wireless/intersil/hostap/
9334
9335 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9336 L:      platform-driver-x86@vger.kernel.org
9337 S:      Orphan
9338 F:      drivers/platform/x86/hp/tc1100-wmi.c
9339
9340 HPET:   High Precision Event Timers driver
9341 M:      Clemens Ladisch <clemens@ladisch.de>
9342 S:      Maintained
9343 F:      Documentation/timers/hpet.rst
9344 F:      drivers/char/hpet.c
9345 F:      include/linux/hpet.h
9346 F:      include/uapi/linux/hpet.h
9347
9348 HPET:   x86
9349 S:      Orphan
9350 F:      arch/x86/include/asm/hpet.h
9351 F:      arch/x86/kernel/hpet.c
9352
9353 HPFS FILESYSTEM
9354 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9355 S:      Maintained
9356 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9357 F:      fs/hpfs/
9358
9359 HSI SUBSYSTEM
9360 M:      Sebastian Reichel <sre@kernel.org>
9361 S:      Maintained
9362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9363 F:      Documentation/ABI/testing/sysfs-bus-hsi
9364 F:      Documentation/driver-api/hsi.rst
9365 F:      drivers/hsi/
9366 F:      include/linux/hsi/
9367 F:      include/uapi/linux/hsi/
9368
9369 HSO 3G MODEM DRIVER
9370 L:      linux-usb@vger.kernel.org
9371 S:      Orphan
9372 F:      drivers/net/usb/hso.c
9373
9374 HSR NETWORK PROTOCOL
9375 L:      netdev@vger.kernel.org
9376 S:      Orphan
9377 F:      net/hsr/
9378
9379 HT16K33 LED CONTROLLER DRIVER
9380 M:      Robin van der Gracht <robin@protonic.nl>
9381 S:      Maintained
9382 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9383 F:      drivers/auxdisplay/ht16k33.c
9384
9385 HTCPEN TOUCHSCREEN DRIVER
9386 M:      Pau Oliva Fora <pof@eslack.org>
9387 L:      linux-input@vger.kernel.org
9388 S:      Maintained
9389 F:      drivers/input/touchscreen/htcpen.c
9390
9391 HTE SUBSYSTEM
9392 M:      Dipen Patel <dipenp@nvidia.com>
9393 S:      Maintained
9394 F:      Documentation/devicetree/bindings/timestamp/
9395 F:      Documentation/driver-api/hte/
9396 F:      drivers/hte/
9397 F:      include/linux/hte.h
9398
9399 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9400 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9401 L:      linux-iio@vger.kernel.org
9402 S:      Maintained
9403 W:      http://www.st.com/
9404 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9405 F:      drivers/iio/humidity/hts221*
9406
9407 HUAWEI ETHERNET DRIVER
9408 M:      Cai Huoqing <cai.huoqing@linux.dev>
9409 L:      netdev@vger.kernel.org
9410 S:      Maintained
9411 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9412 F:      drivers/net/ethernet/huawei/hinic/
9413
9414 HUGETLB SUBSYSTEM
9415 M:      Mike Kravetz <mike.kravetz@oracle.com>
9416 M:      Muchun Song <muchun.song@linux.dev>
9417 L:      linux-mm@kvack.org
9418 S:      Maintained
9419 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9420 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9421 F:      Documentation/mm/hugetlbfs_reserv.rst
9422 F:      Documentation/mm/vmemmap_dedup.rst
9423 F:      fs/hugetlbfs/
9424 F:      include/linux/hugetlb.h
9425 F:      mm/hugetlb.c
9426 F:      mm/hugetlb_vmemmap.c
9427 F:      mm/hugetlb_vmemmap.h
9428
9429 HVA ST MEDIA DRIVER
9430 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9431 L:      linux-media@vger.kernel.org
9432 S:      Supported
9433 W:      https://linuxtv.org
9434 T:      git git://linuxtv.org/media_tree.git
9435 F:      drivers/media/platform/st/sti/hva
9436
9437 HWPOISON MEMORY FAILURE HANDLING
9438 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9439 R:      Miaohe Lin <linmiaohe@huawei.com>
9440 L:      linux-mm@kvack.org
9441 S:      Maintained
9442 F:      mm/hwpoison-inject.c
9443 F:      mm/memory-failure.c
9444
9445 HYCON HY46XX TOUCHSCREEN SUPPORT
9446 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9447 L:      linux-input@vger.kernel.org
9448 S:      Maintained
9449 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9450 F:      drivers/input/touchscreen/hycon-hy46xx.c
9451
9452 HYGON PROCESSOR SUPPORT
9453 M:      Pu Wen <puwen@hygon.cn>
9454 L:      linux-kernel@vger.kernel.org
9455 S:      Maintained
9456 F:      arch/x86/kernel/cpu/hygon.c
9457
9458 HYNIX HI556 SENSOR DRIVER
9459 M:      Shawn Tu <shawnx.tu@intel.com>
9460 L:      linux-media@vger.kernel.org
9461 S:      Maintained
9462 T:      git git://linuxtv.org/media_tree.git
9463 F:      drivers/media/i2c/hi556.c
9464
9465 HYNIX HI846 SENSOR DRIVER
9466 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9467 L:      linux-media@vger.kernel.org
9468 S:      Maintained
9469 F:      drivers/media/i2c/hi846.c
9470
9471 HYNIX HI847 SENSOR DRIVER
9472 M:      Shawn Tu <shawnx.tu@intel.com>
9473 L:      linux-media@vger.kernel.org
9474 S:      Maintained
9475 F:      drivers/media/i2c/hi847.c
9476
9477 Hyper-V/Azure CORE AND DRIVERS
9478 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9479 M:      Haiyang Zhang <haiyangz@microsoft.com>
9480 M:      Wei Liu <wei.liu@kernel.org>
9481 M:      Dexuan Cui <decui@microsoft.com>
9482 L:      linux-hyperv@vger.kernel.org
9483 S:      Supported
9484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9485 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9486 F:      Documentation/ABI/testing/debugfs-hyperv
9487 F:      Documentation/virt/hyperv
9488 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9489 F:      arch/arm64/hyperv
9490 F:      arch/arm64/include/asm/hyperv-tlfs.h
9491 F:      arch/arm64/include/asm/mshyperv.h
9492 F:      arch/x86/hyperv
9493 F:      arch/x86/include/asm/hyperv-tlfs.h
9494 F:      arch/x86/include/asm/mshyperv.h
9495 F:      arch/x86/include/asm/trace/hyperv.h
9496 F:      arch/x86/kernel/cpu/mshyperv.c
9497 F:      drivers/clocksource/hyperv_timer.c
9498 F:      drivers/hid/hid-hyperv.c
9499 F:      drivers/hv/
9500 F:      drivers/input/serio/hyperv-keyboard.c
9501 F:      drivers/iommu/hyperv-iommu.c
9502 F:      drivers/net/ethernet/microsoft/
9503 F:      drivers/net/hyperv/
9504 F:      drivers/pci/controller/pci-hyperv-intf.c
9505 F:      drivers/pci/controller/pci-hyperv.c
9506 F:      drivers/scsi/storvsc_drv.c
9507 F:      drivers/uio/uio_hv_generic.c
9508 F:      drivers/video/fbdev/hyperv_fb.c
9509 F:      include/asm-generic/hyperv-tlfs.h
9510 F:      include/asm-generic/mshyperv.h
9511 F:      include/clocksource/hyperv_timer.h
9512 F:      include/linux/hyperv.h
9513 F:      include/net/mana
9514 F:      include/uapi/linux/hyperv.h
9515 F:      net/vmw_vsock/hyperv_transport.c
9516 F:      tools/hv/
9517
9518 HYPERBUS SUPPORT
9519 M:      Vignesh Raghavendra <vigneshr@ti.com>
9520 L:      linux-mtd@lists.infradead.org
9521 S:      Supported
9522 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9523 C:      irc://irc.oftc.net/mtd
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9525 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9526 F:      drivers/mtd/hyperbus/
9527 F:      include/linux/mtd/hyperbus.h
9528
9529 HYPERVISOR VIRTUAL CONSOLE DRIVER
9530 L:      linuxppc-dev@lists.ozlabs.org
9531 S:      Odd Fixes
9532 F:      drivers/tty/hvc/
9533
9534 I2C ACPI SUPPORT
9535 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9536 L:      linux-i2c@vger.kernel.org
9537 L:      linux-acpi@vger.kernel.org
9538 S:      Maintained
9539 F:      drivers/i2c/i2c-core-acpi.c
9540
9541 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9542 M:      Ajay Gupta <ajayg@nvidia.com>
9543 L:      linux-i2c@vger.kernel.org
9544 S:      Maintained
9545 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9546 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9547
9548 I2C MUXES
9549 M:      Peter Rosin <peda@axentia.se>
9550 L:      linux-i2c@vger.kernel.org
9551 S:      Maintained
9552 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9553 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9554 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9555 F:      Documentation/i2c/i2c-topology.rst
9556 F:      Documentation/i2c/muxes/
9557 F:      drivers/i2c/i2c-mux.c
9558 F:      drivers/i2c/muxes/
9559 F:      include/linux/i2c-mux.h
9560
9561 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9562 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9563 L:      linux-i2c@vger.kernel.org
9564 S:      Maintained
9565 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9566 F:      drivers/i2c/busses/i2c-mv64xxx.c
9567
9568 I2C OVER PARALLEL PORT
9569 M:      Jean Delvare <jdelvare@suse.com>
9570 L:      linux-i2c@vger.kernel.org
9571 S:      Maintained
9572 F:      Documentation/i2c/busses/i2c-parport.rst
9573 F:      drivers/i2c/busses/i2c-parport.c
9574
9575 I2C SUBSYSTEM
9576 M:      Wolfram Sang <wsa@kernel.org>
9577 L:      linux-i2c@vger.kernel.org
9578 S:      Maintained
9579 W:      https://i2c.wiki.kernel.org/
9580 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9582 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9583 F:      Documentation/i2c/
9584 F:      drivers/i2c/*
9585 F:      include/dt-bindings/i2c/i2c.h
9586 F:      include/linux/i2c-dev.h
9587 F:      include/linux/i2c-smbus.h
9588 F:      include/linux/i2c.h
9589 F:      include/uapi/linux/i2c-*.h
9590 F:      include/uapi/linux/i2c.h
9591
9592 I2C SUBSYSTEM HOST DRIVERS
9593 L:      linux-i2c@vger.kernel.org
9594 S:      Odd Fixes
9595 W:      https://i2c.wiki.kernel.org/
9596 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9598 F:      Documentation/devicetree/bindings/i2c/
9599 F:      drivers/i2c/algos/
9600 F:      drivers/i2c/busses/
9601 F:      include/dt-bindings/i2c/
9602
9603 I2C-TAOS-EVM DRIVER
9604 M:      Jean Delvare <jdelvare@suse.com>
9605 L:      linux-i2c@vger.kernel.org
9606 S:      Maintained
9607 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9608 F:      drivers/i2c/busses/i2c-taos-evm.c
9609
9610 I2C-TINY-USB DRIVER
9611 M:      Till Harbaum <till@harbaum.org>
9612 L:      linux-i2c@vger.kernel.org
9613 S:      Maintained
9614 W:      http://www.harbaum.org/till/i2c_tiny_usb
9615 F:      drivers/i2c/busses/i2c-tiny-usb.c
9616
9617 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9618 M:      Jean Delvare <jdelvare@suse.com>
9619 L:      linux-i2c@vger.kernel.org
9620 S:      Maintained
9621 F:      Documentation/i2c/busses/i2c-ali1535.rst
9622 F:      Documentation/i2c/busses/i2c-ali1563.rst
9623 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9624 F:      Documentation/i2c/busses/i2c-amd756.rst
9625 F:      Documentation/i2c/busses/i2c-amd8111.rst
9626 F:      Documentation/i2c/busses/i2c-i801.rst
9627 F:      Documentation/i2c/busses/i2c-nforce2.rst
9628 F:      Documentation/i2c/busses/i2c-piix4.rst
9629 F:      Documentation/i2c/busses/i2c-sis5595.rst
9630 F:      Documentation/i2c/busses/i2c-sis630.rst
9631 F:      Documentation/i2c/busses/i2c-sis96x.rst
9632 F:      Documentation/i2c/busses/i2c-via.rst
9633 F:      Documentation/i2c/busses/i2c-viapro.rst
9634 F:      drivers/i2c/busses/i2c-ali1535.c
9635 F:      drivers/i2c/busses/i2c-ali1563.c
9636 F:      drivers/i2c/busses/i2c-ali15x3.c
9637 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9638 F:      drivers/i2c/busses/i2c-amd756.c
9639 F:      drivers/i2c/busses/i2c-amd8111.c
9640 F:      drivers/i2c/busses/i2c-i801.c
9641 F:      drivers/i2c/busses/i2c-isch.c
9642 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9643 F:      drivers/i2c/busses/i2c-nforce2.c
9644 F:      drivers/i2c/busses/i2c-piix4.c
9645 F:      drivers/i2c/busses/i2c-sis5595.c
9646 F:      drivers/i2c/busses/i2c-sis630.c
9647 F:      drivers/i2c/busses/i2c-sis96x.c
9648 F:      drivers/i2c/busses/i2c-via.c
9649 F:      drivers/i2c/busses/i2c-viapro.c
9650
9651 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9652 M:      Hans de Goede <hdegoede@redhat.com>
9653 L:      linux-i2c@vger.kernel.org
9654 S:      Maintained
9655 F:      drivers/i2c/busses/i2c-cht-wc.c
9656
9657 I2C/SMBUS ISMT DRIVER
9658 M:      Seth Heasley <seth.heasley@intel.com>
9659 M:      Neil Horman <nhorman@tuxdriver.com>
9660 L:      linux-i2c@vger.kernel.org
9661 F:      Documentation/i2c/busses/i2c-ismt.rst
9662 F:      drivers/i2c/busses/i2c-ismt.c
9663
9664 I2C/SMBUS STUB DRIVER
9665 M:      Jean Delvare <jdelvare@suse.com>
9666 L:      linux-i2c@vger.kernel.org
9667 S:      Maintained
9668 F:      drivers/i2c/i2c-stub.c
9669
9670 I3C DRIVER FOR CADENCE I3C MASTER IP
9671 M:      Przemysław Gaj <pgaj@cadence.com>
9672 S:      Maintained
9673 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9674 F:      drivers/i3c/master/i3c-master-cdns.c
9675
9676 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9677 S:      Orphan
9678 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9679 F:      drivers/i3c/master/dw*
9680
9681 I3C SUBSYSTEM
9682 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9683 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9684 S:      Maintained
9685 C:      irc://chat.freenode.net/linux-i3c
9686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9687 F:      Documentation/ABI/testing/sysfs-bus-i3c
9688 F:      Documentation/devicetree/bindings/i3c/
9689 F:      Documentation/driver-api/i3c
9690 F:      drivers/i3c/
9691 F:      include/linux/i3c/
9692
9693 IA64 (Itanium) PLATFORM
9694 L:      linux-ia64@vger.kernel.org
9695 S:      Orphan
9696 F:      Documentation/ia64/
9697 F:      arch/ia64/
9698
9699 IBM Operation Panel Input Driver
9700 M:      Eddie James <eajames@linux.ibm.com>
9701 L:      linux-input@vger.kernel.org
9702 S:      Maintained
9703 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9704 F:      drivers/input/misc/ibm-panel.c
9705
9706 IBM Power 842 compression accelerator
9707 M:      Haren Myneni <haren@us.ibm.com>
9708 S:      Supported
9709 F:      crypto/842.c
9710 F:      drivers/crypto/nx/Kconfig
9711 F:      drivers/crypto/nx/Makefile
9712 F:      drivers/crypto/nx/nx-842*
9713 F:      include/linux/sw842.h
9714 F:      lib/842/
9715
9716 IBM Power in-Nest Crypto Acceleration
9717 M:      Breno Leitão <leitao@debian.org>
9718 M:      Nayna Jain <nayna@linux.ibm.com>
9719 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9720 L:      linux-crypto@vger.kernel.org
9721 S:      Supported
9722 F:      drivers/crypto/nx/Kconfig
9723 F:      drivers/crypto/nx/Makefile
9724 F:      drivers/crypto/nx/nx-aes*
9725 F:      drivers/crypto/nx/nx-sha*
9726 F:      drivers/crypto/nx/nx.*
9727 F:      drivers/crypto/nx/nx_csbcpb.h
9728 F:      drivers/crypto/nx/nx_debugfs.c
9729
9730 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9731 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9732 L:      linux-pci@vger.kernel.org
9733 L:      linuxppc-dev@lists.ozlabs.org
9734 S:      Supported
9735 F:      drivers/pci/hotplug/rpadlpar*
9736
9737 IBM Power Linux RAID adapter
9738 M:      Brian King <brking@us.ibm.com>
9739 S:      Supported
9740 F:      drivers/scsi/ipr.*
9741
9742 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9743 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9744 L:      linux-pci@vger.kernel.org
9745 L:      linuxppc-dev@lists.ozlabs.org
9746 S:      Supported
9747 F:      drivers/pci/hotplug/rpaphp*
9748
9749 IBM Power SRIOV Virtual NIC Device Driver
9750 M:      Haren Myneni <haren@linux.ibm.com>
9751 M:      Rick Lindsley <ricklind@linux.ibm.com>
9752 R:      Nick Child <nnac123@linux.ibm.com>
9753 R:      Dany Madden <danymadden@us.ibm.com>
9754 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9755 L:      netdev@vger.kernel.org
9756 S:      Supported
9757 F:      drivers/net/ethernet/ibm/ibmvnic.*
9758
9759 IBM Power Virtual Accelerator Switchboard
9760 L:      linuxppc-dev@lists.ozlabs.org
9761 S:      Supported
9762 F:      arch/powerpc/include/asm/vas.h
9763 F:      arch/powerpc/platforms/powernv/copy-paste.h
9764 F:      arch/powerpc/platforms/powernv/vas*
9765
9766 IBM Power Virtual Ethernet Device Driver
9767 M:      Nick Child <nnac123@linux.ibm.com>
9768 L:      netdev@vger.kernel.org
9769 S:      Supported
9770 F:      drivers/net/ethernet/ibm/ibmveth.*
9771
9772 IBM Power Virtual FC Device Drivers
9773 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9774 L:      linux-scsi@vger.kernel.org
9775 S:      Supported
9776 F:      drivers/scsi/ibmvscsi/ibmvfc*
9777
9778 IBM Power Virtual Management Channel Driver
9779 M:      Brad Warrum <bwarrum@linux.ibm.com>
9780 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9781 S:      Supported
9782 F:      drivers/misc/ibmvmc.*
9783
9784 IBM Power Virtual SCSI Device Drivers
9785 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9786 L:      linux-scsi@vger.kernel.org
9787 S:      Supported
9788 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9789 F:      include/scsi/viosrp.h
9790
9791 IBM Power Virtual SCSI Device Target Driver
9792 M:      Michael Cyr <mikecyr@linux.ibm.com>
9793 L:      linux-scsi@vger.kernel.org
9794 L:      target-devel@vger.kernel.org
9795 S:      Supported
9796 F:      drivers/scsi/ibmvscsi_tgt/
9797
9798 IBM Power VMX Cryptographic instructions
9799 M:      Breno Leitão <leitao@debian.org>
9800 M:      Nayna Jain <nayna@linux.ibm.com>
9801 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9802 L:      linux-crypto@vger.kernel.org
9803 S:      Supported
9804 F:      drivers/crypto/vmx/Kconfig
9805 F:      drivers/crypto/vmx/Makefile
9806 F:      drivers/crypto/vmx/aes*
9807 F:      drivers/crypto/vmx/ghash*
9808 F:      drivers/crypto/vmx/ppc-xlate.pl
9809 F:      drivers/crypto/vmx/vmx.c
9810
9811 IBM ServeRAID RAID DRIVER
9812 S:      Orphan
9813 F:      drivers/scsi/ips.*
9814
9815 ICH LPC AND GPIO DRIVER
9816 M:      Peter Tyser <ptyser@xes-inc.com>
9817 S:      Maintained
9818 F:      drivers/gpio/gpio-ich.c
9819 F:      drivers/mfd/lpc_ich.c
9820
9821 ICY I2C DRIVER
9822 M:      Max Staudt <max@enpas.org>
9823 L:      linux-i2c@vger.kernel.org
9824 S:      Maintained
9825 F:      drivers/i2c/busses/i2c-icy.c
9826
9827 IDEAPAD LAPTOP EXTRAS DRIVER
9828 M:      Ike Panhc <ike.pan@canonical.com>
9829 L:      platform-driver-x86@vger.kernel.org
9830 S:      Maintained
9831 W:      http://launchpad.net/ideapad-laptop
9832 F:      drivers/platform/x86/ideapad-laptop.c
9833
9834 IDEAPAD LAPTOP SLIDEBAR DRIVER
9835 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9836 L:      linux-input@vger.kernel.org
9837 S:      Maintained
9838 W:      https://github.com/o2genum/ideapad-slidebar
9839 F:      drivers/input/misc/ideapad_slidebar.c
9840
9841 IDMAPPED MOUNTS
9842 M:      Christian Brauner <brauner@kernel.org>
9843 M:      Seth Forshee <sforshee@kernel.org>
9844 L:      linux-fsdevel@vger.kernel.org
9845 S:      Maintained
9846 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9847 F:      Documentation/filesystems/idmappings.rst
9848 F:      tools/testing/selftests/mount_setattr/
9849 F:      include/linux/mnt_idmapping.*
9850
9851 IDT VersaClock 5 CLOCK DRIVER
9852 M:      Luca Ceresoli <luca@lucaceresoli.net>
9853 S:      Maintained
9854 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9855 F:      drivers/clk/clk-versaclock5.c
9856
9857 IEEE 802.15.4 SUBSYSTEM
9858 M:      Alexander Aring <alex.aring@gmail.com>
9859 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9860 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9861 L:      linux-wpan@vger.kernel.org
9862 S:      Maintained
9863 W:      https://linux-wpan.org/
9864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9866 F:      Documentation/networking/ieee802154.rst
9867 F:      drivers/net/ieee802154/
9868 F:      include/linux/ieee802154.h
9869 F:      include/linux/nl802154.h
9870 F:      include/net/af_ieee802154.h
9871 F:      include/net/cfg802154.h
9872 F:      include/net/ieee802154_netdev.h
9873 F:      include/net/mac802154.h
9874 F:      include/net/nl802154.h
9875 F:      net/ieee802154/
9876 F:      net/mac802154/
9877
9878 IFE PROTOCOL
9879 M:      Yotam Gigi <yotam.gi@gmail.com>
9880 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9881 F:      include/net/ife.h
9882 F:      include/uapi/linux/ife.h
9883 F:      net/ife
9884
9885 IGORPLUG-USB IR RECEIVER
9886 M:      Sean Young <sean@mess.org>
9887 L:      linux-media@vger.kernel.org
9888 S:      Maintained
9889 F:      drivers/media/rc/igorplugusb.c
9890
9891 IGUANAWORKS USB IR TRANSCEIVER
9892 M:      Sean Young <sean@mess.org>
9893 L:      linux-media@vger.kernel.org
9894 S:      Maintained
9895 F:      drivers/media/rc/iguanair.c
9896
9897 IIO DIGITAL POTENTIOMETER DAC
9898 M:      Peter Rosin <peda@axentia.se>
9899 L:      linux-iio@vger.kernel.org
9900 S:      Maintained
9901 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9902 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9903 F:      drivers/iio/dac/dpot-dac.c
9904
9905 IIO ENVELOPE DETECTOR
9906 M:      Peter Rosin <peda@axentia.se>
9907 L:      linux-iio@vger.kernel.org
9908 S:      Maintained
9909 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9910 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9911 F:      drivers/iio/adc/envelope-detector.c
9912
9913 IIO MULTIPLEXER
9914 M:      Peter Rosin <peda@axentia.se>
9915 L:      linux-iio@vger.kernel.org
9916 S:      Maintained
9917 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9918 F:      drivers/iio/multiplexer/iio-mux.c
9919
9920 IIO SCMI BASED DRIVER
9921 M:      Jyoti Bhayana <jbhayana@google.com>
9922 L:      linux-iio@vger.kernel.org
9923 S:      Maintained
9924 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9925
9926 IIO SUBSYSTEM AND DRIVERS
9927 M:      Jonathan Cameron <jic23@kernel.org>
9928 R:      Lars-Peter Clausen <lars@metafoo.de>
9929 L:      linux-iio@vger.kernel.org
9930 S:      Maintained
9931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9932 F:      Documentation/ABI/testing/configfs-iio*
9933 F:      Documentation/ABI/testing/sysfs-bus-iio*
9934 F:      Documentation/devicetree/bindings/iio/
9935 F:      drivers/iio/
9936 F:      drivers/staging/iio/
9937 F:      include/dt-bindings/iio/
9938 F:      include/linux/iio/
9939 F:      tools/iio/
9940
9941 IIO UNIT CONVERTER
9942 M:      Peter Rosin <peda@axentia.se>
9943 L:      linux-iio@vger.kernel.org
9944 S:      Maintained
9945 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9946 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9947 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9948 F:      drivers/iio/afe/iio-rescale.c
9949
9950 IKANOS/ADI EAGLE ADSL USB DRIVER
9951 M:      Matthieu Castet <castet.matthieu@free.fr>
9952 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9953 S:      Maintained
9954 F:      drivers/usb/atm/ueagle-atm.c
9955
9956 IMAGIS TOUCHSCREEN DRIVER
9957 M:      Markuss Broks <markuss.broks@gmail.com>
9958 S:      Maintained
9959 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9960 F:      drivers/input/touchscreen/imagis.c
9961
9962 IMGTEC ASCII LCD DRIVER
9963 M:      Paul Burton <paulburton@kernel.org>
9964 S:      Maintained
9965 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9966 F:      drivers/auxdisplay/img-ascii-lcd.c
9967
9968 IMGTEC IR DECODER DRIVER
9969 S:      Orphan
9970 F:      drivers/media/rc/img-ir/
9971
9972 IMON SOUNDGRAPH USB IR RECEIVER
9973 M:      Sean Young <sean@mess.org>
9974 L:      linux-media@vger.kernel.org
9975 S:      Maintained
9976 F:      drivers/media/rc/imon.c
9977 F:      drivers/media/rc/imon_raw.c
9978
9979 IMS TWINTURBO FRAMEBUFFER DRIVER
9980 L:      linux-fbdev@vger.kernel.org
9981 S:      Orphan
9982 F:      drivers/video/fbdev/imsttfb.c
9983
9984 INA209 HARDWARE MONITOR DRIVER
9985 M:      Guenter Roeck <linux@roeck-us.net>
9986 L:      linux-hwmon@vger.kernel.org
9987 S:      Maintained
9988 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9989 F:      Documentation/hwmon/ina209.rst
9990 F:      drivers/hwmon/ina209.c
9991
9992 INA2XX HARDWARE MONITOR DRIVER
9993 M:      Guenter Roeck <linux@roeck-us.net>
9994 L:      linux-hwmon@vger.kernel.org
9995 S:      Maintained
9996 F:      Documentation/hwmon/ina2xx.rst
9997 F:      drivers/hwmon/ina2xx.c
9998 F:      include/linux/platform_data/ina2xx.h
9999
10000 INDEX OF FURTHER KERNEL DOCUMENTATION
10001 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10002 S:      Maintained
10003 F:      Documentation/process/kernel-docs.rst
10004
10005 INDUSTRY PACK SUBSYSTEM (IPACK)
10006 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10007 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10008 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10009 L:      industrypack-devel@lists.sourceforge.net
10010 S:      Maintained
10011 W:      http://industrypack.sourceforge.net
10012 F:      drivers/ipack/
10013
10014 INFINEON DPS310 Driver
10015 M:      Eddie James <eajames@linux.ibm.com>
10016 L:      linux-iio@vger.kernel.org
10017 S:      Maintained
10018 F:      drivers/iio/pressure/dps310.c
10019
10020 INFINIBAND SUBSYSTEM
10021 M:      Jason Gunthorpe <jgg@nvidia.com>
10022 M:      Leon Romanovsky <leonro@nvidia.com>
10023 L:      linux-rdma@vger.kernel.org
10024 S:      Supported
10025 W:      https://github.com/linux-rdma/rdma-core
10026 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10028 F:      Documentation/devicetree/bindings/infiniband/
10029 F:      Documentation/infiniband/
10030 F:      drivers/infiniband/
10031 F:      include/rdma/
10032 F:      include/trace/events/ib_mad.h
10033 F:      include/trace/events/ib_umad.h
10034 F:      include/trace/misc/rdma.h
10035 F:      include/uapi/linux/if_infiniband.h
10036 F:      include/uapi/rdma/
10037 F:      samples/bpf/ibumad_kern.c
10038 F:      samples/bpf/ibumad_user.c
10039
10040 INGENIC JZ4780 NAND DRIVER
10041 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10042 L:      linux-mtd@lists.infradead.org
10043 L:      linux-mips@vger.kernel.org
10044 S:      Maintained
10045 F:      drivers/mtd/nand/raw/ingenic/
10046
10047 INGENIC JZ47xx SoCs
10048 M:      Paul Cercueil <paul@crapouillou.net>
10049 L:      linux-mips@vger.kernel.org
10050 S:      Maintained
10051 F:      arch/mips/boot/dts/ingenic/
10052 F:      arch/mips/generic/board-ingenic.c
10053 F:      arch/mips/include/asm/mach-ingenic/
10054 F:      arch/mips/ingenic/Kconfig
10055 F:      drivers/clk/ingenic/
10056 F:      drivers/dma/dma-jz4780.c
10057 F:      drivers/gpu/drm/ingenic/
10058 F:      drivers/i2c/busses/i2c-jz4780.c
10059 F:      drivers/iio/adc/ingenic-adc.c
10060 F:      drivers/irqchip/irq-ingenic.c
10061 F:      drivers/memory/jz4780-nemc.c
10062 F:      drivers/mmc/host/jz4740_mmc.c
10063 F:      drivers/mtd/nand/raw/ingenic/
10064 F:      drivers/pinctrl/pinctrl-ingenic.c
10065 F:      drivers/power/supply/ingenic-battery.c
10066 F:      drivers/pwm/pwm-jz4740.c
10067 F:      drivers/remoteproc/ingenic_rproc.c
10068 F:      drivers/rtc/rtc-jz4740.c
10069 F:      drivers/tty/serial/8250/8250_ingenic.c
10070 F:      drivers/usb/musb/jz4740.c
10071 F:      drivers/watchdog/jz4740_wdt.c
10072 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10073 F:      include/linux/mfd/ingenic-tcu.h
10074 F:      sound/soc/codecs/jz47*
10075 F:      sound/soc/jz4740/
10076
10077 INJOINIC IP5xxx POWER BANK IC DRIVER
10078 M:      Samuel Holland <samuel@sholland.org>
10079 S:      Maintained
10080 F:      drivers/power/supply/ip5xxx_power.c
10081
10082 INOTIFY
10083 M:      Jan Kara <jack@suse.cz>
10084 R:      Amir Goldstein <amir73il@gmail.com>
10085 L:      linux-fsdevel@vger.kernel.org
10086 S:      Maintained
10087 F:      Documentation/filesystems/inotify.rst
10088 F:      fs/notify/inotify/
10089 F:      include/linux/inotify.h
10090 F:      include/uapi/linux/inotify.h
10091
10092 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10093 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10094 L:      linux-input@vger.kernel.org
10095 S:      Maintained
10096 Q:      http://patchwork.kernel.org/project/linux-input/list/
10097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10098 F:      Documentation/devicetree/bindings/input/
10099 F:      Documentation/devicetree/bindings/serio/
10100 F:      Documentation/input/
10101 F:      drivers/input/
10102 F:      include/dt-bindings/input/
10103 F:      include/linux/input.h
10104 F:      include/linux/input/
10105 F:      include/uapi/linux/input-event-codes.h
10106 F:      include/uapi/linux/input.h
10107
10108 INPUT MULTITOUCH (MT) PROTOCOL
10109 M:      Henrik Rydberg <rydberg@bitmath.org>
10110 L:      linux-input@vger.kernel.org
10111 S:      Odd fixes
10112 F:      Documentation/input/multi-touch-protocol.rst
10113 F:      drivers/input/input-mt.c
10114 K:      \b(ABS|SYN)_MT_
10115
10116 INSIDE SECURE CRYPTO DRIVER
10117 M:      Antoine Tenart <atenart@kernel.org>
10118 L:      linux-crypto@vger.kernel.org
10119 S:      Maintained
10120 F:      drivers/crypto/inside-secure/
10121
10122 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10123 M:      Mimi Zohar <zohar@linux.ibm.com>
10124 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10125 L:      linux-integrity@vger.kernel.org
10126 S:      Supported
10127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10128 F:      security/integrity/ima/
10129 F:      security/integrity/
10130
10131 INTEL 810/815 FRAMEBUFFER DRIVER
10132 M:      Antonino Daplas <adaplas@gmail.com>
10133 L:      linux-fbdev@vger.kernel.org
10134 S:      Maintained
10135 F:      drivers/video/fbdev/i810/
10136
10137 INTEL 8255 GPIO DRIVER
10138 M:      William Breathitt Gray <william.gray@linaro.org>
10139 L:      linux-gpio@vger.kernel.org
10140 S:      Maintained
10141 F:      drivers/gpio/gpio-i8255.c
10142 F:      drivers/gpio/gpio-i8255.h
10143
10144 INTEL ASoC DRIVERS
10145 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10146 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10147 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10148 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10149 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10150 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10151 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10152 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10153 S:      Supported
10154 F:      sound/soc/intel/
10155
10156 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10157 M:      Hans de Goede <hdegoede@redhat.com>
10158 L:      platform-driver-x86@vger.kernel.org
10159 S:      Maintained
10160 F:      drivers/platform/x86/intel/atomisp2/pm.c
10161
10162 INTEL ATOMISP2 LED DRIVER
10163 M:      Hans de Goede <hdegoede@redhat.com>
10164 L:      platform-driver-x86@vger.kernel.org
10165 S:      Maintained
10166 F:      drivers/platform/x86/intel/atomisp2/led.c
10167
10168 INTEL BIOS SAR INT1092 DRIVER
10169 M:      Shravan Sudhakar <s.shravan@intel.com>
10170 M:      Intel Corporation <linuxwwan@intel.com>
10171 L:      platform-driver-x86@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/platform/x86/intel/int1092/
10174
10175 INTEL BROXTON PMC DRIVER
10176 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10177 M:      Zha Qipeng <qipeng.zha@intel.com>
10178 S:      Maintained
10179 F:      drivers/mfd/intel_pmc_bxt.c
10180 F:      include/linux/mfd/intel_pmc_bxt.h
10181
10182 INTEL C600 SERIES SAS CONTROLLER DRIVER
10183 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10184 L:      linux-scsi@vger.kernel.org
10185 S:      Supported
10186 T:      git git://git.code.sf.net/p/intel-sas/isci
10187 F:      drivers/scsi/isci/
10188
10189 INTEL CPU family model numbers
10190 M:      Tony Luck <tony.luck@intel.com>
10191 M:      x86@kernel.org
10192 L:      linux-kernel@vger.kernel.org
10193 S:      Supported
10194 F:      arch/x86/include/asm/intel-family.h
10195
10196 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10197 M:      Jani Nikula <jani.nikula@linux.intel.com>
10198 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10199 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10200 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10201 L:      intel-gfx@lists.freedesktop.org
10202 S:      Supported
10203 W:      https://01.org/linuxgraphics/
10204 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10205 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10206 C:      irc://irc.oftc.net/intel-gfx
10207 T:      git git://anongit.freedesktop.org/drm-intel
10208 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10209 F:      Documentation/gpu/i915.rst
10210 F:      drivers/gpu/drm/i915/
10211 F:      include/drm/i915*
10212 F:      include/uapi/drm/i915_drm.h
10213
10214 INTEL ETHERNET DRIVERS
10215 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10216 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10217 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10218 S:      Supported
10219 W:      http://www.intel.com/support/feedback.htm
10220 W:      http://e1000.sourceforge.net/
10221 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10224 F:      Documentation/networking/device_drivers/ethernet/intel/
10225 F:      drivers/net/ethernet/intel/
10226 F:      drivers/net/ethernet/intel/*/
10227 F:      include/linux/avf/virtchnl.h
10228 F:      include/linux/net/intel/iidc.h
10229
10230 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10231 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10232 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10233 L:      linux-rdma@vger.kernel.org
10234 S:      Supported
10235 F:      drivers/infiniband/hw/irdma/
10236 F:      include/uapi/rdma/irdma-abi.h
10237
10238 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10239 M:      Maik Broemme <mbroemme@libmpq.org>
10240 L:      linux-fbdev@vger.kernel.org
10241 S:      Maintained
10242 F:      Documentation/fb/intelfb.rst
10243 F:      drivers/video/fbdev/intelfb/
10244
10245 INTEL GPIO DRIVERS
10246 M:      Andy Shevchenko <andy@kernel.org>
10247 L:      linux-gpio@vger.kernel.org
10248 S:      Supported
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10250 F:      drivers/gpio/gpio-ich.c
10251 F:      drivers/gpio/gpio-merrifield.c
10252 F:      drivers/gpio/gpio-ml-ioh.c
10253 F:      drivers/gpio/gpio-pch.c
10254 F:      drivers/gpio/gpio-sch.c
10255 F:      drivers/gpio/gpio-sodaville.c
10256
10257 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10258 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10259 M:      Zhi Wang <zhi.a.wang@intel.com>
10260 L:      intel-gvt-dev@lists.freedesktop.org
10261 L:      intel-gfx@lists.freedesktop.org
10262 S:      Supported
10263 W:      https://01.org/igvt-g
10264 T:      git https://github.com/intel/gvt-linux.git
10265 F:      drivers/gpu/drm/i915/gvt/
10266
10267 INTEL HID EVENT DRIVER
10268 M:      Alex Hung <alexhung@gmail.com>
10269 L:      platform-driver-x86@vger.kernel.org
10270 S:      Maintained
10271 F:      drivers/platform/x86/intel/hid.c
10272
10273 INTEL I/OAT DMA DRIVER
10274 M:      Dave Jiang <dave.jiang@intel.com>
10275 R:      Dan Williams <dan.j.williams@intel.com>
10276 L:      dmaengine@vger.kernel.org
10277 S:      Supported
10278 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10279 F:      drivers/dma/ioat*
10280
10281 INTEL IDXD DRIVER
10282 M:      Fenghua Yu <fenghua.yu@intel.com>
10283 M:      Dave Jiang <dave.jiang@intel.com>
10284 L:      dmaengine@vger.kernel.org
10285 S:      Supported
10286 F:      drivers/dma/idxd/*
10287 F:      include/uapi/linux/idxd.h
10288
10289 INTEL IDLE DRIVER
10290 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10291 M:      Len Brown <lenb@kernel.org>
10292 L:      linux-pm@vger.kernel.org
10293 S:      Supported
10294 B:      https://bugzilla.kernel.org
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10296 F:      drivers/idle/intel_idle.c
10297
10298 INTEL IN FIELD SCAN (IFS) DEVICE
10299 M:      Jithu Joseph <jithu.joseph@intel.com>
10300 R:      Ashok Raj <ashok.raj@intel.com>
10301 R:      Tony Luck <tony.luck@intel.com>
10302 S:      Maintained
10303 F:      drivers/platform/x86/intel/ifs
10304 F:      include/trace/events/intel_ifs.h
10305
10306 INTEL INTEGRATED SENSOR HUB DRIVER
10307 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10308 M:      Jiri Kosina <jikos@kernel.org>
10309 L:      linux-input@vger.kernel.org
10310 S:      Maintained
10311 F:      drivers/hid/intel-ish-hid/
10312
10313 INTEL IOMMU (VT-d)
10314 M:      David Woodhouse <dwmw2@infradead.org>
10315 M:      Lu Baolu <baolu.lu@linux.intel.com>
10316 L:      iommu@lists.linux.dev
10317 S:      Supported
10318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10319 F:      drivers/iommu/intel/
10320 F:      include/linux/intel-svm.h
10321
10322 INTEL IPU3 CSI-2 CIO2 DRIVER
10323 M:      Yong Zhi <yong.zhi@intel.com>
10324 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10325 M:      Bingbu Cao <bingbu.cao@intel.com>
10326 M:      Dan Scally <djrscally@gmail.com>
10327 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10328 L:      linux-media@vger.kernel.org
10329 S:      Maintained
10330 T:      git git://linuxtv.org/media_tree.git
10331 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10332 F:      drivers/media/pci/intel/ipu3/
10333
10334 INTEL IPU3 CSI-2 IMGU DRIVER
10335 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10336 R:      Bingbu Cao <bingbu.cao@intel.com>
10337 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10338 L:      linux-media@vger.kernel.org
10339 S:      Maintained
10340 F:      Documentation/admin-guide/media/ipu3.rst
10341 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10342 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10343 F:      drivers/staging/media/ipu3/
10344
10345 INTEL IXP4XX CRYPTO SUPPORT
10346 M:      Corentin Labbe <clabbe@baylibre.com>
10347 L:      linux-crypto@vger.kernel.org
10348 S:      Maintained
10349 F:      drivers/crypto/ixp4xx_crypto.c
10350
10351 INTEL ISHTP ECLITE DRIVER
10352 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10353 L:      platform-driver-x86@vger.kernel.org
10354 S:      Supported
10355 F:      drivers/platform/x86/intel/ishtp_eclite.c
10356
10357 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10358 M:      Krzysztof Halasa <khalasa@piap.pl>
10359 S:      Maintained
10360 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10361 F:      drivers/net/wan/ixp4xx_hss.c
10362 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10363 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10364 F:      include/linux/soc/ixp4xx/npe.h
10365 F:      include/linux/soc/ixp4xx/qmgr.h
10366
10367 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10368 M:      Deepak Saxena <dsaxena@plexity.net>
10369 S:      Maintained
10370 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10371 F:      drivers/char/hw_random/ixp4xx-rng.c
10372
10373 INTEL KEEM BAY DRM DRIVER
10374 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10375 M:      Edmund Dea <edmund.j.dea@intel.com>
10376 S:      Maintained
10377 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10378 F:      drivers/gpu/drm/kmb/
10379
10380 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10381 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10382 S:      Maintained
10383 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10384 F:      drivers/crypto/keembay/Kconfig
10385 F:      drivers/crypto/keembay/Makefile
10386 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10387 F:      drivers/crypto/keembay/ocs-aes.c
10388 F:      drivers/crypto/keembay/ocs-aes.h
10389
10390 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10391 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10392 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10393 M:      Mark Gross <mgross@linux.intel.com>
10394 S:      Maintained
10395 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10396 F:      drivers/crypto/keembay/Kconfig
10397 F:      drivers/crypto/keembay/Makefile
10398 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10399
10400 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10401 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10402 M:      Declan Murphy <declan.murphy@intel.com>
10403 S:      Maintained
10404 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10405 F:      drivers/crypto/keembay/Kconfig
10406 F:      drivers/crypto/keembay/Makefile
10407 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10408 F:      drivers/crypto/keembay/ocs-hcu.c
10409 F:      drivers/crypto/keembay/ocs-hcu.h
10410
10411 INTEL THUNDER BAY EMMC PHY DRIVER
10412 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10413 M:      Rashmi A <rashmi.a@intel.com>
10414 S:      Maintained
10415 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10416 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10417
10418 INTEL MANAGEMENT ENGINE (mei)
10419 M:      Tomas Winkler <tomas.winkler@intel.com>
10420 L:      linux-kernel@vger.kernel.org
10421 S:      Supported
10422 F:      Documentation/driver-api/mei/*
10423 F:      drivers/misc/mei/
10424 F:      drivers/watchdog/mei_wdt.c
10425 F:      include/linux/mei_aux.h
10426 F:      include/linux/mei_cl_bus.h
10427 F:      include/uapi/linux/mei.h
10428 F:      samples/mei/*
10429
10430 INTEL MAX 10 BMC MFD DRIVER
10431 M:      Xu Yilun <yilun.xu@intel.com>
10432 R:      Tom Rix <trix@redhat.com>
10433 S:      Maintained
10434 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10435 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10436 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10437 F:      drivers/mfd/intel-m10-bmc.c
10438 F:      include/linux/mfd/intel-m10-bmc.h
10439
10440 INTEL MENLOW THERMAL DRIVER
10441 M:      Sujith Thomas <sujith.thomas@intel.com>
10442 L:      linux-pm@vger.kernel.org
10443 S:      Supported
10444 F:      drivers/thermal/intel/intel_menlow.c
10445
10446 INTEL P-Unit IPC DRIVER
10447 M:      Zha Qipeng <qipeng.zha@intel.com>
10448 L:      platform-driver-x86@vger.kernel.org
10449 S:      Maintained
10450 F:      arch/x86/include/asm/intel_punit_ipc.h
10451 F:      drivers/platform/x86/intel/punit_ipc.c
10452
10453 INTEL PMC CORE DRIVER
10454 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10455 M:      David E Box <david.e.box@intel.com>
10456 L:      platform-driver-x86@vger.kernel.org
10457 S:      Maintained
10458 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10459 F:      drivers/platform/x86/intel/pmc/
10460
10461 INTEL PMIC GPIO DRIVERS
10462 M:      Andy Shevchenko <andy@kernel.org>
10463 S:      Supported
10464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10465 F:      drivers/gpio/gpio-*cove.c
10466
10467 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10468 M:      Andy Shevchenko <andy@kernel.org>
10469 S:      Supported
10470 F:      drivers/mfd/intel_soc_pmic*
10471 F:      include/linux/mfd/intel_soc_pmic*
10472
10473 INTEL PMT DRIVERS
10474 M:      David E. Box <david.e.box@linux.intel.com>
10475 S:      Supported
10476 F:      drivers/platform/x86/intel/pmt/
10477
10478 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10479 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10480 L:      linux-wireless@vger.kernel.org
10481 S:      Maintained
10482 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10483 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10484 F:      drivers/net/wireless/intel/ipw2x00/
10485
10486 INTEL PSTATE DRIVER
10487 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10488 M:      Len Brown <lenb@kernel.org>
10489 L:      linux-pm@vger.kernel.org
10490 S:      Supported
10491 F:      drivers/cpufreq/intel_pstate.c
10492
10493 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10494 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10495 L:      linux-iio@vger.kernel.org
10496 F:      drivers/counter/intel-qep.c
10497
10498 INTEL SCU DRIVERS
10499 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10500 S:      Maintained
10501 F:      arch/x86/include/asm/intel_scu_ipc.h
10502 F:      drivers/platform/x86/intel_scu_*
10503
10504 INTEL SDSI DRIVER
10505 M:      David E. Box <david.e.box@linux.intel.com>
10506 S:      Supported
10507 F:      drivers/platform/x86/intel/sdsi.c
10508 F:      tools/arch/x86/intel_sdsi/
10509 F:      tools/testing/selftests/drivers/sdsi/
10510
10511 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10512 M:      Daniel Scally <djrscally@gmail.com>
10513 S:      Maintained
10514 F:      drivers/platform/x86/intel/int3472/
10515
10516 INTEL SPEED SELECT TECHNOLOGY
10517 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10518 L:      platform-driver-x86@vger.kernel.org
10519 S:      Maintained
10520 F:      drivers/platform/x86/intel/speed_select_if/
10521 F:      include/uapi/linux/isst_if.h
10522 F:      tools/power/x86/intel-speed-select/
10523
10524 INTEL STRATIX10 FIRMWARE DRIVERS
10525 M:      Dinh Nguyen <dinguyen@kernel.org>
10526 L:      linux-kernel@vger.kernel.org
10527 S:      Maintained
10528 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10529 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10530 F:      drivers/firmware/stratix10-rsu.c
10531 F:      drivers/firmware/stratix10-svc.c
10532 F:      include/linux/firmware/intel/stratix10-smc.h
10533 F:      include/linux/firmware/intel/stratix10-svc-client.h
10534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10535
10536 INTEL TELEMETRY DRIVER
10537 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10538 M:      "David E. Box" <david.e.box@linux.intel.com>
10539 L:      platform-driver-x86@vger.kernel.org
10540 S:      Maintained
10541 F:      arch/x86/include/asm/intel_telemetry.h
10542 F:      drivers/platform/x86/intel/telemetry/
10543
10544 INTEL TPMI DRIVER
10545 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10546 L:      platform-driver-x86@vger.kernel.org
10547 S:      Maintained
10548 F:      drivers/platform/x86/intel/tpmi.c
10549 F:      include/linux/intel_tpmi.h
10550
10551 INTEL UNCORE FREQUENCY CONTROL
10552 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10553 L:      platform-driver-x86@vger.kernel.org
10554 S:      Maintained
10555 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10556 F:      drivers/platform/x86/intel/uncore-frequency/
10557
10558 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10559 M:      David E. Box <david.e.box@linux.intel.com>
10560 S:      Supported
10561 F:      drivers/platform/x86/intel/vsec.*
10562
10563 INTEL VIRTUAL BUTTON DRIVER
10564 M:      AceLan Kao <acelan.kao@canonical.com>
10565 L:      platform-driver-x86@vger.kernel.org
10566 S:      Maintained
10567 F:      drivers/platform/x86/intel/vbtn.c
10568
10569 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10570 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10571 L:      linux-wireless@vger.kernel.org
10572 S:      Supported
10573 F:      drivers/net/wireless/intel/iwlegacy/
10574
10575 INTEL WIRELESS WIFI LINK (iwlwifi)
10576 M:      Gregory Greenman <gregory.greenman@intel.com>
10577 L:      linux-wireless@vger.kernel.org
10578 S:      Supported
10579 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10581 F:      drivers/net/wireless/intel/iwlwifi/
10582
10583 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10584 M:      Jithu Joseph <jithu.joseph@intel.com>
10585 R:      Maurice Ma <maurice.ma@intel.com>
10586 S:      Maintained
10587 W:      https://slimbootloader.github.io/security/firmware-update.html
10588 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10589
10590 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10591 L:      Dell.Client.Kernel@dell.com
10592 S:      Maintained
10593 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10594
10595 INTEL WWAN IOSM DRIVER
10596 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10597 M:      Intel Corporation <linuxwwan@intel.com>
10598 L:      netdev@vger.kernel.org
10599 S:      Maintained
10600 F:      drivers/net/wwan/iosm/
10601
10602 INTEL(R) TRACE HUB
10603 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10604 S:      Supported
10605 F:      Documentation/trace/intel_th.rst
10606 F:      drivers/hwtracing/intel_th/
10607 F:      include/linux/intel_th.h
10608
10609 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10610 M:      Ning Sun <ning.sun@intel.com>
10611 L:      tboot-devel@lists.sourceforge.net
10612 S:      Supported
10613 W:      http://tboot.sourceforge.net
10614 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10615 F:      Documentation/x86/intel_txt.rst
10616 F:      arch/x86/kernel/tboot.c
10617 F:      include/linux/tboot.h
10618
10619 INTEL SGX
10620 M:      Jarkko Sakkinen <jarkko@kernel.org>
10621 R:      Dave Hansen <dave.hansen@linux.intel.com>
10622 L:      linux-sgx@vger.kernel.org
10623 S:      Supported
10624 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10626 F:      Documentation/x86/sgx.rst
10627 F:      arch/x86/entry/vdso/vsgx.S
10628 F:      arch/x86/include/asm/sgx.h
10629 F:      arch/x86/include/uapi/asm/sgx.h
10630 F:      arch/x86/kernel/cpu/sgx/*
10631 F:      tools/testing/selftests/sgx/*
10632 K:      \bSGX_
10633
10634 INTERCONNECT API
10635 M:      Georgi Djakov <djakov@kernel.org>
10636 L:      linux-pm@vger.kernel.org
10637 S:      Maintained
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10639 F:      Documentation/devicetree/bindings/interconnect/
10640 F:      Documentation/driver-api/interconnect.rst
10641 F:      drivers/interconnect/
10642 F:      include/dt-bindings/interconnect/
10643 F:      include/linux/interconnect-provider.h
10644 F:      include/linux/interconnect.h
10645
10646 INTERRUPT COUNTER DRIVER
10647 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10648 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10649 L:      linux-iio@vger.kernel.org
10650 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10651 F:      drivers/counter/interrupt-cnt.c
10652
10653 INTERSIL ISL7998X VIDEO DECODER DRIVER
10654 M:      Michael Tretter <m.tretter@pengutronix.de>
10655 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10656 L:      linux-media@vger.kernel.org
10657 S:      Maintained
10658 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10659 F:      drivers/media/i2c/isl7998x.c
10660
10661 INVENSENSE ICM-426xx IMU DRIVER
10662 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10663 L:      linux-iio@vger.kernel.org
10664 S:      Maintained
10665 W:      https://invensense.tdk.com/
10666 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10667 F:      drivers/iio/imu/inv_icm42600/
10668
10669 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10670 M:      Linus Walleij <linus.walleij@linaro.org>
10671 L:      linux-iio@vger.kernel.org
10672 S:      Maintained
10673 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10674 F:      drivers/iio/gyro/mpu3050*
10675
10676 IOC3 ETHERNET DRIVER
10677 M:      Ralf Baechle <ralf@linux-mips.org>
10678 L:      linux-mips@vger.kernel.org
10679 S:      Maintained
10680 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10681
10682 IOMAP FILESYSTEM LIBRARY
10683 M:      Christoph Hellwig <hch@infradead.org>
10684 M:      Darrick J. Wong <djwong@kernel.org>
10685 L:      linux-xfs@vger.kernel.org
10686 L:      linux-fsdevel@vger.kernel.org
10687 S:      Supported
10688 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10689 F:      fs/iomap/
10690 F:      include/linux/iomap.h
10691
10692 IOMMU DMA-API LAYER
10693 M:      Robin Murphy <robin.murphy@arm.com>
10694 L:      iommu@lists.linux.dev
10695 S:      Maintained
10696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10697 F:      drivers/iommu/dma-iommu.c
10698 F:      drivers/iommu/dma-iommu.h
10699 F:      drivers/iommu/iova.c
10700 F:      include/linux/iova.h
10701
10702 IOMMUFD
10703 M:      Jason Gunthorpe <jgg@nvidia.com>
10704 M:      Kevin Tian <kevin.tian@intel.com>
10705 L:      iommu@lists.linux.dev
10706 S:      Maintained
10707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10708 F:      Documentation/userspace-api/iommufd.rst
10709 F:      drivers/iommu/iommufd/
10710 F:      include/linux/iommufd.h
10711 F:      include/uapi/linux/iommufd.h
10712 F:      tools/testing/selftests/iommu/
10713
10714 IOMMU SUBSYSTEM
10715 M:      Joerg Roedel <joro@8bytes.org>
10716 M:      Will Deacon <will@kernel.org>
10717 R:      Robin Murphy <robin.murphy@arm.com>
10718 L:      iommu@lists.linux.dev
10719 S:      Maintained
10720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10721 F:      Documentation/devicetree/bindings/iommu/
10722 F:      Documentation/userspace-api/iommu.rst
10723 F:      drivers/iommu/
10724 F:      include/linux/iommu.h
10725 F:      include/linux/iova.h
10726 F:      include/linux/of_iommu.h
10727 F:      include/uapi/linux/iommu.h
10728
10729 IOSYS-MAP HELPERS
10730 M:      Thomas Zimmermann <tzimmermann@suse.de>
10731 L:      dri-devel@lists.freedesktop.org
10732 S:      Maintained
10733 T:      git git://anongit.freedesktop.org/drm/drm-misc
10734 F:      include/linux/iosys-map.h
10735
10736 IO_URING
10737 M:      Jens Axboe <axboe@kernel.dk>
10738 R:      Pavel Begunkov <asml.silence@gmail.com>
10739 L:      io-uring@vger.kernel.org
10740 S:      Maintained
10741 T:      git git://git.kernel.dk/linux-block
10742 T:      git git://git.kernel.dk/liburing
10743 F:      io_uring/
10744 F:      include/linux/io_uring.h
10745 F:      include/linux/io_uring_types.h
10746 F:      include/trace/events/io_uring.h
10747 F:      include/uapi/linux/io_uring.h
10748 F:      tools/io_uring/
10749
10750 IPMI SUBSYSTEM
10751 M:      Corey Minyard <minyard@acm.org>
10752 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10753 S:      Supported
10754 W:      http://openipmi.sourceforge.net/
10755 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10756 F:      Documentation/driver-api/ipmi.rst
10757 F:      Documentation/devicetree/bindings/ipmi/
10758 F:      drivers/char/ipmi/
10759 F:      include/linux/ipmi*
10760 F:      include/uapi/linux/ipmi*
10761
10762 IPS SCSI RAID DRIVER
10763 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10764 L:      linux-scsi@vger.kernel.org
10765 S:      Maintained
10766 W:      http://www.adaptec.com/
10767 F:      drivers/scsi/ips*
10768
10769 IPVS
10770 M:      Simon Horman <horms@verge.net.au>
10771 M:      Julian Anastasov <ja@ssi.bg>
10772 L:      netdev@vger.kernel.org
10773 L:      lvs-devel@vger.kernel.org
10774 S:      Maintained
10775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10777 F:      Documentation/networking/ipvs-sysctl.rst
10778 F:      include/net/ip_vs.h
10779 F:      include/uapi/linux/ip_vs.h
10780 F:      net/netfilter/ipvs/
10781
10782 IPWIRELESS DRIVER
10783 M:      Jiri Kosina <jikos@kernel.org>
10784 M:      David Sterba <dsterba@suse.com>
10785 S:      Odd Fixes
10786 F:      drivers/tty/ipwireless/
10787
10788 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10789 M:      Marc Zyngier <maz@kernel.org>
10790 S:      Maintained
10791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10792 F:      Documentation/core-api/irq/irq-domain.rst
10793 F:      include/linux/irqdomain.h
10794 F:      kernel/irq/irqdomain.c
10795 F:      kernel/irq/msi.c
10796
10797 IRQ SUBSYSTEM
10798 M:      Thomas Gleixner <tglx@linutronix.de>
10799 L:      linux-kernel@vger.kernel.org
10800 S:      Maintained
10801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10802 F:      kernel/irq/
10803 F:      include/linux/group_cpus.h
10804 F:      lib/group_cpus.c
10805
10806 IRQCHIP DRIVERS
10807 M:      Thomas Gleixner <tglx@linutronix.de>
10808 M:      Marc Zyngier <maz@kernel.org>
10809 L:      linux-kernel@vger.kernel.org
10810 S:      Maintained
10811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10812 F:      Documentation/devicetree/bindings/interrupt-controller/
10813 F:      drivers/irqchip/
10814
10815 ISA
10816 M:      William Breathitt Gray <william.gray@linaro.org>
10817 S:      Maintained
10818 F:      Documentation/driver-api/isa.rst
10819 F:      drivers/base/isa.c
10820 F:      include/linux/isa.h
10821
10822 ISA RADIO MODULE
10823 M:      Hans Verkuil <hverkuil@xs4all.nl>
10824 L:      linux-media@vger.kernel.org
10825 S:      Maintained
10826 W:      https://linuxtv.org
10827 T:      git git://linuxtv.org/media_tree.git
10828 F:      drivers/media/radio/radio-isa*
10829
10830 ISAPNP
10831 M:      Jaroslav Kysela <perex@perex.cz>
10832 S:      Maintained
10833 F:      Documentation/driver-api/isapnp.rst
10834 F:      drivers/pnp/isapnp/
10835 F:      include/linux/isapnp.h
10836
10837 ISCSI
10838 M:      Lee Duncan <lduncan@suse.com>
10839 M:      Chris Leech <cleech@redhat.com>
10840 M:      Mike Christie <michael.christie@oracle.com>
10841 L:      open-iscsi@googlegroups.com
10842 L:      linux-scsi@vger.kernel.org
10843 S:      Maintained
10844 W:      www.open-iscsi.com
10845 F:      drivers/scsi/*iscsi*
10846 F:      include/scsi/*iscsi*
10847
10848 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10849 M:      Peter Jones <pjones@redhat.com>
10850 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10851 S:      Maintained
10852 F:      drivers/firmware/iscsi_ibft*
10853
10854 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10855 M:      Sagi Grimberg <sagi@grimberg.me>
10856 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10857 L:      linux-rdma@vger.kernel.org
10858 S:      Supported
10859 W:      http://www.openfabrics.org
10860 W:      www.open-iscsi.org
10861 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10862 F:      drivers/infiniband/ulp/iser/
10863
10864 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10865 M:      Sagi Grimberg <sagi@grimberg.me>
10866 L:      linux-rdma@vger.kernel.org
10867 L:      target-devel@vger.kernel.org
10868 S:      Supported
10869 W:      http://www.linux-iscsi.org
10870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10871 F:      drivers/infiniband/ulp/isert
10872
10873 ISDN/CMTP OVER BLUETOOTH
10874 M:      Karsten Keil <isdn@linux-pingi.de>
10875 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10876 L:      netdev@vger.kernel.org
10877 S:      Odd Fixes
10878 W:      http://www.isdn4linux.de
10879 F:      Documentation/isdn/
10880 F:      drivers/isdn/capi/
10881 F:      include/linux/isdn/
10882 F:      include/uapi/linux/isdn/
10883 F:      net/bluetooth/cmtp/
10884
10885 ISDN/mISDN SUBSYSTEM
10886 M:      Karsten Keil <isdn@linux-pingi.de>
10887 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10888 L:      netdev@vger.kernel.org
10889 S:      Maintained
10890 W:      http://www.isdn4linux.de
10891 F:      drivers/isdn/Kconfig
10892 F:      drivers/isdn/Makefile
10893 F:      drivers/isdn/hardware/
10894 F:      drivers/isdn/mISDN/
10895
10896 ISOFS FILESYSTEM
10897 M:      Jan Kara <jack@suse.cz>
10898 L:      linux-fsdevel@vger.kernel.org
10899 S:      Maintained
10900 F:      Documentation/filesystems/isofs.rst
10901 F:      fs/isofs/
10902
10903 IT87 HARDWARE MONITORING DRIVER
10904 M:      Jean Delvare <jdelvare@suse.com>
10905 L:      linux-hwmon@vger.kernel.org
10906 S:      Maintained
10907 F:      Documentation/hwmon/it87.rst
10908 F:      drivers/hwmon/it87.c
10909
10910 IT913X MEDIA DRIVER
10911 M:      Antti Palosaari <crope@iki.fi>
10912 L:      linux-media@vger.kernel.org
10913 S:      Maintained
10914 W:      https://linuxtv.org
10915 W:      http://palosaari.fi/linux/
10916 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10917 T:      git git://linuxtv.org/anttip/media_tree.git
10918 F:      drivers/media/tuners/it913x*
10919
10920 ITE IT66121 HDMI BRIDGE DRIVER
10921 M:      Phong LE <ple@baylibre.com>
10922 M:      Neil Armstrong <neil.armstrong@linaro.org>
10923 S:      Maintained
10924 T:      git git://anongit.freedesktop.org/drm/drm-misc
10925 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10926 F:      drivers/gpu/drm/bridge/ite-it66121.c
10927
10928 IVTV VIDEO4LINUX DRIVER
10929 M:      Andy Walls <awalls@md.metrocast.net>
10930 L:      linux-media@vger.kernel.org
10931 S:      Maintained
10932 W:      https://linuxtv.org
10933 T:      git git://linuxtv.org/media_tree.git
10934 F:      Documentation/admin-guide/media/ivtv*
10935 F:      drivers/media/pci/ivtv/
10936 F:      include/uapi/linux/ivtv*
10937
10938 IX2505V MEDIA DRIVER
10939 M:      Malcolm Priestley <tvboxspy@gmail.com>
10940 L:      linux-media@vger.kernel.org
10941 S:      Maintained
10942 W:      https://linuxtv.org
10943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10944 F:      drivers/media/dvb-frontends/ix2505v*
10945
10946 JAILHOUSE HYPERVISOR INTERFACE
10947 M:      Jan Kiszka <jan.kiszka@siemens.com>
10948 L:      jailhouse-dev@googlegroups.com
10949 S:      Maintained
10950 F:      arch/x86/include/asm/jailhouse_para.h
10951 F:      arch/x86/kernel/jailhouse.c
10952
10953 JC42.4 TEMPERATURE SENSOR DRIVER
10954 M:      Guenter Roeck <linux@roeck-us.net>
10955 L:      linux-hwmon@vger.kernel.org
10956 S:      Maintained
10957 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10958 F:      Documentation/hwmon/jc42.rst
10959 F:      drivers/hwmon/jc42.c
10960
10961 JFS FILESYSTEM
10962 M:      Dave Kleikamp <shaggy@kernel.org>
10963 L:      jfs-discussion@lists.sourceforge.net
10964 S:      Odd Fixes
10965 W:      http://jfs.sourceforge.net/
10966 T:      git https://github.com/kleikamp/linux-shaggy.git
10967 F:      Documentation/admin-guide/jfs.rst
10968 F:      fs/jfs/
10969
10970 JME NETWORK DRIVER
10971 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10972 L:      netdev@vger.kernel.org
10973 S:      Maintained
10974 F:      drivers/net/ethernet/jme.*
10975
10976 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10977 M:      David Woodhouse <dwmw2@infradead.org>
10978 M:      Richard Weinberger <richard@nod.at>
10979 L:      linux-mtd@lists.infradead.org
10980 S:      Odd Fixes
10981 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10982 T:      git git://git.infradead.org/ubifs-2.6.git
10983 F:      fs/jffs2/
10984 F:      include/uapi/linux/jffs2.h
10985
10986 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10987 M:      "Theodore Ts'o" <tytso@mit.edu>
10988 M:      Jan Kara <jack@suse.com>
10989 L:      linux-ext4@vger.kernel.org
10990 S:      Maintained
10991 F:      fs/jbd2/
10992 F:      include/linux/jbd2.h
10993
10994 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10995 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10996 L:      linux-media@vger.kernel.org
10997 L:      linux-renesas-soc@vger.kernel.org
10998 S:      Maintained
10999 F:      drivers/media/platform/renesas/rcar_jpu.c
11000
11001 JSM Neo PCI based serial card
11002 L:      linux-serial@vger.kernel.org
11003 S:      Orphan
11004 F:      drivers/tty/serial/jsm/
11005
11006 K10TEMP HARDWARE MONITORING DRIVER
11007 M:      Clemens Ladisch <clemens@ladisch.de>
11008 L:      linux-hwmon@vger.kernel.org
11009 S:      Maintained
11010 F:      Documentation/hwmon/k10temp.rst
11011 F:      drivers/hwmon/k10temp.c
11012
11013 K8TEMP HARDWARE MONITORING DRIVER
11014 M:      Rudolf Marek <r.marek@assembler.cz>
11015 L:      linux-hwmon@vger.kernel.org
11016 S:      Maintained
11017 F:      Documentation/hwmon/k8temp.rst
11018 F:      drivers/hwmon/k8temp.c
11019
11020 KASAN
11021 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11022 R:      Alexander Potapenko <glider@google.com>
11023 R:      Andrey Konovalov <andreyknvl@gmail.com>
11024 R:      Dmitry Vyukov <dvyukov@google.com>
11025 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11026 L:      kasan-dev@googlegroups.com
11027 S:      Maintained
11028 F:      Documentation/dev-tools/kasan.rst
11029 F:      arch/*/include/asm/*kasan.h
11030 F:      arch/*/mm/kasan_init*
11031 F:      include/linux/kasan*.h
11032 F:      lib/Kconfig.kasan
11033 F:      mm/kasan/
11034 F:      scripts/Makefile.kasan
11035
11036 KCONFIG
11037 M:      Masahiro Yamada <masahiroy@kernel.org>
11038 L:      linux-kbuild@vger.kernel.org
11039 S:      Maintained
11040 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
11042 F:      Documentation/kbuild/kconfig*
11043 F:      scripts/Kconfig.include
11044 F:      scripts/kconfig/
11045
11046 KCOV
11047 R:      Dmitry Vyukov <dvyukov@google.com>
11048 R:      Andrey Konovalov <andreyknvl@gmail.com>
11049 L:      kasan-dev@googlegroups.com
11050 S:      Maintained
11051 F:      Documentation/dev-tools/kcov.rst
11052 F:      include/linux/kcov.h
11053 F:      include/uapi/linux/kcov.h
11054 F:      kernel/kcov.c
11055 F:      scripts/Makefile.kcov
11056
11057 KCSAN
11058 M:      Marco Elver <elver@google.com>
11059 R:      Dmitry Vyukov <dvyukov@google.com>
11060 L:      kasan-dev@googlegroups.com
11061 S:      Maintained
11062 F:      Documentation/dev-tools/kcsan.rst
11063 F:      include/linux/kcsan*.h
11064 F:      kernel/kcsan/
11065 F:      lib/Kconfig.kcsan
11066 F:      scripts/Makefile.kcsan
11067
11068 KDUMP
11069 M:      Baoquan He <bhe@redhat.com>
11070 R:      Vivek Goyal <vgoyal@redhat.com>
11071 R:      Dave Young <dyoung@redhat.com>
11072 L:      kexec@lists.infradead.org
11073 S:      Maintained
11074 W:      http://lse.sourceforge.net/kdump/
11075 F:      Documentation/admin-guide/kdump/
11076 F:      fs/proc/vmcore.c
11077 F:      include/linux/crash_core.h
11078 F:      include/linux/crash_dump.h
11079 F:      include/uapi/linux/vmcore.h
11080 F:      kernel/crash_*.c
11081
11082 KEENE FM RADIO TRANSMITTER DRIVER
11083 M:      Hans Verkuil <hverkuil@xs4all.nl>
11084 L:      linux-media@vger.kernel.org
11085 S:      Maintained
11086 W:      https://linuxtv.org
11087 T:      git git://linuxtv.org/media_tree.git
11088 F:      drivers/media/radio/radio-keene*
11089
11090 KERNEL AUTOMOUNTER
11091 M:      Ian Kent <raven@themaw.net>
11092 L:      autofs@vger.kernel.org
11093 S:      Maintained
11094 F:      fs/autofs/
11095
11096 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11097 M:      Masahiro Yamada <masahiroy@kernel.org>
11098 R:      Nathan Chancellor <nathan@kernel.org>
11099 R:      Nick Desaulniers <ndesaulniers@google.com>
11100 R:      Nicolas Schier <nicolas@fjasle.eu>
11101 L:      linux-kbuild@vger.kernel.org
11102 S:      Maintained
11103 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11105 F:      Documentation/kbuild/
11106 F:      Makefile
11107 F:      scripts/*vmlinux*
11108 F:      scripts/Kbuild*
11109 F:      scripts/Makefile*
11110 F:      scripts/basic/
11111 F:      scripts/dummy-tools/
11112 F:      scripts/mk*
11113 F:      scripts/mod/
11114 F:      scripts/package/
11115
11116 KERNEL HARDENING (not covered by other areas)
11117 M:      Kees Cook <keescook@chromium.org>
11118 L:      linux-hardening@vger.kernel.org
11119 S:      Supported
11120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11121 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11122 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11123 F:      include/linux/overflow.h
11124 F:      include/linux/randomize_kstack.h
11125 F:      mm/usercopy.c
11126 K:      \b(add|choose)_random_kstack_offset\b
11127 K:      \b__check_(object_size|heap_object)\b
11128
11129 KERNEL JANITORS
11130 L:      kernel-janitors@vger.kernel.org
11131 S:      Odd Fixes
11132 W:      http://kernelnewbies.org/KernelJanitors
11133
11134 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11135 M:      Chuck Lever <chuck.lever@oracle.com>
11136 M:      Jeff Layton <jlayton@kernel.org>
11137 L:      linux-nfs@vger.kernel.org
11138 S:      Supported
11139 W:      http://nfs.sourceforge.net/
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11141 F:      fs/exportfs/
11142 F:      fs/lockd/
11143 F:      fs/nfs_common/
11144 F:      fs/nfsd/
11145 F:      include/linux/lockd/
11146 F:      include/linux/sunrpc/
11147 F:      include/trace/events/rpcgss.h
11148 F:      include/trace/events/rpcrdma.h
11149 F:      include/trace/events/sunrpc.h
11150 F:      include/trace/misc/fs.h
11151 F:      include/trace/misc/nfs.h
11152 F:      include/trace/misc/sunrpc.h
11153 F:      include/uapi/linux/nfsd/
11154 F:      include/uapi/linux/sunrpc/
11155 F:      net/sunrpc/
11156 F:      Documentation/filesystems/nfs/
11157
11158 KERNEL REGRESSIONS
11159 M:      Thorsten Leemhuis <linux@leemhuis.info>
11160 L:      regressions@lists.linux.dev
11161 S:      Supported
11162 F:      Documentation/admin-guide/reporting-regressions.rst
11163 F:      Documentation/process/handling-regressions.rst
11164
11165 KERNEL SELFTEST FRAMEWORK
11166 M:      Shuah Khan <shuah@kernel.org>
11167 M:      Shuah Khan <skhan@linuxfoundation.org>
11168 L:      linux-kselftest@vger.kernel.org
11169 S:      Maintained
11170 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11172 F:      Documentation/dev-tools/kselftest*
11173 F:      tools/testing/selftests/
11174
11175 KERNEL SMB3 SERVER (KSMBD)
11176 M:      Namjae Jeon <linkinjeon@kernel.org>
11177 M:      Steve French <sfrench@samba.org>
11178 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11179 R:      Tom Talpey <tom@talpey.com>
11180 L:      linux-cifs@vger.kernel.org
11181 S:      Maintained
11182 T:      git git://git.samba.org/ksmbd.git
11183 F:      Documentation/filesystems/cifs/ksmbd.rst
11184 F:      fs/ksmbd/
11185 F:      fs/smbfs_common/
11186
11187 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11188 M:      Brendan Higgins <brendanhiggins@google.com>
11189 M:      David Gow <davidgow@google.com>
11190 L:      linux-kselftest@vger.kernel.org
11191 L:      kunit-dev@googlegroups.com
11192 S:      Maintained
11193 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11194 F:      Documentation/dev-tools/kunit/
11195 F:      include/kunit/
11196 F:      lib/kunit/
11197 F:      tools/testing/kunit/
11198
11199 KERNEL USERMODE HELPER
11200 M:      Luis Chamberlain <mcgrof@kernel.org>
11201 L:      linux-kernel@vger.kernel.org
11202 S:      Maintained
11203 F:      include/linux/umh.h
11204 F:      kernel/umh.c
11205
11206 KERNEL VIRTUAL MACHINE (KVM)
11207 M:      Paolo Bonzini <pbonzini@redhat.com>
11208 L:      kvm@vger.kernel.org
11209 S:      Supported
11210 W:      http://www.linux-kvm.org
11211 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11212 F:      Documentation/virt/kvm/
11213 F:      include/asm-generic/kvm*
11214 F:      include/kvm/iodev.h
11215 F:      include/linux/kvm*
11216 F:      include/trace/events/kvm.h
11217 F:      include/uapi/asm-generic/kvm*
11218 F:      include/uapi/linux/kvm*
11219 F:      tools/kvm/
11220 F:      tools/testing/selftests/kvm/
11221 F:      virt/kvm/*
11222
11223 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11224 M:      Marc Zyngier <maz@kernel.org>
11225 R:      James Morse <james.morse@arm.com>
11226 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11227 R:      Oliver Upton <oliver.upton@linux.dev>
11228 R:      Zenghui Yu <yuzenghui@huawei.com>
11229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11230 L:      kvmarm@lists.linux.dev
11231 L:      kvmarm@lists.cs.columbia.edu (deprecated, moderated for non-subscribers)
11232 S:      Maintained
11233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11234 F:      arch/arm64/include/asm/kvm*
11235 F:      arch/arm64/include/uapi/asm/kvm*
11236 F:      arch/arm64/kvm/
11237 F:      include/kvm/arm_*
11238 F:      tools/testing/selftests/kvm/*/aarch64/
11239 F:      tools/testing/selftests/kvm/aarch64/
11240
11241 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11242 M:      Huacai Chen <chenhuacai@kernel.org>
11243 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11244 L:      linux-mips@vger.kernel.org
11245 L:      kvm@vger.kernel.org
11246 S:      Maintained
11247 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11248 F:      arch/mips/include/asm/kvm*
11249 F:      arch/mips/include/uapi/asm/kvm*
11250 F:      arch/mips/kvm/
11251
11252 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11253 L:      linuxppc-dev@lists.ozlabs.org
11254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11255 F:      arch/powerpc/include/asm/kvm*
11256 F:      arch/powerpc/include/uapi/asm/kvm*
11257 F:      arch/powerpc/kernel/kvm*
11258 F:      arch/powerpc/kvm/
11259
11260 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11261 M:      Anup Patel <anup@brainfault.org>
11262 R:      Atish Patra <atishp@atishpatra.org>
11263 L:      kvm@vger.kernel.org
11264 L:      kvm-riscv@lists.infradead.org
11265 L:      linux-riscv@lists.infradead.org
11266 S:      Maintained
11267 T:      git https://github.com/kvm-riscv/linux.git
11268 F:      arch/riscv/include/asm/kvm*
11269 F:      arch/riscv/include/uapi/asm/kvm*
11270 F:      arch/riscv/kvm/
11271 F:      tools/testing/selftests/kvm/*/riscv/
11272
11273 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11274 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11275 M:      Janosch Frank <frankja@linux.ibm.com>
11276 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11277 R:      David Hildenbrand <david@redhat.com>
11278 L:      kvm@vger.kernel.org
11279 S:      Supported
11280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11281 F:      Documentation/virt/kvm/s390*
11282 F:      arch/s390/include/asm/gmap.h
11283 F:      arch/s390/include/asm/kvm*
11284 F:      arch/s390/include/uapi/asm/kvm*
11285 F:      arch/s390/include/uapi/asm/uvdevice.h
11286 F:      arch/s390/kernel/uv.c
11287 F:      arch/s390/kvm/
11288 F:      arch/s390/mm/gmap.c
11289 F:      drivers/s390/char/uvdevice.c
11290 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11291 F:      tools/testing/selftests/kvm/*/s390x/
11292 F:      tools/testing/selftests/kvm/s390x/
11293
11294 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11295 M:      Sean Christopherson <seanjc@google.com>
11296 M:      Paolo Bonzini <pbonzini@redhat.com>
11297 L:      kvm@vger.kernel.org
11298 S:      Supported
11299 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11300 F:      arch/x86/include/asm/kvm*
11301 F:      arch/x86/include/asm/svm.h
11302 F:      arch/x86/include/asm/vmx*.h
11303 F:      arch/x86/include/uapi/asm/kvm*
11304 F:      arch/x86/include/uapi/asm/svm.h
11305 F:      arch/x86/include/uapi/asm/vmx.h
11306 F:      arch/x86/kvm/
11307 F:      arch/x86/kvm/*/
11308
11309 KVM PARAVIRT (KVM/paravirt)
11310 M:      Paolo Bonzini <pbonzini@redhat.com>
11311 R:      Wanpeng Li <wanpengli@tencent.com>
11312 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11313 L:      kvm@vger.kernel.org
11314 S:      Supported
11315 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11316 F:      arch/x86/kernel/kvm.c
11317 F:      arch/x86/kernel/kvmclock.c
11318 F:      arch/x86/include/asm/pvclock-abi.h
11319 F:      include/linux/kvm_para.h
11320 F:      include/uapi/linux/kvm_para.h
11321 F:      include/uapi/asm-generic/kvm_para.h
11322 F:      include/asm-generic/kvm_para.h
11323 F:      arch/um/include/asm/kvm_para.h
11324 F:      arch/x86/include/asm/kvm_para.h
11325 F:      arch/x86/include/uapi/asm/kvm_para.h
11326
11327 KVM X86 HYPER-V (KVM/hyper-v)
11328 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11329 M:      Sean Christopherson <seanjc@google.com>
11330 M:      Paolo Bonzini <pbonzini@redhat.com>
11331 L:      kvm@vger.kernel.org
11332 S:      Supported
11333 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11334 F:      arch/x86/kvm/hyperv.*
11335 F:      arch/x86/kvm/kvm_onhyperv.*
11336 F:      arch/x86/kvm/svm/hyperv.*
11337 F:      arch/x86/kvm/svm/svm_onhyperv.*
11338 F:      arch/x86/kvm/vmx/hyperv.*
11339
11340 KVM X86 Xen (KVM/Xen)
11341 M:      David Woodhouse <dwmw2@infradead.org>
11342 M:      Paul Durrant <paul@xen.org>
11343 M:      Sean Christopherson <seanjc@google.com>
11344 M:      Paolo Bonzini <pbonzini@redhat.com>
11345 L:      kvm@vger.kernel.org
11346 S:      Supported
11347 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11348 F:      arch/x86/kvm/xen.*
11349
11350 KERNFS
11351 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11352 M:      Tejun Heo <tj@kernel.org>
11353 S:      Supported
11354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11355 F:      fs/kernfs/
11356 F:      include/linux/kernfs.h
11357
11358 KEXEC
11359 M:      Eric Biederman <ebiederm@xmission.com>
11360 L:      kexec@lists.infradead.org
11361 S:      Maintained
11362 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11363 F:      include/linux/kexec.h
11364 F:      include/uapi/linux/kexec.h
11365 F:      kernel/kexec*
11366
11367 KEYS-ENCRYPTED
11368 M:      Mimi Zohar <zohar@linux.ibm.com>
11369 L:      linux-integrity@vger.kernel.org
11370 L:      keyrings@vger.kernel.org
11371 S:      Supported
11372 F:      Documentation/security/keys/trusted-encrypted.rst
11373 F:      include/keys/encrypted-type.h
11374 F:      security/keys/encrypted-keys/
11375
11376 KEYS-TRUSTED
11377 M:      James Bottomley <jejb@linux.ibm.com>
11378 M:      Jarkko Sakkinen <jarkko@kernel.org>
11379 M:      Mimi Zohar <zohar@linux.ibm.com>
11380 L:      linux-integrity@vger.kernel.org
11381 L:      keyrings@vger.kernel.org
11382 S:      Supported
11383 F:      Documentation/security/keys/trusted-encrypted.rst
11384 F:      include/keys/trusted-type.h
11385 F:      include/keys/trusted_tpm.h
11386 F:      security/keys/trusted-keys/
11387
11388 KEYS-TRUSTED-TEE
11389 M:      Sumit Garg <sumit.garg@linaro.org>
11390 L:      linux-integrity@vger.kernel.org
11391 L:      keyrings@vger.kernel.org
11392 S:      Supported
11393 F:      include/keys/trusted_tee.h
11394 F:      security/keys/trusted-keys/trusted_tee.c
11395
11396 KEYS-TRUSTED-CAAM
11397 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11398 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11399 L:      linux-integrity@vger.kernel.org
11400 L:      keyrings@vger.kernel.org
11401 S:      Maintained
11402 F:      include/keys/trusted_caam.h
11403 F:      security/keys/trusted-keys/trusted_caam.c
11404
11405 KEYS/KEYRINGS
11406 M:      David Howells <dhowells@redhat.com>
11407 M:      Jarkko Sakkinen <jarkko@kernel.org>
11408 L:      keyrings@vger.kernel.org
11409 S:      Maintained
11410 F:      Documentation/security/keys/core.rst
11411 F:      include/keys/
11412 F:      include/linux/key-type.h
11413 F:      include/linux/key.h
11414 F:      include/linux/keyctl.h
11415 F:      include/uapi/linux/keyctl.h
11416 F:      security/keys/
11417
11418 KEYS/KEYRINGS_INTEGRITY
11419 M:      Jarkko Sakkinen <jarkko@kernel.org>
11420 M:      Mimi Zohar <zohar@linux.ibm.com>
11421 L:      linux-integrity@vger.kernel.org
11422 L:      keyrings@vger.kernel.org
11423 S:      Supported
11424 F:      security/integrity/platform_certs
11425
11426 KFENCE
11427 M:      Alexander Potapenko <glider@google.com>
11428 M:      Marco Elver <elver@google.com>
11429 R:      Dmitry Vyukov <dvyukov@google.com>
11430 L:      kasan-dev@googlegroups.com
11431 S:      Maintained
11432 F:      Documentation/dev-tools/kfence.rst
11433 F:      arch/*/include/asm/kfence.h
11434 F:      include/linux/kfence.h
11435 F:      lib/Kconfig.kfence
11436 F:      mm/kfence/
11437
11438 KFIFO
11439 M:      Stefani Seibold <stefani@seibold.net>
11440 S:      Maintained
11441 F:      include/linux/kfifo.h
11442 F:      lib/kfifo.c
11443 F:      samples/kfifo/
11444
11445 KGDB / KDB /debug_core
11446 M:      Jason Wessel <jason.wessel@windriver.com>
11447 M:      Daniel Thompson <daniel.thompson@linaro.org>
11448 R:      Douglas Anderson <dianders@chromium.org>
11449 L:      kgdb-bugreport@lists.sourceforge.net
11450 S:      Maintained
11451 W:      http://kgdb.wiki.kernel.org/
11452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11453 F:      Documentation/dev-tools/kgdb.rst
11454 F:      drivers/misc/kgdbts.c
11455 F:      drivers/tty/serial/kgdboc.c
11456 F:      include/linux/kdb.h
11457 F:      include/linux/kgdb.h
11458 F:      kernel/debug/
11459 F:      kernel/module/kdb.c
11460
11461 KHADAS MCU MFD DRIVER
11462 M:      Neil Armstrong <neil.armstrong@linaro.org>
11463 L:      linux-amlogic@lists.infradead.org
11464 S:      Maintained
11465 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11466 F:      drivers/mfd/khadas-mcu.c
11467 F:      include/linux/mfd/khadas-mcu.h
11468 F:      drivers/thermal/khadas_mcu_fan.c
11469
11470 KIONIX/ROHM KX022A ACCELEROMETER
11471 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11472 L:      linux-iio@vger.kernel.org
11473 S:      Supported
11474 F:      drivers/iio/accel/kionix-kx022a*
11475
11476 KMEMLEAK
11477 M:      Catalin Marinas <catalin.marinas@arm.com>
11478 S:      Maintained
11479 F:      Documentation/dev-tools/kmemleak.rst
11480 F:      include/linux/kmemleak.h
11481 F:      mm/kmemleak.c
11482 F:      samples/kmemleak/kmemleak-test.c
11483
11484 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11485 M:      Luis Chamberlain <mcgrof@kernel.org>
11486 L:      linux-kernel@vger.kernel.org
11487 L:      linux-modules@vger.kernel.org
11488 S:      Maintained
11489 F:      include/linux/kmod.h
11490 F:      kernel/kmod.c
11491 F:      lib/test_kmod.c
11492 F:      tools/testing/selftests/kmod/
11493
11494 KMSAN
11495 M:      Alexander Potapenko <glider@google.com>
11496 R:      Marco Elver <elver@google.com>
11497 R:      Dmitry Vyukov <dvyukov@google.com>
11498 L:      kasan-dev@googlegroups.com
11499 S:      Maintained
11500 F:      Documentation/dev-tools/kmsan.rst
11501 F:      arch/*/include/asm/kmsan.h
11502 F:      arch/*/mm/kmsan_*
11503 F:      include/linux/kmsan*.h
11504 F:      lib/Kconfig.kmsan
11505 F:      mm/kmsan/
11506 F:      scripts/Makefile.kmsan
11507
11508 KPROBES
11509 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11510 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11511 M:      "David S. Miller" <davem@davemloft.net>
11512 M:      Masami Hiramatsu <mhiramat@kernel.org>
11513 L:      linux-kernel@vger.kernel.org
11514 L:      linux-trace-kernel@vger.kernel.org
11515 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11516 S:      Maintained
11517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11518 F:      Documentation/trace/kprobes.rst
11519 F:      include/asm-generic/kprobes.h
11520 F:      include/linux/kprobes.h
11521 F:      kernel/kprobes.c
11522 F:      lib/test_kprobes.c
11523 F:      samples/kprobes
11524
11525 KS0108 LCD CONTROLLER DRIVER
11526 M:      Miguel Ojeda <ojeda@kernel.org>
11527 S:      Maintained
11528 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11529 F:      drivers/auxdisplay/ks0108.c
11530 F:      include/linux/ks0108.h
11531
11532 KTD253 BACKLIGHT DRIVER
11533 M:      Linus Walleij <linus.walleij@linaro.org>
11534 S:      Maintained
11535 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11536 F:      drivers/video/backlight/ktd253-backlight.c
11537
11538 KTEST
11539 M:      Steven Rostedt <rostedt@goodmis.org>
11540 M:      John Hawley <warthog9@eaglescrag.net>
11541 S:      Maintained
11542 F:      tools/testing/ktest
11543
11544 L3MDEV
11545 M:      David Ahern <dsahern@kernel.org>
11546 L:      netdev@vger.kernel.org
11547 S:      Maintained
11548 F:      include/net/l3mdev.h
11549 F:      net/l3mdev
11550
11551 LANDLOCK SECURITY MODULE
11552 M:      Mickaël Salaün <mic@digikod.net>
11553 L:      linux-security-module@vger.kernel.org
11554 S:      Supported
11555 W:      https://landlock.io
11556 T:      git https://github.com/landlock-lsm/linux.git
11557 F:      Documentation/security/landlock.rst
11558 F:      Documentation/userspace-api/landlock.rst
11559 F:      include/uapi/linux/landlock.h
11560 F:      samples/landlock/
11561 F:      security/landlock/
11562 F:      tools/testing/selftests/landlock/
11563 K:      landlock
11564 K:      LANDLOCK
11565
11566 LANTIQ / INTEL Ethernet drivers
11567 M:      Hauke Mehrtens <hauke@hauke-m.de>
11568 L:      netdev@vger.kernel.org
11569 S:      Maintained
11570 F:      drivers/net/dsa/lantiq_gswip.c
11571 F:      drivers/net/dsa/lantiq_pce.h
11572 F:      drivers/net/ethernet/lantiq_xrx200.c
11573 F:      net/dsa/tag_gswip.c
11574
11575 LANTIQ MIPS ARCHITECTURE
11576 M:      John Crispin <john@phrozen.org>
11577 L:      linux-mips@vger.kernel.org
11578 S:      Maintained
11579 F:      arch/mips/lantiq
11580 F:      drivers/soc/lantiq
11581
11582 LASI 53c700 driver for PARISC
11583 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11584 L:      linux-scsi@vger.kernel.org
11585 S:      Maintained
11586 F:      Documentation/scsi/53c700.rst
11587 F:      drivers/scsi/53c700*
11588
11589 LEAKING_ADDRESSES
11590 M:      Tobin C. Harding <me@tobin.cc>
11591 M:      Tycho Andersen <tycho@tycho.pizza>
11592 L:      linux-hardening@vger.kernel.org
11593 S:      Maintained
11594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11595 F:      scripts/leaking_addresses.pl
11596
11597 LED SUBSYSTEM
11598 M:      Pavel Machek <pavel@ucw.cz>
11599 M:      Lee Jones <lee@kernel.org>
11600 L:      linux-leds@vger.kernel.org
11601 S:      Maintained
11602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11603 F:      Documentation/devicetree/bindings/leds/
11604 F:      drivers/leds/
11605 F:      include/dt-bindings/leds/
11606 F:      include/linux/leds.h
11607
11608 LEGACY EEPROM DRIVER
11609 M:      Jean Delvare <jdelvare@suse.com>
11610 S:      Maintained
11611 F:      Documentation/misc-devices/eeprom.rst
11612 F:      drivers/misc/eeprom/eeprom.c
11613
11614 LEGO MINDSTORMS EV3
11615 R:      David Lechner <david@lechnology.com>
11616 S:      Maintained
11617 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11618 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11619 F:      drivers/power/supply/lego_ev3_battery.c
11620
11621 LEGO USB Tower driver
11622 M:      Juergen Stuber <starblue@users.sourceforge.net>
11623 L:      legousb-devel@lists.sourceforge.net
11624 S:      Maintained
11625 W:      http://legousb.sourceforge.net/
11626 F:      drivers/usb/misc/legousbtower.c
11627
11628 LETSKETCH HID TABLET DRIVER
11629 M:      Hans de Goede <hdegoede@redhat.com>
11630 L:      linux-input@vger.kernel.org
11631 S:      Maintained
11632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11633 F:      drivers/hid/hid-letsketch.c
11634
11635 LG LAPTOP EXTRAS
11636 M:      Matan Ziv-Av <matan@svgalib.org>
11637 L:      platform-driver-x86@vger.kernel.org
11638 S:      Maintained
11639 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11640 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11641 F:      drivers/platform/x86/lg-laptop.c
11642
11643 LG2160 MEDIA DRIVER
11644 M:      Michael Krufky <mkrufky@linuxtv.org>
11645 L:      linux-media@vger.kernel.org
11646 S:      Maintained
11647 W:      https://linuxtv.org
11648 W:      http://github.com/mkrufky
11649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11650 T:      git git://linuxtv.org/mkrufky/tuners.git
11651 F:      drivers/media/dvb-frontends/lg2160.*
11652
11653 LGDT3305 MEDIA DRIVER
11654 M:      Michael Krufky <mkrufky@linuxtv.org>
11655 L:      linux-media@vger.kernel.org
11656 S:      Maintained
11657 W:      https://linuxtv.org
11658 W:      http://github.com/mkrufky
11659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11660 T:      git git://linuxtv.org/mkrufky/tuners.git
11661 F:      drivers/media/dvb-frontends/lgdt3305.*
11662
11663 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11664 M:      Viresh Kumar <vireshk@kernel.org>
11665 L:      linux-ide@vger.kernel.org
11666 S:      Maintained
11667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11668 F:      drivers/ata/pata_arasan_cf.c
11669 F:      include/linux/pata_arasan_cf_data.h
11670
11671 LIBATA PATA DRIVERS
11672 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11673 L:      linux-ide@vger.kernel.org
11674 F:      drivers/ata/ata_*.c
11675 F:      drivers/ata/pata_*.c
11676
11677 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11678 M:      Linus Walleij <linus.walleij@linaro.org>
11679 L:      linux-ide@vger.kernel.org
11680 S:      Maintained
11681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11682 F:      drivers/ata/pata_ftide010.c
11683 F:      drivers/ata/sata_gemini.c
11684 F:      drivers/ata/sata_gemini.h
11685
11686 LIBATA SATA AHCI PLATFORM devices support
11687 M:      Hans de Goede <hdegoede@redhat.com>
11688 M:      Jens Axboe <axboe@kernel.dk>
11689 L:      linux-ide@vger.kernel.org
11690 S:      Maintained
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11692 F:      drivers/ata/ahci_platform.c
11693 F:      drivers/ata/libahci_platform.c
11694 F:      include/linux/ahci_platform.h
11695
11696 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11697 M:      Serge Semin <fancer.lancer@gmail.com>
11698 L:      linux-ide@vger.kernel.org
11699 S:      Maintained
11700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11701 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11702 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11703 F:      drivers/ata/ahci_dwc.c
11704
11705 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11706 M:      Mikael Pettersson <mikpelinux@gmail.com>
11707 L:      linux-ide@vger.kernel.org
11708 S:      Maintained
11709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11710 F:      drivers/ata/sata_promise.*
11711
11712 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11713 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11714 L:      linux-ide@vger.kernel.org
11715 S:      Maintained
11716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11717 F:      Documentation/ABI/testing/sysfs-ata
11718 F:      Documentation/devicetree/bindings/ata/
11719 F:      drivers/ata/
11720 F:      include/linux/ata.h
11721 F:      include/linux/libata.h
11722
11723 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11724 M:      Vishal Verma <vishal.l.verma@intel.com>
11725 M:      Dan Williams <dan.j.williams@intel.com>
11726 M:      Dave Jiang <dave.jiang@intel.com>
11727 L:      nvdimm@lists.linux.dev
11728 S:      Supported
11729 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11730 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11731 F:      drivers/nvdimm/btt*
11732
11733 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11734 M:      Dan Williams <dan.j.williams@intel.com>
11735 M:      Vishal Verma <vishal.l.verma@intel.com>
11736 M:      Dave Jiang <dave.jiang@intel.com>
11737 L:      nvdimm@lists.linux.dev
11738 S:      Supported
11739 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11740 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11741 F:      drivers/nvdimm/pmem*
11742
11743 LIBNVDIMM: DEVICETREE BINDINGS
11744 M:      Oliver O'Halloran <oohall@gmail.com>
11745 L:      nvdimm@lists.linux.dev
11746 S:      Supported
11747 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11748 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11749 F:      drivers/nvdimm/of_pmem.c
11750
11751 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11752 M:      Dan Williams <dan.j.williams@intel.com>
11753 M:      Vishal Verma <vishal.l.verma@intel.com>
11754 M:      Dave Jiang <dave.jiang@intel.com>
11755 M:      Ira Weiny <ira.weiny@intel.com>
11756 L:      nvdimm@lists.linux.dev
11757 S:      Supported
11758 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11759 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11761 F:      drivers/acpi/nfit/*
11762 F:      drivers/nvdimm/*
11763 F:      include/linux/libnvdimm.h
11764 F:      include/linux/nd.h
11765 F:      include/uapi/linux/ndctl.h
11766 F:      tools/testing/nvdimm/
11767
11768 LICENSES and SPDX stuff
11769 M:      Thomas Gleixner <tglx@linutronix.de>
11770 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11771 L:      linux-spdx@vger.kernel.org
11772 S:      Maintained
11773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11774 F:      COPYING
11775 F:      Documentation/process/license-rules.rst
11776 F:      LICENSES/
11777 F:      scripts/spdxcheck-test.sh
11778 F:      scripts/spdxcheck.py
11779 F:      scripts/spdxexclude
11780
11781 LINEAR RANGES HELPERS
11782 M:      Mark Brown <broonie@kernel.org>
11783 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11784 F:      lib/linear_ranges.c
11785 F:      lib/test_linear_ranges.c
11786 F:      include/linux/linear_range.h
11787
11788 LINUX FOR POWER MACINTOSH
11789 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11790 L:      linuxppc-dev@lists.ozlabs.org
11791 S:      Odd Fixes
11792 F:      arch/powerpc/platforms/powermac/
11793 F:      drivers/macintosh/
11794
11795 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11796 M:      Michael Ellerman <mpe@ellerman.id.au>
11797 R:      Nicholas Piggin <npiggin@gmail.com>
11798 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11799 L:      linuxppc-dev@lists.ozlabs.org
11800 S:      Supported
11801 W:      https://github.com/linuxppc/wiki/wiki
11802 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11804 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11805 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11806 F:      Documentation/devicetree/bindings/powerpc/
11807 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11808 F:      Documentation/powerpc/
11809 F:      arch/powerpc/
11810 F:      drivers/*/*/*pasemi*
11811 F:      drivers/*/*pasemi*
11812 F:      drivers/char/tpm/tpm_ibmvtpm*
11813 F:      drivers/crypto/nx/
11814 F:      drivers/crypto/vmx/
11815 F:      drivers/i2c/busses/i2c-opal.c
11816 F:      drivers/net/ethernet/ibm/ibmveth.*
11817 F:      drivers/net/ethernet/ibm/ibmvnic.*
11818 F:      drivers/pci/hotplug/pnv_php.c
11819 F:      drivers/pci/hotplug/rpa*
11820 F:      drivers/rtc/rtc-opal.c
11821 F:      drivers/scsi/ibmvscsi/
11822 F:      drivers/tty/hvc/hvc_opal.c
11823 F:      drivers/watchdog/wdrtas.c
11824 F:      tools/testing/selftests/powerpc
11825 N:      /pmac
11826 N:      powermac
11827 N:      powernv
11828 N:      [^a-z0-9]ps3
11829 N:      pseries
11830
11831 LINUX FOR POWERPC EMBEDDED MPC5XXX
11832 M:      Anatolij Gustschin <agust@denx.de>
11833 L:      linuxppc-dev@lists.ozlabs.org
11834 S:      Odd Fixes
11835 F:      arch/powerpc/platforms/512x/
11836 F:      arch/powerpc/platforms/52xx/
11837
11838 LINUX FOR POWERPC EMBEDDED PPC4XX
11839 L:      linuxppc-dev@lists.ozlabs.org
11840 S:      Orphan
11841 F:      arch/powerpc/platforms/40x/
11842 F:      arch/powerpc/platforms/44x/
11843
11844 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11845 M:      Scott Wood <oss@buserror.net>
11846 L:      linuxppc-dev@lists.ozlabs.org
11847 S:      Odd fixes
11848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11849 F:      Documentation/devicetree/bindings/powerpc/fsl/
11850 F:      arch/powerpc/platforms/83xx/
11851 F:      arch/powerpc/platforms/85xx/
11852
11853 LINUX FOR POWERPC EMBEDDED PPC8XX
11854 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11855 L:      linuxppc-dev@lists.ozlabs.org
11856 S:      Maintained
11857 F:      arch/powerpc/platforms/8xx/
11858
11859 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11860 M:      Kees Cook <keescook@chromium.org>
11861 S:      Maintained
11862 F:      drivers/misc/lkdtm/*
11863 F:      tools/testing/selftests/lkdtm/*
11864
11865 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11866 M:      Alan Stern <stern@rowland.harvard.edu>
11867 M:      Andrea Parri <parri.andrea@gmail.com>
11868 M:      Will Deacon <will@kernel.org>
11869 M:      Peter Zijlstra <peterz@infradead.org>
11870 M:      Boqun Feng <boqun.feng@gmail.com>
11871 M:      Nicholas Piggin <npiggin@gmail.com>
11872 M:      David Howells <dhowells@redhat.com>
11873 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11874 M:      Luc Maranget <luc.maranget@inria.fr>
11875 M:      "Paul E. McKenney" <paulmck@kernel.org>
11876 R:      Akira Yokosawa <akiyks@gmail.com>
11877 R:      Daniel Lustig <dlustig@nvidia.com>
11878 R:      Joel Fernandes <joel@joelfernandes.org>
11879 L:      linux-kernel@vger.kernel.org
11880 L:      linux-arch@vger.kernel.org
11881 S:      Supported
11882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11883 F:      Documentation/atomic_bitops.txt
11884 F:      Documentation/atomic_t.txt
11885 F:      Documentation/core-api/refcount-vs-atomic.rst
11886 F:      Documentation/litmus-tests/
11887 F:      Documentation/memory-barriers.txt
11888 F:      tools/memory-model/
11889
11890 LIS3LV02D ACCELEROMETER DRIVER
11891 M:      Eric Piel <eric.piel@tremplin-utc.net>
11892 S:      Maintained
11893 F:      Documentation/misc-devices/lis3lv02d.rst
11894 F:      drivers/misc/lis3lv02d/
11895 F:      drivers/platform/x86/hp/hp_accel.c
11896
11897 LIST KUNIT TEST
11898 M:      David Gow <davidgow@google.com>
11899 L:      linux-kselftest@vger.kernel.org
11900 L:      kunit-dev@googlegroups.com
11901 S:      Maintained
11902 F:      lib/list-test.c
11903
11904 LITEX PLATFORM
11905 M:      Karol Gugala <kgugala@antmicro.com>
11906 M:      Mateusz Holenko <mholenko@antmicro.com>
11907 M:      Gabriel Somlo <gsomlo@gmail.com>
11908 M:      Joel Stanley <joel@jms.id.au>
11909 S:      Maintained
11910 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11911 F:      arch/openrisc/boot/dts/or1klitex.dts
11912 F:      include/linux/litex.h
11913 F:      drivers/tty/serial/liteuart.c
11914 F:      drivers/soc/litex/*
11915 F:      drivers/net/ethernet/litex/*
11916 F:      drivers/mmc/host/litex_mmc.c
11917 N:      litex
11918
11919 LIVE PATCHING
11920 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11921 M:      Jiri Kosina <jikos@kernel.org>
11922 M:      Miroslav Benes <mbenes@suse.cz>
11923 M:      Petr Mladek <pmladek@suse.com>
11924 R:      Joe Lawrence <joe.lawrence@redhat.com>
11925 L:      live-patching@vger.kernel.org
11926 S:      Maintained
11927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11928 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11929 F:      Documentation/livepatch/
11930 F:      arch/powerpc/include/asm/livepatch.h
11931 F:      include/linux/livepatch.h
11932 F:      kernel/livepatch/
11933 F:      kernel/module/livepatch.c
11934 F:      lib/livepatch/
11935 F:      samples/livepatch/
11936 F:      tools/testing/selftests/livepatch/
11937
11938 LLC (802.2)
11939 L:      netdev@vger.kernel.org
11940 S:      Odd fixes
11941 F:      include/linux/llc.h
11942 F:      include/net/llc*
11943 F:      include/uapi/linux/llc.h
11944 F:      net/llc/
11945
11946 LM73 HARDWARE MONITOR DRIVER
11947 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11948 L:      linux-hwmon@vger.kernel.org
11949 S:      Maintained
11950 F:      drivers/hwmon/lm73.c
11951
11952 LM78 HARDWARE MONITOR DRIVER
11953 M:      Jean Delvare <jdelvare@suse.com>
11954 L:      linux-hwmon@vger.kernel.org
11955 S:      Maintained
11956 F:      Documentation/hwmon/lm78.rst
11957 F:      drivers/hwmon/lm78.c
11958
11959 LM83 HARDWARE MONITOR DRIVER
11960 M:      Jean Delvare <jdelvare@suse.com>
11961 L:      linux-hwmon@vger.kernel.org
11962 S:      Maintained
11963 F:      Documentation/hwmon/lm83.rst
11964 F:      drivers/hwmon/lm83.c
11965
11966 LM90 HARDWARE MONITOR DRIVER
11967 M:      Jean Delvare <jdelvare@suse.com>
11968 L:      linux-hwmon@vger.kernel.org
11969 S:      Maintained
11970 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11971 F:      Documentation/hwmon/lm90.rst
11972 F:      drivers/hwmon/lm90.c
11973 F:      include/dt-bindings/thermal/lm90.h
11974
11975 LM95234 HARDWARE MONITOR DRIVER
11976 M:      Guenter Roeck <linux@roeck-us.net>
11977 L:      linux-hwmon@vger.kernel.org
11978 S:      Maintained
11979 F:      Documentation/hwmon/lm95234.rst
11980 F:      drivers/hwmon/lm95234.c
11981
11982 LME2510 MEDIA DRIVER
11983 M:      Malcolm Priestley <tvboxspy@gmail.com>
11984 L:      linux-media@vger.kernel.org
11985 S:      Maintained
11986 W:      https://linuxtv.org
11987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11988 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11989
11990 LOADPIN SECURITY MODULE
11991 M:      Kees Cook <keescook@chromium.org>
11992 S:      Supported
11993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11994 F:      Documentation/admin-guide/LSM/LoadPin.rst
11995 F:      security/loadpin/
11996
11997 LOCKING PRIMITIVES
11998 M:      Peter Zijlstra <peterz@infradead.org>
11999 M:      Ingo Molnar <mingo@redhat.com>
12000 M:      Will Deacon <will@kernel.org>
12001 R:      Waiman Long <longman@redhat.com>
12002 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12003 L:      linux-kernel@vger.kernel.org
12004 S:      Maintained
12005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12006 F:      Documentation/locking/
12007 F:      arch/*/include/asm/spinlock*.h
12008 F:      include/linux/lockdep.h
12009 F:      include/linux/mutex*.h
12010 F:      include/linux/rwlock*.h
12011 F:      include/linux/rwsem*.h
12012 F:      include/linux/seqlock.h
12013 F:      include/linux/spinlock*.h
12014 F:      kernel/locking/
12015 F:      lib/locking*.[ch]
12016 X:      kernel/locking/locktorture.c
12017
12018 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12019 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12020 L:      linux-ntfs-dev@lists.sourceforge.net
12021 S:      Maintained
12022 W:      http://www.linux-ntfs.org/content/view/19/37/
12023 F:      Documentation/admin-guide/ldm.rst
12024 F:      block/partitions/ldm.*
12025
12026 LOGITECH HID GAMING KEYBOARDS
12027 M:      Hans de Goede <hdegoede@redhat.com>
12028 L:      linux-input@vger.kernel.org
12029 S:      Maintained
12030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12031 F:      drivers/hid/hid-lg-g15.c
12032
12033 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12034 M:      Adrien Grassein <adrien.grassein@gmail.com>
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12037 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12038
12039 LOONGARCH
12040 M:      Huacai Chen <chenhuacai@kernel.org>
12041 R:      WANG Xuerui <kernel@xen0n.name>
12042 L:      loongarch@lists.linux.dev
12043 S:      Maintained
12044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12045 F:      arch/loongarch/
12046 F:      drivers/*/*loongarch*
12047 F:      Documentation/loongarch/
12048 F:      Documentation/translations/zh_CN/loongarch/
12049
12050 LOONGSON-2 SOC SERIES GUTS DRIVER
12051 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12052 L:      loongarch@lists.linux.dev
12053 S:      Maintained
12054 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12055 F:      drivers/soc/loongson/loongson2_guts.c
12056
12057 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12058 M:      zhanghongchen <zhanghongchen@loongson.cn>
12059 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12060 L:      linux-gpio@vger.kernel.org
12061 S:      Maintained
12062 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12063 F:      drivers/pinctrl/pinctrl-loongson2.c
12064
12065 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12066 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12067 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12068 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12069 L:      MPT-FusionLinux.pdl@broadcom.com
12070 L:      linux-scsi@vger.kernel.org
12071 S:      Supported
12072 W:      http://www.avagotech.com/support/
12073 F:      drivers/message/fusion/
12074 F:      drivers/scsi/mpt3sas/
12075
12076 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12077 M:      Matthew Wilcox <willy@infradead.org>
12078 L:      linux-scsi@vger.kernel.org
12079 S:      Maintained
12080 F:      drivers/scsi/sym53c8xx_2/
12081
12082 LTC1660 DAC DRIVER
12083 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12084 L:      linux-iio@vger.kernel.org
12085 S:      Maintained
12086 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12087 F:      drivers/iio/dac/ltc1660.c
12088
12089 LTC2688 IIO DAC DRIVER
12090 M:      Nuno Sá <nuno.sa@analog.com>
12091 L:      linux-iio@vger.kernel.org
12092 S:      Supported
12093 W:      https://ez.analog.com/linux-software-drivers
12094 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12095 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12096 F:      drivers/iio/dac/ltc2688.c
12097
12098 LTC2947 HARDWARE MONITOR DRIVER
12099 M:      Nuno Sá <nuno.sa@analog.com>
12100 L:      linux-hwmon@vger.kernel.org
12101 S:      Supported
12102 W:      https://ez.analog.com/linux-software-drivers
12103 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12104 F:      drivers/hwmon/ltc2947-core.c
12105 F:      drivers/hwmon/ltc2947-i2c.c
12106 F:      drivers/hwmon/ltc2947-spi.c
12107 F:      drivers/hwmon/ltc2947.h
12108
12109 LTC2983 IIO TEMPERATURE DRIVER
12110 M:      Nuno Sá <nuno.sa@analog.com>
12111 L:      linux-iio@vger.kernel.org
12112 S:      Supported
12113 W:      https://ez.analog.com/linux-software-drivers
12114 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12115 F:      drivers/iio/temperature/ltc2983.c
12116
12117 LTC4261 HARDWARE MONITOR DRIVER
12118 M:      Guenter Roeck <linux@roeck-us.net>
12119 L:      linux-hwmon@vger.kernel.org
12120 S:      Maintained
12121 F:      Documentation/hwmon/ltc4261.rst
12122 F:      drivers/hwmon/ltc4261.c
12123
12124 LTC4306 I2C MULTIPLEXER DRIVER
12125 M:      Michael Hennerich <michael.hennerich@analog.com>
12126 L:      linux-i2c@vger.kernel.org
12127 S:      Supported
12128 W:      https://ez.analog.com/linux-software-drivers
12129 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12130 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12131
12132 LTP (Linux Test Project)
12133 M:      Mike Frysinger <vapier@gentoo.org>
12134 M:      Cyril Hrubis <chrubis@suse.cz>
12135 M:      Wanlong Gao <wanlong.gao@gmail.com>
12136 M:      Jan Stancek <jstancek@redhat.com>
12137 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12138 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12139 L:      ltp@lists.linux.it (subscribers-only)
12140 S:      Maintained
12141 W:      http://linux-test-project.github.io/
12142 T:      git https://github.com/linux-test-project/ltp.git
12143
12144 LYNX 28G SERDES PHY DRIVER
12145 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12146 L:      netdev@vger.kernel.org
12147 S:      Supported
12148 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12149 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12150
12151 LYNX PCS MODULE
12152 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12153 L:      netdev@vger.kernel.org
12154 S:      Supported
12155 F:      drivers/net/pcs/pcs-lynx.c
12156 F:      include/linux/pcs-lynx.h
12157
12158 M68K ARCHITECTURE
12159 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12160 L:      linux-m68k@lists.linux-m68k.org
12161 S:      Maintained
12162 W:      http://www.linux-m68k.org/
12163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12164 F:      arch/m68k/
12165 F:      drivers/zorro/
12166
12167 M68K ON APPLE MACINTOSH
12168 M:      Joshua Thompson <funaho@jurai.org>
12169 L:      linux-m68k@lists.linux-m68k.org
12170 S:      Maintained
12171 W:      http://www.mac.linux-m68k.org/
12172 F:      arch/m68k/mac/
12173 F:      drivers/macintosh/adb-iop.c
12174 F:      drivers/macintosh/via-macii.c
12175
12176 M68K ON HP9000/300
12177 M:      Philip Blundell <philb@gnu.org>
12178 S:      Maintained
12179 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12180 F:      arch/m68k/hp300/
12181
12182 M88DS3103 MEDIA DRIVER
12183 M:      Antti Palosaari <crope@iki.fi>
12184 L:      linux-media@vger.kernel.org
12185 S:      Maintained
12186 W:      https://linuxtv.org
12187 W:      http://palosaari.fi/linux/
12188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12189 T:      git git://linuxtv.org/anttip/media_tree.git
12190 F:      drivers/media/dvb-frontends/m88ds3103*
12191
12192 M88RS2000 MEDIA DRIVER
12193 M:      Malcolm Priestley <tvboxspy@gmail.com>
12194 L:      linux-media@vger.kernel.org
12195 S:      Maintained
12196 W:      https://linuxtv.org
12197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12198 F:      drivers/media/dvb-frontends/m88rs2000*
12199
12200 MA901 MASTERKIT USB FM RADIO DRIVER
12201 M:      Alexey Klimov <klimov.linux@gmail.com>
12202 L:      linux-media@vger.kernel.org
12203 S:      Maintained
12204 T:      git git://linuxtv.org/media_tree.git
12205 F:      drivers/media/radio/radio-ma901.c
12206
12207 MAC80211
12208 M:      Johannes Berg <johannes@sipsolutions.net>
12209 L:      linux-wireless@vger.kernel.org
12210 S:      Maintained
12211 W:      https://wireless.wiki.kernel.org/
12212 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12215 F:      Documentation/networking/mac80211-injection.rst
12216 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12217 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12218 F:      include/net/mac80211.h
12219 F:      net/mac80211/
12220
12221 MAILBOX API
12222 M:      Jassi Brar <jassisinghbrar@gmail.com>
12223 L:      linux-kernel@vger.kernel.org
12224 S:      Maintained
12225 F:      drivers/mailbox/
12226 F:      include/linux/mailbox_client.h
12227 F:      include/linux/mailbox_controller.h
12228 F:      include/dt-bindings/mailbox/
12229 F:      Documentation/devicetree/bindings/mailbox/
12230
12231 MAILBOX ARM MHUv2
12232 M:      Viresh Kumar <viresh.kumar@linaro.org>
12233 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12234 L:      linux-kernel@vger.kernel.org
12235 S:      Maintained
12236 F:      drivers/mailbox/arm_mhuv2.c
12237 F:      include/linux/mailbox/arm_mhuv2_message.h
12238 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12239
12240 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12241 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12242 M:      Matt Johnston <matt@codeconstruct.com.au>
12243 L:      netdev@vger.kernel.org
12244 S:      Maintained
12245 F:      Documentation/networking/mctp.rst
12246 F:      drivers/net/mctp/
12247 F:      include/net/mctp.h
12248 F:      include/net/mctpdevice.h
12249 F:      include/net/netns/mctp.h
12250 F:      net/mctp/
12251
12252 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12253 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12254 L:      linux-man@vger.kernel.org
12255 S:      Maintained
12256 W:      http://www.kernel.org/doc/man-pages
12257
12258 MAPLE TREE
12259 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12260 L:      linux-mm@kvack.org
12261 S:      Supported
12262 F:      Documentation/core-api/maple_tree.rst
12263 F:      include/linux/maple_tree.h
12264 F:      include/trace/events/maple_tree.h
12265 F:      lib/maple_tree.c
12266 F:      lib/test_maple_tree.c
12267 F:      tools/testing/radix-tree/linux/maple_tree.h
12268 F:      tools/testing/radix-tree/maple.c
12269
12270 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12271 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12272 L:      linux-mips@vger.kernel.org
12273 S:      Maintained
12274 F:      arch/mips/boot/dts/img/pistachio*
12275
12276 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12277 M:      Andrew Lunn <andrew@lunn.ch>
12278 L:      netdev@vger.kernel.org
12279 S:      Maintained
12280 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12281 F:      Documentation/networking/devlink/mv88e6xxx.rst
12282 F:      drivers/net/dsa/mv88e6xxx/
12283 F:      include/linux/dsa/mv88e6xxx.h
12284 F:      include/linux/platform_data/mv88e6xxx.h
12285
12286 MARVELL ARMADA 3700 PHY DRIVERS
12287 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12288 S:      Maintained
12289 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12290 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12291 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12292 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12293
12294 MARVELL ARMADA 3700 SERIAL DRIVER
12295 M:      Pali Rohár <pali@kernel.org>
12296 S:      Maintained
12297 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12298 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12299 F:      drivers/tty/serial/mvebu-uart.c
12300
12301 MARVELL ARMADA DRM SUPPORT
12302 M:      Russell King <linux@armlinux.org.uk>
12303 S:      Maintained
12304 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12305 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12306 F:      Documentation/devicetree/bindings/display/armada/
12307 F:      drivers/gpu/drm/armada/
12308 F:      include/uapi/drm/armada_drm.h
12309
12310 MARVELL CRYPTO DRIVER
12311 M:      Boris Brezillon <bbrezillon@kernel.org>
12312 M:      Arnaud Ebalard <arno@natisbad.org>
12313 M:      Srujana Challa <schalla@marvell.com>
12314 L:      linux-crypto@vger.kernel.org
12315 S:      Maintained
12316 F:      drivers/crypto/marvell/
12317 F:      include/linux/soc/marvell/octeontx2/
12318
12319 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12320 M:      Mirko Lindner <mlindner@marvell.com>
12321 M:      Stephen Hemminger <stephen@networkplumber.org>
12322 L:      netdev@vger.kernel.org
12323 S:      Maintained
12324 F:      drivers/net/ethernet/marvell/sk*
12325
12326 MARVELL LIBERTAS WIRELESS DRIVER
12327 L:      libertas-dev@lists.infradead.org
12328 S:      Orphan
12329 F:      drivers/net/wireless/marvell/libertas/
12330
12331 MARVELL MACCHIATOBIN SUPPORT
12332 M:      Russell King <linux@armlinux.org.uk>
12333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12334 S:      Maintained
12335 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12336
12337 MARVELL MV643XX ETHERNET DRIVER
12338 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12339 L:      netdev@vger.kernel.org
12340 S:      Maintained
12341 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12342 F:      include/linux/mv643xx.h
12343
12344 MARVELL MV88X3310 PHY DRIVER
12345 M:      Russell King <linux@armlinux.org.uk>
12346 M:      Marek Behún <kabel@kernel.org>
12347 L:      netdev@vger.kernel.org
12348 S:      Maintained
12349 F:      drivers/net/phy/marvell10g.c
12350
12351 MARVELL MVEBU THERMAL DRIVER
12352 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12353 S:      Maintained
12354 F:      drivers/thermal/armada_thermal.c
12355
12356 MARVELL MVNETA ETHERNET DRIVER
12357 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12358 L:      netdev@vger.kernel.org
12359 S:      Maintained
12360 F:      drivers/net/ethernet/marvell/mvneta.*
12361
12362 MARVELL MVPP2 ETHERNET DRIVER
12363 M:      Marcin Wojtas <mw@semihalf.com>
12364 M:      Russell King <linux@armlinux.org.uk>
12365 L:      netdev@vger.kernel.org
12366 S:      Maintained
12367 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12368 F:      drivers/net/ethernet/marvell/mvpp2/
12369
12370 MARVELL MWIFIEX WIRELESS DRIVER
12371 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12372 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12373 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12374 M:      Xinming Hu <huxinming820@gmail.com>
12375 L:      linux-wireless@vger.kernel.org
12376 S:      Maintained
12377 F:      drivers/net/wireless/marvell/mwifiex/
12378
12379 MARVELL MWL8K WIRELESS DRIVER
12380 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12381 L:      linux-wireless@vger.kernel.org
12382 S:      Odd Fixes
12383 F:      drivers/net/wireless/marvell/mwl8k.c
12384
12385 MARVELL NAND CONTROLLER DRIVER
12386 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12387 L:      linux-mtd@lists.infradead.org
12388 S:      Maintained
12389 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12390 F:      drivers/mtd/nand/raw/marvell_nand.c
12391
12392 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12393 M:      Sunil Goutham <sgoutham@marvell.com>
12394 M:      Geetha sowjanya <gakula@marvell.com>
12395 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12396 M:      hariprasad <hkelam@marvell.com>
12397 L:      netdev@vger.kernel.org
12398 S:      Supported
12399 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12400 F:      include/linux/soc/marvell/octeontx2/
12401
12402 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12403 M:      Sunil Goutham <sgoutham@marvell.com>
12404 M:      Linu Cherian <lcherian@marvell.com>
12405 M:      Geetha sowjanya <gakula@marvell.com>
12406 M:      Jerin Jacob <jerinj@marvell.com>
12407 M:      hariprasad <hkelam@marvell.com>
12408 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12409 L:      netdev@vger.kernel.org
12410 S:      Supported
12411 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12412 F:      drivers/net/ethernet/marvell/octeontx2/af/
12413
12414 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12415 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12416 S:      Supported
12417 W:      https://github.com/Marvell-switching/switchdev-prestera
12418 F:      drivers/net/ethernet/marvell/prestera/
12419
12420 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12421 M:      Nicolas Pitre <nico@fluxnic.net>
12422 S:      Odd Fixes
12423 F:      drivers/mmc/host/mvsdio.*
12424
12425 MARVELL USB MDIO CONTROLLER DRIVER
12426 M:      Tobias Waldekranz <tobias@waldekranz.com>
12427 L:      netdev@vger.kernel.org
12428 S:      Maintained
12429 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12430 F:      drivers/net/mdio/mdio-mvusb.c
12431
12432 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12433 M:      Hu Ziji <huziji@marvell.com>
12434 L:      linux-mmc@vger.kernel.org
12435 S:      Supported
12436 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12437 F:      drivers/mmc/host/sdhci-xenon*
12438
12439 MARVELL OCTEON ENDPOINT DRIVER
12440 M:      Veerasenareddy Burru <vburru@marvell.com>
12441 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12442 L:      netdev@vger.kernel.org
12443 S:      Supported
12444 F:      drivers/net/ethernet/marvell/octeon_ep
12445
12446 MATROX FRAMEBUFFER DRIVER
12447 L:      linux-fbdev@vger.kernel.org
12448 S:      Orphan
12449 F:      drivers/video/fbdev/matrox/matroxfb_*
12450 F:      include/uapi/linux/matroxfb.h
12451
12452 MAX15301 DRIVER
12453 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12454 L:      linux-hwmon@vger.kernel.org
12455 S:      Maintained
12456 F:      Documentation/hwmon/max15301.rst
12457 F:      drivers/hwmon/pmbus/max15301.c
12458
12459 MAX16065 HARDWARE MONITOR DRIVER
12460 M:      Guenter Roeck <linux@roeck-us.net>
12461 L:      linux-hwmon@vger.kernel.org
12462 S:      Maintained
12463 F:      Documentation/hwmon/max16065.rst
12464 F:      drivers/hwmon/max16065.c
12465
12466 MAX2175 SDR TUNER DRIVER
12467 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12468 L:      linux-media@vger.kernel.org
12469 S:      Maintained
12470 T:      git git://linuxtv.org/media_tree.git
12471 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12472 F:      Documentation/userspace-api/media/drivers/max2175.rst
12473 F:      drivers/media/i2c/max2175*
12474 F:      include/uapi/linux/max2175.h
12475
12476 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12477 L:      linux-hwmon@vger.kernel.org
12478 S:      Orphan
12479 F:      Documentation/hwmon/max6650.rst
12480 F:      drivers/hwmon/max6650.c
12481
12482 MAX6697 HARDWARE MONITOR DRIVER
12483 M:      Guenter Roeck <linux@roeck-us.net>
12484 L:      linux-hwmon@vger.kernel.org
12485 S:      Maintained
12486 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12487 F:      Documentation/hwmon/max6697.rst
12488 F:      drivers/hwmon/max6697.c
12489 F:      include/linux/platform_data/max6697.h
12490
12491 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12492 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12493 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12494 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12495 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12496 L:      linux-media@vger.kernel.org
12497 S:      Maintained
12498 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12499 F:      drivers/media/i2c/max9286.c
12500
12501 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12502 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12503 L:      linux-media@vger.kernel.org
12504 S:      Maintained
12505 F:      drivers/staging/media/max96712/max96712.c
12506
12507 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12508 M:      Peter Rosin <peda@axentia.se>
12509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12510 S:      Maintained
12511 F:      Documentation/devicetree/bindings/sound/max9860.txt
12512 F:      sound/soc/codecs/max9860.*
12513
12514 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12515 M:      Andreas Klinger <ak@it-klinger.de>
12516 L:      linux-iio@vger.kernel.org
12517 S:      Maintained
12518 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12519 F:      drivers/iio/proximity/mb1232.c
12520
12521 MAXIM MAX11205 DRIVER
12522 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12523 L:      linux-iio@vger.kernel.org
12524 S:      Supported
12525 W:      https://ez.analog.com/linux-software-drivers
12526 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12527 F:      drivers/iio/adc/max11205.c
12528
12529 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12530 R:      Iskren Chernev <iskren.chernev@gmail.com>
12531 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12532 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12533 R:      Matheus Castello <matheus@castello.eng.br>
12534 L:      linux-pm@vger.kernel.org
12535 S:      Maintained
12536 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12537 F:      drivers/power/supply/max17040_battery.c
12538
12539 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12540 R:      Hans de Goede <hdegoede@redhat.com>
12541 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12542 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12543 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12544 R:      Purism Kernel Team <kernel@puri.sm>
12545 L:      linux-pm@vger.kernel.org
12546 S:      Maintained
12547 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12548 F:      drivers/power/supply/max17042_battery.c
12549
12550 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12551 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12552 L:      linux-kernel@vger.kernel.org
12553 S:      Maintained
12554 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12555 F:      drivers/regulator/max20086-regulator.c
12556
12557 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12558 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12559 L:      linux-iio@vger.kernel.org
12560 S:      Maintained
12561 F:      drivers/iio/temperature/max30208.c
12562
12563 MAXIM MAX77650 PMIC MFD DRIVER
12564 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12565 L:      linux-kernel@vger.kernel.org
12566 S:      Maintained
12567 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12568 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12569 F:      drivers/gpio/gpio-max77650.c
12570 F:      drivers/input/misc/max77650-onkey.c
12571 F:      drivers/leds/leds-max77650.c
12572 F:      drivers/mfd/max77650.c
12573 F:      drivers/power/supply/max77650-charger.c
12574 F:      drivers/regulator/max77650-regulator.c
12575 F:      include/linux/mfd/max77650.h
12576
12577 MAXIM MAX77714 PMIC MFD DRIVER
12578 M:      Luca Ceresoli <luca@lucaceresoli.net>
12579 S:      Maintained
12580 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12581 F:      drivers/mfd/max77714.c
12582 F:      include/linux/mfd/max77714.h
12583
12584 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12585 M:      Javier Martinez Canillas <javier@dowhile0.org>
12586 L:      linux-kernel@vger.kernel.org
12587 S:      Supported
12588 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12589 F:      drivers/regulator/max77802-regulator.c
12590 F:      include/dt-bindings/*/*max77802.h
12591
12592 MAXIM MAX77976 BATTERY CHARGER
12593 M:      Luca Ceresoli <luca@lucaceresoli.net>
12594 S:      Supported
12595 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12596 F:      drivers/power/supply/max77976_charger.c
12597
12598 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12599 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12600 L:      linux-pm@vger.kernel.org
12601 S:      Supported
12602 B:      mailto:linux-samsung-soc@vger.kernel.org
12603 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12604 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12605 F:      drivers/power/supply/max14577_charger.c
12606 F:      drivers/power/supply/max77693_charger.c
12607
12608 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12609 M:      Chanwoo Choi <cw00.choi@samsung.com>
12610 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12611 L:      linux-kernel@vger.kernel.org
12612 S:      Supported
12613 B:      mailto:linux-samsung-soc@vger.kernel.org
12614 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12615 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12616 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12617 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12618 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12619 F:      drivers/*/*max77843.c
12620 F:      drivers/*/max14577*.c
12621 F:      drivers/*/max77686*.c
12622 F:      drivers/*/max77693*.c
12623 F:      drivers/clk/clk-max77686.c
12624 F:      drivers/extcon/extcon-max14577.c
12625 F:      drivers/extcon/extcon-max77693.c
12626 F:      drivers/rtc/rtc-max77686.c
12627 F:      include/linux/mfd/max14577*.h
12628 F:      include/linux/mfd/max77686*.h
12629 F:      include/linux/mfd/max77693*.h
12630
12631 MAXIRADIO FM RADIO RECEIVER DRIVER
12632 M:      Hans Verkuil <hverkuil@xs4all.nl>
12633 L:      linux-media@vger.kernel.org
12634 S:      Maintained
12635 W:      https://linuxtv.org
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      drivers/media/radio/radio-maxiradio*
12638
12639 MAXLINEAR ETHERNET PHY DRIVER
12640 M:      Xu Liang <lxu@maxlinear.com>
12641 L:      netdev@vger.kernel.org
12642 S:      Supported
12643 F:      drivers/net/phy/mxl-gpy.c
12644
12645 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12646 R:      Yasushi SHOJI <yashi@spacecubics.com>
12647 L:      linux-can@vger.kernel.org
12648 S:      Maintained
12649 F:      drivers/net/can/usb/mcba_usb.c
12650
12651 MCAN MMIO DEVICE DRIVER
12652 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12653 L:      linux-can@vger.kernel.org
12654 S:      Maintained
12655 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12656 F:      drivers/net/can/m_can/m_can.c
12657 F:      drivers/net/can/m_can/m_can.h
12658 F:      drivers/net/can/m_can/m_can_platform.c
12659
12660 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12661 M:      Rishi Gupta <gupt21@gmail.com>
12662 L:      linux-i2c@vger.kernel.org
12663 L:      linux-input@vger.kernel.org
12664 S:      Maintained
12665 F:      drivers/hid/hid-mcp2221.c
12666
12667 MCP251XFD SPI-CAN NETWORK DRIVER
12668 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12669 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12670 R:      Thomas Kopp <thomas.kopp@microchip.com>
12671 L:      linux-can@vger.kernel.org
12672 S:      Maintained
12673 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12674 F:      drivers/net/can/spi/mcp251xfd/
12675
12676 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12677 M:      Peter Rosin <peda@axentia.se>
12678 L:      linux-iio@vger.kernel.org
12679 S:      Maintained
12680 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12681 F:      drivers/iio/potentiometer/mcp4018.c
12682 F:      drivers/iio/potentiometer/mcp4531.c
12683
12684 MCR20A IEEE-802.15.4 RADIO DRIVER
12685 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12686 L:      linux-wpan@vger.kernel.org
12687 S:      Odd Fixes
12688 W:      https://github.com/xueliu/mcr20a-linux
12689 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12690 F:      drivers/net/ieee802154/mcr20a.c
12691 F:      drivers/net/ieee802154/mcr20a.h
12692
12693 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12694 M:      William Breathitt Gray <william.gray@linaro.org>
12695 L:      linux-iio@vger.kernel.org
12696 S:      Maintained
12697 F:      drivers/iio/dac/cio-dac.c
12698
12699 MEDIA CONTROLLER FRAMEWORK
12700 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12701 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12702 L:      linux-media@vger.kernel.org
12703 S:      Supported
12704 W:      https://www.linuxtv.org
12705 T:      git git://linuxtv.org/media_tree.git
12706 F:      drivers/media/mc/
12707 F:      include/media/media-*.h
12708 F:      include/uapi/linux/media.h
12709
12710 MEDIA DRIVER FOR FREESCALE IMX PXP
12711 M:      Philipp Zabel <p.zabel@pengutronix.de>
12712 L:      linux-media@vger.kernel.org
12713 S:      Maintained
12714 T:      git git://linuxtv.org/media_tree.git
12715 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12716
12717 MEDIA DRIVERS FOR ASCOT2E
12718 M:      Sergey Kozlov <serjk@netup.ru>
12719 M:      Abylay Ospan <aospan@netup.ru>
12720 L:      linux-media@vger.kernel.org
12721 S:      Supported
12722 W:      https://linuxtv.org
12723 W:      http://netup.tv/
12724 T:      git git://linuxtv.org/media_tree.git
12725 F:      drivers/media/dvb-frontends/ascot2e*
12726
12727 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12728 M:      Jasmin Jessich <jasmin@anw.at>
12729 L:      linux-media@vger.kernel.org
12730 S:      Maintained
12731 W:      https://linuxtv.org
12732 T:      git git://linuxtv.org/media_tree.git
12733 F:      drivers/media/dvb-frontends/cxd2099*
12734
12735 MEDIA DRIVERS FOR CXD2841ER
12736 M:      Sergey Kozlov <serjk@netup.ru>
12737 M:      Abylay Ospan <aospan@netup.ru>
12738 L:      linux-media@vger.kernel.org
12739 S:      Supported
12740 W:      https://linuxtv.org
12741 W:      http://netup.tv/
12742 T:      git git://linuxtv.org/media_tree.git
12743 F:      drivers/media/dvb-frontends/cxd2841er*
12744
12745 MEDIA DRIVERS FOR CXD2880
12746 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12747 L:      linux-media@vger.kernel.org
12748 S:      Supported
12749 W:      http://linuxtv.org/
12750 T:      git git://linuxtv.org/media_tree.git
12751 F:      drivers/media/dvb-frontends/cxd2880/*
12752 F:      drivers/media/spi/cxd2880*
12753
12754 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12755 L:      linux-media@vger.kernel.org
12756 S:      Orphan
12757 W:      https://linuxtv.org
12758 T:      git git://linuxtv.org/media_tree.git
12759 F:      drivers/media/pci/ddbridge/*
12760
12761 MEDIA DRIVERS FOR FREESCALE IMX
12762 M:      Steve Longerbeam <slongerbeam@gmail.com>
12763 M:      Philipp Zabel <p.zabel@pengutronix.de>
12764 L:      linux-media@vger.kernel.org
12765 S:      Maintained
12766 T:      git git://linuxtv.org/media_tree.git
12767 F:      Documentation/admin-guide/media/imx.rst
12768 F:      Documentation/devicetree/bindings/media/imx.txt
12769 F:      drivers/staging/media/imx/
12770 F:      include/linux/imx-media.h
12771 F:      include/media/imx.h
12772
12773 MEDIA DRIVERS FOR FREESCALE IMX7
12774 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12775 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12776 L:      linux-media@vger.kernel.org
12777 S:      Maintained
12778 T:      git git://linuxtv.org/media_tree.git
12779 F:      Documentation/admin-guide/media/imx7.rst
12780 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12781 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12782 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12783 F:      drivers/media/platform/nxp/imx7-media-csi.c
12784
12785 MEDIA DRIVERS FOR HELENE
12786 M:      Abylay Ospan <aospan@netup.ru>
12787 L:      linux-media@vger.kernel.org
12788 S:      Supported
12789 W:      https://linuxtv.org
12790 W:      http://netup.tv/
12791 T:      git git://linuxtv.org/media_tree.git
12792 F:      drivers/media/dvb-frontends/helene*
12793
12794 MEDIA DRIVERS FOR HORUS3A
12795 M:      Sergey Kozlov <serjk@netup.ru>
12796 M:      Abylay Ospan <aospan@netup.ru>
12797 L:      linux-media@vger.kernel.org
12798 S:      Supported
12799 W:      https://linuxtv.org
12800 W:      http://netup.tv/
12801 T:      git git://linuxtv.org/media_tree.git
12802 F:      drivers/media/dvb-frontends/horus3a*
12803
12804 MEDIA DRIVERS FOR LNBH25
12805 M:      Sergey Kozlov <serjk@netup.ru>
12806 M:      Abylay Ospan <aospan@netup.ru>
12807 L:      linux-media@vger.kernel.org
12808 S:      Supported
12809 W:      https://linuxtv.org
12810 W:      http://netup.tv/
12811 T:      git git://linuxtv.org/media_tree.git
12812 F:      drivers/media/dvb-frontends/lnbh25*
12813
12814 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12815 L:      linux-media@vger.kernel.org
12816 S:      Orphan
12817 W:      https://linuxtv.org
12818 T:      git git://linuxtv.org/media_tree.git
12819 F:      drivers/media/dvb-frontends/mxl5xx*
12820
12821 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12822 M:      Sergey Kozlov <serjk@netup.ru>
12823 M:      Abylay Ospan <aospan@netup.ru>
12824 L:      linux-media@vger.kernel.org
12825 S:      Supported
12826 W:      https://linuxtv.org
12827 W:      http://netup.tv/
12828 T:      git git://linuxtv.org/media_tree.git
12829 F:      drivers/media/pci/netup_unidvb/*
12830
12831 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12832 M:      Dmitry Osipenko <digetx@gmail.com>
12833 L:      linux-media@vger.kernel.org
12834 L:      linux-tegra@vger.kernel.org
12835 S:      Maintained
12836 T:      git git://linuxtv.org/media_tree.git
12837 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12838 F:      drivers/media/platform/nvidia/tegra-vde/
12839
12840 MEDIA DRIVERS FOR RENESAS - CEU
12841 M:      Jacopo Mondi <jacopo@jmondi.org>
12842 L:      linux-media@vger.kernel.org
12843 L:      linux-renesas-soc@vger.kernel.org
12844 S:      Supported
12845 T:      git git://linuxtv.org/media_tree.git
12846 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12847 F:      drivers/media/platform/renesas/renesas-ceu.c
12848 F:      include/media/drv-intf/renesas-ceu.h
12849
12850 MEDIA DRIVERS FOR RENESAS - DRIF
12851 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12852 L:      linux-media@vger.kernel.org
12853 L:      linux-renesas-soc@vger.kernel.org
12854 S:      Supported
12855 T:      git git://linuxtv.org/media_tree.git
12856 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12857 F:      drivers/media/platform/renesas/rcar_drif.c
12858
12859 MEDIA DRIVERS FOR RENESAS - FCP
12860 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12861 L:      linux-media@vger.kernel.org
12862 L:      linux-renesas-soc@vger.kernel.org
12863 S:      Supported
12864 T:      git git://linuxtv.org/media_tree.git
12865 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12866 F:      drivers/media/platform/renesas/rcar-fcp.c
12867 F:      include/media/rcar-fcp.h
12868
12869 MEDIA DRIVERS FOR RENESAS - FDP1
12870 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12871 L:      linux-media@vger.kernel.org
12872 L:      linux-renesas-soc@vger.kernel.org
12873 S:      Supported
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12876 F:      drivers/media/platform/renesas/rcar_fdp1.c
12877
12878 MEDIA DRIVERS FOR RENESAS - VIN
12879 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12880 L:      linux-media@vger.kernel.org
12881 L:      linux-renesas-soc@vger.kernel.org
12882 S:      Supported
12883 T:      git git://linuxtv.org/media_tree.git
12884 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12885 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12886 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12887 F:      drivers/media/platform/renesas/rcar-isp.c
12888 F:      drivers/media/platform/renesas/rcar-vin/
12889
12890 MEDIA DRIVERS FOR RENESAS - VSP1
12891 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12892 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12893 L:      linux-media@vger.kernel.org
12894 L:      linux-renesas-soc@vger.kernel.org
12895 S:      Supported
12896 T:      git git://linuxtv.org/media_tree.git
12897 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12898 F:      drivers/media/platform/renesas/vsp1/
12899
12900 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12901 L:      linux-media@vger.kernel.org
12902 S:      Orphan
12903 W:      https://linuxtv.org
12904 T:      git git://linuxtv.org/media_tree.git
12905 F:      drivers/media/dvb-frontends/stv0910*
12906
12907 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12908 L:      linux-media@vger.kernel.org
12909 S:      Orphan
12910 W:      https://linuxtv.org
12911 T:      git git://linuxtv.org/media_tree.git
12912 F:      drivers/media/dvb-frontends/stv6111*
12913
12914 MEDIA DRIVERS FOR STM32 - DCMI
12915 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12916 L:      linux-media@vger.kernel.org
12917 S:      Supported
12918 T:      git git://linuxtv.org/media_tree.git
12919 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12920 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12921
12922 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12923 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12924 L:      linux-media@vger.kernel.org
12925 S:      Maintained
12926 W:      https://linuxtv.org
12927 Q:      http://patchwork.kernel.org/project/linux-media/list/
12928 T:      git git://linuxtv.org/media_tree.git
12929 F:      Documentation/admin-guide/media/
12930 F:      Documentation/devicetree/bindings/media/
12931 F:      Documentation/driver-api/media/
12932 F:      Documentation/userspace-api/media/
12933 F:      drivers/media/
12934 F:      drivers/staging/media/
12935 F:      include/dt-bindings/media/
12936 F:      include/linux/platform_data/media/
12937 F:      include/media/
12938 F:      include/uapi/linux/dvb/
12939 F:      include/uapi/linux/ivtv*
12940 F:      include/uapi/linux/media.h
12941 F:      include/uapi/linux/meye.h
12942 F:      include/uapi/linux/uvcvideo.h
12943 F:      include/uapi/linux/v4l2-*
12944 F:      include/uapi/linux/videodev2.h
12945
12946 MEDIATEK BLUETOOTH DRIVER
12947 M:      Sean Wang <sean.wang@mediatek.com>
12948 L:      linux-bluetooth@vger.kernel.org
12949 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12950 S:      Maintained
12951 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12952 F:      drivers/bluetooth/btmtkuart.c
12953
12954 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12955 M:      Sean Wang <sean.wang@mediatek.com>
12956 L:      linux-pm@vger.kernel.org
12957 S:      Maintained
12958 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12959 F:      drivers/power/reset/mt6323-poweroff.c
12960
12961 MEDIATEK CIR DRIVER
12962 M:      Sean Wang <sean.wang@mediatek.com>
12963 S:      Maintained
12964 F:      drivers/media/rc/mtk-cir.c
12965
12966 MEDIATEK DMA DRIVER
12967 M:      Sean Wang <sean.wang@mediatek.com>
12968 L:      dmaengine@vger.kernel.org
12969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12970 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12971 S:      Maintained
12972 F:      Documentation/devicetree/bindings/dma/mtk-*
12973 F:      drivers/dma/mediatek/
12974
12975 MEDIATEK ETHERNET DRIVER
12976 M:      Felix Fietkau <nbd@nbd.name>
12977 M:      John Crispin <john@phrozen.org>
12978 M:      Sean Wang <sean.wang@mediatek.com>
12979 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12980 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12981 L:      netdev@vger.kernel.org
12982 S:      Maintained
12983 F:      drivers/net/ethernet/mediatek/
12984
12985 MEDIATEK I2C CONTROLLER DRIVER
12986 M:      Qii Wang <qii.wang@mediatek.com>
12987 L:      linux-i2c@vger.kernel.org
12988 S:      Maintained
12989 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12990 F:      drivers/i2c/busses/i2c-mt65xx.c
12991
12992 MEDIATEK IOMMU DRIVER
12993 M:      Yong Wu <yong.wu@mediatek.com>
12994 L:      iommu@lists.linux.dev
12995 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12996 S:      Supported
12997 F:      Documentation/devicetree/bindings/iommu/mediatek*
12998 F:      drivers/iommu/mtk_iommu*
12999 F:      include/dt-bindings/memory/mt*-port.h
13000
13001 MEDIATEK JPEG DRIVER
13002 M:      Bin Liu <bin.liu@mediatek.com>
13003 S:      Supported
13004 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13005 F:      drivers/media/platform/mediatek/jpeg/
13006
13007 MEDIATEK KEYPAD DRIVER
13008 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13009 S:      Supported
13010 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13011 F:      drivers/input/keyboard/mt6779-keypad.c
13012
13013 MEDIATEK MDP DRIVER
13014 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13015 M:      Houlong Wei <houlong.wei@mediatek.com>
13016 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13017 S:      Supported
13018 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13019 F:      drivers/media/platform/mediatek/mdp/
13020 F:      drivers/media/platform/mediatek/vpu/
13021
13022 MEDIATEK MEDIA DRIVER
13023 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13024 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13025 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13026 S:      Supported
13027 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13028 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13029 F:      drivers/media/platform/mediatek/vcodec/
13030 F:      drivers/media/platform/mediatek/vpu/
13031
13032 MEDIATEK MMC/SD/SDIO DRIVER
13033 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13036 F:      drivers/mmc/host/mtk-sd.c
13037
13038 MEDIATEK MT76 WIRELESS LAN DRIVER
13039 M:      Felix Fietkau <nbd@nbd.name>
13040 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13041 M:      Ryder Lee <ryder.lee@mediatek.com>
13042 R:      Shayne Chen <shayne.chen@mediatek.com>
13043 R:      Sean Wang <sean.wang@mediatek.com>
13044 L:      linux-wireless@vger.kernel.org
13045 S:      Maintained
13046 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13047 F:      drivers/net/wireless/mediatek/mt76/
13048
13049 MEDIATEK MT7601U WIRELESS LAN DRIVER
13050 M:      Jakub Kicinski <kuba@kernel.org>
13051 L:      linux-wireless@vger.kernel.org
13052 S:      Maintained
13053 F:      drivers/net/wireless/mediatek/mt7601u/
13054
13055 MEDIATEK MT7621 CLOCK DRIVER
13056 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13057 S:      Maintained
13058 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13059 F:      drivers/clk/ralink/clk-mt7621.c
13060
13061 MEDIATEK MT7621/28/88 I2C DRIVER
13062 M:      Stefan Roese <sr@denx.de>
13063 L:      linux-i2c@vger.kernel.org
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13066 F:      drivers/i2c/busses/i2c-mt7621.c
13067
13068 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13069 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13070 S:      Maintained
13071 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13072 F:      drivers/pci/controller/pcie-mt7621.c
13073
13074 MEDIATEK MT7621 PHY PCI DRIVER
13075 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13076 S:      Maintained
13077 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13078 F:      drivers/phy/ralink/phy-mt7621-pci.c
13079
13080 MEDIATEK NAND CONTROLLER DRIVER
13081 L:      linux-mtd@lists.infradead.org
13082 S:      Orphan
13083 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
13084 F:      drivers/mtd/nand/raw/mtk_*
13085
13086 MEDIATEK PMIC LED DRIVER
13087 M:      Sean Wang <sean.wang@mediatek.com>
13088 S:      Maintained
13089 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13090 F:      drivers/leds/leds-mt6323.c
13091
13092 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13093 M:      Sean Wang <sean.wang@mediatek.com>
13094 S:      Maintained
13095 F:      drivers/char/hw_random/mtk-rng.c
13096
13097 MEDIATEK SMI DRIVER
13098 M:      Yong Wu <yong.wu@mediatek.com>
13099 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13100 S:      Supported
13101 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13102 F:      drivers/memory/mtk-smi.c
13103 F:      include/soc/mediatek/smi.h
13104
13105 MEDIATEK SWITCH DRIVER
13106 M:      Sean Wang <sean.wang@mediatek.com>
13107 M:      Landen Chao <Landen.Chao@mediatek.com>
13108 M:      DENG Qingfang <dqfext@gmail.com>
13109 L:      netdev@vger.kernel.org
13110 S:      Maintained
13111 F:      drivers/net/dsa/mt7530.*
13112 F:      net/dsa/tag_mtk.c
13113
13114 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13115 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13116 M:      Intel Corporation <linuxwwan@intel.com>
13117 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13118 R:      Liu Haijun <haijun.liu@mediatek.com>
13119 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13120 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13121 L:      netdev@vger.kernel.org
13122 S:      Supported
13123 F:      drivers/net/wwan/t7xx/
13124
13125 MEDIATEK USB3 DRD IP DRIVER
13126 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13127 L:      linux-usb@vger.kernel.org
13128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13129 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13130 S:      Maintained
13131 F:      Documentation/devicetree/bindings/usb/mediatek,*
13132 F:      drivers/usb/host/xhci-mtk*
13133 F:      drivers/usb/mtu3/
13134
13135 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13136 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13137 M:      Martin Donnelly <martin.donnelly@ge.com>
13138 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13139 S:      Maintained
13140 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13141 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13142
13143 MEGARAID SCSI/SAS DRIVERS
13144 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13145 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13146 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13147 L:      megaraidlinux.pdl@broadcom.com
13148 L:      linux-scsi@vger.kernel.org
13149 S:      Maintained
13150 W:      http://www.avagotech.com/support/
13151 F:      Documentation/scsi/megaraid.rst
13152 F:      drivers/scsi/megaraid.*
13153 F:      drivers/scsi/megaraid/
13154
13155 MELEXIS MLX90614 DRIVER
13156 M:      Crt Mori <cmo@melexis.com>
13157 L:      linux-iio@vger.kernel.org
13158 S:      Supported
13159 W:      http://www.melexis.com
13160 F:      drivers/iio/temperature/mlx90614.c
13161
13162 MELEXIS MLX90632 DRIVER
13163 M:      Crt Mori <cmo@melexis.com>
13164 L:      linux-iio@vger.kernel.org
13165 S:      Supported
13166 W:      http://www.melexis.com
13167 F:      drivers/iio/temperature/mlx90632.c
13168
13169 MELFAS MIP4 TOUCHSCREEN DRIVER
13170 M:      Sangwon Jee <jeesw@melfas.com>
13171 S:      Supported
13172 W:      http://www.melfas.com
13173 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13174 F:      drivers/input/touchscreen/melfas_mip4.c
13175
13176 MELLANOX BLUEFIELD I2C DRIVER
13177 M:      Khalil Blaiech <kblaiech@nvidia.com>
13178 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13179 L:      linux-i2c@vger.kernel.org
13180 S:      Supported
13181 F:      drivers/i2c/busses/i2c-mlxbf.c
13182
13183 MELLANOX ETHERNET DRIVER (mlx4_en)
13184 M:      Tariq Toukan <tariqt@nvidia.com>
13185 L:      netdev@vger.kernel.org
13186 S:      Supported
13187 W:      http://www.mellanox.com
13188 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13189 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13190
13191 MELLANOX ETHERNET DRIVER (mlx5e)
13192 M:      Saeed Mahameed <saeedm@nvidia.com>
13193 L:      netdev@vger.kernel.org
13194 S:      Supported
13195 W:      http://www.mellanox.com
13196 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13197 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13198
13199 MELLANOX ETHERNET INNOVA DRIVERS
13200 R:      Boris Pismenny <borisp@nvidia.com>
13201 L:      netdev@vger.kernel.org
13202 S:      Supported
13203 W:      http://www.mellanox.com
13204 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13205 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13206 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13207 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13208
13209 MELLANOX ETHERNET SWITCH DRIVERS
13210 M:      Ido Schimmel <idosch@nvidia.com>
13211 M:      Petr Machata <petrm@nvidia.com>
13212 L:      netdev@vger.kernel.org
13213 S:      Supported
13214 W:      http://www.mellanox.com
13215 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13216 F:      drivers/net/ethernet/mellanox/mlxsw/
13217 F:      tools/testing/selftests/drivers/net/mlxsw/
13218
13219 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13220 M:      mlxsw@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/mlxfw/
13226
13227 MELLANOX HARDWARE PLATFORM SUPPORT
13228 M:      Hans de Goede <hdegoede@redhat.com>
13229 M:      Mark Gross <markgross@kernel.org>
13230 M:      Vadim Pasternak <vadimp@nvidia.com>
13231 L:      platform-driver-x86@vger.kernel.org
13232 S:      Supported
13233 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13234 F:      drivers/platform/mellanox/
13235 F:      include/linux/platform_data/mlxreg.h
13236
13237 MELLANOX MLX4 core VPI driver
13238 M:      Tariq Toukan <tariqt@nvidia.com>
13239 L:      netdev@vger.kernel.org
13240 L:      linux-rdma@vger.kernel.org
13241 S:      Supported
13242 W:      http://www.mellanox.com
13243 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13244 F:      drivers/net/ethernet/mellanox/mlx4/
13245 F:      include/linux/mlx4/
13246
13247 MELLANOX MLX4 IB driver
13248 M:      Yishai Hadas <yishaih@nvidia.com>
13249 L:      linux-rdma@vger.kernel.org
13250 S:      Supported
13251 W:      http://www.mellanox.com
13252 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13253 F:      drivers/infiniband/hw/mlx4/
13254 F:      include/linux/mlx4/
13255 F:      include/uapi/rdma/mlx4-abi.h
13256
13257 MELLANOX MLX5 core VPI driver
13258 M:      Saeed Mahameed <saeedm@nvidia.com>
13259 M:      Leon Romanovsky <leonro@nvidia.com>
13260 L:      netdev@vger.kernel.org
13261 L:      linux-rdma@vger.kernel.org
13262 S:      Supported
13263 W:      http://www.mellanox.com
13264 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13265 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13266 F:      drivers/net/ethernet/mellanox/mlx5/core/
13267 F:      include/linux/mlx5/
13268
13269 MELLANOX MLX5 IB driver
13270 M:      Leon Romanovsky <leonro@nvidia.com>
13271 L:      linux-rdma@vger.kernel.org
13272 S:      Supported
13273 W:      http://www.mellanox.com
13274 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13275 F:      drivers/infiniband/hw/mlx5/
13276 F:      include/linux/mlx5/
13277 F:      include/uapi/rdma/mlx5-abi.h
13278
13279 MELLANOX MLXCPLD I2C AND MUX DRIVER
13280 M:      Vadim Pasternak <vadimp@nvidia.com>
13281 M:      Michael Shych <michaelsh@nvidia.com>
13282 L:      linux-i2c@vger.kernel.org
13283 S:      Supported
13284 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13285 F:      drivers/i2c/busses/i2c-mlxcpld.c
13286 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13287
13288 MELLANOX MLXCPLD LED DRIVER
13289 M:      Vadim Pasternak <vadimp@nvidia.com>
13290 L:      linux-leds@vger.kernel.org
13291 S:      Supported
13292 F:      Documentation/leds/leds-mlxcpld.rst
13293 F:      drivers/leds/leds-mlxcpld.c
13294 F:      drivers/leds/leds-mlxreg.c
13295
13296 MELLANOX PLATFORM DRIVER
13297 M:      Vadim Pasternak <vadimp@nvidia.com>
13298 L:      platform-driver-x86@vger.kernel.org
13299 S:      Supported
13300 F:      drivers/platform/x86/mlx-platform.c
13301
13302 MEMBARRIER SUPPORT
13303 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13304 M:      "Paul E. McKenney" <paulmck@kernel.org>
13305 L:      linux-kernel@vger.kernel.org
13306 S:      Supported
13307 F:      arch/powerpc/include/asm/membarrier.h
13308 F:      include/uapi/linux/membarrier.h
13309 F:      kernel/sched/membarrier.c
13310
13311 MEMBLOCK
13312 M:      Mike Rapoport <rppt@kernel.org>
13313 L:      linux-mm@kvack.org
13314 S:      Maintained
13315 F:      Documentation/core-api/boot-time-mm.rst
13316 F:      include/linux/memblock.h
13317 F:      mm/memblock.c
13318 F:      tools/testing/memblock/
13319
13320 MEMORY CONTROLLER DRIVERS
13321 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13322 L:      linux-kernel@vger.kernel.org
13323 S:      Maintained
13324 B:      mailto:krzysztof.kozlowski@linaro.org
13325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13326 F:      Documentation/devicetree/bindings/memory-controllers/
13327 F:      drivers/memory/
13328 F:      include/dt-bindings/memory/
13329 F:      include/memory/
13330
13331 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13332 M:      Dmitry Osipenko <digetx@gmail.com>
13333 L:      linux-pm@vger.kernel.org
13334 L:      linux-tegra@vger.kernel.org
13335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13336 S:      Maintained
13337 F:      drivers/devfreq/tegra30-devfreq.c
13338
13339 MEMORY MANAGEMENT
13340 M:      Andrew Morton <akpm@linux-foundation.org>
13341 L:      linux-mm@kvack.org
13342 S:      Maintained
13343 W:      http://www.linux-mm.org
13344 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13345 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13346 F:      include/linux/gfp.h
13347 F:      include/linux/gfp_types.h
13348 F:      include/linux/memory_hotplug.h
13349 F:      include/linux/mm.h
13350 F:      include/linux/mmzone.h
13351 F:      include/linux/pagewalk.h
13352 F:      mm/
13353 F:      tools/testing/selftests/vm/
13354
13355 VMALLOC
13356 M:      Andrew Morton <akpm@linux-foundation.org>
13357 R:      Uladzislau Rezki <urezki@gmail.com>
13358 R:      Christoph Hellwig <hch@infradead.org>
13359 L:      linux-mm@kvack.org
13360 S:      Maintained
13361 W:      http://www.linux-mm.org
13362 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13363 F:      include/linux/vmalloc.h
13364 F:      mm/vmalloc.c
13365
13366 MEMORY HOT(UN)PLUG
13367 M:      David Hildenbrand <david@redhat.com>
13368 M:      Oscar Salvador <osalvador@suse.de>
13369 L:      linux-mm@kvack.org
13370 S:      Maintained
13371 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13372 F:      Documentation/core-api/memory-hotplug.rst
13373 F:      drivers/base/memory.c
13374 F:      include/linux/memory_hotplug.h
13375 F:      mm/memory_hotplug.c
13376 F:      tools/testing/selftests/memory-hotplug/
13377
13378 MEMORY TECHNOLOGY DEVICES (MTD)
13379 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13380 M:      Richard Weinberger <richard@nod.at>
13381 M:      Vignesh Raghavendra <vigneshr@ti.com>
13382 L:      linux-mtd@lists.infradead.org
13383 S:      Maintained
13384 W:      http://www.linux-mtd.infradead.org/
13385 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13386 C:      irc://irc.oftc.net/mtd
13387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13389 F:      Documentation/devicetree/bindings/mtd/
13390 F:      drivers/mtd/
13391 F:      include/linux/mtd/
13392 F:      include/uapi/mtd/
13393
13394 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13395 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13396 L:      linux-iio@vger.kernel.org
13397 S:      Maintained
13398 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13399 F:      drivers/iio/accel/msa311.c
13400
13401 MEN A21 WATCHDOG DRIVER
13402 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13403 L:      linux-watchdog@vger.kernel.org
13404 S:      Maintained
13405 F:      drivers/watchdog/mena21_wdt.c
13406
13407 MEN CHAMELEON BUS (mcb)
13408 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13409 S:      Maintained
13410 F:      Documentation/driver-api/men-chameleon-bus.rst
13411 F:      drivers/mcb/
13412 F:      include/linux/mcb.h
13413
13414 MEN F21BMC (Board Management Controller)
13415 M:      Andreas Werner <andreas.werner@men.de>
13416 S:      Supported
13417 F:      Documentation/hwmon/menf21bmc.rst
13418 F:      drivers/hwmon/menf21bmc_hwmon.c
13419 F:      drivers/leds/leds-menf21bmc.c
13420 F:      drivers/mfd/menf21bmc.c
13421 F:      drivers/watchdog/menf21bmc_wdt.c
13422
13423 MEN Z069 WATCHDOG DRIVER
13424 M:      Johannes Thumshirn <jth@kernel.org>
13425 L:      linux-watchdog@vger.kernel.org
13426 S:      Maintained
13427 F:      drivers/watchdog/menz69_wdt.c
13428
13429 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13430 M:      Neil Armstrong <neil.armstrong@linaro.org>
13431 L:      linux-media@vger.kernel.org
13432 L:      linux-amlogic@lists.infradead.org
13433 S:      Supported
13434 W:      http://linux-meson.com/
13435 T:      git git://linuxtv.org/media_tree.git
13436 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13437 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13438 F:      drivers/media/cec/platform/meson/ao-cec.c
13439
13440 MESON GE2D DRIVER FOR AMLOGIC SOCS
13441 M:      Neil Armstrong <neil.armstrong@linaro.org>
13442 L:      linux-media@vger.kernel.org
13443 L:      linux-amlogic@lists.infradead.org
13444 S:      Supported
13445 T:      git git://linuxtv.org/media_tree.git
13446 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13447 F:      drivers/media/platform/amlogic/meson-ge2d/
13448
13449 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13450 M:      Liang Yang <liang.yang@amlogic.com>
13451 L:      linux-mtd@lists.infradead.org
13452 S:      Maintained
13453 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13454 F:      drivers/mtd/nand/raw/meson_*
13455
13456 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13457 M:      Neil Armstrong <neil.armstrong@linaro.org>
13458 L:      linux-media@vger.kernel.org
13459 L:      linux-amlogic@lists.infradead.org
13460 S:      Supported
13461 T:      git git://linuxtv.org/media_tree.git
13462 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13463 F:      drivers/staging/media/meson/vdec/
13464
13465 METHODE UDPU SUPPORT
13466 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13467 S:      Maintained
13468 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13469
13470 MHI BUS
13471 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13472 L:      mhi@lists.linux.dev
13473 L:      linux-arm-msm@vger.kernel.org
13474 S:      Maintained
13475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13476 F:      Documentation/ABI/stable/sysfs-bus-mhi
13477 F:      Documentation/mhi/
13478 F:      drivers/bus/mhi/
13479 F:      include/linux/mhi.h
13480
13481 MICROBLAZE ARCHITECTURE
13482 M:      Michal Simek <monstr@monstr.eu>
13483 S:      Supported
13484 W:      http://www.monstr.eu/fdt/
13485 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13486 F:      arch/microblaze/
13487
13488 MICROCHIP AT91 DMA DRIVERS
13489 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13490 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13492 L:      dmaengine@vger.kernel.org
13493 S:      Supported
13494 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13495 F:      drivers/dma/at_hdmac.c
13496 F:      drivers/dma/at_xdmac.c
13497 F:      include/dt-bindings/dma/at91.h
13498
13499 MICROCHIP AT91 SERIAL DRIVER
13500 M:      Richard Genoud <richard.genoud@gmail.com>
13501 S:      Maintained
13502 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13503 F:      drivers/tty/serial/atmel_serial.c
13504 F:      drivers/tty/serial/atmel_serial.h
13505
13506 MICROCHIP AT91 USART MFD DRIVER
13507 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13508 L:      linux-kernel@vger.kernel.org
13509 S:      Supported
13510 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13511 F:      drivers/mfd/at91-usart.c
13512 F:      include/dt-bindings/mfd/at91-usart.h
13513
13514 MICROCHIP AT91 USART SPI DRIVER
13515 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13516 L:      linux-spi@vger.kernel.org
13517 S:      Supported
13518 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13519 F:      drivers/spi/spi-at91-usart.c
13520
13521 MICROCHIP AUDIO ASOC DRIVERS
13522 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13523 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13524 S:      Supported
13525 F:      sound/soc/atmel
13526
13527 MICROCHIP CSI2DC DRIVER
13528 M:      Eugen Hristev <eugen.hristev@microchip.com>
13529 L:      linux-media@vger.kernel.org
13530 S:      Supported
13531 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13532 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13533
13534 MICROCHIP ECC DRIVER
13535 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13536 L:      linux-crypto@vger.kernel.org
13537 S:      Maintained
13538 F:      drivers/crypto/atmel-ecc.*
13539
13540 MICROCHIP EIC DRIVER
13541 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13543 S:      Supported
13544 F:      drivers/irqchip/irq-mchp-eic.c
13545
13546 MICROCHIP I2C DRIVER
13547 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13548 L:      linux-i2c@vger.kernel.org
13549 S:      Supported
13550 F:      drivers/i2c/busses/i2c-at91-*.c
13551 F:      drivers/i2c/busses/i2c-at91.h
13552
13553 MICROCHIP ISC DRIVER
13554 M:      Eugen Hristev <eugen.hristev@microchip.com>
13555 L:      linux-media@vger.kernel.org
13556 S:      Supported
13557 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13558 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13559 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13560 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13561 F:      drivers/media/platform/microchip/microchip-isc*
13562 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13563 F:      include/linux/atmel-isc-media.h
13564
13565 MICROCHIP ISI DRIVER
13566 M:      Eugen Hristev <eugen.hristev@microchip.com>
13567 L:      linux-media@vger.kernel.org
13568 S:      Supported
13569 F:      drivers/media/platform/atmel/atmel-isi.c
13570 F:      drivers/media/platform/atmel/atmel-isi.h
13571
13572 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13573 M:      Woojung Huh <woojung.huh@microchip.com>
13574 M:      UNGLinuxDriver@microchip.com
13575 L:      netdev@vger.kernel.org
13576 S:      Maintained
13577 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13578 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13579 F:      drivers/net/dsa/microchip/*
13580 F:      include/linux/dsa/ksz_common.h
13581 F:      include/linux/platform_data/microchip-ksz.h
13582 F:      net/dsa/tag_ksz.c
13583
13584 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13585 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13586 R:      UNGLinuxDriver@microchip.com
13587 L:      netdev@vger.kernel.org
13588 S:      Maintained
13589 F:      drivers/net/phy/microchip_t1.c
13590
13591 MICROCHIP LAN743X ETHERNET DRIVER
13592 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13593 M:      UNGLinuxDriver@microchip.com
13594 L:      netdev@vger.kernel.org
13595 S:      Maintained
13596 F:      drivers/net/ethernet/microchip/lan743x_*
13597
13598 MICROCHIP LAN966X ETHERNET DRIVER
13599 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13600 M:      UNGLinuxDriver@microchip.com
13601 L:      netdev@vger.kernel.org
13602 S:      Maintained
13603 F:      drivers/net/ethernet/microchip/lan966x/*
13604
13605 MICROCHIP LCDFB DRIVER
13606 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13607 L:      linux-fbdev@vger.kernel.org
13608 S:      Maintained
13609 F:      drivers/video/fbdev/atmel_lcdfb.c
13610 F:      include/video/atmel_lcdc.h
13611
13612 MICROCHIP MCP16502 PMIC DRIVER
13613 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13615 S:      Supported
13616 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13617 F:      drivers/regulator/mcp16502.c
13618
13619 MICROCHIP MCP3911 ADC DRIVER
13620 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13621 M:      Kent Gustavsson <kent@minoris.se>
13622 L:      linux-iio@vger.kernel.org
13623 S:      Maintained
13624 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13625 F:      drivers/iio/adc/mcp3911.c
13626
13627 MICROCHIP MMC/SD/SDIO MCI DRIVER
13628 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13629 S:      Maintained
13630 F:      drivers/mmc/host/atmel-mci.c
13631
13632 MICROCHIP NAND DRIVER
13633 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13634 L:      linux-mtd@lists.infradead.org
13635 S:      Supported
13636 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13637 F:      drivers/mtd/nand/raw/atmel/*
13638
13639 MICROCHIP PCI1XXXX GP DRIVER
13640 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13641 L:      linux-gpio@vger.kernel.org
13642 S:      Supported
13643 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13644 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13645 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13646
13647 MICROCHIP OTPC DRIVER
13648 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13650 S:      Supported
13651 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13652 F:      drivers/nvmem/microchip-otpc.c
13653 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13654
13655 MICROCHIP PCI1XXXX I2C DRIVER
13656 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13657 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13658 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13659 L:      linux-i2c@vger.kernel.org
13660 S:      Maintained
13661 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13662
13663 MICROCHIP PWM DRIVER
13664 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13666 L:      linux-pwm@vger.kernel.org
13667 S:      Supported
13668 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13669 F:      drivers/pwm/pwm-atmel.c
13670
13671 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13672 M:      Eugen Hristev <eugen.hristev@microchip.com>
13673 L:      linux-iio@vger.kernel.org
13674 S:      Supported
13675 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13676 F:      drivers/iio/adc/at91-sama5d2_adc.c
13677 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13678
13679 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13680 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13681 S:      Supported
13682 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13683
13684 MICROCHIP SPI DRIVER
13685 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13686 S:      Supported
13687 F:      drivers/spi/spi-atmel.*
13688
13689 MICROCHIP SSC DRIVER
13690 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13692 S:      Supported
13693 F:      drivers/misc/atmel-ssc.c
13694 F:      include/linux/atmel-ssc.h
13695
13696 MICROCHIP SOC DRIVERS
13697 M:      Conor Dooley <conor@kernel.org>
13698 S:      Supported
13699 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13700 F:      drivers/soc/microchip/
13701
13702 MICROCHIP USB251XB DRIVER
13703 M:      Richard Leitner <richard.leitner@skidata.com>
13704 L:      linux-usb@vger.kernel.org
13705 S:      Maintained
13706 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13707 F:      drivers/usb/misc/usb251xb.c
13708
13709 MICROCHIP USBA UDC DRIVER
13710 M:      Cristian Birsan <cristian.birsan@microchip.com>
13711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13712 S:      Supported
13713 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13714
13715 MICROCHIP WILC1000 WIFI DRIVER
13716 M:      Ajay Singh <ajay.kathat@microchip.com>
13717 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13718 L:      linux-wireless@vger.kernel.org
13719 S:      Supported
13720 F:      drivers/net/wireless/microchip/wilc1000/
13721
13722 MICROSEMI MIPS SOCS
13723 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13724 M:      UNGLinuxDriver@microchip.com
13725 L:      linux-mips@vger.kernel.org
13726 S:      Supported
13727 F:      Documentation/devicetree/bindings/mips/mscc.txt
13728 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13729 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13730 F:      arch/mips/boot/dts/mscc/
13731 F:      arch/mips/configs/generic/board-ocelot.config
13732 F:      arch/mips/generic/board-ocelot.c
13733
13734 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13735 M:      Don Brace <don.brace@microchip.com>
13736 L:      storagedev@microchip.com
13737 L:      linux-scsi@vger.kernel.org
13738 S:      Supported
13739 F:      Documentation/scsi/smartpqi.rst
13740 F:      drivers/scsi/smartpqi/Kconfig
13741 F:      drivers/scsi/smartpqi/Makefile
13742 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13743 F:      include/linux/cciss*.h
13744 F:      include/uapi/linux/cciss*.h
13745
13746 MICROSOFT MANA RDMA DRIVER
13747 M:      Long Li <longli@microsoft.com>
13748 M:      Ajay Sharma <sharmaajay@microsoft.com>
13749 L:      linux-rdma@vger.kernel.org
13750 S:      Supported
13751 F:      drivers/infiniband/hw/mana/
13752 F:      include/net/mana
13753 F:      include/uapi/rdma/mana-abi.h
13754
13755 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13756 M:      Maximilian Luz <luzmaximilian@gmail.com>
13757 L:      platform-driver-x86@vger.kernel.org
13758 S:      Maintained
13759 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13760
13761 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13762 M:      Maximilian Luz <luzmaximilian@gmail.com>
13763 L:      linux-pm@vger.kernel.org
13764 L:      platform-driver-x86@vger.kernel.org
13765 S:      Maintained
13766 F:      drivers/power/supply/surface_battery.c
13767 F:      drivers/power/supply/surface_charger.c
13768
13769 MICROSOFT SURFACE DTX DRIVER
13770 M:      Maximilian Luz <luzmaximilian@gmail.com>
13771 L:      platform-driver-x86@vger.kernel.org
13772 S:      Maintained
13773 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13774 F:      drivers/platform/surface/surface_dtx.c
13775 F:      include/uapi/linux/surface_aggregator/dtx.h
13776
13777 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13778 M:      Maximilian Luz <luzmaximilian@gmail.com>
13779 L:      platform-driver-x86@vger.kernel.org
13780 S:      Maintained
13781 F:      drivers/platform/surface/surface_gpe.c
13782
13783 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13784 M:      Hans de Goede <hdegoede@redhat.com>
13785 M:      Mark Gross <markgross@kernel.org>
13786 M:      Maximilian Luz <luzmaximilian@gmail.com>
13787 L:      platform-driver-x86@vger.kernel.org
13788 S:      Maintained
13789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13790 F:      drivers/platform/surface/
13791
13792 MICROSOFT SURFACE HID TRANSPORT DRIVER
13793 M:      Maximilian Luz <luzmaximilian@gmail.com>
13794 L:      linux-input@vger.kernel.org
13795 L:      platform-driver-x86@vger.kernel.org
13796 S:      Maintained
13797 F:      drivers/hid/surface-hid/
13798
13799 MICROSOFT SURFACE HOT-PLUG DRIVER
13800 M:      Maximilian Luz <luzmaximilian@gmail.com>
13801 L:      platform-driver-x86@vger.kernel.org
13802 S:      Maintained
13803 F:      drivers/platform/surface/surface_hotplug.c
13804
13805 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13806 M:      Maximilian Luz <luzmaximilian@gmail.com>
13807 L:      platform-driver-x86@vger.kernel.org
13808 S:      Maintained
13809 F:      drivers/platform/surface/surface_platform_profile.c
13810
13811 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13812 M:      Chen Yu <yu.c.chen@intel.com>
13813 L:      platform-driver-x86@vger.kernel.org
13814 S:      Supported
13815 F:      drivers/platform/surface/surfacepro3_button.c
13816
13817 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13818 M:      Maximilian Luz <luzmaximilian@gmail.com>
13819 L:      platform-driver-x86@vger.kernel.org
13820 S:      Maintained
13821 W:      https://github.com/linux-surface/surface-aggregator-module
13822 C:      irc://irc.libera.chat/linux-surface
13823 F:      Documentation/driver-api/surface_aggregator/
13824 F:      drivers/platform/surface/aggregator/
13825 F:      drivers/platform/surface/surface_acpi_notify.c
13826 F:      drivers/platform/surface/surface_aggregator_cdev.c
13827 F:      drivers/platform/surface/surface_aggregator_registry.c
13828 F:      include/linux/surface_acpi_notify.h
13829 F:      include/linux/surface_aggregator/
13830 F:      include/uapi/linux/surface_aggregator/
13831
13832 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13833 M:      Maximilian Luz <luzmaximilian@gmail.com>
13834 L:      platform-driver-x86@vger.kernel.org
13835 S:      Maintained
13836 F:      drivers/platform/surface/surface_aggregator_hub.c
13837
13838 MICROTEK X6 SCANNER
13839 M:      Oliver Neukum <oliver@neukum.org>
13840 S:      Maintained
13841 F:      drivers/usb/image/microtek.*
13842
13843 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13844 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13845 M:      Luka Perkov <luka.perkov@sartura.hr>
13846 S:      Maintained
13847 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13848 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13849 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13850 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13851 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13852 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13853
13854 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13855 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13856 L:      linux-media@vger.kernel.org
13857 S:      Maintained
13858 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13859 F:      Documentation/driver-api/media/drivers/ccs/
13860 F:      Documentation/userspace-api/media/drivers/ccs.rst
13861 F:      drivers/media/i2c/ccs-pll.c
13862 F:      drivers/media/i2c/ccs-pll.h
13863 F:      drivers/media/i2c/ccs/
13864 F:      include/uapi/linux/ccs.h
13865 F:      include/uapi/linux/smiapp.h
13866
13867 MIPS
13868 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13869 L:      linux-mips@vger.kernel.org
13870 S:      Maintained
13871 W:      http://www.linux-mips.org/
13872 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13874 F:      Documentation/devicetree/bindings/mips/
13875 F:      Documentation/mips/
13876 F:      arch/mips/
13877 F:      drivers/platform/mips/
13878 F:      include/dt-bindings/mips/
13879
13880 MIPS BOSTON DEVELOPMENT BOARD
13881 M:      Paul Burton <paulburton@kernel.org>
13882 L:      linux-mips@vger.kernel.org
13883 S:      Maintained
13884 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13885 F:      arch/mips/boot/dts/img/boston.dts
13886 F:      arch/mips/configs/generic/board-boston.config
13887 F:      drivers/clk/imgtec/clk-boston.c
13888 F:      include/dt-bindings/clock/boston-clock.h
13889
13890 MIPS CORE DRIVERS
13891 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13892 M:      Serge Semin <fancer.lancer@gmail.com>
13893 L:      linux-mips@vger.kernel.org
13894 S:      Supported
13895 F:      drivers/bus/mips_cdmm.c
13896 F:      drivers/clocksource/mips-gic-timer.c
13897 F:      drivers/cpuidle/cpuidle-cps.c
13898 F:      drivers/irqchip/irq-mips-cpu.c
13899 F:      drivers/irqchip/irq-mips-gic.c
13900
13901 MIPS GENERIC PLATFORM
13902 M:      Paul Burton <paulburton@kernel.org>
13903 L:      linux-mips@vger.kernel.org
13904 S:      Supported
13905 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13906 F:      arch/mips/generic/
13907 F:      arch/mips/tools/generic-board-config.sh
13908
13909 MIPS RINT INSTRUCTION EMULATION
13910 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13911 L:      linux-mips@vger.kernel.org
13912 S:      Supported
13913 F:      arch/mips/math-emu/dp_rint.c
13914 F:      arch/mips/math-emu/sp_rint.c
13915
13916 MIPS/LOONGSON1 ARCHITECTURE
13917 M:      Keguang Zhang <keguang.zhang@gmail.com>
13918 L:      linux-mips@vger.kernel.org
13919 S:      Maintained
13920 F:      arch/mips/include/asm/mach-loongson32/
13921 F:      arch/mips/loongson32/
13922 F:      drivers/*/*/*loongson1*
13923 F:      drivers/*/*loongson1*
13924
13925 MIPS/LOONGSON2EF ARCHITECTURE
13926 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13927 L:      linux-mips@vger.kernel.org
13928 S:      Maintained
13929 F:      arch/mips/include/asm/mach-loongson2ef/
13930 F:      arch/mips/loongson2ef/
13931 F:      drivers/cpufreq/loongson2_cpufreq.c
13932
13933 MIPS/LOONGSON64 ARCHITECTURE
13934 M:      Huacai Chen <chenhuacai@kernel.org>
13935 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13936 L:      linux-mips@vger.kernel.org
13937 S:      Maintained
13938 F:      arch/mips/include/asm/mach-loongson64/
13939 F:      arch/mips/loongson64/
13940 F:      drivers/irqchip/irq-loongson*
13941 F:      drivers/platform/mips/cpu_hwmon.c
13942
13943 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13944 M:      Hans Verkuil <hverkuil@xs4all.nl>
13945 L:      linux-media@vger.kernel.org
13946 S:      Odd Fixes
13947 W:      https://linuxtv.org
13948 T:      git git://linuxtv.org/media_tree.git
13949 F:      drivers/media/radio/radio-miropcm20*
13950
13951 MMP SUPPORT
13952 R:      Lubomir Rintel <lkundrak@v3.sk>
13953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13954 S:      Odd Fixes
13955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13956 F:      arch/arm/boot/dts/mmp*
13957 F:      arch/arm/mach-mmp/
13958 F:      include/linux/soc/mmp/
13959
13960 MMP USB PHY DRIVERS
13961 R:      Lubomir Rintel <lkundrak@v3.sk>
13962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13963 S:      Maintained
13964 F:      drivers/phy/marvell/phy-mmp3-usb.c
13965 F:      drivers/phy/marvell/phy-pxa-usb.c
13966
13967 MMU GATHER AND TLB INVALIDATION
13968 M:      Will Deacon <will@kernel.org>
13969 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13970 M:      Andrew Morton <akpm@linux-foundation.org>
13971 M:      Nick Piggin <npiggin@gmail.com>
13972 M:      Peter Zijlstra <peterz@infradead.org>
13973 L:      linux-arch@vger.kernel.org
13974 L:      linux-mm@kvack.org
13975 S:      Maintained
13976 F:      arch/*/include/asm/tlb.h
13977 F:      include/asm-generic/tlb.h
13978 F:      mm/mmu_gather.c
13979
13980 MN88472 MEDIA DRIVER
13981 M:      Antti Palosaari <crope@iki.fi>
13982 L:      linux-media@vger.kernel.org
13983 S:      Maintained
13984 W:      https://linuxtv.org
13985 W:      http://palosaari.fi/linux/
13986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13987 F:      drivers/media/dvb-frontends/mn88472*
13988
13989 MN88473 MEDIA DRIVER
13990 M:      Antti Palosaari <crope@iki.fi>
13991 L:      linux-media@vger.kernel.org
13992 S:      Maintained
13993 W:      https://linuxtv.org
13994 W:      http://palosaari.fi/linux/
13995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13996 F:      drivers/media/dvb-frontends/mn88473*
13997
13998 MODULE SUPPORT
13999 M:      Luis Chamberlain <mcgrof@kernel.org>
14000 L:      linux-modules@vger.kernel.org
14001 L:      linux-kernel@vger.kernel.org
14002 S:      Maintained
14003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14004 F:      include/linux/module.h
14005 F:      kernel/module/
14006 F:      scripts/module*
14007
14008 MONOLITHIC POWER SYSTEM PMIC DRIVER
14009 M:      Saravanan Sekar <sravanhome@gmail.com>
14010 S:      Maintained
14011 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14012 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14013 F:      drivers/iio/adc/mp2629_adc.c
14014 F:      drivers/mfd/mp2629.c
14015 F:      drivers/power/supply/mp2629_charger.c
14016 F:      drivers/regulator/mp5416.c
14017 F:      drivers/regulator/mpq7920.c
14018 F:      drivers/regulator/mpq7920.h
14019 F:      include/linux/mfd/mp2629.h
14020
14021 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
14022 S:      Orphan
14023 W:      http://popies.net/meye/
14024 F:      Documentation/userspace-api/media/drivers/meye*
14025 F:      drivers/staging/media/deprecated/meye/
14026 F:      include/uapi/linux/meye.h
14027
14028 MOTORCOMM PHY DRIVER
14029 M:      Peter Geis <pgwipeout@gmail.com>
14030 M:      Frank <Frank.Sae@motor-comm.com>
14031 L:      netdev@vger.kernel.org
14032 S:      Maintained
14033 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14034 F:      drivers/net/phy/motorcomm.c
14035
14036 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14037 M:      Jiri Slaby <jirislaby@kernel.org>
14038 S:      Maintained
14039 F:      Documentation/driver-api/tty/moxa-smartio.rst
14040 F:      drivers/tty/mxser.*
14041
14042 MR800 AVERMEDIA USB FM RADIO DRIVER
14043 M:      Alexey Klimov <klimov.linux@gmail.com>
14044 L:      linux-media@vger.kernel.org
14045 S:      Maintained
14046 T:      git git://linuxtv.org/media_tree.git
14047 F:      drivers/media/radio/radio-mr800.c
14048
14049 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14050 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14051 L:      linux-wpan@vger.kernel.org
14052 S:      Odd Fixes
14053 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14054 F:      drivers/net/ieee802154/mrf24j40.c
14055
14056 MSI LAPTOP SUPPORT
14057 M:      "Lee, Chun-Yi" <jlee@suse.com>
14058 L:      platform-driver-x86@vger.kernel.org
14059 S:      Maintained
14060 F:      drivers/platform/x86/msi-laptop.c
14061
14062 MSI WMI SUPPORT
14063 L:      platform-driver-x86@vger.kernel.org
14064 S:      Orphan
14065 F:      drivers/platform/x86/msi-wmi.c
14066
14067 MSI001 MEDIA DRIVER
14068 M:      Antti Palosaari <crope@iki.fi>
14069 L:      linux-media@vger.kernel.org
14070 S:      Maintained
14071 W:      https://linuxtv.org
14072 W:      http://palosaari.fi/linux/
14073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14074 T:      git git://linuxtv.org/anttip/media_tree.git
14075 F:      drivers/media/tuners/msi001*
14076
14077 MSI2500 MEDIA DRIVER
14078 M:      Antti Palosaari <crope@iki.fi>
14079 L:      linux-media@vger.kernel.org
14080 S:      Maintained
14081 W:      https://linuxtv.org
14082 W:      http://palosaari.fi/linux/
14083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14084 T:      git git://linuxtv.org/anttip/media_tree.git
14085 F:      drivers/media/usb/msi2500/
14086
14087 MSTAR INTERRUPT CONTROLLER DRIVER
14088 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14089 M:      Daniel Palmer <daniel@thingy.jp>
14090 S:      Maintained
14091 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14092 F:      drivers/irqchip/irq-mst-intc.c
14093
14094 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14095 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14096 L:      linux-mtd@lists.infradead.org
14097 S:      Maintained
14098 F:      drivers/mtd/devices/docg3*
14099
14100 MT9M032 APTINA SENSOR DRIVER
14101 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14102 L:      linux-media@vger.kernel.org
14103 S:      Maintained
14104 T:      git git://linuxtv.org/media_tree.git
14105 F:      drivers/media/i2c/mt9m032.c
14106 F:      include/media/i2c/mt9m032.h
14107
14108 MT9P031 APTINA CAMERA SENSOR
14109 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14110 L:      linux-media@vger.kernel.org
14111 S:      Maintained
14112 T:      git git://linuxtv.org/media_tree.git
14113 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14114 F:      drivers/media/i2c/mt9p031.c
14115 F:      include/media/i2c/mt9p031.h
14116
14117 MT9T001 APTINA CAMERA SENSOR
14118 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14119 L:      linux-media@vger.kernel.org
14120 S:      Maintained
14121 T:      git git://linuxtv.org/media_tree.git
14122 F:      drivers/media/i2c/mt9t001.c
14123 F:      include/media/i2c/mt9t001.h
14124
14125 MT9T112 APTINA CAMERA SENSOR
14126 M:      Jacopo Mondi <jacopo@jmondi.org>
14127 L:      linux-media@vger.kernel.org
14128 S:      Odd Fixes
14129 T:      git git://linuxtv.org/media_tree.git
14130 F:      drivers/media/i2c/mt9t112.c
14131 F:      include/media/i2c/mt9t112.h
14132
14133 MT9V032 APTINA CAMERA SENSOR
14134 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14135 L:      linux-media@vger.kernel.org
14136 S:      Maintained
14137 T:      git git://linuxtv.org/media_tree.git
14138 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14139 F:      drivers/media/i2c/mt9v032.c
14140 F:      include/media/i2c/mt9v032.h
14141
14142 MT9V111 APTINA CAMERA SENSOR
14143 M:      Jacopo Mondi <jacopo@jmondi.org>
14144 L:      linux-media@vger.kernel.org
14145 S:      Maintained
14146 T:      git git://linuxtv.org/media_tree.git
14147 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14148 F:      drivers/media/i2c/mt9v111.c
14149
14150 MULTIFUNCTION DEVICES (MFD)
14151 M:      Lee Jones <lee@kernel.org>
14152 S:      Supported
14153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14154 F:      Documentation/devicetree/bindings/mfd/
14155 F:      drivers/mfd/
14156 F:      include/dt-bindings/mfd/
14157 F:      include/linux/mfd/
14158
14159 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14160 S:      Orphan
14161 F:      drivers/mmc/host/mmc_spi.c
14162 F:      include/linux/spi/mmc_spi.h
14163
14164 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14165 M:      Ulf Hansson <ulf.hansson@linaro.org>
14166 L:      linux-mmc@vger.kernel.org
14167 S:      Maintained
14168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14169 F:      Documentation/devicetree/bindings/mmc/
14170 F:      drivers/mmc/
14171 F:      include/linux/mmc/
14172 F:      include/uapi/linux/mmc/
14173
14174 MULTIPLEXER SUBSYSTEM
14175 M:      Peter Rosin <peda@axentia.se>
14176 S:      Maintained
14177 F:      Documentation/ABI/testing/sysfs-class-mux*
14178 F:      Documentation/devicetree/bindings/mux/
14179 F:      drivers/mux/
14180 F:      include/dt-bindings/mux/
14181 F:      include/linux/mux/
14182
14183 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14184 M:      Bin Liu <b-liu@ti.com>
14185 L:      linux-usb@vger.kernel.org
14186 S:      Maintained
14187 F:      drivers/usb/musb/
14188
14189 MXL301RF MEDIA DRIVER
14190 M:      Akihiro Tsukada <tskd08@gmail.com>
14191 L:      linux-media@vger.kernel.org
14192 S:      Odd Fixes
14193 F:      drivers/media/tuners/mxl301rf*
14194
14195 MXL5007T MEDIA DRIVER
14196 M:      Michael Krufky <mkrufky@linuxtv.org>
14197 L:      linux-media@vger.kernel.org
14198 S:      Maintained
14199 W:      https://linuxtv.org
14200 W:      http://github.com/mkrufky
14201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14202 T:      git git://linuxtv.org/mkrufky/tuners.git
14203 F:      drivers/media/tuners/mxl5007t.*
14204
14205 MXSFB DRM DRIVER
14206 M:      Marek Vasut <marex@denx.de>
14207 M:      Stefan Agner <stefan@agner.ch>
14208 L:      dri-devel@lists.freedesktop.org
14209 S:      Supported
14210 T:      git git://anongit.freedesktop.org/drm/drm-misc
14211 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14212 F:      drivers/gpu/drm/mxsfb/
14213
14214 MYLEX DAC960 PCI RAID Controller
14215 M:      Hannes Reinecke <hare@kernel.org>
14216 L:      linux-scsi@vger.kernel.org
14217 S:      Supported
14218 F:      drivers/scsi/myrb.*
14219 F:      drivers/scsi/myrs.*
14220
14221 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14222 M:      Chris Lee <christopher.lee@cspi.com>
14223 L:      netdev@vger.kernel.org
14224 S:      Supported
14225 W:      https://www.cspi.com/ethernet-products/support/downloads/
14226 F:      drivers/net/ethernet/myricom/myri10ge/
14227
14228 NAND FLASH SUBSYSTEM
14229 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14230 R:      Richard Weinberger <richard@nod.at>
14231 L:      linux-mtd@lists.infradead.org
14232 S:      Maintained
14233 W:      http://www.linux-mtd.infradead.org/
14234 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14235 C:      irc://irc.oftc.net/mtd
14236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14237 F:      drivers/mtd/nand/
14238 F:      include/linux/mtd/*nand*.h
14239
14240 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14241 M:      Daniel Mack <zonque@gmail.com>
14242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14243 S:      Maintained
14244 W:      http://www.native-instruments.com
14245 F:      sound/usb/caiaq/
14246
14247 NATSEMI ETHERNET DRIVER (DP8381x)
14248 S:      Orphan
14249 F:      drivers/net/ethernet/natsemi/natsemi.c
14250
14251 NCR 5380 SCSI DRIVERS
14252 M:      Finn Thain <fthain@linux-m68k.org>
14253 M:      Michael Schmitz <schmitzmic@gmail.com>
14254 L:      linux-scsi@vger.kernel.org
14255 S:      Maintained
14256 F:      Documentation/scsi/g_NCR5380.rst
14257 F:      drivers/scsi/NCR5380.*
14258 F:      drivers/scsi/arm/cumana_1.c
14259 F:      drivers/scsi/arm/oak.c
14260 F:      drivers/scsi/atari_scsi.*
14261 F:      drivers/scsi/dmx3191d.c
14262 F:      drivers/scsi/g_NCR5380.*
14263 F:      drivers/scsi/mac_scsi.*
14264 F:      drivers/scsi/sun3_scsi.*
14265 F:      drivers/scsi/sun3_scsi_vme.c
14266
14267 NCSI LIBRARY
14268 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14269 S:      Maintained
14270 F:      net/ncsi/
14271
14272 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14273 M:      Guenter Roeck <linux@roeck-us.net>
14274 L:      linux-hwmon@vger.kernel.org
14275 S:      Maintained
14276 F:      Documentation/hwmon/nct6775.rst
14277 F:      drivers/hwmon/nct6775-core.c
14278 F:      drivers/hwmon/nct6775-platform.c
14279 F:      drivers/hwmon/nct6775.h
14280
14281 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14282 M:      Zev Weiss <zev@bewilderbeest.net>
14283 L:      linux-hwmon@vger.kernel.org
14284 S:      Maintained
14285 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14286 F:      drivers/hwmon/nct6775-i2c.c
14287
14288 NETDEVSIM
14289 M:      Jakub Kicinski <kuba@kernel.org>
14290 S:      Maintained
14291 F:      drivers/net/netdevsim/*
14292
14293 NETEM NETWORK EMULATOR
14294 M:      Stephen Hemminger <stephen@networkplumber.org>
14295 L:      netdev@vger.kernel.org
14296 S:      Maintained
14297 F:      net/sched/sch_netem.c
14298
14299 NETERION 10GbE DRIVERS (s2io)
14300 M:      Jon Mason <jdmason@kudzu.us>
14301 L:      netdev@vger.kernel.org
14302 S:      Supported
14303 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14304 F:      drivers/net/ethernet/neterion/
14305
14306 NETFILTER
14307 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14308 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14309 M:      Florian Westphal <fw@strlen.de>
14310 L:      netfilter-devel@vger.kernel.org
14311 L:      coreteam@netfilter.org
14312 S:      Maintained
14313 W:      http://www.netfilter.org/
14314 W:      http://www.iptables.org/
14315 W:      http://www.nftables.org/
14316 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14317 C:      irc://irc.libera.chat/netfilter
14318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14320 F:      include/linux/netfilter*
14321 F:      include/linux/netfilter/
14322 F:      include/net/netfilter/
14323 F:      include/uapi/linux/netfilter*
14324 F:      include/uapi/linux/netfilter/
14325 F:      net/*/netfilter.c
14326 F:      net/*/netfilter/
14327 F:      net/bridge/br_netfilter*.c
14328 F:      net/netfilter/
14329
14330 NETROM NETWORK LAYER
14331 M:      Ralf Baechle <ralf@linux-mips.org>
14332 L:      linux-hams@vger.kernel.org
14333 S:      Maintained
14334 W:      http://www.linux-ax25.org/
14335 F:      include/net/netrom.h
14336 F:      include/uapi/linux/netrom.h
14337 F:      net/netrom/
14338
14339 NETRONIX EMBEDDED CONTROLLER
14340 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14341 S:      Maintained
14342 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14343 F:      drivers/mfd/ntxec.c
14344 F:      drivers/pwm/pwm-ntxec.c
14345 F:      drivers/rtc/rtc-ntxec.c
14346 F:      include/linux/mfd/ntxec.h
14347
14348 NETRONOME ETHERNET DRIVERS
14349 M:      Simon Horman <simon.horman@corigine.com>
14350 R:      Jakub Kicinski <kuba@kernel.org>
14351 L:      oss-drivers@corigine.com
14352 S:      Maintained
14353 F:      drivers/net/ethernet/netronome/
14354
14355 NETWORK BLOCK DEVICE (NBD)
14356 M:      Josef Bacik <josef@toxicpanda.com>
14357 L:      linux-block@vger.kernel.org
14358 L:      nbd@other.debian.org
14359 S:      Maintained
14360 F:      Documentation/admin-guide/blockdev/nbd.rst
14361 F:      drivers/block/nbd.c
14362 F:      include/trace/events/nbd.h
14363 F:      include/uapi/linux/nbd.h
14364
14365 NETWORK DROP MONITOR
14366 M:      Neil Horman <nhorman@tuxdriver.com>
14367 L:      netdev@vger.kernel.org
14368 S:      Maintained
14369 W:      https://fedorahosted.org/dropwatch/
14370 F:      include/uapi/linux/net_dropmon.h
14371 F:      net/core/drop_monitor.c
14372
14373 NETWORKING DRIVERS
14374 M:      "David S. Miller" <davem@davemloft.net>
14375 M:      Eric Dumazet <edumazet@google.com>
14376 M:      Jakub Kicinski <kuba@kernel.org>
14377 M:      Paolo Abeni <pabeni@redhat.com>
14378 L:      netdev@vger.kernel.org
14379 S:      Maintained
14380 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14383 F:      Documentation/devicetree/bindings/net/
14384 F:      drivers/connector/
14385 F:      drivers/net/
14386 F:      include/dt-bindings/net/
14387 F:      include/linux/etherdevice.h
14388 F:      include/linux/fcdevice.h
14389 F:      include/linux/fddidevice.h
14390 F:      include/linux/hippidevice.h
14391 F:      include/linux/if_*
14392 F:      include/linux/inetdevice.h
14393 F:      include/linux/netdevice.h
14394 F:      include/uapi/linux/if_*
14395 F:      include/uapi/linux/netdevice.h
14396
14397 NETWORKING DRIVERS (WIRELESS)
14398 M:      Kalle Valo <kvalo@kernel.org>
14399 L:      linux-wireless@vger.kernel.org
14400 S:      Maintained
14401 W:      https://wireless.wiki.kernel.org/
14402 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14405 F:      Documentation/devicetree/bindings/net/wireless/
14406 F:      drivers/net/wireless/
14407
14408 NETWORKING [DSA]
14409 M:      Andrew Lunn <andrew@lunn.ch>
14410 M:      Florian Fainelli <f.fainelli@gmail.com>
14411 M:      Vladimir Oltean <olteanv@gmail.com>
14412 S:      Maintained
14413 F:      Documentation/devicetree/bindings/net/dsa/
14414 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14415 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14416 F:      drivers/net/dsa/
14417 F:      include/linux/dsa/
14418 F:      include/linux/platform_data/dsa.h
14419 F:      include/net/dsa.h
14420 F:      net/dsa/
14421 F:      tools/testing/selftests/drivers/net/dsa/
14422
14423 NETWORKING [GENERAL]
14424 M:      "David S. Miller" <davem@davemloft.net>
14425 M:      Eric Dumazet <edumazet@google.com>
14426 M:      Jakub Kicinski <kuba@kernel.org>
14427 M:      Paolo Abeni <pabeni@redhat.com>
14428 L:      netdev@vger.kernel.org
14429 S:      Maintained
14430 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14431 B:      mailto:netdev@vger.kernel.org
14432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14434 F:      Documentation/core-api/netlink.rst
14435 F:      Documentation/networking/
14436 F:      Documentation/process/maintainer-netdev.rst
14437 F:      Documentation/userspace-api/netlink/
14438 F:      include/linux/in.h
14439 F:      include/linux/net.h
14440 F:      include/linux/netdevice.h
14441 F:      include/net/
14442 F:      include/uapi/linux/in.h
14443 F:      include/uapi/linux/net.h
14444 F:      include/uapi/linux/net_namespace.h
14445 F:      include/uapi/linux/netdevice.h
14446 F:      lib/net_utils.c
14447 F:      lib/random32.c
14448 F:      net/
14449 F:      tools/net/
14450 F:      tools/testing/selftests/net/
14451
14452 NETWORKING [IPSEC]
14453 M:      Steffen Klassert <steffen.klassert@secunet.com>
14454 M:      Herbert Xu <herbert@gondor.apana.org.au>
14455 M:      "David S. Miller" <davem@davemloft.net>
14456 L:      netdev@vger.kernel.org
14457 S:      Maintained
14458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14460 F:      include/net/xfrm.h
14461 F:      include/uapi/linux/xfrm.h
14462 F:      net/ipv4/ah4.c
14463 F:      net/ipv4/esp4*
14464 F:      net/ipv4/ip_vti.c
14465 F:      net/ipv4/ipcomp.c
14466 F:      net/ipv4/xfrm*
14467 F:      net/ipv6/ah6.c
14468 F:      net/ipv6/esp6*
14469 F:      net/ipv6/ip6_vti.c
14470 F:      net/ipv6/ipcomp6.c
14471 F:      net/ipv6/xfrm*
14472 F:      net/key/
14473 F:      net/xfrm/
14474 F:      tools/testing/selftests/net/ipsec.c
14475
14476 NETWORKING [IPv4/IPv6]
14477 M:      "David S. Miller" <davem@davemloft.net>
14478 M:      David Ahern <dsahern@kernel.org>
14479 L:      netdev@vger.kernel.org
14480 S:      Maintained
14481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14482 F:      arch/x86/net/*
14483 F:      include/linux/ip.h
14484 F:      include/linux/ipv6*
14485 F:      include/net/fib*
14486 F:      include/net/ip*
14487 F:      include/net/route.h
14488 F:      net/ipv4/
14489 F:      net/ipv6/
14490
14491 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14492 M:      Paul Moore <paul@paul-moore.com>
14493 L:      netdev@vger.kernel.org
14494 L:      linux-security-module@vger.kernel.org
14495 S:      Maintained
14496 W:      https://github.com/netlabel
14497 F:      Documentation/netlabel/
14498 F:      include/net/calipso.h
14499 F:      include/net/cipso_ipv4.h
14500 F:      include/net/netlabel.h
14501 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14502 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14503 F:      net/ipv4/cipso_ipv4.c
14504 F:      net/ipv6/calipso.c
14505 F:      net/netfilter/xt_CONNSECMARK.c
14506 F:      net/netfilter/xt_SECMARK.c
14507 F:      net/netlabel/
14508
14509 NETWORKING [MPTCP]
14510 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14511 L:      netdev@vger.kernel.org
14512 L:      mptcp@lists.linux.dev
14513 S:      Maintained
14514 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14515 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14516 F:      Documentation/networking/mptcp-sysctl.rst
14517 F:      include/net/mptcp.h
14518 F:      include/trace/events/mptcp.h
14519 F:      include/uapi/linux/mptcp.h
14520 F:      net/mptcp/
14521 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14522 F:      tools/testing/selftests/net/mptcp/
14523
14524 NETWORKING [TCP]
14525 M:      Eric Dumazet <edumazet@google.com>
14526 L:      netdev@vger.kernel.org
14527 S:      Maintained
14528 F:      include/linux/tcp.h
14529 F:      include/net/tcp.h
14530 F:      include/trace/events/tcp.h
14531 F:      include/uapi/linux/tcp.h
14532 F:      net/ipv4/syncookies.c
14533 F:      net/ipv4/tcp*.c
14534 F:      net/ipv6/syncookies.c
14535 F:      net/ipv6/tcp*.c
14536
14537 NETWORKING [TLS]
14538 M:      Boris Pismenny <borisp@nvidia.com>
14539 M:      John Fastabend <john.fastabend@gmail.com>
14540 M:      Jakub Kicinski <kuba@kernel.org>
14541 L:      netdev@vger.kernel.org
14542 S:      Maintained
14543 F:      include/net/tls.h
14544 F:      include/uapi/linux/tls.h
14545 F:      net/tls/*
14546
14547 NETXEN (1/10) GbE SUPPORT
14548 M:      Manish Chopra <manishc@marvell.com>
14549 M:      Rahul Verma <rahulv@marvell.com>
14550 M:      GR-Linux-NIC-Dev@marvell.com
14551 L:      netdev@vger.kernel.org
14552 S:      Supported
14553 F:      drivers/net/ethernet/qlogic/netxen/
14554
14555 NET_FAILOVER MODULE
14556 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14557 L:      netdev@vger.kernel.org
14558 S:      Supported
14559 F:      Documentation/networking/net_failover.rst
14560 F:      drivers/net/net_failover.c
14561 F:      include/net/net_failover.h
14562
14563 NEXTHOP
14564 M:      David Ahern <dsahern@kernel.org>
14565 L:      netdev@vger.kernel.org
14566 S:      Maintained
14567 F:      include/net/netns/nexthop.h
14568 F:      include/net/nexthop.h
14569 F:      include/uapi/linux/nexthop.h
14570 F:      net/ipv4/nexthop.c
14571
14572 NFC SUBSYSTEM
14573 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14574 L:      linux-nfc@lists.01.org (subscribers-only)
14575 L:      netdev@vger.kernel.org
14576 S:      Maintained
14577 B:      mailto:linux-nfc@lists.01.org
14578 F:      Documentation/devicetree/bindings/net/nfc/
14579 F:      drivers/nfc/
14580 F:      include/linux/platform_data/nfcmrvl.h
14581 F:      include/net/nfc/
14582 F:      include/uapi/linux/nfc.h
14583 F:      net/nfc/
14584
14585 NFC VIRTUAL NCI DEVICE DRIVER
14586 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14587 L:      netdev@vger.kernel.org
14588 L:      linux-nfc@lists.01.org (subscribers-only)
14589 S:      Supported
14590 F:      drivers/nfc/virtual_ncidev.c
14591 F:      tools/testing/selftests/nci/
14592
14593 NFS, SUNRPC, AND LOCKD CLIENTS
14594 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14595 M:      Anna Schumaker <anna@kernel.org>
14596 L:      linux-nfs@vger.kernel.org
14597 S:      Maintained
14598 W:      http://client.linux-nfs.org
14599 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14600 F:      fs/lockd/
14601 F:      fs/nfs/
14602 F:      fs/nfs_common/
14603 F:      include/linux/lockd/
14604 F:      include/linux/nfs*
14605 F:      include/linux/sunrpc/
14606 F:      include/uapi/linux/nfs*
14607 F:      include/uapi/linux/sunrpc/
14608 F:      net/sunrpc/
14609 F:      Documentation/filesystems/nfs/
14610
14611 NILFS2 FILESYSTEM
14612 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14613 L:      linux-nilfs@vger.kernel.org
14614 S:      Supported
14615 W:      https://nilfs.sourceforge.io/
14616 W:      https://nilfs.osdn.jp/
14617 T:      git https://github.com/konis/nilfs2.git
14618 F:      Documentation/filesystems/nilfs2.rst
14619 F:      fs/nilfs2/
14620 F:      include/trace/events/nilfs2.h
14621 F:      include/uapi/linux/nilfs2_api.h
14622 F:      include/uapi/linux/nilfs2_ondisk.h
14623
14624 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14625 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14626 S:      Maintained
14627 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14628 F:      Documentation/scsi/NinjaSCSI.rst
14629 F:      drivers/scsi/pcmcia/nsp_*
14630
14631 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14632 M:      GOTO Masanori <gotom@debian.or.jp>
14633 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14634 S:      Maintained
14635 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14636 F:      Documentation/scsi/NinjaSCSI.rst
14637 F:      drivers/scsi/nsp32*
14638
14639 NINTENDO HID DRIVER
14640 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14641 L:      linux-input@vger.kernel.org
14642 S:      Maintained
14643 F:      drivers/hid/hid-nintendo*
14644
14645 NIOS2 ARCHITECTURE
14646 M:      Dinh Nguyen <dinguyen@kernel.org>
14647 S:      Maintained
14648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14649 F:      arch/nios2/
14650
14651 NITRO ENCLAVES (NE)
14652 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14653 L:      linux-kernel@vger.kernel.org
14654 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14655 S:      Supported
14656 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14657 F:      Documentation/virt/ne_overview.rst
14658 F:      drivers/virt/nitro_enclaves/
14659 F:      include/linux/nitro_enclaves.h
14660 F:      include/uapi/linux/nitro_enclaves.h
14661 F:      samples/nitro_enclaves/
14662
14663 NOHZ, DYNTICKS SUPPORT
14664 M:      Frederic Weisbecker <fweisbec@gmail.com>
14665 M:      Thomas Gleixner <tglx@linutronix.de>
14666 M:      Ingo Molnar <mingo@kernel.org>
14667 L:      linux-kernel@vger.kernel.org
14668 S:      Maintained
14669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14670 F:      include/linux/sched/nohz.h
14671 F:      include/linux/tick.h
14672 F:      kernel/time/tick*.*
14673
14674 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14675 M:      Pavel Machek <pavel@ucw.cz>
14676 M:      Sakari Ailus <sakari.ailus@iki.fi>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 F:      drivers/media/i2c/ad5820.c
14680 F:      drivers/media/i2c/et8ek8
14681
14682 NOKIA N900 POWER SUPPLY DRIVERS
14683 R:      Pali Rohár <pali@kernel.org>
14684 F:      drivers/power/supply/bq2415x_charger.c
14685 F:      drivers/power/supply/bq27xxx_battery.c
14686 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14687 F:      drivers/power/supply/isp1704_charger.c
14688 F:      drivers/power/supply/rx51_battery.c
14689 F:      include/linux/power/bq2415x_charger.h
14690 F:      include/linux/power/bq27xxx_battery.h
14691
14692 NOLIBC HEADER FILE
14693 M:      Willy Tarreau <w@1wt.eu>
14694 S:      Maintained
14695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14696 F:      tools/include/nolibc/
14697 F:      tools/testing/selftests/nolibc/
14698
14699 NSDEPS
14700 M:      Matthias Maennich <maennich@google.com>
14701 S:      Maintained
14702 F:      Documentation/core-api/symbol-namespaces.rst
14703 F:      scripts/nsdeps
14704
14705 NTB AMD DRIVER
14706 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14707 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14708 L:      ntb@lists.linux.dev
14709 S:      Supported
14710 F:      drivers/ntb/hw/amd/
14711
14712 NTB DRIVER CORE
14713 M:      Jon Mason <jdmason@kudzu.us>
14714 M:      Dave Jiang <dave.jiang@intel.com>
14715 M:      Allen Hubbe <allenbh@gmail.com>
14716 L:      ntb@lists.linux.dev
14717 S:      Supported
14718 W:      https://github.com/jonmason/ntb/wiki
14719 T:      git git://github.com/jonmason/ntb.git
14720 F:      drivers/net/ntb_netdev.c
14721 F:      drivers/ntb/
14722 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14723 F:      include/linux/ntb.h
14724 F:      include/linux/ntb_transport.h
14725 F:      tools/testing/selftests/ntb/
14726
14727 NTB IDT DRIVER
14728 M:      Serge Semin <fancer.lancer@gmail.com>
14729 L:      ntb@lists.linux.dev
14730 S:      Supported
14731 F:      drivers/ntb/hw/idt/
14732
14733 NTB INTEL DRIVER
14734 M:      Dave Jiang <dave.jiang@intel.com>
14735 L:      ntb@lists.linux.dev
14736 S:      Supported
14737 W:      https://github.com/davejiang/linux/wiki
14738 T:      git https://github.com/davejiang/linux.git
14739 F:      drivers/ntb/hw/intel/
14740
14741 NTFS FILESYSTEM
14742 M:      Anton Altaparmakov <anton@tuxera.com>
14743 L:      linux-ntfs-dev@lists.sourceforge.net
14744 S:      Supported
14745 W:      http://www.tuxera.com/
14746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14747 F:      Documentation/filesystems/ntfs.rst
14748 F:      fs/ntfs/
14749
14750 NTFS3 FILESYSTEM
14751 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14752 L:      ntfs3@lists.linux.dev
14753 S:      Supported
14754 W:      http://www.paragon-software.com/
14755 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14756 F:      Documentation/filesystems/ntfs3.rst
14757 F:      fs/ntfs3/
14758
14759 NUBUS SUBSYSTEM
14760 M:      Finn Thain <fthain@linux-m68k.org>
14761 L:      linux-m68k@lists.linux-m68k.org
14762 S:      Maintained
14763 F:      arch/*/include/asm/nubus.h
14764 F:      drivers/nubus/
14765 F:      include/linux/nubus.h
14766 F:      include/uapi/linux/nubus.h
14767
14768 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14769 M:      Antonino Daplas <adaplas@gmail.com>
14770 L:      linux-fbdev@vger.kernel.org
14771 S:      Maintained
14772 F:      drivers/video/fbdev/nvidia/
14773 F:      drivers/video/fbdev/riva/
14774
14775 NVIDIA WMI EC BACKLIGHT DRIVER
14776 M:      Daniel Dadap <ddadap@nvidia.com>
14777 L:      platform-driver-x86@vger.kernel.org
14778 S:      Supported
14779 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14780 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14781
14782 NVM EXPRESS DRIVER
14783 M:      Keith Busch <kbusch@kernel.org>
14784 M:      Jens Axboe <axboe@fb.com>
14785 M:      Christoph Hellwig <hch@lst.de>
14786 M:      Sagi Grimberg <sagi@grimberg.me>
14787 L:      linux-nvme@lists.infradead.org
14788 S:      Supported
14789 W:      http://git.infradead.org/nvme.git
14790 T:      git://git.infradead.org/nvme.git
14791 F:      Documentation/nvme/
14792 F:      drivers/nvme/host/
14793 F:      drivers/nvme/common/
14794 F:      include/linux/nvme.h
14795 F:      include/linux/nvme-*.h
14796 F:      include/uapi/linux/nvme_ioctl.h
14797
14798 NVM EXPRESS FABRICS AUTHENTICATION
14799 M:      Hannes Reinecke <hare@suse.de>
14800 L:      linux-nvme@lists.infradead.org
14801 S:      Supported
14802 F:      drivers/nvme/host/auth.c
14803 F:      drivers/nvme/target/auth.c
14804 F:      drivers/nvme/target/fabrics-cmd-auth.c
14805 F:      include/linux/nvme-auth.h
14806
14807 NVM EXPRESS HARDWARE MONITORING SUPPORT
14808 M:      Guenter Roeck <linux@roeck-us.net>
14809 L:      linux-nvme@lists.infradead.org
14810 S:      Supported
14811 F:      drivers/nvme/host/hwmon.c
14812
14813 NVM EXPRESS FC TRANSPORT DRIVERS
14814 M:      James Smart <james.smart@broadcom.com>
14815 L:      linux-nvme@lists.infradead.org
14816 S:      Supported
14817 F:      drivers/nvme/host/fc.c
14818 F:      drivers/nvme/target/fc.c
14819 F:      drivers/nvme/target/fcloop.c
14820 F:      include/linux/nvme-fc-driver.h
14821 F:      include/linux/nvme-fc.h
14822
14823 NVM EXPRESS TARGET DRIVER
14824 M:      Christoph Hellwig <hch@lst.de>
14825 M:      Sagi Grimberg <sagi@grimberg.me>
14826 M:      Chaitanya Kulkarni <kch@nvidia.com>
14827 L:      linux-nvme@lists.infradead.org
14828 S:      Supported
14829 W:      http://git.infradead.org/nvme.git
14830 T:      git://git.infradead.org/nvme.git
14831 F:      drivers/nvme/target/
14832
14833 NVMEM FRAMEWORK
14834 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14835 S:      Maintained
14836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14837 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14838 F:      Documentation/devicetree/bindings/nvmem/
14839 F:      drivers/nvmem/
14840 F:      include/linux/nvmem-consumer.h
14841 F:      include/linux/nvmem-provider.h
14842
14843 NXP C45 TJA11XX PHY DRIVER
14844 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14845 L:      netdev@vger.kernel.org
14846 S:      Maintained
14847 F:      drivers/net/phy/nxp-c45-tja11xx.c
14848
14849 NXP FSPI DRIVER
14850 M:      Han Xu <han.xu@nxp.com>
14851 M:      Haibo Chen <haibo.chen@nxp.com>
14852 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14853 L:      linux-spi@vger.kernel.org
14854 S:      Maintained
14855 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14856 F:      drivers/spi/spi-nxp-fspi.c
14857
14858 NXP FXAS21002C DRIVER
14859 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14860 L:      linux-iio@vger.kernel.org
14861 S:      Maintained
14862 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14863 F:      drivers/iio/gyro/fxas21002c.h
14864 F:      drivers/iio/gyro/fxas21002c_core.c
14865 F:      drivers/iio/gyro/fxas21002c_i2c.c
14866 F:      drivers/iio/gyro/fxas21002c_spi.c
14867
14868 NXP i.MX CLOCK DRIVERS
14869 M:      Abel Vesa <abelvesa@kernel.org>
14870 L:      linux-clk@vger.kernel.org
14871 L:      linux-imx@nxp.com
14872 S:      Maintained
14873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14874 F:      Documentation/devicetree/bindings/clock/imx*
14875 F:      drivers/clk/imx/
14876 F:      include/dt-bindings/clock/imx*
14877
14878 NXP i.MX 8MQ DCSS DRIVER
14879 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14880 R:      Lucas Stach <l.stach@pengutronix.de>
14881 L:      dri-devel@lists.freedesktop.org
14882 S:      Maintained
14883 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14884 F:      drivers/gpu/drm/imx/dcss/
14885
14886 NXP i.MX 8QXP ADC DRIVER
14887 M:      Cai Huoqing <cai.huoqing@linux.dev>
14888 M:      Haibo Chen <haibo.chen@nxp.com>
14889 L:      linux-imx@nxp.com
14890 L:      linux-iio@vger.kernel.org
14891 S:      Maintained
14892 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14893 F:      drivers/iio/adc/imx8qxp-adc.c
14894
14895 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14896 M:      Haibo Chen <haibo.chen@nxp.com>
14897 L:      linux-iio@vger.kernel.org
14898 L:      linux-imx@nxp.com
14899 S:      Maintained
14900 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14901 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14902 F:      drivers/iio/adc/imx7d_adc.c
14903 F:      drivers/iio/adc/vf610_adc.c
14904
14905 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14906 M:      Jagan Teki <jagan@amarulasolutions.com>
14907 S:      Maintained
14908 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14909 F:      drivers/regulator/pf8x00-regulator.c
14910
14911 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14912 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14913 L:      linux-kernel@vger.kernel.org
14914 S:      Maintained
14915 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14916 F:      drivers/extcon/extcon-ptn5150.c
14917
14918 NXP SGTL5000 DRIVER
14919 M:      Fabio Estevam <festevam@gmail.com>
14920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14921 S:      Maintained
14922 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14923 F:      sound/soc/codecs/sgtl5000*
14924
14925 NXP SJA1105 ETHERNET SWITCH DRIVER
14926 M:      Vladimir Oltean <olteanv@gmail.com>
14927 L:      linux-kernel@vger.kernel.org
14928 S:      Maintained
14929 F:      drivers/net/dsa/sja1105
14930 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14931
14932 NXP TDA998X DRM DRIVER
14933 M:      Russell King <linux@armlinux.org.uk>
14934 S:      Maintained
14935 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14936 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14937 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14938 F:      include/drm/i2c/tda998x.h
14939 F:      include/dt-bindings/display/tda998x.h
14940 K:      "nxp,tda998x"
14941
14942 NXP TFA9879 DRIVER
14943 M:      Peter Rosin <peda@axentia.se>
14944 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14945 S:      Maintained
14946 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14947 F:      sound/soc/codecs/tfa9879*
14948
14949 NXP/Goodix TFA989X (TFA1) DRIVER
14950 M:      Stephan Gerhold <stephan@gerhold.net>
14951 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14952 S:      Maintained
14953 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14954 F:      sound/soc/codecs/tfa989x.c
14955
14956 NXP-NCI NFC DRIVER
14957 L:      linux-nfc@lists.01.org (subscribers-only)
14958 S:      Orphan
14959 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14960 F:      drivers/nfc/nxp-nci
14961
14962 NXP i.MX 8MP DW100 V4L2 DRIVER
14963 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
14964 L:      linux-media@vger.kernel.org
14965 S:      Maintained
14966 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
14967 F:      Documentation/userspace-api/media/drivers/dw100.rst
14968 F:      drivers/media/platform/nxp/dw100/
14969 F:      include/uapi/linux/dw100.h
14970
14971 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14972 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14973 R:      NXP Linux Team <linux-imx@nxp.com>
14974 L:      linux-media@vger.kernel.org
14975 S:      Maintained
14976 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14977 F:      drivers/media/platform/nxp/imx-jpeg
14978
14979 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14980 M:      Jonas Malaco <jonas@protocubo.io>
14981 L:      linux-hwmon@vger.kernel.org
14982 S:      Maintained
14983 F:      Documentation/hwmon/nzxt-kraken2.rst
14984 F:      drivers/hwmon/nzxt-kraken2.c
14985
14986 NZXT-SMART2 HARDWARE MONITORING DRIVER
14987 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14988 L:      linux-hwmon@vger.kernel.org
14989 S:      Maintained
14990 F:      Documentation/hwmon/nzxt-smart2.rst
14991 F:      drivers/hwmon/nzxt-smart2.c
14992
14993 OBJAGG
14994 M:      Jiri Pirko <jiri@nvidia.com>
14995 L:      netdev@vger.kernel.org
14996 S:      Supported
14997 F:      include/linux/objagg.h
14998 F:      lib/objagg.c
14999 F:      lib/test_objagg.c
15000
15001 OBJTOOL
15002 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15003 M:      Peter Zijlstra <peterz@infradead.org>
15004 S:      Supported
15005 F:      tools/objtool/
15006 F:      include/linux/objtool.h
15007
15008 OCELOT ETHERNET SWITCH DRIVER
15009 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15010 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15011 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15012 M:      UNGLinuxDriver@microchip.com
15013 L:      netdev@vger.kernel.org
15014 S:      Supported
15015 F:      drivers/net/dsa/ocelot/*
15016 F:      drivers/net/ethernet/mscc/
15017 F:      include/soc/mscc/ocelot*
15018 F:      net/dsa/tag_ocelot.c
15019 F:      net/dsa/tag_ocelot_8021q.c
15020 F:      tools/testing/selftests/drivers/net/ocelot/*
15021
15022 OCELOT EXTERNAL SWITCH CONTROL
15023 M:      Colin Foster <colin.foster@in-advantage.com>
15024 S:      Supported
15025 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15026 F:      drivers/mfd/ocelot*
15027 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15028 F:      include/linux/mfd/ocelot.h
15029
15030 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15031 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15032 M:      Andrew Donnellan <ajd@linux.ibm.com>
15033 L:      linuxppc-dev@lists.ozlabs.org
15034 S:      Supported
15035 F:      Documentation/userspace-api/accelerators/ocxl.rst
15036 F:      arch/powerpc/include/asm/pnv-ocxl.h
15037 F:      arch/powerpc/platforms/powernv/ocxl.c
15038 F:      drivers/misc/ocxl/
15039 F:      include/misc/ocxl*
15040 F:      include/uapi/misc/ocxl.h
15041
15042 OMAP AUDIO SUPPORT
15043 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15044 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15045 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15046 L:      linux-omap@vger.kernel.org
15047 S:      Maintained
15048 F:      sound/soc/ti/n810.c
15049 F:      sound/soc/ti/omap*
15050 F:      sound/soc/ti/rx51.c
15051 F:      sound/soc/ti/sdma-pcm.*
15052
15053 OMAP CLOCK FRAMEWORK SUPPORT
15054 M:      Paul Walmsley <paul@pwsan.com>
15055 L:      linux-omap@vger.kernel.org
15056 S:      Maintained
15057 F:      arch/arm/*omap*/*clock*
15058
15059 OMAP DEVICE TREE SUPPORT
15060 M:      Benoît Cousson <bcousson@baylibre.com>
15061 M:      Tony Lindgren <tony@atomide.com>
15062 L:      linux-omap@vger.kernel.org
15063 L:      devicetree@vger.kernel.org
15064 S:      Maintained
15065 F:      arch/arm/boot/dts/*am3*
15066 F:      arch/arm/boot/dts/*am4*
15067 F:      arch/arm/boot/dts/*am5*
15068 F:      arch/arm/boot/dts/*dra7*
15069 F:      arch/arm/boot/dts/*omap*
15070 F:      arch/arm/boot/dts/logicpd-som-lv*
15071 F:      arch/arm/boot/dts/logicpd-torpedo*
15072
15073 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15074 L:      linux-omap@vger.kernel.org
15075 L:      linux-fbdev@vger.kernel.org
15076 S:      Orphan
15077 F:      Documentation/arm/omap/dss.rst
15078 F:      drivers/video/fbdev/omap2/
15079
15080 OMAP FRAMEBUFFER SUPPORT
15081 L:      linux-fbdev@vger.kernel.org
15082 L:      linux-omap@vger.kernel.org
15083 S:      Orphan
15084 F:      drivers/video/fbdev/omap/
15085
15086 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15087 M:      Roger Quadros <rogerq@kernel.org>
15088 M:      Tony Lindgren <tony@atomide.com>
15089 L:      linux-omap@vger.kernel.org
15090 S:      Maintained
15091 F:      arch/arm/mach-omap2/*gpmc*
15092 F:      drivers/memory/omap-gpmc.c
15093
15094 OMAP GPIO DRIVER
15095 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15096 M:      Santosh Shilimkar <ssantosh@kernel.org>
15097 M:      Kevin Hilman <khilman@kernel.org>
15098 L:      linux-omap@vger.kernel.org
15099 S:      Maintained
15100 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15101 F:      drivers/gpio/gpio-omap.c
15102
15103 OMAP HARDWARE SPINLOCK SUPPORT
15104 M:      Ohad Ben-Cohen <ohad@wizery.com>
15105 L:      linux-omap@vger.kernel.org
15106 S:      Maintained
15107 F:      drivers/hwspinlock/omap_hwspinlock.c
15108
15109 OMAP HS MMC SUPPORT
15110 L:      linux-mmc@vger.kernel.org
15111 L:      linux-omap@vger.kernel.org
15112 S:      Orphan
15113 F:      drivers/mmc/host/omap_hsmmc.c
15114
15115 OMAP HWMOD DATA
15116 M:      Paul Walmsley <paul@pwsan.com>
15117 L:      linux-omap@vger.kernel.org
15118 S:      Maintained
15119 F:      arch/arm/mach-omap2/omap_hwmod*data*
15120
15121 OMAP HWMOD SUPPORT
15122 M:      Benoît Cousson <bcousson@baylibre.com>
15123 M:      Paul Walmsley <paul@pwsan.com>
15124 L:      linux-omap@vger.kernel.org
15125 S:      Maintained
15126 F:      arch/arm/mach-omap2/omap_hwmod.*
15127
15128 OMAP I2C DRIVER
15129 M:      Vignesh R <vigneshr@ti.com>
15130 L:      linux-omap@vger.kernel.org
15131 L:      linux-i2c@vger.kernel.org
15132 S:      Maintained
15133 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15134 F:      drivers/i2c/busses/i2c-omap.c
15135
15136 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15137 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15138 L:      linux-media@vger.kernel.org
15139 S:      Maintained
15140 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15141 F:      drivers/media/platform/ti/omap3isp/
15142 F:      drivers/staging/media/omap4iss/
15143
15144 OMAP MMC SUPPORT
15145 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15146 L:      linux-omap@vger.kernel.org
15147 S:      Odd Fixes
15148 F:      drivers/mmc/host/omap.c
15149
15150 OMAP POWER MANAGEMENT SUPPORT
15151 M:      Kevin Hilman <khilman@kernel.org>
15152 L:      linux-omap@vger.kernel.org
15153 S:      Maintained
15154 F:      arch/arm/*omap*/*pm*
15155 F:      drivers/cpufreq/omap-cpufreq.c
15156
15157 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15158 M:      Paul Walmsley <paul@pwsan.com>
15159 L:      linux-omap@vger.kernel.org
15160 S:      Maintained
15161 F:      arch/arm/mach-omap2/prm*
15162
15163 OMAP RANDOM NUMBER GENERATOR SUPPORT
15164 M:      Deepak Saxena <dsaxena@plexity.net>
15165 S:      Maintained
15166 F:      drivers/char/hw_random/omap-rng.c
15167
15168 OMAP USB SUPPORT
15169 L:      linux-usb@vger.kernel.org
15170 L:      linux-omap@vger.kernel.org
15171 S:      Orphan
15172 F:      arch/arm/*omap*/usb*
15173 F:      drivers/usb/*/*omap*
15174
15175 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15176 M:      Mark Jackson <mpfj@newflow.co.uk>
15177 L:      linux-omap@vger.kernel.org
15178 S:      Maintained
15179 F:      arch/arm/boot/dts/am335x-nano.dts
15180
15181 OMAP1 SUPPORT
15182 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15183 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15184 M:      Tony Lindgren <tony@atomide.com>
15185 L:      linux-omap@vger.kernel.org
15186 S:      Maintained
15187 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15189 F:      arch/arm/configs/omap1_defconfig
15190 F:      arch/arm/mach-omap1/
15191 F:      drivers/i2c/busses/i2c-omap.c
15192 F:      include/linux/platform_data/ams-delta-fiq.h
15193 F:      include/linux/platform_data/i2c-omap.h
15194
15195 OMAP2+ SUPPORT
15196 M:      Tony Lindgren <tony@atomide.com>
15197 L:      linux-omap@vger.kernel.org
15198 S:      Maintained
15199 W:      http://www.muru.com/linux/omap/
15200 W:      http://linux.omap.com/
15201 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15203 F:      arch/arm/configs/omap2plus_defconfig
15204 F:      arch/arm/mach-omap2/
15205 F:      drivers/bus/ti-sysc.c
15206 F:      drivers/i2c/busses/i2c-omap.c
15207 F:      drivers/irqchip/irq-omap-intc.c
15208 F:      drivers/mfd/*omap*.c
15209 F:      drivers/mfd/menelaus.c
15210 F:      drivers/mfd/palmas.c
15211 F:      drivers/mfd/tps65217.c
15212 F:      drivers/mfd/tps65218.c
15213 F:      drivers/mfd/tps65219.c
15214 F:      drivers/mfd/tps65910.c
15215 F:      drivers/mfd/twl-core.[ch]
15216 F:      drivers/mfd/twl4030*.c
15217 F:      drivers/mfd/twl6030*.c
15218 F:      drivers/mfd/twl6040*.c
15219 F:      drivers/regulator/palmas-regulator*.c
15220 F:      drivers/regulator/pbias-regulator.c
15221 F:      drivers/regulator/tps65217-regulator.c
15222 F:      drivers/regulator/tps65218-regulator.c
15223 F:      drivers/regulator/tps65219-regulator.c
15224 F:      drivers/regulator/tps65910-regulator.c
15225 F:      drivers/regulator/twl-regulator.c
15226 F:      drivers/regulator/twl6030-regulator.c
15227 F:      include/linux/platform_data/i2c-omap.h
15228 F:      include/linux/platform_data/ti-sysc.h
15229
15230 OMFS FILESYSTEM
15231 M:      Bob Copeland <me@bobcopeland.com>
15232 L:      linux-karma-devel@lists.sourceforge.net
15233 S:      Maintained
15234 F:      Documentation/filesystems/omfs.rst
15235 F:      fs/omfs/
15236
15237 OMNIKEY CARDMAN 4000 DRIVER
15238 M:      Harald Welte <laforge@gnumonks.org>
15239 S:      Maintained
15240 F:      drivers/char/pcmcia/cm4000_cs.c
15241 F:      include/linux/cm4000_cs.h
15242 F:      include/uapi/linux/cm4000_cs.h
15243
15244 OMNIKEY CARDMAN 4040 DRIVER
15245 M:      Harald Welte <laforge@gnumonks.org>
15246 S:      Maintained
15247 F:      drivers/char/pcmcia/cm4040_cs.*
15248
15249 OMNIVISION OG01A1B SENSOR DRIVER
15250 M:      Shawn Tu <shawnx.tu@intel.com>
15251 L:      linux-media@vger.kernel.org
15252 S:      Maintained
15253 F:      drivers/media/i2c/og01a1b.c
15254
15255 OMNIVISION OV02A10 SENSOR DRIVER
15256 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15257 L:      linux-media@vger.kernel.org
15258 S:      Maintained
15259 T:      git git://linuxtv.org/media_tree.git
15260 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15261 F:      drivers/media/i2c/ov02a10.c
15262
15263 OMNIVISION OV08D10 SENSOR DRIVER
15264 M:      Jimmy Su <jimmy.su@intel.com>
15265 L:      linux-media@vger.kernel.org
15266 S:      Maintained
15267 T:      git git://linuxtv.org/media_tree.git
15268 F:      drivers/media/i2c/ov08d10.c
15269
15270 OMNIVISION OV08X40 SENSOR DRIVER
15271 M:      Jason Chen <jason.z.chen@intel.com>
15272 L:      linux-media@vger.kernel.org
15273 S:      Maintained
15274 T:      git git://linuxtv.org/media_tree.git
15275 F:      drivers/media/i2c/ov08x40.c
15276
15277 OMNIVISION OV13858 SENSOR DRIVER
15278 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15279 L:      linux-media@vger.kernel.org
15280 S:      Maintained
15281 T:      git git://linuxtv.org/media_tree.git
15282 F:      drivers/media/i2c/ov13858.c
15283
15284 OMNIVISION OV13B10 SENSOR DRIVER
15285 M:      Arec Kao <arec.kao@intel.com>
15286 L:      linux-media@vger.kernel.org
15287 S:      Maintained
15288 T:      git git://linuxtv.org/media_tree.git
15289 F:      drivers/media/i2c/ov13b10.c
15290
15291 OMNIVISION OV2680 SENSOR DRIVER
15292 M:      Rui Miguel Silva <rmfrfs@gmail.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,ov2680.yaml
15297 F:      drivers/media/i2c/ov2680.c
15298
15299 OMNIVISION OV2685 SENSOR DRIVER
15300 M:      Shunqian Zheng <zhengsq@rock-chips.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/ov2685.c
15305
15306 OMNIVISION OV2740 SENSOR DRIVER
15307 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15308 R:      Shawn Tu <shawnx.tu@intel.com>
15309 R:      Bingbu Cao <bingbu.cao@intel.com>
15310 L:      linux-media@vger.kernel.org
15311 S:      Maintained
15312 T:      git git://linuxtv.org/media_tree.git
15313 F:      drivers/media/i2c/ov2740.c
15314
15315 OMNIVISION OV4689 SENSOR DRIVER
15316 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15317 L:      linux-media@vger.kernel.org
15318 S:      Maintained
15319 T:      git git://linuxtv.org/media_tree.git
15320 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15321 F:      drivers/media/i2c/ov5647.c
15322
15323 OMNIVISION OV5640 SENSOR DRIVER
15324 M:      Steve Longerbeam <slongerbeam@gmail.com>
15325 L:      linux-media@vger.kernel.org
15326 S:      Maintained
15327 T:      git git://linuxtv.org/media_tree.git
15328 F:      drivers/media/i2c/ov5640.c
15329
15330 OMNIVISION OV5647 SENSOR DRIVER
15331 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15332 M:      Jacopo Mondi <jacopo@jmondi.org>
15333 L:      linux-media@vger.kernel.org
15334 S:      Maintained
15335 T:      git git://linuxtv.org/media_tree.git
15336 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15337 F:      drivers/media/i2c/ov5647.c
15338
15339 OMNIVISION OV5670 SENSOR DRIVER
15340 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15341 L:      linux-media@vger.kernel.org
15342 S:      Maintained
15343 T:      git git://linuxtv.org/media_tree.git
15344 F:      drivers/media/i2c/ov5670.c
15345
15346 OMNIVISION OV5675 SENSOR DRIVER
15347 M:      Shawn Tu <shawnx.tu@intel.com>
15348 L:      linux-media@vger.kernel.org
15349 S:      Maintained
15350 T:      git git://linuxtv.org/media_tree.git
15351 F:      drivers/media/i2c/ov5675.c
15352
15353 OMNIVISION OV5693 SENSOR DRIVER
15354 M:      Daniel Scally <djrscally@gmail.com>
15355 L:      linux-media@vger.kernel.org
15356 S:      Maintained
15357 T:      git git://linuxtv.org/media_tree.git
15358 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15359 F:      drivers/media/i2c/ov5693.c
15360
15361 OMNIVISION OV5695 SENSOR DRIVER
15362 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15363 L:      linux-media@vger.kernel.org
15364 S:      Maintained
15365 T:      git git://linuxtv.org/media_tree.git
15366 F:      drivers/media/i2c/ov5695.c
15367
15368 OMNIVISION OV7670 SENSOR DRIVER
15369 L:      linux-media@vger.kernel.org
15370 S:      Orphan
15371 T:      git git://linuxtv.org/media_tree.git
15372 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15373 F:      drivers/media/i2c/ov7670.c
15374
15375 OMNIVISION OV772x SENSOR DRIVER
15376 M:      Jacopo Mondi <jacopo@jmondi.org>
15377 L:      linux-media@vger.kernel.org
15378 S:      Odd fixes
15379 T:      git git://linuxtv.org/media_tree.git
15380 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15381 F:      drivers/media/i2c/ov772x.c
15382 F:      include/media/i2c/ov772x.h
15383
15384 OMNIVISION OV7740 SENSOR DRIVER
15385 M:      Wenyou Yang <wenyou.yang@microchip.com>
15386 L:      linux-media@vger.kernel.org
15387 S:      Maintained
15388 T:      git git://linuxtv.org/media_tree.git
15389 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15390 F:      drivers/media/i2c/ov7740.c
15391
15392 OMNIVISION OV8856 SENSOR DRIVER
15393 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15394 L:      linux-media@vger.kernel.org
15395 S:      Maintained
15396 T:      git git://linuxtv.org/media_tree.git
15397 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15398 F:      drivers/media/i2c/ov8856.c
15399
15400 OMNIVISION OV9282 SENSOR DRIVER
15401 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15402 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15403 L:      linux-media@vger.kernel.org
15404 S:      Maintained
15405 T:      git git://linuxtv.org/media_tree.git
15406 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15407 F:      drivers/media/i2c/ov9282.c
15408
15409 OMNIVISION OV9640 SENSOR DRIVER
15410 M:      Petr Cvek <petrcvekcz@gmail.com>
15411 L:      linux-media@vger.kernel.org
15412 S:      Maintained
15413 F:      drivers/media/i2c/ov9640.*
15414
15415 OMNIVISION OV9650 SENSOR DRIVER
15416 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15417 R:      Akinobu Mita <akinobu.mita@gmail.com>
15418 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15419 L:      linux-media@vger.kernel.org
15420 S:      Maintained
15421 T:      git git://linuxtv.org/media_tree.git
15422 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15423 F:      drivers/media/i2c/ov9650.c
15424
15425 OMNIVISION OV9734 SENSOR DRIVER
15426 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15427 R:      Bingbu Cao <bingbu.cao@intel.com>
15428 L:      linux-media@vger.kernel.org
15429 S:      Maintained
15430 T:      git git://linuxtv.org/media_tree.git
15431 F:      drivers/media/i2c/ov9734.c
15432
15433 ONBOARD USB HUB DRIVER
15434 M:      Matthias Kaehlcke <mka@chromium.org>
15435 L:      linux-usb@vger.kernel.org
15436 S:      Maintained
15437 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15438 F:      drivers/usb/misc/onboard_usb_hub.c
15439
15440 ONENAND FLASH DRIVER
15441 M:      Kyungmin Park <kyungmin.park@samsung.com>
15442 L:      linux-mtd@lists.infradead.org
15443 S:      Maintained
15444 F:      drivers/mtd/nand/onenand/
15445 F:      include/linux/mtd/onenand*.h
15446
15447 ONEXPLAYER FAN DRIVER
15448 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15449 L:      linux-hwmon@vger.kernel.org
15450 S:      Maintained
15451 F:      drivers/hwmon/oxp-sensors.c
15452
15453 ONION OMEGA2+ BOARD
15454 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15455 L:      linux-mips@vger.kernel.org
15456 S:      Maintained
15457 F:      arch/mips/boot/dts/ralink/omega2p.dts
15458
15459 ONSEMI ETHERNET PHY DRIVERS
15460 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15461 L:      netdev@vger.kernel.org
15462 S:      Supported
15463 W:      http://www.onsemi.com
15464 F:      drivers/net/phy/ncn*
15465
15466 OP-TEE DRIVER
15467 M:      Jens Wiklander <jens.wiklander@linaro.org>
15468 L:      op-tee@lists.trustedfirmware.org
15469 S:      Maintained
15470 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15471 F:      drivers/tee/optee/
15472
15473 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15474 M:      Sumit Garg <sumit.garg@linaro.org>
15475 L:      op-tee@lists.trustedfirmware.org
15476 S:      Maintained
15477 F:      drivers/char/hw_random/optee-rng.c
15478
15479 OP-TEE RTC DRIVER
15480 M:      Clément Léger <clement.leger@bootlin.com>
15481 L:      linux-rtc@vger.kernel.org
15482 S:      Maintained
15483 F:      drivers/rtc/rtc-optee.c
15484
15485 OPA-VNIC DRIVER
15486 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15487 L:      linux-rdma@vger.kernel.org
15488 S:      Supported
15489 F:      drivers/infiniband/ulp/opa_vnic
15490
15491 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15492 M:      Rob Herring <robh+dt@kernel.org>
15493 M:      Frank Rowand <frowand.list@gmail.com>
15494 L:      devicetree@vger.kernel.org
15495 S:      Maintained
15496 C:      irc://irc.libera.chat/devicetree
15497 W:      http://www.devicetree.org/
15498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15499 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15500 F:      drivers/of/
15501 F:      include/linux/of*.h
15502 F:      scripts/dtc/
15503 K:      of_overlay_notifier_
15504 K:      of_overlay_fdt_apply
15505 K:      of_overlay_remove
15506
15507 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15508 M:      Rob Herring <robh+dt@kernel.org>
15509 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15510 L:      devicetree@vger.kernel.org
15511 S:      Maintained
15512 C:      irc://irc.libera.chat/devicetree
15513 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15515 F:      Documentation/devicetree/
15516 F:      arch/*/boot/dts/
15517 F:      include/dt-bindings/
15518
15519 OPENCOMPUTE PTP CLOCK DRIVER
15520 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15521 M:      Vadim Fedorenko <vadfed@fb.com>
15522 L:      netdev@vger.kernel.org
15523 S:      Maintained
15524 F:      drivers/ptp/ptp_ocp.c
15525
15526 OPENCORES I2C BUS DRIVER
15527 M:      Peter Korsgaard <peter@korsgaard.com>
15528 M:      Andrew Lunn <andrew@lunn.ch>
15529 L:      linux-i2c@vger.kernel.org
15530 S:      Maintained
15531 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15532 F:      Documentation/i2c/busses/i2c-ocores.rst
15533 F:      drivers/i2c/busses/i2c-ocores.c
15534 F:      include/linux/platform_data/i2c-ocores.h
15535
15536 OPENRISC ARCHITECTURE
15537 M:      Jonas Bonn <jonas@southpole.se>
15538 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15539 M:      Stafford Horne <shorne@gmail.com>
15540 L:      linux-openrisc@vger.kernel.org
15541 S:      Maintained
15542 W:      http://openrisc.io
15543 T:      git https://github.com/openrisc/linux.git
15544 F:      Documentation/devicetree/bindings/openrisc/
15545 F:      Documentation/openrisc/
15546 F:      arch/openrisc/
15547 F:      drivers/irqchip/irq-ompic.c
15548 F:      drivers/irqchip/irq-or1k-*
15549
15550 OPENVSWITCH
15551 M:      Pravin B Shelar <pshelar@ovn.org>
15552 L:      netdev@vger.kernel.org
15553 L:      dev@openvswitch.org
15554 S:      Maintained
15555 W:      http://openvswitch.org
15556 F:      include/uapi/linux/openvswitch.h
15557 F:      net/openvswitch/
15558 F:      tools/testing/selftests/net/openvswitch/
15559
15560 OPERATING PERFORMANCE POINTS (OPP)
15561 M:      Viresh Kumar <vireshk@kernel.org>
15562 M:      Nishanth Menon <nm@ti.com>
15563 M:      Stephen Boyd <sboyd@kernel.org>
15564 L:      linux-pm@vger.kernel.org
15565 S:      Maintained
15566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15567 F:      Documentation/devicetree/bindings/opp/
15568 F:      Documentation/power/opp.rst
15569 F:      drivers/opp/
15570 F:      include/linux/pm_opp.h
15571
15572 OPL4 DRIVER
15573 M:      Clemens Ladisch <clemens@ladisch.de>
15574 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15575 S:      Maintained
15576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15577 F:      sound/drivers/opl4/
15578
15579 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15580 M:      Mark Fasheh <mark@fasheh.com>
15581 M:      Joel Becker <jlbec@evilplan.org>
15582 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15583 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15584 S:      Supported
15585 W:      http://ocfs2.wiki.kernel.org
15586 F:      Documentation/filesystems/dlmfs.rst
15587 F:      Documentation/filesystems/ocfs2.rst
15588 F:      fs/ocfs2/
15589
15590 ORANGEFS FILESYSTEM
15591 M:      Mike Marshall <hubcap@omnibond.com>
15592 R:      Martin Brandenburg <martin@omnibond.com>
15593 L:      devel@lists.orangefs.org
15594 S:      Supported
15595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15596 F:      Documentation/filesystems/orangefs.rst
15597 F:      fs/orangefs/
15598
15599 ORINOCO DRIVER
15600 L:      linux-wireless@vger.kernel.org
15601 S:      Orphan
15602 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15603 W:      http://www.nongnu.org/orinoco/
15604 F:      drivers/net/wireless/intersil/orinoco/
15605
15606 OV2659 OMNIVISION SENSOR DRIVER
15607 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15608 L:      linux-media@vger.kernel.org
15609 S:      Maintained
15610 W:      https://linuxtv.org
15611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15612 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15613 F:      drivers/media/i2c/ov2659.c
15614 F:      include/media/i2c/ov2659.h
15615
15616 OVERLAY FILESYSTEM
15617 M:      Miklos Szeredi <miklos@szeredi.hu>
15618 L:      linux-unionfs@vger.kernel.org
15619 S:      Supported
15620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15621 F:      Documentation/filesystems/overlayfs.rst
15622 F:      fs/overlayfs/
15623
15624 P54 WIRELESS DRIVER
15625 M:      Christian Lamparter <chunkeey@googlemail.com>
15626 L:      linux-wireless@vger.kernel.org
15627 S:      Maintained
15628 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15629 F:      drivers/net/wireless/intersil/p54/
15630
15631 PACKET SOCKETS
15632 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15633 S:      Maintained
15634 F:      include/uapi/linux/if_packet.h
15635 F:      net/packet/af_packet.c
15636
15637 PACKING
15638 M:      Vladimir Oltean <olteanv@gmail.com>
15639 L:      netdev@vger.kernel.org
15640 S:      Supported
15641 F:      Documentation/core-api/packing.rst
15642 F:      include/linux/packing.h
15643 F:      lib/packing.c
15644
15645 PADATA PARALLEL EXECUTION MECHANISM
15646 M:      Steffen Klassert <steffen.klassert@secunet.com>
15647 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15648 L:      linux-crypto@vger.kernel.org
15649 L:      linux-kernel@vger.kernel.org
15650 S:      Maintained
15651 F:      Documentation/core-api/padata.rst
15652 F:      include/linux/padata.h
15653 F:      kernel/padata.c
15654
15655 PAGE CACHE
15656 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15657 L:      linux-fsdevel@vger.kernel.org
15658 S:      Supported
15659 T:      git git://git.infradead.org/users/willy/pagecache.git
15660 F:      Documentation/filesystems/locking.rst
15661 F:      Documentation/filesystems/vfs.rst
15662 F:      include/linux/pagemap.h
15663 F:      mm/filemap.c
15664 F:      mm/page-writeback.c
15665 F:      mm/readahead.c
15666 F:      mm/truncate.c
15667
15668 PAGE POOL
15669 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15670 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15671 L:      netdev@vger.kernel.org
15672 S:      Supported
15673 F:      Documentation/networking/page_pool.rst
15674 F:      include/net/page_pool.h
15675 F:      include/trace/events/page_pool.h
15676 F:      net/core/page_pool.c
15677
15678 PAGE TABLE CHECK
15679 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15680 M:      Andrew Morton <akpm@linux-foundation.org>
15681 L:      linux-mm@kvack.org
15682 S:      Maintained
15683 F:      Documentation/mm/page_table_check.rst
15684 F:      include/linux/page_table_check.h
15685 F:      mm/page_table_check.c
15686
15687 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15688 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15689 L:      platform-driver-x86@vger.kernel.org
15690 S:      Maintained
15691 F:      drivers/platform/x86/panasonic-laptop.c
15692
15693 PARALLAX PING IIO SENSOR DRIVER
15694 M:      Andreas Klinger <ak@it-klinger.de>
15695 L:      linux-iio@vger.kernel.org
15696 S:      Maintained
15697 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15698 F:      drivers/iio/proximity/ping.c
15699
15700 PARALLEL LCD/KEYPAD PANEL DRIVER
15701 M:      Willy Tarreau <willy@haproxy.com>
15702 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15703 S:      Odd Fixes
15704 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15705 F:      drivers/auxdisplay/panel.c
15706
15707 PARALLEL PORT SUBSYSTEM
15708 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15709 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15710 L:      linux-parport@lists.infradead.org (subscribers-only)
15711 S:      Maintained
15712 F:      Documentation/driver-api/parport*.rst
15713 F:      drivers/char/ppdev.c
15714 F:      drivers/parport/
15715 F:      include/linux/parport*.h
15716 F:      include/uapi/linux/ppdev.h
15717
15718 PARAVIRT_OPS INTERFACE
15719 M:      Juergen Gross <jgross@suse.com>
15720 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15721 R:      Alexey Makhalov <amakhalov@vmware.com>
15722 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15723 L:      virtualization@lists.linux-foundation.org
15724 L:      x86@kernel.org
15725 S:      Supported
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15727 F:      Documentation/virt/paravirt_ops.rst
15728 F:      arch/*/include/asm/paravirt*.h
15729 F:      arch/*/kernel/paravirt*
15730 F:      include/linux/hypervisor.h
15731
15732 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15733 M:      Tim Waugh <tim@cyberelk.net>
15734 L:      linux-parport@lists.infradead.org (subscribers-only)
15735 S:      Maintained
15736 F:      Documentation/admin-guide/blockdev/paride.rst
15737 F:      drivers/block/paride/
15738
15739 PARISC ARCHITECTURE
15740 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15741 M:      Helge Deller <deller@gmx.de>
15742 L:      linux-parisc@vger.kernel.org
15743 S:      Maintained
15744 W:      https://parisc.wiki.kernel.org
15745 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15748 F:      Documentation/parisc/
15749 F:      arch/parisc/
15750 F:      drivers/char/agp/parisc-agp.c
15751 F:      drivers/input/misc/hp_sdc_rtc.c
15752 F:      drivers/input/serio/gscps2.c
15753 F:      drivers/input/serio/hp_sdc*
15754 F:      drivers/parisc/
15755 F:      drivers/parport/parport_gsc.*
15756 F:      drivers/tty/serial/8250/8250_parisc.c
15757 F:      drivers/video/console/sti*
15758 F:      drivers/video/fbdev/sti*
15759 F:      drivers/video/logo/logo_parisc*
15760 F:      include/linux/hp_sdc.h
15761
15762 PARMAN
15763 M:      Jiri Pirko <jiri@nvidia.com>
15764 L:      netdev@vger.kernel.org
15765 S:      Supported
15766 F:      include/linux/parman.h
15767 F:      lib/parman.c
15768 F:      lib/test_parman.c
15769
15770 PC ENGINES APU BOARD DRIVER
15771 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15772 S:      Maintained
15773 F:      drivers/platform/x86/pcengines-apuv2.c
15774
15775 PC87360 HARDWARE MONITORING DRIVER
15776 M:      Jim Cromie <jim.cromie@gmail.com>
15777 L:      linux-hwmon@vger.kernel.org
15778 S:      Maintained
15779 F:      Documentation/hwmon/pc87360.rst
15780 F:      drivers/hwmon/pc87360.c
15781
15782 PC8736x GPIO DRIVER
15783 M:      Jim Cromie <jim.cromie@gmail.com>
15784 S:      Maintained
15785 F:      drivers/char/pc8736x_gpio.c
15786
15787 PC87427 HARDWARE MONITORING DRIVER
15788 M:      Jean Delvare <jdelvare@suse.com>
15789 L:      linux-hwmon@vger.kernel.org
15790 S:      Maintained
15791 F:      Documentation/hwmon/pc87427.rst
15792 F:      drivers/hwmon/pc87427.c
15793
15794 PCA9532 LED DRIVER
15795 M:      Riku Voipio <riku.voipio@iki.fi>
15796 S:      Maintained
15797 F:      drivers/leds/leds-pca9532.c
15798 F:      include/linux/leds-pca9532.h
15799
15800 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15801 M:      Guenter Roeck <linux@roeck-us.net>
15802 L:      linux-i2c@vger.kernel.org
15803 S:      Maintained
15804 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15805
15806 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15807 M:      Khalid Aziz <khalid@gonehiking.org>
15808 S:      Maintained
15809 F:      drivers/firmware/pcdp.*
15810
15811 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15812 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15813 M:      Pali Rohár <pali@kernel.org>
15814 L:      linux-pci@vger.kernel.org
15815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15816 S:      Maintained
15817 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15818 F:      drivers/pci/controller/pci-aardvark.c
15819
15820 PCI DRIVER FOR ALTERA PCIE IP
15821 M:      Joyce Ooi <joyce.ooi@intel.com>
15822 L:      linux-pci@vger.kernel.org
15823 S:      Supported
15824 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15825 F:      drivers/pci/controller/pcie-altera.c
15826
15827 PCI DRIVER FOR APPLIEDMICRO XGENE
15828 M:      Toan Le <toan@os.amperecomputing.com>
15829 L:      linux-pci@vger.kernel.org
15830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15831 S:      Maintained
15832 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15833 F:      drivers/pci/controller/pci-xgene.c
15834
15835 PCI DRIVER FOR ARM VERSATILE PLATFORM
15836 M:      Rob Herring <robh@kernel.org>
15837 L:      linux-pci@vger.kernel.org
15838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15839 S:      Maintained
15840 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15841 F:      drivers/pci/controller/pci-versatile.c
15842
15843 PCI DRIVER FOR ARMADA 8K
15844 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15845 L:      linux-pci@vger.kernel.org
15846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15847 S:      Maintained
15848 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15849 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15850
15851 PCI DRIVER FOR CADENCE PCIE IP
15852 M:      Tom Joseph <tjoseph@cadence.com>
15853 L:      linux-pci@vger.kernel.org
15854 S:      Maintained
15855 F:      Documentation/devicetree/bindings/pci/cdns,*
15856 F:      drivers/pci/controller/cadence/
15857
15858 PCI DRIVER FOR FREESCALE LAYERSCAPE
15859 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15860 M:      Mingkai Hu <mingkai.hu@nxp.com>
15861 M:      Roy Zang <roy.zang@nxp.com>
15862 L:      linuxppc-dev@lists.ozlabs.org
15863 L:      linux-pci@vger.kernel.org
15864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15865 S:      Maintained
15866 F:      drivers/pci/controller/dwc/*layerscape*
15867
15868 PCI DRIVER FOR GENERIC OF HOSTS
15869 M:      Will Deacon <will@kernel.org>
15870 L:      linux-pci@vger.kernel.org
15871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15872 S:      Maintained
15873 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15874 F:      drivers/pci/controller/pci-host-common.c
15875 F:      drivers/pci/controller/pci-host-generic.c
15876
15877 PCI DRIVER FOR IMX6
15878 M:      Richard Zhu <hongxing.zhu@nxp.com>
15879 M:      Lucas Stach <l.stach@pengutronix.de>
15880 L:      linux-pci@vger.kernel.org
15881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15882 S:      Maintained
15883 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15884 F:      drivers/pci/controller/dwc/*imx6*
15885
15886 PCI DRIVER FOR FU740
15887 M:      Paul Walmsley <paul.walmsley@sifive.com>
15888 M:      Greentime Hu <greentime.hu@sifive.com>
15889 L:      linux-pci@vger.kernel.org
15890 S:      Maintained
15891 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15892 F:      drivers/pci/controller/dwc/pcie-fu740.c
15893
15894 PCI DRIVER FOR INTEL IXP4XX
15895 M:      Linus Walleij <linus.walleij@linaro.org>
15896 S:      Maintained
15897 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15898 F:      drivers/pci/controller/pci-ixp4xx.c
15899
15900 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15901 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15902 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15903 L:      linux-pci@vger.kernel.org
15904 S:      Supported
15905 F:      drivers/pci/controller/vmd.c
15906
15907 PCI DRIVER FOR MICROSEMI SWITCHTEC
15908 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15909 M:      Logan Gunthorpe <logang@deltatee.com>
15910 L:      linux-pci@vger.kernel.org
15911 S:      Maintained
15912 F:      Documentation/ABI/testing/sysfs-class-switchtec
15913 F:      Documentation/driver-api/switchtec.rst
15914 F:      drivers/ntb/hw/mscc/
15915 F:      drivers/pci/switch/switchtec*
15916 F:      include/linux/switchtec.h
15917 F:      include/uapi/linux/switchtec_ioctl.h
15918
15919 PCI DRIVER FOR MOBIVEIL PCIE IP
15920 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15921 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15922 L:      linux-pci@vger.kernel.org
15923 S:      Supported
15924 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15925 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15926
15927 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15928 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15929 M:      Pali Rohár <pali@kernel.org>
15930 L:      linux-pci@vger.kernel.org
15931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15932 S:      Maintained
15933 F:      drivers/pci/controller/*mvebu*
15934
15935 PCI DRIVER FOR NVIDIA TEGRA
15936 M:      Thierry Reding <thierry.reding@gmail.com>
15937 L:      linux-tegra@vger.kernel.org
15938 L:      linux-pci@vger.kernel.org
15939 S:      Supported
15940 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15941 F:      drivers/pci/controller/pci-tegra.c
15942
15943 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15944 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15945 L:      linux-pci@vger.kernel.org
15946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15947 S:      Maintained
15948 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15949 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15950
15951 PCI DRIVER FOR RENESAS R-CAR
15952 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15953 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15954 L:      linux-pci@vger.kernel.org
15955 L:      linux-renesas-soc@vger.kernel.org
15956 S:      Maintained
15957 F:      Documentation/devicetree/bindings/pci/*rcar*
15958 F:      drivers/pci/controller/*rcar*
15959
15960 PCI DRIVER FOR SAMSUNG EXYNOS
15961 M:      Jingoo Han <jingoohan1@gmail.com>
15962 L:      linux-pci@vger.kernel.org
15963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15964 L:      linux-samsung-soc@vger.kernel.org
15965 S:      Maintained
15966 F:      drivers/pci/controller/dwc/pci-exynos.c
15967
15968 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15969 M:      Jingoo Han <jingoohan1@gmail.com>
15970 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15971 L:      linux-pci@vger.kernel.org
15972 S:      Maintained
15973 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15974 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15975 F:      drivers/pci/controller/dwc/*designware*
15976
15977 PCI DRIVER FOR TI DRA7XX/J721E
15978 M:      Vignesh Raghavendra <vigneshr@ti.com>
15979 L:      linux-omap@vger.kernel.org
15980 L:      linux-pci@vger.kernel.org
15981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15982 S:      Supported
15983 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15984 F:      drivers/pci/controller/cadence/pci-j721e.c
15985 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15986
15987 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15988 M:      Linus Walleij <linus.walleij@linaro.org>
15989 L:      linux-pci@vger.kernel.org
15990 S:      Maintained
15991 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15992 F:      drivers/pci/controller/pci-v3-semi.c
15993
15994 PCI ENDPOINT SUBSYSTEM
15995 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15996 M:      Krzysztof Wilczyński <kw@linux.com>
15997 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15998 R:      Kishon Vijay Abraham I <kishon@kernel.org>
15999 L:      linux-pci@vger.kernel.org
16000 S:      Supported
16001 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16002 B:      https://bugzilla.kernel.org
16003 C:      irc://irc.oftc.net/linux-pci
16004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16005 F:      Documentation/PCI/endpoint/*
16006 F:      Documentation/misc-devices/pci-endpoint-test.rst
16007 F:      drivers/misc/pci_endpoint_test.c
16008 F:      drivers/pci/endpoint/
16009 F:      tools/pci/
16010
16011 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16012 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16013 R:      Oliver O'Halloran <oohall@gmail.com>
16014 L:      linuxppc-dev@lists.ozlabs.org
16015 S:      Supported
16016 F:      Documentation/PCI/pci-error-recovery.rst
16017 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16018 F:      arch/powerpc/include/*/eeh*.h
16019 F:      arch/powerpc/kernel/eeh*.c
16020 F:      arch/powerpc/platforms/*/eeh*.c
16021 F:      drivers/pci/pcie/aer.c
16022 F:      drivers/pci/pcie/dpc.c
16023 F:      drivers/pci/pcie/err.c
16024
16025 PCI ERROR RECOVERY
16026 M:      Linas Vepstas <linasvepstas@gmail.com>
16027 L:      linux-pci@vger.kernel.org
16028 S:      Supported
16029 F:      Documentation/PCI/pci-error-recovery.rst
16030
16031 PCI PEER-TO-PEER DMA (P2PDMA)
16032 M:      Bjorn Helgaas <bhelgaas@google.com>
16033 M:      Logan Gunthorpe <logang@deltatee.com>
16034 L:      linux-pci@vger.kernel.org
16035 S:      Supported
16036 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16037 B:      https://bugzilla.kernel.org
16038 C:      irc://irc.oftc.net/linux-pci
16039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16040 F:      Documentation/driver-api/pci/p2pdma.rst
16041 F:      drivers/pci/p2pdma.c
16042 F:      include/linux/pci-p2pdma.h
16043
16044 PCI MSI DRIVER FOR ALTERA MSI IP
16045 M:      Joyce Ooi <joyce.ooi@intel.com>
16046 L:      linux-pci@vger.kernel.org
16047 S:      Supported
16048 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16049 F:      drivers/pci/controller/pcie-altera-msi.c
16050
16051 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16052 M:      Toan Le <toan@os.amperecomputing.com>
16053 L:      linux-pci@vger.kernel.org
16054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16055 S:      Maintained
16056 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16057 F:      drivers/pci/controller/pci-xgene-msi.c
16058
16059 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16060 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16061 M:      Krzysztof Wilczyński <kw@linux.com>
16062 R:      Rob Herring <robh@kernel.org>
16063 L:      linux-pci@vger.kernel.org
16064 S:      Supported
16065 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16066 B:      https://bugzilla.kernel.org
16067 C:      irc://irc.oftc.net/linux-pci
16068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16069 F:      Documentation/devicetree/bindings/pci/
16070 F:      drivers/pci/controller/
16071 F:      drivers/pci/pci-bridge-emul.c
16072 F:      drivers/pci/pci-bridge-emul.h
16073
16074 PCI SUBSYSTEM
16075 M:      Bjorn Helgaas <bhelgaas@google.com>
16076 L:      linux-pci@vger.kernel.org
16077 S:      Supported
16078 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16079 B:      https://bugzilla.kernel.org
16080 C:      irc://irc.oftc.net/linux-pci
16081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16082 F:      Documentation/PCI/
16083 F:      Documentation/devicetree/bindings/pci/
16084 F:      arch/x86/kernel/early-quirks.c
16085 F:      arch/x86/kernel/quirks.c
16086 F:      arch/x86/pci/
16087 F:      drivers/acpi/pci*
16088 F:      drivers/pci/
16089 F:      include/asm-generic/pci*
16090 F:      include/linux/of_pci.h
16091 F:      include/linux/pci*
16092 F:      include/uapi/linux/pci*
16093 F:      lib/pci*
16094
16095 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16096 M:      Jonathan Chocron <jonnyc@amazon.com>
16097 L:      linux-pci@vger.kernel.org
16098 S:      Maintained
16099 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16100 F:      drivers/pci/controller/dwc/pcie-al.c
16101
16102 PCIE DRIVER FOR AMLOGIC MESON
16103 M:      Yue Wang <yue.wang@Amlogic.com>
16104 L:      linux-pci@vger.kernel.org
16105 L:      linux-amlogic@lists.infradead.org
16106 S:      Maintained
16107 F:      drivers/pci/controller/dwc/pci-meson.c
16108
16109 PCIE DRIVER FOR AXIS ARTPEC
16110 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16111 L:      linux-arm-kernel@axis.com
16112 L:      linux-pci@vger.kernel.org
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16115 F:      drivers/pci/controller/dwc/*artpec*
16116
16117 PCIE DRIVER FOR CAVIUM THUNDERX
16118 M:      Robert Richter <rric@kernel.org>
16119 L:      linux-pci@vger.kernel.org
16120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16121 S:      Odd Fixes
16122 F:      drivers/pci/controller/pci-thunder-*
16123
16124 PCIE DRIVER FOR HISILICON
16125 M:      Zhou Wang <wangzhou1@hisilicon.com>
16126 L:      linux-pci@vger.kernel.org
16127 S:      Maintained
16128 F:      drivers/pci/controller/dwc/pcie-hisi.c
16129
16130 PCIE DRIVER FOR HISILICON KIRIN
16131 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16132 M:      Binghui Wang <wangbinghui@hisilicon.com>
16133 L:      linux-pci@vger.kernel.org
16134 S:      Maintained
16135 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16136 F:      drivers/pci/controller/dwc/pcie-kirin.c
16137
16138 PCIE DRIVER FOR HISILICON STB
16139 M:      Shawn Guo <shawn.guo@linaro.org>
16140 L:      linux-pci@vger.kernel.org
16141 S:      Maintained
16142 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16143 F:      drivers/pci/controller/dwc/pcie-histb.c
16144
16145 PCIE DRIVER FOR INTEL KEEM BAY
16146 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16147 L:      linux-pci@vger.kernel.org
16148 S:      Supported
16149 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16150 F:      drivers/pci/controller/dwc/pcie-keembay.c
16151
16152 PCIE DRIVER FOR INTEL LGM GW SOC
16153 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16154 L:      linux-pci@vger.kernel.org
16155 S:      Maintained
16156 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16157 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16158
16159 PCIE DRIVER FOR MEDIATEK
16160 M:      Ryder Lee <ryder.lee@mediatek.com>
16161 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16162 L:      linux-pci@vger.kernel.org
16163 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16164 S:      Supported
16165 F:      Documentation/devicetree/bindings/pci/mediatek*
16166 F:      drivers/pci/controller/*mediatek*
16167
16168 PCIE DRIVER FOR MICROCHIP
16169 M:      Daire McNamara <daire.mcnamara@microchip.com>
16170 L:      linux-pci@vger.kernel.org
16171 S:      Supported
16172 F:      Documentation/devicetree/bindings/pci/microchip*
16173 F:      drivers/pci/controller/*microchip*
16174
16175 PCIE DRIVER FOR QUALCOMM MSM
16176 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16177 L:      linux-pci@vger.kernel.org
16178 L:      linux-arm-msm@vger.kernel.org
16179 S:      Maintained
16180 F:      drivers/pci/controller/dwc/pcie-qcom.c
16181
16182 PCIE ENDPOINT DRIVER FOR QUALCOMM
16183 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16184 L:      linux-pci@vger.kernel.org
16185 L:      linux-arm-msm@vger.kernel.org
16186 S:      Maintained
16187 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16188 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16189
16190 PCIE DRIVER FOR ROCKCHIP
16191 M:      Shawn Lin <shawn.lin@rock-chips.com>
16192 L:      linux-pci@vger.kernel.org
16193 L:      linux-rockchip@lists.infradead.org
16194 S:      Maintained
16195 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
16196 F:      drivers/pci/controller/pcie-rockchip*
16197
16198 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16199 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16200 L:      linux-pci@vger.kernel.org
16201 S:      Maintained
16202 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16203 F:      drivers/pci/controller/dwc/pcie-uniphier*
16204
16205 PCIE DRIVER FOR ST SPEAR13XX
16206 M:      Pratyush Anand <pratyush.anand@gmail.com>
16207 L:      linux-pci@vger.kernel.org
16208 S:      Maintained
16209 F:      drivers/pci/controller/dwc/*spear*
16210
16211 PCI DRIVER FOR XILINX VERSAL CPM
16212 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16213 M:      Michal Simek <michal.simek@amd.com>
16214 L:      linux-pci@vger.kernel.org
16215 S:      Maintained
16216 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16217 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16218
16219 PCMCIA SUBSYSTEM
16220 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16221 S:      Odd Fixes
16222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16223 F:      Documentation/pcmcia/
16224 F:      drivers/pcmcia/
16225 F:      include/pcmcia/
16226 F:      tools/pcmcia/
16227
16228 PCNET32 NETWORK DRIVER
16229 M:      Don Fry <pcnet32@frontier.com>
16230 L:      netdev@vger.kernel.org
16231 S:      Maintained
16232 F:      drivers/net/ethernet/amd/pcnet32.c
16233
16234 PCRYPT PARALLEL CRYPTO ENGINE
16235 M:      Steffen Klassert <steffen.klassert@secunet.com>
16236 L:      linux-crypto@vger.kernel.org
16237 S:      Maintained
16238 F:      crypto/pcrypt.c
16239 F:      include/crypto/pcrypt.h
16240
16241 PEAQ WMI HOTKEYS DRIVER
16242 M:      Hans de Goede <hdegoede@redhat.com>
16243 L:      platform-driver-x86@vger.kernel.org
16244 S:      Maintained
16245 F:      drivers/platform/x86/peaq-wmi.c
16246
16247 PECI HARDWARE MONITORING DRIVERS
16248 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16249 L:      linux-hwmon@vger.kernel.org
16250 S:      Supported
16251 F:      Documentation/hwmon/peci-cputemp.rst
16252 F:      Documentation/hwmon/peci-dimmtemp.rst
16253 F:      drivers/hwmon/peci/
16254
16255 PECI SUBSYSTEM
16256 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16257 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16258 S:      Supported
16259 F:      Documentation/devicetree/bindings/peci/
16260 F:      Documentation/peci/
16261 F:      drivers/peci/
16262 F:      include/linux/peci-cpu.h
16263 F:      include/linux/peci.h
16264
16265 PENSANDO ETHERNET DRIVERS
16266 M:      Shannon Nelson <shannon.nelson@amd.com>
16267 M:      Brett Creeley <brett.creeley@amd.com>
16268 M:      drivers@pensando.io
16269 L:      netdev@vger.kernel.org
16270 S:      Supported
16271 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16272 F:      drivers/net/ethernet/pensando/
16273
16274 PER-CPU MEMORY ALLOCATOR
16275 M:      Dennis Zhou <dennis@kernel.org>
16276 M:      Tejun Heo <tj@kernel.org>
16277 M:      Christoph Lameter <cl@linux.com>
16278 L:      linux-mm@kvack.org
16279 S:      Maintained
16280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16281 F:      arch/*/include/asm/percpu.h
16282 F:      include/linux/percpu*.h
16283 F:      lib/percpu*.c
16284 F:      mm/percpu*.c
16285
16286 PER-TASK DELAY ACCOUNTING
16287 M:      Balbir Singh <bsingharora@gmail.com>
16288 S:      Maintained
16289 F:      include/linux/delayacct.h
16290 F:      kernel/delayacct.c
16291
16292 PERFORMANCE EVENTS SUBSYSTEM
16293 M:      Peter Zijlstra <peterz@infradead.org>
16294 M:      Ingo Molnar <mingo@redhat.com>
16295 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16296 R:      Mark Rutland <mark.rutland@arm.com>
16297 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16298 R:      Jiri Olsa <jolsa@kernel.org>
16299 R:      Namhyung Kim <namhyung@kernel.org>
16300 L:      linux-perf-users@vger.kernel.org
16301 L:      linux-kernel@vger.kernel.org
16302 S:      Supported
16303 W:      https://perf.wiki.kernel.org/
16304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16305 F:      arch/*/events/*
16306 F:      arch/*/events/*/*
16307 F:      arch/*/include/asm/perf_event.h
16308 F:      arch/*/kernel/*/*/perf_event*.c
16309 F:      arch/*/kernel/*/perf_event*.c
16310 F:      arch/*/kernel/perf_callchain.c
16311 F:      arch/*/kernel/perf_event*.c
16312 F:      include/linux/perf_event.h
16313 F:      include/uapi/linux/perf_event.h
16314 F:      kernel/events/*
16315 F:      tools/lib/perf/
16316 F:      tools/perf/
16317
16318 PERFORMANCE EVENTS TOOLING ARM64
16319 R:      John Garry <john.g.garry@oracle.com>
16320 R:      Will Deacon <will@kernel.org>
16321 R:      James Clark <james.clark@arm.com>
16322 R:      Mike Leach <mike.leach@linaro.org>
16323 R:      Leo Yan <leo.yan@linaro.org>
16324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16325 S:      Supported
16326 F:      tools/build/feature/test-libopencsd.c
16327 F:      tools/perf/arch/arm*/
16328 F:      tools/perf/pmu-events/arch/arm64/
16329 F:      tools/perf/util/arm-spe*
16330 F:      tools/perf/util/cs-etm*
16331
16332 PERSONALITY HANDLING
16333 M:      Christoph Hellwig <hch@infradead.org>
16334 L:      linux-abi-devel@lists.sourceforge.net
16335 S:      Maintained
16336 F:      include/linux/personality.h
16337 F:      include/uapi/linux/personality.h
16338
16339 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16340 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16341 L:      linux-input@vger.kernel.org
16342 S:      Maintained
16343 F:      Documentation/input/devices/pxrc.rst
16344 F:      drivers/input/joystick/pxrc.c
16345
16346 PHONET PROTOCOL
16347 M:      Remi Denis-Courmont <courmisch@gmail.com>
16348 S:      Supported
16349 F:      Documentation/networking/phonet.rst
16350 F:      include/linux/phonet.h
16351 F:      include/net/phonet/
16352 F:      include/uapi/linux/phonet.h
16353 F:      net/phonet/
16354
16355 PHRAM MTD DRIVER
16356 M:      Joern Engel <joern@lazybastard.org>
16357 L:      linux-mtd@lists.infradead.org
16358 S:      Maintained
16359 F:      drivers/mtd/devices/phram.c
16360
16361 PICOLCD HID DRIVER
16362 M:      Bruno Prémont <bonbons@linux-vserver.org>
16363 L:      linux-input@vger.kernel.org
16364 S:      Maintained
16365 F:      drivers/hid/hid-picolcd*
16366
16367 PIDFD API
16368 M:      Christian Brauner <christian@brauner.io>
16369 L:      linux-kernel@vger.kernel.org
16370 S:      Maintained
16371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16372 F:      samples/pidfd/
16373 F:      tools/testing/selftests/clone3/
16374 F:      tools/testing/selftests/pid_namespace/
16375 F:      tools/testing/selftests/pidfd/
16376 K:      (?i)pidfd
16377 K:      (?i)clone3
16378 K:      \b(clone_args|kernel_clone_args)\b
16379
16380 PIN CONTROL SUBSYSTEM
16381 M:      Linus Walleij <linus.walleij@linaro.org>
16382 L:      linux-gpio@vger.kernel.org
16383 S:      Maintained
16384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16385 F:      Documentation/devicetree/bindings/pinctrl/
16386 F:      Documentation/driver-api/pin-control.rst
16387 F:      drivers/pinctrl/
16388 F:      include/dt-bindings/pinctrl/
16389 F:      include/linux/pinctrl/
16390
16391 PIN CONTROLLER - AMD
16392 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16393 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16394 S:      Maintained
16395 F:      drivers/pinctrl/pinctrl-amd.c
16396
16397 PIN CONTROLLER - FREESCALE
16398 M:      Dong Aisheng <aisheng.dong@nxp.com>
16399 M:      Fabio Estevam <festevam@gmail.com>
16400 M:      Shawn Guo <shawnguo@kernel.org>
16401 M:      Jacky Bai <ping.bai@nxp.com>
16402 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16403 L:      linux-gpio@vger.kernel.org
16404 S:      Maintained
16405 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16406 F:      drivers/pinctrl/freescale/
16407
16408 PIN CONTROLLER - INTEL
16409 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16410 M:      Andy Shevchenko <andy@kernel.org>
16411 S:      Supported
16412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16413 F:      drivers/pinctrl/intel/
16414
16415 PIN CONTROLLER - KEEMBAY
16416 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16417 S:      Supported
16418 F:      drivers/pinctrl/pinctrl-keembay*
16419
16420 PIN CONTROLLER - MEDIATEK
16421 M:      Sean Wang <sean.wang@kernel.org>
16422 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16423 S:      Maintained
16424 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16425 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16426 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16427 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16428 F:      drivers/pinctrl/mediatek/
16429
16430 PIN CONTROLLER - MICROCHIP AT91
16431 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16433 L:      linux-gpio@vger.kernel.org
16434 S:      Supported
16435 F:      drivers/gpio/gpio-sama5d2-piobu.c
16436 F:      drivers/pinctrl/pinctrl-at91*
16437
16438 PIN CONTROLLER - QUALCOMM
16439 M:      Bjorn Andersson <andersson@kernel.org>
16440 L:      linux-arm-msm@vger.kernel.org
16441 S:      Maintained
16442 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16443 F:      drivers/pinctrl/qcom/
16444
16445 PIN CONTROLLER - RENESAS
16446 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16447 L:      linux-renesas-soc@vger.kernel.org
16448 S:      Supported
16449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16450 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16451 F:      drivers/pinctrl/renesas/
16452
16453 PIN CONTROLLER - SAMSUNG
16454 M:      Tomasz Figa <tomasz.figa@gmail.com>
16455 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16456 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16457 R:      Alim Akhtar <alim.akhtar@samsung.com>
16458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16459 L:      linux-samsung-soc@vger.kernel.org
16460 S:      Maintained
16461 C:      irc://irc.libera.chat/linux-exynos
16462 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16463 B:      mailto:linux-samsung-soc@vger.kernel.org
16464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16465 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16466 F:      drivers/pinctrl/samsung/
16467 F:      include/dt-bindings/pinctrl/samsung.h
16468
16469 PIN CONTROLLER - SINGLE
16470 M:      Tony Lindgren <tony@atomide.com>
16471 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16473 L:      linux-omap@vger.kernel.org
16474 S:      Maintained
16475 F:      drivers/pinctrl/pinctrl-single.c
16476
16477 PIN CONTROLLER - THUNDERBAY
16478 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16479 S:      Supported
16480 F:      drivers/pinctrl/pinctrl-thunderbay.c
16481
16482 PIN CONTROLLER - SUNPLUS / TIBBO
16483 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16484 M:      Wells Lu <wellslutw@gmail.com>
16485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16486 S:      Maintained
16487 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16488 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16489 F:      drivers/pinctrl/sunplus/
16490 F:      include/dt-bindings/pinctrl/sppctl*.h
16491
16492 PINE64 PINEPHONE KEYBOARD DRIVER
16493 M:      Samuel Holland <samuel@sholland.org>
16494 S:      Supported
16495 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16496 F:      drivers/input/keyboard/pinephone-keyboard.c
16497
16498 PKTCDVD DRIVER
16499 M:      linux-block@vger.kernel.org
16500 S:      Orphan
16501 F:      drivers/block/pktcdvd.c
16502 F:      include/linux/pktcdvd.h
16503 F:      include/uapi/linux/pktcdvd.h
16504
16505 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16506 M:      Tomasz Duszynski <tduszyns@gmail.com>
16507 S:      Maintained
16508 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16509 F:      drivers/iio/chemical/pms7003.c
16510
16511 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16512 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16513 L:      netdev@vger.kernel.org
16514 S:      Maintained
16515 F:      drivers/net/phy/mdio-open-alliance.h
16516 F:      net/ethtool/plca.c
16517
16518 PLDMFW LIBRARY
16519 M:      Jacob Keller <jacob.e.keller@intel.com>
16520 S:      Maintained
16521 F:      Documentation/driver-api/pldmfw/
16522 F:      include/linux/pldmfw.h
16523 F:      lib/pldmfw/
16524
16525 PLX DMA DRIVER
16526 M:      Logan Gunthorpe <logang@deltatee.com>
16527 S:      Maintained
16528 F:      drivers/dma/plx_dma.c
16529
16530 PM6764TR DRIVER
16531 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16532 L:      linux-hwmon@vger.kernel.org
16533 S:      Maintained
16534 F:      Documentation/hwmon/pm6764tr.rst
16535 F:      drivers/hwmon/pmbus/pm6764tr.c
16536
16537 PM-GRAPH UTILITY
16538 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16539 L:      linux-pm@vger.kernel.org
16540 S:      Supported
16541 W:      https://01.org/pm-graph
16542 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16543 T:      git git://github.com/intel/pm-graph
16544 F:      tools/power/pm-graph
16545
16546 PMBUS HARDWARE MONITORING DRIVERS
16547 M:      Guenter Roeck <linux@roeck-us.net>
16548 L:      linux-hwmon@vger.kernel.org
16549 S:      Maintained
16550 W:      http://hwmon.wiki.kernel.org/
16551 W:      http://www.roeck-us.net/linux/drivers/
16552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16553 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16554 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16555 F:      Documentation/hwmon/adm1275.rst
16556 F:      Documentation/hwmon/ibm-cffps.rst
16557 F:      Documentation/hwmon/ir35221.rst
16558 F:      Documentation/hwmon/lm25066.rst
16559 F:      Documentation/hwmon/ltc2978.rst
16560 F:      Documentation/hwmon/ltc3815.rst
16561 F:      Documentation/hwmon/max16064.rst
16562 F:      Documentation/hwmon/max20751.rst
16563 F:      Documentation/hwmon/max31785.rst
16564 F:      Documentation/hwmon/max34440.rst
16565 F:      Documentation/hwmon/max8688.rst
16566 F:      Documentation/hwmon/pmbus-core.rst
16567 F:      Documentation/hwmon/pmbus.rst
16568 F:      Documentation/hwmon/tps40422.rst
16569 F:      Documentation/hwmon/ucd9000.rst
16570 F:      Documentation/hwmon/ucd9200.rst
16571 F:      Documentation/hwmon/zl6100.rst
16572 F:      drivers/hwmon/pmbus/
16573 F:      include/linux/pmbus.h
16574
16575 PMC SIERRA MaxRAID DRIVER
16576 L:      linux-scsi@vger.kernel.org
16577 S:      Orphan
16578 W:      http://www.pmc-sierra.com/
16579 F:      drivers/scsi/pmcraid.*
16580
16581 PMC SIERRA PM8001 DRIVER
16582 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16583 L:      linux-scsi@vger.kernel.org
16584 S:      Supported
16585 F:      drivers/scsi/pm8001/
16586
16587 PNI RM3100 IIO DRIVER
16588 M:      Song Qiang <songqiang1304521@gmail.com>
16589 L:      linux-iio@vger.kernel.org
16590 S:      Maintained
16591 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16592 F:      drivers/iio/magnetometer/rm3100*
16593
16594 PNP SUPPORT
16595 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16596 L:      linux-acpi@vger.kernel.org
16597 S:      Maintained
16598 F:      drivers/pnp/
16599 F:      include/linux/pnp.h
16600
16601 POSIX CLOCKS and TIMERS
16602 M:      Thomas Gleixner <tglx@linutronix.de>
16603 L:      linux-kernel@vger.kernel.org
16604 S:      Maintained
16605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16606 F:      fs/timerfd.c
16607 F:      include/linux/time_namespace.h
16608 F:      include/linux/timer*
16609 F:      kernel/time/*timer*
16610 F:      kernel/time/namespace.c
16611
16612 POWER MANAGEMENT CORE
16613 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16614 L:      linux-pm@vger.kernel.org
16615 S:      Supported
16616 B:      https://bugzilla.kernel.org
16617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16618 F:      drivers/base/power/
16619 F:      drivers/powercap/
16620 F:      include/linux/intel_rapl.h
16621 F:      include/linux/pm.h
16622 F:      include/linux/pm_*
16623 F:      include/linux/powercap.h
16624 F:      kernel/configs/nopm.config
16625
16626 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16627 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16628 L:      linux-pm@vger.kernel.org
16629 S:      Supported
16630 B:      https://bugzilla.kernel.org
16631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16632 F:      drivers/powercap/dtpm*
16633 F:      include/linux/dtpm.h
16634
16635 POWER STATE COORDINATION INTERFACE (PSCI)
16636 M:      Mark Rutland <mark.rutland@arm.com>
16637 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16639 S:      Maintained
16640 F:      drivers/firmware/psci/
16641 F:      include/linux/psci.h
16642 F:      include/uapi/linux/psci.h
16643
16644 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16645 M:      Sebastian Reichel <sre@kernel.org>
16646 L:      linux-pm@vger.kernel.org
16647 S:      Maintained
16648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16649 F:      Documentation/ABI/testing/sysfs-class-power
16650 F:      Documentation/devicetree/bindings/power/supply/
16651 F:      drivers/power/supply/
16652 F:      include/linux/power/
16653 F:      include/linux/power_supply.h
16654
16655 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16656 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16657 L:      linuxppc-dev@lists.ozlabs.org
16658 S:      Maintained
16659 F:      drivers/char/powernv-op-panel.c
16660
16661 PPP OVER ATM (RFC 2364)
16662 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16663 S:      Maintained
16664 F:      include/uapi/linux/atmppp.h
16665 F:      net/atm/pppoatm.c
16666
16667 PPP OVER ETHERNET
16668 M:      Michal Ostrowski <mostrows@earthlink.net>
16669 S:      Maintained
16670 F:      drivers/net/ppp/pppoe.c
16671 F:      drivers/net/ppp/pppox.c
16672
16673 PPP OVER L2TP
16674 M:      James Chapman <jchapman@katalix.com>
16675 S:      Maintained
16676 F:      include/linux/if_pppol2tp.h
16677 F:      include/uapi/linux/if_pppol2tp.h
16678 F:      net/l2tp/l2tp_ppp.c
16679
16680 PPP PROTOCOL DRIVERS AND COMPRESSORS
16681 M:      Paul Mackerras <paulus@samba.org>
16682 L:      linux-ppp@vger.kernel.org
16683 S:      Maintained
16684 F:      drivers/net/ppp/ppp_*
16685
16686 PPS SUPPORT
16687 M:      Rodolfo Giometti <giometti@enneenne.com>
16688 L:      linuxpps@ml.enneenne.com (subscribers-only)
16689 S:      Maintained
16690 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16691 F:      Documentation/ABI/testing/sysfs-pps
16692 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16693 F:      Documentation/driver-api/pps.rst
16694 F:      drivers/pps/
16695 F:      include/linux/pps*.h
16696 F:      include/uapi/linux/pps.h
16697
16698 PPTP DRIVER
16699 M:      Dmitry Kozlov <xeb@mail.ru>
16700 L:      netdev@vger.kernel.org
16701 S:      Maintained
16702 W:      http://sourceforge.net/projects/accel-pptp
16703 F:      drivers/net/ppp/pptp.c
16704
16705 PRESSURE STALL INFORMATION (PSI)
16706 M:      Johannes Weiner <hannes@cmpxchg.org>
16707 M:      Suren Baghdasaryan <surenb@google.com>
16708 S:      Maintained
16709 F:      include/linux/psi*
16710 F:      kernel/sched/psi.c
16711
16712 PRINTK
16713 M:      Petr Mladek <pmladek@suse.com>
16714 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16715 R:      Steven Rostedt <rostedt@goodmis.org>
16716 R:      John Ogness <john.ogness@linutronix.de>
16717 S:      Maintained
16718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16719 F:      include/linux/printk.h
16720 F:      kernel/printk/
16721
16722 PRINTK INDEXING
16723 R:      Chris Down <chris@chrisdown.name>
16724 S:      Maintained
16725 F:      Documentation/core-api/printk-index.rst
16726 F:      kernel/printk/index.c
16727 K:      printk_index
16728
16729 PROC FILESYSTEM
16730 L:      linux-kernel@vger.kernel.org
16731 L:      linux-fsdevel@vger.kernel.org
16732 S:      Maintained
16733 F:      Documentation/filesystems/proc.rst
16734 F:      fs/proc/
16735 F:      include/linux/proc_fs.h
16736 F:      tools/testing/selftests/proc/
16737
16738 PROC SYSCTL
16739 M:      Luis Chamberlain <mcgrof@kernel.org>
16740 M:      Kees Cook <keescook@chromium.org>
16741 M:      Iurii Zaikin <yzaikin@google.com>
16742 L:      linux-kernel@vger.kernel.org
16743 L:      linux-fsdevel@vger.kernel.org
16744 S:      Maintained
16745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16746 F:      fs/proc/proc_sysctl.c
16747 F:      include/linux/sysctl.h
16748 F:      kernel/sysctl-test.c
16749 F:      kernel/sysctl.c
16750 F:      tools/testing/selftests/sysctl/
16751
16752 PS3 NETWORK SUPPORT
16753 M:      Geoff Levand <geoff@infradead.org>
16754 L:      netdev@vger.kernel.org
16755 L:      linuxppc-dev@lists.ozlabs.org
16756 S:      Maintained
16757 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16758
16759 PS3 PLATFORM SUPPORT
16760 M:      Geoff Levand <geoff@infradead.org>
16761 L:      linuxppc-dev@lists.ozlabs.org
16762 S:      Maintained
16763 F:      arch/powerpc/boot/ps3*
16764 F:      arch/powerpc/include/asm/lv1call.h
16765 F:      arch/powerpc/include/asm/ps3*.h
16766 F:      arch/powerpc/platforms/ps3/
16767 F:      drivers/*/ps3*
16768 F:      drivers/ps3/
16769 F:      drivers/rtc/rtc-ps3.c
16770 F:      drivers/usb/host/*ps3.c
16771 F:      sound/ppc/snd_ps3*
16772
16773 PS3VRAM DRIVER
16774 M:      Jim Paris <jim@jtan.com>
16775 M:      Geoff Levand <geoff@infradead.org>
16776 L:      linuxppc-dev@lists.ozlabs.org
16777 S:      Maintained
16778 F:      drivers/block/ps3vram.c
16779
16780 PSAMPLE PACKET SAMPLING SUPPORT
16781 M:      Yotam Gigi <yotam.gi@gmail.com>
16782 S:      Maintained
16783 F:      include/net/psample.h
16784 F:      include/uapi/linux/psample.h
16785 F:      net/psample
16786
16787 PSTORE FILESYSTEM
16788 M:      Kees Cook <keescook@chromium.org>
16789 R:      Tony Luck <tony.luck@intel.com>
16790 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16791 L:      linux-hardening@vger.kernel.org
16792 S:      Supported
16793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16794 F:      Documentation/admin-guide/ramoops.rst
16795 F:      Documentation/admin-guide/pstore-blk.rst
16796 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16797 F:      drivers/acpi/apei/erst.c
16798 F:      drivers/firmware/efi/efi-pstore.c
16799 F:      fs/pstore/
16800 F:      include/linux/pstore*
16801 K:      \b(pstore|ramoops)
16802
16803 PTP HARDWARE CLOCK SUPPORT
16804 M:      Richard Cochran <richardcochran@gmail.com>
16805 L:      netdev@vger.kernel.org
16806 S:      Maintained
16807 W:      http://linuxptp.sourceforge.net/
16808 F:      Documentation/ABI/testing/sysfs-ptp
16809 F:      Documentation/driver-api/ptp.rst
16810 F:      drivers/net/phy/dp83640*
16811 F:      drivers/ptp/*
16812 F:      include/linux/ptp_cl*
16813 K:      (?:\b|_)ptp(?:\b|_)
16814
16815 PTP VIRTUAL CLOCK SUPPORT
16816 M:      Yangbo Lu <yangbo.lu@nxp.com>
16817 L:      netdev@vger.kernel.org
16818 S:      Maintained
16819 F:      drivers/ptp/ptp_vclock.c
16820 F:      net/ethtool/phc_vclocks.c
16821
16822 PTRACE SUPPORT
16823 M:      Oleg Nesterov <oleg@redhat.com>
16824 S:      Maintained
16825 F:      arch/*/*/ptrace*.c
16826 F:      arch/*/include/asm/ptrace*.h
16827 F:      arch/*/ptrace*.c
16828 F:      include/asm-generic/syscall.h
16829 F:      include/linux/ptrace.h
16830 F:      include/linux/regset.h
16831 F:      include/uapi/linux/ptrace.h
16832 F:      kernel/ptrace.c
16833
16834 PULSE8-CEC DRIVER
16835 M:      Hans Verkuil <hverkuil@xs4all.nl>
16836 L:      linux-media@vger.kernel.org
16837 S:      Maintained
16838 T:      git git://linuxtv.org/media_tree.git
16839 F:      drivers/media/cec/usb/pulse8/
16840
16841 PURELIFI PLFXLC DRIVER
16842 M:      Srinivasan Raju <srini.raju@purelifi.com>
16843 L:      linux-wireless@vger.kernel.org
16844 S:      Supported
16845 F:      drivers/net/wireless/purelifi/plfxlc/
16846
16847 PVRUSB2 VIDEO4LINUX DRIVER
16848 M:      Mike Isely <isely@pobox.com>
16849 L:      pvrusb2@isely.net       (subscribers-only)
16850 L:      linux-media@vger.kernel.org
16851 S:      Maintained
16852 W:      http://www.isely.net/pvrusb2/
16853 T:      git git://linuxtv.org/media_tree.git
16854 F:      Documentation/driver-api/media/drivers/pvrusb2*
16855 F:      drivers/media/usb/pvrusb2/
16856
16857 PWC WEBCAM DRIVER
16858 M:      Hans Verkuil <hverkuil@xs4all.nl>
16859 L:      linux-media@vger.kernel.org
16860 S:      Odd Fixes
16861 T:      git git://linuxtv.org/media_tree.git
16862 F:      drivers/media/usb/pwc/*
16863 F:      include/trace/events/pwc.h
16864
16865 PWM IR Transmitter
16866 M:      Sean Young <sean@mess.org>
16867 L:      linux-media@vger.kernel.org
16868 S:      Maintained
16869 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16870 F:      drivers/media/rc/pwm-ir-tx.c
16871
16872 PWM SUBSYSTEM
16873 M:      Thierry Reding <thierry.reding@gmail.com>
16874 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16875 L:      linux-pwm@vger.kernel.org
16876 S:      Maintained
16877 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16879 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16880 F:      Documentation/devicetree/bindings/pwm/
16881 F:      Documentation/driver-api/pwm.rst
16882 F:      drivers/gpio/gpio-mvebu.c
16883 F:      drivers/pwm/
16884 F:      drivers/video/backlight/pwm_bl.c
16885 F:      include/dt-bindings/pwm/
16886 F:      include/linux/pwm.h
16887 F:      include/linux/pwm_backlight.h
16888 K:      pwm_(config|apply_state|ops)
16889
16890 PXA GPIO DRIVER
16891 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16892 L:      linux-gpio@vger.kernel.org
16893 S:      Maintained
16894 F:      drivers/gpio/gpio-pxa.c
16895
16896 PXA MMCI DRIVER
16897 S:      Orphan
16898
16899 PXA RTC DRIVER
16900 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16901 L:      linux-rtc@vger.kernel.org
16902 S:      Maintained
16903
16904 PXA2xx/PXA3xx SUPPORT
16905 M:      Daniel Mack <daniel@zonque.org>
16906 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16907 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16909 S:      Maintained
16910 T:      git git://github.com/hzhuang1/linux.git
16911 T:      git git://github.com/rjarzmik/linux.git
16912 F:      arch/arm/boot/dts/pxa*
16913 F:      arch/arm/mach-pxa/
16914 F:      drivers/dma/pxa*
16915 F:      drivers/pcmcia/pxa2xx*
16916 F:      drivers/pinctrl/pxa/
16917 F:      drivers/spi/spi-pxa2xx*
16918 F:      drivers/usb/gadget/udc/pxa2*
16919 F:      include/sound/pxa2xx-lib.h
16920 F:      sound/arm/pxa*
16921 F:      sound/soc/pxa/
16922
16923 QAT DRIVER
16924 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16925 L:      qat-linux@intel.com
16926 S:      Supported
16927 F:      drivers/crypto/qat/
16928
16929 QCOM AUDIO (ASoC) DRIVERS
16930 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16931 M:      Banajit Goswami <bgoswami@quicinc.com>
16932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16933 S:      Supported
16934 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
16935 F:      Documentation/devicetree/bindings/sound/qcom,*
16936 F:      drivers/soc/qcom/apr.c
16937 F:      include/dt-bindings/sound/qcom,wcd9335.h
16938 F:      sound/soc/codecs/lpass-rx-macro.*
16939 F:      sound/soc/codecs/lpass-tx-macro.*
16940 F:      sound/soc/codecs/lpass-va-macro.c
16941 F:      sound/soc/codecs/lpass-wsa-macro.*
16942 F:      sound/soc/codecs/msm8916-wcd-analog.c
16943 F:      sound/soc/codecs/msm8916-wcd-digital.c
16944 F:      sound/soc/codecs/wcd9335.*
16945 F:      sound/soc/codecs/wcd934x.c
16946 F:      sound/soc/codecs/wcd-clsh-v2.*
16947 F:      sound/soc/codecs/wcd-mbhc-v2.*
16948 F:      sound/soc/codecs/wsa881x.c
16949 F:      sound/soc/codecs/wsa883x.c
16950 F:      sound/soc/qcom/
16951
16952 QCOM EMBEDDED USB DEBUGGER (EUD)
16953 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16954 L:      linux-arm-msm@vger.kernel.org
16955 S:      Maintained
16956 F:      Documentation/ABI/testing/sysfs-driver-eud
16957 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16958 F:      drivers/usb/misc/qcom_eud.c
16959
16960 QCOM IPA DRIVER
16961 M:      Alex Elder <elder@kernel.org>
16962 L:      netdev@vger.kernel.org
16963 S:      Supported
16964 F:      drivers/net/ipa/
16965
16966 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16967 M:      Gabriel Somlo <somlo@cmu.edu>
16968 M:      "Michael S. Tsirkin" <mst@redhat.com>
16969 L:      qemu-devel@nongnu.org
16970 S:      Maintained
16971 F:      drivers/firmware/qemu_fw_cfg.c
16972 F:      include/uapi/linux/qemu_fw_cfg.h
16973
16974 QIB DRIVER
16975 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16976 L:      linux-rdma@vger.kernel.org
16977 S:      Supported
16978 F:      drivers/infiniband/hw/qib/
16979
16980 QLOGIC QL41xxx FCOE DRIVER
16981 M:      Saurav Kashyap <skashyap@marvell.com>
16982 M:      Javed Hasan <jhasan@marvell.com>
16983 M:      GR-QLogic-Storage-Upstream@marvell.com
16984 L:      linux-scsi@vger.kernel.org
16985 S:      Supported
16986 F:      drivers/scsi/qedf/
16987
16988 QLOGIC QL41xxx ISCSI DRIVER
16989 M:      Nilesh Javali <njavali@marvell.com>
16990 M:      Manish Rangankar <mrangankar@marvell.com>
16991 M:      GR-QLogic-Storage-Upstream@marvell.com
16992 L:      linux-scsi@vger.kernel.org
16993 S:      Supported
16994 F:      drivers/scsi/qedi/
16995
16996 QLOGIC QL4xxx ETHERNET DRIVER
16997 M:      Ariel Elior <aelior@marvell.com>
16998 M:      Manish Chopra <manishc@marvell.com>
16999 L:      netdev@vger.kernel.org
17000 S:      Supported
17001 F:      drivers/net/ethernet/qlogic/qed/
17002 F:      drivers/net/ethernet/qlogic/qede/
17003 F:      include/linux/qed/
17004
17005 QLOGIC QL4xxx RDMA DRIVER
17006 M:      Michal Kalderon <mkalderon@marvell.com>
17007 M:      Ariel Elior <aelior@marvell.com>
17008 L:      linux-rdma@vger.kernel.org
17009 S:      Supported
17010 F:      drivers/infiniband/hw/qedr/
17011 F:      include/uapi/rdma/qedr-abi.h
17012
17013 QLOGIC QLA1280 SCSI DRIVER
17014 M:      Michael Reed <mdr@sgi.com>
17015 L:      linux-scsi@vger.kernel.org
17016 S:      Maintained
17017 F:      drivers/scsi/qla1280.[ch]
17018
17019 QLOGIC QLA2XXX FC-SCSI DRIVER
17020 M:      Nilesh Javali <njavali@marvell.com>
17021 M:      GR-QLogic-Storage-Upstream@marvell.com
17022 L:      linux-scsi@vger.kernel.org
17023 S:      Supported
17024 F:      drivers/scsi/qla2xxx/
17025
17026 QLOGIC QLA3XXX NETWORK DRIVER
17027 M:      GR-Linux-NIC-Dev@marvell.com
17028 L:      netdev@vger.kernel.org
17029 S:      Supported
17030 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17031
17032 QLOGIC QLA4XXX iSCSI DRIVER
17033 M:      Nilesh Javali <njavali@marvell.com>
17034 M:      Manish Rangankar <mrangankar@marvell.com>
17035 M:      GR-QLogic-Storage-Upstream@marvell.com
17036 L:      linux-scsi@vger.kernel.org
17037 S:      Supported
17038 F:      drivers/scsi/qla4xxx/
17039
17040 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17041 M:      Shahed Shaikh <shshaikh@marvell.com>
17042 M:      Manish Chopra <manishc@marvell.com>
17043 M:      GR-Linux-NIC-Dev@marvell.com
17044 L:      netdev@vger.kernel.org
17045 S:      Supported
17046 F:      drivers/net/ethernet/qlogic/qlcnic/
17047
17048 QLOGIC QLGE 10Gb ETHERNET DRIVER
17049 M:      Manish Chopra <manishc@marvell.com>
17050 M:      GR-Linux-NIC-Dev@marvell.com
17051 M:      Coiby Xu <coiby.xu@gmail.com>
17052 L:      netdev@vger.kernel.org
17053 S:      Supported
17054 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17055 F:      drivers/staging/qlge/
17056
17057 QM1D1B0004 MEDIA DRIVER
17058 M:      Akihiro Tsukada <tskd08@gmail.com>
17059 L:      linux-media@vger.kernel.org
17060 S:      Odd Fixes
17061 F:      drivers/media/tuners/qm1d1b0004*
17062
17063 QM1D1C0042 MEDIA DRIVER
17064 M:      Akihiro Tsukada <tskd08@gmail.com>
17065 L:      linux-media@vger.kernel.org
17066 S:      Odd Fixes
17067 F:      drivers/media/tuners/qm1d1c0042*
17068
17069 QNX4 FILESYSTEM
17070 M:      Anders Larsen <al@alarsen.net>
17071 S:      Maintained
17072 W:      http://www.alarsen.net/linux/qnx4fs/
17073 F:      fs/qnx4/
17074 F:      include/uapi/linux/qnx4_fs.h
17075 F:      include/uapi/linux/qnxtypes.h
17076
17077 QORIQ DPAA2 FSL-MC BUS DRIVER
17078 M:      Stuart Yoder <stuyoder@gmail.com>
17079 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17080 L:      linux-kernel@vger.kernel.org
17081 S:      Maintained
17082 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17083 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17084 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17085 F:      drivers/bus/fsl-mc/
17086 F:      include/uapi/linux/fsl_mc.h
17087
17088 QT1010 MEDIA DRIVER
17089 M:      Antti Palosaari <crope@iki.fi>
17090 L:      linux-media@vger.kernel.org
17091 S:      Maintained
17092 W:      https://linuxtv.org
17093 W:      http://palosaari.fi/linux/
17094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17095 T:      git git://linuxtv.org/anttip/media_tree.git
17096 F:      drivers/media/tuners/qt1010*
17097
17098 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17099 M:      Kalle Valo <kvalo@kernel.org>
17100 L:      ath10k@lists.infradead.org
17101 S:      Supported
17102 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17104 F:      drivers/net/wireless/ath/ath10k/
17105 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17106
17107 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17108 M:      Kalle Valo <kvalo@kernel.org>
17109 L:      ath11k@lists.infradead.org
17110 S:      Supported
17111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17112 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17113 F:      drivers/net/wireless/ath/ath11k/
17114
17115 QUALCOMM ATH12K WIRELESS DRIVER
17116 M:      Kalle Valo <kvalo@kernel.org>
17117 L:      ath12k@lists.infradead.org
17118 S:      Supported
17119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17120 F:      drivers/net/wireless/ath/ath12k/
17121
17122 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17123 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17124 L:      linux-wireless@vger.kernel.org
17125 S:      Maintained
17126 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17127 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17128 F:      drivers/net/wireless/ath/ath9k/
17129
17130 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17131 M:      Stephan Gerhold <stephan@gerhold.net>
17132 L:      netdev@vger.kernel.org
17133 L:      linux-arm-msm@vger.kernel.org
17134 S:      Maintained
17135 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17136 F:      drivers/net/wwan/qcom_bam_dmux.c
17137
17138 QUALCOMM CAMERA SUBSYSTEM DRIVER
17139 M:      Robert Foss <rfoss@kernel.org>
17140 M:      Todor Tomov <todor.too@gmail.com>
17141 L:      linux-media@vger.kernel.org
17142 S:      Maintained
17143 F:      Documentation/admin-guide/media/qcom_camss.rst
17144 F:      Documentation/devicetree/bindings/media/*camss*
17145 F:      drivers/media/platform/qcom/camss/
17146
17147 QUALCOMM CLOCK DRIVERS
17148 M:      Bjorn Andersson <andersson@kernel.org>
17149 L:      linux-arm-msm@vger.kernel.org
17150 S:      Supported
17151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17152 F:      Documentation/devicetree/bindings/clock/qcom,*
17153 F:      drivers/clk/qcom/
17154 F:      include/dt-bindings/clock/qcom,*
17155
17156 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17157 M:      Niklas Cassel <nks@flawful.org>
17158 L:      linux-pm@vger.kernel.org
17159 L:      linux-arm-msm@vger.kernel.org
17160 S:      Maintained
17161 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17162 F:      drivers/soc/qcom/cpr.c
17163
17164 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17165 M:      Ilia Lin <ilia.lin@kernel.org>
17166 L:      linux-pm@vger.kernel.org
17167 S:      Maintained
17168 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17169 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17170 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17171
17172 QUALCOMM CRYPTO DRIVERS
17173 M:      Thara Gopinath <thara.gopinath@gmail.com>
17174 L:      linux-crypto@vger.kernel.org
17175 L:      linux-arm-msm@vger.kernel.org
17176 S:      Maintained
17177 F:      drivers/crypto/qce/
17178
17179 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17180 M:      Timur Tabi <timur@kernel.org>
17181 L:      netdev@vger.kernel.org
17182 S:      Maintained
17183 F:      drivers/net/ethernet/qualcomm/emac/
17184
17185 QUALCOMM ETHQOS ETHERNET DRIVER
17186 M:      Vinod Koul <vkoul@kernel.org>
17187 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17188 L:      netdev@vger.kernel.org
17189 S:      Maintained
17190 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17191 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17192
17193 QUALCOMM FASTRPC DRIVER
17194 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17195 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17196 L:      linux-arm-msm@vger.kernel.org
17197 S:      Maintained
17198 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17199 F:      drivers/misc/fastrpc.c
17200 F:      include/uapi/misc/fastrpc.h
17201
17202 QUALCOMM HEXAGON ARCHITECTURE
17203 M:      Brian Cain <bcain@quicinc.com>
17204 L:      linux-hexagon@vger.kernel.org
17205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17206 S:      Supported
17207 F:      arch/hexagon/
17208
17209 QUALCOMM HIDMA DRIVER
17210 M:      Sinan Kaya <okaya@kernel.org>
17211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17212 L:      linux-arm-msm@vger.kernel.org
17213 L:      dmaengine@vger.kernel.org
17214 S:      Supported
17215 F:      drivers/dma/qcom/hidma*
17216
17217 QUALCOMM I2C CCI DRIVER
17218 M:      Loic Poulain <loic.poulain@linaro.org>
17219 M:      Robert Foss <rfoss@kernel.org>
17220 L:      linux-i2c@vger.kernel.org
17221 L:      linux-arm-msm@vger.kernel.org
17222 S:      Maintained
17223 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17224 F:      drivers/i2c/busses/i2c-qcom-cci.c
17225
17226 QUALCOMM INTERCONNECT BWMON DRIVER
17227 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17228 L:      linux-arm-msm@vger.kernel.org
17229 S:      Maintained
17230 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17231 F:      drivers/soc/qcom/icc-bwmon.c
17232
17233 QUALCOMM IOMMU
17234 M:      Rob Clark <robdclark@gmail.com>
17235 L:      iommu@lists.linux.dev
17236 L:      linux-arm-msm@vger.kernel.org
17237 S:      Maintained
17238 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17239
17240 QUALCOMM IPC ROUTER (QRTR) DRIVER
17241 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17242 L:      linux-arm-msm@vger.kernel.org
17243 S:      Maintained
17244 F:      include/trace/events/qrtr.h
17245 F:      include/uapi/linux/qrtr.h
17246 F:      net/qrtr/
17247
17248 QUALCOMM IPCC MAILBOX DRIVER
17249 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17250 L:      linux-arm-msm@vger.kernel.org
17251 S:      Supported
17252 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17253 F:      drivers/mailbox/qcom-ipcc.c
17254 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17255
17256 QUALCOMM IPQ4019 USB PHY DRIVER
17257 M:      Robert Marko <robert.marko@sartura.hr>
17258 M:      Luka Perkov <luka.perkov@sartura.hr>
17259 L:      linux-arm-msm@vger.kernel.org
17260 S:      Maintained
17261 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17262 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17263
17264 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17265 M:      Robert Marko <robert.marko@sartura.hr>
17266 M:      Luka Perkov <luka.perkov@sartura.hr>
17267 L:      linux-arm-msm@vger.kernel.org
17268 S:      Maintained
17269 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17270 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17271
17272 QUALCOMM NAND CONTROLLER DRIVER
17273 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17274 L:      linux-mtd@lists.infradead.org
17275 L:      linux-arm-msm@vger.kernel.org
17276 S:      Maintained
17277 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17278 F:      drivers/mtd/nand/raw/qcom_nandc.c
17279
17280 QUALCOMM RMNET DRIVER
17281 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17282 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17283 L:      netdev@vger.kernel.org
17284 S:      Maintained
17285 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17286 F:      drivers/net/ethernet/qualcomm/rmnet/
17287 F:      include/linux/if_rmnet.h
17288
17289 QUALCOMM TSENS THERMAL DRIVER
17290 M:      Amit Kucheria <amitk@kernel.org>
17291 M:      Thara Gopinath <thara.gopinath@gmail.com>
17292 L:      linux-pm@vger.kernel.org
17293 L:      linux-arm-msm@vger.kernel.org
17294 S:      Maintained
17295 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17296 F:      drivers/thermal/qcom/
17297
17298 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17299 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17300 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17301 L:      linux-media@vger.kernel.org
17302 L:      linux-arm-msm@vger.kernel.org
17303 S:      Maintained
17304 T:      git git://linuxtv.org/media_tree.git
17305 F:      Documentation/devicetree/bindings/media/*venus*
17306 F:      drivers/media/platform/qcom/venus/
17307
17308 QUALCOMM WCN36XX WIRELESS DRIVER
17309 M:      Loic Poulain <loic.poulain@linaro.org>
17310 L:      wcn36xx@lists.infradead.org
17311 S:      Supported
17312 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17313 F:      drivers/net/wireless/ath/wcn36xx/
17314
17315 QUANTENNA QTNFMAC WIRELESS DRIVER
17316 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17317 R:      Sergey Matyukevich <geomatsi@gmail.com>
17318 L:      linux-wireless@vger.kernel.org
17319 S:      Maintained
17320 F:      drivers/net/wireless/quantenna
17321
17322 RADEON and AMDGPU DRM DRIVERS
17323 M:      Alex Deucher <alexander.deucher@amd.com>
17324 M:      Christian König <christian.koenig@amd.com>
17325 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17326 L:      amd-gfx@lists.freedesktop.org
17327 S:      Supported
17328 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17329 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17330 C:      irc://irc.oftc.net/radeon
17331 F:      Documentation/gpu/amdgpu/
17332 F:      drivers/gpu/drm/amd/
17333 F:      drivers/gpu/drm/radeon/
17334 F:      include/uapi/drm/amdgpu_drm.h
17335 F:      include/uapi/drm/radeon_drm.h
17336
17337 RADEON FRAMEBUFFER DISPLAY DRIVER
17338 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17339 L:      linux-fbdev@vger.kernel.org
17340 S:      Maintained
17341 F:      drivers/video/fbdev/aty/radeon*
17342 F:      include/uapi/linux/radeonfb.h
17343
17344 RADIOSHARK RADIO DRIVER
17345 M:      Hans Verkuil <hverkuil@xs4all.nl>
17346 L:      linux-media@vger.kernel.org
17347 S:      Maintained
17348 T:      git git://linuxtv.org/media_tree.git
17349 F:      drivers/media/radio/radio-shark.c
17350
17351 RADIOSHARK2 RADIO DRIVER
17352 M:      Hans Verkuil <hverkuil@xs4all.nl>
17353 L:      linux-media@vger.kernel.org
17354 S:      Maintained
17355 T:      git git://linuxtv.org/media_tree.git
17356 F:      drivers/media/radio/radio-shark2.c
17357 F:      drivers/media/radio/radio-tea5777.c
17358
17359 RADOS BLOCK DEVICE (RBD)
17360 M:      Ilya Dryomov <idryomov@gmail.com>
17361 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17362 L:      ceph-devel@vger.kernel.org
17363 S:      Supported
17364 W:      http://ceph.com/
17365 T:      git https://github.com/ceph/ceph-client.git
17366 F:      Documentation/ABI/testing/sysfs-bus-rbd
17367 F:      drivers/block/rbd.c
17368 F:      drivers/block/rbd_types.h
17369
17370 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17371 M:      Paul Mackerras <paulus@samba.org>
17372 L:      linux-fbdev@vger.kernel.org
17373 S:      Maintained
17374 F:      drivers/video/fbdev/aty/aty128fb.c
17375
17376 RAINSHADOW-CEC DRIVER
17377 M:      Hans Verkuil <hverkuil@xs4all.nl>
17378 L:      linux-media@vger.kernel.org
17379 S:      Maintained
17380 T:      git git://linuxtv.org/media_tree.git
17381 F:      drivers/media/cec/usb/rainshadow/
17382
17383 RALINK MIPS ARCHITECTURE
17384 M:      John Crispin <john@phrozen.org>
17385 L:      linux-mips@vger.kernel.org
17386 S:      Maintained
17387 F:      arch/mips/ralink
17388
17389 RALINK MT7621 MIPS ARCHITECTURE
17390 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17391 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17392 L:      linux-mips@vger.kernel.org
17393 S:      Maintained
17394 F:      arch/mips/boot/dts/ralink/mt7621*
17395
17396 RALINK PINCTRL DRIVER
17397 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17398 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17399 L:      linux-mips@vger.kernel.org
17400 S:      Maintained
17401 F:      drivers/pinctrl/ralink/
17402
17403 RALINK RT2X00 WIRELESS LAN DRIVER
17404 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17405 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17406 L:      linux-wireless@vger.kernel.org
17407 S:      Maintained
17408 F:      drivers/net/wireless/ralink/rt2x00/
17409
17410 RAMDISK RAM BLOCK DEVICE DRIVER
17411 M:      Jens Axboe <axboe@kernel.dk>
17412 S:      Maintained
17413 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17414 F:      drivers/block/brd.c
17415
17416 RANCHU VIRTUAL BOARD FOR MIPS
17417 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17418 L:      linux-mips@vger.kernel.org
17419 S:      Supported
17420 F:      arch/mips/configs/generic/board-ranchu.config
17421 F:      arch/mips/generic/board-ranchu.c
17422
17423 RANDOM NUMBER DRIVER
17424 M:      "Theodore Ts'o" <tytso@mit.edu>
17425 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17426 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17427 S:      Maintained
17428 F:      drivers/char/random.c
17429 F:      drivers/virt/vmgenid.c
17430
17431 RAPIDIO SUBSYSTEM
17432 M:      Matt Porter <mporter@kernel.crashing.org>
17433 M:      Alexandre Bounine <alex.bou9@gmail.com>
17434 S:      Maintained
17435 F:      drivers/rapidio/
17436
17437 RAS INFRASTRUCTURE
17438 M:      Tony Luck <tony.luck@intel.com>
17439 M:      Borislav Petkov <bp@alien8.de>
17440 L:      linux-edac@vger.kernel.org
17441 S:      Maintained
17442 F:      Documentation/admin-guide/ras.rst
17443 F:      drivers/ras/
17444 F:      include/linux/ras.h
17445 F:      include/ras/ras_event.h
17446
17447 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17448 L:      linux-wireless@vger.kernel.org
17449 S:      Orphan
17450 F:      drivers/net/wireless/ray*
17451
17452 RC-CORE / LIRC FRAMEWORK
17453 M:      Sean Young <sean@mess.org>
17454 L:      linux-media@vger.kernel.org
17455 S:      Maintained
17456 W:      http://linuxtv.org
17457 T:      git git://linuxtv.org/media_tree.git
17458 F:      Documentation/driver-api/media/rc-core.rst
17459 F:      Documentation/userspace-api/media/rc/
17460 F:      drivers/media/rc/
17461 F:      include/media/rc-map.h
17462 F:      include/media/rc-core.h
17463 F:      include/uapi/linux/lirc.h
17464
17465 RCMM REMOTE CONTROLS DECODER
17466 M:      Patrick Lerda <patrick9876@free.fr>
17467 S:      Maintained
17468 F:      drivers/media/rc/ir-rcmm-decoder.c
17469
17470 RCUTORTURE TEST FRAMEWORK
17471 M:      "Paul E. McKenney" <paulmck@kernel.org>
17472 M:      Josh Triplett <josh@joshtriplett.org>
17473 R:      Steven Rostedt <rostedt@goodmis.org>
17474 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17475 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17476 L:      rcu@vger.kernel.org
17477 S:      Supported
17478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17479 F:      tools/testing/selftests/rcutorture
17480
17481 RDACM20 Camera Sensor
17482 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17483 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17484 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17485 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17486 L:      linux-media@vger.kernel.org
17487 S:      Maintained
17488 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17489 F:      drivers/media/i2c/max9271.c
17490 F:      drivers/media/i2c/max9271.h
17491 F:      drivers/media/i2c/rdacm20.c
17492
17493 RDACM21 Camera Sensor
17494 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17495 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17496 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17497 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17498 L:      linux-media@vger.kernel.org
17499 S:      Maintained
17500 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17501 F:      drivers/media/i2c/max9271.c
17502 F:      drivers/media/i2c/max9271.h
17503 F:      drivers/media/i2c/rdacm21.c
17504
17505 RDC R-321X SoC
17506 M:      Florian Fainelli <florian@openwrt.org>
17507 S:      Maintained
17508
17509 RDC R6040 FAST ETHERNET DRIVER
17510 M:      Florian Fainelli <f.fainelli@gmail.com>
17511 L:      netdev@vger.kernel.org
17512 S:      Maintained
17513 F:      drivers/net/ethernet/rdc/r6040.c
17514
17515 RDMAVT - RDMA verbs software
17516 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17517 L:      linux-rdma@vger.kernel.org
17518 S:      Supported
17519 F:      drivers/infiniband/sw/rdmavt
17520
17521 RDS - RELIABLE DATAGRAM SOCKETS
17522 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17523 L:      netdev@vger.kernel.org
17524 L:      linux-rdma@vger.kernel.org
17525 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17526 S:      Supported
17527 W:      https://oss.oracle.com/projects/rds/
17528 F:      Documentation/networking/rds.rst
17529 F:      net/rds/
17530
17531 RDT - RESOURCE ALLOCATION
17532 M:      Fenghua Yu <fenghua.yu@intel.com>
17533 M:      Reinette Chatre <reinette.chatre@intel.com>
17534 L:      linux-kernel@vger.kernel.org
17535 S:      Supported
17536 F:      Documentation/x86/resctrl*
17537 F:      arch/x86/include/asm/resctrl.h
17538 F:      arch/x86/kernel/cpu/resctrl/
17539 F:      tools/testing/selftests/resctrl/
17540
17541 READ-COPY UPDATE (RCU)
17542 M:      "Paul E. McKenney" <paulmck@kernel.org>
17543 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17544 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17545 M:      Josh Triplett <josh@joshtriplett.org>
17546 R:      Steven Rostedt <rostedt@goodmis.org>
17547 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17548 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17549 R:      Joel Fernandes <joel@joelfernandes.org>
17550 L:      rcu@vger.kernel.org
17551 S:      Supported
17552 W:      http://www.rdrop.com/users/paulmck/RCU/
17553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17554 F:      Documentation/RCU/
17555 F:      include/linux/rcu*
17556 F:      kernel/rcu/
17557 X:      Documentation/RCU/torture.rst
17558 X:      include/linux/srcu*.h
17559 X:      kernel/rcu/srcu*.c
17560
17561 REAL TIME CLOCK (RTC) SUBSYSTEM
17562 M:      Alessandro Zummo <a.zummo@towertech.it>
17563 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17564 L:      linux-rtc@vger.kernel.org
17565 S:      Maintained
17566 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17568 F:      Documentation/admin-guide/rtc.rst
17569 F:      Documentation/devicetree/bindings/rtc/
17570 F:      drivers/rtc/
17571 F:      include/linux/platform_data/rtc-*
17572 F:      include/linux/rtc.h
17573 F:      include/linux/rtc/
17574 F:      include/uapi/linux/rtc.h
17575 F:      tools/testing/selftests/rtc/
17576
17577 REALTEK AUDIO CODECS
17578 M:      Oder Chiou <oder_chiou@realtek.com>
17579 S:      Maintained
17580 F:      include/sound/rt*.h
17581 F:      sound/soc/codecs/rt*
17582
17583 REALTEK OTTO WATCHDOG
17584 M:      Sander Vanheule <sander@svanheule.net>
17585 L:      linux-watchdog@vger.kernel.org
17586 S:      Maintained
17587 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17588 F:      drivers/watchdog/realtek_otto_wdt.c
17589
17590 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17591 M:      Linus Walleij <linus.walleij@linaro.org>
17592 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17593 S:      Maintained
17594 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17595 F:      drivers/net/dsa/realtek/*
17596
17597 REALTEK WIRELESS DRIVER (rtlwifi family)
17598 M:      Ping-Ke Shih <pkshih@realtek.com>
17599 L:      linux-wireless@vger.kernel.org
17600 S:      Maintained
17601 W:      https://wireless.wiki.kernel.org/
17602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17603 F:      drivers/net/wireless/realtek/rtlwifi/
17604
17605 REALTEK WIRELESS DRIVER (rtw88)
17606 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17607 L:      linux-wireless@vger.kernel.org
17608 S:      Maintained
17609 F:      drivers/net/wireless/realtek/rtw88/
17610
17611 REALTEK WIRELESS DRIVER (rtw89)
17612 M:      Ping-Ke Shih <pkshih@realtek.com>
17613 L:      linux-wireless@vger.kernel.org
17614 S:      Maintained
17615 F:      drivers/net/wireless/realtek/rtw89/
17616
17617 REDPINE WIRELESS DRIVER
17618 L:      linux-wireless@vger.kernel.org
17619 S:      Orphan
17620 F:      drivers/net/wireless/rsi/
17621
17622 REGISTER MAP ABSTRACTION
17623 M:      Mark Brown <broonie@kernel.org>
17624 L:      linux-kernel@vger.kernel.org
17625 S:      Supported
17626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17627 F:      Documentation/devicetree/bindings/regmap/
17628 F:      drivers/base/regmap/
17629 F:      include/linux/regmap.h
17630
17631 REISERFS FILE SYSTEM
17632 L:      reiserfs-devel@vger.kernel.org
17633 S:      Supported
17634 F:      fs/reiserfs/
17635
17636 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17637 M:      Bjorn Andersson <andersson@kernel.org>
17638 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17639 L:      linux-remoteproc@vger.kernel.org
17640 S:      Maintained
17641 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17642 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17643 F:      Documentation/devicetree/bindings/remoteproc/
17644 F:      Documentation/staging/remoteproc.rst
17645 F:      drivers/remoteproc/
17646 F:      include/linux/remoteproc.h
17647 F:      include/linux/remoteproc/
17648
17649 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17650 M:      Bjorn Andersson <andersson@kernel.org>
17651 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17652 L:      linux-remoteproc@vger.kernel.org
17653 S:      Maintained
17654 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17655 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17656 F:      Documentation/staging/rpmsg.rst
17657 F:      drivers/rpmsg/
17658 F:      include/linux/rpmsg.h
17659 F:      include/linux/rpmsg/
17660 F:      include/uapi/linux/rpmsg.h
17661 F:      samples/rpmsg/
17662
17663 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17664 M:      Stephan Gerhold <stephan@gerhold.net>
17665 L:      netdev@vger.kernel.org
17666 L:      linux-remoteproc@vger.kernel.org
17667 S:      Maintained
17668 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17669
17670 RENESAS CLOCK DRIVERS
17671 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17672 L:      linux-renesas-soc@vger.kernel.org
17673 S:      Supported
17674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17675 F:      Documentation/devicetree/bindings/clock/renesas,*
17676 F:      drivers/clk/renesas/
17677
17678 RENESAS EMEV2 I2C DRIVER
17679 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17680 L:      linux-renesas-soc@vger.kernel.org
17681 S:      Supported
17682 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17683 F:      drivers/i2c/busses/i2c-emev2.c
17684
17685 RENESAS ETHERNET DRIVERS
17686 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17687 L:      netdev@vger.kernel.org
17688 L:      linux-renesas-soc@vger.kernel.org
17689 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17690 F:      drivers/net/ethernet/renesas/
17691 F:      include/linux/sh_eth.h
17692
17693 RENESAS R-CAR GYROADC DRIVER
17694 M:      Marek Vasut <marek.vasut@gmail.com>
17695 L:      linux-iio@vger.kernel.org
17696 S:      Supported
17697 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17698 F:      drivers/iio/adc/rcar-gyroadc.c
17699
17700 RENESAS R-CAR I2C DRIVERS
17701 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17702 L:      linux-renesas-soc@vger.kernel.org
17703 S:      Supported
17704 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17705 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17706 F:      drivers/i2c/busses/i2c-rcar.c
17707 F:      drivers/i2c/busses/i2c-sh_mobile.c
17708
17709 RENESAS R-CAR SATA DRIVER
17710 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17711 S:      Supported
17712 L:      linux-ide@vger.kernel.org
17713 L:      linux-renesas-soc@vger.kernel.org
17714 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17715 F:      drivers/ata/sata_rcar.c
17716
17717 RENESAS R-CAR THERMAL DRIVERS
17718 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17719 L:      linux-renesas-soc@vger.kernel.org
17720 S:      Supported
17721 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17722 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17723 F:      drivers/thermal/rcar_gen3_thermal.c
17724 F:      drivers/thermal/rcar_thermal.c
17725
17726 RENESAS RIIC DRIVER
17727 M:      Chris Brandt <chris.brandt@renesas.com>
17728 L:      linux-renesas-soc@vger.kernel.org
17729 S:      Supported
17730 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17731 F:      drivers/i2c/busses/i2c-riic.c
17732
17733 RENESAS USB PHY DRIVER
17734 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17735 L:      linux-renesas-soc@vger.kernel.org
17736 S:      Maintained
17737 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17738
17739 RENESAS RZ/G2L A/D DRIVER
17740 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17741 L:      linux-iio@vger.kernel.org
17742 L:      linux-renesas-soc@vger.kernel.org
17743 S:      Supported
17744 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17745 F:      drivers/iio/adc/rzg2l_adc.c
17746
17747 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17748 M:      Clément Léger <clement.leger@bootlin.com>
17749 L:      linux-renesas-soc@vger.kernel.org
17750 L:      netdev@vger.kernel.org
17751 S:      Maintained
17752 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17753 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17754 F:      drivers/net/dsa/rzn1_a5psw*
17755 F:      drivers/net/pcs/pcs-rzn1-miic.c
17756 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17757 F:      include/linux/pcs-rzn1-miic.h
17758 F:      net/dsa/tag_rzn1_a5psw.c
17759
17760 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17761 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17762 L:      linux-rtc@vger.kernel.org
17763 L:      linux-renesas-soc@vger.kernel.org
17764 S:      Maintained
17765 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17766 F:      drivers/rtc/rtc-rzn1.c
17767
17768 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17769 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17770 L:      linux-mtd@lists.infradead.org
17771 L:      linux-renesas-soc@vger.kernel.org
17772 S:      Maintained
17773 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17774 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17775
17776 RENESAS VERSACLOCK 7 CLOCK DRIVER
17777 M:      Alex Helms <alexander.helms.jy@renesas.com>
17778 S:      Maintained
17779 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17780 F:      drivers/clk/clk-versaclock7.c
17781
17782 RESET CONTROLLER FRAMEWORK
17783 M:      Philipp Zabel <p.zabel@pengutronix.de>
17784 S:      Maintained
17785 T:      git git://git.pengutronix.de/git/pza/linux
17786 F:      Documentation/devicetree/bindings/reset/
17787 F:      Documentation/driver-api/reset.rst
17788 F:      drivers/reset/
17789 F:      include/dt-bindings/reset/
17790 F:      include/linux/reset-controller.h
17791 F:      include/linux/reset.h
17792 F:      include/linux/reset/
17793 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17794
17795 RESTARTABLE SEQUENCES SUPPORT
17796 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17797 M:      Peter Zijlstra <peterz@infradead.org>
17798 M:      "Paul E. McKenney" <paulmck@kernel.org>
17799 M:      Boqun Feng <boqun.feng@gmail.com>
17800 L:      linux-kernel@vger.kernel.org
17801 S:      Supported
17802 F:      include/trace/events/rseq.h
17803 F:      include/uapi/linux/rseq.h
17804 F:      kernel/rseq.c
17805 F:      tools/testing/selftests/rseq/
17806
17807 RFKILL
17808 M:      Johannes Berg <johannes@sipsolutions.net>
17809 L:      linux-wireless@vger.kernel.org
17810 S:      Maintained
17811 W:      https://wireless.wiki.kernel.org/
17812 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17815 F:      Documentation/ABI/stable/sysfs-class-rfkill
17816 F:      Documentation/driver-api/rfkill.rst
17817 F:      include/linux/rfkill.h
17818 F:      include/uapi/linux/rfkill.h
17819 F:      net/rfkill/
17820
17821 RHASHTABLE
17822 M:      Thomas Graf <tgraf@suug.ch>
17823 M:      Herbert Xu <herbert@gondor.apana.org.au>
17824 L:      netdev@vger.kernel.org
17825 S:      Maintained
17826 F:      include/linux/rhashtable-types.h
17827 F:      include/linux/rhashtable.h
17828 F:      lib/rhashtable.c
17829 F:      lib/test_rhashtable.c
17830
17831 RICOH R5C592 MEMORYSTICK DRIVER
17832 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17833 S:      Maintained
17834 F:      drivers/memstick/host/r592.*
17835
17836 RICOH SMARTMEDIA/XD DRIVER
17837 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17838 S:      Maintained
17839 F:      drivers/mtd/nand/raw/r852.c
17840 F:      drivers/mtd/nand/raw/r852.h
17841
17842 RISC-V PMU DRIVERS
17843 M:      Atish Patra <atishp@atishpatra.org>
17844 R:      Anup Patel <anup@brainfault.org>
17845 L:      linux-riscv@lists.infradead.org
17846 S:      Supported
17847 F:      drivers/perf/riscv_pmu.c
17848 F:      drivers/perf/riscv_pmu_legacy.c
17849 F:      drivers/perf/riscv_pmu_sbi.c
17850
17851 RISC-V ARCHITECTURE
17852 M:      Paul Walmsley <paul.walmsley@sifive.com>
17853 M:      Palmer Dabbelt <palmer@dabbelt.com>
17854 M:      Albert Ou <aou@eecs.berkeley.edu>
17855 L:      linux-riscv@lists.infradead.org
17856 S:      Supported
17857 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17858 C:      irc://irc.libera.chat/riscv
17859 P:      Documentation/riscv/patch-acceptance.rst
17860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17861 F:      arch/riscv/
17862 N:      riscv
17863 K:      riscv
17864
17865 RISC-V MICROCHIP FPGA SUPPORT
17866 M:      Conor Dooley <conor.dooley@microchip.com>
17867 M:      Daire McNamara <daire.mcnamara@microchip.com>
17868 L:      linux-riscv@lists.infradead.org
17869 S:      Supported
17870 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17871 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17872 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17873 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17874 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17875 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17876 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17877 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17878 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17879 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17880 F:      arch/riscv/boot/dts/microchip/
17881 F:      drivers/char/hw_random/mpfs-rng.c
17882 F:      drivers/clk/microchip/clk-mpfs.c
17883 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17884 F:      drivers/mailbox/mailbox-mpfs.c
17885 F:      drivers/pci/controller/pcie-microchip-host.c
17886 F:      drivers/reset/reset-mpfs.c
17887 F:      drivers/rtc/rtc-mpfs.c
17888 F:      drivers/soc/microchip/mpfs-sys-controller.c
17889 F:      drivers/spi/spi-microchip-core-qspi.c
17890 F:      drivers/spi/spi-microchip-core.c
17891 F:      drivers/usb/musb/mpfs.c
17892 F:      include/soc/microchip/mpfs.h
17893
17894 RISC-V MISC SOC SUPPORT
17895 M:      Conor Dooley <conor@kernel.org>
17896 L:      linux-riscv@lists.infradead.org
17897 S:      Maintained
17898 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17899 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17900 F:      Documentation/devicetree/bindings/riscv/
17901 F:      arch/riscv/boot/dts/
17902
17903 RNBD BLOCK DRIVERS
17904 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17905 M:      Jack Wang <jinpu.wang@ionos.com>
17906 L:      linux-block@vger.kernel.org
17907 S:      Maintained
17908 F:      drivers/block/rnbd/
17909
17910 ROCCAT DRIVERS
17911 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17912 S:      Maintained
17913 W:      http://sourceforge.net/projects/roccat/
17914 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17915 F:      drivers/hid/hid-roccat*
17916 F:      include/linux/hid-roccat*
17917
17918 ROCKCHIP CRYPTO DRIVERS
17919 M:      Corentin Labbe <clabbe@baylibre.com>
17920 L:      linux-crypto@vger.kernel.org
17921 S:      Maintained
17922 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
17923 F:      drivers/crypto/rockchip/
17924
17925 ROCKCHIP I2S TDM DRIVER
17926 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17927 L:      linux-rockchip@lists.infradead.org
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17930 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17931
17932 ROCKCHIP ISP V1 DRIVER
17933 M:      Dafna Hirschfeld <dafna@fastmail.com>
17934 L:      linux-media@vger.kernel.org
17935 L:      linux-rockchip@lists.infradead.org
17936 S:      Maintained
17937 F:      Documentation/admin-guide/media/rkisp1.rst
17938 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17939 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17940 F:      drivers/media/platform/rockchip/rkisp1
17941 F:      include/uapi/linux/rkisp1-config.h
17942
17943 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17944 M:      Jacob Chen <jacob-chen@iotwrt.com>
17945 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17946 L:      linux-media@vger.kernel.org
17947 L:      linux-rockchip@lists.infradead.org
17948 S:      Maintained
17949 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17950 F:      drivers/media/platform/rockchip/rga/
17951
17952 ROCKCHIP VIDEO DECODER DRIVER
17953 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17954 L:      linux-media@vger.kernel.org
17955 L:      linux-rockchip@lists.infradead.org
17956 S:      Maintained
17957 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17958 F:      drivers/staging/media/rkvdec/
17959
17960 ROCKER DRIVER
17961 M:      Jiri Pirko <jiri@resnulli.us>
17962 L:      netdev@vger.kernel.org
17963 S:      Supported
17964 F:      drivers/net/ethernet/rocker/
17965
17966 ROCKETPORT EXPRESS/INFINITY DRIVER
17967 M:      Kevin Cernekee <cernekee@gmail.com>
17968 L:      linux-serial@vger.kernel.org
17969 S:      Odd Fixes
17970 F:      drivers/tty/serial/rp2.*
17971
17972 ROHM BD99954 CHARGER IC
17973 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17974 S:      Supported
17975 F:      drivers/power/supply/bd99954-charger.c
17976 F:      drivers/power/supply/bd99954-charger.h
17977
17978 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17979 M:      Tomasz Duszynski <tduszyns@gmail.com>
17980 S:      Maintained
17981 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17982 F:      drivers/iio/light/bh1750.c
17983
17984 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17985 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17986 L:      linux-kernel@vger.kernel.org
17987 L:      linux-renesas-soc@vger.kernel.org
17988 S:      Supported
17989 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17990 F:      drivers/gpio/gpio-bd9571mwv.c
17991 F:      drivers/mfd/bd9571mwv.c
17992 F:      drivers/regulator/bd9571mwv-regulator.c
17993 F:      include/linux/mfd/bd9571mwv.h
17994
17995 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17996 M:      Matti Vaittinen <mazziesaccount@gmail.com>
17997 S:      Supported
17998 F:      drivers/clk/clk-bd718x7.c
17999 F:      drivers/gpio/gpio-bd71815.c
18000 F:      drivers/gpio/gpio-bd71828.c
18001 F:      drivers/mfd/rohm-bd71828.c
18002 F:      drivers/mfd/rohm-bd718x7.c
18003 F:      drivers/mfd/rohm-bd9576.c
18004 F:      drivers/regulator/bd71815-regulator.c
18005 F:      drivers/regulator/bd71828-regulator.c
18006 F:      drivers/regulator/bd718x7-regulator.c
18007 F:      drivers/regulator/bd9576-regulator.c
18008 F:      drivers/regulator/rohm-regulator.c
18009 F:      drivers/rtc/rtc-bd70528.c
18010 F:      drivers/watchdog/bd9576_wdt.c
18011 F:      include/linux/mfd/rohm-bd71815.h
18012 F:      include/linux/mfd/rohm-bd71828.h
18013 F:      include/linux/mfd/rohm-bd718x7.h
18014 F:      include/linux/mfd/rohm-bd957x.h
18015 F:      include/linux/mfd/rohm-generic.h
18016 F:      include/linux/mfd/rohm-shared.h
18017
18018 ROSE NETWORK LAYER
18019 M:      Ralf Baechle <ralf@linux-mips.org>
18020 L:      linux-hams@vger.kernel.org
18021 S:      Maintained
18022 W:      http://www.linux-ax25.org/
18023 F:      include/net/rose.h
18024 F:      include/uapi/linux/rose.h
18025 F:      net/rose/
18026
18027 ROTATION DRIVER FOR ALLWINNER A83T
18028 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18029 L:      linux-media@vger.kernel.org
18030 S:      Maintained
18031 T:      git git://linuxtv.org/media_tree.git
18032 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18033 F:      drivers/media/platform/sunxi/sun8i-rotate/
18034
18035 RPMSG TTY DRIVER
18036 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18037 L:      linux-remoteproc@vger.kernel.org
18038 S:      Maintained
18039 F:      drivers/tty/rpmsg_tty.c
18040
18041 RTL2830 MEDIA DRIVER
18042 M:      Antti Palosaari <crope@iki.fi>
18043 L:      linux-media@vger.kernel.org
18044 S:      Maintained
18045 W:      https://linuxtv.org
18046 W:      http://palosaari.fi/linux/
18047 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18048 T:      git git://linuxtv.org/anttip/media_tree.git
18049 F:      drivers/media/dvb-frontends/rtl2830*
18050
18051 RTL2832 MEDIA DRIVER
18052 M:      Antti Palosaari <crope@iki.fi>
18053 L:      linux-media@vger.kernel.org
18054 S:      Maintained
18055 W:      https://linuxtv.org
18056 W:      http://palosaari.fi/linux/
18057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18058 T:      git git://linuxtv.org/anttip/media_tree.git
18059 F:      drivers/media/dvb-frontends/rtl2832*
18060
18061 RTL2832_SDR MEDIA DRIVER
18062 M:      Antti Palosaari <crope@iki.fi>
18063 L:      linux-media@vger.kernel.org
18064 S:      Maintained
18065 W:      https://linuxtv.org
18066 W:      http://palosaari.fi/linux/
18067 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18068 T:      git git://linuxtv.org/anttip/media_tree.git
18069 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18070
18071 RTL8180 WIRELESS DRIVER
18072 L:      linux-wireless@vger.kernel.org
18073 S:      Orphan
18074 W:      https://wireless.wiki.kernel.org/
18075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18076 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18077
18078 RTL8187 WIRELESS DRIVER
18079 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18080 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18081 M:      Larry Finger <Larry.Finger@lwfinger.net>
18082 L:      linux-wireless@vger.kernel.org
18083 S:      Maintained
18084 W:      https://wireless.wiki.kernel.org/
18085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18086 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18087
18088 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18089 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18090 L:      linux-wireless@vger.kernel.org
18091 S:      Maintained
18092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18093 F:      drivers/net/wireless/realtek/rtl8xxxu/
18094
18095 RTRS TRANSPORT DRIVERS
18096 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18097 M:      Jack Wang <jinpu.wang@ionos.com>
18098 L:      linux-rdma@vger.kernel.org
18099 S:      Maintained
18100 F:      drivers/infiniband/ulp/rtrs/
18101
18102 RUNTIME VERIFICATION (RV)
18103 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18104 M:      Steven Rostedt <rostedt@goodmis.org>
18105 L:      linux-trace-devel@vger.kernel.org
18106 S:      Maintained
18107 F:      Documentation/trace/rv/
18108 F:      include/linux/rv.h
18109 F:      include/rv/
18110 F:      kernel/trace/rv/
18111 F:      tools/verification/
18112
18113 RUST
18114 M:      Miguel Ojeda <ojeda@kernel.org>
18115 M:      Alex Gaynor <alex.gaynor@gmail.com>
18116 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18117 R:      Boqun Feng <boqun.feng@gmail.com>
18118 R:      Gary Guo <gary@garyguo.net>
18119 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18120 L:      rust-for-linux@vger.kernel.org
18121 S:      Supported
18122 W:      https://github.com/Rust-for-Linux/linux
18123 B:      https://github.com/Rust-for-Linux/linux/issues
18124 C:      zulip://rust-for-linux.zulipchat.com
18125 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18126 F:      Documentation/rust/
18127 F:      rust/
18128 F:      samples/rust/
18129 F:      scripts/*rust*
18130 K:      \b(?i:rust)\b
18131
18132 RXRPC SOCKETS (AF_RXRPC)
18133 M:      David Howells <dhowells@redhat.com>
18134 M:      Marc Dionne <marc.dionne@auristor.com>
18135 L:      linux-afs@lists.infradead.org
18136 S:      Supported
18137 W:      https://www.infradead.org/~dhowells/kafs/
18138 F:      Documentation/networking/rxrpc.rst
18139 F:      include/keys/rxrpc-type.h
18140 F:      include/net/af_rxrpc.h
18141 F:      include/trace/events/rxrpc.h
18142 F:      include/uapi/linux/rxrpc.h
18143 F:      net/rxrpc/
18144
18145 S3 SAVAGE FRAMEBUFFER DRIVER
18146 M:      Antonino Daplas <adaplas@gmail.com>
18147 L:      linux-fbdev@vger.kernel.org
18148 S:      Maintained
18149 F:      drivers/video/fbdev/savage/
18150
18151 S390 ARCHITECTURE
18152 M:      Heiko Carstens <hca@linux.ibm.com>
18153 M:      Vasily Gorbik <gor@linux.ibm.com>
18154 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18155 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18156 R:      Sven Schnelle <svens@linux.ibm.com>
18157 L:      linux-s390@vger.kernel.org
18158 S:      Supported
18159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18160 F:      Documentation/driver-api/s390-drivers.rst
18161 F:      Documentation/s390/
18162 F:      arch/s390/
18163 F:      drivers/s390/
18164 F:      drivers/watchdog/diag288_wdt.c
18165
18166 S390 COMMON I/O LAYER
18167 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18168 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18169 L:      linux-s390@vger.kernel.org
18170 S:      Supported
18171 F:      drivers/s390/cio/
18172
18173 S390 DASD DRIVER
18174 M:      Stefan Haberland <sth@linux.ibm.com>
18175 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18176 L:      linux-s390@vger.kernel.org
18177 S:      Supported
18178 F:      block/partitions/ibm.c
18179 F:      drivers/s390/block/dasd*
18180 F:      include/linux/dasd_mod.h
18181
18182 S390 IOMMU (PCI)
18183 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18184 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18185 L:      linux-s390@vger.kernel.org
18186 S:      Supported
18187 F:      drivers/iommu/s390-iommu.c
18188
18189 S390 IUCV NETWORK LAYER
18190 M:      Alexandra Winter <wintera@linux.ibm.com>
18191 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18192 L:      linux-s390@vger.kernel.org
18193 L:      netdev@vger.kernel.org
18194 S:      Supported
18195 F:      drivers/s390/net/*iucv*
18196 F:      include/net/iucv/
18197 F:      net/iucv/
18198
18199 S390 NETWORK DRIVERS
18200 M:      Alexandra Winter <wintera@linux.ibm.com>
18201 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18202 L:      linux-s390@vger.kernel.org
18203 L:      netdev@vger.kernel.org
18204 S:      Supported
18205 F:      drivers/s390/net/
18206
18207 S390 MM
18208 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18209 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18210 L:      linux-s390@vger.kernel.org
18211 S:      Supported
18212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18213 F:      arch/s390/include/asm/pgtable.h
18214 F:      arch/s390/mm
18215
18216 S390 PCI SUBSYSTEM
18217 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18218 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18219 L:      linux-s390@vger.kernel.org
18220 S:      Supported
18221 F:      arch/s390/pci/
18222 F:      drivers/pci/hotplug/s390_pci_hpc.c
18223 F:      Documentation/s390/pci.rst
18224
18225 S390 SCM DRIVER
18226 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18227 L:      linux-s390@vger.kernel.org
18228 S:      Supported
18229 F:      drivers/s390/block/scm*
18230 F:      drivers/s390/cio/scm.c
18231
18232 S390 VFIO AP DRIVER
18233 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18234 M:      Halil Pasic <pasic@linux.ibm.com>
18235 M:      Jason Herne <jjherne@linux.ibm.com>
18236 L:      linux-s390@vger.kernel.org
18237 S:      Supported
18238 F:      Documentation/s390/vfio-ap*
18239 F:      drivers/s390/crypto/vfio_ap*
18240
18241 S390 VFIO-CCW DRIVER
18242 M:      Eric Farman <farman@linux.ibm.com>
18243 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18244 R:      Halil Pasic <pasic@linux.ibm.com>
18245 L:      linux-s390@vger.kernel.org
18246 L:      kvm@vger.kernel.org
18247 S:      Supported
18248 F:      Documentation/s390/vfio-ccw.rst
18249 F:      drivers/s390/cio/vfio_ccw*
18250 F:      include/uapi/linux/vfio_ccw.h
18251
18252 S390 VFIO-PCI DRIVER
18253 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18254 M:      Eric Farman <farman@linux.ibm.com>
18255 L:      linux-s390@vger.kernel.org
18256 L:      kvm@vger.kernel.org
18257 S:      Supported
18258 F:      arch/s390/kvm/pci*
18259 F:      drivers/vfio/pci/vfio_pci_zdev.c
18260 F:      include/uapi/linux/vfio_zdev.h
18261
18262 S390 ZCRYPT DRIVER
18263 M:      Harald Freudenberger <freude@linux.ibm.com>
18264 L:      linux-s390@vger.kernel.org
18265 S:      Supported
18266 F:      drivers/s390/crypto/
18267
18268 S390 ZFCP DRIVER
18269 M:      Steffen Maier <maier@linux.ibm.com>
18270 M:      Benjamin Block <bblock@linux.ibm.com>
18271 L:      linux-s390@vger.kernel.org
18272 S:      Supported
18273 F:      drivers/s390/scsi/zfcp_*
18274
18275 SAA6588 RDS RECEIVER DRIVER
18276 M:      Hans Verkuil <hverkuil@xs4all.nl>
18277 L:      linux-media@vger.kernel.org
18278 S:      Odd Fixes
18279 W:      https://linuxtv.org
18280 T:      git git://linuxtv.org/media_tree.git
18281 F:      drivers/media/i2c/saa6588*
18282
18283 SAA7134 VIDEO4LINUX DRIVER
18284 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18285 L:      linux-media@vger.kernel.org
18286 S:      Odd fixes
18287 W:      https://linuxtv.org
18288 T:      git git://linuxtv.org/media_tree.git
18289 F:      Documentation/driver-api/media/drivers/saa7134*
18290 F:      drivers/media/pci/saa7134/
18291
18292 SAA7146 VIDEO4LINUX-2 DRIVER
18293 M:      Hans Verkuil <hverkuil@xs4all.nl>
18294 L:      linux-media@vger.kernel.org
18295 S:      Maintained
18296 T:      git git://linuxtv.org/media_tree.git
18297 F:      drivers/staging/media/deprecated/saa7146/
18298
18299 SAFESETID SECURITY MODULE
18300 M:      Micah Morton <mortonm@chromium.org>
18301 S:      Supported
18302 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18303 F:      security/safesetid/
18304
18305 SAMSUNG AUDIO (ASoC) DRIVERS
18306 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18307 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18309 S:      Supported
18310 B:      mailto:linux-samsung-soc@vger.kernel.org
18311 F:      Documentation/devicetree/bindings/sound/samsung*
18312 F:      sound/soc/samsung/
18313
18314 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18315 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18316 L:      linux-crypto@vger.kernel.org
18317 L:      linux-samsung-soc@vger.kernel.org
18318 S:      Maintained
18319 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18320 F:      drivers/crypto/exynos-rng.c
18321
18322 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18323 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18324 L:      linux-samsung-soc@vger.kernel.org
18325 S:      Maintained
18326 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18327 F:      drivers/char/hw_random/exynos-trng.c
18328
18329 SAMSUNG FRAMEBUFFER DRIVER
18330 M:      Jingoo Han <jingoohan1@gmail.com>
18331 L:      linux-fbdev@vger.kernel.org
18332 S:      Maintained
18333 F:      drivers/video/fbdev/s3c-fb.c
18334
18335 SAMSUNG INTERCONNECT DRIVERS
18336 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18337 M:      Artur Świgoń <a.swigon@samsung.com>
18338 L:      linux-pm@vger.kernel.org
18339 L:      linux-samsung-soc@vger.kernel.org
18340 S:      Supported
18341 F:      drivers/interconnect/samsung/
18342
18343 SAMSUNG LAPTOP DRIVER
18344 M:      Corentin Chary <corentin.chary@gmail.com>
18345 L:      platform-driver-x86@vger.kernel.org
18346 S:      Maintained
18347 F:      drivers/platform/x86/samsung-laptop.c
18348
18349 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18350 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18351 L:      linux-kernel@vger.kernel.org
18352 L:      linux-samsung-soc@vger.kernel.org
18353 S:      Supported
18354 B:      mailto:linux-samsung-soc@vger.kernel.org
18355 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18356 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18357 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18358 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18359 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18360 F:      drivers/clk/clk-s2mps11.c
18361 F:      drivers/mfd/sec*.c
18362 F:      drivers/regulator/s2m*.c
18363 F:      drivers/regulator/s5m*.c
18364 F:      drivers/rtc/rtc-s5m.c
18365 F:      include/linux/mfd/samsung/
18366
18367 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18368 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18369 L:      linux-media@vger.kernel.org
18370 L:      linux-samsung-soc@vger.kernel.org
18371 S:      Maintained
18372 F:      drivers/media/platform/samsung/s3c-camif/
18373 F:      include/media/drv-intf/s3c_camif.h
18374
18375 SAMSUNG S3FWRN5 NFC DRIVER
18376 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18377 L:      linux-nfc@lists.01.org (subscribers-only)
18378 S:      Maintained
18379 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18380 F:      drivers/nfc/s3fwrn5
18381
18382 SAMSUNG S5C73M3 CAMERA DRIVER
18383 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18384 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18385 L:      linux-media@vger.kernel.org
18386 S:      Supported
18387 F:      drivers/media/i2c/s5c73m3/*
18388
18389 SAMSUNG S5K5BAF CAMERA DRIVER
18390 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18391 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18392 L:      linux-media@vger.kernel.org
18393 S:      Supported
18394 F:      drivers/media/i2c/s5k5baf.c
18395
18396 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18397 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18398 M:      Vladimir Zapolskiy <vz@mleia.com>
18399 L:      linux-crypto@vger.kernel.org
18400 L:      linux-samsung-soc@vger.kernel.org
18401 S:      Maintained
18402 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18403 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18404 F:      drivers/crypto/s5p-sss.c
18405
18406 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18407 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18408 L:      linux-media@vger.kernel.org
18409 S:      Supported
18410 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18411 F:      drivers/media/platform/samsung/exynos4-is/
18412
18413 SAMSUNG SOC CLOCK DRIVERS
18414 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18415 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18416 M:      Tomasz Figa <tomasz.figa@gmail.com>
18417 M:      Chanwoo Choi <cw00.choi@samsung.com>
18418 R:      Alim Akhtar <alim.akhtar@samsung.com>
18419 L:      linux-samsung-soc@vger.kernel.org
18420 S:      Supported
18421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18423 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18424 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18425 F:      drivers/clk/samsung/
18426 F:      include/dt-bindings/clock/exynos*.h
18427 F:      include/dt-bindings/clock/s5p*.h
18428 F:      include/dt-bindings/clock/samsung,*.h
18429 F:      include/linux/clk/samsung.h
18430
18431 SAMSUNG SPI DRIVERS
18432 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18433 M:      Andi Shyti <andi@etezian.org>
18434 L:      linux-spi@vger.kernel.org
18435 L:      linux-samsung-soc@vger.kernel.org
18436 S:      Maintained
18437 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18438 F:      drivers/spi/spi-s3c*
18439 F:      include/linux/platform_data/spi-s3c64xx.h
18440
18441 SAMSUNG SXGBE DRIVERS
18442 M:      Byungho An <bh74.an@samsung.com>
18443 L:      netdev@vger.kernel.org
18444 S:      Supported
18445 F:      drivers/net/ethernet/samsung/sxgbe/
18446
18447 SAMSUNG THERMAL DRIVER
18448 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18449 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18450 L:      linux-pm@vger.kernel.org
18451 L:      linux-samsung-soc@vger.kernel.org
18452 S:      Maintained
18453 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18454 F:      drivers/thermal/samsung/
18455
18456 SAMSUNG USB2 PHY DRIVER
18457 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18458 L:      linux-kernel@vger.kernel.org
18459 S:      Supported
18460 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18461 F:      Documentation/driver-api/phy/samsung-usb2.rst
18462 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18463 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18464 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18465 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18466 F:      drivers/phy/samsung/phy-samsung-usb2.c
18467 F:      drivers/phy/samsung/phy-samsung-usb2.h
18468
18469 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18470 M:      Paul Barker <paul.barker@sancloud.com>
18471 R:      Marc Murphy <marc.murphy@sancloud.com>
18472 S:      Supported
18473 F:      arch/arm/boot/dts/am335x-sancloud*
18474
18475 SC1200 WDT DRIVER
18476 M:      Zwane Mwaikambo <zwanem@gmail.com>
18477 S:      Maintained
18478 F:      drivers/watchdog/sc1200wdt.c
18479
18480 SCHEDULER
18481 M:      Ingo Molnar <mingo@redhat.com>
18482 M:      Peter Zijlstra <peterz@infradead.org>
18483 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18484 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18485 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18486 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18487 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18488 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18489 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18490 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18491 L:      linux-kernel@vger.kernel.org
18492 S:      Maintained
18493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18494 F:      include/linux/preempt.h
18495 F:      include/linux/sched.h
18496 F:      include/linux/wait.h
18497 F:      include/uapi/linux/sched.h
18498 F:      kernel/sched/
18499
18500 SCR24X CHIP CARD INTERFACE DRIVER
18501 M:      Lubomir Rintel <lkundrak@v3.sk>
18502 S:      Supported
18503 F:      drivers/char/pcmcia/scr24x_cs.c
18504
18505 SCSI RDMA PROTOCOL (SRP) INITIATOR
18506 M:      Bart Van Assche <bvanassche@acm.org>
18507 L:      linux-rdma@vger.kernel.org
18508 S:      Supported
18509 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18510 F:      drivers/infiniband/ulp/srp/
18511 F:      include/scsi/srp.h
18512
18513 SCSI RDMA PROTOCOL (SRP) TARGET
18514 M:      Bart Van Assche <bvanassche@acm.org>
18515 L:      linux-rdma@vger.kernel.org
18516 L:      target-devel@vger.kernel.org
18517 S:      Supported
18518 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18519 F:      drivers/infiniband/ulp/srpt/
18520
18521 SCSI SG DRIVER
18522 M:      Doug Gilbert <dgilbert@interlog.com>
18523 L:      linux-scsi@vger.kernel.org
18524 S:      Maintained
18525 W:      http://sg.danny.cz/sg
18526 F:      Documentation/scsi/scsi-generic.rst
18527 F:      drivers/scsi/sg.c
18528 F:      include/scsi/sg.h
18529
18530 SCSI SUBSYSTEM
18531 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18532 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18533 L:      linux-scsi@vger.kernel.org
18534 S:      Maintained
18535 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18538 F:      Documentation/devicetree/bindings/scsi/
18539 F:      drivers/scsi/
18540 F:      drivers/ufs/
18541 F:      include/scsi/
18542
18543 SCSI TAPE DRIVER
18544 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18545 L:      linux-scsi@vger.kernel.org
18546 S:      Maintained
18547 F:      Documentation/scsi/st.rst
18548 F:      drivers/scsi/st.*
18549 F:      drivers/scsi/st_*.h
18550
18551 SCSI TARGET CORE USER DRIVER
18552 M:      Bodo Stroesser <bostroesser@gmail.com>
18553 L:      linux-scsi@vger.kernel.org
18554 L:      target-devel@vger.kernel.org
18555 S:      Supported
18556 F:      Documentation/target/tcmu-design.rst
18557 F:      drivers/target/target_core_user.c
18558 F:      include/uapi/linux/target_core_user.h
18559
18560 SCSI TARGET SUBSYSTEM
18561 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18562 L:      linux-scsi@vger.kernel.org
18563 L:      target-devel@vger.kernel.org
18564 S:      Supported
18565 W:      http://www.linux-iscsi.org
18566 Q:      https://patchwork.kernel.org/project/target-devel/list/
18567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18568 F:      Documentation/target/
18569 F:      drivers/target/
18570 F:      include/target/
18571
18572 SCTP PROTOCOL
18573 M:      Neil Horman <nhorman@tuxdriver.com>
18574 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18575 M:      Xin Long <lucien.xin@gmail.com>
18576 L:      linux-sctp@vger.kernel.org
18577 S:      Maintained
18578 W:      http://lksctp.sourceforge.net
18579 F:      Documentation/networking/sctp.rst
18580 F:      include/linux/sctp.h
18581 F:      include/net/sctp/
18582 F:      include/uapi/linux/sctp.h
18583 F:      net/sctp/
18584
18585 SCx200 CPU SUPPORT
18586 M:      Jim Cromie <jim.cromie@gmail.com>
18587 S:      Odd Fixes
18588 F:      Documentation/i2c/busses/scx200_acb.rst
18589 F:      arch/x86/platform/scx200/
18590 F:      drivers/i2c/busses/scx200*
18591 F:      drivers/mtd/maps/scx200_docflash.c
18592 F:      drivers/watchdog/scx200_wdt.c
18593 F:      include/linux/scx200.h
18594
18595 SCx200 GPIO DRIVER
18596 M:      Jim Cromie <jim.cromie@gmail.com>
18597 S:      Maintained
18598 F:      drivers/char/scx200_gpio.c
18599 F:      include/linux/scx200_gpio.h
18600
18601 SCx200 HRT CLOCKSOURCE DRIVER
18602 M:      Jim Cromie <jim.cromie@gmail.com>
18603 S:      Maintained
18604 F:      drivers/clocksource/scx200_hrt.c
18605
18606 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18607 M:      Sascha Sommer <saschasommer@freenet.de>
18608 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18609 S:      Maintained
18610 F:      drivers/mmc/host/sdricoh_cs.c
18611
18612 SECO BOARDS CEC DRIVER
18613 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18614 S:      Maintained
18615 F:      drivers/media/cec/platform/seco/seco-cec.c
18616 F:      drivers/media/cec/platform/seco/seco-cec.h
18617
18618 SECURE COMPUTING
18619 M:      Kees Cook <keescook@chromium.org>
18620 R:      Andy Lutomirski <luto@amacapital.net>
18621 R:      Will Drewry <wad@chromium.org>
18622 S:      Supported
18623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18624 F:      Documentation/userspace-api/seccomp_filter.rst
18625 F:      include/linux/seccomp.h
18626 F:      include/uapi/linux/seccomp.h
18627 F:      kernel/seccomp.c
18628 F:      tools/testing/selftests/kselftest_harness.h
18629 F:      tools/testing/selftests/seccomp/*
18630 K:      \bsecure_computing
18631 K:      \bTIF_SECCOMP\b
18632
18633 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18634 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18635 M:      Al Cooper <alcooperx@gmail.com>
18636 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18637 L:      linux-mmc@vger.kernel.org
18638 S:      Maintained
18639 F:      drivers/mmc/host/sdhci-brcmstb*
18640
18641 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18642 M:      Adrian Hunter <adrian.hunter@intel.com>
18643 L:      linux-mmc@vger.kernel.org
18644 S:      Supported
18645 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18646 F:      drivers/mmc/host/sdhci*
18647
18648 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18649 M:      Eugen Hristev <eugen.hristev@microchip.com>
18650 L:      linux-mmc@vger.kernel.org
18651 S:      Supported
18652 F:      drivers/mmc/host/sdhci-of-at91.c
18653
18654 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18655 M:      Ben Dooks <ben-linux@fluff.org>
18656 M:      Jaehoon Chung <jh80.chung@samsung.com>
18657 L:      linux-mmc@vger.kernel.org
18658 S:      Maintained
18659 F:      drivers/mmc/host/sdhci-s3c*
18660
18661 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18662 M:      Viresh Kumar <vireshk@kernel.org>
18663 L:      linux-mmc@vger.kernel.org
18664 S:      Maintained
18665 F:      drivers/mmc/host/sdhci-spear.c
18666
18667 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18668 M:      Vignesh Raghavendra <vigneshr@ti.com>
18669 L:      linux-mmc@vger.kernel.org
18670 S:      Maintained
18671 F:      drivers/mmc/host/sdhci-omap.c
18672
18673 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18674 M:      Haibo Chen <haibo.chen@nxp.com>
18675 L:      linux-imx@nxp.com
18676 L:      linux-mmc@vger.kernel.org
18677 S:      Maintained
18678 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18679
18680 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18681 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18682 L:      linux-block@vger.kernel.org
18683 S:      Supported
18684 F:      block/opal_proto.h
18685 F:      block/sed*
18686 F:      include/linux/sed*
18687 F:      include/uapi/linux/sed*
18688
18689 SECURITY CONTACT
18690 M:      Security Officers <security@kernel.org>
18691 S:      Supported
18692 F:      Documentation/admin-guide/security-bugs.rst
18693
18694 SECURITY SUBSYSTEM
18695 M:      Paul Moore <paul@paul-moore.com>
18696 M:      James Morris <jmorris@namei.org>
18697 M:      "Serge E. Hallyn" <serge@hallyn.com>
18698 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18699 S:      Supported
18700 W:      http://kernsec.org/
18701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18702 F:      security/
18703 X:      security/selinux/
18704
18705 SELINUX SECURITY MODULE
18706 M:      Paul Moore <paul@paul-moore.com>
18707 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18708 M:      Eric Paris <eparis@parisplace.org>
18709 L:      selinux@vger.kernel.org
18710 S:      Supported
18711 W:      https://selinuxproject.org
18712 W:      https://github.com/SELinuxProject
18713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18714 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18715 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18716 F:      Documentation/admin-guide/LSM/SELinux.rst
18717 F:      include/trace/events/avc.h
18718 F:      include/uapi/linux/selinux_netlink.h
18719 F:      scripts/selinux/
18720 F:      security/selinux/
18721
18722 SENSABLE PHANTOM
18723 M:      Jiri Slaby <jirislaby@kernel.org>
18724 S:      Maintained
18725 F:      drivers/misc/phantom.c
18726 F:      include/uapi/linux/phantom.h
18727
18728 SENSEAIR SUNRISE 006-0-0007
18729 M:      Jacopo Mondi <jacopo@jmondi.org>
18730 S:      Maintained
18731 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18732 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18733 F:      drivers/iio/chemical/sunrise_co2.c
18734
18735 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18736 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18737 S:      Maintained
18738 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18739 F:      drivers/iio/chemical/scd30.h
18740 F:      drivers/iio/chemical/scd30_core.c
18741 F:      drivers/iio/chemical/scd30_i2c.c
18742 F:      drivers/iio/chemical/scd30_serial.c
18743
18744 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18745 M:      Roan van Dijk <roan@protonic.nl>
18746 S:      Maintained
18747 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18748 F:      drivers/iio/chemical/scd4x.c
18749
18750 SENSIRION SGP40 GAS SENSOR DRIVER
18751 M:      Andreas Klinger <ak@it-klinger.de>
18752 S:      Maintained
18753 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18754 F:      drivers/iio/chemical/sgp40.c
18755
18756 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18757 M:      Tomasz Duszynski <tduszyns@gmail.com>
18758 S:      Maintained
18759 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18760 F:      drivers/iio/chemical/sps30.c
18761 F:      drivers/iio/chemical/sps30_i2c.c
18762 F:      drivers/iio/chemical/sps30_serial.c
18763
18764 SERIAL DEVICE BUS
18765 M:      Rob Herring <robh@kernel.org>
18766 L:      linux-serial@vger.kernel.org
18767 S:      Maintained
18768 F:      Documentation/devicetree/bindings/serial/serial.yaml
18769 F:      drivers/tty/serdev/
18770 F:      include/linux/serdev.h
18771
18772 SERIAL DRIVERS
18773 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18774 L:      linux-serial@vger.kernel.org
18775 S:      Maintained
18776 F:      Documentation/devicetree/bindings/serial/
18777 F:      drivers/tty/serial/
18778
18779 SERIAL IR RECEIVER
18780 M:      Sean Young <sean@mess.org>
18781 L:      linux-media@vger.kernel.org
18782 S:      Maintained
18783 F:      drivers/media/rc/serial_ir.c
18784
18785 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18786 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18787 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18788 S:      Maintained
18789 F:      Documentation/devicetree/bindings/slimbus/
18790 F:      drivers/slimbus/
18791 F:      include/linux/slimbus.h
18792
18793 SFC NETWORK DRIVER
18794 M:      Edward Cree <ecree.xilinx@gmail.com>
18795 M:      Martin Habets <habetsm.xilinx@gmail.com>
18796 L:      netdev@vger.kernel.org
18797 S:      Supported
18798 F:      Documentation/networking/devlink/sfc.rst
18799 F:      drivers/net/ethernet/sfc/
18800
18801 SFF/SFP/SFP+ MODULE SUPPORT
18802 M:      Russell King <linux@armlinux.org.uk>
18803 L:      netdev@vger.kernel.org
18804 S:      Maintained
18805 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18806 F:      drivers/net/phy/phylink.c
18807 F:      drivers/net/phy/sfp*
18808 F:      include/linux/mdio/mdio-i2c.h
18809 F:      include/linux/phylink.h
18810 F:      include/linux/sfp.h
18811 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)
18812
18813 SGI GRU DRIVER
18814 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18815 S:      Maintained
18816 F:      drivers/misc/sgi-gru/
18817
18818 SGI XP/XPC/XPNET DRIVER
18819 M:      Robin Holt <robinmholt@gmail.com>
18820 M:      Steve Wahl <steve.wahl@hpe.com>
18821 R:      Mike Travis <mike.travis@hpe.com>
18822 S:      Maintained
18823 F:      drivers/misc/sgi-xp/
18824
18825 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18826 M:      Karsten Graul <kgraul@linux.ibm.com>
18827 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18828 M:      Jan Karcher <jaka@linux.ibm.com>
18829 L:      linux-s390@vger.kernel.org
18830 S:      Supported
18831 F:      net/smc/
18832
18833 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18834 M:      Linus Walleij <linus.walleij@linaro.org>
18835 L:      linux-iio@vger.kernel.org
18836 S:      Maintained
18837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18838 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18839 F:      drivers/iio/light/gp2ap002.c
18840
18841 SHARP RJ54N1CB0C SENSOR DRIVER
18842 M:      Jacopo Mondi <jacopo@jmondi.org>
18843 L:      linux-media@vger.kernel.org
18844 S:      Odd fixes
18845 T:      git git://linuxtv.org/media_tree.git
18846 F:      drivers/media/i2c/rj54n1cb0c.c
18847 F:      include/media/i2c/rj54n1cb0c.h
18848
18849 SH_VOU V4L2 OUTPUT DRIVER
18850 L:      linux-media@vger.kernel.org
18851 S:      Orphan
18852 F:      drivers/media/platform/renesas/sh_vou.c
18853 F:      include/media/drv-intf/sh_vou.h
18854
18855 SI2157 MEDIA DRIVER
18856 M:      Antti Palosaari <crope@iki.fi>
18857 L:      linux-media@vger.kernel.org
18858 S:      Maintained
18859 W:      https://linuxtv.org
18860 W:      http://palosaari.fi/linux/
18861 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18862 T:      git git://linuxtv.org/anttip/media_tree.git
18863 F:      drivers/media/tuners/si2157*
18864
18865 SI2165 MEDIA DRIVER
18866 M:      Matthias Schwarzott <zzam@gentoo.org>
18867 L:      linux-media@vger.kernel.org
18868 S:      Maintained
18869 W:      https://linuxtv.org
18870 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18871 F:      drivers/media/dvb-frontends/si2165*
18872
18873 SI2168 MEDIA DRIVER
18874 M:      Antti Palosaari <crope@iki.fi>
18875 L:      linux-media@vger.kernel.org
18876 S:      Maintained
18877 W:      https://linuxtv.org
18878 W:      http://palosaari.fi/linux/
18879 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18880 T:      git git://linuxtv.org/anttip/media_tree.git
18881 F:      drivers/media/dvb-frontends/si2168*
18882
18883 SI470X FM RADIO RECEIVER I2C DRIVER
18884 M:      Hans Verkuil <hverkuil@xs4all.nl>
18885 L:      linux-media@vger.kernel.org
18886 S:      Odd Fixes
18887 W:      https://linuxtv.org
18888 T:      git git://linuxtv.org/media_tree.git
18889 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18890
18891 SI470X FM RADIO RECEIVER USB DRIVER
18892 M:      Hans Verkuil <hverkuil@xs4all.nl>
18893 L:      linux-media@vger.kernel.org
18894 S:      Maintained
18895 W:      https://linuxtv.org
18896 T:      git git://linuxtv.org/media_tree.git
18897 F:      drivers/media/radio/si470x/radio-si470x-common.c
18898 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18899 F:      drivers/media/radio/si470x/radio-si470x.h
18900
18901 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18902 M:      Eduardo Valentin <edubezval@gmail.com>
18903 L:      linux-media@vger.kernel.org
18904 S:      Odd Fixes
18905 W:      https://linuxtv.org
18906 T:      git git://linuxtv.org/media_tree.git
18907 F:      drivers/media/radio/si4713/si4713.?
18908
18909 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18910 M:      Eduardo Valentin <edubezval@gmail.com>
18911 L:      linux-media@vger.kernel.org
18912 S:      Odd Fixes
18913 W:      https://linuxtv.org
18914 T:      git git://linuxtv.org/media_tree.git
18915 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18916
18917 SI4713 FM RADIO TRANSMITTER USB DRIVER
18918 M:      Hans Verkuil <hverkuil@xs4all.nl>
18919 L:      linux-media@vger.kernel.org
18920 S:      Maintained
18921 W:      https://linuxtv.org
18922 T:      git git://linuxtv.org/media_tree.git
18923 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18924
18925 SIANO DVB DRIVER
18926 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18927 L:      linux-media@vger.kernel.org
18928 S:      Odd fixes
18929 W:      https://linuxtv.org
18930 T:      git git://linuxtv.org/media_tree.git
18931 F:      drivers/media/common/siano/
18932 F:      drivers/media/mmc/siano/
18933 F:      drivers/media/usb/siano/
18934 F:      drivers/media/usb/siano/
18935
18936 SIFIVE DRIVERS
18937 M:      Palmer Dabbelt <palmer@dabbelt.com>
18938 M:      Paul Walmsley <paul.walmsley@sifive.com>
18939 L:      linux-riscv@lists.infradead.org
18940 S:      Supported
18941 N:      sifive
18942 K:      [^@]sifive
18943
18944 SIFIVE FU540 SYSTEM-ON-CHIP
18945 M:      Paul Walmsley <paul.walmsley@sifive.com>
18946 M:      Palmer Dabbelt <palmer@dabbelt.com>
18947 L:      linux-riscv@lists.infradead.org
18948 S:      Supported
18949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18950 N:      fu540
18951 K:      fu540
18952
18953 SIFIVE PDMA DRIVER
18954 M:      Green Wan <green.wan@sifive.com>
18955 S:      Maintained
18956 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18957 F:      drivers/dma/sf-pdma/
18958
18959 SIFIVE SOC DRIVERS
18960 M:      Conor Dooley <conor@kernel.org>
18961 L:      linux-riscv@lists.infradead.org
18962 S:      Maintained
18963 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18964 F:      drivers/soc/sifive/
18965
18966 SILEAD TOUCHSCREEN DRIVER
18967 M:      Hans de Goede <hdegoede@redhat.com>
18968 L:      linux-input@vger.kernel.org
18969 L:      platform-driver-x86@vger.kernel.org
18970 S:      Maintained
18971 F:      drivers/input/touchscreen/silead.c
18972 F:      drivers/platform/x86/touchscreen_dmi.c
18973
18974 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18975 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18976 S:      Supported
18977 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18978 F:      drivers/net/wireless/silabs/wfx/
18979
18980 SILICON MOTION SM712 FRAME BUFFER DRIVER
18981 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18982 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18983 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18984 L:      linux-fbdev@vger.kernel.org
18985 S:      Maintained
18986 F:      Documentation/fb/sm712fb.rst
18987 F:      drivers/video/fbdev/sm712*
18988
18989 SILVACO I3C DUAL-ROLE MASTER
18990 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18991 M:      Conor Culhane <conor.culhane@silvaco.com>
18992 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18993 S:      Maintained
18994 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18995 F:      drivers/i3c/master/svc-i3c-master.c
18996
18997 SIMPLEFB FB DRIVER
18998 M:      Hans de Goede <hdegoede@redhat.com>
18999 L:      linux-fbdev@vger.kernel.org
19000 S:      Maintained
19001 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19002 F:      drivers/video/fbdev/simplefb.c
19003 F:      include/linux/platform_data/simplefb.h
19004
19005 SIMTEC EB110ATX (Chalice CATS)
19006 M:      Simtec Linux Team <linux@simtec.co.uk>
19007 S:      Supported
19008 W:      http://www.simtec.co.uk/products/EB110ATX/
19009
19010 SIOX
19011 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19012 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19013 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19014 S:      Supported
19015 F:      drivers/gpio/gpio-siox.c
19016 F:      drivers/siox/*
19017 F:      include/trace/events/siox.h
19018
19019 SIPHASH PRF ROUTINES
19020 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19021 S:      Maintained
19022 F:      include/linux/siphash.h
19023 F:      lib/siphash.c
19024 F:      lib/siphash_kunit.c
19025
19026 SIS 190 ETHERNET DRIVER
19027 M:      Francois Romieu <romieu@fr.zoreil.com>
19028 L:      netdev@vger.kernel.org
19029 S:      Maintained
19030 F:      drivers/net/ethernet/sis/sis190.c
19031
19032 SIS 900/7016 FAST ETHERNET DRIVER
19033 M:      Daniele Venzano <venza@brownhat.org>
19034 L:      netdev@vger.kernel.org
19035 S:      Maintained
19036 W:      http://www.brownhat.org/sis900.html
19037 F:      drivers/net/ethernet/sis/sis900.*
19038
19039 SIS FRAMEBUFFER DRIVER
19040 M:      Thomas Winischhofer <thomas@winischhofer.net>
19041 S:      Maintained
19042 W:      http://www.winischhofer.net/linuxsisvga.shtml
19043 F:      Documentation/fb/sisfb.rst
19044 F:      drivers/video/fbdev/sis/
19045 F:      include/video/sisfb.h
19046
19047 SIS I2C TOUCHSCREEN DRIVER
19048 M:      Mika Penttilä <mpenttil@redhat.com>
19049 L:      linux-input@vger.kernel.org
19050 S:      Maintained
19051 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19052 F:      drivers/input/touchscreen/sis_i2c.c
19053
19054 SIS USB2VGA DRIVER
19055 M:      Thomas Winischhofer <thomas@winischhofer.net>
19056 S:      Maintained
19057 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19058 F:      drivers/usb/misc/sisusbvga/
19059
19060 SL28 CPLD MFD DRIVER
19061 M:      Michael Walle <michael@walle.cc>
19062 S:      Maintained
19063 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19064 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19065 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19066 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19067 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19068 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19069 F:      drivers/gpio/gpio-sl28cpld.c
19070 F:      drivers/hwmon/sl28cpld-hwmon.c
19071 F:      drivers/irqchip/irq-sl28cpld.c
19072 F:      drivers/pwm/pwm-sl28cpld.c
19073 F:      drivers/watchdog/sl28cpld_wdt.c
19074
19075 SLAB ALLOCATOR
19076 M:      Christoph Lameter <cl@linux.com>
19077 M:      Pekka Enberg <penberg@kernel.org>
19078 M:      David Rientjes <rientjes@google.com>
19079 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19080 M:      Andrew Morton <akpm@linux-foundation.org>
19081 M:      Vlastimil Babka <vbabka@suse.cz>
19082 R:      Roman Gushchin <roman.gushchin@linux.dev>
19083 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19084 L:      linux-mm@kvack.org
19085 S:      Maintained
19086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19087 F:      include/linux/sl?b*.h
19088 F:      mm/sl?b*
19089
19090 SLCAN CAN NETWORK DRIVER
19091 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19092 L:      linux-can@vger.kernel.org
19093 S:      Maintained
19094 F:      drivers/net/can/slcan/
19095
19096 SLEEPABLE READ-COPY UPDATE (SRCU)
19097 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19098 M:      "Paul E. McKenney" <paulmck@kernel.org>
19099 M:      Josh Triplett <josh@joshtriplett.org>
19100 R:      Steven Rostedt <rostedt@goodmis.org>
19101 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19102 L:      rcu@vger.kernel.org
19103 S:      Supported
19104 W:      http://www.rdrop.com/users/paulmck/RCU/
19105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19106 F:      include/linux/srcu*.h
19107 F:      kernel/rcu/srcu*.c
19108
19109 SMACK SECURITY MODULE
19110 M:      Casey Schaufler <casey@schaufler-ca.com>
19111 L:      linux-security-module@vger.kernel.org
19112 S:      Maintained
19113 W:      http://schaufler-ca.com
19114 T:      git git://github.com/cschaufler/smack-next
19115 F:      Documentation/admin-guide/LSM/Smack.rst
19116 F:      security/smack/
19117
19118 SMC91x ETHERNET DRIVER
19119 M:      Nicolas Pitre <nico@fluxnic.net>
19120 S:      Odd Fixes
19121 F:      drivers/net/ethernet/smsc/smc91x.*
19122
19123 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19124 M:      Mark Rutland <mark.rutland@arm.com>
19125 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19126 M:      Sudeep Holla <sudeep.holla@arm.com>
19127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19128 S:      Maintained
19129 F:      drivers/firmware/smccc/
19130 F:      include/linux/arm-smccc.h
19131
19132 SMM665 HARDWARE MONITOR DRIVER
19133 M:      Guenter Roeck <linux@roeck-us.net>
19134 L:      linux-hwmon@vger.kernel.org
19135 S:      Maintained
19136 F:      Documentation/hwmon/smm665.rst
19137 F:      drivers/hwmon/smm665.c
19138
19139 SMSC EMC2103 HARDWARE MONITOR DRIVER
19140 M:      Steve Glendinning <steve.glendinning@shawell.net>
19141 L:      linux-hwmon@vger.kernel.org
19142 S:      Maintained
19143 F:      Documentation/hwmon/emc2103.rst
19144 F:      drivers/hwmon/emc2103.c
19145
19146 SMSC SCH5627 HARDWARE MONITOR DRIVER
19147 M:      Hans de Goede <hdegoede@redhat.com>
19148 L:      linux-hwmon@vger.kernel.org
19149 S:      Supported
19150 F:      Documentation/hwmon/sch5627.rst
19151 F:      drivers/hwmon/sch5627.c
19152
19153 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19154 M:      Steve Glendinning <steve.glendinning@shawell.net>
19155 L:      linux-fbdev@vger.kernel.org
19156 S:      Maintained
19157 F:      drivers/video/fbdev/smscufx.c
19158
19159 SMSC47B397 HARDWARE MONITOR DRIVER
19160 M:      Jean Delvare <jdelvare@suse.com>
19161 L:      linux-hwmon@vger.kernel.org
19162 S:      Maintained
19163 F:      Documentation/hwmon/smsc47b397.rst
19164 F:      drivers/hwmon/smsc47b397.c
19165
19166 SMSC911x ETHERNET DRIVER
19167 M:      Steve Glendinning <steve.glendinning@shawell.net>
19168 L:      netdev@vger.kernel.org
19169 S:      Maintained
19170 F:      drivers/net/ethernet/smsc/smsc911x.*
19171 F:      include/linux/smsc911x.h
19172
19173 SMSC9420 PCI ETHERNET DRIVER
19174 M:      Steve Glendinning <steve.glendinning@shawell.net>
19175 L:      netdev@vger.kernel.org
19176 S:      Maintained
19177 F:      drivers/net/ethernet/smsc/smsc9420.*
19178
19179 SOCIONEXT (SNI) AVE NETWORK DRIVER
19180 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19181 L:      netdev@vger.kernel.org
19182 S:      Maintained
19183 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19184 F:      drivers/net/ethernet/socionext/sni_ave.c
19185
19186 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19187 M:      Jassi Brar <jaswinder.singh@linaro.org>
19188 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19189 L:      netdev@vger.kernel.org
19190 S:      Maintained
19191 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19192 F:      drivers/net/ethernet/socionext/netsec.c
19193
19194 SOCIONEXT (SNI) Synquacer SPI DRIVER
19195 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19196 M:      Jassi Brar <jaswinder.singh@linaro.org>
19197 L:      linux-spi@vger.kernel.org
19198 S:      Maintained
19199 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19200 F:      drivers/spi/spi-synquacer.c
19201
19202 SOCIONEXT SYNQUACER I2C DRIVER
19203 M:      Ard Biesheuvel <ardb@kernel.org>
19204 L:      linux-i2c@vger.kernel.org
19205 S:      Maintained
19206 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
19207 F:      drivers/i2c/busses/i2c-synquacer.c
19208
19209 SOCIONEXT UNIPHIER SOUND DRIVER
19210 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19211 S:      Orphan
19212 F:      sound/soc/uniphier/
19213
19214 SOCKET TIMESTAMPING
19215 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19216 S:      Maintained
19217 F:      Documentation/networking/timestamping.rst
19218 F:      include/uapi/linux/net_tstamp.h
19219 F:      tools/testing/selftests/net/so_txtime.c
19220
19221 SOEKRIS NET48XX LED SUPPORT
19222 M:      Chris Boot <bootc@bootc.net>
19223 S:      Maintained
19224 F:      drivers/leds/leds-net48xx.c
19225
19226 SOFT-IWARP DRIVER (siw)
19227 M:      Bernard Metzler <bmt@zurich.ibm.com>
19228 L:      linux-rdma@vger.kernel.org
19229 S:      Supported
19230 F:      drivers/infiniband/sw/siw/
19231 F:      include/uapi/rdma/siw-abi.h
19232
19233 SOFT-ROCE DRIVER (rxe)
19234 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19235 L:      linux-rdma@vger.kernel.org
19236 S:      Supported
19237 F:      drivers/infiniband/sw/rxe/
19238 F:      include/uapi/rdma/rdma_user_rxe.h
19239
19240 SOFTLOGIC 6x10 MPEG CODEC
19241 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19242 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19243 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19244 M:      Ismael Luceno <ismael@iodev.co.uk>
19245 L:      linux-media@vger.kernel.org
19246 S:      Supported
19247 F:      drivers/media/pci/solo6x10/
19248
19249 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19250 M:      James Morse <james.morse@arm.com>
19251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19252 S:      Maintained
19253 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19254 F:      drivers/firmware/arm_sdei.c
19255 F:      include/linux/arm_sdei.h
19256 F:      include/uapi/linux/arm_sdei.h
19257
19258 SOFTWARE NODES AND DEVICE PROPERTIES
19259 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19260 R:      Daniel Scally <djrscally@gmail.com>
19261 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19262 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19263 L:      linux-acpi@vger.kernel.org
19264 S:      Maintained
19265 F:      drivers/base/property.c
19266 F:      drivers/base/swnode.c
19267 F:      include/linux/fwnode.h
19268 F:      include/linux/property.h
19269
19270 SOFTWARE RAID (Multiple Disks) SUPPORT
19271 M:      Song Liu <song@kernel.org>
19272 L:      linux-raid@vger.kernel.org
19273 S:      Supported
19274 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19276 F:      drivers/md/Kconfig
19277 F:      drivers/md/Makefile
19278 F:      drivers/md/md*
19279 F:      drivers/md/raid*
19280 F:      include/linux/raid/
19281 F:      include/uapi/linux/raid/
19282
19283 SOLIDRUN CLEARFOG SUPPORT
19284 M:      Russell King <linux@armlinux.org.uk>
19285 S:      Maintained
19286 F:      arch/arm/boot/dts/armada-388-clearfog*
19287 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19288
19289 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19290 M:      Russell King <linux@armlinux.org.uk>
19291 S:      Maintained
19292 F:      arch/arm/boot/dts/imx6*-cubox-i*
19293 F:      arch/arm/boot/dts/imx6*-hummingboard*
19294 F:      arch/arm/boot/dts/imx6*-sr-*
19295
19296 SONIC NETWORK DRIVER
19297 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19298 L:      netdev@vger.kernel.org
19299 S:      Maintained
19300 F:      drivers/net/ethernet/natsemi/sonic.*
19301
19302 SONICS SILICON BACKPLANE DRIVER (SSB)
19303 M:      Michael Buesch <m@bues.ch>
19304 L:      linux-wireless@vger.kernel.org
19305 S:      Maintained
19306 F:      drivers/ssb/
19307 F:      include/linux/ssb/
19308
19309 SONY IMX208 SENSOR DRIVER
19310 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19311 L:      linux-media@vger.kernel.org
19312 S:      Maintained
19313 T:      git git://linuxtv.org/media_tree.git
19314 F:      drivers/media/i2c/imx208.c
19315
19316 SONY IMX214 SENSOR DRIVER
19317 M:      Ricardo Ribalda <ribalda@kernel.org>
19318 L:      linux-media@vger.kernel.org
19319 S:      Maintained
19320 T:      git git://linuxtv.org/media_tree.git
19321 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19322 F:      drivers/media/i2c/imx214.c
19323
19324 SONY IMX219 SENSOR DRIVER
19325 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19326 L:      linux-media@vger.kernel.org
19327 S:      Maintained
19328 T:      git git://linuxtv.org/media_tree.git
19329 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19330 F:      drivers/media/i2c/imx219.c
19331
19332 SONY IMX258 SENSOR DRIVER
19333 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19334 L:      linux-media@vger.kernel.org
19335 S:      Maintained
19336 T:      git git://linuxtv.org/media_tree.git
19337 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19338 F:      drivers/media/i2c/imx258.c
19339
19340 SONY IMX274 SENSOR DRIVER
19341 M:      Leon Luo <leonl@leopardimaging.com>
19342 L:      linux-media@vger.kernel.org
19343 S:      Maintained
19344 T:      git git://linuxtv.org/media_tree.git
19345 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19346 F:      drivers/media/i2c/imx274.c
19347
19348 SONY IMX290 SENSOR DRIVER
19349 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19350 L:      linux-media@vger.kernel.org
19351 S:      Maintained
19352 T:      git git://linuxtv.org/media_tree.git
19353 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19354 F:      drivers/media/i2c/imx290.c
19355
19356 SONY IMX319 SENSOR DRIVER
19357 M:      Bingbu Cao <bingbu.cao@intel.com>
19358 L:      linux-media@vger.kernel.org
19359 S:      Maintained
19360 T:      git git://linuxtv.org/media_tree.git
19361 F:      drivers/media/i2c/imx319.c
19362
19363 SONY IMX334 SENSOR DRIVER
19364 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19365 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19366 L:      linux-media@vger.kernel.org
19367 S:      Maintained
19368 T:      git git://linuxtv.org/media_tree.git
19369 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19370 F:      drivers/media/i2c/imx334.c
19371
19372 SONY IMX335 SENSOR DRIVER
19373 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19374 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19375 L:      linux-media@vger.kernel.org
19376 S:      Maintained
19377 T:      git git://linuxtv.org/media_tree.git
19378 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19379 F:      drivers/media/i2c/imx335.c
19380
19381 SONY IMX355 SENSOR DRIVER
19382 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19383 L:      linux-media@vger.kernel.org
19384 S:      Maintained
19385 T:      git git://linuxtv.org/media_tree.git
19386 F:      drivers/media/i2c/imx355.c
19387
19388 SONY IMX412 SENSOR DRIVER
19389 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19390 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19391 L:      linux-media@vger.kernel.org
19392 S:      Maintained
19393 T:      git git://linuxtv.org/media_tree.git
19394 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19395 F:      drivers/media/i2c/imx412.c
19396
19397 SONY MEMORYSTICK SUBSYSTEM
19398 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19399 M:      Alex Dubov <oakad@yahoo.com>
19400 M:      Ulf Hansson <ulf.hansson@linaro.org>
19401 L:      linux-mmc@vger.kernel.org
19402 S:      Maintained
19403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19404 F:      drivers/memstick/
19405 F:      include/linux/memstick.h
19406
19407 SONY VAIO CONTROL DEVICE DRIVER
19408 M:      Mattia Dongili <malattia@linux.it>
19409 L:      platform-driver-x86@vger.kernel.org
19410 S:      Maintained
19411 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19412 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19413 F:      drivers/char/sonypi.c
19414 F:      drivers/platform/x86/sony-laptop.c
19415 F:      include/linux/sony-laptop.h
19416
19417 SOUND
19418 M:      Jaroslav Kysela <perex@perex.cz>
19419 M:      Takashi Iwai <tiwai@suse.com>
19420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19421 S:      Maintained
19422 W:      http://www.alsa-project.org/
19423 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19425 F:      Documentation/sound/
19426 F:      include/sound/
19427 F:      include/uapi/sound/
19428 F:      sound/
19429 F:      tools/testing/selftests/alsa
19430
19431 SOUND - COMPRESSED AUDIO
19432 M:      Vinod Koul <vkoul@kernel.org>
19433 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19434 S:      Supported
19435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19436 F:      Documentation/sound/designs/compress-offload.rst
19437 F:      include/sound/compress_driver.h
19438 F:      include/uapi/sound/compress_*
19439 F:      sound/core/compress_offload.c
19440 F:      sound/soc/soc-compress.c
19441
19442 SOUND - DMAENGINE HELPERS
19443 M:      Lars-Peter Clausen <lars@metafoo.de>
19444 S:      Supported
19445 F:      include/sound/dmaengine_pcm.h
19446 F:      sound/core/pcm_dmaengine.c
19447 F:      sound/soc/soc-generic-dmaengine-pcm.c
19448
19449 SOUND - ALSA SELFTESTS
19450 M:      Mark Brown <broonie@kernel.org>
19451 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19452 L:      linux-kselftest@vger.kernel.org
19453 S:      Supported
19454 F:      tools/testing/selftests/alsa
19455
19456 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19457 M:      Liam Girdwood <lgirdwood@gmail.com>
19458 M:      Mark Brown <broonie@kernel.org>
19459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19460 S:      Supported
19461 W:      http://alsa-project.org/main/index.php/ASoC
19462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19463 F:      Documentation/devicetree/bindings/sound/
19464 F:      Documentation/sound/soc/
19465 F:      include/dt-bindings/sound/
19466 F:      include/sound/soc*
19467 F:      sound/soc/
19468
19469 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19470 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19471 M:      Liam Girdwood <lgirdwood@gmail.com>
19472 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19473 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19474 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19475 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19476 M:      Daniel Baluta <daniel.baluta@nxp.com>
19477 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19478 S:      Supported
19479 W:      https://github.com/thesofproject/linux/
19480 F:      sound/soc/sof/
19481
19482 SOUNDWIRE SUBSYSTEM
19483 M:      Vinod Koul <vkoul@kernel.org>
19484 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19485 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19486 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19487 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19488 S:      Supported
19489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19490 F:      Documentation/driver-api/soundwire/
19491 F:      drivers/soundwire/
19492 F:      include/linux/soundwire/
19493
19494 SP2 MEDIA DRIVER
19495 M:      Olli Salonen <olli.salonen@iki.fi>
19496 L:      linux-media@vger.kernel.org
19497 S:      Maintained
19498 W:      https://linuxtv.org
19499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19500 F:      drivers/media/dvb-frontends/sp2*
19501
19502 SPANISH DOCUMENTATION
19503 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19504 S:      Maintained
19505 F:      Documentation/translations/sp_SP/
19506
19507 SPARC + UltraSPARC (sparc/sparc64)
19508 M:      "David S. Miller" <davem@davemloft.net>
19509 L:      sparclinux@vger.kernel.org
19510 S:      Maintained
19511 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19514 F:      arch/sparc/
19515 F:      drivers/sbus/
19516
19517 SPARC SERIAL DRIVERS
19518 M:      "David S. Miller" <davem@davemloft.net>
19519 L:      sparclinux@vger.kernel.org
19520 S:      Maintained
19521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19523 F:      drivers/tty/serial/suncore.c
19524 F:      drivers/tty/serial/sunhv.c
19525 F:      drivers/tty/serial/sunsab.c
19526 F:      drivers/tty/serial/sunsab.h
19527 F:      drivers/tty/serial/sunsu.c
19528 F:      drivers/tty/serial/sunzilog.c
19529 F:      drivers/tty/serial/sunzilog.h
19530 F:      drivers/tty/vcc.c
19531 F:      include/linux/sunserialcore.h
19532
19533 SPARSE CHECKER
19534 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19535 L:      linux-sparse@vger.kernel.org
19536 S:      Maintained
19537 W:      https://sparse.docs.kernel.org/
19538 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19539 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19540 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19541 F:      include/linux/compiler.h
19542
19543 SPEAKUP CONSOLE SPEECH DRIVER
19544 M:      William Hubbs <w.d.hubbs@gmail.com>
19545 M:      Chris Brannon <chris@the-brannons.com>
19546 M:      Kirk Reiser <kirk@reisers.ca>
19547 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19548 L:      speakup@linux-speakup.org
19549 S:      Odd Fixes
19550 W:      http://www.linux-speakup.org/
19551 W:      https://github.com/linux-speakup/speakup
19552 B:      https://github.com/linux-speakup/speakup/issues
19553 F:      drivers/accessibility/speakup/
19554
19555 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19556 M:      Viresh Kumar <vireshk@kernel.org>
19557 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19558 M:      soc@kernel.org
19559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19560 S:      Maintained
19561 W:      http://www.st.com/spear
19562 F:      arch/arm/boot/dts/spear*
19563 F:      arch/arm/mach-spear/
19564 F:      drivers/clk/spear/
19565 F:      drivers/pinctrl/spear/
19566
19567 SPI NOR SUBSYSTEM
19568 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19569 M:      Pratyush Yadav <pratyush@kernel.org>
19570 R:      Michael Walle <michael@walle.cc>
19571 L:      linux-mtd@lists.infradead.org
19572 S:      Maintained
19573 W:      http://www.linux-mtd.infradead.org/
19574 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19575 C:      irc://irc.oftc.net/mtd
19576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19577 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19578 F:      drivers/mtd/spi-nor/
19579 F:      include/linux/mtd/spi-nor.h
19580
19581 SPI SUBSYSTEM
19582 M:      Mark Brown <broonie@kernel.org>
19583 L:      linux-spi@vger.kernel.org
19584 S:      Maintained
19585 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19587 F:      Documentation/devicetree/bindings/spi/
19588 F:      Documentation/spi/
19589 F:      drivers/spi/
19590 F:      include/linux/spi/
19591 F:      include/uapi/linux/spi/
19592 F:      tools/spi/
19593
19594 SPIDERNET NETWORK DRIVER for CELL
19595 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19596 M:      Geoff Levand <geoff@infradead.org>
19597 L:      netdev@vger.kernel.org
19598 L:      linuxppc-dev@lists.ozlabs.org
19599 S:      Maintained
19600 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19601 F:      drivers/net/ethernet/toshiba/spider_net*
19602
19603 SPMI SUBSYSTEM
19604 M:      Stephen Boyd <sboyd@kernel.org>
19605 L:      linux-kernel@vger.kernel.org
19606 S:      Maintained
19607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19608 F:      Documentation/devicetree/bindings/spmi/
19609 F:      drivers/spmi/
19610 F:      include/dt-bindings/spmi/spmi.h
19611 F:      include/linux/spmi.h
19612 F:      include/trace/events/spmi.h
19613
19614 SPU FILE SYSTEM
19615 M:      Jeremy Kerr <jk@ozlabs.org>
19616 L:      linuxppc-dev@lists.ozlabs.org
19617 S:      Supported
19618 W:      http://www.ibm.com/developerworks/power/cell/
19619 F:      Documentation/filesystems/spufs/spufs.rst
19620 F:      arch/powerpc/platforms/cell/spufs/
19621
19622 SQUASHFS FILE SYSTEM
19623 M:      Phillip Lougher <phillip@squashfs.org.uk>
19624 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19625 S:      Maintained
19626 W:      http://squashfs.org.uk
19627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19628 F:      Documentation/filesystems/squashfs.rst
19629 F:      fs/squashfs/
19630
19631 SRM (Alpha) environment access
19632 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19633 S:      Maintained
19634 F:      arch/alpha/kernel/srm_env.c
19635
19636 ST LSM6DSx IMU IIO DRIVER
19637 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19638 L:      linux-iio@vger.kernel.org
19639 S:      Maintained
19640 W:      http://www.st.com/
19641 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19642 F:      drivers/iio/imu/st_lsm6dsx/
19643
19644 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19645 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19646 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19647 L:      linux-media@vger.kernel.org
19648 S:      Maintained
19649 T:      git git://linuxtv.org/media_tree.git
19650 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19651 F:      drivers/media/i2c/st-mipid02.c
19652
19653 ST STM32 I2C/SMBUS DRIVER
19654 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19655 M:      Alain Volmat <alain.volmat@foss.st.com>
19656 L:      linux-i2c@vger.kernel.org
19657 S:      Maintained
19658 F:      drivers/i2c/busses/i2c-stm32*
19659
19660 ST STM32 SPI DRIVER
19661 M:      Alain Volmat <alain.volmat@foss.st.com>
19662 L:      linux-spi@vger.kernel.org
19663 S:      Maintained
19664 F:      drivers/spi/spi-stm32.c
19665
19666 ST STPDDC60 DRIVER
19667 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19668 L:      linux-hwmon@vger.kernel.org
19669 S:      Maintained
19670 F:      Documentation/hwmon/stpddc60.rst
19671 F:      drivers/hwmon/pmbus/stpddc60.c
19672
19673 ST VGXY61 DRIVER
19674 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19675 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19676 L:      linux-media@vger.kernel.org
19677 S:      Maintained
19678 T:      git git://linuxtv.org/media_tree.git
19679 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19680 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19681 F:      drivers/media/i2c/st-vgxy61.c
19682
19683 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19684 M:      Song Qiang <songqiang1304521@gmail.com>
19685 L:      linux-iio@vger.kernel.org
19686 S:      Maintained
19687 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19688 F:      drivers/iio/proximity/vl53l0x-i2c.c
19689
19690 STABLE BRANCH
19691 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19692 M:      Sasha Levin <sashal@kernel.org>
19693 L:      stable@vger.kernel.org
19694 S:      Supported
19695 F:      Documentation/process/stable-kernel-rules.rst
19696
19697 STAGING - ATOMISP DRIVER
19698 M:      Hans de Goede <hdegoede@redhat.com>
19699 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19700 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19701 L:      linux-media@vger.kernel.org
19702 S:      Maintained
19703 F:      drivers/staging/media/atomisp/
19704
19705 STAGING - FIELDBUS SUBSYSTEM
19706 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19707 S:      Maintained
19708 F:      drivers/staging/fieldbus/*
19709 F:      drivers/staging/fieldbus/Documentation/
19710
19711 STAGING - HMS ANYBUS-S BUS
19712 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19713 S:      Maintained
19714 F:      drivers/staging/fieldbus/anybuss/
19715
19716 STAGING - INDUSTRIAL IO
19717 M:      Jonathan Cameron <jic23@kernel.org>
19718 L:      linux-iio@vger.kernel.org
19719 S:      Odd Fixes
19720 F:      Documentation/devicetree/bindings/staging/iio/
19721 F:      drivers/staging/iio/
19722
19723 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19724 M:      Marc Dietrich <marvin24@gmx.de>
19725 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19726 L:      linux-tegra@vger.kernel.org
19727 S:      Maintained
19728 F:      drivers/staging/nvec/
19729
19730 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19731 M:      Jens Frederich <jfrederich@gmail.com>
19732 M:      Jon Nettleton <jon.nettleton@gmail.com>
19733 S:      Maintained
19734 W:      http://wiki.laptop.org/go/DCON
19735 F:      drivers/staging/olpc_dcon/
19736
19737 STAGING - REALTEK RTL8188EU DRIVERS
19738 M:      Larry Finger <Larry.Finger@lwfinger.net>
19739 M:      Phillip Potter <phil@philpotter.co.uk>
19740 R:      Pavel Skripkin <paskripkin@gmail.com>
19741 S:      Supported
19742 F:      drivers/staging/r8188eu/
19743
19744 STAGING - REALTEK RTL8712U DRIVERS
19745 M:      Larry Finger <Larry.Finger@lwfinger.net>
19746 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19747 S:      Odd Fixes
19748 F:      drivers/staging/rtl8712/
19749
19750 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19751 M:      Michael Hennerich <michael.hennerich@analog.com>
19752 L:      linux-fbdev@vger.kernel.org
19753 S:      Supported
19754 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19755 F:      drivers/staging/fbtft/fb_seps525.c
19756
19757 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19758 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19759 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19760 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19761 L:      linux-fbdev@vger.kernel.org
19762 S:      Maintained
19763 F:      drivers/staging/sm750fb/
19764
19765 STAGING - VIA VT665X DRIVERS
19766 M:      Forest Bond <forest@alittletooquiet.net>
19767 S:      Odd Fixes
19768 F:      drivers/staging/vt665?/
19769
19770 STAGING SUBSYSTEM
19771 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19772 L:      linux-staging@lists.linux.dev
19773 S:      Supported
19774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19775 F:      drivers/staging/
19776
19777 STARFIRE/DURALAN NETWORK DRIVER
19778 M:      Ion Badulescu <ionut@badula.org>
19779 S:      Odd Fixes
19780 F:      drivers/net/ethernet/adaptec/starfire*
19781
19782 STARFIVE DEVICETREES
19783 M:      Emil Renner Berthing <kernel@esmil.dk>
19784 S:      Maintained
19785 F:      arch/riscv/boot/dts/starfive/
19786
19787 STARFIVE JH7100 CLOCK DRIVERS
19788 M:      Emil Renner Berthing <kernel@esmil.dk>
19789 S:      Maintained
19790 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19791 F:      drivers/clk/starfive/clk-starfive-jh7100*
19792 F:      include/dt-bindings/clock/starfive-jh7100*.h
19793
19794 STARFIVE JH7100 PINCTRL DRIVER
19795 M:      Emil Renner Berthing <kernel@esmil.dk>
19796 L:      linux-gpio@vger.kernel.org
19797 S:      Maintained
19798 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19799 F:      drivers/pinctrl/starfive/
19800 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19801
19802 STARFIVE JH7100 RESET CONTROLLER DRIVER
19803 M:      Emil Renner Berthing <kernel@esmil.dk>
19804 S:      Maintained
19805 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19806 F:      drivers/reset/reset-starfive-jh7100.c
19807 F:      include/dt-bindings/reset/starfive-jh7100.h
19808
19809 STARFIVE TRNG DRIVER
19810 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
19811 S:      Supported
19812 F:      Documentation/devicetree/bindings/rng/starfive*
19813 F:      drivers/char/hw_random/jh7110-trng.c
19814
19815 STATIC BRANCH/CALL
19816 M:      Peter Zijlstra <peterz@infradead.org>
19817 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19818 M:      Jason Baron <jbaron@akamai.com>
19819 R:      Steven Rostedt <rostedt@goodmis.org>
19820 R:      Ard Biesheuvel <ardb@kernel.org>
19821 S:      Supported
19822 F:      arch/*/include/asm/jump_label*.h
19823 F:      arch/*/include/asm/static_call*.h
19824 F:      arch/*/kernel/jump_label.c
19825 F:      arch/*/kernel/static_call.c
19826 F:      include/linux/jump_label*.h
19827 F:      include/linux/static_call*.h
19828 F:      kernel/jump_label.c
19829 F:      kernel/static_call.c
19830
19831 STI AUDIO (ASoC) DRIVERS
19832 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19833 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19834 S:      Maintained
19835 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19836 F:      sound/soc/sti/
19837
19838 STI CEC DRIVER
19839 M:      Alain Volmat <alain.volmat@foss.st.com>
19840 S:      Maintained
19841 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19842 F:      drivers/media/cec/platform/sti/
19843
19844 STK1160 USB VIDEO CAPTURE DRIVER
19845 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19846 L:      linux-media@vger.kernel.org
19847 S:      Maintained
19848 T:      git git://linuxtv.org/media_tree.git
19849 F:      drivers/media/usb/stk1160/
19850
19851 STM32 AUDIO (ASoC) DRIVERS
19852 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19853 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19855 S:      Maintained
19856 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19857 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19858 F:      sound/soc/stm/
19859
19860 STM32 TIMER/LPTIMER DRIVERS
19861 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19862 S:      Maintained
19863 F:      Documentation/ABI/testing/*timer-stm32
19864 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19865 F:      drivers/*/stm32-*timer*
19866 F:      drivers/pwm/pwm-stm32*
19867 F:      include/linux/*/stm32-*tim*
19868
19869 STMMAC ETHERNET DRIVER
19870 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19871 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19872 M:      Jose Abreu <joabreu@synopsys.com>
19873 L:      netdev@vger.kernel.org
19874 S:      Supported
19875 W:      http://www.stlinux.com
19876 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19877 F:      drivers/net/ethernet/stmicro/stmmac/
19878
19879 SUN3/3X
19880 M:      Sam Creasey <sammy@sammy.net>
19881 S:      Maintained
19882 W:      http://sammy.net/sun3/
19883 F:      arch/m68k/include/asm/sun3*
19884 F:      arch/m68k/kernel/*sun3*
19885 F:      arch/m68k/sun3*/
19886 F:      drivers/net/ethernet/i825xx/sun3*
19887
19888 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19889 M:      Hans de Goede <hdegoede@redhat.com>
19890 L:      linux-input@vger.kernel.org
19891 S:      Maintained
19892 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19893 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19894
19895 SUNDANCE NETWORK DRIVER
19896 M:      Denis Kirjanov <kda@linux-powerpc.org>
19897 L:      netdev@vger.kernel.org
19898 S:      Maintained
19899 F:      drivers/net/ethernet/dlink/sundance.c
19900
19901 SUN HAPPY MEAL ETHERNET DRIVER
19902 M:      Sean Anderson <seanga2@gmail.com>
19903 S:      Maintained
19904 F:      drivers/net/ethernet/sun/sunhme.*
19905
19906 SUNPLUS ETHERNET DRIVER
19907 M:      Wells Lu <wellslutw@gmail.com>
19908 L:      netdev@vger.kernel.org
19909 S:      Maintained
19910 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19911 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19912 F:      drivers/net/ethernet/sunplus/
19913
19914 SUNPLUS MMC DRIVER
19915 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
19916 M:      Li-hao Kuo <lhjeff911@gmail.com>
19917 S:      Maintained
19918 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
19919 F:      drivers/mmc/host/sunplus-mmc.c
19920
19921 SUNPLUS OCOTP DRIVER
19922 M:      Vincent Shih <vincent.sunplus@gmail.com>
19923 S:      Maintained
19924 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19925 F:      drivers/nvmem/sunplus-ocotp.c
19926
19927 SUNPLUS USB2 PHY DRIVER
19928 M:      Vincent Shih <vincent.sunplus@gmail.com>
19929 L:      linux-usb@vger.kernel.org
19930 S:      Maintained
19931 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
19932 F:      drivers/phy/sunplus/Kconfig
19933 F:      drivers/phy/sunplus/Makefile
19934 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
19935
19936 SUNPLUS PWM DRIVER
19937 M:      Hammer Hsieh <hammerh0314@gmail.com>
19938 S:      Maintained
19939 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19940 F:      drivers/pwm/pwm-sunplus.c
19941
19942 SUNPLUS RTC DRIVER
19943 M:      Vincent Shih <vincent.sunplus@gmail.com>
19944 L:      linux-rtc@vger.kernel.org
19945 S:      Maintained
19946 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19947 F:      drivers/rtc/rtc-sunplus.c
19948
19949 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19950 M:      Li-hao Kuo <lhjeff911@gmail.com>
19951 L:      linux-spi@vger.kernel.org
19952 S:      Maintained
19953 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19954 F:      drivers/spi/spi-sunplus-sp7021.c
19955
19956 SUNPLUS UART DRIVER
19957 M:      Hammer Hsieh <hammerh0314@gmail.com>
19958 S:      Maintained
19959 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19960 F:      drivers/tty/serial/sunplus-uart.c
19961
19962 SUNPLUS WATCHDOG DRIVER
19963 M:      Xiantao Hu <xt.hu@cqplus1.com>
19964 L:      linux-watchdog@vger.kernel.org
19965 S:      Maintained
19966 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19967 F:      drivers/watchdog/sunplus_wdt.c
19968
19969 SUPERH
19970 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19971 M:      Rich Felker <dalias@libc.org>
19972 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
19973 L:      linux-sh@vger.kernel.org
19974 S:      Maintained
19975 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19976 F:      Documentation/sh/
19977 F:      arch/sh/
19978 F:      drivers/sh/
19979
19980 SUSPEND TO RAM
19981 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19982 M:      Len Brown <len.brown@intel.com>
19983 M:      Pavel Machek <pavel@ucw.cz>
19984 L:      linux-pm@vger.kernel.org
19985 S:      Supported
19986 B:      https://bugzilla.kernel.org
19987 F:      Documentation/power/
19988 F:      arch/x86/kernel/acpi/sleep*
19989 F:      arch/x86/kernel/acpi/wakeup*
19990 F:      drivers/base/power/
19991 F:      include/linux/freezer.h
19992 F:      include/linux/pm.h
19993 F:      include/linux/suspend.h
19994 F:      kernel/power/
19995
19996 SVGA HANDLING
19997 M:      Martin Mares <mj@ucw.cz>
19998 L:      linux-video@atrey.karlin.mff.cuni.cz
19999 S:      Maintained
20000 F:      Documentation/admin-guide/svga.rst
20001 F:      arch/x86/boot/video*
20002
20003 SWITCHDEV
20004 M:      Jiri Pirko <jiri@resnulli.us>
20005 M:      Ivan Vecera <ivecera@redhat.com>
20006 L:      netdev@vger.kernel.org
20007 S:      Supported
20008 F:      include/net/switchdev.h
20009 F:      net/switchdev/
20010
20011 SY8106A REGULATOR DRIVER
20012 M:      Icenowy Zheng <icenowy@aosc.io>
20013 S:      Maintained
20014 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20015 F:      drivers/regulator/sy8106a-regulator.c
20016
20017 SYNC FILE FRAMEWORK
20018 M:      Sumit Semwal <sumit.semwal@linaro.org>
20019 R:      Gustavo Padovan <gustavo@padovan.org>
20020 L:      linux-media@vger.kernel.org
20021 L:      dri-devel@lists.freedesktop.org
20022 S:      Maintained
20023 T:      git git://anongit.freedesktop.org/drm/drm-misc
20024 F:      Documentation/driver-api/sync_file.rst
20025 F:      drivers/dma-buf/dma-fence*
20026 F:      drivers/dma-buf/sw_sync.c
20027 F:      drivers/dma-buf/sync_*
20028 F:      include/linux/sync_file.h
20029 F:      include/uapi/linux/sync_file.h
20030
20031 SYNOPSYS ARC ARCHITECTURE
20032 M:      Vineet Gupta <vgupta@kernel.org>
20033 L:      linux-snps-arc@lists.infradead.org
20034 S:      Supported
20035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20036 F:      Documentation/arc/
20037 F:      Documentation/devicetree/bindings/arc/*
20038 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20039 F:      arch/arc/
20040 F:      drivers/clocksource/arc_timer.c
20041 F:      drivers/tty/serial/arc_uart.c
20042
20043 SYNOPSYS ARC HSDK SDP pll clock driver
20044 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20045 S:      Supported
20046 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20047 F:      drivers/clk/clk-hsdk-pll.c
20048
20049 SYNOPSYS ARC SDP clock driver
20050 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20051 S:      Supported
20052 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20053 F:      drivers/clk/axs10x/*
20054
20055 SYNOPSYS ARC SDP platform support
20056 M:      Alexey Brodkin <abrodkin@synopsys.com>
20057 S:      Supported
20058 F:      Documentation/devicetree/bindings/arc/axs10*
20059 F:      arch/arc/boot/dts/ax*
20060 F:      arch/arc/plat-axs10x
20061
20062 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20063 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20064 S:      Supported
20065 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20066 F:      drivers/reset/reset-axs10x.c
20067
20068 SYNOPSYS CREG GPIO DRIVER
20069 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20070 S:      Maintained
20071 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20072 F:      drivers/gpio/gpio-creg-snps.c
20073
20074 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20075 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20076 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20077 S:      Supported
20078 F:      drivers/tty/serial/8250/8250_dw.c
20079 F:      drivers/tty/serial/8250/8250_dwlib.*
20080 F:      drivers/tty/serial/8250/8250_lpss.c
20081
20082 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20083 M:      Hoan Tran <hoan@os.amperecomputing.com>
20084 M:      Serge Semin <fancer.lancer@gmail.com>
20085 L:      linux-gpio@vger.kernel.org
20086 S:      Maintained
20087 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20088 F:      drivers/gpio/gpio-dwapb.c
20089
20090 SYNOPSYS DESIGNWARE APB SSI DRIVER
20091 M:      Serge Semin <fancer.lancer@gmail.com>
20092 L:      linux-spi@vger.kernel.org
20093 S:      Supported
20094 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20095 F:      drivers/spi/spi-dw*
20096
20097 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20098 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20099 S:      Maintained
20100 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20101 F:      drivers/dma/dw-axi-dmac/
20102
20103 SYNOPSYS DESIGNWARE DMAC DRIVER
20104 M:      Viresh Kumar <vireshk@kernel.org>
20105 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20106 S:      Maintained
20107 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20108 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20109 F:      drivers/dma/dw/
20110 F:      include/dt-bindings/dma/dw-dmac.h
20111 F:      include/linux/dma/dw.h
20112 F:      include/linux/platform_data/dma-dw.h
20113
20114 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20115 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20116 L:      netdev@vger.kernel.org
20117 S:      Supported
20118 F:      drivers/net/ethernet/synopsys/
20119
20120 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20121 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20122 L:      netdev@vger.kernel.org
20123 S:      Supported
20124 F:      drivers/net/pcs/pcs-xpcs.c
20125 F:      drivers/net/pcs/pcs-xpcs.h
20126 F:      include/linux/pcs/pcs-xpcs.h
20127
20128 SYNOPSYS DESIGNWARE I2C DRIVER
20129 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20130 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20131 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20132 R:      Jan Dabros <jsd@semihalf.com>
20133 L:      linux-i2c@vger.kernel.org
20134 S:      Supported
20135 F:      drivers/i2c/busses/i2c-designware-*
20136
20137 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20138 M:      Jaehoon Chung <jh80.chung@samsung.com>
20139 L:      linux-mmc@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/mmc/host/dw_mmc*
20142
20143 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20144 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20145 S:      Supported
20146 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20147 F:      drivers/reset/reset-hsdk.c
20148 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20149
20150 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20151 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20152 M:      Manjunath M B <manjumb@synopsys.com>
20153 L:      linux-mmc@vger.kernel.org
20154 S:      Maintained
20155 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20156
20157 SYSTEM CONFIGURATION (SYSCON)
20158 M:      Lee Jones <lee@kernel.org>
20159 M:      Arnd Bergmann <arnd@arndb.de>
20160 S:      Supported
20161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20162 F:      drivers/mfd/syscon.c
20163
20164 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20165 M:      Sudeep Holla <sudeep.holla@arm.com>
20166 R:      Cristian Marussi <cristian.marussi@arm.com>
20167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20168 S:      Maintained
20169 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20170 F:      drivers/clk/clk-sc[mp]i.c
20171 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20172 F:      drivers/firmware/arm_scmi/
20173 F:      drivers/firmware/arm_scpi.c
20174 F:      drivers/powercap/arm_scmi_powercap.c
20175 F:      drivers/regulator/scmi-regulator.c
20176 F:      drivers/reset/reset-scmi.c
20177 F:      include/linux/sc[mp]i_protocol.h
20178 F:      include/trace/events/scmi.h
20179 F:      include/uapi/linux/virtio_scmi.h
20180
20181 SYSTEM RESET/SHUTDOWN DRIVERS
20182 M:      Sebastian Reichel <sre@kernel.org>
20183 L:      linux-pm@vger.kernel.org
20184 S:      Maintained
20185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20186 F:      Documentation/devicetree/bindings/power/reset/
20187 F:      drivers/power/reset/
20188
20189 SYSTEM TRACE MODULE CLASS
20190 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20191 S:      Maintained
20192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20193 F:      Documentation/trace/stm.rst
20194 F:      drivers/hwtracing/stm/
20195 F:      include/linux/stm.h
20196 F:      include/uapi/linux/stm.h
20197
20198 SYSTEM76 ACPI DRIVER
20199 M:      Jeremy Soller <jeremy@system76.com>
20200 M:      System76 Product Development <productdev@system76.com>
20201 L:      platform-driver-x86@vger.kernel.org
20202 S:      Maintained
20203 F:      drivers/platform/x86/system76_acpi.c
20204
20205 SYSV FILESYSTEM
20206 S:      Orphan
20207 F:      Documentation/filesystems/sysv-fs.rst
20208 F:      fs/sysv/
20209 F:      include/linux/sysv_fs.h
20210
20211 TASKSTATS STATISTICS INTERFACE
20212 M:      Balbir Singh <bsingharora@gmail.com>
20213 S:      Maintained
20214 F:      Documentation/accounting/taskstats*
20215 F:      include/linux/taskstats*
20216 F:      kernel/taskstats.c
20217
20218 TC subsystem
20219 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20220 M:      Cong Wang <xiyou.wangcong@gmail.com>
20221 M:      Jiri Pirko <jiri@resnulli.us>
20222 L:      netdev@vger.kernel.org
20223 S:      Maintained
20224 F:      include/net/pkt_cls.h
20225 F:      include/net/pkt_sched.h
20226 F:      include/net/tc_act/
20227 F:      include/uapi/linux/pkt_cls.h
20228 F:      include/uapi/linux/pkt_sched.h
20229 F:      include/uapi/linux/tc_act/
20230 F:      include/uapi/linux/tc_ematch/
20231 F:      net/sched/
20232 F:      tools/testing/selftests/tc-testing
20233
20234 TC90522 MEDIA DRIVER
20235 M:      Akihiro Tsukada <tskd08@gmail.com>
20236 L:      linux-media@vger.kernel.org
20237 S:      Odd Fixes
20238 F:      drivers/media/dvb-frontends/tc90522*
20239
20240 TCP LOW PRIORITY MODULE
20241 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20242 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20243 S:      Maintained
20244 W:      http://tcp-lp-mod.sourceforge.net/
20245 F:      net/ipv4/tcp_lp.c
20246
20247 TDA10071 MEDIA DRIVER
20248 M:      Antti Palosaari <crope@iki.fi>
20249 L:      linux-media@vger.kernel.org
20250 S:      Maintained
20251 W:      https://linuxtv.org
20252 W:      http://palosaari.fi/linux/
20253 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20254 T:      git git://linuxtv.org/anttip/media_tree.git
20255 F:      drivers/media/dvb-frontends/tda10071*
20256
20257 TDA18212 MEDIA DRIVER
20258 M:      Antti Palosaari <crope@iki.fi>
20259 L:      linux-media@vger.kernel.org
20260 S:      Maintained
20261 W:      https://linuxtv.org
20262 W:      http://palosaari.fi/linux/
20263 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20264 T:      git git://linuxtv.org/anttip/media_tree.git
20265 F:      drivers/media/tuners/tda18212*
20266
20267 TDA18218 MEDIA DRIVER
20268 M:      Antti Palosaari <crope@iki.fi>
20269 L:      linux-media@vger.kernel.org
20270 S:      Maintained
20271 W:      https://linuxtv.org
20272 W:      http://palosaari.fi/linux/
20273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20274 T:      git git://linuxtv.org/anttip/media_tree.git
20275 F:      drivers/media/tuners/tda18218*
20276
20277 TDA18250 MEDIA DRIVER
20278 M:      Olli Salonen <olli.salonen@iki.fi>
20279 L:      linux-media@vger.kernel.org
20280 S:      Maintained
20281 W:      https://linuxtv.org
20282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20283 T:      git git://linuxtv.org/media_tree.git
20284 F:      drivers/media/tuners/tda18250*
20285
20286 TDA18271 MEDIA DRIVER
20287 M:      Michael Krufky <mkrufky@linuxtv.org>
20288 L:      linux-media@vger.kernel.org
20289 S:      Maintained
20290 W:      https://linuxtv.org
20291 W:      http://github.com/mkrufky
20292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20293 T:      git git://linuxtv.org/mkrufky/tuners.git
20294 F:      drivers/media/tuners/tda18271*
20295
20296 TDA1997x MEDIA DRIVER
20297 M:      Tim Harvey <tharvey@gateworks.com>
20298 L:      linux-media@vger.kernel.org
20299 S:      Maintained
20300 W:      https://linuxtv.org
20301 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20302 F:      drivers/media/i2c/tda1997x.*
20303
20304 TDA827x MEDIA DRIVER
20305 M:      Michael Krufky <mkrufky@linuxtv.org>
20306 L:      linux-media@vger.kernel.org
20307 S:      Maintained
20308 W:      https://linuxtv.org
20309 W:      http://github.com/mkrufky
20310 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20311 T:      git git://linuxtv.org/mkrufky/tuners.git
20312 F:      drivers/media/tuners/tda8290.*
20313
20314 TDA8290 MEDIA DRIVER
20315 M:      Michael Krufky <mkrufky@linuxtv.org>
20316 L:      linux-media@vger.kernel.org
20317 S:      Maintained
20318 W:      https://linuxtv.org
20319 W:      http://github.com/mkrufky
20320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20321 T:      git git://linuxtv.org/mkrufky/tuners.git
20322 F:      drivers/media/tuners/tda8290.*
20323
20324 TDA9840 MEDIA DRIVER
20325 M:      Hans Verkuil <hverkuil@xs4all.nl>
20326 L:      linux-media@vger.kernel.org
20327 S:      Maintained
20328 W:      https://linuxtv.org
20329 T:      git git://linuxtv.org/media_tree.git
20330 F:      drivers/media/i2c/tda9840*
20331
20332 TEA5761 TUNER DRIVER
20333 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20334 L:      linux-media@vger.kernel.org
20335 S:      Odd fixes
20336 W:      https://linuxtv.org
20337 T:      git git://linuxtv.org/media_tree.git
20338 F:      drivers/media/tuners/tea5761.*
20339
20340 TEA5767 TUNER DRIVER
20341 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20342 L:      linux-media@vger.kernel.org
20343 S:      Maintained
20344 W:      https://linuxtv.org
20345 T:      git git://linuxtv.org/media_tree.git
20346 F:      drivers/media/tuners/tea5767.*
20347
20348 TEA6415C MEDIA DRIVER
20349 M:      Hans Verkuil <hverkuil@xs4all.nl>
20350 L:      linux-media@vger.kernel.org
20351 S:      Maintained
20352 W:      https://linuxtv.org
20353 T:      git git://linuxtv.org/media_tree.git
20354 F:      drivers/media/i2c/tea6415c*
20355
20356 TEA6420 MEDIA DRIVER
20357 M:      Hans Verkuil <hverkuil@xs4all.nl>
20358 L:      linux-media@vger.kernel.org
20359 S:      Maintained
20360 W:      https://linuxtv.org
20361 T:      git git://linuxtv.org/media_tree.git
20362 F:      drivers/media/i2c/tea6420*
20363
20364 TEAM DRIVER
20365 M:      Jiri Pirko <jiri@resnulli.us>
20366 L:      netdev@vger.kernel.org
20367 S:      Supported
20368 F:      drivers/net/team/
20369 F:      include/linux/if_team.h
20370 F:      include/uapi/linux/if_team.h
20371 F:      tools/testing/selftests/drivers/net/team/
20372
20373 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20374 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20375 S:      Maintained
20376 F:      arch/x86/platform/ts5500/
20377
20378 TECHNOTREND USB IR RECEIVER
20379 M:      Sean Young <sean@mess.org>
20380 L:      linux-media@vger.kernel.org
20381 S:      Maintained
20382 F:      drivers/media/rc/ttusbir.c
20383
20384 TECHWELL TW9910 VIDEO DECODER
20385 L:      linux-media@vger.kernel.org
20386 S:      Orphan
20387 F:      drivers/media/i2c/tw9910.c
20388 F:      include/media/i2c/tw9910.h
20389
20390 TEE SUBSYSTEM
20391 M:      Jens Wiklander <jens.wiklander@linaro.org>
20392 R:      Sumit Garg <sumit.garg@linaro.org>
20393 L:      op-tee@lists.trustedfirmware.org
20394 S:      Maintained
20395 F:      Documentation/staging/tee.rst
20396 F:      drivers/tee/
20397 F:      include/linux/tee_drv.h
20398 F:      include/uapi/linux/tee.h
20399
20400 TEGRA ARCHITECTURE SUPPORT
20401 M:      Thierry Reding <thierry.reding@gmail.com>
20402 M:      Jonathan Hunter <jonathanh@nvidia.com>
20403 L:      linux-tegra@vger.kernel.org
20404 S:      Supported
20405 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20407 N:      [^a-z]tegra
20408
20409 TEGRA CLOCK DRIVER
20410 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20411 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20412 S:      Supported
20413 F:      drivers/clk/tegra/
20414
20415 TEGRA DMA DRIVERS
20416 M:      Laxman Dewangan <ldewangan@nvidia.com>
20417 M:      Jon Hunter <jonathanh@nvidia.com>
20418 S:      Supported
20419 F:      drivers/dma/tegra*
20420
20421 TEGRA I2C DRIVER
20422 M:      Laxman Dewangan <ldewangan@nvidia.com>
20423 R:      Dmitry Osipenko <digetx@gmail.com>
20424 S:      Supported
20425 F:      drivers/i2c/busses/i2c-tegra.c
20426
20427 TEGRA IOMMU DRIVERS
20428 M:      Thierry Reding <thierry.reding@gmail.com>
20429 R:      Krishna Reddy <vdumpa@nvidia.com>
20430 L:      linux-tegra@vger.kernel.org
20431 S:      Supported
20432 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20433 F:      drivers/iommu/tegra*
20434
20435 TEGRA KBC DRIVER
20436 M:      Laxman Dewangan <ldewangan@nvidia.com>
20437 S:      Supported
20438 F:      drivers/input/keyboard/tegra-kbc.c
20439
20440 TEGRA NAND DRIVER
20441 M:      Stefan Agner <stefan@agner.ch>
20442 M:      Lucas Stach <dev@lynxeye.de>
20443 S:      Maintained
20444 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20445 F:      drivers/mtd/nand/raw/tegra_nand.c
20446
20447 TEGRA PWM DRIVER
20448 M:      Thierry Reding <thierry.reding@gmail.com>
20449 S:      Supported
20450 F:      drivers/pwm/pwm-tegra.c
20451
20452 TEGRA SERIAL DRIVER
20453 M:      Laxman Dewangan <ldewangan@nvidia.com>
20454 S:      Supported
20455 F:      drivers/tty/serial/serial-tegra.c
20456
20457 TEGRA SPI DRIVER
20458 M:      Laxman Dewangan <ldewangan@nvidia.com>
20459 S:      Supported
20460 F:      drivers/spi/spi-tegra*
20461
20462 TEGRA QUAD SPI DRIVER
20463 M:      Thierry Reding <thierry.reding@gmail.com>
20464 M:      Jonathan Hunter <jonathanh@nvidia.com>
20465 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20466 L:      linux-tegra@vger.kernel.org
20467 S:      Maintained
20468 F:      drivers/spi/spi-tegra210-quad.c
20469
20470 TEGRA VIDEO DRIVER
20471 M:      Thierry Reding <thierry.reding@gmail.com>
20472 M:      Jonathan Hunter <jonathanh@nvidia.com>
20473 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20474 L:      linux-media@vger.kernel.org
20475 L:      linux-tegra@vger.kernel.org
20476 S:      Maintained
20477 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20478 F:      drivers/staging/media/tegra-video/
20479
20480 TEGRA XUSB PADCTL DRIVER
20481 M:      JC Kuo <jckuo@nvidia.com>
20482 S:      Supported
20483 F:      drivers/phy/tegra/xusb*
20484
20485 TEHUTI ETHERNET DRIVER
20486 M:      Andy Gospodarek <andy@greyhouse.net>
20487 L:      netdev@vger.kernel.org
20488 S:      Supported
20489 F:      drivers/net/ethernet/tehuti/*
20490
20491 TELECOM CLOCK DRIVER FOR MCPL0010
20492 M:      Mark Gross <markgross@kernel.org>
20493 S:      Supported
20494 F:      drivers/char/tlclk.c
20495
20496 TEMPO SEMICONDUCTOR DRIVERS
20497 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20498 S:      Maintained
20499 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20500 F:      sound/soc/codecs/tscs*.c
20501 F:      sound/soc/codecs/tscs*.h
20502
20503 TENSILICA XTENSA PORT (xtensa)
20504 M:      Chris Zankel <chris@zankel.net>
20505 M:      Max Filippov <jcmvbkbc@gmail.com>
20506 L:      linux-xtensa@linux-xtensa.org
20507 S:      Maintained
20508 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20509 F:      arch/xtensa/
20510 F:      drivers/irqchip/irq-xtensa-*
20511
20512 TEXAS INSTRUMENTS ASoC DRIVERS
20513 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20514 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20515 S:      Maintained
20516 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20517 F:      sound/soc/ti/
20518
20519 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20520 M:      Ricardo Ribalda <ribalda@kernel.org>
20521 L:      linux-iio@vger.kernel.org
20522 S:      Supported
20523 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20524 F:      drivers/iio/dac/ti-dac7612.c
20525
20526 TEXAS INSTRUMENTS DMA DRIVERS
20527 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20528 L:      dmaengine@vger.kernel.org
20529 S:      Maintained
20530 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20531 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20532 F:      Documentation/devicetree/bindings/dma/ti/
20533 F:      drivers/dma/ti/
20534 X:      drivers/dma/ti/cppi41.c
20535 F:      include/linux/dma/k3-udma-glue.h
20536 F:      include/linux/dma/ti-cppi5.h
20537 F:      include/linux/dma/k3-psil.h
20538
20539 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20540 M:      Nishanth Menon <nm@ti.com>
20541 M:      Tero Kristo <kristo@kernel.org>
20542 M:      Santosh Shilimkar <ssantosh@kernel.org>
20543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20544 S:      Maintained
20545 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20546 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20547 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20548 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20549 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20550 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20551 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20552 F:      drivers/clk/keystone/sci-clk.c
20553 F:      drivers/firmware/ti_sci*
20554 F:      drivers/irqchip/irq-ti-sci-inta.c
20555 F:      drivers/irqchip/irq-ti-sci-intr.c
20556 F:      drivers/reset/reset-ti-sci.c
20557 F:      drivers/soc/ti/ti_sci_inta_msi.c
20558 F:      drivers/soc/ti/ti_sci_pm_domains.c
20559 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20560 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20561 F:      include/linux/soc/ti/ti_sci_protocol.h
20562
20563 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20564 M:      Robert Marko <robert.marko@sartura.hr>
20565 M:      Luka Perkov <luka.perkov@sartura.hr>
20566 L:      linux-hwmon@vger.kernel.org
20567 S:      Maintained
20568 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20569 F:      Documentation/hwmon/tps23861.rst
20570 F:      drivers/hwmon/tps23861.c
20571
20572 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20573 M:      Puranjay Mohan <puranjay12@gmail.com>
20574 L:      linux-iio@vger.kernel.org
20575 S:      Supported
20576 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20577 F:      drivers/iio/temperature/tmp117.c
20578
20579 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20580 M:      Hans Verkuil <hverkuil@xs4all.nl>
20581 L:      linux-media@vger.kernel.org
20582 S:      Maintained
20583 W:      https://linuxtv.org
20584 T:      git git://linuxtv.org/media_tree.git
20585 F:      drivers/media/radio/radio-raremono.c
20586
20587 THERMAL
20588 M:      Rafael J. Wysocki <rafael@kernel.org>
20589 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20590 R:      Amit Kucheria <amitk@kernel.org>
20591 R:      Zhang Rui <rui.zhang@intel.com>
20592 L:      linux-pm@vger.kernel.org
20593 S:      Supported
20594 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20596 F:      Documentation/ABI/testing/sysfs-class-thermal
20597 F:      Documentation/admin-guide/thermal/
20598 F:      Documentation/devicetree/bindings/thermal/
20599 F:      Documentation/driver-api/thermal/
20600 F:      drivers/thermal/
20601 F:      include/dt-bindings/thermal/
20602 F:      include/linux/cpu_cooling.h
20603 F:      include/linux/thermal.h
20604 F:      include/uapi/linux/thermal.h
20605 F:      tools/lib/thermal/
20606 F:      tools/thermal/
20607
20608 THERMAL DRIVER FOR AMLOGIC SOCS
20609 M:      Guillaume La Roque <glaroque@baylibre.com>
20610 L:      linux-pm@vger.kernel.org
20611 L:      linux-amlogic@lists.infradead.org
20612 S:      Supported
20613 W:      http://linux-meson.com/
20614 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20615 F:      drivers/thermal/amlogic_thermal.c
20616
20617 THERMAL/CPU_COOLING
20618 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20619 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20620 M:      Viresh Kumar <viresh.kumar@linaro.org>
20621 R:      Lukasz Luba <lukasz.luba@arm.com>
20622 L:      linux-pm@vger.kernel.org
20623 S:      Supported
20624 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20625 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20626 F:      drivers/thermal/cpufreq_cooling.c
20627 F:      drivers/thermal/cpuidle_cooling.c
20628 F:      include/linux/cpu_cooling.h
20629
20630 THERMAL/POWER_ALLOCATOR
20631 M:      Lukasz Luba <lukasz.luba@arm.com>
20632 L:      linux-pm@vger.kernel.org
20633 S:      Maintained
20634 F:      Documentation/driver-api/thermal/power_allocator.rst
20635 F:      drivers/thermal/gov_power_allocator.c
20636 F:      include/trace/events/thermal_power_allocator.h
20637
20638 THINKPAD ACPI EXTRAS DRIVER
20639 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20640 L:      ibm-acpi-devel@lists.sourceforge.net
20641 L:      platform-driver-x86@vger.kernel.org
20642 S:      Maintained
20643 W:      http://ibm-acpi.sourceforge.net
20644 W:      http://thinkwiki.org/wiki/Ibm-acpi
20645 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20646 F:      drivers/platform/x86/thinkpad_acpi.c
20647
20648 THINKPAD LMI DRIVER
20649 M:      Mark Pearson <markpearson@lenovo.com>
20650 L:      platform-driver-x86@vger.kernel.org
20651 S:      Maintained
20652 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20653 F:      drivers/platform/x86/think-lmi.?
20654
20655 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20656 M:      Isaac Hazan <isaac.hazan@intel.com>
20657 L:      linux-usb@vger.kernel.org
20658 S:      Maintained
20659 F:      drivers/thunderbolt/dma_test.c
20660
20661 THUNDERBOLT DRIVER
20662 M:      Andreas Noever <andreas.noever@gmail.com>
20663 M:      Michael Jamet <michael.jamet@intel.com>
20664 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20665 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20666 L:      linux-usb@vger.kernel.org
20667 S:      Maintained
20668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20669 F:      Documentation/admin-guide/thunderbolt.rst
20670 F:      drivers/thunderbolt/
20671 F:      include/linux/thunderbolt.h
20672
20673 THUNDERBOLT NETWORK DRIVER
20674 M:      Michael Jamet <michael.jamet@intel.com>
20675 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20676 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20677 L:      netdev@vger.kernel.org
20678 S:      Maintained
20679 F:      drivers/net/thunderbolt/
20680
20681 THUNDERX GPIO DRIVER
20682 M:      Robert Richter <rric@kernel.org>
20683 S:      Odd Fixes
20684 F:      drivers/gpio/gpio-thunderx.c
20685
20686 TI AM437X VPFE DRIVER
20687 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20688 L:      linux-media@vger.kernel.org
20689 S:      Maintained
20690 W:      https://linuxtv.org
20691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20692 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20693 F:      drivers/media/platform/ti/am437x/
20694
20695 TI BANDGAP AND THERMAL DRIVER
20696 M:      Eduardo Valentin <edubezval@gmail.com>
20697 M:      Keerthy <j-keerthy@ti.com>
20698 L:      linux-pm@vger.kernel.org
20699 L:      linux-omap@vger.kernel.org
20700 S:      Maintained
20701 F:      drivers/thermal/ti-soc-thermal/
20702
20703 TI BQ27XXX POWER SUPPLY DRIVER
20704 F:      drivers/power/supply/bq27xxx_battery.c
20705 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20706 F:      include/linux/power/bq27xxx_battery.h
20707
20708 TI CDCE706 CLOCK DRIVER
20709 M:      Max Filippov <jcmvbkbc@gmail.com>
20710 S:      Maintained
20711 F:      drivers/clk/clk-cdce706.c
20712
20713 TI CLOCK DRIVER
20714 M:      Tero Kristo <kristo@kernel.org>
20715 L:      linux-omap@vger.kernel.org
20716 S:      Odd Fixes
20717 F:      drivers/clk/ti/
20718 F:      include/linux/clk/ti.h
20719
20720 TI DAVINCI MACHINE SUPPORT
20721 M:      Sekhar Nori <nsekhar@ti.com>
20722 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20724 S:      Supported
20725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20726 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20727 F:      arch/arm/boot/dts/da850*
20728 F:      arch/arm/mach-davinci/
20729 F:      drivers/i2c/busses/i2c-davinci.c
20730
20731 TI DAVINCI SERIES CLOCK DRIVER
20732 M:      David Lechner <david@lechnology.com>
20733 R:      Sekhar Nori <nsekhar@ti.com>
20734 S:      Maintained
20735 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20736 F:      drivers/clk/davinci/
20737 F:      include/linux/clk/davinci.h
20738
20739 TI DAVINCI SERIES GPIO DRIVER
20740 M:      Keerthy <j-keerthy@ti.com>
20741 L:      linux-gpio@vger.kernel.org
20742 S:      Maintained
20743 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20744 F:      drivers/gpio/gpio-davinci.c
20745
20746 TI DAVINCI SERIES MEDIA DRIVER
20747 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20748 L:      linux-media@vger.kernel.org
20749 S:      Maintained
20750 W:      https://linuxtv.org
20751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20752 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20753 F:      drivers/media/platform/ti/davinci/
20754 F:      include/media/davinci/
20755
20756 TI ENHANCED CAPTURE (eCAP) DRIVER
20757 M:      Vignesh Raghavendra <vigneshr@ti.com>
20758 R:      Julien Panis <jpanis@baylibre.com>
20759 L:      linux-iio@vger.kernel.org
20760 L:      linux-omap@vger.kernel.org
20761 S:      Maintained
20762 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20763 F:      drivers/counter/ti-ecap-capture.c
20764
20765 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20766 R:      David Lechner <david@lechnology.com>
20767 L:      linux-iio@vger.kernel.org
20768 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20769 F:      drivers/counter/ti-eqep.c
20770
20771 TI ETHERNET SWITCH DRIVER (CPSW)
20772 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20773 L:      linux-omap@vger.kernel.org
20774 L:      netdev@vger.kernel.org
20775 S:      Maintained
20776 F:      drivers/net/ethernet/ti/cpsw*
20777 F:      drivers/net/ethernet/ti/davinci*
20778
20779 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20780 M:      Alex Dubov <oakad@yahoo.com>
20781 S:      Maintained
20782 W:      http://tifmxx.berlios.de/
20783 F:      drivers/memstick/host/tifm_ms.c
20784 F:      drivers/misc/tifm*
20785 F:      drivers/mmc/host/tifm_sd.c
20786 F:      include/linux/tifm.h
20787
20788 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20789 M:      Nishanth Menon <nm@ti.com>
20790 M:      Santosh Shilimkar <ssantosh@kernel.org>
20791 L:      linux-kernel@vger.kernel.org
20792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20793 S:      Maintained
20794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20795 F:      drivers/soc/ti/*
20796
20797 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20798 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20799 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20801 S:      Maintained
20802 F:      sound/soc/codecs/isabelle*
20803 F:      sound/soc/codecs/lm49453*
20804
20805 TI PCM3060 ASoC CODEC DRIVER
20806 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20807 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20808 S:      Maintained
20809 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20810 F:      sound/soc/codecs/pcm3060*
20811
20812 TI TAS571X FAMILY ASoC CODEC DRIVER
20813 M:      Kevin Cernekee <cernekee@chromium.org>
20814 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20815 S:      Odd Fixes
20816 F:      sound/soc/codecs/tas571x*
20817
20818 TI TRF7970A NFC DRIVER
20819 M:      Mark Greer <mgreer@animalcreek.com>
20820 L:      linux-wireless@vger.kernel.org
20821 L:      linux-nfc@lists.01.org (subscribers-only)
20822 S:      Supported
20823 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20824 F:      drivers/nfc/trf7970a.c
20825
20826 TI TSC2046 ADC DRIVER
20827 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20828 R:      kernel@pengutronix.de
20829 L:      linux-iio@vger.kernel.org
20830 S:      Maintained
20831 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20832 F:      drivers/iio/adc/ti-tsc2046.c
20833
20834 TI TWL4030 SERIES SOC CODEC DRIVER
20835 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20836 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20837 S:      Maintained
20838 F:      sound/soc/codecs/twl4030*
20839
20840 TI VPE/CAL DRIVERS
20841 M:      Benoit Parrot <bparrot@ti.com>
20842 L:      linux-media@vger.kernel.org
20843 S:      Maintained
20844 W:      http://linuxtv.org/
20845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20846 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20847 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20848 F:      drivers/media/platform/ti/cal/
20849 F:      drivers/media/platform/ti/vpe/
20850
20851 TI WILINK WIRELESS DRIVERS
20852 L:      linux-wireless@vger.kernel.org
20853 S:      Orphan
20854 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20855 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20857 F:      drivers/net/wireless/ti/
20858
20859 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20860 M:      John Stultz <jstultz@google.com>
20861 M:      Thomas Gleixner <tglx@linutronix.de>
20862 R:      Stephen Boyd <sboyd@kernel.org>
20863 L:      linux-kernel@vger.kernel.org
20864 S:      Supported
20865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20866 F:      include/linux/clocksource.h
20867 F:      include/linux/time.h
20868 F:      include/linux/timex.h
20869 F:      include/uapi/linux/time.h
20870 F:      include/uapi/linux/timex.h
20871 F:      kernel/time/alarmtimer.c
20872 F:      kernel/time/clocksource.c
20873 F:      kernel/time/ntp.c
20874 F:      kernel/time/time*.c
20875 F:      tools/testing/selftests/timers/
20876
20877 TIPC NETWORK LAYER
20878 M:      Jon Maloy <jmaloy@redhat.com>
20879 M:      Ying Xue <ying.xue@windriver.com>
20880 L:      netdev@vger.kernel.org (core kernel code)
20881 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20882 S:      Maintained
20883 W:      http://tipc.sourceforge.net/
20884 F:      include/uapi/linux/tipc*.h
20885 F:      net/tipc/
20886
20887 TLAN NETWORK DRIVER
20888 M:      Samuel Chessman <chessman@tux.org>
20889 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20890 S:      Maintained
20891 W:      http://sourceforge.net/projects/tlan/
20892 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20893 F:      drivers/net/ethernet/ti/tlan.*
20894
20895 TM6000 VIDEO4LINUX DRIVER
20896 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20897 L:      linux-media@vger.kernel.org
20898 S:      Odd fixes
20899 W:      https://linuxtv.org
20900 T:      git git://linuxtv.org/media_tree.git
20901 F:      Documentation/admin-guide/media/tm6000*
20902 F:      drivers/staging/media/deprecated/tm6000/
20903
20904 TMIO/SDHI MMC DRIVER
20905 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20906 L:      linux-mmc@vger.kernel.org
20907 L:      linux-renesas-soc@vger.kernel.org
20908 S:      Supported
20909 F:      drivers/mmc/host/renesas_sdhi*
20910 F:      drivers/mmc/host/tmio_mmc*
20911 F:      include/linux/mfd/tmio.h
20912
20913 TMP401 HARDWARE MONITOR DRIVER
20914 M:      Guenter Roeck <linux@roeck-us.net>
20915 L:      linux-hwmon@vger.kernel.org
20916 S:      Maintained
20917 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20918 F:      Documentation/hwmon/tmp401.rst
20919 F:      drivers/hwmon/tmp401.c
20920
20921 TMP464 HARDWARE MONITOR DRIVER
20922 M:      Agathe Porte <agathe.porte@nokia.com>
20923 M:      Guenter Roeck <linux@roeck-us.net>
20924 L:      linux-hwmon@vger.kernel.org
20925 S:      Maintained
20926 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20927 F:      Documentation/hwmon/tmp464.rst
20928 F:      drivers/hwmon/tmp464.c
20929
20930 TMP513 HARDWARE MONITOR DRIVER
20931 M:      Eric Tremblay <etremblay@distech-controls.com>
20932 L:      linux-hwmon@vger.kernel.org
20933 S:      Maintained
20934 F:      Documentation/hwmon/tmp513.rst
20935 F:      drivers/hwmon/tmp513.c
20936
20937 TMPFS (SHMEM FILESYSTEM)
20938 M:      Hugh Dickins <hughd@google.com>
20939 L:      linux-mm@kvack.org
20940 S:      Maintained
20941 F:      include/linux/shmem_fs.h
20942 F:      mm/shmem.c
20943
20944 TOMOYO SECURITY MODULE
20945 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20946 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20947 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20948 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20949 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20950 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20951 S:      Maintained
20952 W:      https://tomoyo.osdn.jp/
20953 F:      security/tomoyo/
20954
20955 TOPSTAR LAPTOP EXTRAS DRIVER
20956 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20957 L:      platform-driver-x86@vger.kernel.org
20958 S:      Maintained
20959 F:      drivers/platform/x86/topstar-laptop.c
20960
20961 TORTURE-TEST MODULES
20962 M:      Davidlohr Bueso <dave@stgolabs.net>
20963 M:      "Paul E. McKenney" <paulmck@kernel.org>
20964 M:      Josh Triplett <josh@joshtriplett.org>
20965 L:      linux-kernel@vger.kernel.org
20966 S:      Supported
20967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20968 F:      Documentation/RCU/torture.rst
20969 F:      kernel/locking/locktorture.c
20970 F:      kernel/rcu/rcuscale.c
20971 F:      kernel/rcu/rcutorture.c
20972 F:      kernel/rcu/refscale.c
20973 F:      kernel/torture.c
20974
20975 TOSHIBA ACPI EXTRAS DRIVER
20976 M:      Azael Avalos <coproscefalo@gmail.com>
20977 L:      platform-driver-x86@vger.kernel.org
20978 S:      Maintained
20979 F:      drivers/platform/x86/toshiba_acpi.c
20980
20981 TOSHIBA BLUETOOTH DRIVER
20982 M:      Azael Avalos <coproscefalo@gmail.com>
20983 L:      platform-driver-x86@vger.kernel.org
20984 S:      Maintained
20985 F:      drivers/platform/x86/toshiba_bluetooth.c
20986
20987 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20988 M:      Azael Avalos <coproscefalo@gmail.com>
20989 L:      platform-driver-x86@vger.kernel.org
20990 S:      Maintained
20991 F:      drivers/platform/x86/toshiba_haps.c
20992
20993 TOSHIBA SMM DRIVER
20994 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20995 S:      Maintained
20996 W:      http://www.buzzard.org.uk/toshiba/
20997 F:      drivers/char/toshiba.c
20998 F:      include/linux/toshiba.h
20999 F:      include/uapi/linux/toshiba.h
21000
21001 TOSHIBA TC358743 DRIVER
21002 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21003 L:      linux-media@vger.kernel.org
21004 S:      Maintained
21005 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21006 F:      drivers/media/i2c/tc358743*
21007 F:      include/media/i2c/tc358743.h
21008
21009 TOSHIBA WMI HOTKEYS DRIVER
21010 M:      Azael Avalos <coproscefalo@gmail.com>
21011 L:      platform-driver-x86@vger.kernel.org
21012 S:      Maintained
21013 F:      drivers/platform/x86/toshiba-wmi.c
21014
21015 TPM DEVICE DRIVER
21016 M:      Peter Huewe <peterhuewe@gmx.de>
21017 M:      Jarkko Sakkinen <jarkko@kernel.org>
21018 R:      Jason Gunthorpe <jgg@ziepe.ca>
21019 L:      linux-integrity@vger.kernel.org
21020 S:      Maintained
21021 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21022 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21024 F:      drivers/char/tpm/
21025
21026 TPS546D24 DRIVER
21027 M:      Duke Du <dukedu83@gmail.com>
21028 L:      linux-hwmon@vger.kernel.org
21029 S:      Maintained
21030 F:      Documentation/hwmon/tps546d24.rst
21031 F:      drivers/hwmon/pmbus/tps546d24.c
21032
21033 TRACING
21034 M:      Steven Rostedt <rostedt@goodmis.org>
21035 M:      Masami Hiramatsu <mhiramat@kernel.org>
21036 L:      linux-kernel@vger.kernel.org
21037 L:      linux-trace-kernel@vger.kernel.org
21038 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21039 S:      Maintained
21040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21041 F:      Documentation/trace/*
21042 F:      fs/tracefs/
21043 F:      include/linux/trace*.h
21044 F:      include/trace/
21045 F:      kernel/trace/
21046 F:      scripts/tracing/
21047 F:      tools/testing/selftests/ftrace/
21048
21049 TRACING MMIO ACCESSES (MMIOTRACE)
21050 M:      Steven Rostedt <rostedt@goodmis.org>
21051 M:      Masami Hiramatsu <mhiramat@kernel.org>
21052 R:      Karol Herbst <karolherbst@gmail.com>
21053 R:      Pekka Paalanen <ppaalanen@gmail.com>
21054 L:      linux-kernel@vger.kernel.org
21055 L:      nouveau@lists.freedesktop.org
21056 S:      Maintained
21057 F:      arch/x86/mm/kmmio.c
21058 F:      arch/x86/mm/mmio-mod.c
21059 F:      arch/x86/mm/testmmiotrace.c
21060 F:      include/linux/mmiotrace.h
21061 F:      kernel/trace/trace_mmiotrace.c
21062
21063 TRACING OS NOISE / LATENCY TRACERS
21064 M:      Steven Rostedt <rostedt@goodmis.org>
21065 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21066 S:      Maintained
21067 F:      kernel/trace/trace_osnoise.c
21068 F:      include/trace/events/osnoise.h
21069 F:      kernel/trace/trace_hwlat.c
21070 F:      kernel/trace/trace_irqsoff.c
21071 F:      kernel/trace/trace_sched_wakeup.c
21072 F:      Documentation/trace/osnoise-tracer.rst
21073 F:      Documentation/trace/timerlat-tracer.rst
21074 F:      Documentation/trace/hwlat_detector.rst
21075 F:      arch/*/kernel/trace.c
21076
21077 Real-time Linux Analysis (RTLA) tools
21078 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21079 M:      Steven Rostedt <rostedt@goodmis.org>
21080 L:      linux-trace-devel@vger.kernel.org
21081 S:      Maintained
21082 F:      Documentation/tools/rtla/
21083 F:      tools/tracing/rtla/
21084
21085 TRADITIONAL CHINESE DOCUMENTATION
21086 M:      Hu Haowen <src.res@email.cn>
21087 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21088 S:      Maintained
21089 W:      https://github.com/srcres258/linux-doc
21090 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21091 F:      Documentation/translations/zh_TW/
21092
21093 TTY LAYER
21094 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21095 M:      Jiri Slaby <jirislaby@kernel.org>
21096 S:      Supported
21097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21098 F:      Documentation/driver-api/serial/
21099 F:      drivers/tty/
21100 F:      drivers/tty/serial/serial_core.c
21101 F:      include/linux/selection.h
21102 F:      include/linux/serial.h
21103 F:      include/linux/serial_core.h
21104 F:      include/linux/sysrq.h
21105 F:      include/linux/tty*.h
21106 F:      include/linux/vt.h
21107 F:      include/linux/vt_*.h
21108 F:      include/uapi/linux/serial.h
21109 F:      include/uapi/linux/serial_core.h
21110 F:      include/uapi/linux/tty.h
21111
21112 TUA9001 MEDIA DRIVER
21113 M:      Antti Palosaari <crope@iki.fi>
21114 L:      linux-media@vger.kernel.org
21115 S:      Maintained
21116 W:      https://linuxtv.org
21117 W:      http://palosaari.fi/linux/
21118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21119 T:      git git://linuxtv.org/anttip/media_tree.git
21120 F:      drivers/media/tuners/tua9001*
21121
21122 TULIP NETWORK DRIVERS
21123 L:      netdev@vger.kernel.org
21124 L:      linux-parisc@vger.kernel.org
21125 S:      Orphan
21126 F:      drivers/net/ethernet/dec/tulip/
21127
21128 TUN/TAP driver
21129 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21130 S:      Maintained
21131 W:      http://vtun.sourceforge.net/tun
21132 F:      Documentation/networking/tuntap.rst
21133 F:      arch/um/os-Linux/drivers/
21134
21135 TURBOCHANNEL SUBSYSTEM
21136 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21137 M:      Ralf Baechle <ralf@linux-mips.org>
21138 L:      linux-mips@vger.kernel.org
21139 S:      Maintained
21140 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21141 F:      drivers/tc/
21142 F:      include/linux/tc.h
21143
21144 TURBOSTAT UTILITY
21145 M:      "Len Brown" <lenb@kernel.org>
21146 L:      linux-pm@vger.kernel.org
21147 S:      Supported
21148 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21149 B:      https://bugzilla.kernel.org
21150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21151 F:      tools/power/x86/turbostat/
21152
21153 TW5864 VIDEO4LINUX DRIVER
21154 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21155 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21156 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21157 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21158 L:      linux-media@vger.kernel.org
21159 S:      Supported
21160 F:      drivers/media/pci/tw5864/
21161
21162 TW68 VIDEO4LINUX DRIVER
21163 M:      Hans Verkuil <hverkuil@xs4all.nl>
21164 L:      linux-media@vger.kernel.org
21165 S:      Odd Fixes
21166 W:      https://linuxtv.org
21167 T:      git git://linuxtv.org/media_tree.git
21168 F:      drivers/media/pci/tw68/
21169
21170 TW686X VIDEO4LINUX DRIVER
21171 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21172 L:      linux-media@vger.kernel.org
21173 S:      Maintained
21174 W:      http://linuxtv.org
21175 T:      git git://linuxtv.org/media_tree.git
21176 F:      drivers/media/pci/tw686x/
21177
21178 U-BOOT ENVIRONMENT VARIABLES
21179 M:      Rafał Miłecki <rafal@milecki.pl>
21180 S:      Maintained
21181 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21182 F:      drivers/nvmem/u-boot-env.c
21183
21184 UACCE ACCELERATOR FRAMEWORK
21185 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21186 M:      Zhou Wang <wangzhou1@hisilicon.com>
21187 L:      linux-accelerators@lists.ozlabs.org
21188 L:      linux-kernel@vger.kernel.org
21189 S:      Maintained
21190 F:      Documentation/ABI/testing/sysfs-driver-uacce
21191 F:      Documentation/misc-devices/uacce.rst
21192 F:      drivers/misc/uacce/
21193 F:      include/linux/uacce.h
21194 F:      include/uapi/misc/uacce/
21195
21196 UBI FILE SYSTEM (UBIFS)
21197 M:      Richard Weinberger <richard@nod.at>
21198 L:      linux-mtd@lists.infradead.org
21199 S:      Supported
21200 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21203 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21204 F:      Documentation/filesystems/ubifs-authentication.rst
21205 F:      Documentation/filesystems/ubifs.rst
21206 F:      fs/ubifs/
21207
21208 UBLK USERSPACE BLOCK DRIVER
21209 M:      Ming Lei <ming.lei@redhat.com>
21210 L:      linux-block@vger.kernel.org
21211 S:      Maintained
21212 F:      Documentation/block/ublk.rst
21213 F:      drivers/block/ublk_drv.c
21214 F:      include/uapi/linux/ublk_cmd.h
21215
21216 UCLINUX (M68KNOMMU AND COLDFIRE)
21217 M:      Greg Ungerer <gerg@linux-m68k.org>
21218 L:      linux-m68k@lists.linux-m68k.org
21219 L:      uclinux-dev@uclinux.org  (subscribers-only)
21220 S:      Maintained
21221 W:      http://www.linux-m68k.org/
21222 W:      http://www.uclinux.org/
21223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21224 F:      arch/m68k/*/*_no.*
21225 F:      arch/m68k/68*/
21226 F:      arch/m68k/coldfire/
21227 F:      arch/m68k/include/asm/*_no.*
21228
21229 UDF FILESYSTEM
21230 M:      Jan Kara <jack@suse.com>
21231 S:      Maintained
21232 F:      Documentation/filesystems/udf.rst
21233 F:      fs/udf/
21234
21235 UDRAW TABLET
21236 M:      Bastien Nocera <hadess@hadess.net>
21237 L:      linux-input@vger.kernel.org
21238 S:      Maintained
21239 F:      drivers/hid/hid-udraw-ps3.c
21240
21241 UFS FILESYSTEM
21242 M:      Evgeniy Dushistov <dushistov@mail.ru>
21243 S:      Maintained
21244 F:      Documentation/admin-guide/ufs.rst
21245 F:      fs/ufs/
21246
21247 UHID USERSPACE HID IO DRIVER
21248 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21249 L:      linux-input@vger.kernel.org
21250 S:      Maintained
21251 F:      drivers/hid/uhid.c
21252 F:      include/uapi/linux/uhid.h
21253
21254 ULPI BUS
21255 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21256 L:      linux-usb@vger.kernel.org
21257 S:      Maintained
21258 F:      drivers/usb/common/ulpi.c
21259 F:      include/linux/ulpi/
21260
21261 UNICODE SUBSYSTEM
21262 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21263 L:      linux-fsdevel@vger.kernel.org
21264 S:      Supported
21265 F:      fs/unicode/
21266
21267 UNIFDEF
21268 M:      Tony Finch <dot@dotat.at>
21269 S:      Maintained
21270 W:      http://dotat.at/prog/unifdef
21271 F:      scripts/unifdef.c
21272
21273 UNIFORM CDROM DRIVER
21274 M:      Phillip Potter <phil@philpotter.co.uk>
21275 S:      Maintained
21276 F:      Documentation/cdrom/
21277 F:      drivers/cdrom/cdrom.c
21278 F:      include/linux/cdrom.h
21279 F:      include/uapi/linux/cdrom.h
21280
21281 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21282 R:      Alim Akhtar <alim.akhtar@samsung.com>
21283 R:      Avri Altman <avri.altman@wdc.com>
21284 R:      Bart Van Assche <bvanassche@acm.org>
21285 L:      linux-scsi@vger.kernel.org
21286 S:      Supported
21287 F:      Documentation/devicetree/bindings/ufs/
21288 F:      Documentation/scsi/ufs.rst
21289 F:      drivers/ufs/core/
21290
21291 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21292 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21293 L:      linux-scsi@vger.kernel.org
21294 S:      Supported
21295 F:      drivers/ufs/host/*dwc*
21296
21297 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21298 M:      Stanley Chu <stanley.chu@mediatek.com>
21299 L:      linux-scsi@vger.kernel.org
21300 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21301 S:      Maintained
21302 F:      drivers/ufs/host/ufs-mediatek*
21303
21304 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21305 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21306 L:      linux-renesas-soc@vger.kernel.org
21307 L:      linux-scsi@vger.kernel.org
21308 S:      Maintained
21309 F:      drivers/ufs/host/ufs-renesas.c
21310
21311 UNSORTED BLOCK IMAGES (UBI)
21312 M:      Richard Weinberger <richard@nod.at>
21313 L:      linux-mtd@lists.infradead.org
21314 S:      Supported
21315 W:      http://www.linux-mtd.infradead.org/
21316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21318 F:      drivers/mtd/ubi/
21319 F:      include/linux/mtd/ubi.h
21320 F:      include/uapi/mtd/ubi-user.h
21321
21322 USB "USBNET" DRIVER FRAMEWORK
21323 M:      Oliver Neukum <oneukum@suse.com>
21324 L:      netdev@vger.kernel.org
21325 S:      Maintained
21326 W:      http://www.linux-usb.org/usbnet
21327 F:      drivers/net/usb/usbnet.c
21328 F:      include/linux/usb/usbnet.h
21329
21330 USB ACM DRIVER
21331 M:      Oliver Neukum <oneukum@suse.com>
21332 L:      linux-usb@vger.kernel.org
21333 S:      Maintained
21334 F:      Documentation/usb/acm.rst
21335 F:      drivers/usb/class/cdc-acm.*
21336
21337 USB APPLE MFI FASTCHARGE DRIVER
21338 M:      Bastien Nocera <hadess@hadess.net>
21339 L:      linux-usb@vger.kernel.org
21340 S:      Maintained
21341 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21342
21343 USB AR5523 WIRELESS DRIVER
21344 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21345 L:      linux-wireless@vger.kernel.org
21346 S:      Maintained
21347 F:      drivers/net/wireless/ath/ar5523/
21348
21349 USB ATTACHED SCSI
21350 M:      Oliver Neukum <oneukum@suse.com>
21351 L:      linux-usb@vger.kernel.org
21352 L:      linux-scsi@vger.kernel.org
21353 S:      Maintained
21354 F:      drivers/usb/storage/uas.c
21355
21356 USB CDC ETHERNET DRIVER
21357 M:      Oliver Neukum <oliver@neukum.org>
21358 L:      linux-usb@vger.kernel.org
21359 S:      Maintained
21360 F:      drivers/net/usb/cdc_*.c
21361 F:      include/uapi/linux/usb/cdc.h
21362
21363 USB CHAOSKEY DRIVER
21364 M:      Keith Packard <keithp@keithp.com>
21365 L:      linux-usb@vger.kernel.org
21366 S:      Maintained
21367 F:      drivers/usb/misc/chaoskey.c
21368
21369 USB CYPRESS C67X00 DRIVER
21370 L:      linux-usb@vger.kernel.org
21371 S:      Orphan
21372 F:      drivers/usb/c67x00/
21373
21374 USB DAVICOM DM9601 DRIVER
21375 M:      Peter Korsgaard <peter@korsgaard.com>
21376 L:      netdev@vger.kernel.org
21377 S:      Maintained
21378 W:      http://www.linux-usb.org/usbnet
21379 F:      drivers/net/usb/dm9601.c
21380
21381 USB EHCI DRIVER
21382 M:      Alan Stern <stern@rowland.harvard.edu>
21383 L:      linux-usb@vger.kernel.org
21384 S:      Maintained
21385 F:      Documentation/usb/ehci.rst
21386 F:      drivers/usb/host/ehci*
21387
21388 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21389 M:      Jiri Kosina <jikos@kernel.org>
21390 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21391 L:      linux-usb@vger.kernel.org
21392 S:      Maintained
21393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21394 F:      Documentation/hid/hiddev.rst
21395 F:      drivers/hid/usbhid/
21396
21397 USB INTEL XHCI ROLE MUX DRIVER
21398 M:      Hans de Goede <hdegoede@redhat.com>
21399 L:      linux-usb@vger.kernel.org
21400 S:      Maintained
21401 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21402
21403 USB IP DRIVER FOR HISILICON KIRIN 960
21404 M:      Yu Chen <chenyu56@huawei.com>
21405 M:      Binghui Wang <wangbinghui@hisilicon.com>
21406 L:      linux-usb@vger.kernel.org
21407 S:      Maintained
21408 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21409 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21410
21411 USB IP DRIVER FOR HISILICON KIRIN 970
21412 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21413 L:      linux-usb@vger.kernel.org
21414 S:      Maintained
21415 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21416 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21417
21418 USB ISP116X DRIVER
21419 M:      Olav Kongas <ok@artecdesign.ee>
21420 L:      linux-usb@vger.kernel.org
21421 S:      Maintained
21422 F:      drivers/usb/host/isp116x*
21423 F:      include/linux/usb/isp116x.h
21424
21425 USB ISP1760 DRIVER
21426 M:      Rui Miguel Silva <rui.silva@linaro.org>
21427 L:      linux-usb@vger.kernel.org
21428 S:      Maintained
21429 F:      drivers/usb/isp1760/*
21430 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21431
21432 USB LAN78XX ETHERNET DRIVER
21433 M:      Woojung Huh <woojung.huh@microchip.com>
21434 M:      UNGLinuxDriver@microchip.com
21435 L:      netdev@vger.kernel.org
21436 S:      Maintained
21437 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21438 F:      drivers/net/usb/lan78xx.*
21439 F:      include/dt-bindings/net/microchip-lan78xx.h
21440
21441 USB MASS STORAGE DRIVER
21442 M:      Alan Stern <stern@rowland.harvard.edu>
21443 L:      linux-usb@vger.kernel.org
21444 L:      usb-storage@lists.one-eyed-alien.net
21445 S:      Maintained
21446 F:      drivers/usb/storage/
21447
21448 USB MIDI DRIVER
21449 M:      Clemens Ladisch <clemens@ladisch.de>
21450 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21451 S:      Maintained
21452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21453 F:      sound/usb/midi.*
21454
21455 USB NETWORKING DRIVERS
21456 L:      linux-usb@vger.kernel.org
21457 S:      Odd Fixes
21458 F:      drivers/net/usb/
21459
21460 USB OHCI DRIVER
21461 M:      Alan Stern <stern@rowland.harvard.edu>
21462 L:      linux-usb@vger.kernel.org
21463 S:      Maintained
21464 F:      Documentation/usb/ohci.rst
21465 F:      drivers/usb/host/ohci*
21466
21467 USB OTG FSM (Finite State Machine)
21468 M:      Peter Chen <peter.chen@kernel.org>
21469 L:      linux-usb@vger.kernel.org
21470 S:      Maintained
21471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21472 F:      drivers/usb/common/usb-otg-fsm.c
21473
21474 USB OVER IP DRIVER
21475 M:      Valentina Manea <valentina.manea.m@gmail.com>
21476 M:      Shuah Khan <shuah@kernel.org>
21477 M:      Shuah Khan <skhan@linuxfoundation.org>
21478 L:      linux-usb@vger.kernel.org
21479 S:      Maintained
21480 F:      Documentation/usb/usbip_protocol.rst
21481 F:      drivers/usb/usbip/
21482 F:      tools/testing/selftests/drivers/usb/usbip/
21483 F:      tools/usb/usbip/
21484
21485 USB PEGASUS DRIVER
21486 M:      Petko Manolov <petkan@nucleusys.com>
21487 L:      linux-usb@vger.kernel.org
21488 L:      netdev@vger.kernel.org
21489 S:      Maintained
21490 W:      https://github.com/petkan/pegasus
21491 T:      git https://github.com/petkan/pegasus.git
21492 F:      drivers/net/usb/pegasus.*
21493
21494 USB PRINTER DRIVER (usblp)
21495 M:      Pete Zaitcev <zaitcev@redhat.com>
21496 L:      linux-usb@vger.kernel.org
21497 S:      Supported
21498 F:      drivers/usb/class/usblp.c
21499
21500 USB RAW GADGET DRIVER
21501 R:      Andrey Konovalov <andreyknvl@gmail.com>
21502 L:      linux-usb@vger.kernel.org
21503 S:      Maintained
21504 F:      Documentation/usb/raw-gadget.rst
21505 F:      drivers/usb/gadget/legacy/raw_gadget.c
21506 F:      include/uapi/linux/usb/raw_gadget.h
21507
21508 USB QMI WWAN NETWORK DRIVER
21509 M:      Bjørn Mork <bjorn@mork.no>
21510 L:      netdev@vger.kernel.org
21511 S:      Maintained
21512 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21513 F:      drivers/net/usb/qmi_wwan.c
21514
21515 USB RTL8150 DRIVER
21516 M:      Petko Manolov <petkan@nucleusys.com>
21517 L:      linux-usb@vger.kernel.org
21518 L:      netdev@vger.kernel.org
21519 S:      Maintained
21520 W:      https://github.com/petkan/rtl8150
21521 T:      git https://github.com/petkan/rtl8150.git
21522 F:      drivers/net/usb/rtl8150.c
21523
21524 USB SERIAL SUBSYSTEM
21525 M:      Johan Hovold <johan@kernel.org>
21526 L:      linux-usb@vger.kernel.org
21527 S:      Maintained
21528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21529 F:      Documentation/usb/usb-serial.rst
21530 F:      drivers/usb/serial/
21531 F:      include/linux/usb/serial.h
21532
21533 USB SMSC75XX ETHERNET DRIVER
21534 M:      Steve Glendinning <steve.glendinning@shawell.net>
21535 L:      netdev@vger.kernel.org
21536 S:      Maintained
21537 F:      drivers/net/usb/smsc75xx.*
21538
21539 USB SMSC95XX ETHERNET DRIVER
21540 M:      Steve Glendinning <steve.glendinning@shawell.net>
21541 M:      UNGLinuxDriver@microchip.com
21542 L:      netdev@vger.kernel.org
21543 S:      Maintained
21544 F:      drivers/net/usb/smsc95xx.*
21545
21546 USB SUBSYSTEM
21547 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21548 L:      linux-usb@vger.kernel.org
21549 S:      Supported
21550 W:      http://www.linux-usb.org
21551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21552 F:      Documentation/devicetree/bindings/usb/
21553 F:      Documentation/usb/
21554 F:      drivers/usb/
21555 F:      include/dt-bindings/usb/
21556 F:      include/linux/usb.h
21557 F:      include/linux/usb/
21558
21559 USB TYPEC BUS FOR ALTERNATE MODES
21560 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21561 L:      linux-usb@vger.kernel.org
21562 S:      Maintained
21563 F:      Documentation/ABI/testing/sysfs-bus-typec
21564 F:      Documentation/driver-api/usb/typec_bus.rst
21565 F:      drivers/usb/typec/altmodes/
21566 F:      include/linux/usb/typec_altmode.h
21567
21568 USB TYPEC CLASS
21569 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21570 L:      linux-usb@vger.kernel.org
21571 S:      Maintained
21572 F:      Documentation/ABI/testing/sysfs-class-typec
21573 F:      Documentation/driver-api/usb/typec.rst
21574 F:      drivers/usb/typec/
21575 F:      include/linux/usb/typec.h
21576
21577 USB TYPEC INTEL PMC MUX DRIVER
21578 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21579 L:      linux-usb@vger.kernel.org
21580 S:      Maintained
21581 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21582 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21583
21584 USB TYPEC PI3USB30532 MUX DRIVER
21585 M:      Hans de Goede <hdegoede@redhat.com>
21586 L:      linux-usb@vger.kernel.org
21587 S:      Maintained
21588 F:      drivers/usb/typec/mux/pi3usb30532.c
21589
21590 USB TYPEC PORT CONTROLLER DRIVERS
21591 M:      Guenter Roeck <linux@roeck-us.net>
21592 L:      linux-usb@vger.kernel.org
21593 S:      Maintained
21594 F:      drivers/usb/typec/tcpm/
21595
21596 USB UHCI DRIVER
21597 M:      Alan Stern <stern@rowland.harvard.edu>
21598 L:      linux-usb@vger.kernel.org
21599 S:      Maintained
21600 F:      drivers/usb/host/uhci*
21601
21602 USB VIDEO CLASS
21603 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21604 L:      linux-media@vger.kernel.org
21605 S:      Maintained
21606 W:      http://www.ideasonboard.org/uvc/
21607 T:      git git://linuxtv.org/media_tree.git
21608 F:      drivers/media/usb/uvc/
21609 F:      include/uapi/linux/uvcvideo.h
21610
21611 USB WEBCAM GADGET
21612 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21613 M:      Daniel Scally <dan.scally@ideasonboard.com>
21614 L:      linux-usb@vger.kernel.org
21615 S:      Maintained
21616 F:      drivers/usb/gadget/function/*uvc*
21617 F:      drivers/usb/gadget/legacy/webcam.c
21618 F:      include/uapi/linux/usb/g_uvc.h
21619
21620 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21621 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21622 L:      linux-wireless@vger.kernel.org
21623 S:      Maintained
21624 F:      drivers/net/wireless/rndis_wlan.c
21625
21626 USB XHCI DRIVER
21627 M:      Mathias Nyman <mathias.nyman@intel.com>
21628 L:      linux-usb@vger.kernel.org
21629 S:      Supported
21630 F:      drivers/usb/host/pci-quirks*
21631 F:      drivers/usb/host/xhci*
21632
21633 USB ZD1201 DRIVER
21634 L:      linux-wireless@vger.kernel.org
21635 S:      Orphan
21636 W:      http://linux-lc100020.sourceforge.net
21637 F:      drivers/net/wireless/zydas/zd1201.*
21638
21639 USB ZR364XX DRIVER
21640 M:      Antoine Jacquet <royale@zerezo.com>
21641 L:      linux-usb@vger.kernel.org
21642 L:      linux-media@vger.kernel.org
21643 S:      Maintained
21644 W:      http://royale.zerezo.com/zr364xx/
21645 T:      git git://linuxtv.org/media_tree.git
21646 F:      Documentation/admin-guide/media/zr364xx*
21647 F:      drivers/staging/media/deprecated/zr364xx/
21648
21649 USER DATAGRAM PROTOCOL (UDP)
21650 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21651 S:      Maintained
21652 F:      include/linux/udp.h
21653 F:      net/ipv4/udp.c
21654 F:      net/ipv6/udp.c
21655
21656 USER-MODE LINUX (UML)
21657 M:      Richard Weinberger <richard@nod.at>
21658 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21659 M:      Johannes Berg <johannes@sipsolutions.net>
21660 L:      linux-um@lists.infradead.org
21661 S:      Maintained
21662 W:      http://user-mode-linux.sourceforge.net
21663 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21666 F:      Documentation/virt/uml/
21667 F:      arch/um/
21668 F:      arch/x86/um/
21669 F:      fs/hostfs/
21670
21671 USERSPACE COPYIN/COPYOUT (UIOVEC)
21672 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21673 S:      Maintained
21674 F:      include/linux/uio.h
21675 F:      lib/iov_iter.c
21676
21677 USERSPACE DMA BUFFER DRIVER
21678 M:      Gerd Hoffmann <kraxel@redhat.com>
21679 L:      dri-devel@lists.freedesktop.org
21680 S:      Maintained
21681 T:      git git://anongit.freedesktop.org/drm/drm-misc
21682 F:      drivers/dma-buf/udmabuf.c
21683 F:      include/uapi/linux/udmabuf.h
21684
21685 USERSPACE I/O (UIO)
21686 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21687 S:      Maintained
21688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21689 F:      Documentation/driver-api/uio-howto.rst
21690 F:      drivers/uio/
21691 F:      include/linux/uio_driver.h
21692
21693 UTIL-LINUX PACKAGE
21694 M:      Karel Zak <kzak@redhat.com>
21695 L:      util-linux@vger.kernel.org
21696 S:      Maintained
21697 W:      http://en.wikipedia.org/wiki/Util-linux
21698 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21699
21700 UUID HELPERS
21701 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21702 L:      linux-kernel@vger.kernel.org
21703 S:      Maintained
21704 F:      include/linux/uuid.h
21705 F:      include/uapi/linux/uuid.h
21706 F:      lib/test_uuid.c
21707 F:      lib/uuid.c
21708
21709 UV SYSFS DRIVER
21710 M:      Justin Ernst <justin.ernst@hpe.com>
21711 L:      platform-driver-x86@vger.kernel.org
21712 S:      Maintained
21713 F:      drivers/platform/x86/uv_sysfs.c
21714
21715 UVESAFB DRIVER
21716 M:      Michal Januszewski <spock@gentoo.org>
21717 L:      linux-fbdev@vger.kernel.org
21718 S:      Maintained
21719 W:      https://github.com/mjanusz/v86d
21720 F:      Documentation/fb/uvesafb.rst
21721 F:      drivers/video/fbdev/uvesafb.*
21722
21723 Ux500 CLOCK DRIVERS
21724 M:      Ulf Hansson <ulf.hansson@linaro.org>
21725 L:      linux-clk@vger.kernel.org
21726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21727 S:      Maintained
21728 F:      drivers/clk/ux500/
21729
21730 VF610 NAND DRIVER
21731 M:      Stefan Agner <stefan@agner.ch>
21732 L:      linux-mtd@lists.infradead.org
21733 S:      Supported
21734 F:      drivers/mtd/nand/raw/vf610_nfc.c
21735
21736 VFAT/FAT/MSDOS FILESYSTEM
21737 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21738 S:      Maintained
21739 F:      Documentation/filesystems/vfat.rst
21740 F:      fs/fat/
21741 F:      tools/testing/selftests/filesystems/fat/
21742
21743 VFIO DRIVER
21744 M:      Alex Williamson <alex.williamson@redhat.com>
21745 R:      Cornelia Huck <cohuck@redhat.com>
21746 L:      kvm@vger.kernel.org
21747 S:      Maintained
21748 T:      git https://github.com/awilliam/linux-vfio.git
21749 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21750 F:      Documentation/driver-api/vfio.rst
21751 F:      drivers/vfio/
21752 F:      include/linux/vfio.h
21753 F:      include/linux/vfio_pci_core.h
21754 F:      include/uapi/linux/vfio.h
21755
21756 VFIO FSL-MC DRIVER
21757 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21758 L:      kvm@vger.kernel.org
21759 S:      Maintained
21760 F:      drivers/vfio/fsl-mc/
21761
21762 VFIO HISILICON PCI DRIVER
21763 M:      Longfang Liu <liulongfang@huawei.com>
21764 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21765 L:      kvm@vger.kernel.org
21766 S:      Maintained
21767 F:      drivers/vfio/pci/hisilicon/
21768
21769 VFIO MEDIATED DEVICE DRIVERS
21770 M:      Kirti Wankhede <kwankhede@nvidia.com>
21771 L:      kvm@vger.kernel.org
21772 S:      Maintained
21773 F:      Documentation/driver-api/vfio-mediated-device.rst
21774 F:      drivers/vfio/mdev/
21775 F:      include/linux/mdev.h
21776 F:      samples/vfio-mdev/
21777
21778 VFIO PCI DEVICE SPECIFIC DRIVERS
21779 R:      Jason Gunthorpe <jgg@nvidia.com>
21780 R:      Yishai Hadas <yishaih@nvidia.com>
21781 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21782 R:      Kevin Tian <kevin.tian@intel.com>
21783 L:      kvm@vger.kernel.org
21784 S:      Maintained
21785 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21786 F:      drivers/vfio/pci/*/
21787
21788 VFIO PLATFORM DRIVER
21789 M:      Eric Auger <eric.auger@redhat.com>
21790 L:      kvm@vger.kernel.org
21791 S:      Maintained
21792 F:      drivers/vfio/platform/
21793
21794 VFIO MLX5 PCI DRIVER
21795 M:      Yishai Hadas <yishaih@nvidia.com>
21796 L:      kvm@vger.kernel.org
21797 S:      Maintained
21798 F:      drivers/vfio/pci/mlx5/
21799
21800 VGA_SWITCHEROO
21801 R:      Lukas Wunner <lukas@wunner.de>
21802 S:      Maintained
21803 T:      git git://anongit.freedesktop.org/drm/drm-misc
21804 F:      Documentation/gpu/vga-switcheroo.rst
21805 F:      drivers/gpu/vga/vga_switcheroo.c
21806 F:      include/linux/vga_switcheroo.h
21807
21808 VIA RHINE NETWORK DRIVER
21809 S:      Maintained
21810 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21811 F:      drivers/net/ethernet/via/via-rhine.c
21812
21813 VIA SD/MMC CARD CONTROLLER DRIVER
21814 M:      Bruce Chang <brucechang@via.com.tw>
21815 M:      Harald Welte <HaraldWelte@viatech.com>
21816 S:      Maintained
21817 F:      drivers/mmc/host/via-sdmmc.c
21818
21819 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21820 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21821 L:      linux-fbdev@vger.kernel.org
21822 S:      Maintained
21823 F:      drivers/video/fbdev/via/
21824 F:      include/linux/via-core.h
21825 F:      include/linux/via-gpio.h
21826 F:      include/linux/via_i2c.h
21827
21828 VIA VELOCITY NETWORK DRIVER
21829 M:      Francois Romieu <romieu@fr.zoreil.com>
21830 L:      netdev@vger.kernel.org
21831 S:      Maintained
21832 F:      drivers/net/ethernet/via/via-velocity.*
21833
21834 VICODEC VIRTUAL CODEC DRIVER
21835 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21836 L:      linux-media@vger.kernel.org
21837 S:      Maintained
21838 W:      https://linuxtv.org
21839 T:      git git://linuxtv.org/media_tree.git
21840 F:      drivers/media/test-drivers/vicodec/*
21841
21842 VIDEO I2C POLLING DRIVER
21843 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21844 L:      linux-media@vger.kernel.org
21845 S:      Maintained
21846 F:      drivers/media/i2c/video-i2c.c
21847
21848 VIDEO MULTIPLEXER DRIVER
21849 M:      Philipp Zabel <p.zabel@pengutronix.de>
21850 L:      linux-media@vger.kernel.org
21851 S:      Maintained
21852 F:      drivers/media/platform/video-mux.c
21853
21854 VIDEOBUF2 FRAMEWORK
21855 M:      Tomasz Figa <tfiga@chromium.org>
21856 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21857 L:      linux-media@vger.kernel.org
21858 S:      Maintained
21859 F:      drivers/media/common/videobuf2/*
21860 F:      include/media/videobuf2-*
21861
21862 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21863 M:      Shuah Khan <skhan@linuxfoundation.org>
21864 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21865 L:      linux-media@vger.kernel.org
21866 S:      Maintained
21867 W:      https://linuxtv.org
21868 T:      git git://linuxtv.org/media_tree.git
21869 F:      drivers/media/test-drivers/vimc/*
21870
21871 VIRT LIB
21872 M:      Alex Williamson <alex.williamson@redhat.com>
21873 M:      Paolo Bonzini <pbonzini@redhat.com>
21874 L:      kvm@vger.kernel.org
21875 S:      Supported
21876 F:      virt/lib/
21877
21878 VIRTIO AND VHOST VSOCK DRIVER
21879 M:      Stefan Hajnoczi <stefanha@redhat.com>
21880 M:      Stefano Garzarella <sgarzare@redhat.com>
21881 L:      kvm@vger.kernel.org
21882 L:      virtualization@lists.linux-foundation.org
21883 L:      netdev@vger.kernel.org
21884 S:      Maintained
21885 F:      drivers/vhost/vsock.c
21886 F:      include/linux/virtio_vsock.h
21887 F:      include/uapi/linux/virtio_vsock.h
21888 F:      net/vmw_vsock/virtio_transport.c
21889 F:      net/vmw_vsock/virtio_transport_common.c
21890
21891 VIRTIO BLOCK AND SCSI DRIVERS
21892 M:      "Michael S. Tsirkin" <mst@redhat.com>
21893 M:      Jason Wang <jasowang@redhat.com>
21894 R:      Paolo Bonzini <pbonzini@redhat.com>
21895 R:      Stefan Hajnoczi <stefanha@redhat.com>
21896 L:      virtualization@lists.linux-foundation.org
21897 S:      Maintained
21898 F:      drivers/block/virtio_blk.c
21899 F:      drivers/scsi/virtio_scsi.c
21900 F:      drivers/vhost/scsi.c
21901 F:      include/uapi/linux/virtio_blk.h
21902 F:      include/uapi/linux/virtio_scsi.h
21903
21904 VIRTIO CONSOLE DRIVER
21905 M:      Amit Shah <amit@kernel.org>
21906 L:      virtualization@lists.linux-foundation.org
21907 S:      Maintained
21908 F:      drivers/char/virtio_console.c
21909 F:      include/linux/virtio_console.h
21910 F:      include/uapi/linux/virtio_console.h
21911
21912 VIRTIO CORE AND NET DRIVERS
21913 M:      "Michael S. Tsirkin" <mst@redhat.com>
21914 M:      Jason Wang <jasowang@redhat.com>
21915 L:      virtualization@lists.linux-foundation.org
21916 S:      Maintained
21917 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21918 F:      Documentation/ABI/testing/sysfs-class-vduse
21919 F:      Documentation/devicetree/bindings/virtio/
21920 F:      drivers/block/virtio_blk.c
21921 F:      drivers/crypto/virtio/
21922 F:      drivers/net/virtio_net.c
21923 F:      drivers/vdpa/
21924 F:      drivers/virtio/
21925 F:      include/linux/vdpa.h
21926 F:      include/linux/virtio*.h
21927 F:      include/uapi/linux/virtio_*.h
21928 F:      tools/virtio/
21929
21930 VISL VIRTUAL STATELESS DECODER DRIVER
21931 M:      Daniel Almeida <daniel.almeida@collabora.com>
21932 L:      linux-media@vger.kernel.org
21933 S:      Supported
21934 F:      drivers/media/test-drivers/visl
21935
21936 IFCVF VIRTIO DATA PATH ACCELERATOR
21937 R:      Zhu Lingshan <lingshan.zhu@intel.com>
21938 F:      drivers/vdpa/ifcvf/
21939
21940 VIRTIO BALLOON
21941 M:      "Michael S. Tsirkin" <mst@redhat.com>
21942 M:      David Hildenbrand <david@redhat.com>
21943 L:      virtualization@lists.linux-foundation.org
21944 S:      Maintained
21945 F:      drivers/virtio/virtio_balloon.c
21946 F:      include/uapi/linux/virtio_balloon.h
21947 F:      include/linux/balloon_compaction.h
21948 F:      mm/balloon_compaction.c
21949
21950 VIRTIO CRYPTO DRIVER
21951 M:      Gonglei <arei.gonglei@huawei.com>
21952 L:      virtualization@lists.linux-foundation.org
21953 L:      linux-crypto@vger.kernel.org
21954 S:      Maintained
21955 F:      drivers/crypto/virtio/
21956 F:      include/uapi/linux/virtio_crypto.h
21957
21958 VIRTIO DRIVERS FOR S390
21959 M:      Cornelia Huck <cohuck@redhat.com>
21960 M:      Halil Pasic <pasic@linux.ibm.com>
21961 M:      Eric Farman <farman@linux.ibm.com>
21962 L:      linux-s390@vger.kernel.org
21963 L:      virtualization@lists.linux-foundation.org
21964 L:      kvm@vger.kernel.org
21965 S:      Supported
21966 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21967 F:      drivers/s390/virtio/
21968
21969 VIRTIO FILE SYSTEM
21970 M:      Vivek Goyal <vgoyal@redhat.com>
21971 M:      Stefan Hajnoczi <stefanha@redhat.com>
21972 M:      Miklos Szeredi <miklos@szeredi.hu>
21973 L:      virtualization@lists.linux-foundation.org
21974 L:      linux-fsdevel@vger.kernel.org
21975 S:      Supported
21976 W:      https://virtio-fs.gitlab.io/
21977 F:      Documentation/filesystems/virtiofs.rst
21978 F:      fs/fuse/virtio_fs.c
21979 F:      include/uapi/linux/virtio_fs.h
21980
21981 VIRTIO GPIO DRIVER
21982 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21983 M:      Viresh Kumar <vireshk@kernel.org>
21984 L:      linux-gpio@vger.kernel.org
21985 L:      virtualization@lists.linux-foundation.org
21986 S:      Maintained
21987 F:      drivers/gpio/gpio-virtio.c
21988 F:      include/uapi/linux/virtio_gpio.h
21989
21990 VIRTIO GPU DRIVER
21991 M:      David Airlie <airlied@redhat.com>
21992 M:      Gerd Hoffmann <kraxel@redhat.com>
21993 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21994 R:      Chia-I Wu <olvaffe@gmail.com>
21995 L:      dri-devel@lists.freedesktop.org
21996 L:      virtualization@lists.linux-foundation.org
21997 S:      Maintained
21998 T:      git git://anongit.freedesktop.org/drm/drm-misc
21999 F:      drivers/gpu/drm/virtio/
22000 F:      include/uapi/linux/virtio_gpu.h
22001
22002 VIRTIO HOST (VHOST)
22003 M:      "Michael S. Tsirkin" <mst@redhat.com>
22004 M:      Jason Wang <jasowang@redhat.com>
22005 L:      kvm@vger.kernel.org
22006 L:      virtualization@lists.linux-foundation.org
22007 L:      netdev@vger.kernel.org
22008 S:      Maintained
22009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22010 F:      drivers/vhost/
22011 F:      include/linux/vhost_iotlb.h
22012 F:      include/uapi/linux/vhost.h
22013
22014 VIRTIO INPUT DRIVER
22015 M:      Gerd Hoffmann <kraxel@redhat.com>
22016 S:      Maintained
22017 F:      drivers/virtio/virtio_input.c
22018 F:      include/uapi/linux/virtio_input.h
22019
22020 VIRTIO IOMMU DRIVER
22021 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22022 L:      virtualization@lists.linux-foundation.org
22023 S:      Maintained
22024 F:      drivers/iommu/virtio-iommu.c
22025 F:      include/uapi/linux/virtio_iommu.h
22026
22027 VIRTIO MEM DRIVER
22028 M:      David Hildenbrand <david@redhat.com>
22029 L:      virtualization@lists.linux-foundation.org
22030 S:      Maintained
22031 W:      https://virtio-mem.gitlab.io/
22032 F:      drivers/virtio/virtio_mem.c
22033 F:      include/uapi/linux/virtio_mem.h
22034
22035 VIRTIO SOUND DRIVER
22036 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22037 M:      "Michael S. Tsirkin" <mst@redhat.com>
22038 L:      virtualization@lists.linux-foundation.org
22039 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22040 S:      Maintained
22041 F:      include/uapi/linux/virtio_snd.h
22042 F:      sound/virtio/*
22043
22044 VIRTIO I2C DRIVER
22045 M:      Conghui Chen <conghui.chen@intel.com>
22046 M:      Viresh Kumar <viresh.kumar@linaro.org>
22047 L:      linux-i2c@vger.kernel.org
22048 L:      virtualization@lists.linux-foundation.org
22049 S:      Maintained
22050 F:      drivers/i2c/busses/i2c-virtio.c
22051 F:      include/uapi/linux/virtio_i2c.h
22052
22053 VIRTIO PMEM DRIVER
22054 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22055 L:      virtualization@lists.linux-foundation.org
22056 S:      Maintained
22057 F:      drivers/nvdimm/virtio_pmem.c
22058 F:      drivers/nvdimm/nd_virtio.c
22059
22060 VIRTUAL BOX GUEST DEVICE DRIVER
22061 M:      Hans de Goede <hdegoede@redhat.com>
22062 M:      Arnd Bergmann <arnd@arndb.de>
22063 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22064 S:      Maintained
22065 F:      drivers/virt/vboxguest/
22066 F:      include/linux/vbox_utils.h
22067 F:      include/uapi/linux/vbox*.h
22068
22069 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22070 M:      Hans de Goede <hdegoede@redhat.com>
22071 L:      linux-fsdevel@vger.kernel.org
22072 S:      Maintained
22073 F:      fs/vboxsf/*
22074
22075 VIRTUAL SERIO DEVICE DRIVER
22076 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22077 S:      Maintained
22078 F:      drivers/input/serio/userio.c
22079 F:      include/uapi/linux/userio.h
22080
22081 VIVID VIRTUAL VIDEO DRIVER
22082 M:      Hans Verkuil <hverkuil@xs4all.nl>
22083 L:      linux-media@vger.kernel.org
22084 S:      Maintained
22085 W:      https://linuxtv.org
22086 T:      git git://linuxtv.org/media_tree.git
22087 F:      drivers/media/test-drivers/vivid/*
22088
22089 VIDTV VIRTUAL DIGITAL TV DRIVER
22090 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22091 L:      linux-media@vger.kernel.org
22092 S:      Maintained
22093 W:      https://linuxtv.org
22094 T:      git git://linuxtv.org/media_tree.git
22095 F:      drivers/media/test-drivers/vidtv/*
22096
22097 VLYNQ BUS
22098 M:      Florian Fainelli <f.fainelli@gmail.com>
22099 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22100 S:      Maintained
22101 F:      drivers/vlynq/vlynq.c
22102 F:      include/linux/vlynq.h
22103
22104 VME SUBSYSTEM
22105 M:      Martyn Welch <martyn@welchs.me.uk>
22106 M:      Manohar Vanga <manohar.vanga@gmail.com>
22107 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22108 L:      linux-kernel@vger.kernel.org
22109 S:      Odd fixes
22110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22111 F:      Documentation/driver-api/vme.rst
22112 F:      drivers/staging/vme_user/
22113
22114 VM SOCKETS (AF_VSOCK)
22115 M:      Stefano Garzarella <sgarzare@redhat.com>
22116 L:      virtualization@lists.linux-foundation.org
22117 L:      netdev@vger.kernel.org
22118 S:      Maintained
22119 F:      drivers/net/vsockmon.c
22120 F:      include/net/af_vsock.h
22121 F:      include/uapi/linux/vm_sockets.h
22122 F:      include/uapi/linux/vm_sockets_diag.h
22123 F:      include/uapi/linux/vsockmon.h
22124 F:      net/vmw_vsock/
22125 F:      tools/testing/vsock/
22126
22127 VMWARE BALLOON DRIVER
22128 M:      Nadav Amit <namit@vmware.com>
22129 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22130 L:      linux-kernel@vger.kernel.org
22131 S:      Supported
22132 F:      drivers/misc/vmw_balloon.c
22133
22134 VMWARE HYPERVISOR INTERFACE
22135 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22136 M:      Alexey Makhalov <amakhalov@vmware.com>
22137 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22138 L:      virtualization@lists.linux-foundation.org
22139 L:      x86@kernel.org
22140 S:      Supported
22141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22142 F:      arch/x86/include/asm/vmware.h
22143 F:      arch/x86/kernel/cpu/vmware.c
22144
22145 VMWARE PVRDMA DRIVER
22146 M:      Bryan Tan <bryantan@vmware.com>
22147 M:      Vishnu Dasa <vdasa@vmware.com>
22148 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22149 L:      linux-rdma@vger.kernel.org
22150 S:      Supported
22151 F:      drivers/infiniband/hw/vmw_pvrdma/
22152
22153 VMWARE PVSCSI DRIVER
22154 M:      Vishal Bhakta <vbhakta@vmware.com>
22155 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22156 L:      linux-scsi@vger.kernel.org
22157 S:      Supported
22158 F:      drivers/scsi/vmw_pvscsi.c
22159 F:      drivers/scsi/vmw_pvscsi.h
22160
22161 VMWARE VIRTUAL PTP CLOCK DRIVER
22162 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22163 M:      Deep Shah <sdeep@vmware.com>
22164 R:      Alexey Makhalov <amakhalov@vmware.com>
22165 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22166 L:      netdev@vger.kernel.org
22167 S:      Supported
22168 F:      drivers/ptp/ptp_vmw.c
22169
22170 VMWARE VMCI DRIVER
22171 M:      Bryan Tan <bryantan@vmware.com>
22172 M:      Vishnu Dasa <vdasa@vmware.com>
22173 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22174 L:      linux-kernel@vger.kernel.org
22175 S:      Supported
22176 F:      drivers/misc/vmw_vmci/
22177 F:      include/linux/vmw_vmci*
22178
22179 VMWARE VMMOUSE SUBDRIVER
22180 M:      Zack Rusin <zackr@vmware.com>
22181 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22182 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22183 L:      linux-input@vger.kernel.org
22184 S:      Supported
22185 F:      drivers/input/mouse/vmmouse.c
22186 F:      drivers/input/mouse/vmmouse.h
22187
22188 VMWARE VMXNET3 ETHERNET DRIVER
22189 M:      Ronak Doshi <doshir@vmware.com>
22190 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22191 L:      netdev@vger.kernel.org
22192 S:      Supported
22193 F:      drivers/net/vmxnet3/
22194
22195 VMWARE VSOCK VMCI TRANSPORT DRIVER
22196 M:      Bryan Tan <bryantan@vmware.com>
22197 M:      Vishnu Dasa <vdasa@vmware.com>
22198 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22199 L:      linux-kernel@vger.kernel.org
22200 S:      Supported
22201 F:      net/vmw_vsock/vmci_transport*
22202
22203 VOCORE VOCORE2 BOARD
22204 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22205 L:      linux-mips@vger.kernel.org
22206 S:      Maintained
22207 F:      arch/mips/boot/dts/ralink/vocore2.dts
22208
22209 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22210 M:      Liam Girdwood <lgirdwood@gmail.com>
22211 M:      Mark Brown <broonie@kernel.org>
22212 L:      linux-kernel@vger.kernel.org
22213 S:      Supported
22214 W:      http://www.slimlogic.co.uk/?p=48
22215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22216 F:      Documentation/devicetree/bindings/regulator/
22217 F:      Documentation/power/regulator/
22218 F:      drivers/regulator/
22219 F:      include/dt-bindings/regulator/
22220 F:      include/linux/regulator/
22221 K:      regulator_get_optional
22222
22223 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22224 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22225 F:      drivers/regulator/irq_helpers.c
22226
22227 VRF
22228 M:      David Ahern <dsahern@kernel.org>
22229 L:      netdev@vger.kernel.org
22230 S:      Maintained
22231 F:      Documentation/networking/vrf.rst
22232 F:      drivers/net/vrf.c
22233
22234 VSPRINTF
22235 M:      Petr Mladek <pmladek@suse.com>
22236 M:      Steven Rostedt <rostedt@goodmis.org>
22237 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22238 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22239 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22240 S:      Maintained
22241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22242 F:      Documentation/core-api/printk-formats.rst
22243 F:      lib/test_printf.c
22244 F:      lib/test_scanf.c
22245 F:      lib/vsprintf.c
22246
22247 VT1211 HARDWARE MONITOR DRIVER
22248 M:      Juerg Haefliger <juergh@proton.me>
22249 L:      linux-hwmon@vger.kernel.org
22250 S:      Maintained
22251 F:      Documentation/hwmon/vt1211.rst
22252 F:      drivers/hwmon/vt1211.c
22253
22254 VT8231 HARDWARE MONITOR DRIVER
22255 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22256 L:      linux-hwmon@vger.kernel.org
22257 S:      Maintained
22258 F:      drivers/hwmon/vt8231.c
22259
22260 VUB300 USB to SDIO/SD/MMC bridge chip
22261 L:      linux-mmc@vger.kernel.org
22262 S:      Orphan
22263 F:      drivers/mmc/host/vub300.c
22264
22265 W1 DALLAS'S 1-WIRE BUS
22266 M:      Evgeniy Polyakov <zbr@ioremap.net>
22267 S:      Maintained
22268 F:      Documentation/devicetree/bindings/w1/
22269 F:      Documentation/w1/
22270 F:      drivers/w1/
22271 F:      include/linux/w1.h
22272
22273 W83791D HARDWARE MONITORING DRIVER
22274 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22275 L:      linux-hwmon@vger.kernel.org
22276 S:      Maintained
22277 F:      Documentation/hwmon/w83791d.rst
22278 F:      drivers/hwmon/w83791d.c
22279
22280 W83793 HARDWARE MONITORING DRIVER
22281 M:      Rudolf Marek <r.marek@assembler.cz>
22282 L:      linux-hwmon@vger.kernel.org
22283 S:      Maintained
22284 F:      Documentation/hwmon/w83793.rst
22285 F:      drivers/hwmon/w83793.c
22286
22287 W83795 HARDWARE MONITORING DRIVER
22288 M:      Jean Delvare <jdelvare@suse.com>
22289 L:      linux-hwmon@vger.kernel.org
22290 S:      Maintained
22291 F:      drivers/hwmon/w83795.c
22292
22293 W83L51xD SD/MMC CARD INTERFACE DRIVER
22294 M:      Pierre Ossman <pierre@ossman.eu>
22295 S:      Maintained
22296 F:      drivers/mmc/host/wbsd.*
22297
22298 WACOM PROTOCOL 4 SERIAL TABLETS
22299 M:      Julian Squires <julian@cipht.net>
22300 M:      Hans de Goede <hdegoede@redhat.com>
22301 L:      linux-input@vger.kernel.org
22302 S:      Maintained
22303 F:      drivers/input/tablet/wacom_serial4.c
22304
22305 WANGXUN ETHERNET DRIVER
22306 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22307 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22308 W:      https://www.net-swift.com
22309 L:      netdev@vger.kernel.org
22310 S:      Maintained
22311 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22312 F:      drivers/net/ethernet/wangxun/
22313
22314 WATCHDOG DEVICE DRIVERS
22315 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22316 M:      Guenter Roeck <linux@roeck-us.net>
22317 L:      linux-watchdog@vger.kernel.org
22318 S:      Maintained
22319 W:      http://www.linux-watchdog.org/
22320 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22321 F:      Documentation/devicetree/bindings/watchdog/
22322 F:      Documentation/watchdog/
22323 F:      drivers/watchdog/
22324 F:      include/linux/watchdog.h
22325 F:      include/uapi/linux/watchdog.h
22326 F:      include/trace/events/watchdog.h
22327
22328 WHISKEYCOVE PMIC GPIO DRIVER
22329 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22330 L:      linux-gpio@vger.kernel.org
22331 S:      Maintained
22332 F:      drivers/gpio/gpio-wcove.c
22333
22334 WHWAVE RTC DRIVER
22335 M:      Dianlong Li <long17.cool@163.com>
22336 L:      linux-rtc@vger.kernel.org
22337 S:      Maintained
22338 F:      drivers/rtc/rtc-sd3078.c
22339
22340 WIIMOTE HID DRIVER
22341 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22342 L:      linux-input@vger.kernel.org
22343 S:      Maintained
22344 F:      drivers/hid/hid-wiimote*
22345
22346 WILOCITY WIL6210 WIRELESS DRIVER
22347 L:      linux-wireless@vger.kernel.org
22348 S:      Orphan
22349 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22350 F:      drivers/net/wireless/ath/wil6210/
22351
22352 WINBOND CIR DRIVER
22353 M:      David Härdeman <david@hardeman.nu>
22354 S:      Maintained
22355 F:      drivers/media/rc/winbond-cir.c
22356
22357 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22358 M:      William Breathitt Gray <william.gray@linaro.org>
22359 L:      linux-watchdog@vger.kernel.org
22360 S:      Maintained
22361 F:      drivers/watchdog/ebc-c384_wdt.c
22362
22363 WINSYSTEMS WS16C48 GPIO DRIVER
22364 M:      William Breathitt Gray <william.gray@linaro.org>
22365 L:      linux-gpio@vger.kernel.org
22366 S:      Maintained
22367 F:      drivers/gpio/gpio-ws16c48.c
22368
22369 WIREGUARD SECURE NETWORK TUNNEL
22370 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22371 L:      wireguard@lists.zx2c4.com
22372 L:      netdev@vger.kernel.org
22373 S:      Maintained
22374 F:      drivers/net/wireguard/
22375 F:      tools/testing/selftests/wireguard/
22376
22377 WISTRON LAPTOP BUTTON DRIVER
22378 M:      Miloslav Trmac <mitr@volny.cz>
22379 S:      Maintained
22380 F:      drivers/input/misc/wistron_btns.c
22381
22382 WL3501 WIRELESS PCMCIA CARD DRIVER
22383 L:      linux-wireless@vger.kernel.org
22384 S:      Odd fixes
22385 F:      drivers/net/wireless/wl3501*
22386
22387 WOLFSON MICROELECTRONICS DRIVERS
22388 L:      patches@opensource.cirrus.com
22389 S:      Supported
22390 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22391 T:      git https://github.com/CirrusLogic/linux-drivers.git
22392 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22393 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22394 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22395 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22396 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22397 F:      Documentation/devicetree/bindings/sound/wm*
22398 F:      Documentation/hwmon/wm83??.rst
22399 F:      arch/arm/mach-s3c/mach-crag6410*
22400 F:      drivers/clk/clk-wm83*.c
22401 F:      drivers/gpio/gpio-*wm*.c
22402 F:      drivers/gpio/gpio-arizona.c
22403 F:      drivers/hwmon/wm83??-hwmon.c
22404 F:      drivers/input/misc/wm831x-on.c
22405 F:      drivers/input/touchscreen/wm831x-ts.c
22406 F:      drivers/input/touchscreen/wm97*.c
22407 F:      drivers/leds/leds-wm83*.c
22408 F:      drivers/mfd/arizona*
22409 F:      drivers/mfd/cs47l24*
22410 F:      drivers/mfd/wm*.c
22411 F:      drivers/power/supply/wm83*.c
22412 F:      drivers/regulator/arizona*
22413 F:      drivers/regulator/wm8*.c
22414 F:      drivers/rtc/rtc-wm83*.c
22415 F:      drivers/video/backlight/wm83*_bl.c
22416 F:      drivers/watchdog/wm83*_wdt.c
22417 F:      include/linux/mfd/arizona/
22418 F:      include/linux/mfd/wm831x/
22419 F:      include/linux/mfd/wm8350/
22420 F:      include/linux/mfd/wm8400*
22421 F:      include/linux/regulator/arizona*
22422 F:      include/linux/wm97xx.h
22423 F:      include/sound/wm????.h
22424 F:      sound/soc/codecs/arizona*
22425 F:      sound/soc/codecs/cs47l24*
22426 F:      sound/soc/codecs/wm*
22427
22428 WORKQUEUE
22429 M:      Tejun Heo <tj@kernel.org>
22430 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22431 S:      Maintained
22432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22433 F:      Documentation/core-api/workqueue.rst
22434 F:      include/linux/workqueue.h
22435 F:      kernel/workqueue.c
22436
22437 WWAN DRIVERS
22438 M:      Loic Poulain <loic.poulain@linaro.org>
22439 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22440 R:      Johannes Berg <johannes@sipsolutions.net>
22441 L:      netdev@vger.kernel.org
22442 S:      Maintained
22443 F:      drivers/net/wwan/
22444 F:      include/linux/wwan.h
22445 F:      include/uapi/linux/wwan.h
22446
22447 X-POWERS AXP288 PMIC DRIVERS
22448 M:      Hans de Goede <hdegoede@redhat.com>
22449 S:      Maintained
22450 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22451 N:      axp288
22452
22453 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22454 M:      Chen-Yu Tsai <wens@csie.org>
22455 L:      linux-kernel@vger.kernel.org
22456 S:      Maintained
22457 N:      axp[128]
22458
22459 X.25 STACK
22460 M:      Martin Schiller <ms@dev.tdt.de>
22461 L:      linux-x25@vger.kernel.org
22462 S:      Maintained
22463 F:      Documentation/networking/lapb-module.rst
22464 F:      Documentation/networking/x25*
22465 F:      drivers/net/wan/hdlc_x25.c
22466 F:      drivers/net/wan/lapbether.c
22467 F:      include/*/lapb.h
22468 F:      include/net/x25*
22469 F:      include/uapi/linux/x25.h
22470 F:      net/lapb/
22471 F:      net/x25/
22472
22473 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22474 M:      Thomas Gleixner <tglx@linutronix.de>
22475 M:      Ingo Molnar <mingo@redhat.com>
22476 M:      Borislav Petkov <bp@alien8.de>
22477 M:      Dave Hansen <dave.hansen@linux.intel.com>
22478 M:      x86@kernel.org
22479 R:      "H. Peter Anvin" <hpa@zytor.com>
22480 L:      linux-kernel@vger.kernel.org
22481 S:      Maintained
22482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22483 F:      Documentation/devicetree/bindings/x86/
22484 F:      Documentation/x86/
22485 F:      arch/x86/
22486
22487 X86 ENTRY CODE
22488 M:      Andy Lutomirski <luto@kernel.org>
22489 L:      linux-kernel@vger.kernel.org
22490 S:      Maintained
22491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22492 F:      arch/x86/entry/
22493
22494 X86 MCE INFRASTRUCTURE
22495 M:      Tony Luck <tony.luck@intel.com>
22496 M:      Borislav Petkov <bp@alien8.de>
22497 L:      linux-edac@vger.kernel.org
22498 S:      Maintained
22499 F:      Documentation/ABI/testing/sysfs-mce
22500 F:      Documentation/x86/x86_64/machinecheck.rst
22501 F:      arch/x86/kernel/cpu/mce/*
22502
22503 X86 MICROCODE UPDATE SUPPORT
22504 M:      Borislav Petkov <bp@alien8.de>
22505 S:      Maintained
22506 F:      arch/x86/kernel/cpu/microcode/*
22507
22508 X86 MM
22509 M:      Dave Hansen <dave.hansen@linux.intel.com>
22510 M:      Andy Lutomirski <luto@kernel.org>
22511 M:      Peter Zijlstra <peterz@infradead.org>
22512 L:      linux-kernel@vger.kernel.org
22513 S:      Maintained
22514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22515 F:      arch/x86/mm/
22516
22517 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22518 M:      Hans de Goede <hdegoede@redhat.com>
22519 L:      platform-driver-x86@vger.kernel.org
22520 S:      Maintained
22521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22522 F:      drivers/platform/x86/x86-android-tablets.c
22523
22524 X86 PLATFORM DRIVERS
22525 M:      Hans de Goede <hdegoede@redhat.com>
22526 M:      Mark Gross <markgross@kernel.org>
22527 L:      platform-driver-x86@vger.kernel.org
22528 S:      Maintained
22529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22530 F:      drivers/platform/olpc/
22531 F:      drivers/platform/x86/
22532 F:      include/linux/platform_data/x86/
22533
22534 X86 PLATFORM DRIVERS - ARCH
22535 R:      Darren Hart <dvhart@infradead.org>
22536 R:      Andy Shevchenko <andy@infradead.org>
22537 L:      platform-driver-x86@vger.kernel.org
22538 L:      x86@kernel.org
22539 S:      Maintained
22540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22541 F:      arch/x86/platform
22542
22543 X86 PLATFORM UV HPE SUPERDOME FLEX
22544 M:      Steve Wahl <steve.wahl@hpe.com>
22545 R:      Mike Travis <mike.travis@hpe.com>
22546 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22547 R:      Russ Anderson <russ.anderson@hpe.com>
22548 S:      Supported
22549 F:      arch/x86/include/asm/uv/
22550 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22551 F:      arch/x86/platform/uv/
22552
22553 X86 STACK UNWINDING
22554 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22555 M:      Peter Zijlstra <peterz@infradead.org>
22556 S:      Supported
22557 F:      arch/x86/include/asm/unwind*.h
22558 F:      arch/x86/kernel/dumpstack.c
22559 F:      arch/x86/kernel/stacktrace.c
22560 F:      arch/x86/kernel/unwind_*.c
22561
22562 X86 VDSO
22563 M:      Andy Lutomirski <luto@kernel.org>
22564 L:      linux-kernel@vger.kernel.org
22565 S:      Maintained
22566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22567 F:      arch/x86/entry/vdso/
22568
22569 XARRAY
22570 M:      Matthew Wilcox <willy@infradead.org>
22571 L:      linux-fsdevel@vger.kernel.org
22572 S:      Supported
22573 F:      Documentation/core-api/xarray.rst
22574 F:      include/linux/idr.h
22575 F:      include/linux/xarray.h
22576 F:      lib/idr.c
22577 F:      lib/xarray.c
22578 F:      tools/testing/radix-tree
22579
22580 XBOX DVD IR REMOTE
22581 M:      Benjamin Valentin <benpicco@googlemail.com>
22582 S:      Maintained
22583 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22584 F:      drivers/media/rc/xbox_remote.c
22585
22586 XC2028/3028 TUNER DRIVER
22587 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22588 L:      linux-media@vger.kernel.org
22589 S:      Maintained
22590 W:      https://linuxtv.org
22591 T:      git git://linuxtv.org/media_tree.git
22592 F:      drivers/media/tuners/xc2028.*
22593
22594 XDP (eXpress Data Path)
22595 M:      Alexei Starovoitov <ast@kernel.org>
22596 M:      Daniel Borkmann <daniel@iogearbox.net>
22597 M:      David S. Miller <davem@davemloft.net>
22598 M:      Jakub Kicinski <kuba@kernel.org>
22599 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22600 M:      John Fastabend <john.fastabend@gmail.com>
22601 L:      netdev@vger.kernel.org
22602 L:      bpf@vger.kernel.org
22603 S:      Supported
22604 F:      include/net/xdp.h
22605 F:      include/net/xdp_priv.h
22606 F:      include/trace/events/xdp.h
22607 F:      kernel/bpf/cpumap.c
22608 F:      kernel/bpf/devmap.c
22609 F:      net/core/xdp.c
22610 F:      samples/bpf/xdp*
22611 F:      tools/testing/selftests/bpf/*xdp*
22612 F:      tools/testing/selftests/bpf/*/*xdp*
22613 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22614 F:      drivers/net/ethernet/*/*/*xdp*
22615 K:      (?:\b|_)xdp(?:\b|_)
22616
22617 XDP SOCKETS (AF_XDP)
22618 M:      Björn Töpel <bjorn@kernel.org>
22619 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22620 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22621 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22622 L:      netdev@vger.kernel.org
22623 L:      bpf@vger.kernel.org
22624 S:      Maintained
22625 F:      Documentation/networking/af_xdp.rst
22626 F:      include/net/xdp_sock*
22627 F:      include/net/xsk_buff_pool.h
22628 F:      include/uapi/linux/if_xdp.h
22629 F:      include/uapi/linux/xdp_diag.h
22630 F:      include/net/netns/xdp.h
22631 F:      net/xdp/
22632 F:      tools/testing/selftests/bpf/*xsk*
22633
22634 XEN BLOCK SUBSYSTEM
22635 M:      Roger Pau Monné <roger.pau@citrix.com>
22636 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22637 S:      Supported
22638 F:      drivers/block/xen*
22639 F:      drivers/block/xen-blkback/*
22640
22641 XEN HYPERVISOR ARM
22642 M:      Stefano Stabellini <sstabellini@kernel.org>
22643 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22644 S:      Maintained
22645 F:      arch/arm/include/asm/xen/
22646 F:      arch/arm/xen/
22647
22648 XEN HYPERVISOR ARM64
22649 M:      Stefano Stabellini <sstabellini@kernel.org>
22650 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22651 S:      Maintained
22652 F:      arch/arm64/include/asm/xen/
22653 F:      arch/arm64/xen/
22654
22655 XEN HYPERVISOR INTERFACE
22656 M:      Juergen Gross <jgross@suse.com>
22657 M:      Stefano Stabellini <sstabellini@kernel.org>
22658 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22659 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22660 S:      Supported
22661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22662 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22663 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22664 F:      drivers/*/xen-*front.c
22665 F:      drivers/xen/
22666 F:      include/uapi/xen/
22667 F:      include/xen/
22668 F:      kernel/configs/xen.config
22669
22670 XEN HYPERVISOR X86
22671 M:      Juergen Gross <jgross@suse.com>
22672 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22673 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22674 S:      Supported
22675 F:      arch/x86/configs/xen.config
22676 F:      arch/x86/include/asm/pvclock-abi.h
22677 F:      arch/x86/include/asm/xen/
22678 F:      arch/x86/platform/pvh/
22679 F:      arch/x86/xen/
22680
22681 XEN NETWORK BACKEND DRIVER
22682 M:      Wei Liu <wei.liu@kernel.org>
22683 M:      Paul Durrant <paul@xen.org>
22684 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22685 L:      netdev@vger.kernel.org
22686 S:      Supported
22687 F:      drivers/net/xen-netback/*
22688
22689 XEN PCI SUBSYSTEM
22690 M:      Juergen Gross <jgross@suse.com>
22691 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22692 S:      Supported
22693 F:      arch/x86/pci/*xen*
22694 F:      drivers/pci/*xen*
22695
22696 XEN PVSCSI DRIVERS
22697 M:      Juergen Gross <jgross@suse.com>
22698 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22699 L:      linux-scsi@vger.kernel.org
22700 S:      Supported
22701 F:      drivers/scsi/xen-scsifront.c
22702 F:      drivers/xen/xen-scsiback.c
22703 F:      include/xen/interface/io/vscsiif.h
22704
22705 XEN PVUSB DRIVER
22706 M:      Juergen Gross <jgross@suse.com>
22707 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22708 L:      linux-usb@vger.kernel.org
22709 S:      Supported
22710 F:      drivers/usb/host/xen*
22711 F:      include/xen/interface/io/usbif.h
22712
22713 XEN SOUND FRONTEND DRIVER
22714 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22715 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22716 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22717 S:      Supported
22718 F:      sound/xen/*
22719
22720 XEN SWIOTLB SUBSYSTEM
22721 M:      Juergen Gross <jgross@suse.com>
22722 M:      Stefano Stabellini <sstabellini@kernel.org>
22723 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22724 L:      iommu@lists.linux.dev
22725 S:      Supported
22726 F:      arch/*/include/asm/xen/swiotlb-xen.h
22727 F:      drivers/xen/swiotlb-xen.c
22728 F:      include/xen/arm/swiotlb-xen.h
22729 F:      include/xen/swiotlb-xen.h
22730
22731 XFS FILESYSTEM
22732 C:      irc://irc.oftc.net/xfs
22733 M:      Darrick J. Wong <djwong@kernel.org>
22734 L:      linux-xfs@vger.kernel.org
22735 S:      Supported
22736 W:      http://xfs.org/
22737 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22738 F:      Documentation/ABI/testing/sysfs-fs-xfs
22739 F:      Documentation/admin-guide/xfs.rst
22740 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22741 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22742 F:      fs/xfs/
22743 F:      include/uapi/linux/dqblk_xfs.h
22744 F:      include/uapi/linux/fsmap.h
22745
22746 XILINX AMS DRIVER
22747 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22748 L:      linux-iio@vger.kernel.org
22749 S:      Maintained
22750 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22751 F:      drivers/iio/adc/xilinx-ams.c
22752
22753 XILINX AXI ETHERNET DRIVER
22754 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22755 S:      Maintained
22756 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22757
22758 XILINX CAN DRIVER
22759 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22760 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22761 L:      linux-can@vger.kernel.org
22762 S:      Maintained
22763 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22764 F:      drivers/net/can/xilinx_can.c
22765
22766 XILINX GPIO DRIVER
22767 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22768 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22769 R:      Michal Simek <michal.simek@xilinx.com>
22770 S:      Maintained
22771 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22772 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22773 F:      drivers/gpio/gpio-xilinx.c
22774 F:      drivers/gpio/gpio-zynq.c
22775
22776 XILINX SD-FEC IP CORES
22777 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22778 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22779 S:      Maintained
22780 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22781 F:      Documentation/misc-devices/xilinx_sdfec.rst
22782 F:      drivers/misc/Kconfig
22783 F:      drivers/misc/Makefile
22784 F:      drivers/misc/xilinx_sdfec.c
22785 F:      include/uapi/misc/xilinx_sdfec.h
22786
22787 XILINX PWM DRIVER
22788 M:      Sean Anderson <sean.anderson@seco.com>
22789 S:      Maintained
22790 F:      drivers/pwm/pwm-xilinx.c
22791 F:      include/clocksource/timer-xilinx.h
22792
22793 XILINX UARTLITE SERIAL DRIVER
22794 M:      Peter Korsgaard <jacmet@sunsite.dk>
22795 L:      linux-serial@vger.kernel.org
22796 S:      Maintained
22797 F:      drivers/tty/serial/uartlite.c
22798
22799 XILINX VIDEO IP CORES
22800 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22801 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22802 L:      linux-media@vger.kernel.org
22803 S:      Supported
22804 T:      git git://linuxtv.org/media_tree.git
22805 F:      Documentation/devicetree/bindings/media/xilinx/
22806 F:      drivers/media/platform/xilinx/
22807 F:      include/uapi/linux/xilinx-v4l2-controls.h
22808
22809 XILINX ZYNQMP DPDMA DRIVER
22810 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22811 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22812 L:      dmaengine@vger.kernel.org
22813 S:      Supported
22814 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22815 F:      drivers/dma/xilinx/xilinx_dpdma.c
22816 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22817
22818 XILINX ZYNQMP OCM EDAC DRIVER
22819 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22820 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22821 S:      Maintained
22822 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22823 F:      drivers/edac/zynqmp_edac.c
22824
22825 XILINX ZYNQMP PSGTR PHY DRIVER
22826 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22827 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22828 L:      linux-kernel@vger.kernel.org
22829 S:      Supported
22830 T:      git https://github.com/Xilinx/linux-xlnx.git
22831 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22832 F:      drivers/phy/xilinx/phy-zynqmp.c
22833
22834 XILINX ZYNQMP SHA3 DRIVER
22835 M:      Harsha <harsha.harsha@xilinx.com>
22836 S:      Maintained
22837 F:      drivers/crypto/xilinx/zynqmp-sha.c
22838
22839 XILINX EVENT MANAGEMENT DRIVER
22840 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22841 S:      Maintained
22842 F:      drivers/soc/xilinx/xlnx_event_manager.c
22843 F:      include/linux/firmware/xlnx-event-manager.h
22844
22845 XILLYBUS DRIVER
22846 M:      Eli Billauer <eli.billauer@gmail.com>
22847 L:      linux-kernel@vger.kernel.org
22848 S:      Supported
22849 F:      drivers/char/xillybus/
22850
22851 XLP9XX I2C DRIVER
22852 M:      George Cherian <gcherian@marvell.com>
22853 L:      linux-i2c@vger.kernel.org
22854 S:      Supported
22855 W:      http://www.marvell.com
22856 F:      drivers/i2c/busses/i2c-xlp9xx.c
22857
22858 XRA1403 GPIO EXPANDER
22859 M:      Nandor Han <nandor.han@ge.com>
22860 M:      Semi Malinen <semi.malinen@ge.com>
22861 L:      linux-gpio@vger.kernel.org
22862 S:      Maintained
22863 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22864 F:      drivers/gpio/gpio-xra1403.c
22865
22866 XTENSA XTFPGA PLATFORM SUPPORT
22867 M:      Max Filippov <jcmvbkbc@gmail.com>
22868 L:      linux-xtensa@linux-xtensa.org
22869 S:      Maintained
22870 F:      drivers/spi/spi-xtensa-xtfpga.c
22871 F:      sound/soc/xtensa/xtfpga-i2s.c
22872
22873 YAM DRIVER FOR AX.25
22874 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22875 L:      linux-hams@vger.kernel.org
22876 S:      Maintained
22877 F:      drivers/net/hamradio/yam*
22878 F:      include/linux/yam.h
22879
22880 YAMA SECURITY MODULE
22881 M:      Kees Cook <keescook@chromium.org>
22882 S:      Supported
22883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22884 F:      Documentation/admin-guide/LSM/Yama.rst
22885 F:      security/yama/
22886
22887 YEALINK PHONE DRIVER
22888 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22889 L:      usbb2k-api-dev@nongnu.org
22890 S:      Maintained
22891 F:      Documentation/input/devices/yealink.rst
22892 F:      drivers/input/misc/yealink.*
22893
22894 Z8530 DRIVER FOR AX.25
22895 M:      Joerg Reuter <jreuter@yaina.de>
22896 L:      linux-hams@vger.kernel.org
22897 S:      Maintained
22898 W:      http://yaina.de/jreuter/
22899 W:      http://www.qsl.net/dl1bke/
22900 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22901 F:      drivers/net/hamradio/*scc.c
22902 F:      drivers/net/hamradio/z8530.h
22903
22904 ZBUD COMPRESSED PAGE ALLOCATOR
22905 M:      Seth Jennings <sjenning@redhat.com>
22906 M:      Dan Streetman <ddstreet@ieee.org>
22907 L:      linux-mm@kvack.org
22908 S:      Maintained
22909 F:      mm/zbud.c
22910
22911 Z3FOLD COMPRESSED PAGE ALLOCATOR
22912 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22913 R:      Miaohe Lin <linmiaohe@huawei.com>
22914 L:      linux-mm@kvack.org
22915 S:      Maintained
22916 F:      mm/z3fold.c
22917
22918 ZD1211RW WIRELESS DRIVER
22919 M:      Ulrich Kunitz <kune@deine-taler.de>
22920 L:      linux-wireless@vger.kernel.org
22921 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22922 S:      Maintained
22923 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22924 F:      drivers/net/wireless/zydas/zd1211rw/
22925
22926 ZD1301 MEDIA DRIVER
22927 M:      Antti Palosaari <crope@iki.fi>
22928 L:      linux-media@vger.kernel.org
22929 S:      Maintained
22930 W:      https://linuxtv.org/
22931 W:      http://palosaari.fi/linux/
22932 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22933 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22934
22935 ZD1301_DEMOD MEDIA DRIVER
22936 M:      Antti Palosaari <crope@iki.fi>
22937 L:      linux-media@vger.kernel.org
22938 S:      Maintained
22939 W:      https://linuxtv.org/
22940 W:      http://palosaari.fi/linux/
22941 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22942 F:      drivers/media/dvb-frontends/zd1301_demod*
22943
22944 ZHAOXIN PROCESSOR SUPPORT
22945 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22946 L:      linux-kernel@vger.kernel.org
22947 S:      Maintained
22948 F:      arch/x86/kernel/cpu/zhaoxin.c
22949
22950 ZONEFS FILESYSTEM
22951 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22952 M:      Naohiro Aota <naohiro.aota@wdc.com>
22953 R:      Johannes Thumshirn <jth@kernel.org>
22954 L:      linux-fsdevel@vger.kernel.org
22955 S:      Maintained
22956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22957 F:      Documentation/filesystems/zonefs.rst
22958 F:      fs/zonefs/
22959
22960 ZPOOL COMPRESSED PAGE STORAGE API
22961 M:      Dan Streetman <ddstreet@ieee.org>
22962 L:      linux-mm@kvack.org
22963 S:      Maintained
22964 F:      include/linux/zpool.h
22965 F:      mm/zpool.c
22966
22967 ZR36067 VIDEO FOR LINUX DRIVER
22968 M:      Corentin Labbe <clabbe@baylibre.com>
22969 L:      mjpeg-users@lists.sourceforge.net
22970 L:      linux-media@vger.kernel.org
22971 S:      Maintained
22972 W:      http://mjpeg.sourceforge.net/driver-zoran/
22973 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22974 F:      Documentation/driver-api/media/drivers/zoran.rst
22975 F:      drivers/media/pci/zoran/
22976
22977 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22978 M:      Minchan Kim <minchan@kernel.org>
22979 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22980 L:      linux-kernel@vger.kernel.org
22981 S:      Maintained
22982 F:      Documentation/admin-guide/blockdev/zram.rst
22983 F:      drivers/block/zram/
22984
22985 ZS DECSTATION Z85C30 SERIAL DRIVER
22986 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22987 S:      Maintained
22988 F:      drivers/tty/serial/zs.*
22989
22990 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22991 M:      Minchan Kim <minchan@kernel.org>
22992 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22993 L:      linux-mm@kvack.org
22994 S:      Maintained
22995 F:      Documentation/mm/zsmalloc.rst
22996 F:      include/linux/zsmalloc.h
22997 F:      mm/zsmalloc.c
22998
22999 ZSTD
23000 M:      Nick Terrell <terrelln@fb.com>
23001 S:      Maintained
23002 B:      https://github.com/facebook/zstd/issues
23003 T:      git https://github.com/terrelln/linux.git
23004 F:      include/linux/zstd*
23005 F:      lib/zstd/
23006 F:      lib/decompress_unzstd.c
23007 F:      crypto/zstd.c
23008 N:      zstd
23009 K:      zstd
23010
23011 ZSWAP COMPRESSED SWAP CACHING
23012 M:      Seth Jennings <sjenning@redhat.com>
23013 M:      Dan Streetman <ddstreet@ieee.org>
23014 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23015 L:      linux-mm@kvack.org
23016 S:      Maintained
23017 F:      mm/zswap.c
23018
23019 THE REST
23020 M:      Linus Torvalds <torvalds@linux-foundation.org>
23021 L:      linux-kernel@vger.kernel.org
23022 S:      Buried alive in reporters
23023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23024 F:      *
23025 F:      */