media: i2c: Drop unused mt9m032 camera sensor driver
[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 ADA4250 DRIVER
1231 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1232 L:      linux-iio@vger.kernel.org
1233 S:      Supported
1234 W:      https://ez.analog.com/linux-software-drivers
1235 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1236 F:      drivers/iio/amplifiers/ada4250.c
1237
1238 ANALOG DEVICES INC ADF4377 DRIVER
1239 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1240 L:      linux-iio@vger.kernel.org
1241 S:      Supported
1242 W:      https://ez.analog.com/linux-software-drivers
1243 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1244 F:      drivers/iio/frequency/adf4377.c
1245
1246 ANALOG DEVICES INC ADGS1408 DRIVER
1247 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1248 S:      Supported
1249 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1250 F:      drivers/mux/adgs1408.c
1251
1252 ANALOG DEVICES INC ADIN DRIVER
1253 M:      Michael Hennerich <michael.hennerich@analog.com>
1254 L:      netdev@vger.kernel.org
1255 S:      Supported
1256 W:      https://ez.analog.com/linux-software-drivers
1257 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1258 F:      drivers/net/phy/adin.c
1259
1260 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1261 M:      Nuno Sa <nuno.sa@analog.com>
1262 L:      linux-iio@vger.kernel.org
1263 S:      Supported
1264 F:      drivers/iio/imu/adis.c
1265 F:      drivers/iio/imu/adis_buffer.c
1266 F:      drivers/iio/imu/adis_trigger.c
1267 F:      include/linux/iio/imu/adis.h
1268
1269 ANALOG DEVICES INC ADIS16460 DRIVER
1270 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1271 L:      linux-iio@vger.kernel.org
1272 S:      Supported
1273 W:      https://ez.analog.com/linux-software-drivers
1274 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1275 F:      drivers/iio/imu/adis16460.c
1276
1277 ANALOG DEVICES INC ADIS16475 DRIVER
1278 M:      Nuno Sa <nuno.sa@analog.com>
1279 L:      linux-iio@vger.kernel.org
1280 W:      https://ez.analog.com/linux-software-drivers
1281 S:      Supported
1282 F:      drivers/iio/imu/adis16475.c
1283 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1284
1285 ANALOG DEVICES INC ADM1177 DRIVER
1286 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1287 L:      linux-hwmon@vger.kernel.org
1288 S:      Supported
1289 W:      https://ez.analog.com/linux-software-drivers
1290 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1291 F:      drivers/hwmon/adm1177.c
1292
1293 ANALOG DEVICES INC ADMV1013 DRIVER
1294 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1295 L:      linux-iio@vger.kernel.org
1296 S:      Supported
1297 W:      https://ez.analog.com/linux-software-drivers
1298 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1299 F:      drivers/iio/frequency/admv1013.c
1300
1301 ANALOG DEVICES INC ADMV8818 DRIVER
1302 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1303 L:      linux-iio@vger.kernel.org
1304 S:      Supported
1305 W:      https://ez.analog.com/linux-software-drivers
1306 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1307 F:      drivers/iio/filter/admv8818.c
1308
1309 ANALOG DEVICES INC ADMV1014 DRIVER
1310 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1311 L:      linux-iio@vger.kernel.org
1312 S:      Supported
1313 W:      https://ez.analog.com/linux-software-drivers
1314 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1315 F:      drivers/iio/frequency/admv1014.c
1316
1317 ANALOG DEVICES INC ADP5061 DRIVER
1318 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1319 L:      linux-pm@vger.kernel.org
1320 S:      Supported
1321 W:      https://ez.analog.com/linux-software-drivers
1322 F:      drivers/power/supply/adp5061.c
1323
1324 ANALOG DEVICES INC ADRF6780 DRIVER
1325 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1326 L:      linux-iio@vger.kernel.org
1327 S:      Supported
1328 W:      https://ez.analog.com/linux-software-drivers
1329 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1330 F:      drivers/iio/frequency/adrf6780.c
1331
1332 ANALOG DEVICES INC ADV7180 DRIVER
1333 M:      Lars-Peter Clausen <lars@metafoo.de>
1334 L:      linux-media@vger.kernel.org
1335 S:      Supported
1336 W:      https://ez.analog.com/linux-software-drivers
1337 F:      drivers/media/i2c/adv7180.c
1338 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1339
1340 ANALOG DEVICES INC ADV748X DRIVER
1341 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1342 L:      linux-media@vger.kernel.org
1343 S:      Maintained
1344 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1345 F:      drivers/media/i2c/adv748x/*
1346
1347 ANALOG DEVICES INC ADV7511 DRIVER
1348 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1349 L:      linux-media@vger.kernel.org
1350 S:      Maintained
1351 F:      drivers/media/i2c/adv7511*
1352
1353 ANALOG DEVICES INC ADV7604 DRIVER
1354 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1355 L:      linux-media@vger.kernel.org
1356 S:      Maintained
1357 F:      drivers/media/i2c/adv7604*
1358 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1359
1360 ANALOG DEVICES INC ADV7842 DRIVER
1361 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1362 L:      linux-media@vger.kernel.org
1363 S:      Maintained
1364 F:      drivers/media/i2c/adv7842*
1365
1366 ANALOG DEVICES INC ADXRS290 DRIVER
1367 M:      Nishant Malpani <nish.malpani25@gmail.com>
1368 L:      linux-iio@vger.kernel.org
1369 S:      Supported
1370 F:      drivers/iio/gyro/adxrs290.c
1371 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1372
1373 ANALOG DEVICES INC ASOC CODEC DRIVERS
1374 M:      Lars-Peter Clausen <lars@metafoo.de>
1375 M:      Nuno Sá <nuno.sa@analog.com>
1376 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1377 S:      Supported
1378 W:      http://wiki.analog.com/
1379 W:      https://ez.analog.com/linux-software-drivers
1380 F:      sound/soc/codecs/ad1*
1381 F:      sound/soc/codecs/ad7*
1382 F:      sound/soc/codecs/adau*
1383 F:      sound/soc/codecs/adav*
1384 F:      sound/soc/codecs/sigmadsp.*
1385 F:      sound/soc/codecs/ssm*
1386
1387 ANALOG DEVICES INC DMA DRIVERS
1388 M:      Lars-Peter Clausen <lars@metafoo.de>
1389 S:      Supported
1390 W:      https://ez.analog.com/linux-software-drivers
1391 F:      drivers/dma/dma-axi-dmac.c
1392
1393 ANALOG DEVICES INC IIO DRIVERS
1394 M:      Lars-Peter Clausen <lars@metafoo.de>
1395 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1396 S:      Supported
1397 W:      http://wiki.analog.com/
1398 W:      https://ez.analog.com/linux-software-drivers
1399 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1400 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1401 F:      Documentation/devicetree/bindings/iio/*/adi,*
1402 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1403 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1404 F:      drivers/iio/*/ad*
1405 F:      drivers/iio/adc/ltc249*
1406 F:      drivers/iio/amplifiers/hmc425a.c
1407 F:      drivers/staging/iio/*/ad*
1408 X:      drivers/iio/*/adjd*
1409
1410 ANALOG DEVICES INC MAX31760 DRIVER
1411 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1412 S:      Maintained
1413 W:      http://wiki.analog.com/
1414 W:      https://ez.analog.com/linux-software-drivers
1415 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1416 F:      Documentation/hwmon/max31760.rst
1417 F:      drivers/hwmon/max31760.c
1418
1419 ANALOGBITS PLL LIBRARIES
1420 M:      Paul Walmsley <paul.walmsley@sifive.com>
1421 S:      Supported
1422 F:      drivers/clk/analogbits/*
1423 F:      include/linux/clk/analogbits*
1424
1425 ANDROID CONFIG FRAGMENTS
1426 M:      Rob Herring <robh@kernel.org>
1427 S:      Supported
1428 F:      kernel/configs/android*
1429
1430 ANDROID DRIVERS
1431 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1432 M:      Arve Hjønnevåg <arve@android.com>
1433 M:      Todd Kjos <tkjos@android.com>
1434 M:      Martijn Coenen <maco@android.com>
1435 M:      Joel Fernandes <joel@joelfernandes.org>
1436 M:      Christian Brauner <christian@brauner.io>
1437 M:      Carlos Llamas <cmllamas@google.com>
1438 M:      Suren Baghdasaryan <surenb@google.com>
1439 L:      linux-kernel@vger.kernel.org
1440 S:      Supported
1441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1442 F:      drivers/android/
1443
1444 ANDROID GOLDFISH PIC DRIVER
1445 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1446 S:      Supported
1447 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1448 F:      drivers/irqchip/irq-goldfish-pic.c
1449
1450 ANDROID GOLDFISH RTC DRIVER
1451 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1452 S:      Supported
1453 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1454 F:      drivers/rtc/rtc-goldfish.c
1455
1456 AOA (Apple Onboard Audio) ALSA DRIVER
1457 M:      Johannes Berg <johannes@sipsolutions.net>
1458 L:      linuxppc-dev@lists.ozlabs.org
1459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1460 S:      Maintained
1461 F:      sound/aoa/
1462
1463 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1464 M:      William Breathitt Gray <william.gray@linaro.org>
1465 L:      linux-iio@vger.kernel.org
1466 S:      Maintained
1467 F:      drivers/iio/addac/stx104.c
1468
1469 APM DRIVER
1470 M:      Jiri Kosina <jikos@kernel.org>
1471 S:      Odd fixes
1472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1473 F:      arch/x86/kernel/apm_32.c
1474 F:      drivers/char/apm-emulation.c
1475 F:      include/linux/apm_bios.h
1476 F:      include/uapi/linux/apm_bios.h
1477
1478 APPARMOR SECURITY MODULE
1479 M:      John Johansen <john.johansen@canonical.com>
1480 M:      John Johansen <john@apparmor.net>
1481 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1482 S:      Supported
1483 W:      apparmor.net
1484 B:      https://gitlab.com/apparmor/apparmor-kernel
1485 C:      irc://irc.oftc.net/apparmor
1486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1487 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1488 F:      Documentation/admin-guide/LSM/apparmor.rst
1489 F:      security/apparmor/
1490
1491 APPLE BCM5974 MULTITOUCH DRIVER
1492 M:      Henrik Rydberg <rydberg@bitmath.org>
1493 L:      linux-input@vger.kernel.org
1494 S:      Odd fixes
1495 F:      drivers/input/mouse/bcm5974.c
1496
1497 APPLE PCIE CONTROLLER DRIVER
1498 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1499 M:      Marc Zyngier <maz@kernel.org>
1500 L:      linux-pci@vger.kernel.org
1501 S:      Maintained
1502 F:      drivers/pci/controller/pcie-apple.c
1503
1504 APPLE SMC DRIVER
1505 M:      Henrik Rydberg <rydberg@bitmath.org>
1506 L:      linux-hwmon@vger.kernel.org
1507 S:      Odd fixes
1508 F:      drivers/hwmon/applesmc.c
1509
1510 APPLETALK NETWORK LAYER
1511 L:      netdev@vger.kernel.org
1512 S:      Odd fixes
1513 F:      drivers/net/appletalk/
1514 F:      include/linux/atalk.h
1515 F:      include/uapi/linux/atalk.h
1516 F:      net/appletalk/
1517
1518 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1519 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1520 S:      Supported
1521 F:      arch/arm64/boot/dts/apm/
1522
1523 APPLIED MICRO (APM) X-GENE SOC EDAC
1524 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1525 S:      Supported
1526 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1527 F:      drivers/edac/xgene_edac.c
1528
1529 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1530 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1531 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1532 S:      Supported
1533 F:      drivers/net/ethernet/apm/xgene-v2/
1534
1535 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1536 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1537 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1538 M:      Quan Nguyen <quan@os.amperecomputing.com>
1539 S:      Supported
1540 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1541 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1542 F:      drivers/net/ethernet/apm/xgene/
1543 F:      drivers/net/mdio/mdio-xgene.c
1544
1545 APPLIED MICRO (APM) X-GENE SOC PMU
1546 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1547 S:      Supported
1548 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1549 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1550 F:      drivers/perf/xgene_pmu.c
1551
1552 APTINA CAMERA SENSOR PLL
1553 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1554 L:      linux-media@vger.kernel.org
1555 S:      Maintained
1556 F:      drivers/media/i2c/aptina-pll.*
1557
1558 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1559 M:      Aleksa Savic <savicaleksa83@gmail.com>
1560 M:      Jack Doan <me@jackdoan.com>
1561 L:      linux-hwmon@vger.kernel.org
1562 S:      Maintained
1563 F:      Documentation/hwmon/aquacomputer_d5next.rst
1564 F:      drivers/hwmon/aquacomputer_d5next.c
1565
1566 AQUANTIA ETHERNET DRIVER (atlantic)
1567 M:      Igor Russkikh <irusskikh@marvell.com>
1568 L:      netdev@vger.kernel.org
1569 S:      Supported
1570 W:      https://www.marvell.com/
1571 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1572 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1573 F:      drivers/net/ethernet/aquantia/atlantic/
1574
1575 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1576 M:      Egor Pomozov <epomozov@marvell.com>
1577 L:      netdev@vger.kernel.org
1578 S:      Supported
1579 W:      http://www.aquantia.com
1580 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1581
1582 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1583 M:      Krzysztof Hałasa <khalasa@piap.pl>
1584 L:      linux-media@vger.kernel.org
1585 S:      Maintained
1586 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1587 F:      drivers/media/i2c/ar0521.c
1588
1589 ARASAN NAND CONTROLLER DRIVER
1590 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1591 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1592 L:      linux-mtd@lists.infradead.org
1593 S:      Maintained
1594 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1595 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1596
1597 ARC FRAMEBUFFER DRIVER
1598 M:      Jaya Kumar <jayalk@intworks.biz>
1599 S:      Maintained
1600 F:      drivers/video/fbdev/arcfb.c
1601 F:      drivers/video/fbdev/core/fb_defio.c
1602
1603 ARC PGU DRM DRIVER
1604 M:      Alexey Brodkin <abrodkin@synopsys.com>
1605 S:      Supported
1606 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1607 F:      drivers/gpu/drm/tiny/arcpgu.c
1608
1609 ARCNET NETWORK LAYER
1610 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1611 L:      netdev@vger.kernel.org
1612 S:      Maintained
1613 F:      drivers/net/arcnet/
1614 F:      include/uapi/linux/if_arcnet.h
1615
1616 ARM ARCHITECTED TIMER DRIVER
1617 M:      Mark Rutland <mark.rutland@arm.com>
1618 M:      Marc Zyngier <maz@kernel.org>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 S:      Maintained
1621 F:      arch/arm/include/asm/arch_timer.h
1622 F:      arch/arm64/include/asm/arch_timer.h
1623 F:      drivers/clocksource/arm_arch_timer.c
1624
1625 ARM HDLCD DRM DRIVER
1626 M:      Liviu Dudau <liviu.dudau@arm.com>
1627 S:      Supported
1628 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1629 F:      drivers/gpu/drm/arm/hdlcd_*
1630
1631 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1632 M:      Linus Walleij <linus.walleij@linaro.org>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1636 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1637 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1638 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1639 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1640 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1641 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1642 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1643 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1644 F:      arch/arm/boot/dts/arm-realview-*
1645 F:      arch/arm/boot/dts/integrator*
1646 F:      arch/arm/boot/dts/versatile*
1647 F:      arch/arm/mach-versatile/
1648 F:      drivers/bus/arm-integrator-lm.c
1649 F:      drivers/clk/versatile/
1650 F:      drivers/i2c/busses/i2c-versatile.c
1651 F:      drivers/irqchip/irq-versatile-fpga.c
1652 F:      drivers/mtd/maps/physmap-versatile.*
1653 F:      drivers/power/reset/arm-versatile-reboot.c
1654 F:      drivers/soc/versatile/
1655
1656 ARM KOMEDA DRM-KMS DRIVER
1657 M:      James (Qian) Wang <james.qian.wang@arm.com>
1658 M:      Liviu Dudau <liviu.dudau@arm.com>
1659 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1660 L:      Mali DP Maintainers <malidp@foss.arm.com>
1661 S:      Supported
1662 T:      git git://anongit.freedesktop.org/drm/drm-misc
1663 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1664 F:      Documentation/gpu/komeda-kms.rst
1665 F:      drivers/gpu/drm/arm/display/include/
1666 F:      drivers/gpu/drm/arm/display/komeda/
1667
1668 ARM MALI PANFROST DRM DRIVER
1669 M:      Rob Herring <robh@kernel.org>
1670 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1671 R:      Steven Price <steven.price@arm.com>
1672 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1673 L:      dri-devel@lists.freedesktop.org
1674 S:      Supported
1675 T:      git git://anongit.freedesktop.org/drm/drm-misc
1676 F:      drivers/gpu/drm/panfrost/
1677 F:      include/uapi/drm/panfrost_drm.h
1678
1679 ARM MALI-DP DRM DRIVER
1680 M:      Liviu Dudau <liviu.dudau@arm.com>
1681 M:      Brian Starkey <brian.starkey@arm.com>
1682 L:      Mali DP Maintainers <malidp@foss.arm.com>
1683 S:      Supported
1684 T:      git git://anongit.freedesktop.org/drm/drm-misc
1685 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1686 F:      Documentation/gpu/afbc.rst
1687 F:      drivers/gpu/drm/arm/
1688
1689 ARM MFM AND FLOPPY DRIVERS
1690 M:      Ian Molton <spyro@f2s.com>
1691 S:      Maintained
1692 F:      arch/arm/include/asm/floppy.h
1693 F:      arch/arm/mach-rpc/floppydma.S
1694
1695 ARM PMU PROFILING AND DEBUGGING
1696 M:      Will Deacon <will@kernel.org>
1697 M:      Mark Rutland <mark.rutland@arm.com>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1701 F:      Documentation/devicetree/bindings/perf/
1702 F:      arch/arm*/include/asm/hw_breakpoint.h
1703 F:      arch/arm*/include/asm/perf_event.h
1704 F:      arch/arm*/kernel/hw_breakpoint.c
1705 F:      arch/arm*/kernel/perf_*
1706 F:      drivers/perf/
1707 F:      include/linux/perf/arm_pmu.h
1708
1709 ARM PORT
1710 M:      Russell King <linux@armlinux.org.uk>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Odd Fixes
1713 W:      http://www.armlinux.org.uk/
1714 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1715 F:      arch/arm/
1716 X:      arch/arm/boot/dts/
1717
1718 ARM PRIMECELL AACI PL041 DRIVER
1719 M:      Russell King <linux@armlinux.org.uk>
1720 S:      Odd Fixes
1721 F:      sound/arm/aaci.*
1722
1723 ARM PRIMECELL BUS SUPPORT
1724 M:      Russell King <linux@armlinux.org.uk>
1725 S:      Odd Fixes
1726 F:      drivers/amba/
1727 F:      include/linux/amba/bus.h
1728
1729 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1730 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1731 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1732 L:      linux-mtd@lists.infradead.org
1733 S:      Maintained
1734 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1735 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1736
1737 ARM PRIMECELL PL35X SMC DRIVER
1738 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1739 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1743 F:      drivers/memory/pl353-smc.c
1744
1745 ARM PRIMECELL CLCD PL110 DRIVER
1746 M:      Russell King <linux@armlinux.org.uk>
1747 S:      Odd Fixes
1748 F:      drivers/video/fbdev/amba-clcd.*
1749
1750 ARM PRIMECELL KMI PL050 DRIVER
1751 M:      Russell King <linux@armlinux.org.uk>
1752 S:      Odd Fixes
1753 F:      drivers/input/serio/ambakmi.*
1754 F:      include/linux/amba/kmi.h
1755
1756 ARM PRIMECELL MMCI PL180/1 DRIVER
1757 M:      Russell King <linux@armlinux.org.uk>
1758 S:      Odd Fixes
1759 F:      drivers/mmc/host/mmci.*
1760 F:      include/linux/amba/mmci.h
1761
1762 ARM PRIMECELL SSP PL022 SPI DRIVER
1763 M:      Linus Walleij <linus.walleij@linaro.org>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 S:      Maintained
1766 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1767 F:      drivers/spi/spi-pl022.c
1768
1769 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1770 M:      Russell King <linux@armlinux.org.uk>
1771 S:      Odd Fixes
1772 F:      drivers/tty/serial/amba-pl01*.c
1773 F:      include/linux/amba/serial.h
1774
1775 ARM PRIMECELL VIC PL190/PL192 DRIVER
1776 M:      Linus Walleij <linus.walleij@linaro.org>
1777 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1778 S:      Maintained
1779 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1780 F:      drivers/irqchip/irq-vic.c
1781
1782 ARM SMC WATCHDOG DRIVER
1783 M:      Julius Werner <jwerner@chromium.org>
1784 R:      Evan Benn <evanbenn@chromium.org>
1785 S:      Maintained
1786 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1787 F:      drivers/watchdog/arm_smc_wdt.c
1788
1789 ARM SMMU DRIVERS
1790 M:      Will Deacon <will@kernel.org>
1791 R:      Robin Murphy <robin.murphy@arm.com>
1792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1793 S:      Maintained
1794 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1795 F:      drivers/iommu/arm/
1796 F:      drivers/iommu/io-pgtable-arm*
1797
1798 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1799 M:      Arnd Bergmann <arnd@arndb.de>
1800 M:      Olof Johansson <olof@lixom.net>
1801 M:      soc@kernel.org
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Maintained
1804 C:      irc://irc.libera.chat/armlinux
1805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1806 F:      arch/arm/boot/dts/Makefile
1807 F:      arch/arm64/boot/dts/Makefile
1808
1809 ARM SUB-ARCHITECTURES
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Maintained
1812 C:      irc://irc.libera.chat/armlinux
1813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1814 F:      arch/arm/mach-*/
1815 F:      arch/arm/plat-*/
1816
1817 ARM/ACTIONS SEMI ARCHITECTURE
1818 M:      Andreas Färber <afaerber@suse.de>
1819 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1822 S:      Maintained
1823 F:      Documentation/devicetree/bindings/arm/actions.yaml
1824 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1825 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1826 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1827 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1828 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1829 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1830 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1831 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1832 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1833 F:      arch/arm/boot/dts/owl-*
1834 F:      arch/arm/mach-actions/
1835 F:      arch/arm64/boot/dts/actions/
1836 F:      drivers/clk/actions/
1837 F:      drivers/clocksource/timer-owl*
1838 F:      drivers/dma/owl-dma.c
1839 F:      drivers/i2c/busses/i2c-owl.c
1840 F:      drivers/irqchip/irq-owl-sirq.c
1841 F:      drivers/mmc/host/owl-mmc.c
1842 F:      drivers/net/ethernet/actions/
1843 F:      drivers/pinctrl/actions/*
1844 F:      drivers/soc/actions/
1845 F:      include/dt-bindings/power/owl-*
1846 F:      include/dt-bindings/reset/actions,*
1847 F:      include/linux/soc/actions/
1848 N:      owl
1849
1850 ARM/Allwinner SoC Clock Support
1851 M:      Emilio López <emilio@elopez.com.ar>
1852 S:      Maintained
1853 F:      drivers/clk/sunxi/
1854
1855 ARM/Allwinner sunXi SoC support
1856 M:      Chen-Yu Tsai <wens@csie.org>
1857 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1858 M:      Samuel Holland <samuel@sholland.org>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1862 L:      linux-sunxi@lists.linux.dev
1863 F:      arch/arm/mach-sunxi/
1864 F:      arch/arm64/boot/dts/allwinner/
1865 F:      drivers/clk/sunxi-ng/
1866 F:      drivers/pinctrl/sunxi/
1867 F:      drivers/soc/sunxi/
1868 N:      allwinner
1869 N:      sun[x456789]i
1870 N:      sun[25]0i
1871
1872 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1873 M:      Neil Armstrong <neil.armstrong@linaro.org>
1874 M:      Jerome Brunet <jbrunet@baylibre.com>
1875 L:      linux-amlogic@lists.infradead.org
1876 S:      Maintained
1877 F:      Documentation/devicetree/bindings/clock/amlogic*
1878 F:      drivers/clk/meson/
1879 F:      include/dt-bindings/clock/gxbb*
1880 F:      include/dt-bindings/clock/meson*
1881
1882 ARM/Amlogic Meson SoC Crypto Drivers
1883 M:      Corentin Labbe <clabbe@baylibre.com>
1884 L:      linux-crypto@vger.kernel.org
1885 L:      linux-amlogic@lists.infradead.org
1886 S:      Maintained
1887 F:      Documentation/devicetree/bindings/crypto/amlogic*
1888 F:      drivers/crypto/amlogic/
1889
1890 ARM/Amlogic Meson SoC Sound Drivers
1891 M:      Jerome Brunet <jbrunet@baylibre.com>
1892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1893 S:      Maintained
1894 F:      Documentation/devicetree/bindings/sound/amlogic*
1895 F:      sound/soc/meson/
1896
1897 ARM/Amlogic Meson SoC support
1898 M:      Neil Armstrong <neil.armstrong@linaro.org>
1899 M:      Kevin Hilman <khilman@baylibre.com>
1900 R:      Jerome Brunet <jbrunet@baylibre.com>
1901 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 L:      linux-amlogic@lists.infradead.org
1904 S:      Maintained
1905 W:      http://linux-meson.com/
1906 F:      arch/arm/boot/dts/meson*
1907 F:      arch/arm/mach-meson/
1908 F:      arch/arm64/boot/dts/amlogic/
1909 F:      drivers/mmc/host/meson*
1910 F:      drivers/pinctrl/meson/
1911 F:      drivers/rtc/rtc-meson*
1912 F:      drivers/soc/amlogic/
1913 N:      meson
1914
1915 ARM/Annapurna Labs ALPINE ARCHITECTURE
1916 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1917 M:      Antoine Tenart <atenart@kernel.org>
1918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1919 S:      Maintained
1920 F:      arch/arm/boot/dts/alpine*
1921 F:      arch/arm/mach-alpine/
1922 F:      arch/arm64/boot/dts/amazon/
1923 F:      drivers/*/*alpine*
1924
1925 ARM/APPLE MACHINE SUPPORT
1926 M:      Hector Martin <marcan@marcan.st>
1927 M:      Sven Peter <sven@svenpeter.dev>
1928 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1929 L:      asahi@lists.linux.dev
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Maintained
1932 W:      https://asahilinux.org
1933 B:      https://github.com/AsahiLinux/linux/issues
1934 C:      irc://irc.oftc.net/asahi-dev
1935 T:      git https://github.com/AsahiLinux/linux.git
1936 F:      Documentation/devicetree/bindings/arm/apple.yaml
1937 F:      Documentation/devicetree/bindings/arm/apple/*
1938 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1939 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1940 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1941 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1942 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1943 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1944 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1945 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1946 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1947 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1948 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1949 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1950 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1951 F:      Documentation/devicetree/bindings/power/apple*
1952 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1953 F:      arch/arm64/boot/dts/apple/
1954 F:      drivers/bluetooth/hci_bcm4377.c
1955 F:      drivers/clk/clk-apple-nco.c
1956 F:      drivers/cpufreq/apple-soc-cpufreq.c
1957 F:      drivers/dma/apple-admac.c
1958 F:      drivers/i2c/busses/i2c-pasemi-core.c
1959 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1960 F:      drivers/iommu/apple-dart.c
1961 F:      drivers/iommu/io-pgtable-dart.c
1962 F:      drivers/irqchip/irq-apple-aic.c
1963 F:      drivers/mailbox/apple-mailbox.c
1964 F:      drivers/nvme/host/apple.c
1965 F:      drivers/nvmem/apple-efuses.c
1966 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1967 F:      drivers/soc/apple/*
1968 F:      drivers/watchdog/apple_wdt.c
1969 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1970 F:      include/dt-bindings/pinctrl/apple.h
1971 F:      include/linux/apple-mailbox.h
1972 F:      include/linux/soc/apple/*
1973
1974 ARM/APPLE MACHINE SOUND DRIVERS
1975 M:      Martin Povišer <povik+lin@cutebit.org>
1976 L:      asahi@lists.linux.dev
1977 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1978 S:      Maintained
1979 F:      Documentation/devicetree/bindings/sound/apple,*
1980 F:      sound/soc/apple/*
1981 F:      sound/soc/codecs/cs42l83-i2c.c
1982
1983 ARM/ARTPEC MACHINE SUPPORT
1984 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1985 M:      Lars Persson <lars.persson@axis.com>
1986 L:      linux-arm-kernel@axis.com
1987 S:      Maintained
1988 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1989 F:      arch/arm/boot/dts/artpec6*
1990 F:      arch/arm/mach-artpec
1991 F:      drivers/clk/axis
1992 F:      drivers/crypto/axis
1993 F:      drivers/mmc/host/usdhi6rol0.c
1994 F:      drivers/pinctrl/pinctrl-artpec*
1995
1996 ARM/ASPEED I2C DRIVER
1997 M:      Brendan Higgins <brendanhiggins@google.com>
1998 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1999 R:      Joel Stanley <joel@jms.id.au>
2000 L:      linux-i2c@vger.kernel.org
2001 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2002 S:      Maintained
2003 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2004 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2005 F:      drivers/i2c/busses/i2c-aspeed.c
2006 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2007
2008 ARM/ASPEED MACHINE SUPPORT
2009 M:      Joel Stanley <joel@jms.id.au>
2010 R:      Andrew Jeffery <andrew@aj.id.au>
2011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2012 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2013 S:      Supported
2014 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2016 F:      Documentation/devicetree/bindings/arm/aspeed/
2017 F:      arch/arm/boot/dts/aspeed-*
2018 F:      arch/arm/mach-aspeed/
2019 N:      aspeed
2020
2021 ARM/BITMAIN ARCHITECTURE
2022 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2026 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2027 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2028 F:      arch/arm64/boot/dts/bitmain/
2029 F:      drivers/clk/clk-bm1880.c
2030 F:      drivers/pinctrl/pinctrl-bm1880.c
2031
2032 ARM/CALXEDA HIGHBANK ARCHITECTURE
2033 M:      Andre Przywara <andre.przywara@arm.com>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/boot/dts/ecx-*.dts*
2037 F:      arch/arm/boot/dts/highbank.dts
2038 F:      arch/arm/mach-highbank/
2039
2040 ARM/CAVIUM THUNDER NETWORK DRIVER
2041 M:      Sunil Goutham <sgoutham@marvell.com>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Supported
2044 F:      drivers/net/ethernet/cavium/thunder/
2045
2046 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2047 M:      Lukasz Majewski <lukma@denx.de>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Maintained
2050 F:      arch/arm/mach-ep93xx/ts72xx.c
2051
2052 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2053 M:      Alexander Shiyan <shc_work@mail.ru>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Odd Fixes
2056 N:      clps711x
2057
2058 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2059 M:      Lennert Buytenhek <kernel@wantstofly.org>
2060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2061 S:      Maintained
2062
2063 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2064 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2065 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2069 F:      arch/arm/boot/compressed/misc-ep93xx.h
2070 F:      arch/arm/mach-ep93xx/
2071 F:      drivers/iio/adc/ep93xx_adc.c
2072
2073 ARM/CLKDEV SUPPORT
2074 M:      Russell King <linux@armlinux.org.uk>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2078 F:      drivers/clk/clkdev.c
2079
2080 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2081 M:      Baruch Siach <baruch@tkos.co.il>
2082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 F:      arch/arm/boot/dts/cx92755*
2085 N:      digicolor
2086
2087 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2088 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2089 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2090 R:      Mike Leach <mike.leach@linaro.org>
2091 R:      Leo Yan <leo.yan@linaro.org>
2092 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2094 S:      Maintained
2095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2096 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2097 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2098 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2099 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2100 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2101 F:      Documentation/trace/coresight/*
2102 F:      drivers/hwtracing/coresight/*
2103 F:      include/dt-bindings/arm/coresight-cti-dt.h
2104 F:      include/linux/coresight*
2105 F:      samples/coresight/*
2106 F:      tools/perf/tests/shell/coresight/*
2107 F:      tools/perf/arch/arm/util/auxtrace.c
2108 F:      tools/perf/arch/arm/util/cs-etm.c
2109 F:      tools/perf/arch/arm/util/cs-etm.h
2110 F:      tools/perf/arch/arm/util/pmu.c
2111 F:      tools/perf/util/cs-etm-decoder/*
2112 F:      tools/perf/util/cs-etm.*
2113
2114 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2115 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2116 M:      Linus Walleij <linus.walleij@linaro.org>
2117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2118 S:      Maintained
2119 T:      git git://github.com/ulli-kroll/linux.git
2120 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2121 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2122 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2123 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2124 F:      arch/arm/boot/dts/gemini*
2125 F:      arch/arm/mach-gemini/
2126 F:      drivers/crypto/gemini/
2127 F:      drivers/net/ethernet/cortina/
2128 F:      drivers/pinctrl/pinctrl-gemini.c
2129 F:      drivers/rtc/rtc-ftrtc010.c
2130
2131 ARM/CZ.NIC TURRIS SUPPORT
2132 M:      Marek Behún <kabel@kernel.org>
2133 S:      Maintained
2134 W:      https://www.turris.cz/
2135 F:      Documentation/ABI/testing/debugfs-moxtet
2136 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2137 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2138 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2139 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2140 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2141 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2142 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2143 F:      drivers/bus/moxtet.c
2144 F:      drivers/firmware/turris-mox-rwtm.c
2145 F:      drivers/leds/leds-turris-omnia.c
2146 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2147 F:      drivers/gpio/gpio-moxtet.c
2148 F:      drivers/watchdog/armada_37xx_wdt.c
2149 F:      include/dt-bindings/bus/moxtet.h
2150 F:      include/linux/armada-37xx-rwtm-mailbox.h
2151 F:      include/linux/moxtet.h
2152
2153 ARM/FARADAY FA526 PORT
2154 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 T:      git git://git.berlios.de/gemini-board
2158 F:      arch/arm/mm/*-fa*
2159
2160 ARM/FOOTBRIDGE ARCHITECTURE
2161 M:      Russell King <linux@armlinux.org.uk>
2162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 S:      Maintained
2164 W:      http://www.armlinux.org.uk/
2165 F:      arch/arm/include/asm/hardware/dec21285.h
2166 F:      arch/arm/mach-footbridge/
2167
2168 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2169 M:      Shawn Guo <shawnguo@kernel.org>
2170 M:      Sascha Hauer <s.hauer@pengutronix.de>
2171 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2172 R:      Fabio Estevam <festevam@gmail.com>
2173 R:      NXP Linux Team <linux-imx@nxp.com>
2174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2175 S:      Maintained
2176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2177 X:      drivers/media/i2c/
2178 F:      arch/arm64/boot/dts/freescale/
2179 X:      arch/arm64/boot/dts/freescale/fsl-*
2180 X:      arch/arm64/boot/dts/freescale/qoriq-*
2181 N:      imx
2182 N:      mxs
2183
2184 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2185 M:      Shawn Guo <shawnguo@kernel.org>
2186 M:      Li Yang <leoyang.li@nxp.com>
2187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2188 S:      Maintained
2189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2190 F:      arch/arm/boot/dts/ls1021a*
2191 F:      arch/arm64/boot/dts/freescale/fsl-*
2192 F:      arch/arm64/boot/dts/freescale/qoriq-*
2193
2194 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2195 M:      Shawn Guo <shawnguo@kernel.org>
2196 M:      Sascha Hauer <s.hauer@pengutronix.de>
2197 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2198 R:      Stefan Agner <stefan@agner.ch>
2199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2200 S:      Maintained
2201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2202 F:      arch/arm/boot/dts/vf*
2203 F:      arch/arm/mach-imx/*vf610*
2204
2205 ARM/GUMSTIX MACHINE SUPPORT
2206 M:      Steve Sakoman <sakoman@gmail.com>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 S:      Maintained
2209
2210 ARM/HISILICON SOC SUPPORT
2211 M:      Wei Xu <xuwei5@hisilicon.com>
2212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2213 S:      Supported
2214 W:      http://www.hisilicon.com
2215 T:      git https://github.com/hisilicon/linux-hisi.git
2216 F:      arch/arm/boot/dts/hi3*
2217 F:      arch/arm/boot/dts/hip*
2218 F:      arch/arm/boot/dts/hisi*
2219 F:      arch/arm/mach-hisi/
2220 F:      arch/arm64/boot/dts/hisilicon/
2221
2222 ARM/HP JORNADA 7XX MACHINE SUPPORT
2223 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2224 S:      Maintained
2225 W:      www.jlime.com
2226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2227 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2228 F:      arch/arm/mach-sa1100/jornada720.c
2229
2230 ARM/HPE GXP ARCHITECTURE
2231 M:      Jean-Marie Verdun <verdun@hpe.com>
2232 M:      Nick Hawkins <nick.hawkins@hpe.com>
2233 S:      Maintained
2234 F:      Documentation/hwmon/gxp-fan-ctrl.rst
2235 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2236 F:      Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2237 F:      Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.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/hwmon/gxp-fan-ctrl.c
2245 F:      drivers/i2c/busses/i2c-gxp.c
2246 F:      drivers/spi/spi-gxp.c
2247 F:      drivers/watchdog/gxp-wdt.c
2248
2249 ARM/IGEP MACHINE SUPPORT
2250 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2251 M:      Javier Martinez Canillas <javier@dowhile0.org>
2252 L:      linux-omap@vger.kernel.org
2253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2254 S:      Maintained
2255 F:      arch/arm/boot/dts/omap3-igep*
2256
2257 ARM/INTEL IXP4XX ARM ARCHITECTURE
2258 M:      Linus Walleij <linusw@kernel.org>
2259 M:      Imre Kaloz <kaloz@openwrt.org>
2260 M:      Krzysztof Halasa <khalasa@piap.pl>
2261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2262 S:      Maintained
2263 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2264 F:      Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2265 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2266 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2267 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2268 F:      arch/arm/boot/dts/intel-ixp*
2269 F:      arch/arm/mach-ixp4xx/
2270 F:      drivers/bus/intel-ixp4xx-eb.c
2271 F:      drivers/clocksource/timer-ixp4xx.c
2272 F:      drivers/crypto/ixp4xx_crypto.c
2273 F:      drivers/gpio/gpio-ixp4xx.c
2274 F:      drivers/irqchip/irq-ixp4xx.c
2275
2276 ARM/INTEL KEEMBAY ARCHITECTURE
2277 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2278 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2279 S:      Maintained
2280 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2281 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2282 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2283
2284 ARM/INTEL XSC3 (MANZANO) ARM CORE
2285 M:      Lennert Buytenhek <kernel@wantstofly.org>
2286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2287 S:      Maintained
2288
2289 ARM/LG1K ARCHITECTURE
2290 M:      Chanho Min <chanho.min@lge.com>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293 F:      arch/arm64/boot/dts/lg/
2294
2295 ARM/LPC18XX ARCHITECTURE
2296 M:      Vladimir Zapolskiy <vz@mleia.com>
2297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2298 S:      Maintained
2299 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2300 F:      arch/arm/boot/dts/lpc43*
2301 F:      drivers/i2c/busses/i2c-lpc2k.c
2302 F:      drivers/memory/pl172.c
2303 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2304 F:      drivers/rtc/rtc-lpc24xx.c
2305 N:      lpc18xx
2306
2307 ARM/LPC32XX SOC SUPPORT
2308 M:      Vladimir Zapolskiy <vz@mleia.com>
2309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2310 S:      Maintained
2311 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2312 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2313 F:      arch/arm/boot/dts/lpc32*
2314 F:      arch/arm/mach-lpc32xx/
2315 F:      drivers/i2c/busses/i2c-pnx.c
2316 F:      drivers/net/ethernet/nxp/lpc_eth.c
2317 F:      drivers/usb/host/ohci-nxp.c
2318 F:      drivers/watchdog/pnx4008_wdt.c
2319 N:      lpc32xx
2320
2321 ARM/Marvell Dove/MV78xx0/Orion SOC support
2322 M:      Andrew Lunn <andrew@lunn.ch>
2323 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2324 M:      Gregory Clement <gregory.clement@bootlin.com>
2325 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2326 S:      Maintained
2327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2328 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2329 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2330 F:      Documentation/devicetree/bindings/soc/dove/
2331 F:      arch/arm/boot/dts/dove*
2332 F:      arch/arm/boot/dts/orion5x*
2333 F:      arch/arm/mach-dove/
2334 F:      arch/arm/mach-mv78xx0/
2335 F:      arch/arm/mach-orion5x/
2336 F:      arch/arm/plat-orion/
2337 F:      drivers/soc/dove/
2338
2339 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2340 M:      Andrew Lunn <andrew@lunn.ch>
2341 M:      Gregory Clement <gregory.clement@bootlin.com>
2342 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S:      Maintained
2345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2346 F:      Documentation/devicetree/bindings/arm/marvell/
2347 F:      arch/arm/boot/dts/armada*
2348 F:      arch/arm/boot/dts/kirkwood*
2349 F:      arch/arm/configs/mvebu_*_defconfig
2350 F:      arch/arm/mach-mvebu/
2351 F:      arch/arm64/boot/dts/marvell/armada*
2352 F:      arch/arm64/boot/dts/marvell/cn913*
2353 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2354 F:      drivers/cpufreq/armada-8k-cpufreq.c
2355 F:      drivers/cpufreq/mvebu-cpufreq.c
2356 F:      drivers/irqchip/irq-armada-370-xp.c
2357 F:      drivers/irqchip/irq-mvebu-*
2358 F:      drivers/pinctrl/mvebu/
2359 F:      drivers/rtc/rtc-armada38x.c
2360
2361 ARM/Mediatek RTC DRIVER
2362 M:      Eddie Huang <eddie.huang@mediatek.com>
2363 M:      Sean Wang <sean.wang@mediatek.com>
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2366 S:      Maintained
2367 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2368 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2369 F:      drivers/rtc/rtc-mt2712.c
2370 F:      drivers/rtc/rtc-mt6397.c
2371 F:      drivers/rtc/rtc-mt7622.c
2372
2373 ARM/Mediatek SoC support
2374 M:      Matthias Brugger <matthias.bgg@gmail.com>
2375 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2376 L:      linux-kernel@vger.kernel.org
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2379 S:      Maintained
2380 W:      https://mtk.wiki.kernel.org/
2381 C:      irc://irc.libera.chat/linux-mediatek
2382 F:      arch/arm/boot/dts/mt2*
2383 F:      arch/arm/boot/dts/mt6*
2384 F:      arch/arm/boot/dts/mt7*
2385 F:      arch/arm/boot/dts/mt8*
2386 F:      arch/arm/mach-mediatek/
2387 F:      arch/arm64/boot/dts/mediatek/
2388 F:      drivers/soc/mediatek/
2389 N:      mtk
2390 N:      mt[2678]
2391 K:      mediatek
2392
2393 ARM/Mediatek USB3 PHY DRIVER
2394 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2397 S:      Maintained
2398 F:      Documentation/devicetree/bindings/phy/mediatek,*
2399 F:      drivers/phy/mediatek/
2400
2401 ARM/Microchip (AT91) SoC support
2402 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2403 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2404 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2406 S:      Supported
2407 W:      http://www.linux4sam.org
2408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2409 F:      arch/arm/boot/dts/at91*.dts
2410 F:      arch/arm/boot/dts/at91*.dtsi
2411 F:      arch/arm/boot/dts/sama*.dts
2412 F:      arch/arm/boot/dts/sama*.dtsi
2413 F:      arch/arm/include/debug/at91.S
2414 F:      arch/arm/mach-at91/
2415 F:      drivers/memory/atmel*
2416 F:      drivers/watchdog/sama5d4_wdt.c
2417 F:      include/soc/at91/
2418 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2419 X:      drivers/net/wireless/atmel/
2420 N:      at91
2421 N:      atmel
2422
2423 ARM/Microchip Sparx5 SoC support
2424 M:      Lars Povlsen <lars.povlsen@microchip.com>
2425 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2426 M:      Daniel Machon <daniel.machon@microchip.com>
2427 M:      UNGLinuxDriver@microchip.com
2428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2429 S:      Supported
2430 T:      git git://github.com/microchip-ung/linux-upstream.git
2431 F:      arch/arm64/boot/dts/microchip/
2432 F:      drivers/net/ethernet/microchip/vcap/
2433 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2434 N:      sparx5
2435
2436 Microchip Timer Counter Block (TCB) Capture Driver
2437 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2439 L:      linux-iio@vger.kernel.org
2440 S:      Maintained
2441 F:      drivers/counter/microchip-tcb-capture.c
2442
2443 ARM/MILBEAUT ARCHITECTURE
2444 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2445 M:      Takao Orito <orito.takao@socionext.com>
2446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2447 S:      Maintained
2448 F:      arch/arm/boot/dts/milbeaut*
2449 F:      arch/arm/mach-milbeaut/
2450 N:      milbeaut
2451
2452 ARM/MStar/Sigmastar Armv7 SoC support
2453 M:      Daniel Palmer <daniel@thingy.jp>
2454 M:      Romain Perier <romain.perier@gmail.com>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 S:      Maintained
2457 W:      http://linux-chenxing.org/
2458 T:      git git://github.com/linux-chenxing/linux.git
2459 F:      Documentation/devicetree/bindings/arm/mstar/*
2460 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2461 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2462 F:      arch/arm/boot/dts/mstar-*
2463 F:      arch/arm/mach-mstar/
2464 F:      drivers/clk/mstar/
2465 F:      drivers/clocksource/timer-msc313e.c
2466 F:      drivers/gpio/gpio-msc313.c
2467 F:      drivers/rtc/rtc-msc313.c
2468 F:      drivers/watchdog/msc313e_wdt.c
2469 F:      include/dt-bindings/clock/mstar-*
2470 F:      include/dt-bindings/gpio/msc313-gpio.h
2471
2472 ARM/NOMADIK/Ux500 ARCHITECTURES
2473 M:      Linus Walleij <linus.walleij@linaro.org>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 S:      Maintained
2476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2477 F:      Documentation/devicetree/bindings/arm/ste-*
2478 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2479 F:      Documentation/devicetree/bindings/arm/ux500/
2480 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2481 F:      arch/arm/boot/dts/ste-*
2482 F:      arch/arm/mach-nomadik/
2483 F:      arch/arm/mach-ux500/
2484 F:      drivers/clk/clk-nomadik.c
2485 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2486 F:      drivers/dma/ste_dma40*
2487 F:      drivers/hwspinlock/u8500_hsem.c
2488 F:      drivers/i2c/busses/i2c-nomadik.c
2489 F:      drivers/iio/adc/ab8500-gpadc.c
2490 F:      drivers/mfd/ab8500*
2491 F:      drivers/mfd/abx500*
2492 F:      drivers/mfd/db8500*
2493 F:      drivers/pinctrl/nomadik/
2494 F:      drivers/rtc/rtc-ab8500.c
2495 F:      drivers/rtc/rtc-pl031.c
2496 F:      drivers/soc/ux500/
2497
2498 ARM/NUVOTON NPCM ARCHITECTURE
2499 M:      Avi Fishman <avifishman70@gmail.com>
2500 M:      Tomer Maimon <tmaimon77@gmail.com>
2501 M:      Tali Perry <tali.perry1@gmail.com>
2502 R:      Patrick Venture <venture@google.com>
2503 R:      Nancy Yuen <yuenn@google.com>
2504 R:      Benjamin Fair <benjaminfair@google.com>
2505 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2506 S:      Supported
2507 F:      Documentation/devicetree/bindings/*/*/*npcm*
2508 F:      Documentation/devicetree/bindings/*/*npcm*
2509 F:      Documentation/devicetree/bindings/arm/npcm/*
2510 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2511 F:      arch/arm/boot/dts/nuvoton-npcm*
2512 F:      arch/arm/mach-npcm/
2513 F:      arch/arm64/boot/dts/nuvoton/
2514 F:      drivers/*/*npcm*
2515 F:      drivers/*/*/*npcm*
2516 F:      drivers/rtc/rtc-nct3018y.c
2517 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2518 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2519
2520 ARM/NUVOTON WPCM450 ARCHITECTURE
2521 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2522 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2523 S:      Maintained
2524 W:      https://github.com/neuschaefer/wpcm450/wiki
2525 F:      Documentation/devicetree/bindings/*/*wpcm*
2526 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2527 F:      arch/arm/configs/wpcm450_defconfig
2528 F:      arch/arm/mach-npcm/wpcm450.c
2529 F:      drivers/*/*/*wpcm*
2530 F:      drivers/*/*wpcm*
2531
2532 ARM/NXP S32G ARCHITECTURE
2533 M:      Chester Lin <clin@suse.com>
2534 R:      Andreas Färber <afaerber@suse.de>
2535 R:      Matthias Brugger <mbrugger@suse.com>
2536 R:      NXP S32 Linux Team <s32@nxp.com>
2537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2538 S:      Maintained
2539 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2540
2541 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2542 M:      Alexander Clouter <alex@digriz.org.uk>
2543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2544 S:      Maintained
2545 W:      http://www.digriz.org.uk/ts78xx/kernel
2546 F:      arch/arm/mach-orion5x/ts78xx-*
2547
2548 ARM/OXNAS platform support
2549 M:      Neil Armstrong <neil.armstrong@linaro.org>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2552 S:      Maintained
2553 F:      arch/arm/boot/dts/ox8*.dts*
2554 F:      arch/arm/mach-oxnas/
2555 F:      drivers/power/reset/oxnas-restart.c
2556 N:      oxnas
2557
2558 ARM/QUALCOMM SUPPORT
2559 M:      Andy Gross <agross@kernel.org>
2560 M:      Bjorn Andersson <andersson@kernel.org>
2561 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2562 L:      linux-arm-msm@vger.kernel.org
2563 S:      Maintained
2564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2565 F:      Documentation/devicetree/bindings/*/qcom*
2566 F:      Documentation/devicetree/bindings/soc/qcom/
2567 F:      arch/arm/boot/dts/qcom-*.dts
2568 F:      arch/arm/boot/dts/qcom-*.dtsi
2569 F:      arch/arm/configs/qcom_defconfig
2570 F:      arch/arm/mach-qcom/
2571 F:      arch/arm64/boot/dts/qcom/
2572 F:      drivers/*/*/qcom*
2573 F:      drivers/*/*/qcom/
2574 F:      drivers/*/pm8???-*
2575 F:      drivers/*/qcom*
2576 F:      drivers/*/qcom/
2577 F:      drivers/bluetooth/btqcomsmd.c
2578 F:      drivers/clocksource/timer-qcom.c
2579 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2580 F:      drivers/extcon/extcon-qcom*
2581 F:      drivers/i2c/busses/i2c-qcom-geni.c
2582 F:      drivers/i2c/busses/i2c-qup.c
2583 F:      drivers/iommu/msm*
2584 F:      drivers/mfd/ssbi.c
2585 F:      drivers/mmc/host/mmci_qcom*
2586 F:      drivers/mmc/host/sdhci-msm.c
2587 F:      drivers/pci/controller/dwc/pcie-qcom.c
2588 F:      drivers/phy/qualcomm/
2589 F:      drivers/power/*/msm*
2590 F:      drivers/reset/reset-qcom-*
2591 F:      drivers/ufs/host/ufs-qcom*
2592 F:      drivers/spi/spi-geni-qcom.c
2593 F:      drivers/spi/spi-qcom-qspi.c
2594 F:      drivers/spi/spi-qup.c
2595 F:      drivers/tty/serial/msm_serial.c
2596 F:      drivers/usb/dwc3/dwc3-qcom.c
2597 F:      include/dt-bindings/*/qcom*
2598 F:      include/linux/*/qcom*
2599 F:      include/linux/soc/qcom/
2600
2601 ARM/RDA MICRO ARCHITECTURE
2602 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2604 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2605 S:      Maintained
2606 F:      Documentation/devicetree/bindings/arm/rda.yaml
2607 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2608 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2609 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2610 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2611 F:      arch/arm/boot/dts/rda8810pl-*
2612 F:      drivers/clocksource/timer-rda.c
2613 F:      drivers/gpio/gpio-rda.c
2614 F:      drivers/irqchip/irq-rda-intc.c
2615 F:      drivers/tty/serial/rda-uart.c
2616
2617 ARM/REALTEK ARCHITECTURE
2618 M:      Andreas Färber <afaerber@suse.de>
2619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2620 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2621 S:      Maintained
2622 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2623 F:      arch/arm/boot/dts/rtd*
2624 F:      arch/arm/mach-realtek/
2625 F:      arch/arm64/boot/dts/realtek/
2626
2627 ARM/RISC-V/RENESAS ARCHITECTURE
2628 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2629 M:      Magnus Damm <magnus.damm@gmail.com>
2630 L:      linux-renesas-soc@vger.kernel.org
2631 S:      Supported
2632 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2633 C:      irc://irc.libera.chat/renesas-soc
2634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2635 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2636 F:      Documentation/devicetree/bindings/soc/renesas/
2637 F:      arch/arm/boot/dts/emev2*
2638 F:      arch/arm/boot/dts/gr-peach*
2639 F:      arch/arm/boot/dts/iwg20d-q7*
2640 F:      arch/arm/boot/dts/r7s*
2641 F:      arch/arm/boot/dts/r8a*
2642 F:      arch/arm/boot/dts/r9a*
2643 F:      arch/arm/boot/dts/sh*
2644 F:      arch/arm/configs/shmobile_defconfig
2645 F:      arch/arm/include/debug/renesas-scif.S
2646 F:      arch/arm/mach-shmobile/
2647 F:      arch/arm64/boot/dts/renesas/
2648 F:      arch/riscv/boot/dts/renesas/
2649 F:      drivers/soc/renesas/
2650 F:      include/linux/soc/renesas/
2651
2652 ARM/RISCPC ARCHITECTURE
2653 M:      Russell King <linux@armlinux.org.uk>
2654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2655 S:      Maintained
2656 W:      http://www.armlinux.org.uk/
2657 F:      arch/arm/include/asm/hardware/ioc.h
2658 F:      arch/arm/include/asm/hardware/iomd.h
2659 F:      arch/arm/include/asm/hardware/memc.h
2660 F:      arch/arm/mach-rpc/
2661 F:      drivers/net/ethernet/8390/etherh.c
2662 F:      drivers/net/ethernet/i825xx/ether1*
2663 F:      drivers/net/ethernet/seeq/ether3*
2664 F:      drivers/scsi/arm/
2665
2666 ARM/Rockchip SoC support
2667 M:      Heiko Stuebner <heiko@sntech.de>
2668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2669 L:      linux-rockchip@lists.infradead.org
2670 S:      Maintained
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2672 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2673 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2674 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2675 F:      arch/arm/boot/dts/rk3*
2676 F:      arch/arm/boot/dts/rv11*
2677 F:      arch/arm/mach-rockchip/
2678 F:      drivers/*/*/*rockchip*
2679 F:      drivers/*/*rockchip*
2680 F:      drivers/clk/rockchip/
2681 F:      drivers/i2c/busses/i2c-rk3x.c
2682 F:      sound/soc/rockchip/
2683 N:      rockchip
2684
2685 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2686 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2687 R:      Alim Akhtar <alim.akhtar@samsung.com>
2688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2689 L:      linux-samsung-soc@vger.kernel.org
2690 S:      Maintained
2691 C:      irc://irc.libera.chat/linux-exynos
2692 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2693 B:      mailto:linux-samsung-soc@vger.kernel.org
2694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2695 F:      Documentation/arm/samsung/
2696 F:      Documentation/devicetree/bindings/arm/samsung/
2697 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2698 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2699 F:      Documentation/devicetree/bindings/soc/samsung/
2700 F:      arch/arm/boot/dts/exynos*
2701 F:      arch/arm/boot/dts/s3c*
2702 F:      arch/arm/boot/dts/s5p*
2703 F:      arch/arm/mach-exynos*/
2704 F:      arch/arm/mach-s3c/
2705 F:      arch/arm/mach-s5p*/
2706 F:      arch/arm64/boot/dts/exynos/
2707 F:      drivers/*/*/*s3c24*
2708 F:      drivers/*/*s3c24*
2709 F:      drivers/*/*s3c64xx*
2710 F:      drivers/*/*s5pv210*
2711 F:      drivers/clocksource/samsung_pwm_timer.c
2712 F:      drivers/memory/samsung/
2713 F:      drivers/pwm/pwm-samsung.c
2714 F:      drivers/soc/samsung/
2715 F:      drivers/tty/serial/samsung*
2716 F:      include/clocksource/samsung_pwm.h
2717 F:      include/linux/platform_data/*s3c*
2718 F:      include/linux/serial_s3c.h
2719 F:      include/linux/soc/samsung/
2720 N:      exynos
2721 N:      s3c64xx
2722 N:      s5pv210
2723
2724 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2725 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2727 L:      linux-media@vger.kernel.org
2728 S:      Maintained
2729 F:      drivers/media/platform/samsung/s5p-g2d/
2730
2731 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2732 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2733 L:      linux-samsung-soc@vger.kernel.org
2734 L:      linux-media@vger.kernel.org
2735 S:      Maintained
2736 F:      Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2737 F:      drivers/media/cec/platform/s5p/
2738
2739 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2740 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2741 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2742 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2744 L:      linux-media@vger.kernel.org
2745 S:      Maintained
2746 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2747 F:      drivers/media/platform/samsung/s5p-jpeg/
2748
2749 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2750 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2751 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2753 L:      linux-media@vger.kernel.org
2754 S:      Maintained
2755 F:      drivers/media/platform/samsung/s5p-mfc/
2756
2757 ARM/SOCFPGA ARCHITECTURE
2758 M:      Dinh Nguyen <dinguyen@kernel.org>
2759 S:      Maintained
2760 W:      http://www.rocketboards.org
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2762 F:      arch/arm/boot/dts/socfpga*
2763 F:      arch/arm/configs/socfpga_defconfig
2764 F:      arch/arm/mach-socfpga/
2765 F:      arch/arm64/boot/dts/altera/
2766 F:      arch/arm64/boot/dts/intel/
2767
2768 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2769 M:      Dinh Nguyen <dinguyen@kernel.org>
2770 S:      Maintained
2771 F:      drivers/clk/socfpga/
2772
2773 ARM/SOCFPGA EDAC SUPPORT
2774 M:      Dinh Nguyen <dinguyen@kernel.org>
2775 S:      Maintained
2776 F:      drivers/edac/altera_edac.[ch]
2777
2778 ARM/SPREADTRUM SoC SUPPORT
2779 M:      Orson Zhai <orsonzhai@gmail.com>
2780 M:      Baolin Wang <baolin.wang7@gmail.com>
2781 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2782 S:      Maintained
2783 F:      arch/arm64/boot/dts/sprd
2784 N:      sprd
2785 N:      sc27xx
2786 N:      sc2731
2787
2788 ARM/STI ARCHITECTURE
2789 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2791 S:      Maintained
2792 W:      http://www.stlinux.com
2793 F:      Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2794 F:      Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2795 F:      arch/arm/boot/dts/sti*
2796 F:      arch/arm/mach-sti/
2797 F:      drivers/ata/ahci_st.c
2798 F:      drivers/char/hw_random/st-rng.c
2799 F:      drivers/clocksource/arm_global_timer.c
2800 F:      drivers/clocksource/clksrc_st_lpc.c
2801 F:      drivers/cpufreq/sti-cpufreq.c
2802 F:      drivers/dma/st_fdma*
2803 F:      drivers/i2c/busses/i2c-st.c
2804 F:      drivers/media/platform/st/sti/c8sectpfe/
2805 F:      drivers/media/rc/st_rc.c
2806 F:      drivers/mmc/host/sdhci-st.c
2807 F:      drivers/phy/st/phy-miphy28lp.c
2808 F:      drivers/phy/st/phy-stih407-usb.c
2809 F:      drivers/pinctrl/pinctrl-st.c
2810 F:      drivers/remoteproc/st_remoteproc.c
2811 F:      drivers/remoteproc/st_slim_rproc.c
2812 F:      drivers/reset/sti/
2813 F:      drivers/rtc/rtc-st-lpc.c
2814 F:      drivers/tty/serial/st-asc.c
2815 F:      drivers/usb/dwc3/dwc3-st.c
2816 F:      drivers/usb/host/ehci-st.c
2817 F:      drivers/usb/host/ohci-st.c
2818 F:      drivers/watchdog/st_lpc_wdt.c
2819 F:      include/linux/remoteproc/st_slim_rproc.h
2820
2821 ARM/STM32 ARCHITECTURE
2822 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2823 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2824 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2828 F:      arch/arm/boot/dts/stm32*
2829 F:      arch/arm/mach-stm32/
2830 F:      drivers/clocksource/armv7m_systick.c
2831 N:      stm32
2832 N:      stm
2833
2834 ARM/SUNPLUS SP7021 SOC SUPPORT
2835 M:      Qin Jian <qinjian@cqplus1.com>
2836 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2837 S:      Maintained
2838 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2839 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2840 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2841 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2842 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2843 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2844 F:      arch/arm/configs/sp7021_*defconfig
2845 F:      arch/arm/mach-sunplus/
2846 F:      drivers/irqchip/irq-sp7021-intc.c
2847 F:      drivers/reset/reset-sunplus.c
2848 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2849 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2850
2851 ARM/Synaptics SoC support
2852 M:      Jisheng Zhang <jszhang@kernel.org>
2853 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2855 S:      Maintained
2856 F:      arch/arm/boot/dts/berlin*
2857 F:      arch/arm/mach-berlin/
2858 F:      arch/arm64/boot/dts/synaptics/
2859
2860 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2861 M:      Lennert Buytenhek <kernel@wantstofly.org>
2862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2863 S:      Maintained
2864
2865 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2866 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2867 L:      linux-tegra@vger.kernel.org
2868 L:      linux-media@vger.kernel.org
2869 S:      Maintained
2870 F:      Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
2871 F:      drivers/media/cec/platform/tegra/
2872
2873 ARM/TESLA FSD SoC SUPPORT
2874 M:      Alim Akhtar <alim.akhtar@samsung.com>
2875 M:      linux-fsd@tesla.com
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 L:      linux-samsung-soc@vger.kernel.org
2878 S:      Maintained
2879 F:      arch/arm64/boot/dts/tesla/
2880
2881 ARM/TETON BGA MACHINE SUPPORT
2882 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2884 S:      Maintained
2885
2886 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2887 M:      Santosh Shilimkar <ssantosh@kernel.org>
2888 L:      linux-kernel@vger.kernel.org
2889 S:      Maintained
2890 F:      drivers/memory/*emif*
2891
2892 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2893 M:      Nishanth Menon <nm@ti.com>
2894 M:      Santosh Shilimkar <ssantosh@kernel.org>
2895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2896 S:      Maintained
2897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2898 F:      arch/arm/boot/dts/keystone-*
2899 F:      arch/arm/mach-keystone/
2900
2901 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2902 M:      Santosh Shilimkar <ssantosh@kernel.org>
2903 L:      linux-kernel@vger.kernel.org
2904 S:      Maintained
2905 F:      drivers/clk/keystone/
2906
2907 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2908 M:      Santosh Shilimkar <ssantosh@kernel.org>
2909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2910 L:      linux-kernel@vger.kernel.org
2911 S:      Maintained
2912 F:      drivers/clocksource/timer-keystone.c
2913
2914 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2915 M:      Santosh Shilimkar <ssantosh@kernel.org>
2916 L:      linux-kernel@vger.kernel.org
2917 S:      Maintained
2918 F:      drivers/power/reset/keystone-reset.c
2919
2920 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2921 M:      Nishanth Menon <nm@ti.com>
2922 M:      Vignesh Raghavendra <vigneshr@ti.com>
2923 M:      Tero Kristo <kristo@kernel.org>
2924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2925 S:      Supported
2926 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2927 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2928 F:      arch/arm64/boot/dts/ti/Makefile
2929 F:      arch/arm64/boot/dts/ti/k3-*
2930 F:      include/dt-bindings/pinctrl/k3.h
2931
2932 ARM/TOSHIBA VISCONTI ARCHITECTURE
2933 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2935 S:      Supported
2936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2937 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2938 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2939 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2940 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2941 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2942 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2943 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2944 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2945 F:      arch/arm64/boot/dts/toshiba/
2946 F:      drivers/clk/visconti/
2947 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2948 F:      drivers/gpio/gpio-visconti.c
2949 F:      drivers/pci/controller/dwc/pcie-visconti.c
2950 F:      drivers/pinctrl/visconti/
2951 F:      drivers/watchdog/visconti_wdt.c
2952 N:      visconti
2953
2954 ARM/UNIPHIER ARCHITECTURE
2955 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2956 M:      Masami Hiramatsu <mhiramat@kernel.org>
2957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2958 S:      Maintained
2959 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2960 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2961 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2962 F:      Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
2963 F:      arch/arm/boot/dts/uniphier*
2964 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2965 F:      arch/arm/mach-uniphier/
2966 F:      arch/arm/mm/cache-uniphier.c
2967 F:      arch/arm64/boot/dts/socionext/uniphier*
2968 F:      drivers/bus/uniphier-system-bus.c
2969 F:      drivers/clk/uniphier/
2970 F:      drivers/dma/uniphier-mdmac.c
2971 F:      drivers/gpio/gpio-uniphier.c
2972 F:      drivers/i2c/busses/i2c-uniphier*
2973 F:      drivers/irqchip/irq-uniphier-aidet.c
2974 F:      drivers/mmc/host/uniphier-sd.c
2975 F:      drivers/pinctrl/uniphier/
2976 F:      drivers/reset/reset-uniphier.c
2977 F:      drivers/tty/serial/8250/8250_uniphier.c
2978 N:      uniphier
2979
2980 ARM/VERSATILE EXPRESS PLATFORM
2981 M:      Liviu Dudau <liviu.dudau@arm.com>
2982 M:      Sudeep Holla <sudeep.holla@arm.com>
2983 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2985 S:      Maintained
2986 F:      */*/*/vexpress*
2987 F:      */*/vexpress*
2988 F:      arch/arm/boot/dts/vexpress*
2989 F:      arch/arm/mach-versatile/
2990 F:      arch/arm64/boot/dts/arm/
2991 F:      drivers/clk/versatile/clk-vexpress-osc.c
2992 F:      drivers/clocksource/timer-versatile.c
2993 N:      mps2
2994
2995 ARM/VFP SUPPORT
2996 M:      Russell King <linux@armlinux.org.uk>
2997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2998 S:      Maintained
2999 W:      http://www.armlinux.org.uk/
3000 F:      arch/arm/vfp/
3001
3002 ARM/VT8500 ARM ARCHITECTURE
3003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3004 S:      Orphan
3005 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3006 F:      arch/arm/mach-vt8500/
3007 F:      drivers/clocksource/timer-vt8500.c
3008 F:      drivers/i2c/busses/i2c-wmt.c
3009 F:      drivers/mmc/host/wmt-sdmmc.c
3010 F:      drivers/pwm/pwm-vt8500.c
3011 F:      drivers/rtc/rtc-vt8500.c
3012 F:      drivers/tty/serial/vt8500_serial.c
3013 F:      drivers/usb/host/ehci-platform.c
3014 F:      drivers/usb/host/uhci-platform.c
3015 F:      drivers/video/fbdev/vt8500lcdfb.*
3016 F:      drivers/video/fbdev/wm8505fb*
3017 F:      drivers/video/fbdev/wmt_ge_rops.*
3018
3019 ARM/ZYNQ ARCHITECTURE
3020 M:      Michal Simek <michal.simek@xilinx.com>
3021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3022 S:      Supported
3023 W:      http://wiki.xilinx.com
3024 T:      git https://github.com/Xilinx/linux-xlnx.git
3025 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3026 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3027 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3028 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3029 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3030 F:      arch/arm/mach-zynq/
3031 F:      drivers/clocksource/timer-cadence-ttc.c
3032 F:      drivers/cpuidle/cpuidle-zynq.c
3033 F:      drivers/edac/synopsys_edac.c
3034 F:      drivers/i2c/busses/i2c-cadence.c
3035 F:      drivers/i2c/busses/i2c-xiic.c
3036 F:      drivers/mmc/host/sdhci-of-arasan.c
3037 N:      zynq
3038 N:      xilinx
3039
3040 ARM64 PORT (AARCH64 ARCHITECTURE)
3041 M:      Catalin Marinas <catalin.marinas@arm.com>
3042 M:      Will Deacon <will@kernel.org>
3043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3044 S:      Maintained
3045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3046 F:      Documentation/arm64/
3047 F:      arch/arm64/
3048 F:      tools/testing/selftests/arm64/
3049 X:      arch/arm64/boot/dts/
3050
3051 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3052 M:      George McCollister <george.mccollister@gmail.com>
3053 L:      netdev@vger.kernel.org
3054 S:      Maintained
3055 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3056 F:      drivers/net/dsa/xrs700x/*
3057 F:      net/dsa/tag_xrs700x.c
3058
3059 AS3645A LED FLASH CONTROLLER DRIVER
3060 M:      Sakari Ailus <sakari.ailus@iki.fi>
3061 L:      linux-leds@vger.kernel.org
3062 S:      Maintained
3063 F:      drivers/leds/flash/leds-as3645a.c
3064
3065 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3066 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3067 L:      linux-media@vger.kernel.org
3068 S:      Maintained
3069 T:      git git://linuxtv.org/media_tree.git
3070 F:      Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3071 F:      drivers/media/i2c/ak7375.c
3072
3073 ASAHI KASEI AK8974 DRIVER
3074 M:      Linus Walleij <linus.walleij@linaro.org>
3075 L:      linux-iio@vger.kernel.org
3076 S:      Supported
3077 W:      http://www.akm.com/
3078 F:      drivers/iio/magnetometer/ak8974.c
3079
3080 ASC7621 HARDWARE MONITOR DRIVER
3081 M:      George Joseph <george.joseph@fairview5.com>
3082 L:      linux-hwmon@vger.kernel.org
3083 S:      Maintained
3084 F:      Documentation/hwmon/asc7621.rst
3085 F:      drivers/hwmon/asc7621.c
3086
3087 ASIX AX88796C SPI ETHERNET ADAPTER
3088 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3089 S:      Maintained
3090 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3091 F:      drivers/net/ethernet/asix/ax88796c_*
3092
3093 ASPEED PECI CONTROLLER
3094 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3095 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3096 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3097 S:      Supported
3098 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3099 F:      drivers/peci/controller/peci-aspeed.c
3100
3101 ASPEED PINCTRL DRIVERS
3102 M:      Andrew Jeffery <andrew@aj.id.au>
3103 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3104 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3105 L:      linux-gpio@vger.kernel.org
3106 S:      Maintained
3107 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3108 F:      drivers/pinctrl/aspeed/
3109
3110 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3111 M:      Eddie James <eajames@linux.ibm.com>
3112 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3113 S:      Maintained
3114 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3115 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3116 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3117
3118 ASPEED SD/MMC DRIVER
3119 M:      Andrew Jeffery <andrew@aj.id.au>
3120 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3121 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3122 L:      linux-mmc@vger.kernel.org
3123 S:      Maintained
3124 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3125 F:      drivers/mmc/host/sdhci-of-aspeed*
3126
3127 ASPEED SMC SPI DRIVER
3128 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3129 M:      Cédric Le Goater <clg@kaod.org>
3130 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3131 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3132 L:      linux-spi@vger.kernel.org
3133 S:      Maintained
3134 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3135 F:      drivers/spi/spi-aspeed-smc.c
3136
3137 ASPEED VIDEO ENGINE DRIVER
3138 M:      Eddie James <eajames@linux.ibm.com>
3139 L:      linux-media@vger.kernel.org
3140 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3141 S:      Maintained
3142 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3143 F:      drivers/media/platform/aspeed/
3144
3145 ASPEED USB UDC DRIVER
3146 M:      Neal Liu <neal_liu@aspeedtech.com>
3147 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3148 S:      Maintained
3149 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3150 F:      drivers/usb/gadget/udc/aspeed_udc.c
3151
3152 ASPEED CRYPTO DRIVER
3153 M:      Neal Liu <neal_liu@aspeedtech.com>
3154 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3155 S:      Maintained
3156 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3157 F:      drivers/crypto/aspeed/
3158
3159 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3160 M:      Corentin Chary <corentin.chary@gmail.com>
3161 L:      acpi4asus-user@lists.sourceforge.net
3162 L:      platform-driver-x86@vger.kernel.org
3163 S:      Maintained
3164 W:      http://acpi4asus.sf.net
3165 F:      drivers/platform/x86/asus*.c
3166 F:      drivers/platform/x86/eeepc*.c
3167
3168 ASUS TF103C DOCK DRIVER
3169 M:      Hans de Goede <hdegoede@redhat.com>
3170 L:      platform-driver-x86@vger.kernel.org
3171 S:      Maintained
3172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3173 F:      drivers/platform/x86/asus-tf103c-dock.c
3174
3175 ASUS WMI HARDWARE MONITOR DRIVER
3176 M:      Ed Brindley <kernel@maidavale.org>
3177 M:      Denis Pauk <pauk.denis@gmail.com>
3178 L:      linux-hwmon@vger.kernel.org
3179 S:      Maintained
3180 F:      drivers/hwmon/asus_wmi_sensors.c
3181
3182 ASUS EC HARDWARE MONITOR DRIVER
3183 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3184 L:      linux-hwmon@vger.kernel.org
3185 S:      Maintained
3186 F:      drivers/hwmon/asus-ec-sensors.c
3187
3188 ASUS WIRELESS RADIO CONTROL DRIVER
3189 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3190 L:      platform-driver-x86@vger.kernel.org
3191 S:      Maintained
3192 F:      drivers/platform/x86/asus-wireless.c
3193
3194 ASYMMETRIC KEYS
3195 M:      David Howells <dhowells@redhat.com>
3196 L:      keyrings@vger.kernel.org
3197 S:      Maintained
3198 F:      Documentation/crypto/asymmetric-keys.rst
3199 F:      crypto/asymmetric_keys/
3200 F:      include/crypto/pkcs7.h
3201 F:      include/crypto/public_key.h
3202 F:      include/linux/verification.h
3203
3204 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3205 R:      Dan Williams <dan.j.williams@intel.com>
3206 S:      Odd fixes
3207 W:      http://sourceforge.net/projects/xscaleiop
3208 F:      Documentation/crypto/async-tx-api.rst
3209 F:      crypto/async_tx/
3210 F:      include/linux/async_tx.h
3211
3212 AT24 EEPROM DRIVER
3213 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3214 L:      linux-i2c@vger.kernel.org
3215 S:      Maintained
3216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3217 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3218 F:      drivers/misc/eeprom/at24.c
3219
3220 ATA OVER ETHERNET (AOE) DRIVER
3221 M:      "Justin Sanders" <justin@coraid.com>
3222 S:      Supported
3223 W:      http://www.openaoe.org/
3224 F:      Documentation/admin-guide/aoe/
3225 F:      drivers/block/aoe/
3226
3227 ATC260X PMIC MFD DRIVER
3228 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3229 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3230 L:      linux-actions@lists.infradead.org
3231 S:      Maintained
3232 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3233 F:      drivers/input/misc/atc260x-onkey.c
3234 F:      drivers/mfd/atc260*
3235 F:      drivers/power/reset/atc260x-poweroff.c
3236 F:      drivers/regulator/atc260x-regulator.c
3237 F:      include/linux/mfd/atc260x/*
3238
3239 ATHEROS 71XX/9XXX GPIO DRIVER
3240 M:      Alban Bedel <albeu@free.fr>
3241 S:      Maintained
3242 W:      https://github.com/AlbanBedel/linux
3243 T:      git git://github.com/AlbanBedel/linux
3244 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3245 F:      drivers/gpio/gpio-ath79.c
3246
3247 ATHEROS 71XX/9XXX USB PHY DRIVER
3248 M:      Alban Bedel <albeu@free.fr>
3249 S:      Maintained
3250 W:      https://github.com/AlbanBedel/linux
3251 T:      git git://github.com/AlbanBedel/linux
3252 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3253 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3254
3255 ATHEROS ATH GENERIC UTILITIES
3256 M:      Kalle Valo <kvalo@kernel.org>
3257 L:      linux-wireless@vger.kernel.org
3258 S:      Supported
3259 F:      drivers/net/wireless/ath/*
3260
3261 ATHEROS ATH5K WIRELESS DRIVER
3262 M:      Jiri Slaby <jirislaby@kernel.org>
3263 M:      Nick Kossifidis <mickflemm@gmail.com>
3264 M:      Luis Chamberlain <mcgrof@kernel.org>
3265 L:      linux-wireless@vger.kernel.org
3266 S:      Maintained
3267 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3268 F:      drivers/net/wireless/ath/ath5k/
3269
3270 ATHEROS ATH6KL WIRELESS DRIVER
3271 L:      linux-wireless@vger.kernel.org
3272 S:      Orphan
3273 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3274 F:      drivers/net/wireless/ath/ath6kl/
3275
3276 ATI_REMOTE2 DRIVER
3277 M:      Ville Syrjala <syrjala@sci.fi>
3278 S:      Maintained
3279 F:      drivers/input/misc/ati_remote2.c
3280
3281 ATK0110 HWMON DRIVER
3282 M:      Luca Tettamanti <kronos.it@gmail.com>
3283 L:      linux-hwmon@vger.kernel.org
3284 S:      Maintained
3285 F:      drivers/hwmon/asus_atk0110.c
3286
3287 ATLX ETHERNET DRIVERS
3288 M:      Chris Snook <chris.snook@gmail.com>
3289 L:      netdev@vger.kernel.org
3290 S:      Maintained
3291 W:      http://sourceforge.net/projects/atl1
3292 W:      http://atl1.sourceforge.net
3293 F:      drivers/net/ethernet/atheros/
3294
3295 ATM
3296 M:      Chas Williams <3chas3@gmail.com>
3297 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3298 L:      netdev@vger.kernel.org
3299 S:      Maintained
3300 W:      http://linux-atm.sourceforge.net
3301 F:      drivers/atm/
3302 F:      include/linux/atm*
3303 F:      include/uapi/linux/atm*
3304
3305 ATMEL MACB ETHERNET DRIVER
3306 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3307 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3308 S:      Supported
3309 F:      drivers/net/ethernet/cadence/
3310
3311 ATMEL MAXTOUCH DRIVER
3312 M:      Nick Dyer <nick@shmanahar.org>
3313 S:      Maintained
3314 T:      git git://github.com/ndyer/linux.git
3315 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3316 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3317
3318 ATMEL WIRELESS DRIVER
3319 M:      Simon Kelley <simon@thekelleys.org.uk>
3320 L:      linux-wireless@vger.kernel.org
3321 S:      Maintained
3322 W:      http://www.thekelleys.org.uk/atmel
3323 W:      http://atmelwlandriver.sourceforge.net/
3324 F:      drivers/net/wireless/atmel/atmel*
3325
3326 ATOMIC INFRASTRUCTURE
3327 M:      Will Deacon <will@kernel.org>
3328 M:      Peter Zijlstra <peterz@infradead.org>
3329 R:      Boqun Feng <boqun.feng@gmail.com>
3330 R:      Mark Rutland <mark.rutland@arm.com>
3331 L:      linux-kernel@vger.kernel.org
3332 S:      Maintained
3333 F:      arch/*/include/asm/atomic*.h
3334 F:      include/*/atomic*.h
3335 F:      include/linux/refcount.h
3336 F:      Documentation/atomic_*.txt
3337 F:      scripts/atomic/
3338
3339 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3340 M:      Bradley Grove <linuxdrivers@attotech.com>
3341 L:      linux-scsi@vger.kernel.org
3342 S:      Supported
3343 W:      http://www.attotech.com
3344 F:      drivers/scsi/esas2r
3345
3346 ATUSB IEEE 802.15.4 RADIO DRIVER
3347 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3348 L:      linux-wpan@vger.kernel.org
3349 S:      Maintained
3350 F:      drivers/net/ieee802154/at86rf230.h
3351 F:      drivers/net/ieee802154/atusb.c
3352 F:      drivers/net/ieee802154/atusb.h
3353
3354 AUDIT SUBSYSTEM
3355 M:      Paul Moore <paul@paul-moore.com>
3356 M:      Eric Paris <eparis@redhat.com>
3357 L:      audit@vger.kernel.org
3358 S:      Supported
3359 W:      https://github.com/linux-audit
3360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3361 F:      include/asm-generic/audit_*.h
3362 F:      include/linux/audit.h
3363 F:      include/linux/audit_arch.h
3364 F:      include/uapi/linux/audit.h
3365 F:      kernel/audit*
3366 F:      lib/*audit.c
3367
3368 AUXILIARY DISPLAY DRIVERS
3369 M:      Miguel Ojeda <ojeda@kernel.org>
3370 S:      Maintained
3371 F:      Documentation/devicetree/bindings/auxdisplay/
3372 F:      drivers/auxdisplay/
3373 F:      include/linux/cfag12864b.h
3374
3375 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3376 M:      Andreas Klinger <ak@it-klinger.de>
3377 L:      linux-iio@vger.kernel.org
3378 S:      Maintained
3379 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3380 F:      drivers/iio/adc/hx711.c
3381
3382 AX.25 NETWORK LAYER
3383 M:      Ralf Baechle <ralf@linux-mips.org>
3384 L:      linux-hams@vger.kernel.org
3385 S:      Maintained
3386 W:      http://www.linux-ax25.org/
3387 F:      include/net/ax25.h
3388 F:      include/uapi/linux/ax25.h
3389 F:      net/ax25/
3390
3391 AXENTIA ARM DEVICES
3392 M:      Peter Rosin <peda@axentia.se>
3393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3394 S:      Maintained
3395 F:      arch/arm/boot/dts/at91-linea.dtsi
3396 F:      arch/arm/boot/dts/at91-natte.dtsi
3397 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3398 F:      arch/arm/boot/dts/at91-tse850-3.dts
3399
3400 AXENTIA ASOC DRIVERS
3401 M:      Peter Rosin <peda@axentia.se>
3402 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3403 S:      Maintained
3404 F:      Documentation/devicetree/bindings/sound/axentia,*
3405 F:      sound/soc/atmel/tse850-pcm5142.c
3406
3407 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3408 M:      Nuno Sá <nuno.sa@analog.com>
3409 L:      linux-hwmon@vger.kernel.org
3410 S:      Supported
3411 W:      https://ez.analog.com/linux-software-drivers
3412 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3413 F:      drivers/hwmon/axi-fan-control.c
3414
3415 AXXIA I2C CONTROLLER
3416 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3417 L:      linux-i2c@vger.kernel.org
3418 S:      Maintained
3419 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3420 F:      drivers/i2c/busses/i2c-axxia.c
3421
3422 AZ6007 DVB DRIVER
3423 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3424 L:      linux-media@vger.kernel.org
3425 S:      Maintained
3426 W:      https://linuxtv.org
3427 T:      git git://linuxtv.org/media_tree.git
3428 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3429
3430 AZTECH FM RADIO RECEIVER DRIVER
3431 M:      Hans Verkuil <hverkuil@xs4all.nl>
3432 L:      linux-media@vger.kernel.org
3433 S:      Maintained
3434 W:      https://linuxtv.org
3435 T:      git git://linuxtv.org/media_tree.git
3436 F:      drivers/media/radio/radio-aztech*
3437
3438 B43 WIRELESS DRIVER
3439 L:      linux-wireless@vger.kernel.org
3440 L:      b43-dev@lists.infradead.org
3441 S:      Odd Fixes
3442 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3443 F:      drivers/net/wireless/broadcom/b43/
3444
3445 B43LEGACY WIRELESS DRIVER
3446 M:      Larry Finger <Larry.Finger@lwfinger.net>
3447 L:      linux-wireless@vger.kernel.org
3448 L:      b43-dev@lists.infradead.org
3449 S:      Maintained
3450 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3451 F:      drivers/net/wireless/broadcom/b43legacy/
3452
3453 BACKLIGHT CLASS/SUBSYSTEM
3454 M:      Lee Jones <lee@kernel.org>
3455 M:      Daniel Thompson <daniel.thompson@linaro.org>
3456 M:      Jingoo Han <jingoohan1@gmail.com>
3457 L:      dri-devel@lists.freedesktop.org
3458 S:      Maintained
3459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3460 F:      Documentation/ABI/stable/sysfs-class-backlight
3461 F:      Documentation/ABI/testing/sysfs-class-backlight
3462 F:      Documentation/devicetree/bindings/leds/backlight
3463 F:      drivers/video/backlight/
3464 F:      include/linux/backlight.h
3465 F:      include/linux/pwm_backlight.h
3466
3467 BARCO P50 GPIO DRIVER
3468 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3469 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3470 S:      Maintained
3471 F:      drivers/platform/x86/barco-p50-gpio.c
3472
3473 BATMAN ADVANCED
3474 M:      Marek Lindner <mareklindner@neomailbox.ch>
3475 M:      Simon Wunderlich <sw@simonwunderlich.de>
3476 M:      Antonio Quartulli <a@unstable.cc>
3477 M:      Sven Eckelmann <sven@narfation.org>
3478 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3479 S:      Maintained
3480 W:      https://www.open-mesh.org/
3481 Q:      https://patchwork.open-mesh.org/project/batman/list/
3482 B:      https://www.open-mesh.org/projects/batman-adv/issues
3483 C:      ircs://irc.hackint.org/batadv
3484 T:      git https://git.open-mesh.org/linux-merge.git
3485 F:      Documentation/networking/batman-adv.rst
3486 F:      include/uapi/linux/batadv_packet.h
3487 F:      include/uapi/linux/batman_adv.h
3488 F:      net/batman-adv/
3489
3490 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3491 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3492 L:      linux-hams@vger.kernel.org
3493 S:      Maintained
3494 W:      http://www.baycom.org/~tom/ham/ham.html
3495 F:      drivers/net/hamradio/baycom*
3496
3497 BCACHE (BLOCK LAYER CACHE)
3498 M:      Coly Li <colyli@suse.de>
3499 M:      Kent Overstreet <kent.overstreet@gmail.com>
3500 L:      linux-bcache@vger.kernel.org
3501 S:      Maintained
3502 W:      http://bcache.evilpiepirate.org
3503 C:      irc://irc.oftc.net/bcache
3504 F:      drivers/md/bcache/
3505
3506 BDISP ST MEDIA DRIVER
3507 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3508 L:      linux-media@vger.kernel.org
3509 S:      Supported
3510 W:      https://linuxtv.org
3511 T:      git git://linuxtv.org/media_tree.git
3512 F:      drivers/media/platform/st/sti/bdisp
3513
3514 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3515 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3516 L:      netdev@vger.kernel.org
3517 S:      Maintained
3518 F:      drivers/net/ethernet/ec_bhf.c
3519
3520 BEFS FILE SYSTEM
3521 M:      Luis de Bethencourt <luisbg@kernel.org>
3522 M:      Salah Triki <salah.triki@gmail.com>
3523 S:      Maintained
3524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3525 F:      Documentation/filesystems/befs.rst
3526 F:      fs/befs/
3527
3528 BFQ I/O SCHEDULER
3529 M:      Paolo Valente <paolo.valente@linaro.org>
3530 M:      Jens Axboe <axboe@kernel.dk>
3531 L:      linux-block@vger.kernel.org
3532 S:      Maintained
3533 F:      Documentation/block/bfq-iosched.rst
3534 F:      block/bfq-*
3535
3536 BFS FILE SYSTEM
3537 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3538 S:      Maintained
3539 F:      Documentation/filesystems/bfs.rst
3540 F:      fs/bfs/
3541 F:      include/uapi/linux/bfs_fs.h
3542
3543 BITMAP API
3544 M:      Yury Norov <yury.norov@gmail.com>
3545 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3546 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3547 S:      Maintained
3548 F:      include/linux/bitmap.h
3549 F:      include/linux/cpumask.h
3550 F:      include/linux/find.h
3551 F:      include/linux/nodemask.h
3552 F:      lib/bitmap.c
3553 F:      lib/cpumask.c
3554 F:      lib/cpumask_kunit.c
3555 F:      lib/find_bit.c
3556 F:      lib/find_bit_benchmark.c
3557 F:      lib/test_bitmap.c
3558 F:      tools/include/linux/bitmap.h
3559 F:      tools/include/linux/find.h
3560 F:      tools/lib/bitmap.c
3561 F:      tools/lib/find_bit.c
3562
3563 BLINKM RGB LED DRIVER
3564 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3565 S:      Maintained
3566 F:      drivers/leds/leds-blinkm.c
3567
3568 BLOCK LAYER
3569 M:      Jens Axboe <axboe@kernel.dk>
3570 L:      linux-block@vger.kernel.org
3571 S:      Maintained
3572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3573 F:      Documentation/ABI/stable/sysfs-block
3574 F:      Documentation/block/
3575 F:      block/
3576 F:      drivers/block/
3577 F:      include/linux/bio.h
3578 F:      include/linux/blk*
3579 F:      kernel/trace/blktrace.c
3580 F:      lib/sbitmap.c
3581
3582 BLOCK2MTD DRIVER
3583 M:      Joern Engel <joern@lazybastard.org>
3584 L:      linux-mtd@lists.infradead.org
3585 S:      Maintained
3586 F:      drivers/mtd/devices/block2mtd.c
3587
3588 BLUETOOTH DRIVERS
3589 M:      Marcel Holtmann <marcel@holtmann.org>
3590 M:      Johan Hedberg <johan.hedberg@gmail.com>
3591 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3592 L:      linux-bluetooth@vger.kernel.org
3593 S:      Supported
3594 W:      http://www.bluez.org/
3595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3597 F:      drivers/bluetooth/
3598
3599 BLUETOOTH SUBSYSTEM
3600 M:      Marcel Holtmann <marcel@holtmann.org>
3601 M:      Johan Hedberg <johan.hedberg@gmail.com>
3602 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3603 L:      linux-bluetooth@vger.kernel.org
3604 S:      Supported
3605 W:      http://www.bluez.org/
3606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3608 F:      include/net/bluetooth/
3609 F:      net/bluetooth/
3610
3611 BONDING DRIVER
3612 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3613 M:      Andy Gospodarek <andy@greyhouse.net>
3614 L:      netdev@vger.kernel.org
3615 S:      Supported
3616 W:      http://sourceforge.net/projects/bonding/
3617 F:      Documentation/networking/bonding.rst
3618 F:      drivers/net/bonding/
3619 F:      include/net/bond*
3620 F:      include/uapi/linux/if_bonding.h
3621 F:      tools/testing/selftests/drivers/net/bonding/
3622
3623 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3624 M:      Dan Robertson <dan@dlrobertson.com>
3625 L:      linux-iio@vger.kernel.org
3626 S:      Maintained
3627 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3628 F:      drivers/iio/accel/bma400*
3629
3630 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3631 M:      Alexei Starovoitov <ast@kernel.org>
3632 M:      Daniel Borkmann <daniel@iogearbox.net>
3633 M:      Andrii Nakryiko <andrii@kernel.org>
3634 R:      Martin KaFai Lau <martin.lau@linux.dev>
3635 R:      Song Liu <song@kernel.org>
3636 R:      Yonghong Song <yhs@fb.com>
3637 R:      John Fastabend <john.fastabend@gmail.com>
3638 R:      KP Singh <kpsingh@kernel.org>
3639 R:      Stanislav Fomichev <sdf@google.com>
3640 R:      Hao Luo <haoluo@google.com>
3641 R:      Jiri Olsa <jolsa@kernel.org>
3642 L:      bpf@vger.kernel.org
3643 S:      Supported
3644 W:      https://bpf.io/
3645 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3648 F:      Documentation/bpf/
3649 F:      Documentation/networking/filter.rst
3650 F:      Documentation/userspace-api/ebpf/
3651 F:      arch/*/net/*
3652 F:      include/linux/bpf*
3653 F:      include/linux/btf*
3654 F:      include/linux/filter.h
3655 F:      include/trace/events/xdp.h
3656 F:      include/uapi/linux/bpf*
3657 F:      include/uapi/linux/btf*
3658 F:      include/uapi/linux/filter.h
3659 F:      kernel/bpf/
3660 F:      kernel/trace/bpf_trace.c
3661 F:      lib/test_bpf.c
3662 F:      net/bpf/
3663 F:      net/core/filter.c
3664 F:      net/sched/act_bpf.c
3665 F:      net/sched/cls_bpf.c
3666 F:      samples/bpf/
3667 F:      scripts/bpf_doc.py
3668 F:      scripts/pahole-flags.sh
3669 F:      scripts/pahole-version.sh
3670 F:      tools/bpf/
3671 F:      tools/lib/bpf/
3672 F:      tools/testing/selftests/bpf/
3673
3674 BPF JIT for ARM
3675 M:      Shubham Bansal <illusionist.neo@gmail.com>
3676 L:      bpf@vger.kernel.org
3677 S:      Odd Fixes
3678 F:      arch/arm/net/
3679
3680 BPF JIT for ARM64
3681 M:      Daniel Borkmann <daniel@iogearbox.net>
3682 M:      Alexei Starovoitov <ast@kernel.org>
3683 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3684 L:      bpf@vger.kernel.org
3685 S:      Supported
3686 F:      arch/arm64/net/
3687
3688 BPF JIT for MIPS (32-BIT AND 64-BIT)
3689 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3690 M:      Paul Burton <paulburton@kernel.org>
3691 L:      bpf@vger.kernel.org
3692 S:      Maintained
3693 F:      arch/mips/net/
3694
3695 BPF JIT for NFP NICs
3696 M:      Jakub Kicinski <kuba@kernel.org>
3697 L:      bpf@vger.kernel.org
3698 S:      Odd Fixes
3699 F:      drivers/net/ethernet/netronome/nfp/bpf/
3700
3701 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3702 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3703 M:      Michael Ellerman <mpe@ellerman.id.au>
3704 L:      bpf@vger.kernel.org
3705 S:      Supported
3706 F:      arch/powerpc/net/
3707
3708 BPF JIT for RISC-V (32-bit)
3709 M:      Luke Nelson <luke.r.nels@gmail.com>
3710 M:      Xi Wang <xi.wang@gmail.com>
3711 L:      bpf@vger.kernel.org
3712 S:      Maintained
3713 F:      arch/riscv/net/
3714 X:      arch/riscv/net/bpf_jit_comp64.c
3715
3716 BPF JIT for RISC-V (64-bit)
3717 M:      Björn Töpel <bjorn@kernel.org>
3718 L:      bpf@vger.kernel.org
3719 S:      Maintained
3720 F:      arch/riscv/net/
3721 X:      arch/riscv/net/bpf_jit_comp32.c
3722
3723 BPF JIT for S390
3724 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3725 M:      Heiko Carstens <hca@linux.ibm.com>
3726 M:      Vasily Gorbik <gor@linux.ibm.com>
3727 L:      bpf@vger.kernel.org
3728 S:      Supported
3729 F:      arch/s390/net/
3730 X:      arch/s390/net/pnet.c
3731
3732 BPF JIT for SPARC (32-BIT AND 64-BIT)
3733 M:      David S. Miller <davem@davemloft.net>
3734 L:      bpf@vger.kernel.org
3735 S:      Odd Fixes
3736 F:      arch/sparc/net/
3737
3738 BPF JIT for X86 32-BIT
3739 M:      Wang YanQing <udknight@gmail.com>
3740 L:      bpf@vger.kernel.org
3741 S:      Odd Fixes
3742 F:      arch/x86/net/bpf_jit_comp32.c
3743
3744 BPF JIT for X86 64-BIT
3745 M:      Alexei Starovoitov <ast@kernel.org>
3746 M:      Daniel Borkmann <daniel@iogearbox.net>
3747 L:      bpf@vger.kernel.org
3748 S:      Supported
3749 F:      arch/x86/net/
3750 X:      arch/x86/net/bpf_jit_comp32.c
3751
3752 BPF [CORE]
3753 M:      Alexei Starovoitov <ast@kernel.org>
3754 M:      Daniel Borkmann <daniel@iogearbox.net>
3755 R:      John Fastabend <john.fastabend@gmail.com>
3756 L:      bpf@vger.kernel.org
3757 S:      Maintained
3758 F:      kernel/bpf/verifier.c
3759 F:      kernel/bpf/tnum.c
3760 F:      kernel/bpf/core.c
3761 F:      kernel/bpf/syscall.c
3762 F:      kernel/bpf/dispatcher.c
3763 F:      kernel/bpf/trampoline.c
3764 F:      include/linux/bpf*
3765 F:      include/linux/filter.h
3766 F:      include/linux/tnum.h
3767
3768 BPF [BTF]
3769 M:      Martin KaFai Lau <martin.lau@linux.dev>
3770 L:      bpf@vger.kernel.org
3771 S:      Maintained
3772 F:      kernel/bpf/btf.c
3773 F:      include/linux/btf*
3774
3775 BPF [TRACING]
3776 M:      Song Liu <song@kernel.org>
3777 R:      Jiri Olsa <jolsa@kernel.org>
3778 L:      bpf@vger.kernel.org
3779 S:      Maintained
3780 F:      kernel/trace/bpf_trace.c
3781 F:      kernel/bpf/stackmap.c
3782
3783 BPF [NETWORKING] (tc BPF, sock_addr)
3784 M:      Martin KaFai Lau <martin.lau@linux.dev>
3785 M:      Daniel Borkmann <daniel@iogearbox.net>
3786 R:      John Fastabend <john.fastabend@gmail.com>
3787 L:      bpf@vger.kernel.org
3788 L:      netdev@vger.kernel.org
3789 S:      Maintained
3790 F:      net/core/filter.c
3791 F:      net/sched/act_bpf.c
3792 F:      net/sched/cls_bpf.c
3793
3794 BPF [NETWORKING] (struct_ops, reuseport)
3795 M:      Martin KaFai Lau <martin.lau@linux.dev>
3796 L:      bpf@vger.kernel.org
3797 L:      netdev@vger.kernel.org
3798 S:      Maintained
3799 F:      kernel/bpf/bpf_struct*
3800
3801 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3802 M:      KP Singh <kpsingh@kernel.org>
3803 R:      Florent Revest <revest@chromium.org>
3804 R:      Brendan Jackman <jackmanb@chromium.org>
3805 L:      bpf@vger.kernel.org
3806 S:      Maintained
3807 F:      Documentation/bpf/prog_lsm.rst
3808 F:      include/linux/bpf_lsm.h
3809 F:      kernel/bpf/bpf_lsm.c
3810 F:      security/bpf/
3811
3812 BPF [STORAGE & CGROUPS]
3813 M:      Martin KaFai Lau <martin.lau@linux.dev>
3814 L:      bpf@vger.kernel.org
3815 S:      Maintained
3816 F:      kernel/bpf/cgroup.c
3817 F:      kernel/bpf/*storage.c
3818 F:      kernel/bpf/bpf_lru*
3819
3820 BPF [RINGBUF]
3821 M:      Andrii Nakryiko <andrii@kernel.org>
3822 L:      bpf@vger.kernel.org
3823 S:      Maintained
3824 F:      kernel/bpf/ringbuf.c
3825
3826 BPF [ITERATOR]
3827 M:      Yonghong Song <yhs@fb.com>
3828 L:      bpf@vger.kernel.org
3829 S:      Maintained
3830 F:      kernel/bpf/*iter.c
3831
3832 BPF [L7 FRAMEWORK] (sockmap)
3833 M:      John Fastabend <john.fastabend@gmail.com>
3834 M:      Jakub Sitnicki <jakub@cloudflare.com>
3835 L:      netdev@vger.kernel.org
3836 L:      bpf@vger.kernel.org
3837 S:      Maintained
3838 F:      include/linux/skmsg.h
3839 F:      net/core/skmsg.c
3840 F:      net/core/sock_map.c
3841 F:      net/ipv4/tcp_bpf.c
3842 F:      net/ipv4/udp_bpf.c
3843 F:      net/unix/unix_bpf.c
3844
3845 BPF [LIBRARY] (libbpf)
3846 M:      Andrii Nakryiko <andrii@kernel.org>
3847 L:      bpf@vger.kernel.org
3848 S:      Maintained
3849 F:      tools/lib/bpf/
3850
3851 BPF [TOOLING] (bpftool)
3852 M:      Quentin Monnet <quentin@isovalent.com>
3853 L:      bpf@vger.kernel.org
3854 S:      Maintained
3855 F:      kernel/bpf/disasm.*
3856 F:      tools/bpf/bpftool/
3857
3858 BPF [SELFTESTS] (Test Runners & Infrastructure)
3859 M:      Andrii Nakryiko <andrii@kernel.org>
3860 R:      Mykola Lysenko <mykolal@fb.com>
3861 L:      bpf@vger.kernel.org
3862 S:      Maintained
3863 F:      tools/testing/selftests/bpf/
3864
3865 BPF [DOCUMENTATION] (Related to Standardization)
3866 R:      David Vernet <void@manifault.com>
3867 L:      bpf@vger.kernel.org
3868 L:      bpf@ietf.org
3869 S:      Maintained
3870 F:      Documentation/bpf/instruction-set.rst
3871
3872 BPF [MISC]
3873 L:      bpf@vger.kernel.org
3874 S:      Odd Fixes
3875 K:      (?:\b|_)bpf(?:\b|_)
3876
3877 BROADCOM B44 10/100 ETHERNET DRIVER
3878 M:      Michael Chan <michael.chan@broadcom.com>
3879 L:      netdev@vger.kernel.org
3880 S:      Supported
3881 F:      drivers/net/ethernet/broadcom/b44.*
3882
3883 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3884 M:      Florian Fainelli <f.fainelli@gmail.com>
3885 L:      netdev@vger.kernel.org
3886 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3887 S:      Supported
3888 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3889 F:      drivers/net/dsa/b53/*
3890 F:      drivers/net/dsa/bcm_sf2*
3891 F:      include/linux/dsa/brcm.h
3892 F:      include/linux/platform_data/b53.h
3893
3894 BROADCOM BCMBCA ARM ARCHITECTURE
3895 M:      William Zhang <william.zhang@broadcom.com>
3896 M:      Anand Gore <anand.gore@broadcom.com>
3897 M:      Kursad Oney <kursad.oney@broadcom.com>
3898 M:      Florian Fainelli <f.fainelli@gmail.com>
3899 M:      Rafał Miłecki <rafal@milecki.pl>
3900 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3901 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3902 S:      Maintained
3903 T:      git https://github.com/broadcom/stblinux.git
3904 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3905 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3906 N:      bcmbca
3907 N:      bcm[9]?47622
3908 N:      bcm[9]?4912
3909 N:      bcm[9]?63138
3910 N:      bcm[9]?63146
3911 N:      bcm[9]?63148
3912 N:      bcm[9]?63158
3913 N:      bcm[9]?63178
3914 N:      bcm[9]?6756
3915 N:      bcm[9]?6813
3916 N:      bcm[9]?6846
3917 N:      bcm[9]?6855
3918 N:      bcm[9]?6856
3919 N:      bcm[9]?6858
3920 N:      bcm[9]?6878
3921
3922 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3923 M:      Florian Fainelli <f.fainelli@gmail.com>
3924 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3925 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3927 S:      Maintained
3928 T:      git https://github.com/broadcom/stblinux.git
3929 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3930 F:      drivers/pci/controller/pcie-brcmstb.c
3931 F:      drivers/staging/vc04_services
3932 N:      bcm2711
3933 N:      bcm283*
3934 N:      raspberrypi
3935
3936 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3937 M:      Florian Fainelli <f.fainelli@gmail.com>
3938 M:      Ray Jui <rjui@broadcom.com>
3939 M:      Scott Branden <sbranden@broadcom.com>
3940 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3941 S:      Maintained
3942 T:      git https://github.com/broadcom/mach-bcm
3943 F:      arch/arm/mach-bcm/
3944 N:      bcm281*
3945 N:      bcm113*
3946 N:      bcm216*
3947 N:      kona
3948
3949 BROADCOM BCM47XX MIPS ARCHITECTURE
3950 M:      Hauke Mehrtens <hauke@hauke-m.de>
3951 M:      Rafał Miłecki <zajec5@gmail.com>
3952 L:      linux-mips@vger.kernel.org
3953 S:      Maintained
3954 F:      Documentation/devicetree/bindings/mips/brcm/
3955 F:      arch/mips/bcm47xx/*
3956 F:      arch/mips/include/asm/mach-bcm47xx/*
3957
3958 BROADCOM BCM4908 ETHERNET DRIVER
3959 M:      Rafał Miłecki <rafal@milecki.pl>
3960 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3961 L:      netdev@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3964 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3965 F:      drivers/net/ethernet/broadcom/unimac.h
3966
3967 BROADCOM BCM4908 PINMUX DRIVER
3968 M:      Rafał Miłecki <rafal@milecki.pl>
3969 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3970 L:      linux-gpio@vger.kernel.org
3971 S:      Maintained
3972 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3973 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3974
3975 BROADCOM BCM5301X ARM ARCHITECTURE
3976 M:      Florian Fainelli <f.fainelli@gmail.com>
3977 M:      Hauke Mehrtens <hauke@hauke-m.de>
3978 M:      Rafał Miłecki <zajec5@gmail.com>
3979 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3981 S:      Maintained
3982 F:      arch/arm/boot/dts/bcm470*
3983 F:      arch/arm/boot/dts/bcm5301*
3984 F:      arch/arm/boot/dts/bcm953012*
3985 F:      arch/arm/mach-bcm/bcm_5301x.c
3986
3987 BROADCOM BCM53573 ARM ARCHITECTURE
3988 M:      Florian Fainelli <f.fainelli@gmail.com>
3989 M:      Rafał Miłecki <rafal@milecki.pl>
3990 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3992 S:      Maintained
3993 F:      arch/arm/boot/dts/bcm47189*
3994 F:      arch/arm/boot/dts/bcm53573*
3995
3996 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3997 M:      Kevin Cernekee <cernekee@gmail.com>
3998 L:      linux-usb@vger.kernel.org
3999 S:      Maintained
4000 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4001
4002 BROADCOM BCM7XXX ARM ARCHITECTURE
4003 M:      Florian Fainelli <f.fainelli@gmail.com>
4004 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4006 S:      Maintained
4007 T:      git https://github.com/broadcom/stblinux.git
4008 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4009 F:      arch/arm/boot/dts/bcm7*.dts*
4010 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4011 F:      arch/arm/mach-bcm/*brcmstb*
4012 F:      arch/arm/mm/cache-b15-rac.c
4013 F:      drivers/bus/brcmstb_gisb.c
4014 F:      drivers/pci/controller/pcie-brcmstb.c
4015 N:      brcmstb
4016 N:      bcm7038
4017 N:      bcm7120
4018
4019 BROADCOM BDC DRIVER
4020 M:      Justin Chen <justinpopo6@gmail.com>
4021 M:      Al Cooper <alcooperx@gmail.com>
4022 L:      linux-usb@vger.kernel.org
4023 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4024 S:      Maintained
4025 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4026 F:      drivers/usb/gadget/udc/bdc/
4027
4028 BROADCOM BMIPS CPUFREQ DRIVER
4029 M:      Markus Mayer <mmayer@broadcom.com>
4030 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4031 L:      linux-pm@vger.kernel.org
4032 S:      Maintained
4033 F:      drivers/cpufreq/bmips-cpufreq.c
4034
4035 BROADCOM BMIPS MIPS ARCHITECTURE
4036 M:      Florian Fainelli <f.fainelli@gmail.com>
4037 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4038 L:      linux-mips@vger.kernel.org
4039 S:      Maintained
4040 T:      git https://github.com/broadcom/stblinux.git
4041 F:      arch/mips/bmips/*
4042 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4043 F:      arch/mips/include/asm/mach-bmips/*
4044 F:      arch/mips/kernel/*bmips*
4045 F:      drivers/soc/bcm/bcm63xx
4046 F:      drivers/irqchip/irq-bcm63*
4047 F:      drivers/irqchip/irq-bcm7*
4048 F:      drivers/irqchip/irq-brcmstb*
4049 F:      include/linux/bcm963xx_nvram.h
4050 F:      include/linux/bcm963xx_tag.h
4051
4052 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4053 M:      Rasesh Mody <rmody@marvell.com>
4054 M:      GR-Linux-NIC-Dev@marvell.com
4055 L:      netdev@vger.kernel.org
4056 S:      Supported
4057 F:      drivers/net/ethernet/broadcom/bnx2.*
4058 F:      drivers/net/ethernet/broadcom/bnx2_*
4059
4060 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4061 M:      Saurav Kashyap <skashyap@marvell.com>
4062 M:      Javed Hasan <jhasan@marvell.com>
4063 M:      GR-QLogic-Storage-Upstream@marvell.com
4064 L:      linux-scsi@vger.kernel.org
4065 S:      Supported
4066 F:      drivers/scsi/bnx2fc/
4067
4068 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4069 M:      Nilesh Javali <njavali@marvell.com>
4070 M:      Manish Rangankar <mrangankar@marvell.com>
4071 M:      GR-QLogic-Storage-Upstream@marvell.com
4072 L:      linux-scsi@vger.kernel.org
4073 S:      Supported
4074 F:      drivers/scsi/bnx2i/
4075
4076 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4077 M:      Ariel Elior <aelior@marvell.com>
4078 M:      Sudarsana Kalluru <skalluru@marvell.com>
4079 M:      Manish Chopra <manishc@marvell.com>
4080 L:      netdev@vger.kernel.org
4081 S:      Supported
4082 F:      drivers/net/ethernet/broadcom/bnx2x/
4083
4084 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4085 M:      Michael Chan <michael.chan@broadcom.com>
4086 L:      netdev@vger.kernel.org
4087 S:      Supported
4088 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4089 F:      drivers/net/ethernet/broadcom/bnxt/
4090 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4091
4092 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4093 M:      Arend van Spriel <aspriel@gmail.com>
4094 M:      Franky Lin <franky.lin@broadcom.com>
4095 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4096 L:      linux-wireless@vger.kernel.org
4097 L:      brcm80211-dev-list.pdl@broadcom.com
4098 L:      SHA-cyfmac-dev-list@infineon.com
4099 S:      Supported
4100 F:      drivers/net/wireless/broadcom/brcm80211/
4101
4102 BROADCOM BRCMSTB GPIO DRIVER
4103 M:      Doug Berger <opendmb@gmail.com>
4104 M:      Florian Fainelli <f.fainelli@gmail.com>
4105 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4106 S:      Supported
4107 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4108 F:      drivers/gpio/gpio-brcmstb.c
4109
4110 BROADCOM BRCMSTB I2C DRIVER
4111 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4112 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4113 L:      linux-i2c@vger.kernel.org
4114 S:      Supported
4115 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4116 F:      drivers/i2c/busses/i2c-brcmstb.c
4117
4118 BROADCOM BRCMSTB UART DRIVER
4119 M:      Al Cooper <alcooperx@gmail.com>
4120 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4121 L:      linux-serial@vger.kernel.org
4122 S:      Maintained
4123 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4124 F:      drivers/tty/serial/8250/8250_bcm7271.c
4125
4126 BROADCOM BRCMSTB USB EHCI DRIVER
4127 M:      Justin Chen <justinpopo6@gmail.com>
4128 M:      Al Cooper <alcooperx@gmail.com>
4129 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4130 L:      linux-usb@vger.kernel.org
4131 S:      Maintained
4132 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4133 F:      drivers/usb/host/ehci-brcm.*
4134
4135 BROADCOM BRCMSTB USB PIN MAP DRIVER
4136 M:      Al Cooper <alcooperx@gmail.com>
4137 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4138 L:      linux-usb@vger.kernel.org
4139 S:      Maintained
4140 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4141 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4142
4143 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4144 M:      Justin Chen <justinpopo6@gmail.com>
4145 M:      Al Cooper <alcooperx@gmail.com>
4146 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4147 L:      linux-kernel@vger.kernel.org
4148 S:      Maintained
4149 F:      drivers/phy/broadcom/phy-brcm-usb*
4150
4151 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4152 M:      William Zhang <william.zhang@broadcom.com>
4153 M:      Kursad Oney <kursad.oney@broadcom.com>
4154 M:      Jonas Gorski <jonas.gorski@gmail.com>
4155 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4156 L:      linux-spi@vger.kernel.org
4157 S:      Maintained
4158 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4159 F:      drivers/spi/spi-bcm63xx-hsspi.c
4160 F:      drivers/spi/spi-bcmbca-hsspi.c
4161
4162 BROADCOM ETHERNET PHY DRIVERS
4163 M:      Florian Fainelli <f.fainelli@gmail.com>
4164 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4165 L:      netdev@vger.kernel.org
4166 S:      Supported
4167 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4168 F:      drivers/net/phy/bcm*.[ch]
4169 F:      drivers/net/phy/broadcom.c
4170 F:      include/linux/brcmphy.h
4171
4172 BROADCOM GENET ETHERNET DRIVER
4173 M:      Doug Berger <opendmb@gmail.com>
4174 M:      Florian Fainelli <f.fainelli@gmail.com>
4175 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4176 L:      netdev@vger.kernel.org
4177 S:      Supported
4178 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4179 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4180 F:      drivers/net/ethernet/broadcom/genet/
4181 F:      drivers/net/ethernet/broadcom/unimac.h
4182 F:      drivers/net/mdio/mdio-bcm-unimac.c
4183 F:      include/linux/platform_data/bcmgenet.h
4184 F:      include/linux/platform_data/mdio-bcm-unimac.h
4185
4186 BROADCOM IPROC ARM ARCHITECTURE
4187 M:      Ray Jui <rjui@broadcom.com>
4188 M:      Scott Branden <sbranden@broadcom.com>
4189 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4191 S:      Maintained
4192 T:      git https://github.com/broadcom/stblinux.git
4193 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4194 F:      arch/arm64/boot/dts/broadcom/stingray/*
4195 F:      drivers/clk/bcm/clk-ns*
4196 F:      drivers/clk/bcm/clk-sr*
4197 F:      drivers/pinctrl/bcm/pinctrl-ns*
4198 F:      include/dt-bindings/clock/bcm-sr*
4199 N:      iproc
4200 N:      cygnus
4201 N:      bcm[-_]nsp
4202 N:      bcm9113*
4203 N:      bcm9583*
4204 N:      bcm9585*
4205 N:      bcm9586*
4206 N:      bcm988312
4207 N:      bcm113*
4208 N:      bcm583*
4209 N:      bcm585*
4210 N:      bcm586*
4211 N:      bcm88312
4212 N:      hr2
4213 N:      stingray
4214
4215 BROADCOM IPROC GBIT ETHERNET DRIVER
4216 M:      Rafał Miłecki <rafal@milecki.pl>
4217 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4218 L:      netdev@vger.kernel.org
4219 S:      Maintained
4220 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4221 F:      drivers/net/ethernet/broadcom/bgmac*
4222 F:      drivers/net/ethernet/broadcom/unimac.h
4223
4224 BROADCOM KONA GPIO DRIVER
4225 M:      Ray Jui <rjui@broadcom.com>
4226 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4227 S:      Supported
4228 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4229 F:      drivers/gpio/gpio-bcm-kona.c
4230
4231 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4232 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4233 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4234 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4235 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4236 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4237 L:      linux-scsi@vger.kernel.org
4238 S:      Supported
4239 W:      https://www.broadcom.com/support/storage
4240 F:      drivers/scsi/mpi3mr/
4241
4242 BROADCOM NETXTREME-E ROCE DRIVER
4243 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4244 L:      linux-rdma@vger.kernel.org
4245 S:      Supported
4246 W:      http://www.broadcom.com
4247 F:      drivers/infiniband/hw/bnxt_re/
4248 F:      include/uapi/rdma/bnxt_re-abi.h
4249
4250 BROADCOM NVRAM DRIVER
4251 M:      Rafał Miłecki <zajec5@gmail.com>
4252 L:      linux-mips@vger.kernel.org
4253 S:      Maintained
4254 F:      drivers/firmware/broadcom/*
4255
4256 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4257 M:      Rafał Miłecki <rafal@milecki.pl>
4258 M:      Florian Fainelli <f.fainelli@gmail.com>
4259 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4260 L:      linux-pm@vger.kernel.org
4261 S:      Maintained
4262 T:      git https://github.com/broadcom/stblinux.git
4263 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4264 F:      include/dt-bindings/soc/bcm-pmb.h
4265
4266 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4267 M:      Rafał Miłecki <zajec5@gmail.com>
4268 L:      linux-wireless@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/bcma/
4271 F:      include/linux/bcma/
4272
4273 BROADCOM SPI DRIVER
4274 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4275 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4276 S:      Maintained
4277 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4278 F:      drivers/spi/spi-bcm-qspi.*
4279 F:      drivers/spi/spi-brcmstb-qspi.c
4280 F:      drivers/spi/spi-iproc-qspi.c
4281
4282 BROADCOM STB AVS CPUFREQ DRIVER
4283 M:      Markus Mayer <mmayer@broadcom.com>
4284 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4285 L:      linux-pm@vger.kernel.org
4286 S:      Maintained
4287 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4288 F:      drivers/cpufreq/brcmstb*
4289
4290 BROADCOM STB AVS TMON DRIVER
4291 M:      Markus Mayer <mmayer@broadcom.com>
4292 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4293 L:      linux-pm@vger.kernel.org
4294 S:      Maintained
4295 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4296 F:      drivers/thermal/broadcom/brcmstb*
4297
4298 BROADCOM STB DPFE DRIVER
4299 M:      Markus Mayer <mmayer@broadcom.com>
4300 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4302 S:      Maintained
4303 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4304 F:      drivers/memory/brcmstb_dpfe.c
4305
4306 BROADCOM STB NAND FLASH DRIVER
4307 M:      Brian Norris <computersforpeace@gmail.com>
4308 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4309 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4310 L:      linux-mtd@lists.infradead.org
4311 S:      Maintained
4312 F:      drivers/mtd/nand/raw/brcmnand/
4313 F:      include/linux/platform_data/brcmnand.h
4314
4315 BROADCOM STB PCIE DRIVER
4316 M:      Jim Quinlan <jim2101024@gmail.com>
4317 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4318 M:      Florian Fainelli <f.fainelli@gmail.com>
4319 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4320 L:      linux-pci@vger.kernel.org
4321 S:      Maintained
4322 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4323 F:      drivers/pci/controller/pcie-brcmstb.c
4324
4325 BROADCOM SYSTEMPORT ETHERNET DRIVER
4326 M:      Florian Fainelli <f.fainelli@gmail.com>
4327 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4328 L:      netdev@vger.kernel.org
4329 S:      Supported
4330 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4331 F:      drivers/net/ethernet/broadcom/unimac.h
4332 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4333
4334 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4335 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4336 M:      Prashant Sreedharan <prashant@broadcom.com>
4337 M:      Michael Chan <mchan@broadcom.com>
4338 L:      netdev@vger.kernel.org
4339 S:      Supported
4340 F:      drivers/net/ethernet/broadcom/tg3.*
4341
4342 BROADCOM VK DRIVER
4343 M:      Scott Branden <scott.branden@broadcom.com>
4344 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4345 S:      Supported
4346 F:      drivers/misc/bcm-vk/
4347 F:      include/uapi/linux/misc/bcm_vk.h
4348
4349 BROCADE BFA FC SCSI DRIVER
4350 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4351 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4352 L:      linux-scsi@vger.kernel.org
4353 S:      Supported
4354 F:      drivers/scsi/bfa/
4355
4356 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4357 M:      Rasesh Mody <rmody@marvell.com>
4358 M:      Sudarsana Kalluru <skalluru@marvell.com>
4359 M:      GR-Linux-NIC-Dev@marvell.com
4360 L:      netdev@vger.kernel.org
4361 S:      Supported
4362 F:      drivers/net/ethernet/brocade/bna/
4363
4364 BSG (block layer generic sg v4 driver)
4365 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4366 L:      linux-scsi@vger.kernel.org
4367 S:      Supported
4368 F:      block/bsg.c
4369 F:      include/linux/bsg.h
4370 F:      include/uapi/linux/bsg.h
4371
4372 BT87X AUDIO DRIVER
4373 M:      Clemens Ladisch <clemens@ladisch.de>
4374 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4375 S:      Maintained
4376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4377 F:      Documentation/sound/cards/bt87x.rst
4378 F:      sound/pci/bt87x.c
4379
4380 BT8XXGPIO DRIVER
4381 M:      Michael Buesch <m@bues.ch>
4382 S:      Maintained
4383 W:      http://bu3sch.de/btgpio.php
4384 F:      drivers/gpio/gpio-bt8xx.c
4385
4386 BTRFS FILE SYSTEM
4387 M:      Chris Mason <clm@fb.com>
4388 M:      Josef Bacik <josef@toxicpanda.com>
4389 M:      David Sterba <dsterba@suse.com>
4390 L:      linux-btrfs@vger.kernel.org
4391 S:      Maintained
4392 W:      https://btrfs.readthedocs.io
4393 W:      https://btrfs.wiki.kernel.org/
4394 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4395 C:      irc://irc.libera.chat/btrfs
4396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4397 F:      Documentation/filesystems/btrfs.rst
4398 F:      fs/btrfs/
4399 F:      include/linux/btrfs*
4400 F:      include/trace/events/btrfs.h
4401 F:      include/uapi/linux/btrfs*
4402
4403 BTTV VIDEO4LINUX DRIVER
4404 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4405 L:      linux-media@vger.kernel.org
4406 S:      Odd fixes
4407 W:      https://linuxtv.org
4408 T:      git git://linuxtv.org/media_tree.git
4409 F:      Documentation/driver-api/media/drivers/bttv*
4410 F:      drivers/media/pci/bt8xx/bttv*
4411
4412 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4413 M:      Chanwoo Choi <cw00.choi@samsung.com>
4414 L:      linux-pm@vger.kernel.org
4415 L:      linux-samsung-soc@vger.kernel.org
4416 S:      Maintained
4417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4418 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4419 F:      drivers/devfreq/exynos-bus.c
4420
4421 BUSLOGIC SCSI DRIVER
4422 M:      Khalid Aziz <khalid@gonehiking.org>
4423 L:      linux-scsi@vger.kernel.org
4424 S:      Maintained
4425 F:      drivers/scsi/BusLogic.*
4426 F:      drivers/scsi/FlashPoint.*
4427
4428 C-MEDIA CMI8788 DRIVER
4429 M:      Clemens Ladisch <clemens@ladisch.de>
4430 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4431 S:      Maintained
4432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4433 F:      sound/pci/oxygen/
4434
4435 C-SKY ARCHITECTURE
4436 M:      Guo Ren <guoren@kernel.org>
4437 L:      linux-csky@vger.kernel.org
4438 S:      Supported
4439 T:      git https://github.com/c-sky/csky-linux.git
4440 F:      Documentation/devicetree/bindings/csky/
4441 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4442 F:      Documentation/devicetree/bindings/timer/csky,*
4443 F:      arch/csky/
4444 F:      drivers/clocksource/timer-gx6605s.c
4445 F:      drivers/clocksource/timer-mp-csky.c
4446 F:      drivers/irqchip/irq-csky-*
4447 N:      csky
4448 K:      csky
4449
4450 CA8210 IEEE-802.15.4 RADIO DRIVER
4451 L:      linux-wpan@vger.kernel.org
4452 S:      Orphan
4453 W:      https://github.com/Cascoda/ca8210-linux.git
4454 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4455 F:      drivers/net/ieee802154/ca8210.c
4456
4457 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4458 M:      Damien Le Moal <damien.lemoal@wdc.com>
4459 L:      linux-riscv@lists.infradead.org
4460 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4461 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4462 F:      drivers/pinctrl/pinctrl-k210.c
4463
4464 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4465 M:      Damien Le Moal <damien.lemoal@wdc.com>
4466 L:      linux-kernel@vger.kernel.org
4467 L:      linux-riscv@lists.infradead.org
4468 S:      Maintained
4469 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4470 F:      drivers/reset/reset-k210.c
4471
4472 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4473 M:      Damien Le Moal <damien.lemoal@wdc.com>
4474 L:      linux-riscv@lists.infradead.org
4475 S:      Maintained
4476 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4477 F:      drivers/soc/canaan/
4478 F:      include/soc/canaan/
4479
4480 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4481 M:      David Howells <dhowells@redhat.com>
4482 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4483 S:      Supported
4484 F:      Documentation/filesystems/caching/cachefiles.rst
4485 F:      fs/cachefiles/
4486
4487 CADENCE MIPI-CSI2 BRIDGES
4488 M:      Maxime Ripard <mripard@kernel.org>
4489 L:      linux-media@vger.kernel.org
4490 S:      Maintained
4491 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4492 F:      drivers/media/platform/cadence/cdns-csi2*
4493
4494 CADENCE NAND DRIVER
4495 L:      linux-mtd@lists.infradead.org
4496 S:      Orphan
4497 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4498 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4499
4500 CADENCE USB3 DRD IP DRIVER
4501 M:      Peter Chen <peter.chen@kernel.org>
4502 M:      Pawel Laszczak <pawell@cadence.com>
4503 R:      Roger Quadros <rogerq@kernel.org>
4504 R:      Aswath Govindraju <a-govindraju@ti.com>
4505 L:      linux-usb@vger.kernel.org
4506 S:      Maintained
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4508 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4509 F:      drivers/usb/cdns3/
4510 X:      drivers/usb/cdns3/cdnsp*
4511
4512 CADENCE USBSSP DRD IP DRIVER
4513 M:      Pawel Laszczak <pawell@cadence.com>
4514 L:      linux-usb@vger.kernel.org
4515 S:      Maintained
4516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4517 F:      drivers/usb/cdns3/
4518 X:      drivers/usb/cdns3/cdns3*
4519
4520 CADET FM/AM RADIO RECEIVER DRIVER
4521 M:      Hans Verkuil <hverkuil@xs4all.nl>
4522 L:      linux-media@vger.kernel.org
4523 S:      Maintained
4524 W:      https://linuxtv.org
4525 T:      git git://linuxtv.org/media_tree.git
4526 F:      drivers/media/radio/radio-cadet*
4527
4528 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4529 L:      linux-media@vger.kernel.org
4530 S:      Orphan
4531 T:      git git://linuxtv.org/media_tree.git
4532 F:      Documentation/admin-guide/media/cafe_ccic*
4533 F:      drivers/media/platform/marvell/
4534
4535 CAIF NETWORK LAYER
4536 L:      netdev@vger.kernel.org
4537 S:      Orphan
4538 F:      Documentation/networking/caif/
4539 F:      drivers/net/caif/
4540 F:      include/net/caif/
4541 F:      include/uapi/linux/caif/
4542 F:      net/caif/
4543
4544 CAKE QDISC
4545 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4546 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4547 S:      Maintained
4548 F:      net/sched/sch_cake.c
4549
4550 CAN NETWORK DRIVERS
4551 M:      Wolfgang Grandegger <wg@grandegger.com>
4552 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4553 L:      linux-can@vger.kernel.org
4554 S:      Maintained
4555 W:      https://github.com/linux-can
4556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4558 F:      Documentation/devicetree/bindings/net/can/
4559 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4560 F:      drivers/net/can/
4561 F:      drivers/phy/phy-can-transceiver.c
4562 F:      include/linux/can/bittiming.h
4563 F:      include/linux/can/dev.h
4564 F:      include/linux/can/length.h
4565 F:      include/linux/can/platform/
4566 F:      include/linux/can/rx-offload.h
4567 F:      include/uapi/linux/can/error.h
4568 F:      include/uapi/linux/can/netlink.h
4569 F:      include/uapi/linux/can/vxcan.h
4570
4571 CAN NETWORK LAYER
4572 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4573 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4574 L:      linux-can@vger.kernel.org
4575 S:      Maintained
4576 W:      https://github.com/linux-can
4577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4579 F:      Documentation/networking/can.rst
4580 F:      include/linux/can/can-ml.h
4581 F:      include/linux/can/core.h
4582 F:      include/linux/can/skb.h
4583 F:      include/net/netns/can.h
4584 F:      include/uapi/linux/can.h
4585 F:      include/uapi/linux/can/bcm.h
4586 F:      include/uapi/linux/can/gw.h
4587 F:      include/uapi/linux/can/isotp.h
4588 F:      include/uapi/linux/can/raw.h
4589 F:      net/can/
4590
4591 CAN-J1939 NETWORK LAYER
4592 M:      Robin van der Gracht <robin@protonic.nl>
4593 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4594 R:      kernel@pengutronix.de
4595 L:      linux-can@vger.kernel.org
4596 S:      Maintained
4597 F:      Documentation/networking/j1939.rst
4598 F:      include/uapi/linux/can/j1939.h
4599 F:      net/can/j1939/
4600
4601 CAPABILITIES
4602 M:      Serge Hallyn <serge@hallyn.com>
4603 L:      linux-security-module@vger.kernel.org
4604 S:      Supported
4605 F:      include/linux/capability.h
4606 F:      include/uapi/linux/capability.h
4607 F:      kernel/capability.c
4608 F:      security/commoncap.c
4609
4610 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4611 M:      Kevin Tsai <ktsai@capellamicro.com>
4612 S:      Maintained
4613 F:      drivers/iio/light/cm*
4614
4615 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4616 M:      Christian Lamparter <chunkeey@googlemail.com>
4617 L:      linux-wireless@vger.kernel.org
4618 S:      Maintained
4619 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4620 F:      drivers/net/wireless/ath/carl9170/
4621
4622 CAVIUM I2C DRIVER
4623 M:      Robert Richter <rric@kernel.org>
4624 S:      Odd Fixes
4625 W:      http://www.marvell.com
4626 F:      drivers/i2c/busses/i2c-octeon*
4627 F:      drivers/i2c/busses/i2c-thunderx*
4628
4629 CAVIUM LIQUIDIO NETWORK DRIVER
4630 M:      Derek Chickles <dchickles@marvell.com>
4631 M:      Satanand Burla <sburla@marvell.com>
4632 M:      Felix Manlunas <fmanlunas@marvell.com>
4633 L:      netdev@vger.kernel.org
4634 S:      Supported
4635 W:      http://www.marvell.com
4636 F:      drivers/net/ethernet/cavium/liquidio/
4637
4638 CAVIUM MMC DRIVER
4639 M:      Robert Richter <rric@kernel.org>
4640 S:      Odd Fixes
4641 W:      http://www.marvell.com
4642 F:      drivers/mmc/host/cavium*
4643
4644 CAVIUM OCTEON-TX CRYPTO DRIVER
4645 M:      George Cherian <gcherian@marvell.com>
4646 L:      linux-crypto@vger.kernel.org
4647 S:      Supported
4648 W:      http://www.marvell.com
4649 F:      drivers/crypto/cavium/cpt/
4650
4651 CAVIUM THUNDERX2 ARM64 SOC
4652 M:      Robert Richter <rric@kernel.org>
4653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4654 S:      Odd Fixes
4655 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4656 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4657
4658 CBS/ETF/TAPRIO QDISCS
4659 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4660 S:      Maintained
4661 L:      netdev@vger.kernel.org
4662 F:      net/sched/sch_cbs.c
4663 F:      net/sched/sch_etf.c
4664 F:      net/sched/sch_taprio.c
4665
4666 CC2520 IEEE-802.15.4 RADIO DRIVER
4667 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4668 L:      linux-wpan@vger.kernel.org
4669 S:      Odd Fixes
4670 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4671 F:      drivers/net/ieee802154/cc2520.c
4672
4673 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4674 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4675 L:      linux-crypto@vger.kernel.org
4676 S:      Supported
4677 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4678 F:      drivers/crypto/ccree/
4679
4680 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4681 M:      Hadar Gat <hadar.gat@arm.com>
4682 L:      linux-crypto@vger.kernel.org
4683 S:      Supported
4684 F:      drivers/char/hw_random/cctrng.c
4685 F:      drivers/char/hw_random/cctrng.h
4686 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4687 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4688
4689 CEC FRAMEWORK
4690 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4691 L:      linux-media@vger.kernel.org
4692 S:      Supported
4693 W:      http://linuxtv.org
4694 T:      git git://linuxtv.org/media_tree.git
4695 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4696 F:      Documentation/devicetree/bindings/media/cec/cec-common.yaml
4697 F:      Documentation/driver-api/media/cec-core.rst
4698 F:      Documentation/userspace-api/media/cec
4699 F:      drivers/media/cec/
4700 F:      drivers/media/rc/keymaps/rc-cec.c
4701 F:      include/media/cec-notifier.h
4702 F:      include/media/cec.h
4703 F:      include/uapi/linux/cec-funcs.h
4704 F:      include/uapi/linux/cec.h
4705
4706 CEC GPIO DRIVER
4707 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4708 L:      linux-media@vger.kernel.org
4709 S:      Supported
4710 W:      http://linuxtv.org
4711 T:      git git://linuxtv.org/media_tree.git
4712 F:      Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
4713 F:      drivers/media/cec/platform/cec-gpio/
4714
4715 CELL BROADBAND ENGINE ARCHITECTURE
4716 M:      Arnd Bergmann <arnd@arndb.de>
4717 L:      linuxppc-dev@lists.ozlabs.org
4718 S:      Supported
4719 W:      http://www.ibm.com/developerworks/power/cell/
4720 F:      arch/powerpc/include/asm/cell*.h
4721 F:      arch/powerpc/include/asm/spu*.h
4722 F:      arch/powerpc/include/uapi/asm/spu*.h
4723 F:      arch/powerpc/platforms/cell/
4724
4725 CELLWISE CW2015 BATTERY DRIVER
4726 M:      Tobias Schrammm <t.schramm@manjaro.org>
4727 S:      Maintained
4728 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4729 F:      drivers/power/supply/cw2015_battery.c
4730
4731 CEPH COMMON CODE (LIBCEPH)
4732 M:      Ilya Dryomov <idryomov@gmail.com>
4733 M:      Xiubo Li <xiubli@redhat.com>
4734 R:      Jeff Layton <jlayton@kernel.org>
4735 L:      ceph-devel@vger.kernel.org
4736 S:      Supported
4737 W:      http://ceph.com/
4738 T:      git https://github.com/ceph/ceph-client.git
4739 F:      include/linux/ceph/
4740 F:      include/linux/crush/
4741 F:      net/ceph/
4742
4743 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4744 M:      Xiubo Li <xiubli@redhat.com>
4745 M:      Ilya Dryomov <idryomov@gmail.com>
4746 R:      Jeff Layton <jlayton@kernel.org>
4747 L:      ceph-devel@vger.kernel.org
4748 S:      Supported
4749 W:      http://ceph.com/
4750 T:      git https://github.com/ceph/ceph-client.git
4751 F:      Documentation/filesystems/ceph.rst
4752 F:      fs/ceph/
4753
4754 CERTIFICATE HANDLING
4755 M:      David Howells <dhowells@redhat.com>
4756 M:      David Woodhouse <dwmw2@infradead.org>
4757 L:      keyrings@vger.kernel.org
4758 S:      Maintained
4759 F:      Documentation/admin-guide/module-signing.rst
4760 F:      certs/
4761 F:      scripts/sign-file.c
4762 F:      tools/certs/
4763
4764 CFAG12864B LCD DRIVER
4765 M:      Miguel Ojeda <ojeda@kernel.org>
4766 S:      Maintained
4767 F:      drivers/auxdisplay/cfag12864b.c
4768 F:      include/linux/cfag12864b.h
4769
4770 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4771 M:      Miguel Ojeda <ojeda@kernel.org>
4772 S:      Maintained
4773 F:      drivers/auxdisplay/cfag12864bfb.c
4774 F:      include/linux/cfag12864b.h
4775
4776 CHAR and MISC DRIVERS
4777 M:      Arnd Bergmann <arnd@arndb.de>
4778 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4779 S:      Supported
4780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4781 F:      drivers/char/
4782 F:      drivers/misc/
4783 F:      include/linux/miscdevice.h
4784 X:      drivers/char/agp/
4785 X:      drivers/char/hw_random/
4786 X:      drivers/char/ipmi/
4787 X:      drivers/char/random.c
4788 X:      drivers/char/tpm/
4789
4790 CHECKPATCH
4791 M:      Andy Whitcroft <apw@canonical.com>
4792 M:      Joe Perches <joe@perches.com>
4793 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4794 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4795 S:      Maintained
4796 F:      scripts/checkpatch.pl
4797
4798 CHECKPATCH DOCUMENTATION
4799 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4800 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4801 R:      Joe Perches <joe@perches.com>
4802 S:      Maintained
4803 F:      Documentation/dev-tools/checkpatch.rst
4804
4805 CHINESE DOCUMENTATION
4806 M:      Alex Shi <alexs@kernel.org>
4807 M:      Yanteng Si <siyanteng@loongson.cn>
4808 S:      Maintained
4809 F:      Documentation/translations/zh_CN/
4810
4811 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4812 M:      Peter Chen <peter.chen@kernel.org>
4813 L:      linux-usb@vger.kernel.org
4814 S:      Maintained
4815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4816 F:      drivers/usb/chipidea/
4817
4818 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4819 M:      Hans de Goede <hdegoede@redhat.com>
4820 L:      linux-input@vger.kernel.org
4821 S:      Maintained
4822 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4823 F:      drivers/input/touchscreen/chipone_icn8318.c
4824
4825 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4826 M:      Hans de Goede <hdegoede@redhat.com>
4827 L:      linux-input@vger.kernel.org
4828 S:      Maintained
4829 F:      drivers/input/touchscreen/chipone_icn8505.c
4830
4831 CHROME HARDWARE PLATFORM SUPPORT
4832 M:      Benson Leung <bleung@chromium.org>
4833 L:      chrome-platform@lists.linux.dev
4834 S:      Maintained
4835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4836 F:      drivers/platform/chrome/
4837
4838 CHROMEOS EC CODEC DRIVER
4839 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4840 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4841 R:      Guenter Roeck <groeck@chromium.org>
4842 L:      chrome-platform@lists.linux.dev
4843 S:      Maintained
4844 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4845 F:      sound/soc/codecs/cros_ec_codec.*
4846
4847 CHROMEOS EC UART DRIVER
4848 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4849 R:      Benson Leung <bleung@chromium.org>
4850 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4851 S:      Maintained
4852 F:      drivers/platform/chrome/cros_ec_uart.c
4853
4854 CHROMEOS EC SUBDRIVERS
4855 M:      Benson Leung <bleung@chromium.org>
4856 R:      Guenter Roeck <groeck@chromium.org>
4857 L:      chrome-platform@lists.linux.dev
4858 S:      Maintained
4859 F:      drivers/power/supply/cros_usbpd-charger.c
4860 N:      cros_ec
4861 N:      cros-ec
4862
4863 CHROMEOS EC USB TYPE-C DRIVER
4864 M:      Prashant Malani <pmalani@chromium.org>
4865 L:      chrome-platform@lists.linux.dev
4866 S:      Maintained
4867 F:      drivers/platform/chrome/cros_ec_typec.*
4868 F:      drivers/platform/chrome/cros_typec_switch.c
4869 F:      drivers/platform/chrome/cros_typec_vdm.*
4870
4871 CHROMEOS EC USB PD NOTIFY DRIVER
4872 M:      Prashant Malani <pmalani@chromium.org>
4873 L:      chrome-platform@lists.linux.dev
4874 S:      Maintained
4875 F:      drivers/platform/chrome/cros_usbpd_notify.c
4876 F:      include/linux/platform_data/cros_usbpd_notify.h
4877
4878 CHROMEOS HPS DRIVER
4879 M:      Dan Callaghan <dcallagh@chromium.org>
4880 R:      Sami Kyöstilä <skyostil@chromium.org>
4881 S:      Maintained
4882 F:      drivers/platform/chrome/cros_hps_i2c.c
4883
4884 CHRONTEL CH7322 CEC DRIVER
4885 M:      Joe Tessler <jrt@google.com>
4886 L:      linux-media@vger.kernel.org
4887 S:      Maintained
4888 T:      git git://linuxtv.org/media_tree.git
4889 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4890 F:      drivers/media/cec/i2c/ch7322.c
4891
4892 CIRRUS LOGIC AUDIO CODEC DRIVERS
4893 M:      James Schulman <james.schulman@cirrus.com>
4894 M:      David Rhodes <david.rhodes@cirrus.com>
4895 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4896 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4897 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4898 L:      patches@opensource.cirrus.com
4899 S:      Maintained
4900 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4901 F:      include/dt-bindings/sound/cs*
4902 F:      sound/pci/hda/cs*
4903 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4904 F:      sound/soc/codecs/cs*
4905
4906 CIRRUS LOGIC DSP FIRMWARE DRIVER
4907 M:      Simon Trimmer <simont@opensource.cirrus.com>
4908 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4909 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4910 L:      patches@opensource.cirrus.com
4911 S:      Supported
4912 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4913 T:      git https://github.com/CirrusLogic/linux-drivers.git
4914 F:      drivers/firmware/cirrus/*
4915 F:      include/linux/firmware/cirrus/*
4916
4917 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4918 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4919 L:      netdev@vger.kernel.org
4920 S:      Maintained
4921 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4922
4923 CIRRUS LOGIC LOCHNAGAR DRIVER
4924 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4925 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4926 L:      patches@opensource.cirrus.com
4927 S:      Supported
4928 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4929 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4930 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4931 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4932 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4933 F:      Documentation/hwmon/lochnagar.rst
4934 F:      drivers/clk/clk-lochnagar.c
4935 F:      drivers/hwmon/lochnagar-hwmon.c
4936 F:      drivers/mfd/lochnagar-i2c.c
4937 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4938 F:      drivers/regulator/lochnagar-regulator.c
4939 F:      include/dt-bindings/clock/lochnagar.h
4940 F:      include/dt-bindings/pinctrl/lochnagar.h
4941 F:      include/linux/mfd/lochnagar*
4942 F:      sound/soc/codecs/lochnagar-sc.c
4943
4944 CIRRUS LOGIC MADERA CODEC DRIVERS
4945 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4946 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4947 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4948 L:      patches@opensource.cirrus.com
4949 S:      Supported
4950 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4951 T:      git https://github.com/CirrusLogic/linux-drivers.git
4952 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4953 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4954 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4955 F:      drivers/gpio/gpio-madera*
4956 F:      drivers/irqchip/irq-madera*
4957 F:      drivers/mfd/cs47l*
4958 F:      drivers/mfd/madera*
4959 F:      drivers/pinctrl/cirrus/*
4960 F:      include/dt-bindings/sound/madera*
4961 F:      include/linux/irqchip/irq-madera*
4962 F:      include/linux/mfd/madera/*
4963 F:      include/sound/madera*
4964 F:      sound/soc/codecs/cs47l*
4965 F:      sound/soc/codecs/madera*
4966
4967 CISCO FCOE HBA DRIVER
4968 M:      Satish Kharat <satishkh@cisco.com>
4969 M:      Sesidhar Baddela <sebaddel@cisco.com>
4970 M:      Karan Tilak Kumar <kartilak@cisco.com>
4971 L:      linux-scsi@vger.kernel.org
4972 S:      Supported
4973 F:      drivers/scsi/fnic/
4974
4975 CISCO SCSI HBA DRIVER
4976 M:      Karan Tilak Kumar <kartilak@cisco.com>
4977 M:      Sesidhar Baddela <sebaddel@cisco.com>
4978 L:      linux-scsi@vger.kernel.org
4979 S:      Supported
4980 F:      drivers/scsi/snic/
4981
4982 CISCO VIC ETHERNET NIC DRIVER
4983 M:      Christian Benvenuti <benve@cisco.com>
4984 M:      Satish Kharat <satishkh@cisco.com>
4985 S:      Supported
4986 F:      drivers/net/ethernet/cisco/enic/
4987
4988 CISCO VIC LOW LATENCY NIC DRIVER
4989 M:      Christian Benvenuti <benve@cisco.com>
4990 M:      Nelson Escobar <neescoba@cisco.com>
4991 S:      Supported
4992 F:      drivers/infiniband/hw/usnic/
4993
4994 CLANG-FORMAT FILE
4995 M:      Miguel Ojeda <ojeda@kernel.org>
4996 S:      Maintained
4997 F:      .clang-format
4998
4999 CLANG/LLVM BUILD SUPPORT
5000 M:      Nathan Chancellor <nathan@kernel.org>
5001 M:      Nick Desaulniers <ndesaulniers@google.com>
5002 R:      Tom Rix <trix@redhat.com>
5003 L:      llvm@lists.linux.dev
5004 S:      Supported
5005 W:      https://clangbuiltlinux.github.io/
5006 B:      https://github.com/ClangBuiltLinux/linux/issues
5007 C:      irc://irc.libera.chat/clangbuiltlinux
5008 F:      Documentation/kbuild/llvm.rst
5009 F:      include/linux/compiler-clang.h
5010 F:      scripts/Makefile.clang
5011 F:      scripts/clang-tools/
5012 K:      \b(?i:clang|llvm)\b
5013
5014 CLANG CONTROL FLOW INTEGRITY SUPPORT
5015 M:      Sami Tolvanen <samitolvanen@google.com>
5016 M:      Kees Cook <keescook@chromium.org>
5017 R:      Nathan Chancellor <nathan@kernel.org>
5018 R:      Nick Desaulniers <ndesaulniers@google.com>
5019 L:      llvm@lists.linux.dev
5020 S:      Supported
5021 B:      https://github.com/ClangBuiltLinux/linux/issues
5022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5023 F:      include/linux/cfi.h
5024 F:      kernel/cfi.c
5025
5026 CLK API
5027 M:      Russell King <linux@armlinux.org.uk>
5028 L:      linux-clk@vger.kernel.org
5029 S:      Maintained
5030 F:      include/linux/clk.h
5031
5032 CLOCKSOURCE, CLOCKEVENT DRIVERS
5033 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5034 M:      Thomas Gleixner <tglx@linutronix.de>
5035 L:      linux-kernel@vger.kernel.org
5036 S:      Supported
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5038 F:      Documentation/devicetree/bindings/timer/
5039 F:      drivers/clocksource/
5040
5041 CMPC ACPI DRIVER
5042 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5043 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5044 L:      platform-driver-x86@vger.kernel.org
5045 S:      Supported
5046 F:      drivers/platform/x86/classmate-laptop.c
5047
5048 COBALT MEDIA DRIVER
5049 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5050 L:      linux-media@vger.kernel.org
5051 S:      Supported
5052 W:      https://linuxtv.org
5053 T:      git git://linuxtv.org/media_tree.git
5054 F:      drivers/media/pci/cobalt/
5055
5056 COCCINELLE/Semantic Patches (SmPL)
5057 M:      Julia Lawall <Julia.Lawall@inria.fr>
5058 M:      Nicolas Palix <nicolas.palix@imag.fr>
5059 L:      cocci@inria.fr (moderated for non-subscribers)
5060 S:      Supported
5061 W:      https://coccinelle.gitlabpages.inria.fr/website/
5062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5063 F:      Documentation/dev-tools/coccinelle.rst
5064 F:      scripts/coccicheck
5065 F:      scripts/coccinelle/
5066
5067 CODA FILE SYSTEM
5068 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5069 M:      coda@cs.cmu.edu
5070 L:      codalist@coda.cs.cmu.edu
5071 S:      Maintained
5072 W:      http://www.coda.cs.cmu.edu/
5073 F:      Documentation/filesystems/coda.rst
5074 F:      fs/coda/
5075 F:      include/linux/coda*.h
5076 F:      include/uapi/linux/coda*.h
5077
5078 CODA V4L2 MEM2MEM DRIVER
5079 M:      Philipp Zabel <p.zabel@pengutronix.de>
5080 L:      linux-media@vger.kernel.org
5081 S:      Maintained
5082 F:      Documentation/devicetree/bindings/media/coda.yaml
5083 F:      drivers/media/platform/chips-media/
5084
5085 CODE OF CONDUCT
5086 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5087 S:      Supported
5088 F:      Documentation/process/code-of-conduct-interpretation.rst
5089 F:      Documentation/process/code-of-conduct.rst
5090
5091 COMEDI DRIVERS
5092 M:      Ian Abbott <abbotti@mev.co.uk>
5093 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5094 S:      Odd Fixes
5095 F:      drivers/comedi/
5096 F:      include/linux/comedi/
5097 F:      include/uapi/linux/comedi.h
5098
5099 COMMON CLK FRAMEWORK
5100 M:      Michael Turquette <mturquette@baylibre.com>
5101 M:      Stephen Boyd <sboyd@kernel.org>
5102 L:      linux-clk@vger.kernel.org
5103 S:      Maintained
5104 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5106 F:      Documentation/devicetree/bindings/clock/
5107 F:      drivers/clk/
5108 F:      include/dt-bindings/clock/
5109 F:      include/linux/clk-pr*
5110 F:      include/linux/clk/
5111 F:      include/linux/of_clk.h
5112 X:      drivers/clk/clkdev.c
5113
5114 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5115 M:      Steve French <sfrench@samba.org>
5116 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5117 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5118 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5119 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5120 L:      linux-cifs@vger.kernel.org
5121 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5122 S:      Supported
5123 W:      https://wiki.samba.org/index.php/LinuxCIFS
5124 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5125 F:      Documentation/admin-guide/cifs/
5126 F:      fs/cifs/
5127 F:      fs/smbfs_common/
5128 F:      include/uapi/linux/cifs
5129
5130 COMPACTPCI HOTPLUG CORE
5131 M:      Scott Murray <scott@spiteful.org>
5132 L:      linux-pci@vger.kernel.org
5133 S:      Maintained
5134 F:      drivers/pci/hotplug/cpci_hotplug*
5135
5136 COMPACTPCI HOTPLUG GENERIC DRIVER
5137 M:      Scott Murray <scott@spiteful.org>
5138 L:      linux-pci@vger.kernel.org
5139 S:      Maintained
5140 F:      drivers/pci/hotplug/cpcihp_generic.c
5141
5142 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5143 M:      Scott Murray <scott@spiteful.org>
5144 L:      linux-pci@vger.kernel.org
5145 S:      Maintained
5146 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5147
5148 COMPAL LAPTOP SUPPORT
5149 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5150 L:      platform-driver-x86@vger.kernel.org
5151 S:      Maintained
5152 F:      drivers/platform/x86/compal-laptop.c
5153
5154 COMPILER ATTRIBUTES
5155 M:      Miguel Ojeda <ojeda@kernel.org>
5156 R:      Nick Desaulniers <ndesaulniers@google.com>
5157 S:      Maintained
5158 F:      include/linux/compiler_attributes.h
5159
5160 COMPUTE EXPRESS LINK (CXL)
5161 M:      Alison Schofield <alison.schofield@intel.com>
5162 M:      Vishal Verma <vishal.l.verma@intel.com>
5163 M:      Ira Weiny <ira.weiny@intel.com>
5164 M:      Ben Widawsky <bwidawsk@kernel.org>
5165 M:      Dan Williams <dan.j.williams@intel.com>
5166 L:      linux-cxl@vger.kernel.org
5167 S:      Maintained
5168 F:      drivers/cxl/
5169 F:      include/uapi/linux/cxl_mem.h
5170
5171 CONEXANT ACCESSRUNNER USB DRIVER
5172 L:      accessrunner-general@lists.sourceforge.net
5173 S:      Orphan
5174 W:      http://accessrunner.sourceforge.net/
5175 F:      drivers/usb/atm/cxacru.c
5176
5177 CONFIGFS
5178 M:      Joel Becker <jlbec@evilplan.org>
5179 M:      Christoph Hellwig <hch@lst.de>
5180 S:      Supported
5181 T:      git git://git.infradead.org/users/hch/configfs.git
5182 F:      fs/configfs/
5183 F:      include/linux/configfs.h
5184 F:      samples/configfs/
5185
5186 CONSOLE SUBSYSTEM
5187 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5188 S:      Supported
5189 F:      drivers/video/console/
5190 F:      include/linux/console*
5191
5192 CONTEXT TRACKING
5193 M:      Frederic Weisbecker <frederic@kernel.org>
5194 M:      "Paul E. McKenney" <paulmck@kernel.org>
5195 S:      Maintained
5196 F:      kernel/context_tracking.c
5197 F:      include/linux/context_tracking*
5198
5199 CONTROL GROUP (CGROUP)
5200 M:      Tejun Heo <tj@kernel.org>
5201 M:      Zefan Li <lizefan.x@bytedance.com>
5202 M:      Johannes Weiner <hannes@cmpxchg.org>
5203 L:      cgroups@vger.kernel.org
5204 S:      Maintained
5205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5206 F:      Documentation/admin-guide/cgroup-v1/
5207 F:      Documentation/admin-guide/cgroup-v2.rst
5208 F:      include/linux/cgroup*
5209 F:      kernel/cgroup/
5210 F:      tools/testing/selftests/cgroup/
5211
5212 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5213 M:      Tejun Heo <tj@kernel.org>
5214 M:      Josef Bacik <josef@toxicpanda.com>
5215 M:      Jens Axboe <axboe@kernel.dk>
5216 L:      cgroups@vger.kernel.org
5217 L:      linux-block@vger.kernel.org
5218 T:      git git://git.kernel.dk/linux-block
5219 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5220 F:      block/bfq-cgroup.c
5221 F:      block/blk-cgroup.c
5222 F:      block/blk-iocost.c
5223 F:      block/blk-iolatency.c
5224 F:      block/blk-throttle.c
5225 F:      include/linux/blk-cgroup.h
5226
5227 CONTROL GROUP - CPUSET
5228 M:      Waiman Long <longman@redhat.com>
5229 M:      Zefan Li <lizefan.x@bytedance.com>
5230 L:      cgroups@vger.kernel.org
5231 S:      Maintained
5232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5233 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5234 F:      include/linux/cpuset.h
5235 F:      kernel/cgroup/cpuset.c
5236
5237 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5238 M:      Johannes Weiner <hannes@cmpxchg.org>
5239 M:      Michal Hocko <mhocko@kernel.org>
5240 M:      Roman Gushchin <roman.gushchin@linux.dev>
5241 M:      Shakeel Butt <shakeelb@google.com>
5242 R:      Muchun Song <muchun.song@linux.dev>
5243 L:      cgroups@vger.kernel.org
5244 L:      linux-mm@kvack.org
5245 S:      Maintained
5246 F:      mm/memcontrol.c
5247 F:      mm/swap_cgroup.c
5248 F:      tools/testing/selftests/cgroup/memcg_protection.m
5249 F:      tools/testing/selftests/cgroup/test_kmem.c
5250 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5251
5252 CORETEMP HARDWARE MONITORING DRIVER
5253 M:      Fenghua Yu <fenghua.yu@intel.com>
5254 L:      linux-hwmon@vger.kernel.org
5255 S:      Maintained
5256 F:      Documentation/hwmon/coretemp.rst
5257 F:      drivers/hwmon/coretemp.c
5258
5259 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5260 M:      Marius Zachmann <mail@mariuszachmann.de>
5261 L:      linux-hwmon@vger.kernel.org
5262 S:      Maintained
5263 F:      drivers/hwmon/corsair-cpro.c
5264
5265 CORSAIR-PSU HARDWARE MONITOR DRIVER
5266 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5267 L:      linux-hwmon@vger.kernel.org
5268 S:      Maintained
5269 F:      Documentation/hwmon/corsair-psu.rst
5270 F:      drivers/hwmon/corsair-psu.c
5271
5272 COUNTER SUBSYSTEM
5273 M:      William Breathitt Gray <william.gray@linaro.org>
5274 L:      linux-iio@vger.kernel.org
5275 S:      Maintained
5276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5277 F:      Documentation/ABI/testing/sysfs-bus-counter
5278 F:      Documentation/driver-api/generic-counter.rst
5279 F:      drivers/counter/
5280 F:      include/linux/counter.h
5281 F:      include/uapi/linux/counter.h
5282 F:      tools/counter/
5283
5284 CP2615 I2C DRIVER
5285 M:      Bence Csókás <bence98@sch.bme.hu>
5286 S:      Maintained
5287 F:      drivers/i2c/busses/i2c-cp2615.c
5288
5289 CPMAC ETHERNET DRIVER
5290 M:      Florian Fainelli <f.fainelli@gmail.com>
5291 L:      netdev@vger.kernel.org
5292 S:      Maintained
5293 F:      drivers/net/ethernet/ti/cpmac.c
5294
5295 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5296 M:      Viresh Kumar <viresh.kumar@linaro.org>
5297 M:      Sudeep Holla <sudeep.holla@arm.com>
5298 L:      linux-pm@vger.kernel.org
5299 S:      Maintained
5300 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5301 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5302
5303 CPU FREQUENCY SCALING FRAMEWORK
5304 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5305 M:      Viresh Kumar <viresh.kumar@linaro.org>
5306 L:      linux-pm@vger.kernel.org
5307 S:      Maintained
5308 B:      https://bugzilla.kernel.org
5309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5311 F:      Documentation/admin-guide/pm/cpufreq.rst
5312 F:      Documentation/admin-guide/pm/intel_pstate.rst
5313 F:      Documentation/cpu-freq/
5314 F:      Documentation/devicetree/bindings/cpufreq/
5315 F:      drivers/cpufreq/
5316 F:      include/linux/cpufreq.h
5317 F:      include/linux/sched/cpufreq.h
5318 F:      kernel/sched/cpufreq*.c
5319 F:      tools/testing/selftests/cpufreq/
5320
5321 CPU IDLE TIME MANAGEMENT FRAMEWORK
5322 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5323 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5324 L:      linux-pm@vger.kernel.org
5325 S:      Maintained
5326 B:      https://bugzilla.kernel.org
5327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5328 F:      Documentation/admin-guide/pm/cpuidle.rst
5329 F:      Documentation/driver-api/pm/cpuidle.rst
5330 F:      drivers/cpuidle/
5331 F:      include/linux/cpuidle.h
5332
5333 CPU POWER MONITORING SUBSYSTEM
5334 M:      Thomas Renninger <trenn@suse.com>
5335 M:      Shuah Khan <shuah@kernel.org>
5336 M:      Shuah Khan <skhan@linuxfoundation.org>
5337 L:      linux-pm@vger.kernel.org
5338 S:      Maintained
5339 F:      tools/power/cpupower/
5340
5341 CPUID/MSR DRIVER
5342 M:      "H. Peter Anvin" <hpa@zytor.com>
5343 S:      Maintained
5344 F:      arch/x86/kernel/cpuid.c
5345 F:      arch/x86/kernel/msr.c
5346
5347 CPUIDLE DRIVER - ARM BIG LITTLE
5348 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5349 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5350 L:      linux-pm@vger.kernel.org
5351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5352 S:      Maintained
5353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5354 F:      drivers/cpuidle/cpuidle-big_little.c
5355
5356 CPUIDLE DRIVER - ARM EXYNOS
5357 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5358 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5359 M:      Kukjin Kim <kgene@kernel.org>
5360 L:      linux-pm@vger.kernel.org
5361 L:      linux-samsung-soc@vger.kernel.org
5362 S:      Supported
5363 F:      arch/arm/mach-exynos/pm.c
5364 F:      drivers/cpuidle/cpuidle-exynos.c
5365 F:      include/linux/platform_data/cpuidle-exynos.h
5366
5367 CPUIDLE DRIVER - ARM PSCI
5368 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5369 M:      Sudeep Holla <sudeep.holla@arm.com>
5370 L:      linux-pm@vger.kernel.org
5371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5372 S:      Supported
5373 F:      drivers/cpuidle/cpuidle-psci.c
5374
5375 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5376 M:      Ulf Hansson <ulf.hansson@linaro.org>
5377 L:      linux-pm@vger.kernel.org
5378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5379 S:      Supported
5380 F:      drivers/cpuidle/cpuidle-psci.h
5381 F:      drivers/cpuidle/cpuidle-psci-domain.c
5382
5383 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5384 M:      Ulf Hansson <ulf.hansson@linaro.org>
5385 L:      linux-pm@vger.kernel.org
5386 S:      Supported
5387 F:      drivers/cpuidle/dt_idle_genpd.c
5388 F:      drivers/cpuidle/dt_idle_genpd.h
5389
5390 CPUIDLE DRIVER - RISC-V SBI
5391 M:      Anup Patel <anup@brainfault.org>
5392 L:      linux-pm@vger.kernel.org
5393 L:      linux-riscv@lists.infradead.org
5394 S:      Maintained
5395 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5396
5397 CRAMFS FILESYSTEM
5398 M:      Nicolas Pitre <nico@fluxnic.net>
5399 S:      Maintained
5400 F:      Documentation/filesystems/cramfs.rst
5401 F:      fs/cramfs/
5402
5403 CREATIVE SB0540
5404 M:      Bastien Nocera <hadess@hadess.net>
5405 L:      linux-input@vger.kernel.org
5406 S:      Maintained
5407 F:      drivers/hid/hid-creative-sb0540.c
5408
5409 CRYPTO API
5410 M:      Herbert Xu <herbert@gondor.apana.org.au>
5411 M:      "David S. Miller" <davem@davemloft.net>
5412 L:      linux-crypto@vger.kernel.org
5413 S:      Maintained
5414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5416 F:      Documentation/crypto/
5417 F:      Documentation/devicetree/bindings/crypto/
5418 F:      arch/*/crypto/
5419 F:      crypto/
5420 F:      drivers/crypto/
5421 F:      include/crypto/
5422 F:      include/linux/crypto*
5423 F:      lib/crypto/
5424
5425 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5426 M:      Neil Horman <nhorman@tuxdriver.com>
5427 L:      linux-crypto@vger.kernel.org
5428 S:      Maintained
5429 F:      crypto/ansi_cprng.c
5430 F:      crypto/rng.c
5431
5432 CS3308 MEDIA DRIVER
5433 M:      Hans Verkuil <hverkuil@xs4all.nl>
5434 L:      linux-media@vger.kernel.org
5435 S:      Odd Fixes
5436 W:      http://linuxtv.org
5437 T:      git git://linuxtv.org/media_tree.git
5438 F:      drivers/media/i2c/cs3308.c
5439
5440 CS5535 Audio ALSA driver
5441 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5442 S:      Maintained
5443 F:      sound/pci/cs5535audio/
5444
5445 CTU CAN FD DRIVER
5446 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5447 M:      Ondrej Ille <ondrej.ille@gmail.com>
5448 L:      linux-can@vger.kernel.org
5449 S:      Maintained
5450 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5451 F:      drivers/net/can/ctucanfd/
5452
5453 CW1200 WLAN driver
5454 M:      Solomon Peachy <pizza@shaftnet.org>
5455 S:      Maintained
5456 F:      drivers/net/wireless/st/cw1200/
5457
5458 CX18 VIDEO4LINUX DRIVER
5459 M:      Andy Walls <awalls@md.metrocast.net>
5460 L:      linux-media@vger.kernel.org
5461 S:      Maintained
5462 W:      https://linuxtv.org
5463 T:      git git://linuxtv.org/media_tree.git
5464 F:      drivers/media/pci/cx18/
5465 F:      include/uapi/linux/ivtv*
5466
5467 CX2341X MPEG ENCODER HELPER MODULE
5468 M:      Hans Verkuil <hverkuil@xs4all.nl>
5469 L:      linux-media@vger.kernel.org
5470 S:      Maintained
5471 W:      https://linuxtv.org
5472 T:      git git://linuxtv.org/media_tree.git
5473 F:      drivers/media/common/cx2341x*
5474 F:      include/media/drv-intf/cx2341x.h
5475
5476 CX24120 MEDIA DRIVER
5477 M:      Jemma Denson <jdenson@gmail.com>
5478 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5479 L:      linux-media@vger.kernel.org
5480 S:      Maintained
5481 W:      https://linuxtv.org
5482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5483 F:      drivers/media/dvb-frontends/cx24120*
5484
5485 CX88 VIDEO4LINUX DRIVER
5486 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5487 L:      linux-media@vger.kernel.org
5488 S:      Odd fixes
5489 W:      https://linuxtv.org
5490 T:      git git://linuxtv.org/media_tree.git
5491 F:      Documentation/driver-api/media/drivers/cx88*
5492 F:      drivers/media/pci/cx88/
5493
5494 CXD2820R MEDIA DRIVER
5495 M:      Antti Palosaari <crope@iki.fi>
5496 L:      linux-media@vger.kernel.org
5497 S:      Maintained
5498 W:      https://linuxtv.org
5499 W:      http://palosaari.fi/linux/
5500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5501 T:      git git://linuxtv.org/anttip/media_tree.git
5502 F:      drivers/media/dvb-frontends/cxd2820r*
5503
5504 CXGB3 ETHERNET DRIVER (CXGB3)
5505 M:      Raju Rangoju <rajur@chelsio.com>
5506 L:      netdev@vger.kernel.org
5507 S:      Supported
5508 W:      http://www.chelsio.com
5509 F:      drivers/net/ethernet/chelsio/cxgb3/
5510
5511 CXGB3 ISCSI DRIVER (CXGB3I)
5512 M:      Varun Prakash <varun@chelsio.com>
5513 L:      linux-scsi@vger.kernel.org
5514 S:      Supported
5515 W:      http://www.chelsio.com
5516 F:      drivers/scsi/cxgbi/cxgb3i
5517
5518 CXGB4 CRYPTO DRIVER (chcr)
5519 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5520 L:      linux-crypto@vger.kernel.org
5521 S:      Supported
5522 W:      http://www.chelsio.com
5523 F:      drivers/crypto/chelsio
5524
5525 CXGB4 INLINE CRYPTO DRIVER
5526 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5527 L:      netdev@vger.kernel.org
5528 S:      Supported
5529 W:      http://www.chelsio.com
5530 F:      drivers/net/ethernet/chelsio/inline_crypto/
5531
5532 CXGB4 ETHERNET DRIVER (CXGB4)
5533 M:      Raju Rangoju <rajur@chelsio.com>
5534 L:      netdev@vger.kernel.org
5535 S:      Supported
5536 W:      http://www.chelsio.com
5537 F:      drivers/net/ethernet/chelsio/cxgb4/
5538
5539 CXGB4 ISCSI DRIVER (CXGB4I)
5540 M:      Varun Prakash <varun@chelsio.com>
5541 L:      linux-scsi@vger.kernel.org
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/scsi/cxgbi/cxgb4i
5545
5546 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5547 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5548 L:      linux-rdma@vger.kernel.org
5549 S:      Supported
5550 W:      http://www.openfabrics.org
5551 F:      drivers/infiniband/hw/cxgb4/
5552 F:      include/uapi/rdma/cxgb4-abi.h
5553
5554 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5555 M:      Raju Rangoju <rajur@chelsio.com>
5556 L:      netdev@vger.kernel.org
5557 S:      Supported
5558 W:      http://www.chelsio.com
5559 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5560
5561 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5562 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5563 M:      Andrew Donnellan <ajd@linux.ibm.com>
5564 L:      linuxppc-dev@lists.ozlabs.org
5565 S:      Supported
5566 F:      Documentation/ABI/testing/sysfs-class-cxl
5567 F:      Documentation/powerpc/cxl.rst
5568 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5569 F:      drivers/misc/cxl/
5570 F:      include/misc/cxl*
5571 F:      include/uapi/misc/cxl.h
5572
5573 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5574 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5575 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5576 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5577 L:      linux-scsi@vger.kernel.org
5578 S:      Supported
5579 F:      Documentation/powerpc/cxlflash.rst
5580 F:      drivers/scsi/cxlflash/
5581 F:      include/uapi/scsi/cxlflash_ioctl.h
5582
5583 CYBERPRO FB DRIVER
5584 M:      Russell King <linux@armlinux.org.uk>
5585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5586 S:      Maintained
5587 W:      http://www.armlinux.org.uk/
5588 F:      drivers/video/fbdev/cyber2000fb.*
5589
5590 CYCLADES PC300 DRIVER
5591 S:      Orphan
5592 F:      drivers/net/wan/pc300*
5593
5594 CYPRESS_FIRMWARE MEDIA DRIVER
5595 M:      Antti Palosaari <crope@iki.fi>
5596 L:      linux-media@vger.kernel.org
5597 S:      Maintained
5598 W:      https://linuxtv.org
5599 W:      http://palosaari.fi/linux/
5600 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5601 T:      git git://linuxtv.org/anttip/media_tree.git
5602 F:      drivers/media/common/cypress_firmware*
5603
5604 CYPRESS CY8C95X0 PINCTRL DRIVER
5605 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5606 L:      linux-gpio@vger.kernel.org
5607 S:      Maintained
5608 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5609
5610 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5611 M:      Linus Walleij <linus.walleij@linaro.org>
5612 L:      linux-input@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/input/touchscreen/cy8ctma140.c
5615
5616 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5617 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5618 L:      linux-input@vger.kernel.org
5619 S:      Maintained
5620 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5621 F:      drivers/input/keyboard/cypress-sf.c
5622
5623 CYTTSP TOUCHSCREEN DRIVER
5624 M:      Linus Walleij <linus.walleij@linaro.org>
5625 L:      linux-input@vger.kernel.org
5626 S:      Maintained
5627 F:      drivers/input/touchscreen/cyttsp*
5628
5629 D-LINK DIR-685 TOUCHKEYS DRIVER
5630 M:      Linus Walleij <linus.walleij@linaro.org>
5631 L:      linux-input@vger.kernel.org
5632 S:      Supported
5633 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5634
5635 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5636 M:      Joshua Kinard <kumba@gentoo.org>
5637 S:      Maintained
5638 F:      drivers/rtc/rtc-ds1685.c
5639 F:      include/linux/rtc/ds1685.h
5640
5641 DAMA SLAVE for AX.25
5642 M:      Joerg Reuter <jreuter@yaina.de>
5643 L:      linux-hams@vger.kernel.org
5644 S:      Maintained
5645 W:      http://yaina.de/jreuter/
5646 W:      http://www.qsl.net/dl1bke/
5647 F:      net/ax25/af_ax25.c
5648 F:      net/ax25/ax25_dev.c
5649 F:      net/ax25/ax25_ds_*
5650 F:      net/ax25/ax25_in.c
5651 F:      net/ax25/ax25_out.c
5652 F:      net/ax25/ax25_timer.c
5653 F:      net/ax25/sysctl_net_ax25.c
5654
5655 DATA ACCESS MONITOR
5656 M:      SeongJae Park <sj@kernel.org>
5657 L:      damon@lists.linux.dev
5658 L:      linux-mm@kvack.org
5659 S:      Maintained
5660 W:      https://damonitor.github.io
5661 P:      Documentation/mm/damon/maintainer-profile.rst
5662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
5663 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
5664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
5665 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5666 F:      Documentation/admin-guide/mm/damon/
5667 F:      Documentation/mm/damon/
5668 F:      include/linux/damon.h
5669 F:      include/trace/events/damon.h
5670 F:      mm/damon/
5671 F:      tools/testing/selftests/damon/
5672
5673 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5674 L:      netdev@vger.kernel.org
5675 S:      Orphan
5676 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5677 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5678
5679 DC390/AM53C974 SCSI driver
5680 M:      Hannes Reinecke <hare@suse.com>
5681 L:      linux-scsi@vger.kernel.org
5682 S:      Maintained
5683 F:      drivers/scsi/am53c974.c
5684
5685 DC395x SCSI driver
5686 M:      Oliver Neukum <oliver@neukum.org>
5687 M:      Ali Akcaagac <aliakc@web.de>
5688 M:      Jamie Lenehan <lenehan@twibble.org>
5689 L:      dc395x@twibble.org
5690 S:      Maintained
5691 W:      http://twibble.org/dist/dc395x/
5692 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5693 F:      Documentation/scsi/dc395x.rst
5694 F:      drivers/scsi/dc395x.*
5695
5696 DCCP PROTOCOL
5697 L:      dccp@vger.kernel.org
5698 S:      Orphan
5699 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5700 F:      include/linux/dccp.h
5701 F:      include/linux/tfrc.h
5702 F:      include/uapi/linux/dccp.h
5703 F:      net/dccp/
5704
5705 DECSTATION PLATFORM SUPPORT
5706 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5707 L:      linux-mips@vger.kernel.org
5708 S:      Maintained
5709 W:      http://www.linux-mips.org/wiki/DECstation
5710 F:      arch/mips/dec/
5711 F:      arch/mips/include/asm/dec/
5712 F:      arch/mips/include/asm/mach-dec/
5713
5714 DEFXX FDDI NETWORK DRIVER
5715 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5716 S:      Maintained
5717 F:      drivers/net/fddi/defxx.*
5718
5719 DEFZA FDDI NETWORK DRIVER
5720 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5721 S:      Maintained
5722 F:      drivers/net/fddi/defza.*
5723
5724 DEINTERLACE DRIVERS FOR ALLWINNER H3
5725 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5726 L:      linux-media@vger.kernel.org
5727 S:      Maintained
5728 T:      git git://linuxtv.org/media_tree.git
5729 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5730 F:      drivers/media/platform/sunxi/sun8i-di/
5731
5732 DELL LAPTOP DRIVER
5733 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5734 M:      Pali Rohár <pali@kernel.org>
5735 L:      platform-driver-x86@vger.kernel.org
5736 S:      Maintained
5737 F:      drivers/platform/x86/dell/dell-laptop.c
5738
5739 DELL LAPTOP FREEFALL DRIVER
5740 M:      Pali Rohár <pali@kernel.org>
5741 S:      Maintained
5742 F:      drivers/platform/x86/dell/dell-smo8800.c
5743
5744 DELL LAPTOP RBTN DRIVER
5745 M:      Pali Rohár <pali@kernel.org>
5746 S:      Maintained
5747 F:      drivers/platform/x86/dell/dell-rbtn.*
5748
5749 DELL LAPTOP SMM DRIVER
5750 M:      Pali Rohár <pali@kernel.org>
5751 S:      Maintained
5752 F:      Documentation/ABI/obsolete/procfs-i8k
5753 F:      drivers/hwmon/dell-smm-hwmon.c
5754 F:      include/uapi/linux/i8k.h
5755
5756 DELL REMOTE BIOS UPDATE DRIVER
5757 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5758 L:      platform-driver-x86@vger.kernel.org
5759 S:      Maintained
5760 F:      drivers/platform/x86/dell/dell_rbu.c
5761
5762 DELL SMBIOS DRIVER
5763 M:      Pali Rohár <pali@kernel.org>
5764 L:      Dell.Client.Kernel@dell.com
5765 L:      platform-driver-x86@vger.kernel.org
5766 S:      Maintained
5767 F:      drivers/platform/x86/dell/dell-smbios.*
5768
5769 DELL SMBIOS SMM DRIVER
5770 L:      Dell.Client.Kernel@dell.com
5771 L:      platform-driver-x86@vger.kernel.org
5772 S:      Maintained
5773 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5774
5775 DELL SMBIOS WMI DRIVER
5776 L:      Dell.Client.Kernel@dell.com
5777 L:      platform-driver-x86@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5780 F:      tools/wmi/dell-smbios-example.c
5781
5782 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5783 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      Documentation/driver-api/dcdbas.rst
5787 F:      drivers/platform/x86/dell/dcdbas.*
5788
5789 DELL WMI DESCRIPTOR DRIVER
5790 L:      Dell.Client.Kernel@dell.com
5791 S:      Maintained
5792 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5793
5794 DELL WMI DDV DRIVER
5795 M:      Armin Wolf <W_Armin@gmx.de>
5796 S:      Maintained
5797 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5798 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5799 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5800
5801 DELL WMI SYSMAN DRIVER
5802 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5803 L:      Dell.Client.Kernel@dell.com
5804 L:      platform-driver-x86@vger.kernel.org
5805 S:      Maintained
5806 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5807 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5808
5809 DELL WMI NOTIFICATIONS DRIVER
5810 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5811 M:      Pali Rohár <pali@kernel.org>
5812 S:      Maintained
5813 F:      drivers/platform/x86/dell/dell-wmi-base.c
5814
5815 DELL WMI HARDWARE PRIVACY SUPPORT
5816 M:      Perry Yuan <Perry.Yuan@dell.com>
5817 L:      Dell.Client.Kernel@dell.com
5818 L:      platform-driver-x86@vger.kernel.org
5819 S:      Maintained
5820 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5821
5822 DELTA ST MEDIA DRIVER
5823 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5824 L:      linux-media@vger.kernel.org
5825 S:      Supported
5826 W:      https://linuxtv.org
5827 T:      git git://linuxtv.org/media_tree.git
5828 F:      drivers/media/platform/st/sti/delta
5829
5830 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5831 M:      Zev Weiss <zev@bewilderbeest.net>
5832 L:      linux-hwmon@vger.kernel.org
5833 S:      Maintained
5834 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5835
5836 DELTA DPS920AB PSU DRIVER
5837 M:      Robert Marko <robert.marko@sartura.hr>
5838 L:      linux-hwmon@vger.kernel.org
5839 S:      Maintained
5840 F:      Documentation/hwmon/dps920ab.rst
5841 F:      drivers/hwmon/pmbus/dps920ab.c
5842
5843 DELTA NETWORKS TN48M CPLD DRIVERS
5844 M:      Robert Marko <robert.marko@sartura.hr>
5845 S:      Maintained
5846 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5847 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5848 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5849 F:      drivers/gpio/gpio-tn48m.c
5850 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5851
5852 DENALI NAND DRIVER
5853 L:      linux-mtd@lists.infradead.org
5854 S:      Orphan
5855 F:      drivers/mtd/nand/raw/denali*
5856
5857 DESIGNWARE EDMA CORE IP DRIVER
5858 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5859 L:      dmaengine@vger.kernel.org
5860 S:      Maintained
5861 F:      drivers/dma/dw-edma/
5862 F:      include/linux/dma/edma.h
5863
5864 DESIGNWARE XDATA IP DRIVER
5865 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5866 L:      linux-pci@vger.kernel.org
5867 S:      Maintained
5868 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5869 F:      drivers/misc/dw-xdata-pcie.c
5870
5871 DESIGNWARE USB2 DRD IP DRIVER
5872 M:      Minas Harutyunyan <hminas@synopsys.com>
5873 L:      linux-usb@vger.kernel.org
5874 S:      Maintained
5875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5876 F:      drivers/usb/dwc2/
5877
5878 DESIGNWARE USB3 DRD IP DRIVER
5879 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5880 L:      linux-usb@vger.kernel.org
5881 S:      Maintained
5882 F:      drivers/usb/dwc3/
5883
5884 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5885 M:      Andreas Klinger <ak@it-klinger.de>
5886 L:      linux-iio@vger.kernel.org
5887 S:      Maintained
5888 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5889 F:      drivers/iio/proximity/srf*.c
5890
5891 DEVICE COREDUMP (DEV_COREDUMP)
5892 M:      Johannes Berg <johannes@sipsolutions.net>
5893 L:      linux-kernel@vger.kernel.org
5894 S:      Maintained
5895 F:      drivers/base/devcoredump.c
5896 F:      include/linux/devcoredump.h
5897
5898 DEVICE DEPENDENCY HELPER SCRIPT
5899 M:      Saravana Kannan <saravanak@google.com>
5900 L:      linux-kernel@vger.kernel.org
5901 S:      Maintained
5902 F:      scripts/dev-needs.sh
5903
5904 DEVICE DIRECT ACCESS (DAX)
5905 M:      Dan Williams <dan.j.williams@intel.com>
5906 M:      Vishal Verma <vishal.l.verma@intel.com>
5907 M:      Dave Jiang <dave.jiang@intel.com>
5908 L:      nvdimm@lists.linux.dev
5909 L:      linux-cxl@vger.kernel.org
5910 S:      Supported
5911 F:      drivers/dax/
5912
5913 DEVICE FREQUENCY (DEVFREQ)
5914 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5915 M:      Kyungmin Park <kyungmin.park@samsung.com>
5916 M:      Chanwoo Choi <cw00.choi@samsung.com>
5917 L:      linux-pm@vger.kernel.org
5918 S:      Maintained
5919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5920 F:      Documentation/devicetree/bindings/devfreq/
5921 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5922 F:      drivers/devfreq/
5923 F:      include/linux/devfreq.h
5924 F:      include/trace/events/devfreq.h
5925
5926 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5927 M:      Chanwoo Choi <cw00.choi@samsung.com>
5928 L:      linux-pm@vger.kernel.org
5929 S:      Supported
5930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5931 F:      Documentation/devicetree/bindings/devfreq/event/
5932 F:      drivers/devfreq/devfreq-event.c
5933 F:      drivers/devfreq/event/
5934 F:      include/dt-bindings/pmu/exynos_ppmu.h
5935 F:      include/linux/devfreq-event.h
5936
5937 DEVICE NUMBER REGISTRY
5938 M:      Torben Mathiasen <device@lanana.org>
5939 S:      Maintained
5940 W:      http://lanana.org/docs/device-list/index.html
5941
5942 DEVICE RESOURCE MANAGEMENT HELPERS
5943 M:      Hans de Goede <hdegoede@redhat.com>
5944 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5945 S:      Maintained
5946 F:      include/linux/devm-helpers.h
5947
5948 DEVICE-MAPPER  (LVM)
5949 M:      Alasdair Kergon <agk@redhat.com>
5950 M:      Mike Snitzer <snitzer@kernel.org>
5951 M:      dm-devel@redhat.com
5952 L:      dm-devel@redhat.com
5953 S:      Maintained
5954 W:      http://sources.redhat.com/dm
5955 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5957 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5958 F:      Documentation/admin-guide/device-mapper/
5959 F:      drivers/md/Kconfig
5960 F:      drivers/md/Makefile
5961 F:      drivers/md/dm*
5962 F:      drivers/md/persistent-data/
5963 F:      include/linux/device-mapper.h
5964 F:      include/linux/dm-*.h
5965 F:      include/uapi/linux/dm-*.h
5966
5967 DEVLINK
5968 M:      Jiri Pirko <jiri@nvidia.com>
5969 L:      netdev@vger.kernel.org
5970 S:      Supported
5971 F:      Documentation/networking/devlink
5972 F:      include/net/devlink.h
5973 F:      include/uapi/linux/devlink.h
5974 F:      net/devlink/
5975
5976 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5977 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5978 L:      kernel@dh-electronics.com
5979 S:      Maintained
5980 F:      arch/arm/boot/dts/imx6*-dhcom-*
5981 F:      arch/arm/boot/dts/imx6*-dhcor-*
5982
5983 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5984 M:      Marek Vasut <marex@denx.de>
5985 L:      kernel@dh-electronics.com
5986 S:      Maintained
5987 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5988 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5989
5990 DIALOG SEMICONDUCTOR DRIVERS
5991 M:      Support Opensource <support.opensource@diasemi.com>
5992 S:      Supported
5993 W:      http://www.dialog-semiconductor.com/products
5994 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5995 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5996 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5997 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
5998 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5999 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6000 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6001 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6002 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6003 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6004 F:      Documentation/hwmon/da90??.rst
6005 F:      drivers/gpio/gpio-da90??.c
6006 F:      drivers/hwmon/da90??-hwmon.c
6007 F:      drivers/iio/adc/da91??-*.c
6008 F:      drivers/input/misc/da72??.[ch]
6009 F:      drivers/input/misc/da90??_onkey.c
6010 F:      drivers/input/touchscreen/da9052_tsi.c
6011 F:      drivers/leds/leds-da90??.c
6012 F:      drivers/mfd/da903x.c
6013 F:      drivers/mfd/da90??-*.c
6014 F:      drivers/mfd/da91??-*.c
6015 F:      drivers/pinctrl/pinctrl-da90??.c
6016 F:      drivers/power/supply/da9052-battery.c
6017 F:      drivers/power/supply/da91??-*.c
6018 F:      drivers/regulator/da9???-regulator.[ch]
6019 F:      drivers/regulator/slg51000-regulator.[ch]
6020 F:      drivers/rtc/rtc-da90??.c
6021 F:      drivers/thermal/da90??-thermal.c
6022 F:      drivers/video/backlight/da90??_bl.c
6023 F:      drivers/watchdog/da90??_wdt.c
6024 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6025 F:      include/linux/mfd/da903x.h
6026 F:      include/linux/mfd/da9052/
6027 F:      include/linux/mfd/da9055/
6028 F:      include/linux/mfd/da9062/
6029 F:      include/linux/mfd/da9063/
6030 F:      include/linux/mfd/da9150/
6031 F:      include/linux/regulator/da9211.h
6032 F:      include/sound/da[79]*.h
6033 F:      sound/soc/codecs/da[79]*.[ch]
6034
6035 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6036 M:      William Breathitt Gray <william.gray@linaro.org>
6037 L:      linux-gpio@vger.kernel.org
6038 S:      Maintained
6039 F:      drivers/gpio/gpio-gpio-mm.c
6040
6041 DIOLAN U2C-12 I2C DRIVER
6042 M:      Guenter Roeck <linux@roeck-us.net>
6043 L:      linux-i2c@vger.kernel.org
6044 S:      Maintained
6045 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6046
6047 DIRECTORY NOTIFICATION (DNOTIFY)
6048 M:      Jan Kara <jack@suse.cz>
6049 R:      Amir Goldstein <amir73il@gmail.com>
6050 L:      linux-fsdevel@vger.kernel.org
6051 S:      Maintained
6052 F:      Documentation/filesystems/dnotify.rst
6053 F:      fs/notify/dnotify/
6054 F:      include/linux/dnotify.h
6055
6056 DISK GEOMETRY AND PARTITION HANDLING
6057 M:      Andries Brouwer <aeb@cwi.nl>
6058 S:      Maintained
6059 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6060 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6061 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6062
6063 DISKQUOTA
6064 M:      Jan Kara <jack@suse.com>
6065 S:      Maintained
6066 F:      Documentation/filesystems/quota.rst
6067 F:      fs/quota/
6068 F:      include/linux/quota*.h
6069 F:      include/uapi/linux/quota*.h
6070
6071 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6072 M:      Bernie Thompson <bernie@plugable.com>
6073 L:      linux-fbdev@vger.kernel.org
6074 S:      Maintained
6075 W:      http://plugable.com/category/projects/udlfb/
6076 F:      Documentation/fb/udlfb.rst
6077 F:      drivers/video/fbdev/udlfb.c
6078 F:      include/video/udlfb.h
6079
6080 DISTRIBUTED LOCK MANAGER (DLM)
6081 M:      Christine Caulfield <ccaulfie@redhat.com>
6082 M:      David Teigland <teigland@redhat.com>
6083 L:      cluster-devel@redhat.com
6084 S:      Supported
6085 W:      http://sources.redhat.com/cluster/
6086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6087 F:      fs/dlm/
6088
6089 DMA BUFFER SHARING FRAMEWORK
6090 M:      Sumit Semwal <sumit.semwal@linaro.org>
6091 M:      Christian König <christian.koenig@amd.com>
6092 L:      linux-media@vger.kernel.org
6093 L:      dri-devel@lists.freedesktop.org
6094 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6095 S:      Maintained
6096 T:      git git://anongit.freedesktop.org/drm/drm-misc
6097 F:      Documentation/driver-api/dma-buf.rst
6098 F:      drivers/dma-buf/
6099 F:      include/linux/*fence.h
6100 F:      include/linux/dma-buf.h
6101 F:      include/linux/dma-resv.h
6102 K:      \bdma_(?:buf|fence|resv)\b
6103
6104 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6105 M:      Vinod Koul <vkoul@kernel.org>
6106 L:      dmaengine@vger.kernel.org
6107 S:      Maintained
6108 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6110 F:      Documentation/devicetree/bindings/dma/
6111 F:      Documentation/driver-api/dmaengine/
6112 F:      drivers/dma/
6113 F:      include/dt-bindings/dma/
6114 F:      include/linux/dma/
6115 F:      include/linux/dmaengine.h
6116 F:      include/linux/of_dma.h
6117
6118 DMA MAPPING HELPERS
6119 M:      Christoph Hellwig <hch@lst.de>
6120 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6121 R:      Robin Murphy <robin.murphy@arm.com>
6122 L:      iommu@lists.linux.dev
6123 S:      Supported
6124 W:      http://git.infradead.org/users/hch/dma-mapping.git
6125 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6126 F:      include/asm-generic/dma-mapping.h
6127 F:      include/linux/dma-direct.h
6128 F:      include/linux/dma-mapping.h
6129 F:      include/linux/dma-map-ops.h
6130 F:      include/linux/swiotlb.h
6131 F:      kernel/dma/
6132
6133 DMA MAPPING BENCHMARK
6134 M:      Xiang Chen <chenxiang66@hisilicon.com>
6135 L:      iommu@lists.linux.dev
6136 F:      kernel/dma/map_benchmark.c
6137 F:      tools/testing/selftests/dma/
6138
6139 DMA-BUF HEAPS FRAMEWORK
6140 M:      Sumit Semwal <sumit.semwal@linaro.org>
6141 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6142 R:      Liam Mark <lmark@codeaurora.org>
6143 R:      Laura Abbott <labbott@redhat.com>
6144 R:      Brian Starkey <Brian.Starkey@arm.com>
6145 R:      John Stultz <jstultz@google.com>
6146 L:      linux-media@vger.kernel.org
6147 L:      dri-devel@lists.freedesktop.org
6148 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6149 S:      Maintained
6150 T:      git git://anongit.freedesktop.org/drm/drm-misc
6151 F:      drivers/dma-buf/dma-heap.c
6152 F:      drivers/dma-buf/heaps/*
6153 F:      include/linux/dma-heap.h
6154 F:      include/uapi/linux/dma-heap.h
6155
6156 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6157 M:      Lukasz Luba <lukasz.luba@arm.com>
6158 L:      linux-pm@vger.kernel.org
6159 L:      linux-samsung-soc@vger.kernel.org
6160 S:      Maintained
6161 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6162 F:      drivers/memory/samsung/exynos5422-dmc.c
6163
6164 DME1737 HARDWARE MONITOR DRIVER
6165 M:      Juerg Haefliger <juergh@proton.me>
6166 L:      linux-hwmon@vger.kernel.org
6167 S:      Maintained
6168 F:      Documentation/hwmon/dme1737.rst
6169 F:      drivers/hwmon/dme1737.c
6170
6171 DMI/SMBIOS SUPPORT
6172 M:      Jean Delvare <jdelvare@suse.com>
6173 S:      Maintained
6174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6175 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6176 F:      drivers/firmware/dmi-id.c
6177 F:      drivers/firmware/dmi_scan.c
6178 F:      include/linux/dmi.h
6179
6180 DOCUMENTATION
6181 M:      Jonathan Corbet <corbet@lwn.net>
6182 L:      linux-doc@vger.kernel.org
6183 S:      Maintained
6184 P:      Documentation/doc-guide/maintainer-profile.rst
6185 T:      git git://git.lwn.net/linux.git docs-next
6186 F:      Documentation/
6187 F:      scripts/documentation-file-ref-check
6188 F:      scripts/kernel-doc
6189 F:      scripts/sphinx-pre-install
6190 X:      Documentation/ABI/
6191 X:      Documentation/admin-guide/media/
6192 X:      Documentation/devicetree/
6193 X:      Documentation/driver-api/media/
6194 X:      Documentation/firmware-guide/acpi/
6195 X:      Documentation/i2c/
6196 X:      Documentation/power/
6197 X:      Documentation/spi/
6198 X:      Documentation/userspace-api/media/
6199
6200 DOCUMENTATION REPORTING ISSUES
6201 M:      Thorsten Leemhuis <linux@leemhuis.info>
6202 L:      linux-doc@vger.kernel.org
6203 S:      Maintained
6204 F:      Documentation/admin-guide/reporting-issues.rst
6205
6206 DOCUMENTATION SCRIPTS
6207 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6208 L:      linux-doc@vger.kernel.org
6209 S:      Maintained
6210 F:      Documentation/sphinx/parse-headers.pl
6211 F:      scripts/documentation-file-ref-check
6212 F:      scripts/sphinx-pre-install
6213
6214 DOCUMENTATION/ITALIAN
6215 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6216 L:      linux-doc@vger.kernel.org
6217 S:      Maintained
6218 F:      Documentation/translations/it_IT
6219
6220 DOCUMENTATION/JAPANESE
6221 R:      Akira Yokosawa <akiyks@gmail.com>
6222 L:      linux-doc@vger.kernel.org
6223 S:      Maintained
6224 F:      Documentation/translations/ja_JP
6225
6226 DONGWOON DW9714 LENS VOICE COIL DRIVER
6227 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6228 L:      linux-media@vger.kernel.org
6229 S:      Maintained
6230 T:      git git://linuxtv.org/media_tree.git
6231 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6232 F:      drivers/media/i2c/dw9714.c
6233
6234 DONGWOON DW9768 LENS VOICE COIL DRIVER
6235 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6236 L:      linux-media@vger.kernel.org
6237 S:      Maintained
6238 T:      git git://linuxtv.org/media_tree.git
6239 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6240 F:      drivers/media/i2c/dw9768.c
6241
6242 DONGWOON DW9807 LENS VOICE COIL DRIVER
6243 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6244 L:      linux-media@vger.kernel.org
6245 S:      Maintained
6246 T:      git git://linuxtv.org/media_tree.git
6247 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6248 F:      drivers/media/i2c/dw9807-vcm.c
6249
6250 DOUBLETALK DRIVER
6251 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6252 L:      blinux-list@redhat.com
6253 S:      Maintained
6254 F:      drivers/char/dtlk.c
6255 F:      include/linux/dtlk.h
6256
6257 DPAA2 DATAPATH I/O (DPIO) DRIVER
6258 M:      Roy Pledge <Roy.Pledge@nxp.com>
6259 L:      linux-kernel@vger.kernel.org
6260 S:      Maintained
6261 F:      drivers/soc/fsl/dpio
6262
6263 DPAA2 ETHERNET DRIVER
6264 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6265 L:      netdev@vger.kernel.org
6266 S:      Maintained
6267 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6268 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6269 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6270 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6271 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6272 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6273 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6274 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6275 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6276 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6277
6278 DPAA2 ETHERNET SWITCH DRIVER
6279 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6280 L:      netdev@vger.kernel.org
6281 S:      Maintained
6282 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6283 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6284 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6285
6286 DRBD DRIVER
6287 M:      Philipp Reisner <philipp.reisner@linbit.com>
6288 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6289 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6290 L:      drbd-dev@lists.linbit.com
6291 S:      Supported
6292 W:      http://www.drbd.org
6293 T:      git git://git.linbit.com/linux-drbd.git
6294 T:      git git://git.linbit.com/drbd-8.4.git
6295 F:      Documentation/admin-guide/blockdev/
6296 F:      drivers/block/drbd/
6297 F:      include/linux/drbd*
6298 F:      lib/lru_cache.c
6299
6300 DRIVER COMPONENT FRAMEWORK
6301 L:      dri-devel@lists.freedesktop.org
6302 F:      drivers/base/component.c
6303 F:      include/linux/component.h
6304
6305 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6306 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6307 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6308 S:      Supported
6309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6310 F:      Documentation/core-api/kobject.rst
6311 F:      drivers/base/
6312 F:      fs/debugfs/
6313 F:      fs/sysfs/
6314 F:      include/linux/debugfs.h
6315 F:      include/linux/kobj*
6316 F:      lib/kobj*
6317
6318 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6319 M:      Nishanth Menon <nm@ti.com>
6320 L:      linux-pm@vger.kernel.org
6321 S:      Maintained
6322 F:      drivers/soc/ti/smartreflex.c
6323 F:      include/linux/power/smartreflex.h
6324
6325 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6326 M:      Maxime Ripard <mripard@kernel.org>
6327 M:      Chen-Yu Tsai <wens@csie.org>
6328 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6329 L:      dri-devel@lists.freedesktop.org
6330 S:      Supported
6331 T:      git git://anongit.freedesktop.org/drm/drm-misc
6332 F:      drivers/gpu/drm/sun4i/sun8i*
6333
6334 DRM DRIVER FOR ARM PL111 CLCD
6335 M:      Emma Anholt <emma@anholt.net>
6336 S:      Supported
6337 T:      git git://anongit.freedesktop.org/drm/drm-misc
6338 F:      drivers/gpu/drm/pl111/
6339
6340 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6341 M:      Linus Walleij <linus.walleij@linaro.org>
6342 S:      Maintained
6343 T:      git git://anongit.freedesktop.org/drm/drm-misc
6344 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6345 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6346
6347 DRM DRIVER FOR ASPEED BMC GFX
6348 M:      Joel Stanley <joel@jms.id.au>
6349 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6350 S:      Supported
6351 T:      git git://anongit.freedesktop.org/drm/drm-misc
6352 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6353 F:      drivers/gpu/drm/aspeed/
6354
6355 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6356 M:      Dave Airlie <airlied@redhat.com>
6357 R:      Thomas Zimmermann <tzimmermann@suse.de>
6358 L:      dri-devel@lists.freedesktop.org
6359 S:      Supported
6360 T:      git git://anongit.freedesktop.org/drm/drm-misc
6361 F:      drivers/gpu/drm/ast/
6362
6363 DRM DRIVER FOR BOCHS VIRTUAL GPU
6364 M:      Gerd Hoffmann <kraxel@redhat.com>
6365 L:      virtualization@lists.linux-foundation.org
6366 S:      Maintained
6367 T:      git git://anongit.freedesktop.org/drm/drm-misc
6368 F:      drivers/gpu/drm/tiny/bochs.c
6369
6370 DRM DRIVER FOR BOE HIMAX8279D PANELS
6371 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6372 S:      Maintained
6373 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6374 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6375
6376 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6377 M:      Jagan Teki <jagan@amarulasolutions.com>
6378 S:      Maintained
6379 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6380 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6381
6382 DRM DRIVER FOR EBBG FT8719 PANEL
6383 M:      Joel Selvaraj <jo@jsfamily.in>
6384 S:      Maintained
6385 T:      git git://anongit.freedesktop.org/drm/drm-misc
6386 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6387 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6388
6389 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6390 M:      Linus Walleij <linus.walleij@linaro.org>
6391 S:      Maintained
6392 T:      git git://anongit.freedesktop.org/drm/drm-misc
6393 F:      drivers/gpu/drm/tve200/
6394
6395 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6396 M:      Icenowy Zheng <icenowy@aosc.io>
6397 S:      Maintained
6398 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6399 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6400
6401 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6402 M:      Jagan Teki <jagan@amarulasolutions.com>
6403 S:      Maintained
6404 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6405 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6406
6407 DRM DRIVER FOR GENERIC EDP PANELS
6408 R:      Douglas Anderson <dianders@chromium.org>
6409 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6410 F:      drivers/gpu/drm/panel/panel-edp.c
6411
6412 DRM DRIVER FOR GENERIC USB DISPLAY
6413 M:      Noralf Trønnes <noralf@tronnes.org>
6414 S:      Maintained
6415 W:      https://github.com/notro/gud/wiki
6416 T:      git git://anongit.freedesktop.org/drm/drm-misc
6417 F:      drivers/gpu/drm/gud/
6418 F:      include/drm/gud.h
6419
6420 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6421 M:      Hans de Goede <hdegoede@redhat.com>
6422 S:      Maintained
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      drivers/gpu/drm/tiny/gm12u320.c
6425
6426 DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
6427 M:      Ondrej Jirman <megi@xff.cz>
6428 M:      Javier Martinez Canillas <javierm@redhat.com>
6429 S:      Maintained
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 F:      Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
6432 F:      drivers/gpu/drm/panel/panel-himax-hx8394.c
6433
6434 DRM DRIVER FOR HX8357D PANELS
6435 M:      Emma Anholt <emma@anholt.net>
6436 S:      Maintained
6437 T:      git git://anongit.freedesktop.org/drm/drm-misc
6438 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6439 F:      drivers/gpu/drm/tiny/hx8357d.c
6440
6441 DRM DRIVER FOR ILITEK ILI9225 PANELS
6442 M:      David Lechner <david@lechnology.com>
6443 S:      Maintained
6444 T:      git git://anongit.freedesktop.org/drm/drm-misc
6445 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6446 F:      drivers/gpu/drm/tiny/ili9225.c
6447
6448 DRM DRIVER FOR ILITEK ILI9486 PANELS
6449 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6450 S:      Maintained
6451 T:      git git://anongit.freedesktop.org/drm/drm-misc
6452 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6453 F:      drivers/gpu/drm/tiny/ili9486.c
6454
6455 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6456 M:      Jagan Teki <jagan@edgeble.ai>
6457 S:      Maintained
6458 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6459 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6460
6461 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6462 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6463 S:      Supported
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      drivers/gpu/drm/logicvc/
6466
6467 DRM DRIVER FOR LVDS PANELS
6468 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6469 L:      dri-devel@lists.freedesktop.org
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 S:      Maintained
6472 F:      drivers/gpu/drm/panel/panel-lvds.c
6473 F:      Documentation/devicetree/bindings/display/lvds.yaml
6474 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6475
6476 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6477 M:      Guido Günther <agx@sigxcpu.org>
6478 R:      Purism Kernel Team <kernel@puri.sm>
6479 S:      Maintained
6480 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6481 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6482
6483 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6484 M:      Dave Airlie <airlied@redhat.com>
6485 R:      Thomas Zimmermann <tzimmermann@suse.de>
6486 L:      dri-devel@lists.freedesktop.org
6487 S:      Supported
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      drivers/gpu/drm/mgag200/
6490
6491 DRM DRIVER FOR MI0283QT
6492 M:      Noralf Trønnes <noralf@tronnes.org>
6493 S:      Maintained
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6496 F:      drivers/gpu/drm/tiny/mi0283qt.c
6497
6498 DRM DRIVER FOR MIPI DBI compatible panels
6499 M:      Noralf Trønnes <noralf@tronnes.org>
6500 S:      Maintained
6501 W:      https://github.com/notro/panel-mipi-dbi/wiki
6502 T:      git git://anongit.freedesktop.org/drm/drm-misc
6503 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6504 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6505
6506 DRM DRIVER FOR MSM ADRENO GPU
6507 M:      Rob Clark <robdclark@gmail.com>
6508 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6509 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6510 R:      Sean Paul <sean@poorly.run>
6511 L:      linux-arm-msm@vger.kernel.org
6512 L:      dri-devel@lists.freedesktop.org
6513 L:      freedreno@lists.freedesktop.org
6514 S:      Maintained
6515 T:      git https://gitlab.freedesktop.org/drm/msm.git
6516 F:      Documentation/devicetree/bindings/display/msm/
6517 F:      drivers/gpu/drm/msm/
6518 F:      include/uapi/drm/msm_drm.h
6519
6520 DRM DRIVER FOR NOVATEK NT35510 PANELS
6521 M:      Linus Walleij <linus.walleij@linaro.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6525 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6526
6527 DRM DRIVER FOR NOVATEK NT35560 PANELS
6528 M:      Linus Walleij <linus.walleij@linaro.org>
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6532 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6533
6534 DRM DRIVER FOR NOVATEK NT36672A PANELS
6535 M:      Sumit Semwal <sumit.semwal@linaro.org>
6536 S:      Maintained
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6539 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6540
6541 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6542 M:      Ben Skeggs <bskeggs@redhat.com>
6543 M:      Karol Herbst <kherbst@redhat.com>
6544 M:      Lyude Paul <lyude@redhat.com>
6545 L:      dri-devel@lists.freedesktop.org
6546 L:      nouveau@lists.freedesktop.org
6547 S:      Supported
6548 W:      https://nouveau.freedesktop.org/
6549 Q:      https://patchwork.freedesktop.org/project/nouveau/
6550 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6551 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6552 C:      irc://irc.oftc.net/nouveau
6553 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6554 F:      drivers/gpu/drm/nouveau/
6555 F:      include/uapi/drm/nouveau_drm.h
6556
6557 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6558 M:      Stefan Mavrodiev <stefan@olimex.com>
6559 S:      Maintained
6560 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6561 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6562
6563 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6564 R:      Douglas Anderson <dianders@chromium.org>
6565 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6566 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6567
6568 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6569 M:      Noralf Trønnes <noralf@tronnes.org>
6570 S:      Maintained
6571 T:      git git://anongit.freedesktop.org/drm/drm-misc
6572 F:      Documentation/devicetree/bindings/display/repaper.txt
6573 F:      drivers/gpu/drm/tiny/repaper.c
6574
6575 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6576 M:      Javier Martinez Canillas <javierm@redhat.com>
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6580 F:      drivers/gpu/drm/solomon/ssd130x*
6581
6582 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6583 M:      Dave Airlie <airlied@redhat.com>
6584 M:      Gerd Hoffmann <kraxel@redhat.com>
6585 L:      virtualization@lists.linux-foundation.org
6586 S:      Obsolete
6587 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6588 T:      git git://anongit.freedesktop.org/drm/drm-misc
6589 F:      drivers/gpu/drm/tiny/cirrus.c
6590
6591 DRM DRIVER FOR QXL VIRTUAL GPU
6592 M:      Dave Airlie <airlied@redhat.com>
6593 M:      Gerd Hoffmann <kraxel@redhat.com>
6594 L:      virtualization@lists.linux-foundation.org
6595 L:      spice-devel@lists.freedesktop.org
6596 S:      Maintained
6597 T:      git git://anongit.freedesktop.org/drm/drm-misc
6598 F:      drivers/gpu/drm/qxl/
6599 F:      include/uapi/drm/qxl_drm.h
6600
6601 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6602 M:      Robert Chiras <robert.chiras@nxp.com>
6603 S:      Maintained
6604 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6605 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6606
6607 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6608 M:      Linus Walleij <linus.walleij@linaro.org>
6609 S:      Maintained
6610 T:      git git://anongit.freedesktop.org/drm/drm-misc
6611 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6612 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6613
6614 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6615 M:      Markuss Broks <markuss.broks@gmail.com>
6616 S:      Maintained
6617 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6618 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6619
6620 DRM DRIVER FOR SITRONIX ST7703 PANELS
6621 M:      Guido Günther <agx@sigxcpu.org>
6622 R:      Purism Kernel Team <kernel@puri.sm>
6623 R:      Ondrej Jirman <megous@megous.com>
6624 S:      Maintained
6625 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6626 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6627
6628 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6629 M:      Thomas Zimmermann <tzimmermann@suse.de>
6630 M:      Javier Martinez Canillas <javierm@redhat.com>
6631 L:      dri-devel@lists.freedesktop.org
6632 S:      Maintained
6633 T:      git git://anongit.freedesktop.org/drm/drm-misc
6634 F:      drivers/gpu/drm/drm_aperture.c
6635 F:      drivers/gpu/drm/tiny/ofdrm.c
6636 F:      drivers/gpu/drm/tiny/simpledrm.c
6637 F:      drivers/video/aperture.c
6638 F:      drivers/video/nomodeset.c
6639 F:      include/drm/drm_aperture.h
6640 F:      include/linux/aperture.h
6641 F:      include/video/nomodeset.h
6642
6643 DRM DRIVER FOR SITRONIX ST7586 PANELS
6644 M:      David Lechner <david@lechnology.com>
6645 S:      Maintained
6646 T:      git git://anongit.freedesktop.org/drm/drm-misc
6647 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6648 F:      drivers/gpu/drm/tiny/st7586.c
6649
6650 DRM DRIVER FOR SITRONIX ST7701 PANELS
6651 M:      Jagan Teki <jagan@amarulasolutions.com>
6652 S:      Maintained
6653 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6654 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6655
6656 DRM DRIVER FOR SITRONIX ST7735R PANELS
6657 M:      David Lechner <david@lechnology.com>
6658 S:      Maintained
6659 T:      git git://anongit.freedesktop.org/drm/drm-misc
6660 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6661 F:      drivers/gpu/drm/tiny/st7735r.c
6662
6663 DRM DRIVER FOR ST-ERICSSON MCDE
6664 M:      Linus Walleij <linus.walleij@linaro.org>
6665 S:      Maintained
6666 T:      git git://anongit.freedesktop.org/drm/drm-misc
6667 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6668 F:      drivers/gpu/drm/mcde/
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 F:      include/drm/drm_accel.h
6770
6771 DRM ACCEL DRIVERS FOR INTEL VPU
6772 M:      Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
6773 M:      Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
6774 L:      dri-devel@lists.freedesktop.org
6775 S:      Supported
6776 T:      git git://anongit.freedesktop.org/drm/drm-misc
6777 F:      drivers/accel/ivpu/
6778 F:      include/uapi/drm/ivpu_accel.h
6779
6780 DRM DRIVERS FOR ALLWINNER A10
6781 M:      Maxime Ripard <mripard@kernel.org>
6782 M:      Chen-Yu Tsai <wens@csie.org>
6783 L:      dri-devel@lists.freedesktop.org
6784 S:      Supported
6785 T:      git git://anongit.freedesktop.org/drm/drm-misc
6786 F:      Documentation/devicetree/bindings/display/allwinner*
6787 F:      drivers/gpu/drm/sun4i/
6788
6789 DRM DRIVERS FOR AMLOGIC SOCS
6790 M:      Neil Armstrong <neil.armstrong@linaro.org>
6791 L:      dri-devel@lists.freedesktop.org
6792 L:      linux-amlogic@lists.infradead.org
6793 S:      Supported
6794 W:      http://linux-meson.com/
6795 T:      git git://anongit.freedesktop.org/drm/drm-misc
6796 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6797 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6798 F:      Documentation/gpu/meson.rst
6799 F:      drivers/gpu/drm/meson/
6800
6801 DRM DRIVERS FOR ATMEL HLCDC
6802 M:      Sam Ravnborg <sam@ravnborg.org>
6803 M:      Boris Brezillon <bbrezillon@kernel.org>
6804 L:      dri-devel@lists.freedesktop.org
6805 S:      Supported
6806 T:      git git://anongit.freedesktop.org/drm/drm-misc
6807 F:      Documentation/devicetree/bindings/display/atmel/
6808 F:      drivers/gpu/drm/atmel-hlcdc/
6809
6810 DRM DRIVERS FOR BRIDGE CHIPS
6811 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6812 M:      Neil Armstrong <neil.armstrong@linaro.org>
6813 M:      Robert Foss <rfoss@kernel.org>
6814 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6815 R:      Jonas Karlman <jonas@kwiboo.se>
6816 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6817 S:      Maintained
6818 T:      git git://anongit.freedesktop.org/drm/drm-misc
6819 F:      Documentation/devicetree/bindings/display/bridge/
6820 F:      drivers/gpu/drm/bridge/
6821
6822 DRM DRIVERS FOR EXYNOS
6823 M:      Inki Dae <inki.dae@samsung.com>
6824 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6825 M:      Kyungmin Park <kyungmin.park@samsung.com>
6826 L:      dri-devel@lists.freedesktop.org
6827 S:      Supported
6828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6829 F:      Documentation/devicetree/bindings/display/exynos/
6830 F:      Documentation/devicetree/bindings/display/samsung/
6831 F:      drivers/gpu/drm/exynos/
6832 F:      include/uapi/drm/exynos_drm.h
6833
6834 DRM DRIVERS FOR FREESCALE DCU
6835 M:      Stefan Agner <stefan@agner.ch>
6836 M:      Alison Wang <alison.wang@nxp.com>
6837 L:      dri-devel@lists.freedesktop.org
6838 S:      Supported
6839 T:      git git://anongit.freedesktop.org/drm/drm-misc
6840 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6841 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6842 F:      drivers/gpu/drm/fsl-dcu/
6843
6844 DRM DRIVERS FOR FREESCALE IMX
6845 M:      Philipp Zabel <p.zabel@pengutronix.de>
6846 L:      dri-devel@lists.freedesktop.org
6847 S:      Maintained
6848 F:      Documentation/devicetree/bindings/display/imx/
6849 F:      drivers/gpu/drm/imx/ipuv3/
6850 F:      drivers/gpu/ipu-v3/
6851
6852 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6853 M:      Liu Ying <victor.liu@nxp.com>
6854 L:      dri-devel@lists.freedesktop.org
6855 S:      Maintained
6856 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6857 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6858 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6859 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6860 F:      drivers/gpu/drm/bridge/imx/
6861
6862 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6863 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6864 L:      dri-devel@lists.freedesktop.org
6865 S:      Maintained
6866 T:      git git://github.com/patjak/drm-gma500
6867 F:      drivers/gpu/drm/gma500/
6868
6869 DRM DRIVERS FOR HISILICON
6870 M:      Xinliang Liu <xinliang.liu@linaro.org>
6871 M:      Tian Tao  <tiantao6@hisilicon.com>
6872 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6873 R:      Sumit Semwal <sumit.semwal@linaro.org>
6874 R:      Yongqin Liu <yongqin.liu@linaro.org>
6875 R:      John Stultz <jstultz@google.com>
6876 L:      dri-devel@lists.freedesktop.org
6877 S:      Maintained
6878 T:      git git://anongit.freedesktop.org/drm/drm-misc
6879 F:      Documentation/devicetree/bindings/display/hisilicon/
6880 F:      drivers/gpu/drm/hisilicon/
6881
6882 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6883 M:      Deepak Rawat <drawat.floss@gmail.com>
6884 L:      linux-hyperv@vger.kernel.org
6885 L:      dri-devel@lists.freedesktop.org
6886 S:      Maintained
6887 T:      git git://anongit.freedesktop.org/drm/drm-misc
6888 F:      drivers/gpu/drm/hyperv
6889
6890 DRM DRIVERS FOR LIMA
6891 M:      Qiang Yu <yuq825@gmail.com>
6892 L:      dri-devel@lists.freedesktop.org
6893 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6894 S:      Maintained
6895 T:      git git://anongit.freedesktop.org/drm/drm-misc
6896 F:      drivers/gpu/drm/lima/
6897 F:      include/uapi/drm/lima_drm.h
6898
6899 DRM DRIVERS FOR MEDIATEK
6900 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6901 M:      Philipp Zabel <p.zabel@pengutronix.de>
6902 L:      dri-devel@lists.freedesktop.org
6903 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6904 S:      Supported
6905 F:      Documentation/devicetree/bindings/display/mediatek/
6906 F:      drivers/gpu/drm/mediatek/
6907 F:      drivers/phy/mediatek/phy-mtk-dp.c
6908 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6909 F:      drivers/phy/mediatek/phy-mtk-mipi*
6910
6911 DRM DRIVERS FOR NVIDIA TEGRA
6912 M:      Thierry Reding <thierry.reding@gmail.com>
6913 L:      dri-devel@lists.freedesktop.org
6914 L:      linux-tegra@vger.kernel.org
6915 S:      Supported
6916 T:      git https://gitlab.freedesktop.org/drm/tegra.git
6917 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6918 F:      Documentation/devicetree/bindings/gpu/host1x/
6919 F:      drivers/gpu/drm/tegra/
6920 F:      drivers/gpu/host1x/
6921 F:      include/linux/host1x.h
6922 F:      include/uapi/drm/tegra_drm.h
6923
6924 DRM DRIVERS FOR RENESAS
6925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6926 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6927 L:      dri-devel@lists.freedesktop.org
6928 L:      linux-renesas-soc@vger.kernel.org
6929 S:      Supported
6930 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6931 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6932 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6933 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6934 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6935 F:      drivers/gpu/drm/rcar-du/
6936 F:      drivers/gpu/drm/shmobile/
6937 F:      include/linux/platform_data/shmob_drm.h
6938
6939 DRM DRIVERS FOR ROCKCHIP
6940 M:      Sandy Huang <hjc@rock-chips.com>
6941 M:      Heiko Stübner <heiko@sntech.de>
6942 L:      dri-devel@lists.freedesktop.org
6943 S:      Maintained
6944 T:      git git://anongit.freedesktop.org/drm/drm-misc
6945 F:      Documentation/devicetree/bindings/display/rockchip/
6946 F:      drivers/gpu/drm/rockchip/
6947
6948 DRM DRIVERS FOR STI
6949 M:      Alain Volmat <alain.volmat@foss.st.com>
6950 L:      dri-devel@lists.freedesktop.org
6951 S:      Maintained
6952 T:      git git://anongit.freedesktop.org/drm/drm-misc
6953 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6954 F:      drivers/gpu/drm/sti
6955
6956 DRM DRIVERS FOR STM
6957 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6958 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6959 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6960 L:      dri-devel@lists.freedesktop.org
6961 S:      Maintained
6962 T:      git git://anongit.freedesktop.org/drm/drm-misc
6963 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6964 F:      drivers/gpu/drm/stm
6965
6966 DRM DRIVERS FOR TI KEYSTONE
6967 M:      Jyri Sarha <jyri.sarha@iki.fi>
6968 M:      Tomi Valkeinen <tomba@kernel.org>
6969 L:      dri-devel@lists.freedesktop.org
6970 S:      Maintained
6971 T:      git git://anongit.freedesktop.org/drm/drm-misc
6972 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6973 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6974 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6975 F:      drivers/gpu/drm/tidss/
6976
6977 DRM DRIVERS FOR TI LCDC
6978 M:      Jyri Sarha <jyri.sarha@iki.fi>
6979 R:      Tomi Valkeinen <tomba@kernel.org>
6980 L:      dri-devel@lists.freedesktop.org
6981 S:      Maintained
6982 F:      Documentation/devicetree/bindings/display/tilcdc/
6983 F:      drivers/gpu/drm/tilcdc/
6984
6985 DRM DRIVERS FOR TI OMAP
6986 M:      Tomi Valkeinen <tomba@kernel.org>
6987 L:      dri-devel@lists.freedesktop.org
6988 S:      Maintained
6989 F:      Documentation/devicetree/bindings/display/ti/
6990 F:      drivers/gpu/drm/omapdrm/
6991
6992 DRM DRIVERS FOR V3D
6993 M:      Emma Anholt <emma@anholt.net>
6994 M:      Melissa Wen <mwen@igalia.com>
6995 S:      Supported
6996 T:      git git://anongit.freedesktop.org/drm/drm-misc
6997 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6998 F:      drivers/gpu/drm/v3d/
6999 F:      include/uapi/drm/v3d_drm.h
7000
7001 DRM DRIVERS FOR VC4
7002 M:      Emma Anholt <emma@anholt.net>
7003 M:      Maxime Ripard <mripard@kernel.org>
7004 S:      Supported
7005 T:      git git://github.com/anholt/linux
7006 T:      git git://anongit.freedesktop.org/drm/drm-misc
7007 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7008 F:      drivers/gpu/drm/vc4/
7009 F:      include/uapi/drm/vc4_drm.h
7010
7011 DRM DRIVERS FOR VIVANTE GPU IP
7012 M:      Lucas Stach <l.stach@pengutronix.de>
7013 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7014 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7015 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7016 L:      dri-devel@lists.freedesktop.org
7017 S:      Maintained
7018 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7019 F:      drivers/gpu/drm/etnaviv/
7020 F:      include/uapi/drm/etnaviv_drm.h
7021
7022 DRM DRIVERS FOR XEN
7023 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7024 L:      dri-devel@lists.freedesktop.org
7025 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7026 S:      Supported
7027 T:      git git://anongit.freedesktop.org/drm/drm-misc
7028 F:      Documentation/gpu/xen-front.rst
7029 F:      drivers/gpu/drm/xen/
7030
7031 DRM DRIVERS FOR XILINX
7032 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7033 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7034 L:      dri-devel@lists.freedesktop.org
7035 S:      Maintained
7036 T:      git git://anongit.freedesktop.org/drm/drm-misc
7037 F:      Documentation/devicetree/bindings/display/xlnx/
7038 F:      drivers/gpu/drm/xlnx/
7039
7040 DRM PANEL DRIVERS
7041 M:      Thierry Reding <thierry.reding@gmail.com>
7042 R:      Sam Ravnborg <sam@ravnborg.org>
7043 L:      dri-devel@lists.freedesktop.org
7044 S:      Maintained
7045 T:      git git://anongit.freedesktop.org/drm/drm-misc
7046 F:      Documentation/devicetree/bindings/display/panel/
7047 F:      drivers/gpu/drm/drm_panel.c
7048 F:      drivers/gpu/drm/panel/
7049 F:      include/drm/drm_panel.h
7050
7051 DRM PRIVACY-SCREEN CLASS
7052 M:      Hans de Goede <hdegoede@redhat.com>
7053 L:      dri-devel@lists.freedesktop.org
7054 S:      Maintained
7055 T:      git git://anongit.freedesktop.org/drm/drm-misc
7056 F:      drivers/gpu/drm/drm_privacy_screen*
7057 F:      include/drm/drm_privacy_screen*
7058
7059 DRM TTM SUBSYSTEM
7060 M:      Christian Koenig <christian.koenig@amd.com>
7061 M:      Huang Rui <ray.huang@amd.com>
7062 L:      dri-devel@lists.freedesktop.org
7063 S:      Maintained
7064 T:      git git://anongit.freedesktop.org/drm/drm-misc
7065 F:      drivers/gpu/drm/ttm/
7066 F:      include/drm/ttm/
7067
7068 DRM GPU SCHEDULER
7069 M:      Luben Tuikov <luben.tuikov@amd.com>
7070 L:      dri-devel@lists.freedesktop.org
7071 S:      Maintained
7072 T:      git git://anongit.freedesktop.org/drm/drm-misc
7073 F:      drivers/gpu/drm/scheduler/
7074 F:      include/drm/gpu_scheduler.h
7075
7076 DSBR100 USB FM RADIO DRIVER
7077 M:      Alexey Klimov <klimov.linux@gmail.com>
7078 L:      linux-media@vger.kernel.org
7079 S:      Maintained
7080 T:      git git://linuxtv.org/media_tree.git
7081 F:      drivers/media/radio/dsbr100.c
7082
7083 DT3155 MEDIA DRIVER
7084 M:      Hans Verkuil <hverkuil@xs4all.nl>
7085 L:      linux-media@vger.kernel.org
7086 S:      Odd Fixes
7087 W:      https://linuxtv.org
7088 T:      git git://linuxtv.org/media_tree.git
7089 F:      drivers/media/pci/dt3155/
7090
7091 DVB_USB_AF9015 MEDIA DRIVER
7092 M:      Antti Palosaari <crope@iki.fi>
7093 L:      linux-media@vger.kernel.org
7094 S:      Maintained
7095 W:      https://linuxtv.org
7096 W:      http://palosaari.fi/linux/
7097 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7098 T:      git git://linuxtv.org/anttip/media_tree.git
7099 F:      drivers/media/usb/dvb-usb-v2/af9015*
7100
7101 DVB_USB_AF9035 MEDIA DRIVER
7102 M:      Antti Palosaari <crope@iki.fi>
7103 L:      linux-media@vger.kernel.org
7104 S:      Maintained
7105 W:      https://linuxtv.org
7106 W:      http://palosaari.fi/linux/
7107 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7108 T:      git git://linuxtv.org/anttip/media_tree.git
7109 F:      drivers/media/usb/dvb-usb-v2/af9035*
7110
7111 DVB_USB_ANYSEE MEDIA DRIVER
7112 M:      Antti Palosaari <crope@iki.fi>
7113 L:      linux-media@vger.kernel.org
7114 S:      Maintained
7115 W:      https://linuxtv.org
7116 W:      http://palosaari.fi/linux/
7117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7118 T:      git git://linuxtv.org/anttip/media_tree.git
7119 F:      drivers/media/usb/dvb-usb-v2/anysee*
7120
7121 DVB_USB_AU6610 MEDIA DRIVER
7122 M:      Antti Palosaari <crope@iki.fi>
7123 L:      linux-media@vger.kernel.org
7124 S:      Maintained
7125 W:      https://linuxtv.org
7126 W:      http://palosaari.fi/linux/
7127 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7128 T:      git git://linuxtv.org/anttip/media_tree.git
7129 F:      drivers/media/usb/dvb-usb-v2/au6610*
7130
7131 DVB_USB_CE6230 MEDIA DRIVER
7132 M:      Antti Palosaari <crope@iki.fi>
7133 L:      linux-media@vger.kernel.org
7134 S:      Maintained
7135 W:      https://linuxtv.org
7136 W:      http://palosaari.fi/linux/
7137 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7138 T:      git git://linuxtv.org/anttip/media_tree.git
7139 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7140
7141 DVB_USB_CXUSB MEDIA DRIVER
7142 M:      Michael Krufky <mkrufky@linuxtv.org>
7143 L:      linux-media@vger.kernel.org
7144 S:      Maintained
7145 W:      https://linuxtv.org
7146 W:      http://github.com/mkrufky
7147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7148 T:      git git://linuxtv.org/media_tree.git
7149 F:      drivers/media/usb/dvb-usb/cxusb*
7150
7151 DVB_USB_EC168 MEDIA DRIVER
7152 M:      Antti Palosaari <crope@iki.fi>
7153 L:      linux-media@vger.kernel.org
7154 S:      Maintained
7155 W:      https://linuxtv.org
7156 W:      http://palosaari.fi/linux/
7157 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7158 T:      git git://linuxtv.org/anttip/media_tree.git
7159 F:      drivers/media/usb/dvb-usb-v2/ec168*
7160
7161 DVB_USB_GL861 MEDIA DRIVER
7162 M:      Antti Palosaari <crope@iki.fi>
7163 L:      linux-media@vger.kernel.org
7164 S:      Maintained
7165 W:      https://linuxtv.org
7166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7167 T:      git git://linuxtv.org/anttip/media_tree.git
7168 F:      drivers/media/usb/dvb-usb-v2/gl861*
7169
7170 DVB_USB_MXL111SF MEDIA DRIVER
7171 M:      Michael Krufky <mkrufky@linuxtv.org>
7172 L:      linux-media@vger.kernel.org
7173 S:      Maintained
7174 W:      https://linuxtv.org
7175 W:      http://github.com/mkrufky
7176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7177 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7178 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7179
7180 DVB_USB_RTL28XXU MEDIA DRIVER
7181 M:      Antti Palosaari <crope@iki.fi>
7182 L:      linux-media@vger.kernel.org
7183 S:      Maintained
7184 W:      https://linuxtv.org
7185 W:      http://palosaari.fi/linux/
7186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7187 T:      git git://linuxtv.org/anttip/media_tree.git
7188 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7189
7190 DVB_USB_V2 MEDIA DRIVER
7191 M:      Antti Palosaari <crope@iki.fi>
7192 L:      linux-media@vger.kernel.org
7193 S:      Maintained
7194 W:      https://linuxtv.org
7195 W:      http://palosaari.fi/linux/
7196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7197 T:      git git://linuxtv.org/anttip/media_tree.git
7198 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7199 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7200
7201 DYNAMIC DEBUG
7202 M:      Jason Baron <jbaron@akamai.com>
7203 S:      Maintained
7204 F:      include/linux/dynamic_debug.h
7205 F:      lib/dynamic_debug.c
7206 M:      Jim Cromie <jim.cromie@gmail.com>
7207 F:      lib/test_dynamic_debug.c
7208
7209 DYNAMIC INTERRUPT MODERATION
7210 M:      Tal Gilboa <talgi@nvidia.com>
7211 S:      Maintained
7212 F:      Documentation/networking/net_dim.rst
7213 F:      include/linux/dim.h
7214 F:      lib/dim/
7215
7216 DZ DECSTATION DZ11 SERIAL DRIVER
7217 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7218 S:      Maintained
7219 F:      drivers/tty/serial/dz.*
7220
7221 E3X0 POWER BUTTON DRIVER
7222 M:      Moritz Fischer <moritz.fischer@ettus.com>
7223 L:      usrp-users@lists.ettus.com
7224 S:      Supported
7225 W:      http://www.ettus.com
7226 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7227 F:      drivers/input/misc/e3x0-button.c
7228
7229 E4000 MEDIA DRIVER
7230 M:      Antti Palosaari <crope@iki.fi>
7231 L:      linux-media@vger.kernel.org
7232 S:      Maintained
7233 W:      https://linuxtv.org
7234 W:      http://palosaari.fi/linux/
7235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7236 T:      git git://linuxtv.org/anttip/media_tree.git
7237 F:      drivers/media/tuners/e4000*
7238
7239 EARTH_PT1 MEDIA DRIVER
7240 M:      Akihiro Tsukada <tskd08@gmail.com>
7241 L:      linux-media@vger.kernel.org
7242 S:      Odd Fixes
7243 F:      drivers/media/pci/pt1/
7244
7245 EARTH_PT3 MEDIA DRIVER
7246 M:      Akihiro Tsukada <tskd08@gmail.com>
7247 L:      linux-media@vger.kernel.org
7248 S:      Odd Fixes
7249 F:      drivers/media/pci/pt3/
7250
7251 EC100 MEDIA DRIVER
7252 M:      Antti Palosaari <crope@iki.fi>
7253 L:      linux-media@vger.kernel.org
7254 S:      Maintained
7255 W:      https://linuxtv.org
7256 W:      http://palosaari.fi/linux/
7257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7258 T:      git git://linuxtv.org/anttip/media_tree.git
7259 F:      drivers/media/dvb-frontends/ec100*
7260
7261 ECRYPT FILE SYSTEM
7262 M:      Tyler Hicks <code@tyhicks.com>
7263 L:      ecryptfs@vger.kernel.org
7264 S:      Odd Fixes
7265 W:      http://ecryptfs.org
7266 W:      https://launchpad.net/ecryptfs
7267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7268 F:      Documentation/filesystems/ecryptfs.rst
7269 F:      fs/ecryptfs/
7270
7271 EDAC-AMD64
7272 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7273 L:      linux-edac@vger.kernel.org
7274 S:      Supported
7275 F:      drivers/edac/amd64_edac*
7276 F:      drivers/edac/mce_amd*
7277
7278 EDAC-ARMADA
7279 M:      Jan Luebbe <jlu@pengutronix.de>
7280 L:      linux-edac@vger.kernel.org
7281 S:      Maintained
7282 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7283 F:      drivers/edac/armada_xp_*
7284
7285 EDAC-AST2500
7286 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7287 S:      Supported
7288 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7289 F:      drivers/edac/aspeed_edac.c
7290
7291 EDAC-BLUEFIELD
7292 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7293 S:      Supported
7294 F:      drivers/edac/bluefield_edac.c
7295
7296 EDAC-CALXEDA
7297 M:      Andre Przywara <andre.przywara@arm.com>
7298 L:      linux-edac@vger.kernel.org
7299 S:      Maintained
7300 F:      drivers/edac/highbank*
7301
7302 EDAC-CAVIUM OCTEON
7303 M:      Ralf Baechle <ralf@linux-mips.org>
7304 L:      linux-edac@vger.kernel.org
7305 L:      linux-mips@vger.kernel.org
7306 S:      Supported
7307 F:      drivers/edac/octeon_edac*
7308
7309 EDAC-CAVIUM THUNDERX
7310 M:      Robert Richter <rric@kernel.org>
7311 L:      linux-edac@vger.kernel.org
7312 S:      Odd Fixes
7313 F:      drivers/edac/thunderx_edac*
7314
7315 EDAC-CORE
7316 M:      Borislav Petkov <bp@alien8.de>
7317 M:      Tony Luck <tony.luck@intel.com>
7318 R:      James Morse <james.morse@arm.com>
7319 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7320 R:      Robert Richter <rric@kernel.org>
7321 L:      linux-edac@vger.kernel.org
7322 S:      Supported
7323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7324 F:      Documentation/admin-guide/ras.rst
7325 F:      Documentation/driver-api/edac.rst
7326 F:      drivers/edac/
7327 F:      include/linux/edac.h
7328
7329 EDAC-DMC520
7330 M:      Lei Wang <lewan@microsoft.com>
7331 L:      linux-edac@vger.kernel.org
7332 S:      Supported
7333 F:      drivers/edac/dmc520_edac.c
7334
7335 EDAC-E752X
7336 M:      Mark Gross <markgross@kernel.org>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/e752x_edac.c
7340
7341 EDAC-E7XXX
7342 L:      linux-edac@vger.kernel.org
7343 S:      Maintained
7344 F:      drivers/edac/e7xxx_edac.c
7345
7346 EDAC-FSL_DDR
7347 M:      York Sun <york.sun@nxp.com>
7348 L:      linux-edac@vger.kernel.org
7349 S:      Maintained
7350 F:      drivers/edac/fsl_ddr_edac.*
7351
7352 EDAC-GHES
7353 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7354 L:      linux-edac@vger.kernel.org
7355 S:      Maintained
7356 F:      drivers/edac/ghes_edac.c
7357
7358 EDAC-I10NM
7359 M:      Tony Luck <tony.luck@intel.com>
7360 L:      linux-edac@vger.kernel.org
7361 S:      Maintained
7362 F:      drivers/edac/i10nm_base.c
7363
7364 EDAC-I3000
7365 L:      linux-edac@vger.kernel.org
7366 S:      Orphan
7367 F:      drivers/edac/i3000_edac.c
7368
7369 EDAC-I5000
7370 L:      linux-edac@vger.kernel.org
7371 S:      Maintained
7372 F:      drivers/edac/i5000_edac.c
7373
7374 EDAC-I5400
7375 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/i5400_edac.c
7379
7380 EDAC-I7300
7381 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7382 L:      linux-edac@vger.kernel.org
7383 S:      Maintained
7384 F:      drivers/edac/i7300_edac.c
7385
7386 EDAC-I7CORE
7387 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7388 L:      linux-edac@vger.kernel.org
7389 S:      Maintained
7390 F:      drivers/edac/i7core_edac.c
7391
7392 EDAC-I82443BXGX
7393 M:      Tim Small <tim@buttersideup.com>
7394 L:      linux-edac@vger.kernel.org
7395 S:      Maintained
7396 F:      drivers/edac/i82443bxgx_edac.c
7397
7398 EDAC-I82975X
7399 M:      "Arvind R." <arvino55@gmail.com>
7400 L:      linux-edac@vger.kernel.org
7401 S:      Maintained
7402 F:      drivers/edac/i82975x_edac.c
7403
7404 EDAC-IE31200
7405 M:      Jason Baron <jbaron@akamai.com>
7406 L:      linux-edac@vger.kernel.org
7407 S:      Maintained
7408 F:      drivers/edac/ie31200_edac.c
7409
7410 EDAC-IGEN6
7411 M:      Tony Luck <tony.luck@intel.com>
7412 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7413 L:      linux-edac@vger.kernel.org
7414 S:      Maintained
7415 F:      drivers/edac/igen6_edac.c
7416
7417 EDAC-MPC85XX
7418 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7419 L:      linux-edac@vger.kernel.org
7420 S:      Maintained
7421 F:      drivers/edac/mpc85xx_edac.[ch]
7422
7423 EDAC-PASEMI
7424 M:      Egor Martovetsky <egor@pasemi.com>
7425 L:      linux-edac@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/edac/pasemi_edac.c
7428
7429 EDAC-PND2
7430 M:      Tony Luck <tony.luck@intel.com>
7431 L:      linux-edac@vger.kernel.org
7432 S:      Maintained
7433 F:      drivers/edac/pnd2_edac.[ch]
7434
7435 EDAC-QCOM
7436 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7437 L:      linux-arm-msm@vger.kernel.org
7438 L:      linux-edac@vger.kernel.org
7439 S:      Maintained
7440 F:      drivers/edac/qcom_edac.c
7441
7442 EDAC-R82600
7443 M:      Tim Small <tim@buttersideup.com>
7444 L:      linux-edac@vger.kernel.org
7445 S:      Maintained
7446 F:      drivers/edac/r82600_edac.c
7447
7448 EDAC-SBRIDGE
7449 M:      Tony Luck <tony.luck@intel.com>
7450 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7451 L:      linux-edac@vger.kernel.org
7452 S:      Maintained
7453 F:      drivers/edac/sb_edac.c
7454
7455 EDAC-SKYLAKE
7456 M:      Tony Luck <tony.luck@intel.com>
7457 L:      linux-edac@vger.kernel.org
7458 S:      Maintained
7459 F:      drivers/edac/skx_*.[ch]
7460
7461 EDAC-TI
7462 M:      Tero Kristo <kristo@kernel.org>
7463 L:      linux-edac@vger.kernel.org
7464 S:      Odd Fixes
7465 F:      drivers/edac/ti_edac.c
7466
7467 EDIROL UA-101/UA-1000 DRIVER
7468 M:      Clemens Ladisch <clemens@ladisch.de>
7469 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7470 S:      Maintained
7471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7472 F:      sound/usb/misc/ua101.c
7473
7474 EFI TEST DRIVER
7475 M:      Ivan Hu <ivan.hu@canonical.com>
7476 M:      Ard Biesheuvel <ardb@kernel.org>
7477 L:      linux-efi@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/firmware/efi/test/
7480
7481 EFI VARIABLE FILESYSTEM
7482 M:      Jeremy Kerr <jk@ozlabs.org>
7483 M:      Ard Biesheuvel <ardb@kernel.org>
7484 L:      linux-efi@vger.kernel.org
7485 S:      Maintained
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7487 F:      fs/efivarfs/
7488
7489 EFIFB FRAMEBUFFER DRIVER
7490 M:      Peter Jones <pjones@redhat.com>
7491 L:      linux-fbdev@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/video/fbdev/efifb.c
7494
7495 EFS FILESYSTEM
7496 S:      Orphan
7497 W:      http://aeschi.ch.eu.org/efs/
7498 F:      fs/efs/
7499
7500 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7501 M:      Douglas Miller <dougmill@linux.ibm.com>
7502 L:      netdev@vger.kernel.org
7503 S:      Maintained
7504 F:      drivers/net/ethernet/ibm/ehea/
7505
7506 ELM327 CAN NETWORK DRIVER
7507 M:      Max Staudt <max@enpas.org>
7508 L:      linux-can@vger.kernel.org
7509 S:      Maintained
7510 F:      Documentation/networking/device_drivers/can/can327.rst
7511 F:      drivers/net/can/can327.c
7512
7513 EM28XX VIDEO4LINUX DRIVER
7514 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7515 L:      linux-media@vger.kernel.org
7516 S:      Maintained
7517 W:      https://linuxtv.org
7518 T:      git git://linuxtv.org/media_tree.git
7519 F:      Documentation/admin-guide/media/em28xx*
7520 F:      drivers/media/usb/em28xx/
7521
7522 EMBEDDED LINUX
7523 M:      Olivia Mackall <olivia@selenic.com>
7524 M:      David Woodhouse <dwmw2@infradead.org>
7525 L:      linux-embedded@vger.kernel.org
7526 S:      Maintained
7527
7528 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7529 M:      Adrian Hunter <adrian.hunter@intel.com>
7530 M:      Ritesh Harjani <riteshh@codeaurora.org>
7531 M:      Asutosh Das <asutoshd@codeaurora.org>
7532 L:      linux-mmc@vger.kernel.org
7533 S:      Supported
7534 F:      drivers/mmc/host/cqhci*
7535
7536 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7537 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7538 L:      linux-scsi@vger.kernel.org
7539 S:      Supported
7540 W:      http://www.broadcom.com
7541 F:      drivers/scsi/be2iscsi/
7542
7543 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7544 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7545 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7546 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7547 L:      netdev@vger.kernel.org
7548 S:      Supported
7549 W:      http://www.emulex.com
7550 F:      drivers/net/ethernet/emulex/benet/
7551
7552 EMULEX ONECONNECT ROCE DRIVER
7553 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7554 L:      linux-rdma@vger.kernel.org
7555 S:      Odd Fixes
7556 W:      http://www.broadcom.com
7557 F:      drivers/infiniband/hw/ocrdma/
7558 F:      include/uapi/rdma/ocrdma-abi.h
7559
7560 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7561 M:      James Smart <james.smart@broadcom.com>
7562 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7563 L:      linux-scsi@vger.kernel.org
7564 S:      Supported
7565 W:      http://www.broadcom.com
7566 F:      drivers/scsi/lpfc/
7567
7568 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7569 M:      James Smart <james.smart@broadcom.com>
7570 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7571 L:      linux-scsi@vger.kernel.org
7572 L:      target-devel@vger.kernel.org
7573 S:      Supported
7574 W:      http://www.broadcom.com
7575 F:      drivers/scsi/elx/
7576
7577 ENE CB710 FLASH CARD READER DRIVER
7578 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7579 S:      Maintained
7580 F:      drivers/misc/cb710/
7581 F:      drivers/mmc/host/cb710-mmc.*
7582 F:      include/linux/cb710.h
7583
7584 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7585 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7586 S:      Maintained
7587 F:      drivers/media/rc/ene_ir.*
7588
7589 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7590 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7591 L:      linuxppc-dev@lists.ozlabs.org
7592 S:      Maintained
7593 F:      drivers/tty/ehv_bytechan.c
7594
7595 EPSON S1D13XXX FRAMEBUFFER DRIVER
7596 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7597 S:      Maintained
7598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7599 F:      drivers/video/fbdev/s1d13xxxfb.c
7600 F:      include/video/s1d13xxxfb.h
7601
7602 EROFS FILE SYSTEM
7603 M:      Gao Xiang <xiang@kernel.org>
7604 M:      Chao Yu <chao@kernel.org>
7605 R:      Yue Hu <huyue2@coolpad.com>
7606 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7607 L:      linux-erofs@lists.ozlabs.org
7608 S:      Maintained
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7610 F:      Documentation/ABI/testing/sysfs-fs-erofs
7611 F:      Documentation/filesystems/erofs.rst
7612 F:      fs/erofs/
7613 F:      include/trace/events/erofs.h
7614
7615 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7616 M:      Jeff Layton <jlayton@kernel.org>
7617 S:      Maintained
7618 F:      include/linux/errseq.h
7619 F:      lib/errseq.c
7620
7621 ESD CAN/USB DRIVERS
7622 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7623 R:      socketcan@esd.eu
7624 L:      linux-can@vger.kernel.org
7625 S:      Maintained
7626 F:      drivers/net/can/usb/esd_usb.c
7627
7628 ET131X NETWORK DRIVER
7629 M:      Mark Einon <mark.einon@gmail.com>
7630 S:      Odd Fixes
7631 F:      drivers/net/ethernet/agere/
7632
7633 ETAS ES58X CAN/USB DRIVER
7634 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7635 L:      linux-can@vger.kernel.org
7636 S:      Maintained
7637 F:      Documentation/networking/devlink/etas_es58x.rst
7638 F:      drivers/net/can/usb/etas_es58x/
7639
7640 ETHERNET BRIDGE
7641 M:      Roopa Prabhu <roopa@nvidia.com>
7642 M:      Nikolay Aleksandrov <razor@blackwall.org>
7643 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7644 L:      netdev@vger.kernel.org
7645 S:      Maintained
7646 W:      http://www.linuxfoundation.org/en/Net:Bridge
7647 F:      include/linux/netfilter_bridge/
7648 F:      net/bridge/
7649
7650 ETHERNET PHY LIBRARY
7651 M:      Andrew Lunn <andrew@lunn.ch>
7652 M:      Heiner Kallweit <hkallweit1@gmail.com>
7653 R:      Russell King <linux@armlinux.org.uk>
7654 L:      netdev@vger.kernel.org
7655 S:      Maintained
7656 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7657 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7658 F:      Documentation/devicetree/bindings/net/mdio*
7659 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7660 F:      Documentation/networking/phy.rst
7661 F:      drivers/net/mdio/
7662 F:      drivers/net/mdio/acpi_mdio.c
7663 F:      drivers/net/mdio/fwnode_mdio.c
7664 F:      drivers/net/mdio/of_mdio.c
7665 F:      drivers/net/pcs/
7666 F:      drivers/net/phy/
7667 F:      include/dt-bindings/net/qca-ar803x.h
7668 F:      include/linux/linkmode.h
7669 F:      include/linux/*mdio*.h
7670 F:      include/linux/mdio/*.h
7671 F:      include/linux/mii.h
7672 F:      include/linux/of_net.h
7673 F:      include/linux/phy.h
7674 F:      include/linux/phy_fixed.h
7675 F:      include/linux/platform_data/mdio-bcm-unimac.h
7676 F:      include/linux/platform_data/mdio-gpio.h
7677 F:      include/trace/events/mdio.h
7678 F:      include/uapi/linux/mdio.h
7679 F:      include/uapi/linux/mii.h
7680 F:      net/core/of_net.c
7681
7682 EXEC & BINFMT API
7683 R:      Eric Biederman <ebiederm@xmission.com>
7684 R:      Kees Cook <keescook@chromium.org>
7685 L:      linux-mm@kvack.org
7686 S:      Supported
7687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7688 F:      fs/*binfmt_*.c
7689 F:      fs/exec.c
7690 F:      include/linux/binfmts.h
7691 F:      include/linux/elf.h
7692 F:      include/uapi/linux/binfmts.h
7693 F:      include/uapi/linux/elf.h
7694 F:      tools/testing/selftests/exec/
7695 N:      asm/elf.h
7696 N:      binfmt
7697
7698 EXFAT FILE SYSTEM
7699 M:      Namjae Jeon <linkinjeon@kernel.org>
7700 M:      Sungjong Seo <sj1557.seo@samsung.com>
7701 L:      linux-fsdevel@vger.kernel.org
7702 S:      Maintained
7703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7704 F:      fs/exfat/
7705
7706 EXT2 FILE SYSTEM
7707 M:      Jan Kara <jack@suse.com>
7708 L:      linux-ext4@vger.kernel.org
7709 S:      Maintained
7710 F:      Documentation/filesystems/ext2.rst
7711 F:      fs/ext2/
7712 F:      include/linux/ext2*
7713
7714 EXT4 FILE SYSTEM
7715 M:      "Theodore Ts'o" <tytso@mit.edu>
7716 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7717 L:      linux-ext4@vger.kernel.org
7718 S:      Maintained
7719 W:      http://ext4.wiki.kernel.org
7720 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7722 F:      Documentation/filesystems/ext4/
7723 F:      fs/ext4/
7724 F:      include/trace/events/ext4.h
7725
7726 Extended Verification Module (EVM)
7727 M:      Mimi Zohar <zohar@linux.ibm.com>
7728 L:      linux-integrity@vger.kernel.org
7729 S:      Supported
7730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7731 F:      security/integrity/evm/
7732 F:      security/integrity/
7733
7734 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7735 M:      Ard Biesheuvel <ardb@kernel.org>
7736 L:      linux-efi@vger.kernel.org
7737 S:      Maintained
7738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7739 F:      Documentation/admin-guide/efi-stub.rst
7740 F:      arch/*/include/asm/efi.h
7741 F:      arch/*/kernel/efi.c
7742 F:      arch/arm/boot/compressed/efi-header.S
7743 F:      arch/x86/platform/efi/
7744 F:      drivers/firmware/efi/
7745 F:      include/linux/efi*.h
7746
7747 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7748 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7749 M:      Chanwoo Choi <cw00.choi@samsung.com>
7750 L:      linux-kernel@vger.kernel.org
7751 S:      Maintained
7752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7753 F:      Documentation/devicetree/bindings/extcon/
7754 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7755 F:      drivers/extcon/
7756 F:      include/linux/extcon.h
7757 F:      include/linux/extcon/
7758
7759 EXTRA BOOT CONFIG
7760 M:      Masami Hiramatsu <mhiramat@kernel.org>
7761 L:      linux-kernel@vger.kernel.org
7762 L:      linux-trace-kernel@vger.kernel.org
7763 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7764 S:      Maintained
7765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7766 F:      Documentation/admin-guide/bootconfig.rst
7767 F:      fs/proc/bootconfig.c
7768 F:      include/linux/bootconfig.h
7769 F:      lib/bootconfig-data.S
7770 F:      lib/bootconfig.c
7771 F:      tools/bootconfig/*
7772 F:      tools/bootconfig/scripts/*
7773
7774 EXYNOS DP DRIVER
7775 M:      Jingoo Han <jingoohan1@gmail.com>
7776 L:      dri-devel@lists.freedesktop.org
7777 S:      Maintained
7778 F:      drivers/gpu/drm/exynos/exynos_dp*
7779
7780 EXYNOS SYSMMU (IOMMU) driver
7781 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7782 L:      iommu@lists.linux.dev
7783 S:      Maintained
7784 F:      drivers/iommu/exynos-iommu.c
7785
7786 F2FS FILE SYSTEM
7787 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7788 M:      Chao Yu <chao@kernel.org>
7789 L:      linux-f2fs-devel@lists.sourceforge.net
7790 S:      Maintained
7791 W:      https://f2fs.wiki.kernel.org/
7792 Q:      https://patchwork.kernel.org/project/f2fs/list/
7793 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7795 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7796 F:      Documentation/filesystems/f2fs.rst
7797 F:      fs/f2fs/
7798 F:      include/linux/f2fs_fs.h
7799 F:      include/trace/events/f2fs.h
7800 F:      include/uapi/linux/f2fs.h
7801
7802 F71805F HARDWARE MONITORING DRIVER
7803 M:      Jean Delvare <jdelvare@suse.com>
7804 L:      linux-hwmon@vger.kernel.org
7805 S:      Maintained
7806 F:      Documentation/hwmon/f71805f.rst
7807 F:      drivers/hwmon/f71805f.c
7808
7809 FADDR2LINE
7810 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7811 S:      Maintained
7812 F:      scripts/faddr2line
7813
7814 FAILOVER MODULE
7815 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7816 L:      netdev@vger.kernel.org
7817 S:      Supported
7818 F:      Documentation/networking/failover.rst
7819 F:      include/net/failover.h
7820 F:      net/core/failover.c
7821
7822 FANOTIFY
7823 M:      Jan Kara <jack@suse.cz>
7824 R:      Amir Goldstein <amir73il@gmail.com>
7825 R:      Matthew Bobrowski <repnop@google.com>
7826 L:      linux-fsdevel@vger.kernel.org
7827 S:      Maintained
7828 F:      fs/notify/fanotify/
7829 F:      include/linux/fanotify.h
7830 F:      include/uapi/linux/fanotify.h
7831
7832 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7833 M:      Linus Walleij <linus.walleij@linaro.org>
7834 L:      linux-usb@vger.kernel.org
7835 S:      Maintained
7836 F:      drivers/usb/fotg210/
7837
7838 FARSYNC SYNCHRONOUS DRIVER
7839 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7840 S:      Supported
7841 W:      http://www.farsite.co.uk/
7842 F:      drivers/net/wan/farsync.*
7843
7844 FAULT INJECTION SUPPORT
7845 M:      Akinobu Mita <akinobu.mita@gmail.com>
7846 S:      Supported
7847 F:      Documentation/fault-injection/
7848 F:      lib/fault-inject.c
7849
7850 FBTFT Framebuffer drivers
7851 L:      dri-devel@lists.freedesktop.org
7852 L:      linux-fbdev@vger.kernel.org
7853 S:      Orphan
7854 F:      drivers/staging/fbtft/
7855
7856 FC0011 TUNER DRIVER
7857 M:      Michael Buesch <m@bues.ch>
7858 L:      linux-media@vger.kernel.org
7859 S:      Maintained
7860 F:      drivers/media/tuners/fc0011.c
7861 F:      drivers/media/tuners/fc0011.h
7862
7863 FC2580 MEDIA DRIVER
7864 M:      Antti Palosaari <crope@iki.fi>
7865 L:      linux-media@vger.kernel.org
7866 S:      Maintained
7867 W:      https://linuxtv.org
7868 W:      http://palosaari.fi/linux/
7869 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7870 T:      git git://linuxtv.org/anttip/media_tree.git
7871 F:      drivers/media/tuners/fc2580*
7872
7873 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7874 M:      Hannes Reinecke <hare@suse.de>
7875 L:      linux-scsi@vger.kernel.org
7876 S:      Supported
7877 W:      www.Open-FCoE.org
7878 F:      drivers/scsi/fcoe/
7879 F:      drivers/scsi/libfc/
7880 F:      include/scsi/fc/
7881 F:      include/scsi/libfc.h
7882 F:      include/scsi/libfcoe.h
7883 F:      include/uapi/scsi/fc/
7884
7885 FILE LOCKING (flock() and fcntl()/lockf())
7886 M:      Jeff Layton <jlayton@kernel.org>
7887 M:      Chuck Lever <chuck.lever@oracle.com>
7888 L:      linux-fsdevel@vger.kernel.org
7889 S:      Maintained
7890 F:      fs/fcntl.c
7891 F:      fs/locks.c
7892 F:      include/linux/fcntl.h
7893 F:      include/uapi/linux/fcntl.h
7894
7895 FILESYSTEM DIRECT ACCESS (DAX)
7896 M:      Dan Williams <dan.j.williams@intel.com>
7897 R:      Matthew Wilcox <willy@infradead.org>
7898 R:      Jan Kara <jack@suse.cz>
7899 L:      linux-fsdevel@vger.kernel.org
7900 L:      nvdimm@lists.linux.dev
7901 S:      Supported
7902 F:      fs/dax.c
7903 F:      include/linux/dax.h
7904 F:      include/trace/events/fs_dax.h
7905
7906 FILESYSTEMS (VFS and infrastructure)
7907 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7908 M:      Christian Brauner <brauner@kernel.org>
7909 L:      linux-fsdevel@vger.kernel.org
7910 S:      Maintained
7911 F:      fs/*
7912 F:      include/linux/fs.h
7913 F:      include/linux/fs_types.h
7914 F:      include/uapi/linux/fs.h
7915 F:      include/uapi/linux/openat2.h
7916
7917 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7918 M:      Riku Voipio <riku.voipio@iki.fi>
7919 L:      linux-hwmon@vger.kernel.org
7920 S:      Maintained
7921 F:      drivers/hwmon/f75375s.c
7922 F:      include/linux/f75375s.h
7923
7924 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7925 M:      Clemens Ladisch <clemens@ladisch.de>
7926 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7927 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7928 S:      Maintained
7929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7930 F:      include/uapi/sound/firewire.h
7931 F:      sound/firewire/
7932
7933 FIREWIRE MEDIA DRIVERS (firedtv)
7934 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7935 L:      linux-media@vger.kernel.org
7936 L:      linux1394-devel@lists.sourceforge.net
7937 S:      Maintained
7938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7939 F:      drivers/media/firewire/
7940
7941 FIREWIRE SBP-2 TARGET
7942 M:      Chris Boot <bootc@bootc.net>
7943 L:      linux-scsi@vger.kernel.org
7944 L:      target-devel@vger.kernel.org
7945 L:      linux1394-devel@lists.sourceforge.net
7946 S:      Maintained
7947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7948 F:      drivers/target/sbp/
7949
7950 FIREWIRE SUBSYSTEM
7951 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7952 L:      linux1394-devel@lists.sourceforge.net
7953 S:      Maintained
7954 W:      http://ieee1394.wiki.kernel.org/
7955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7956 F:      drivers/firewire/
7957 F:      include/linux/firewire.h
7958 F:      include/uapi/linux/firewire*.h
7959 F:      tools/firewire/
7960
7961 FIRMWARE FRAMEWORK FOR ARMV8-A
7962 M:      Sudeep Holla <sudeep.holla@arm.com>
7963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7964 S:      Maintained
7965 F:      drivers/firmware/arm_ffa/
7966 F:      include/linux/arm_ffa.h
7967
7968 FIRMWARE LOADER (request_firmware)
7969 M:      Luis Chamberlain <mcgrof@kernel.org>
7970 M:      Russ Weight <russell.h.weight@intel.com>
7971 L:      linux-kernel@vger.kernel.org
7972 S:      Maintained
7973 F:      Documentation/firmware_class/
7974 F:      drivers/base/firmware_loader/
7975 F:      include/linux/firmware.h
7976
7977 FLEXTIMER FTM-QUADDEC DRIVER
7978 M:      Patrick Havelange <patrick.havelange@essensium.com>
7979 L:      linux-iio@vger.kernel.org
7980 S:      Maintained
7981 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7982 F:      drivers/counter/ftm-quaddec.c
7983
7984 FLOPPY DRIVER
7985 M:      Denis Efremov <efremov@linux.com>
7986 L:      linux-block@vger.kernel.org
7987 S:      Odd Fixes
7988 F:      drivers/block/floppy.c
7989
7990 FLYSKY FSIA6B RC RECEIVER
7991 M:      Markus Koch <markus@notsyncing.net>
7992 L:      linux-input@vger.kernel.org
7993 S:      Maintained
7994 F:      drivers/input/joystick/fsia6b.c
7995
7996 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7997 M:      Geoffrey D. Bennett <g@b4.vu>
7998 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7999 S:      Maintained
8000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8001 F:      sound/usb/mixer_scarlett_gen2.c
8002
8003 FORCEDETH GIGABIT ETHERNET DRIVER
8004 M:      Rain River <rain.1986.08.12@gmail.com>
8005 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8006 L:      netdev@vger.kernel.org
8007 S:      Maintained
8008 F:      drivers/net/ethernet/nvidia/*
8009
8010 FORTIFY_SOURCE
8011 M:      Kees Cook <keescook@chromium.org>
8012 L:      linux-hardening@vger.kernel.org
8013 S:      Supported
8014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8015 F:      include/linux/fortify-string.h
8016 F:      lib/fortify_kunit.c
8017 F:      lib/memcpy_kunit.c
8018 F:      lib/strscpy_kunit.c
8019 F:      lib/test_fortify/*
8020 F:      scripts/test_fortify.sh
8021 K:      \b__NO_FORTIFY\b
8022
8023 FPGA DFL DRIVERS
8024 M:      Wu Hao <hao.wu@intel.com>
8025 R:      Tom Rix <trix@redhat.com>
8026 L:      linux-fpga@vger.kernel.org
8027 S:      Maintained
8028 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8029 F:      Documentation/fpga/dfl.rst
8030 F:      drivers/fpga/dfl*
8031 F:      drivers/uio/uio_dfl.c
8032 F:      include/linux/dfl.h
8033 F:      include/uapi/linux/fpga-dfl.h
8034
8035 FPGA MANAGER FRAMEWORK
8036 M:      Moritz Fischer <mdf@kernel.org>
8037 M:      Wu Hao <hao.wu@intel.com>
8038 M:      Xu Yilun <yilun.xu@intel.com>
8039 R:      Tom Rix <trix@redhat.com>
8040 L:      linux-fpga@vger.kernel.org
8041 S:      Maintained
8042 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8044 F:      Documentation/devicetree/bindings/fpga/
8045 F:      Documentation/driver-api/fpga/
8046 F:      Documentation/fpga/
8047 F:      drivers/fpga/
8048 F:      include/linux/fpga/
8049
8050 INTEL MAX10 BMC SECURE UPDATES
8051 M:      Russ Weight <russell.h.weight@intel.com>
8052 L:      linux-fpga@vger.kernel.org
8053 S:      Maintained
8054 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8055 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8056
8057 MICROCHIP POLARFIRE FPGA DRIVERS
8058 M:      Conor Dooley <conor.dooley@microchip.com>
8059 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8060 L:      linux-fpga@vger.kernel.org
8061 S:      Supported
8062 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8063 F:      drivers/fpga/microchip-spi.c
8064
8065 FPU EMULATOR
8066 M:      Bill Metzenthen <billm@melbpc.org.au>
8067 S:      Maintained
8068 W:      https://floatingpoint.billm.au/
8069 F:      arch/x86/math-emu/
8070
8071 FRAMEBUFFER CORE
8072 M:      Daniel Vetter <daniel@ffwll.ch>
8073 F:      drivers/video/fbdev/core/
8074 S:      Odd Fixes
8075 T:      git git://anongit.freedesktop.org/drm/drm-misc
8076
8077 FRAMEBUFFER LAYER
8078 M:      Helge Deller <deller@gmx.de>
8079 L:      linux-fbdev@vger.kernel.org
8080 L:      dri-devel@lists.freedesktop.org
8081 S:      Maintained
8082 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8084 F:      Documentation/fb/
8085 F:      drivers/video/
8086 F:      include/linux/fb.h
8087 F:      include/uapi/linux/fb.h
8088 F:      include/uapi/video/
8089 F:      include/video/
8090
8091 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8092 M:      Horia Geantă <horia.geanta@nxp.com>
8093 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8094 M:      Gaurav Jain <gaurav.jain@nxp.com>
8095 L:      linux-crypto@vger.kernel.org
8096 S:      Maintained
8097 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8098 F:      drivers/crypto/caam/
8099
8100 FREESCALE COLDFIRE M5441X MMC DRIVER
8101 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8102 L:      linux-mmc@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8105 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8106
8107 FREESCALE DIU FRAMEBUFFER DRIVER
8108 M:      Timur Tabi <timur@kernel.org>
8109 L:      linux-fbdev@vger.kernel.org
8110 S:      Maintained
8111 F:      drivers/video/fbdev/fsl-diu-fb.*
8112
8113 FREESCALE DMA DRIVER
8114 M:      Li Yang <leoyang.li@nxp.com>
8115 M:      Zhang Wei <zw@zh-kernel.org>
8116 L:      linuxppc-dev@lists.ozlabs.org
8117 S:      Maintained
8118 F:      drivers/dma/fsldma.*
8119
8120 FREESCALE DSPI DRIVER
8121 M:      Vladimir Oltean <olteanv@gmail.com>
8122 L:      linux-spi@vger.kernel.org
8123 S:      Maintained
8124 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8125 F:      drivers/spi/spi-fsl-dspi.c
8126 F:      include/linux/spi/spi-fsl-dspi.h
8127
8128 FREESCALE ENETC ETHERNET DRIVERS
8129 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8130 L:      netdev@vger.kernel.org
8131 S:      Maintained
8132 F:      drivers/net/ethernet/freescale/enetc/
8133
8134 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8135 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8136 L:      netdev@vger.kernel.org
8137 S:      Maintained
8138 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8139 F:      drivers/net/ethernet/freescale/gianfar*
8140
8141 FREESCALE GPMI NAND DRIVER
8142 M:      Han Xu <han.xu@nxp.com>
8143 L:      linux-mtd@lists.infradead.org
8144 S:      Maintained
8145 F:      drivers/mtd/nand/raw/gpmi-nand/*
8146
8147 FREESCALE I2C CPM DRIVER
8148 M:      Jochen Friedrich <jochen@scram.de>
8149 L:      linuxppc-dev@lists.ozlabs.org
8150 L:      linux-i2c@vger.kernel.org
8151 S:      Maintained
8152 F:      drivers/i2c/busses/i2c-cpm.c
8153
8154 FREESCALE IMX / MXC FEC DRIVER
8155 M:      Wei Fang <wei.fang@nxp.com>
8156 R:      Shenwei Wang <shenwei.wang@nxp.com>
8157 R:      Clark Wang <xiaoning.wang@nxp.com>
8158 R:      NXP Linux Team <linux-imx@nxp.com>
8159 L:      netdev@vger.kernel.org
8160 S:      Maintained
8161 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8162 F:      drivers/net/ethernet/freescale/fec.h
8163 F:      drivers/net/ethernet/freescale/fec_main.c
8164 F:      drivers/net/ethernet/freescale/fec_ptp.c
8165
8166 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8167 M:      Sascha Hauer <s.hauer@pengutronix.de>
8168 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8169 L:      linux-fbdev@vger.kernel.org
8170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8171 S:      Maintained
8172 F:      drivers/video/fbdev/imxfb.c
8173
8174 FREESCALE IMX DDR PMU DRIVER
8175 M:      Frank Li <Frank.li@nxp.com>
8176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8177 S:      Maintained
8178 F:      Documentation/admin-guide/perf/imx-ddr.rst
8179 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8180 F:      drivers/perf/fsl_imx8_ddr_perf.c
8181
8182 FREESCALE IMX I2C DRIVER
8183 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8184 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8185 L:      linux-i2c@vger.kernel.org
8186 S:      Maintained
8187 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8188 F:      drivers/i2c/busses/i2c-imx.c
8189
8190 FREESCALE IMX LPI2C DRIVER
8191 M:      Dong Aisheng <aisheng.dong@nxp.com>
8192 L:      linux-i2c@vger.kernel.org
8193 L:      linux-imx@nxp.com
8194 S:      Maintained
8195 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8196 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8197
8198 FREESCALE MPC I2C DRIVER
8199 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8200 L:      linux-i2c@vger.kernel.org
8201 S:      Maintained
8202 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8203 F:      drivers/i2c/busses/i2c-mpc.c
8204
8205 FREESCALE QORIQ DPAA ETHERNET DRIVER
8206 M:      Madalin Bucur <madalin.bucur@nxp.com>
8207 L:      netdev@vger.kernel.org
8208 S:      Maintained
8209 F:      drivers/net/ethernet/freescale/dpaa
8210
8211 FREESCALE QORIQ DPAA FMAN DRIVER
8212 M:      Madalin Bucur <madalin.bucur@nxp.com>
8213 L:      netdev@vger.kernel.org
8214 S:      Maintained
8215 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8216 F:      drivers/net/ethernet/freescale/fman
8217
8218 FREESCALE QORIQ PTP CLOCK DRIVER
8219 M:      Yangbo Lu <yangbo.lu@nxp.com>
8220 L:      netdev@vger.kernel.org
8221 S:      Maintained
8222 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8223 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8224 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8225 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8226 F:      drivers/ptp/ptp_qoriq.c
8227 F:      drivers/ptp/ptp_qoriq_debugfs.c
8228 F:      include/linux/fsl/ptp_qoriq.h
8229
8230 FREESCALE QUAD SPI DRIVER
8231 M:      Han Xu <han.xu@nxp.com>
8232 L:      linux-spi@vger.kernel.org
8233 S:      Maintained
8234 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8235 F:      drivers/spi/spi-fsl-qspi.c
8236
8237 FREESCALE QUICC ENGINE LIBRARY
8238 M:      Qiang Zhao <qiang.zhao@nxp.com>
8239 L:      linuxppc-dev@lists.ozlabs.org
8240 S:      Maintained
8241 F:      drivers/soc/fsl/qe/
8242 F:      include/soc/fsl/qe/
8243
8244 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8245 M:      Li Yang <leoyang.li@nxp.com>
8246 L:      netdev@vger.kernel.org
8247 L:      linuxppc-dev@lists.ozlabs.org
8248 S:      Maintained
8249 F:      drivers/net/ethernet/freescale/ucc_geth*
8250
8251 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8252 M:      Zhao Qiang <qiang.zhao@nxp.com>
8253 L:      netdev@vger.kernel.org
8254 L:      linuxppc-dev@lists.ozlabs.org
8255 S:      Maintained
8256 F:      drivers/net/wan/fsl_ucc_hdlc*
8257
8258 FREESCALE QUICC ENGINE UCC UART DRIVER
8259 M:      Timur Tabi <timur@kernel.org>
8260 L:      linuxppc-dev@lists.ozlabs.org
8261 S:      Maintained
8262 F:      drivers/tty/serial/ucc_uart.c
8263
8264 FREESCALE SOC DRIVERS
8265 M:      Li Yang <leoyang.li@nxp.com>
8266 L:      linuxppc-dev@lists.ozlabs.org
8267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8268 S:      Maintained
8269 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8270 F:      Documentation/devicetree/bindings/soc/fsl/
8271 F:      drivers/soc/fsl/
8272 F:      include/linux/fsl/
8273 F:      include/soc/fsl/
8274
8275 FREESCALE SOC FS_ENET DRIVER
8276 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8277 L:      linuxppc-dev@lists.ozlabs.org
8278 L:      netdev@vger.kernel.org
8279 S:      Maintained
8280 F:      drivers/net/ethernet/freescale/fs_enet/
8281 F:      include/linux/fs_enet_pd.h
8282
8283 FREESCALE SOC SOUND DRIVERS
8284 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8285 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8286 R:      Fabio Estevam <festevam@gmail.com>
8287 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8288 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8289 L:      linuxppc-dev@lists.ozlabs.org
8290 S:      Maintained
8291 F:      sound/soc/fsl/fsl*
8292 F:      sound/soc/fsl/imx*
8293 F:      sound/soc/fsl/mpc8610_hpcd.c
8294
8295 FREESCALE USB PERIPHERAL DRIVERS
8296 M:      Li Yang <leoyang.li@nxp.com>
8297 L:      linux-usb@vger.kernel.org
8298 L:      linuxppc-dev@lists.ozlabs.org
8299 S:      Maintained
8300 F:      drivers/usb/gadget/udc/fsl*
8301
8302 FREESCALE USB PHY DRIVER
8303 M:      Ran Wang <ran.wang_1@nxp.com>
8304 L:      linux-usb@vger.kernel.org
8305 L:      linuxppc-dev@lists.ozlabs.org
8306 S:      Maintained
8307 F:      drivers/usb/phy/phy-fsl-usb*
8308
8309 FREEVXFS FILESYSTEM
8310 M:      Christoph Hellwig <hch@infradead.org>
8311 S:      Maintained
8312 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8313 F:      fs/freevxfs/
8314
8315 FREEZER
8316 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8317 M:      Pavel Machek <pavel@ucw.cz>
8318 L:      linux-pm@vger.kernel.org
8319 S:      Supported
8320 F:      Documentation/power/freezing-of-tasks.rst
8321 F:      include/linux/freezer.h
8322 F:      kernel/freezer.c
8323
8324 FRONTSWAP API
8325 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8326 L:      linux-kernel@vger.kernel.org
8327 S:      Maintained
8328 F:      include/linux/frontswap.h
8329 F:      mm/frontswap.c
8330
8331 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8332 M:      David Howells <dhowells@redhat.com>
8333 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8334 S:      Supported
8335 F:      Documentation/filesystems/caching/
8336 F:      fs/fscache/
8337 F:      include/linux/fscache*.h
8338
8339 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8340 M:      Eric Biggers <ebiggers@kernel.org>
8341 M:      Theodore Y. Ts'o <tytso@mit.edu>
8342 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8343 L:      linux-fscrypt@vger.kernel.org
8344 S:      Supported
8345 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8346 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8347 F:      Documentation/filesystems/fscrypt.rst
8348 F:      fs/crypto/
8349 F:      include/linux/fscrypt.h
8350 F:      include/uapi/linux/fscrypt.h
8351
8352 FSI SUBSYSTEM
8353 M:      Jeremy Kerr <jk@ozlabs.org>
8354 M:      Joel Stanley <joel@jms.id.au>
8355 R:      Alistar Popple <alistair@popple.id.au>
8356 R:      Eddie James <eajames@linux.ibm.com>
8357 L:      linux-fsi@lists.ozlabs.org
8358 S:      Supported
8359 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8361 F:      drivers/fsi/
8362 F:      include/linux/fsi*.h
8363 F:      include/trace/events/fsi*.h
8364
8365 FSI-ATTACHED I2C DRIVER
8366 M:      Eddie James <eajames@linux.ibm.com>
8367 L:      linux-i2c@vger.kernel.org
8368 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8369 S:      Maintained
8370 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8371 F:      drivers/i2c/busses/i2c-fsi.c
8372
8373 FSI-ATTACHED SPI DRIVER
8374 M:      Eddie James <eajames@linux.ibm.com>
8375 L:      linux-spi@vger.kernel.org
8376 S:      Maintained
8377 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8378 F:      drivers/spi/spi-fsi.c
8379
8380 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8381 M:      Jan Kara <jack@suse.cz>
8382 R:      Amir Goldstein <amir73il@gmail.com>
8383 L:      linux-fsdevel@vger.kernel.org
8384 S:      Maintained
8385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8386 F:      fs/notify/
8387 F:      include/linux/fsnotify*.h
8388
8389 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8390 M:      Eric Biggers <ebiggers@kernel.org>
8391 M:      Theodore Y. Ts'o <tytso@mit.edu>
8392 L:      fsverity@lists.linux.dev
8393 S:      Supported
8394 Q:      https://patchwork.kernel.org/project/fsverity/list/
8395 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8396 F:      Documentation/filesystems/fsverity.rst
8397 F:      fs/verity/
8398 F:      include/linux/fsverity.h
8399 F:      include/uapi/linux/fsverity.h
8400
8401 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8402 M:      Michael Zaidman <michael.zaidman@gmail.com>
8403 L:      linux-i2c@vger.kernel.org
8404 L:      linux-input@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/hid/hid-ft260.c
8407
8408 FUJITSU LAPTOP EXTRAS
8409 M:      Jonathan Woithe <jwoithe@just42.net>
8410 L:      platform-driver-x86@vger.kernel.org
8411 S:      Maintained
8412 F:      drivers/platform/x86/fujitsu-laptop.c
8413
8414 FUJITSU TABLET EXTRAS
8415 M:      Robert Gerlach <khnz@gmx.de>
8416 L:      platform-driver-x86@vger.kernel.org
8417 S:      Maintained
8418 F:      drivers/platform/x86/fujitsu-tablet.c
8419
8420 FUNCTION HOOKS (FTRACE)
8421 M:      Steven Rostedt <rostedt@goodmis.org>
8422 M:      Masami Hiramatsu <mhiramat@kernel.org>
8423 R:      Mark Rutland <mark.rutland@arm.com>
8424 L:      linux-kernel@vger.kernel.org
8425 L:      linux-trace-kernel@vger.kernel.org
8426 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8427 S:      Maintained
8428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8429 F:      Documentation/trace/ftrace*
8430 F:      kernel/trace/ftrace*
8431 F:      kernel/trace/fgraph.c
8432 F:      arch/*/*/*/*ftrace*
8433 F:      arch/*/*/*ftrace*
8434 F:      include/*/ftrace.h
8435 F:      samples/ftrace
8436
8437 FUNGIBLE ETHERNET DRIVERS
8438 M:      Dimitris Michailidis <dmichail@fungible.com>
8439 L:      netdev@vger.kernel.org
8440 S:      Supported
8441 F:      drivers/net/ethernet/fungible/
8442
8443 FUSE: FILESYSTEM IN USERSPACE
8444 M:      Miklos Szeredi <miklos@szeredi.hu>
8445 L:      linux-fsdevel@vger.kernel.org
8446 S:      Maintained
8447 W:      https://github.com/libfuse/
8448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8449 F:      Documentation/filesystems/fuse.rst
8450 F:      fs/fuse/
8451 F:      include/uapi/linux/fuse.h
8452
8453 FUTEX SUBSYSTEM
8454 M:      Thomas Gleixner <tglx@linutronix.de>
8455 M:      Ingo Molnar <mingo@redhat.com>
8456 R:      Peter Zijlstra <peterz@infradead.org>
8457 R:      Darren Hart <dvhart@infradead.org>
8458 R:      Davidlohr Bueso <dave@stgolabs.net>
8459 R:      André Almeida <andrealmeid@igalia.com>
8460 L:      linux-kernel@vger.kernel.org
8461 S:      Maintained
8462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8463 F:      Documentation/locking/*futex*
8464 F:      include/asm-generic/futex.h
8465 F:      include/linux/futex.h
8466 F:      include/uapi/linux/futex.h
8467 F:      kernel/futex/*
8468 F:      tools/perf/bench/futex*
8469 F:      tools/testing/selftests/futex/
8470
8471 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8472 M:      Tim Harvey <tharvey@gateworks.com>
8473 S:      Maintained
8474 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8475 F:      drivers/mfd/gateworks-gsc.c
8476 F:      include/linux/mfd/gsc.h
8477 F:      Documentation/hwmon/gsc-hwmon.rst
8478 F:      drivers/hwmon/gsc-hwmon.c
8479 F:      include/linux/platform_data/gsc_hwmon.h
8480
8481 GCC PLUGINS
8482 M:      Kees Cook <keescook@chromium.org>
8483 L:      linux-hardening@vger.kernel.org
8484 S:      Maintained
8485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8486 F:      Documentation/kbuild/gcc-plugins.rst
8487 F:      scripts/Makefile.gcc-plugins
8488 F:      scripts/gcc-plugins/
8489
8490 GCOV BASED KERNEL PROFILING
8491 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8492 S:      Maintained
8493 F:      Documentation/dev-tools/gcov.rst
8494 F:      kernel/gcov/
8495
8496 GDB KERNEL DEBUGGING HELPER SCRIPTS
8497 M:      Jan Kiszka <jan.kiszka@siemens.com>
8498 M:      Kieran Bingham <kbingham@kernel.org>
8499 S:      Supported
8500 F:      scripts/gdb/
8501
8502 GEMINI CRYPTO DRIVER
8503 M:      Corentin Labbe <clabbe@baylibre.com>
8504 L:      linux-crypto@vger.kernel.org
8505 S:      Maintained
8506 F:      drivers/crypto/gemini/
8507
8508 GEMTEK FM RADIO RECEIVER DRIVER
8509 M:      Hans Verkuil <hverkuil@xs4all.nl>
8510 L:      linux-media@vger.kernel.org
8511 S:      Maintained
8512 W:      https://linuxtv.org
8513 T:      git git://linuxtv.org/media_tree.git
8514 F:      drivers/media/radio/radio-gemtek*
8515
8516 GENERIC ARCHITECTURE TOPOLOGY
8517 M:      Sudeep Holla <sudeep.holla@arm.com>
8518 L:      linux-kernel@vger.kernel.org
8519 S:      Maintained
8520 F:      drivers/base/arch_topology.c
8521 F:      include/linux/arch_topology.h
8522
8523 GENERIC ENTRY CODE
8524 M:      Thomas Gleixner <tglx@linutronix.de>
8525 M:      Peter Zijlstra <peterz@infradead.org>
8526 M:      Andy Lutomirski <luto@kernel.org>
8527 L:      linux-kernel@vger.kernel.org
8528 S:      Maintained
8529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8530 F:      include/linux/entry-common.h
8531 F:      include/linux/entry-kvm.h
8532 F:      kernel/entry/
8533
8534 GENERIC GPIO I2C DRIVER
8535 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8536 S:      Supported
8537 F:      drivers/i2c/busses/i2c-gpio.c
8538 F:      include/linux/platform_data/i2c-gpio.h
8539
8540 GENERIC GPIO I2C MULTIPLEXER DRIVER
8541 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8542 L:      linux-i2c@vger.kernel.org
8543 S:      Supported
8544 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8545 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8546 F:      include/linux/platform_data/i2c-mux-gpio.h
8547
8548 GENERIC HDLC (WAN) DRIVERS
8549 M:      Krzysztof Halasa <khc@pm.waw.pl>
8550 S:      Maintained
8551 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8552 F:      drivers/net/wan/c101.c
8553 F:      drivers/net/wan/hd6457*
8554 F:      drivers/net/wan/hdlc*
8555 F:      drivers/net/wan/n2.c
8556 F:      drivers/net/wan/pc300too.c
8557 F:      drivers/net/wan/pci200syn.c
8558 F:      drivers/net/wan/wanxl*
8559
8560 GENERIC INCLUDE/ASM HEADER FILES
8561 M:      Arnd Bergmann <arnd@arndb.de>
8562 L:      linux-arch@vger.kernel.org
8563 S:      Maintained
8564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8565 F:      include/asm-generic/
8566 F:      include/uapi/asm-generic/
8567
8568 GENERIC PHY FRAMEWORK
8569 M:      Vinod Koul <vkoul@kernel.org>
8570 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8571 L:      linux-phy@lists.infradead.org
8572 S:      Supported
8573 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8575 F:      Documentation/devicetree/bindings/phy/
8576 F:      drivers/phy/
8577 F:      include/dt-bindings/phy/
8578 F:      include/linux/phy/
8579
8580 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8581 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8582 S:      Supported
8583 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8584
8585 GENERIC PM DOMAINS
8586 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8587 M:      Kevin Hilman <khilman@kernel.org>
8588 M:      Ulf Hansson <ulf.hansson@linaro.org>
8589 L:      linux-pm@vger.kernel.org
8590 S:      Supported
8591 F:      Documentation/devicetree/bindings/power/power?domain*
8592 F:      drivers/base/power/domain*.c
8593 F:      include/linux/pm_domain.h
8594
8595 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8596 M:      Eugen Hristev <eugen.hristev@microchip.com>
8597 L:      linux-input@vger.kernel.org
8598 S:      Maintained
8599 F:      drivers/input/touchscreen/resistive-adc-touch.c
8600
8601 GENERIC STRING LIBRARY
8602 R:      Andy Shevchenko <andy@kernel.org>
8603 S:      Maintained
8604 F:      lib/string.c
8605 F:      lib/string_helpers.c
8606 F:      lib/test_string.c
8607 F:      lib/test-string_helpers.c
8608
8609 GENERIC UIO DRIVER FOR PCI DEVICES
8610 M:      "Michael S. Tsirkin" <mst@redhat.com>
8611 L:      kvm@vger.kernel.org
8612 S:      Supported
8613 F:      drivers/uio/uio_pci_generic.c
8614
8615 GENERIC VDSO LIBRARY
8616 M:      Andy Lutomirski <luto@kernel.org>
8617 M:      Thomas Gleixner <tglx@linutronix.de>
8618 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8619 L:      linux-kernel@vger.kernel.org
8620 S:      Maintained
8621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8622 F:      include/asm-generic/vdso/vsyscall.h
8623 F:      include/vdso/
8624 F:      kernel/time/vsyscall.c
8625 F:      lib/vdso/
8626
8627 GENWQE (IBM Generic Workqueue Card)
8628 M:      Frank Haverkamp <haver@linux.ibm.com>
8629 S:      Supported
8630 F:      drivers/misc/genwqe/
8631
8632 GET_MAINTAINER SCRIPT
8633 M:      Joe Perches <joe@perches.com>
8634 S:      Maintained
8635 F:      scripts/get_maintainer.pl
8636
8637 GFS2 FILE SYSTEM
8638 M:      Bob Peterson <rpeterso@redhat.com>
8639 M:      Andreas Gruenbacher <agruenba@redhat.com>
8640 L:      cluster-devel@redhat.com
8641 S:      Supported
8642 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8644 F:      Documentation/filesystems/gfs2*
8645 F:      fs/gfs2/
8646 F:      include/uapi/linux/gfs2_ondisk.h
8647
8648 GIGABYTE WMI DRIVER
8649 M:      Thomas Weißschuh <thomas@weissschuh.net>
8650 L:      platform-driver-x86@vger.kernel.org
8651 S:      Maintained
8652 F:      drivers/platform/x86/gigabyte-wmi.c
8653
8654 GNSS SUBSYSTEM
8655 M:      Johan Hovold <johan@kernel.org>
8656 S:      Maintained
8657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8658 F:      Documentation/ABI/testing/sysfs-class-gnss
8659 F:      Documentation/devicetree/bindings/gnss/
8660 F:      drivers/gnss/
8661 F:      include/linux/gnss.h
8662
8663 GO7007 MPEG CODEC
8664 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8665 L:      linux-media@vger.kernel.org
8666 S:      Maintained
8667 F:      drivers/media/usb/go7007/
8668
8669 GOODIX TOUCHSCREEN
8670 M:      Bastien Nocera <hadess@hadess.net>
8671 M:      Hans de Goede <hdegoede@redhat.com>
8672 L:      linux-input@vger.kernel.org
8673 S:      Maintained
8674 F:      drivers/input/touchscreen/goodix*
8675
8676 GOOGLE ETHERNET DRIVERS
8677 M:      Jeroen de Borst <jeroendb@google.com>
8678 M:      Catherine Sullivan <csully@google.com>
8679 R:      Shailend Chand <shailend@google.com>
8680 L:      netdev@vger.kernel.org
8681 S:      Supported
8682 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8683 F:      drivers/net/ethernet/google
8684
8685 GPD POCKET FAN DRIVER
8686 M:      Hans de Goede <hdegoede@redhat.com>
8687 L:      platform-driver-x86@vger.kernel.org
8688 S:      Maintained
8689 F:      drivers/platform/x86/gpd-pocket-fan.c
8690
8691 GPIO ACPI SUPPORT
8692 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8693 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8694 L:      linux-gpio@vger.kernel.org
8695 L:      linux-acpi@vger.kernel.org
8696 S:      Supported
8697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8698 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8699 F:      drivers/gpio/gpiolib-acpi.c
8700 F:      drivers/gpio/gpiolib-acpi.h
8701
8702 GPIO AGGREGATOR
8703 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8704 L:      linux-gpio@vger.kernel.org
8705 S:      Supported
8706 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8707 F:      drivers/gpio/gpio-aggregator.c
8708
8709 GPIO IR Transmitter
8710 M:      Sean Young <sean@mess.org>
8711 L:      linux-media@vger.kernel.org
8712 S:      Maintained
8713 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8714 F:      drivers/media/rc/gpio-ir-tx.c
8715
8716 GPIO MOCKUP DRIVER
8717 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8718 L:      linux-gpio@vger.kernel.org
8719 S:      Maintained
8720 F:      drivers/gpio/gpio-mockup.c
8721 F:      tools/testing/selftests/gpio/
8722
8723 GPIO REGMAP
8724 R:      Michael Walle <michael@walle.cc>
8725 S:      Maintained
8726 F:      drivers/gpio/gpio-regmap.c
8727 F:      include/linux/gpio/regmap.h
8728
8729 GPIO SUBSYSTEM
8730 M:      Linus Walleij <linus.walleij@linaro.org>
8731 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8732 L:      linux-gpio@vger.kernel.org
8733 S:      Maintained
8734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8735 F:      Documentation/ABI/obsolete/sysfs-gpio
8736 F:      Documentation/ABI/testing/gpio-cdev
8737 F:      Documentation/admin-guide/gpio/
8738 F:      Documentation/devicetree/bindings/gpio/
8739 F:      Documentation/driver-api/gpio/
8740 F:      drivers/gpio/
8741 F:      include/asm-generic/gpio.h
8742 F:      include/dt-bindings/gpio/
8743 F:      include/linux/gpio.h
8744 F:      include/linux/gpio/
8745 F:      include/linux/of_gpio.h
8746 F:      include/uapi/linux/gpio.h
8747 F:      tools/gpio/
8748
8749 GRE DEMULTIPLEXER DRIVER
8750 M:      Dmitry Kozlov <xeb@mail.ru>
8751 L:      netdev@vger.kernel.org
8752 S:      Maintained
8753 F:      include/net/gre.h
8754 F:      net/ipv4/gre_demux.c
8755 F:      net/ipv4/gre_offload.c
8756
8757 GRETH 10/100/1G Ethernet MAC device driver
8758 M:      Andreas Larsson <andreas@gaisler.com>
8759 L:      netdev@vger.kernel.org
8760 S:      Maintained
8761 F:      drivers/net/ethernet/aeroflex/
8762
8763 GREYBUS AUDIO PROTOCOLS DRIVERS
8764 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8765 M:      Mark Greer <mgreer@animalcreek.com>
8766 S:      Maintained
8767 F:      drivers/staging/greybus/audio_apbridgea.c
8768 F:      drivers/staging/greybus/audio_apbridgea.h
8769 F:      drivers/staging/greybus/audio_codec.c
8770 F:      drivers/staging/greybus/audio_codec.h
8771 F:      drivers/staging/greybus/audio_gb.c
8772 F:      drivers/staging/greybus/audio_manager.c
8773 F:      drivers/staging/greybus/audio_manager.h
8774 F:      drivers/staging/greybus/audio_manager_module.c
8775 F:      drivers/staging/greybus/audio_manager_private.h
8776 F:      drivers/staging/greybus/audio_manager_sysfs.c
8777 F:      drivers/staging/greybus/audio_module.c
8778 F:      drivers/staging/greybus/audio_topology.c
8779
8780 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8781 M:      Viresh Kumar <vireshk@kernel.org>
8782 S:      Maintained
8783 F:      drivers/staging/greybus/authentication.c
8784 F:      drivers/staging/greybus/bootrom.c
8785 F:      drivers/staging/greybus/firmware.h
8786 F:      drivers/staging/greybus/fw-core.c
8787 F:      drivers/staging/greybus/fw-download.c
8788 F:      drivers/staging/greybus/fw-management.c
8789 F:      drivers/staging/greybus/greybus_authentication.h
8790 F:      drivers/staging/greybus/greybus_firmware.h
8791 F:      drivers/staging/greybus/hid.c
8792 F:      drivers/staging/greybus/i2c.c
8793 F:      drivers/staging/greybus/spi.c
8794 F:      drivers/staging/greybus/spilib.c
8795 F:      drivers/staging/greybus/spilib.h
8796
8797 GREYBUS LOOPBACK DRIVER
8798 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8799 S:      Maintained
8800 F:      drivers/staging/greybus/loopback.c
8801
8802 GREYBUS PLATFORM DRIVERS
8803 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8804 S:      Maintained
8805 F:      drivers/staging/greybus/arche-apb-ctrl.c
8806 F:      drivers/staging/greybus/arche-platform.c
8807 F:      drivers/staging/greybus/arche_platform.h
8808
8809 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8810 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8811 S:      Maintained
8812 F:      drivers/staging/greybus/gpio.c
8813 F:      drivers/staging/greybus/light.c
8814 F:      drivers/staging/greybus/power_supply.c
8815 F:      drivers/staging/greybus/sdio.c
8816 F:      drivers/staging/greybus/spi.c
8817 F:      drivers/staging/greybus/spilib.c
8818
8819 GREYBUS SUBSYSTEM
8820 M:      Johan Hovold <johan@kernel.org>
8821 M:      Alex Elder <elder@kernel.org>
8822 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8823 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8824 S:      Maintained
8825 F:      drivers/greybus/
8826 F:      drivers/staging/greybus/
8827 F:      include/linux/greybus.h
8828 F:      include/linux/greybus/
8829
8830 GREYBUS UART PROTOCOLS DRIVERS
8831 M:      David Lin <dtwlin@gmail.com>
8832 S:      Maintained
8833 F:      drivers/staging/greybus/log.c
8834 F:      drivers/staging/greybus/uart.c
8835
8836 GS1662 VIDEO SERIALIZER
8837 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8838 L:      linux-media@vger.kernel.org
8839 S:      Maintained
8840 T:      git git://linuxtv.org/media_tree.git
8841 F:      drivers/media/spi/gs1662.c
8842
8843 GSPCA FINEPIX SUBDRIVER
8844 M:      Frank Zago <frank@zago.net>
8845 L:      linux-media@vger.kernel.org
8846 S:      Maintained
8847 T:      git git://linuxtv.org/media_tree.git
8848 F:      drivers/media/usb/gspca/finepix.c
8849
8850 GSPCA GL860 SUBDRIVER
8851 M:      Olivier Lorin <o.lorin@laposte.net>
8852 L:      linux-media@vger.kernel.org
8853 S:      Maintained
8854 T:      git git://linuxtv.org/media_tree.git
8855 F:      drivers/media/usb/gspca/gl860/
8856
8857 GSPCA M5602 SUBDRIVER
8858 M:      Erik Andren <erik.andren@gmail.com>
8859 L:      linux-media@vger.kernel.org
8860 S:      Maintained
8861 T:      git git://linuxtv.org/media_tree.git
8862 F:      drivers/media/usb/gspca/m5602/
8863
8864 GSPCA PAC207 SONIXB SUBDRIVER
8865 M:      Hans Verkuil <hverkuil@xs4all.nl>
8866 L:      linux-media@vger.kernel.org
8867 S:      Odd Fixes
8868 T:      git git://linuxtv.org/media_tree.git
8869 F:      drivers/media/usb/gspca/pac207.c
8870
8871 GSPCA SN9C20X SUBDRIVER
8872 M:      Brian Johnson <brijohn@gmail.com>
8873 L:      linux-media@vger.kernel.org
8874 S:      Maintained
8875 T:      git git://linuxtv.org/media_tree.git
8876 F:      drivers/media/usb/gspca/sn9c20x.c
8877
8878 GSPCA T613 SUBDRIVER
8879 M:      Leandro Costantino <lcostantino@gmail.com>
8880 L:      linux-media@vger.kernel.org
8881 S:      Maintained
8882 T:      git git://linuxtv.org/media_tree.git
8883 F:      drivers/media/usb/gspca/t613.c
8884
8885 GSPCA USB WEBCAM DRIVER
8886 M:      Hans Verkuil <hverkuil@xs4all.nl>
8887 L:      linux-media@vger.kernel.org
8888 S:      Odd Fixes
8889 T:      git git://linuxtv.org/media_tree.git
8890 F:      drivers/media/usb/gspca/
8891
8892 GTP (GPRS Tunneling Protocol)
8893 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8894 M:      Harald Welte <laforge@gnumonks.org>
8895 L:      osmocom-net-gprs@lists.osmocom.org
8896 S:      Maintained
8897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8898 F:      drivers/net/gtp.c
8899
8900 GUID PARTITION TABLE (GPT)
8901 M:      Davidlohr Bueso <dave@stgolabs.net>
8902 L:      linux-efi@vger.kernel.org
8903 S:      Maintained
8904 F:      block/partitions/efi.*
8905
8906 HABANALABS PCI DRIVER
8907 M:      Oded Gabbay <ogabbay@kernel.org>
8908 L:      dri-devel@lists.freedesktop.org
8909 S:      Supported
8910 C:      irc://irc.oftc.net/dri-devel
8911 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8912 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8913 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8914 F:      drivers/accel/habanalabs/
8915 F:      include/trace/events/habanalabs.h
8916 F:      include/uapi/drm/habanalabs_accel.h
8917
8918 HACKRF MEDIA DRIVER
8919 M:      Antti Palosaari <crope@iki.fi>
8920 L:      linux-media@vger.kernel.org
8921 S:      Maintained
8922 W:      https://linuxtv.org
8923 W:      http://palosaari.fi/linux/
8924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8925 T:      git git://linuxtv.org/anttip/media_tree.git
8926 F:      drivers/media/usb/hackrf/
8927
8928 HANTRO VPU CODEC DRIVER
8929 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8930 M:      Philipp Zabel <p.zabel@pengutronix.de>
8931 L:      linux-media@vger.kernel.org
8932 L:      linux-rockchip@lists.infradead.org
8933 S:      Maintained
8934 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8935 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8936 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8937 F:      drivers/media/platform/verisilicon/
8938
8939 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8940 M:      Frank Seidel <frank@f-seidel.de>
8941 L:      platform-driver-x86@vger.kernel.org
8942 S:      Maintained
8943 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8944 F:      drivers/platform/x86/hdaps.c
8945
8946 HARDWARE MONITORING
8947 M:      Jean Delvare <jdelvare@suse.com>
8948 M:      Guenter Roeck <linux@roeck-us.net>
8949 L:      linux-hwmon@vger.kernel.org
8950 S:      Maintained
8951 W:      http://hwmon.wiki.kernel.org/
8952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8953 F:      Documentation/ABI/testing/sysfs-class-hwmon
8954 F:      Documentation/devicetree/bindings/hwmon/
8955 F:      Documentation/hwmon/
8956 F:      drivers/hwmon/
8957 F:      include/linux/hwmon*.h
8958 F:      include/trace/events/hwmon*.h
8959 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8960
8961 HARDWARE RANDOM NUMBER GENERATOR CORE
8962 M:      Olivia Mackall <olivia@selenic.com>
8963 M:      Herbert Xu <herbert@gondor.apana.org.au>
8964 L:      linux-crypto@vger.kernel.org
8965 S:      Odd fixes
8966 F:      Documentation/admin-guide/hw_random.rst
8967 F:      Documentation/devicetree/bindings/rng/
8968 F:      drivers/char/hw_random/
8969 F:      include/linux/hw_random.h
8970
8971 HARDWARE SPINLOCK CORE
8972 M:      Ohad Ben-Cohen <ohad@wizery.com>
8973 M:      Bjorn Andersson <andersson@kernel.org>
8974 R:      Baolin Wang <baolin.wang7@gmail.com>
8975 L:      linux-remoteproc@vger.kernel.org
8976 S:      Maintained
8977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8978 F:      Documentation/devicetree/bindings/hwlock/
8979 F:      Documentation/locking/hwspinlock.rst
8980 F:      drivers/hwspinlock/
8981 F:      include/linux/hwspinlock.h
8982
8983 HARDWARE TRACING FACILITIES
8984 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8985 S:      Maintained
8986 F:      drivers/hwtracing/
8987
8988 HARMONY SOUND DRIVER
8989 L:      linux-parisc@vger.kernel.org
8990 S:      Maintained
8991 F:      sound/parisc/harmony.*
8992
8993 HDPVR USB VIDEO ENCODER DRIVER
8994 M:      Hans Verkuil <hverkuil@xs4all.nl>
8995 L:      linux-media@vger.kernel.org
8996 S:      Odd Fixes
8997 W:      https://linuxtv.org
8998 T:      git git://linuxtv.org/media_tree.git
8999 F:      drivers/media/usb/hdpvr/
9000
9001 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9002 M:      Matt Hsiao <matt.hsiao@hpe.com>
9003 S:      Supported
9004 F:      drivers/misc/hpilo.[ch]
9005
9006 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9007 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9008 S:      Supported
9009 F:      Documentation/watchdog/hpwdt.rst
9010 F:      drivers/watchdog/hpwdt.c
9011
9012 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9013 M:      Don Brace <don.brace@microchip.com>
9014 L:      storagedev@microchip.com
9015 L:      linux-scsi@vger.kernel.org
9016 S:      Supported
9017 F:      Documentation/scsi/hpsa.rst
9018 F:      drivers/scsi/hpsa*.[ch]
9019 F:      include/linux/cciss*.h
9020 F:      include/uapi/linux/cciss*.h
9021
9022 HFI1 DRIVER
9023 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9024 L:      linux-rdma@vger.kernel.org
9025 S:      Supported
9026 F:      drivers/infiniband/hw/hfi1
9027
9028 HFS FILESYSTEM
9029 L:      linux-fsdevel@vger.kernel.org
9030 S:      Orphan
9031 F:      Documentation/filesystems/hfs.rst
9032 F:      fs/hfs/
9033
9034 HFSPLUS FILESYSTEM
9035 L:      linux-fsdevel@vger.kernel.org
9036 S:      Orphan
9037 F:      Documentation/filesystems/hfsplus.rst
9038 F:      fs/hfsplus/
9039
9040 HGA FRAMEBUFFER DRIVER
9041 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9042 L:      linux-nvidia@lists.surfsouth.com
9043 S:      Maintained
9044 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9045 F:      drivers/video/fbdev/hgafb.c
9046
9047 HIBERNATION (aka Software Suspend, aka swsusp)
9048 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9049 M:      Pavel Machek <pavel@ucw.cz>
9050 L:      linux-pm@vger.kernel.org
9051 S:      Supported
9052 B:      https://bugzilla.kernel.org
9053 F:      arch/*/include/asm/suspend*.h
9054 F:      arch/x86/power/
9055 F:      drivers/base/power/
9056 F:      include/linux/freezer.h
9057 F:      include/linux/pm.h
9058 F:      include/linux/suspend.h
9059 F:      kernel/power/
9060
9061 HID CORE LAYER
9062 M:      Jiri Kosina <jikos@kernel.org>
9063 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9064 L:      linux-input@vger.kernel.org
9065 S:      Maintained
9066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9067 F:      Documentation/hid/
9068 F:      drivers/hid/
9069 F:      include/linux/hid*
9070 F:      include/uapi/linux/hid*
9071 F:      samples/hid/
9072 F:      tools/testing/selftests/hid/
9073
9074 HID LOGITECH DRIVERS
9075 R:      Filipe Laíns <lains@riseup.net>
9076 L:      linux-input@vger.kernel.org
9077 S:      Maintained
9078 F:      drivers/hid/hid-logitech-*
9079
9080 HID++ LOGITECH DRIVERS
9081 R:      Filipe Laíns <lains@riseup.net>
9082 R:      Bastien Nocera <hadess@hadess.net>
9083 L:      linux-input@vger.kernel.org
9084 S:      Maintained
9085 F:      drivers/hid/hid-logitech-hidpp.c
9086
9087 HID PLAYSTATION DRIVER
9088 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9089 L:      linux-input@vger.kernel.org
9090 S:      Supported
9091 F:      drivers/hid/hid-playstation.c
9092
9093 HID PHOENIX RC FLIGHT CONTROLLER
9094 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9095 L:      linux-input@vger.kernel.org
9096 S:      Maintained
9097 F:      drivers/hid/hid-pxrc.c
9098
9099 HID SENSOR HUB DRIVERS
9100 M:      Jiri Kosina <jikos@kernel.org>
9101 M:      Jonathan Cameron <jic23@kernel.org>
9102 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9103 L:      linux-input@vger.kernel.org
9104 L:      linux-iio@vger.kernel.org
9105 S:      Maintained
9106 F:      Documentation/hid/hid-sensor*
9107 F:      drivers/hid/hid-sensor-*
9108 F:      drivers/iio/*/hid-*
9109 F:      include/linux/hid-sensor-*
9110
9111 HID VRC-2 CAR CONTROLLER DRIVER
9112 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9113 L:      linux-input@vger.kernel.org
9114 S:      Maintained
9115 F:      drivers/hid/hid-vrc2.c
9116
9117 HID WACOM DRIVER
9118 M:      Ping Cheng <ping.cheng@wacom.com>
9119 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9120 L:      linux-input@vger.kernel.org
9121 S:      Maintained
9122 F:      drivers/hid/wacom.h
9123 F:      drivers/hid/wacom_*
9124
9125 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9126 M:      Thomas Gleixner <tglx@linutronix.de>
9127 L:      linux-kernel@vger.kernel.org
9128 S:      Maintained
9129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9130 F:      Documentation/timers/
9131 F:      include/linux/clockchips.h
9132 F:      include/linux/hrtimer.h
9133 F:      kernel/time/clockevents.c
9134 F:      kernel/time/hrtimer.c
9135 F:      kernel/time/timer_*.c
9136
9137 HIGH-SPEED SCC DRIVER FOR AX.25
9138 L:      linux-hams@vger.kernel.org
9139 S:      Orphan
9140 F:      drivers/net/hamradio/scc.c
9141
9142 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9143 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9144 S:      Supported
9145 W:      http://www.highpoint-tech.com
9146 F:      Documentation/scsi/hptiop.rst
9147 F:      drivers/scsi/hptiop.c
9148
9149 HIMAX HX83112B TOUCHSCREEN SUPPORT
9150 M:      Job Noorman <job@noorman.info>
9151 L:      linux-input@vger.kernel.org
9152 S:      Maintained
9153 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9154 F:      drivers/input/touchscreen/himax_hx83112b.c
9155
9156 HIPPI
9157 M:      Jes Sorensen <jes@trained-monkey.org>
9158 L:      linux-hippi@sunsite.dk
9159 S:      Maintained
9160 F:      drivers/net/hippi/
9161 F:      include/linux/hippidevice.h
9162 F:      include/uapi/linux/if_hippi.h
9163 F:      net/802/hippi.c
9164
9165 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9166 M:      Kurt Kanzenbach <kurt@linutronix.de>
9167 L:      netdev@vger.kernel.org
9168 S:      Maintained
9169 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9170 F:      drivers/net/dsa/hirschmann/*
9171 F:      include/linux/platform_data/hirschmann-hellcreek.h
9172 F:      net/dsa/tag_hellcreek.c
9173
9174 HISILICON DMA DRIVER
9175 M:      Zhou Wang <wangzhou1@hisilicon.com>
9176 M:      Jie Hai <haijie1@huawei.com>
9177 L:      dmaengine@vger.kernel.org
9178 S:      Maintained
9179 F:      drivers/dma/hisi_dma.c
9180
9181 HISILICON GPIO DRIVER
9182 M:      Jay Fang <f.fangjian@huawei.com>
9183 L:      linux-gpio@vger.kernel.org
9184 S:      Maintained
9185 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9186 F:      drivers/gpio/gpio-hisi.c
9187
9188 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9189 M:      Longfang Liu <liulongfang@huawei.com>
9190 L:      linux-crypto@vger.kernel.org
9191 S:      Maintained
9192 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9193 F:      drivers/crypto/hisilicon/hpre/hpre.h
9194 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9195 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9196
9197 HISILICON I2C CONTROLLER DRIVER
9198 M:      Yicong Yang <yangyicong@hisilicon.com>
9199 L:      linux-i2c@vger.kernel.org
9200 S:      Maintained
9201 W:      https://www.hisilicon.com
9202 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9203 F:      drivers/i2c/busses/i2c-hisi.c
9204
9205 HISILICON LPC BUS DRIVER
9206 M:      Jay Fang <f.fangjian@huawei.com>
9207 S:      Maintained
9208 W:      http://www.hisilicon.com
9209 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9210 F:      drivers/bus/hisi_lpc.c
9211
9212 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9213 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9214 M:      Salil Mehta <salil.mehta@huawei.com>
9215 L:      netdev@vger.kernel.org
9216 S:      Maintained
9217 W:      http://www.hisilicon.com
9218 F:      drivers/net/ethernet/hisilicon/hns3/
9219
9220 HISILICON NETWORK SUBSYSTEM DRIVER
9221 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9222 M:      Salil Mehta <salil.mehta@huawei.com>
9223 L:      netdev@vger.kernel.org
9224 S:      Maintained
9225 W:      http://www.hisilicon.com
9226 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9227 F:      drivers/net/ethernet/hisilicon/
9228
9229 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9230 M:      John Stultz <jstultz@google.com>
9231 L:      linux-kernel@vger.kernel.org
9232 S:      Maintained
9233 F:      drivers/misc/hisi_hikey_usb.c
9234
9235 HISILICON PMU DRIVER
9236 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9237 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9238 S:      Supported
9239 W:      http://www.hisilicon.com
9240 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9241 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9242 F:      drivers/perf/hisilicon
9243
9244 HISILICON HNS3 PMU DRIVER
9245 M:      Guangbin Huang <huangguangbin2@huawei.com>
9246 S:      Supported
9247 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9248 F:      drivers/perf/hisilicon/hns3_pmu.c
9249
9250 HISILICON PTT DRIVER
9251 M:      Yicong Yang <yangyicong@hisilicon.com>
9252 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9253 L:      linux-kernel@vger.kernel.org
9254 S:      Maintained
9255 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9256 F:      Documentation/trace/hisi-ptt.rst
9257 F:      drivers/hwtracing/ptt/
9258 F:      tools/perf/arch/arm64/util/hisi-ptt.c
9259 F:      tools/perf/util/hisi-ptt*
9260 F:      tools/perf/util/hisi-ptt-decoder/*
9261
9262 HISILICON QM DRIVER
9263 M:      Weili Qian <qianweili@huawei.com>
9264 M:      Zhou Wang <wangzhou1@hisilicon.com>
9265 L:      linux-crypto@vger.kernel.org
9266 S:      Maintained
9267 F:      drivers/crypto/hisilicon/Kconfig
9268 F:      drivers/crypto/hisilicon/Makefile
9269 F:      drivers/crypto/hisilicon/qm.c
9270 F:      drivers/crypto/hisilicon/sgl.c
9271 F:      include/linux/hisi_acc_qm.h
9272
9273 HISILICON ZIP Controller DRIVER
9274 M:      Yang Shen <shenyang39@huawei.com>
9275 M:      Zhou Wang <wangzhou1@hisilicon.com>
9276 L:      linux-crypto@vger.kernel.org
9277 S:      Maintained
9278 F:      Documentation/ABI/testing/debugfs-hisi-zip
9279 F:      drivers/crypto/hisilicon/zip/
9280
9281 HISILICON ROCE DRIVER
9282 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9283 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9284 L:      linux-rdma@vger.kernel.org
9285 S:      Maintained
9286 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9287 F:      drivers/infiniband/hw/hns/
9288
9289 HISILICON SAS Controller
9290 M:      Xiang Chen <chenxiang66@hisilicon.com>
9291 S:      Supported
9292 W:      http://www.hisilicon.com
9293 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9294 F:      drivers/scsi/hisi_sas/
9295
9296 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9297 M:      Kai Ye <yekai13@huawei.com>
9298 M:      Longfang Liu <liulongfang@huawei.com>
9299 L:      linux-crypto@vger.kernel.org
9300 S:      Maintained
9301 F:      Documentation/ABI/testing/debugfs-hisi-sec
9302 F:      drivers/crypto/hisilicon/sec2/sec.h
9303 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9304 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9305 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9306
9307 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9308 M:      Jay Fang <f.fangjian@huawei.com>
9309 L:      linux-spi@vger.kernel.org
9310 S:      Maintained
9311 W:      http://www.hisilicon.com
9312 F:      drivers/spi/spi-hisi-kunpeng.c
9313
9314 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9315 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9316 L:      linux-kernel@vger.kernel.org
9317 S:      Maintained
9318 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9319 F:      drivers/spmi/hisi-spmi-controller.c
9320
9321 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9322 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9323 L:      linux-kernel@vger.kernel.org
9324 S:      Maintained
9325 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9326 F:      drivers/mfd/hi6421-spmi-pmic.c
9327
9328 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9329 M:      Weili Qian <qianweili@huawei.com>
9330 S:      Maintained
9331 F:      drivers/crypto/hisilicon/trng/trng.c
9332
9333 HISILICON V3XX SPI NOR FLASH Controller Driver
9334 M:      Jay Fang <f.fangjian@huawei.com>
9335 S:      Maintained
9336 W:      http://www.hisilicon.com
9337 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9338
9339 HMM - Heterogeneous Memory Management
9340 M:      Jérôme Glisse <jglisse@redhat.com>
9341 L:      linux-mm@kvack.org
9342 S:      Maintained
9343 F:      Documentation/mm/hmm.rst
9344 F:      include/linux/hmm*
9345 F:      lib/test_hmm*
9346 F:      mm/hmm*
9347 F:      tools/testing/selftests/mm/*hmm*
9348
9349 HOST AP DRIVER
9350 M:      Jouni Malinen <j@w1.fi>
9351 L:      linux-wireless@vger.kernel.org
9352 S:      Obsolete
9353 W:      http://w1.fi/hostap-driver.html
9354 F:      drivers/net/wireless/intersil/hostap/
9355
9356 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9357 L:      platform-driver-x86@vger.kernel.org
9358 S:      Orphan
9359 F:      drivers/platform/x86/hp/tc1100-wmi.c
9360
9361 HPET:   High Precision Event Timers driver
9362 M:      Clemens Ladisch <clemens@ladisch.de>
9363 S:      Maintained
9364 F:      Documentation/timers/hpet.rst
9365 F:      drivers/char/hpet.c
9366 F:      include/linux/hpet.h
9367 F:      include/uapi/linux/hpet.h
9368
9369 HPET:   x86
9370 S:      Orphan
9371 F:      arch/x86/include/asm/hpet.h
9372 F:      arch/x86/kernel/hpet.c
9373
9374 HPFS FILESYSTEM
9375 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9376 S:      Maintained
9377 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9378 F:      fs/hpfs/
9379
9380 HSI SUBSYSTEM
9381 M:      Sebastian Reichel <sre@kernel.org>
9382 S:      Maintained
9383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9384 F:      Documentation/ABI/testing/sysfs-bus-hsi
9385 F:      Documentation/driver-api/hsi.rst
9386 F:      drivers/hsi/
9387 F:      include/linux/hsi/
9388 F:      include/uapi/linux/hsi/
9389
9390 HSO 3G MODEM DRIVER
9391 L:      linux-usb@vger.kernel.org
9392 S:      Orphan
9393 F:      drivers/net/usb/hso.c
9394
9395 HSR NETWORK PROTOCOL
9396 L:      netdev@vger.kernel.org
9397 S:      Orphan
9398 F:      net/hsr/
9399
9400 HT16K33 LED CONTROLLER DRIVER
9401 M:      Robin van der Gracht <robin@protonic.nl>
9402 S:      Maintained
9403 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9404 F:      drivers/auxdisplay/ht16k33.c
9405
9406 HTCPEN TOUCHSCREEN DRIVER
9407 M:      Pau Oliva Fora <pof@eslack.org>
9408 L:      linux-input@vger.kernel.org
9409 S:      Maintained
9410 F:      drivers/input/touchscreen/htcpen.c
9411
9412 HTE SUBSYSTEM
9413 M:      Dipen Patel <dipenp@nvidia.com>
9414 S:      Maintained
9415 F:      Documentation/devicetree/bindings/timestamp/
9416 F:      Documentation/driver-api/hte/
9417 F:      drivers/hte/
9418 F:      include/linux/hte.h
9419
9420 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9421 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9422 L:      linux-iio@vger.kernel.org
9423 S:      Maintained
9424 W:      http://www.st.com/
9425 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9426 F:      drivers/iio/humidity/hts221*
9427
9428 HUAWEI ETHERNET DRIVER
9429 M:      Cai Huoqing <cai.huoqing@linux.dev>
9430 L:      netdev@vger.kernel.org
9431 S:      Maintained
9432 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9433 F:      drivers/net/ethernet/huawei/hinic/
9434
9435 HUGETLB SUBSYSTEM
9436 M:      Mike Kravetz <mike.kravetz@oracle.com>
9437 M:      Muchun Song <muchun.song@linux.dev>
9438 L:      linux-mm@kvack.org
9439 S:      Maintained
9440 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9441 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9442 F:      Documentation/mm/hugetlbfs_reserv.rst
9443 F:      Documentation/mm/vmemmap_dedup.rst
9444 F:      fs/hugetlbfs/
9445 F:      include/linux/hugetlb.h
9446 F:      mm/hugetlb.c
9447 F:      mm/hugetlb_vmemmap.c
9448 F:      mm/hugetlb_vmemmap.h
9449
9450 HVA ST MEDIA DRIVER
9451 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9452 L:      linux-media@vger.kernel.org
9453 S:      Supported
9454 W:      https://linuxtv.org
9455 T:      git git://linuxtv.org/media_tree.git
9456 F:      drivers/media/platform/st/sti/hva
9457
9458 HWPOISON MEMORY FAILURE HANDLING
9459 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9460 R:      Miaohe Lin <linmiaohe@huawei.com>
9461 L:      linux-mm@kvack.org
9462 S:      Maintained
9463 F:      mm/hwpoison-inject.c
9464 F:      mm/memory-failure.c
9465
9466 HYCON HY46XX TOUCHSCREEN SUPPORT
9467 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9468 L:      linux-input@vger.kernel.org
9469 S:      Maintained
9470 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9471 F:      drivers/input/touchscreen/hycon-hy46xx.c
9472
9473 HYGON PROCESSOR SUPPORT
9474 M:      Pu Wen <puwen@hygon.cn>
9475 L:      linux-kernel@vger.kernel.org
9476 S:      Maintained
9477 F:      arch/x86/kernel/cpu/hygon.c
9478
9479 HYNIX HI556 SENSOR DRIVER
9480 M:      Shawn Tu <shawnx.tu@intel.com>
9481 L:      linux-media@vger.kernel.org
9482 S:      Maintained
9483 T:      git git://linuxtv.org/media_tree.git
9484 F:      drivers/media/i2c/hi556.c
9485
9486 HYNIX HI846 SENSOR DRIVER
9487 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9488 L:      linux-media@vger.kernel.org
9489 S:      Maintained
9490 F:      drivers/media/i2c/hi846.c
9491
9492 HYNIX HI847 SENSOR DRIVER
9493 M:      Shawn Tu <shawnx.tu@intel.com>
9494 L:      linux-media@vger.kernel.org
9495 S:      Maintained
9496 F:      drivers/media/i2c/hi847.c
9497
9498 Hyper-V/Azure CORE AND DRIVERS
9499 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9500 M:      Haiyang Zhang <haiyangz@microsoft.com>
9501 M:      Wei Liu <wei.liu@kernel.org>
9502 M:      Dexuan Cui <decui@microsoft.com>
9503 L:      linux-hyperv@vger.kernel.org
9504 S:      Supported
9505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9506 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9507 F:      Documentation/ABI/testing/debugfs-hyperv
9508 F:      Documentation/virt/hyperv
9509 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9510 F:      arch/arm64/hyperv
9511 F:      arch/arm64/include/asm/hyperv-tlfs.h
9512 F:      arch/arm64/include/asm/mshyperv.h
9513 F:      arch/x86/hyperv
9514 F:      arch/x86/include/asm/hyperv-tlfs.h
9515 F:      arch/x86/include/asm/mshyperv.h
9516 F:      arch/x86/include/asm/trace/hyperv.h
9517 F:      arch/x86/kernel/cpu/mshyperv.c
9518 F:      drivers/clocksource/hyperv_timer.c
9519 F:      drivers/hid/hid-hyperv.c
9520 F:      drivers/hv/
9521 F:      drivers/input/serio/hyperv-keyboard.c
9522 F:      drivers/iommu/hyperv-iommu.c
9523 F:      drivers/net/ethernet/microsoft/
9524 F:      drivers/net/hyperv/
9525 F:      drivers/pci/controller/pci-hyperv-intf.c
9526 F:      drivers/pci/controller/pci-hyperv.c
9527 F:      drivers/scsi/storvsc_drv.c
9528 F:      drivers/uio/uio_hv_generic.c
9529 F:      drivers/video/fbdev/hyperv_fb.c
9530 F:      include/asm-generic/hyperv-tlfs.h
9531 F:      include/asm-generic/mshyperv.h
9532 F:      include/clocksource/hyperv_timer.h
9533 F:      include/linux/hyperv.h
9534 F:      include/net/mana
9535 F:      include/uapi/linux/hyperv.h
9536 F:      net/vmw_vsock/hyperv_transport.c
9537 F:      tools/hv/
9538
9539 HYPERBUS SUPPORT
9540 M:      Vignesh Raghavendra <vigneshr@ti.com>
9541 L:      linux-mtd@lists.infradead.org
9542 S:      Supported
9543 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9544 C:      irc://irc.oftc.net/mtd
9545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9546 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9547 F:      drivers/mtd/hyperbus/
9548 F:      include/linux/mtd/hyperbus.h
9549
9550 HYPERVISOR VIRTUAL CONSOLE DRIVER
9551 L:      linuxppc-dev@lists.ozlabs.org
9552 S:      Odd Fixes
9553 F:      drivers/tty/hvc/
9554
9555 I2C ACPI SUPPORT
9556 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9557 L:      linux-i2c@vger.kernel.org
9558 L:      linux-acpi@vger.kernel.org
9559 S:      Maintained
9560 F:      drivers/i2c/i2c-core-acpi.c
9561
9562 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9563 M:      Ajay Gupta <ajayg@nvidia.com>
9564 L:      linux-i2c@vger.kernel.org
9565 S:      Maintained
9566 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9567 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9568
9569 I2C MUXES
9570 M:      Peter Rosin <peda@axentia.se>
9571 L:      linux-i2c@vger.kernel.org
9572 S:      Maintained
9573 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9574 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9575 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9576 F:      Documentation/i2c/i2c-topology.rst
9577 F:      Documentation/i2c/muxes/
9578 F:      drivers/i2c/i2c-mux.c
9579 F:      drivers/i2c/muxes/
9580 F:      include/linux/i2c-mux.h
9581
9582 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9583 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9584 L:      linux-i2c@vger.kernel.org
9585 S:      Maintained
9586 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9587 F:      drivers/i2c/busses/i2c-mv64xxx.c
9588
9589 I2C OVER PARALLEL PORT
9590 M:      Jean Delvare <jdelvare@suse.com>
9591 L:      linux-i2c@vger.kernel.org
9592 S:      Maintained
9593 F:      Documentation/i2c/busses/i2c-parport.rst
9594 F:      drivers/i2c/busses/i2c-parport.c
9595
9596 I2C SUBSYSTEM
9597 M:      Wolfram Sang <wsa@kernel.org>
9598 L:      linux-i2c@vger.kernel.org
9599 S:      Maintained
9600 W:      https://i2c.wiki.kernel.org/
9601 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9603 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9604 F:      Documentation/i2c/
9605 F:      drivers/i2c/*
9606 F:      include/dt-bindings/i2c/i2c.h
9607 F:      include/linux/i2c-dev.h
9608 F:      include/linux/i2c-smbus.h
9609 F:      include/linux/i2c.h
9610 F:      include/uapi/linux/i2c-*.h
9611 F:      include/uapi/linux/i2c.h
9612
9613 I2C SUBSYSTEM HOST DRIVERS
9614 L:      linux-i2c@vger.kernel.org
9615 S:      Odd Fixes
9616 W:      https://i2c.wiki.kernel.org/
9617 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9619 F:      Documentation/devicetree/bindings/i2c/
9620 F:      drivers/i2c/algos/
9621 F:      drivers/i2c/busses/
9622 F:      include/dt-bindings/i2c/
9623
9624 I2C-TAOS-EVM DRIVER
9625 M:      Jean Delvare <jdelvare@suse.com>
9626 L:      linux-i2c@vger.kernel.org
9627 S:      Maintained
9628 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9629 F:      drivers/i2c/busses/i2c-taos-evm.c
9630
9631 I2C-TINY-USB DRIVER
9632 M:      Till Harbaum <till@harbaum.org>
9633 L:      linux-i2c@vger.kernel.org
9634 S:      Maintained
9635 W:      http://www.harbaum.org/till/i2c_tiny_usb
9636 F:      drivers/i2c/busses/i2c-tiny-usb.c
9637
9638 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9639 M:      Jean Delvare <jdelvare@suse.com>
9640 L:      linux-i2c@vger.kernel.org
9641 S:      Maintained
9642 F:      Documentation/i2c/busses/i2c-ali1535.rst
9643 F:      Documentation/i2c/busses/i2c-ali1563.rst
9644 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9645 F:      Documentation/i2c/busses/i2c-amd756.rst
9646 F:      Documentation/i2c/busses/i2c-amd8111.rst
9647 F:      Documentation/i2c/busses/i2c-i801.rst
9648 F:      Documentation/i2c/busses/i2c-nforce2.rst
9649 F:      Documentation/i2c/busses/i2c-piix4.rst
9650 F:      Documentation/i2c/busses/i2c-sis5595.rst
9651 F:      Documentation/i2c/busses/i2c-sis630.rst
9652 F:      Documentation/i2c/busses/i2c-sis96x.rst
9653 F:      Documentation/i2c/busses/i2c-via.rst
9654 F:      Documentation/i2c/busses/i2c-viapro.rst
9655 F:      drivers/i2c/busses/i2c-ali1535.c
9656 F:      drivers/i2c/busses/i2c-ali1563.c
9657 F:      drivers/i2c/busses/i2c-ali15x3.c
9658 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9659 F:      drivers/i2c/busses/i2c-amd756.c
9660 F:      drivers/i2c/busses/i2c-amd8111.c
9661 F:      drivers/i2c/busses/i2c-i801.c
9662 F:      drivers/i2c/busses/i2c-isch.c
9663 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9664 F:      drivers/i2c/busses/i2c-nforce2.c
9665 F:      drivers/i2c/busses/i2c-piix4.c
9666 F:      drivers/i2c/busses/i2c-sis5595.c
9667 F:      drivers/i2c/busses/i2c-sis630.c
9668 F:      drivers/i2c/busses/i2c-sis96x.c
9669 F:      drivers/i2c/busses/i2c-via.c
9670 F:      drivers/i2c/busses/i2c-viapro.c
9671
9672 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9673 M:      Hans de Goede <hdegoede@redhat.com>
9674 L:      linux-i2c@vger.kernel.org
9675 S:      Maintained
9676 F:      drivers/i2c/busses/i2c-cht-wc.c
9677
9678 I2C/SMBUS ISMT DRIVER
9679 M:      Seth Heasley <seth.heasley@intel.com>
9680 M:      Neil Horman <nhorman@tuxdriver.com>
9681 L:      linux-i2c@vger.kernel.org
9682 F:      Documentation/i2c/busses/i2c-ismt.rst
9683 F:      drivers/i2c/busses/i2c-ismt.c
9684
9685 I2C/SMBUS STUB DRIVER
9686 M:      Jean Delvare <jdelvare@suse.com>
9687 L:      linux-i2c@vger.kernel.org
9688 S:      Maintained
9689 F:      drivers/i2c/i2c-stub.c
9690
9691 I3C DRIVER FOR CADENCE I3C MASTER IP
9692 M:      Przemysław Gaj <pgaj@cadence.com>
9693 S:      Maintained
9694 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9695 F:      drivers/i3c/master/i3c-master-cdns.c
9696
9697 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9698 S:      Orphan
9699 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9700 F:      drivers/i3c/master/dw*
9701
9702 I3C SUBSYSTEM
9703 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9704 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9705 S:      Maintained
9706 C:      irc://chat.freenode.net/linux-i3c
9707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9708 F:      Documentation/ABI/testing/sysfs-bus-i3c
9709 F:      Documentation/devicetree/bindings/i3c/
9710 F:      Documentation/driver-api/i3c
9711 F:      drivers/i3c/
9712 F:      include/linux/i3c/
9713
9714 IA64 (Itanium) PLATFORM
9715 L:      linux-ia64@vger.kernel.org
9716 S:      Orphan
9717 F:      Documentation/ia64/
9718 F:      arch/ia64/
9719
9720 IBM Operation Panel Input Driver
9721 M:      Eddie James <eajames@linux.ibm.com>
9722 L:      linux-input@vger.kernel.org
9723 S:      Maintained
9724 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9725 F:      drivers/input/misc/ibm-panel.c
9726
9727 IBM Power 842 compression accelerator
9728 M:      Haren Myneni <haren@us.ibm.com>
9729 S:      Supported
9730 F:      crypto/842.c
9731 F:      drivers/crypto/nx/Kconfig
9732 F:      drivers/crypto/nx/Makefile
9733 F:      drivers/crypto/nx/nx-842*
9734 F:      include/linux/sw842.h
9735 F:      lib/842/
9736
9737 IBM Power in-Nest Crypto Acceleration
9738 M:      Breno Leitão <leitao@debian.org>
9739 M:      Nayna Jain <nayna@linux.ibm.com>
9740 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9741 L:      linux-crypto@vger.kernel.org
9742 S:      Supported
9743 F:      drivers/crypto/nx/Kconfig
9744 F:      drivers/crypto/nx/Makefile
9745 F:      drivers/crypto/nx/nx-aes*
9746 F:      drivers/crypto/nx/nx-sha*
9747 F:      drivers/crypto/nx/nx.*
9748 F:      drivers/crypto/nx/nx_csbcpb.h
9749 F:      drivers/crypto/nx/nx_debugfs.c
9750
9751 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9752 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9753 L:      linux-pci@vger.kernel.org
9754 L:      linuxppc-dev@lists.ozlabs.org
9755 S:      Supported
9756 F:      drivers/pci/hotplug/rpadlpar*
9757
9758 IBM Power Linux RAID adapter
9759 M:      Brian King <brking@us.ibm.com>
9760 S:      Supported
9761 F:      drivers/scsi/ipr.*
9762
9763 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9764 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9765 L:      linux-pci@vger.kernel.org
9766 L:      linuxppc-dev@lists.ozlabs.org
9767 S:      Supported
9768 F:      drivers/pci/hotplug/rpaphp*
9769
9770 IBM Power SRIOV Virtual NIC Device Driver
9771 M:      Haren Myneni <haren@linux.ibm.com>
9772 M:      Rick Lindsley <ricklind@linux.ibm.com>
9773 R:      Nick Child <nnac123@linux.ibm.com>
9774 R:      Dany Madden <danymadden@us.ibm.com>
9775 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9776 L:      netdev@vger.kernel.org
9777 S:      Supported
9778 F:      drivers/net/ethernet/ibm/ibmvnic.*
9779
9780 IBM Power Virtual Ethernet Device Driver
9781 M:      Nick Child <nnac123@linux.ibm.com>
9782 L:      netdev@vger.kernel.org
9783 S:      Supported
9784 F:      drivers/net/ethernet/ibm/ibmveth.*
9785
9786 IBM Power Virtual FC Device Drivers
9787 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9788 L:      linux-scsi@vger.kernel.org
9789 S:      Supported
9790 F:      drivers/scsi/ibmvscsi/ibmvfc*
9791
9792 IBM Power Virtual Management Channel Driver
9793 M:      Brad Warrum <bwarrum@linux.ibm.com>
9794 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9795 S:      Supported
9796 F:      drivers/misc/ibmvmc.*
9797
9798 IBM Power Virtual SCSI Device Drivers
9799 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9800 L:      linux-scsi@vger.kernel.org
9801 S:      Supported
9802 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9803 F:      include/scsi/viosrp.h
9804
9805 IBM Power Virtual SCSI Device Target Driver
9806 M:      Michael Cyr <mikecyr@linux.ibm.com>
9807 L:      linux-scsi@vger.kernel.org
9808 L:      target-devel@vger.kernel.org
9809 S:      Supported
9810 F:      drivers/scsi/ibmvscsi_tgt/
9811
9812 IBM Power VMX Cryptographic instructions
9813 M:      Breno Leitão <leitao@debian.org>
9814 M:      Nayna Jain <nayna@linux.ibm.com>
9815 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9816 L:      linux-crypto@vger.kernel.org
9817 S:      Supported
9818 F:      drivers/crypto/vmx/Kconfig
9819 F:      drivers/crypto/vmx/Makefile
9820 F:      drivers/crypto/vmx/aes*
9821 F:      drivers/crypto/vmx/ghash*
9822 F:      drivers/crypto/vmx/ppc-xlate.pl
9823 F:      drivers/crypto/vmx/vmx.c
9824
9825 IBM ServeRAID RAID DRIVER
9826 S:      Orphan
9827 F:      drivers/scsi/ips.*
9828
9829 ICH LPC AND GPIO DRIVER
9830 M:      Peter Tyser <ptyser@xes-inc.com>
9831 S:      Maintained
9832 F:      drivers/gpio/gpio-ich.c
9833 F:      drivers/mfd/lpc_ich.c
9834
9835 ICY I2C DRIVER
9836 M:      Max Staudt <max@enpas.org>
9837 L:      linux-i2c@vger.kernel.org
9838 S:      Maintained
9839 F:      drivers/i2c/busses/i2c-icy.c
9840
9841 IDEAPAD LAPTOP EXTRAS DRIVER
9842 M:      Ike Panhc <ike.pan@canonical.com>
9843 L:      platform-driver-x86@vger.kernel.org
9844 S:      Maintained
9845 W:      http://launchpad.net/ideapad-laptop
9846 F:      drivers/platform/x86/ideapad-laptop.c
9847
9848 IDEAPAD LAPTOP SLIDEBAR DRIVER
9849 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9850 L:      linux-input@vger.kernel.org
9851 S:      Maintained
9852 W:      https://github.com/o2genum/ideapad-slidebar
9853 F:      drivers/input/misc/ideapad_slidebar.c
9854
9855 IDMAPPED MOUNTS
9856 M:      Christian Brauner <brauner@kernel.org>
9857 M:      Seth Forshee <sforshee@kernel.org>
9858 L:      linux-fsdevel@vger.kernel.org
9859 S:      Maintained
9860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9861 F:      Documentation/filesystems/idmappings.rst
9862 F:      include/linux/mnt_idmapping.*
9863 F:      tools/testing/selftests/mount_setattr/
9864
9865 IDT VersaClock 5 CLOCK DRIVER
9866 M:      Luca Ceresoli <luca@lucaceresoli.net>
9867 S:      Maintained
9868 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9869 F:      drivers/clk/clk-versaclock5.c
9870
9871 IEEE 802.15.4 SUBSYSTEM
9872 M:      Alexander Aring <alex.aring@gmail.com>
9873 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9874 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9875 L:      linux-wpan@vger.kernel.org
9876 S:      Maintained
9877 W:      https://linux-wpan.org/
9878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9880 F:      Documentation/networking/ieee802154.rst
9881 F:      drivers/net/ieee802154/
9882 F:      include/linux/ieee802154.h
9883 F:      include/linux/nl802154.h
9884 F:      include/net/af_ieee802154.h
9885 F:      include/net/cfg802154.h
9886 F:      include/net/ieee802154_netdev.h
9887 F:      include/net/mac802154.h
9888 F:      include/net/nl802154.h
9889 F:      net/ieee802154/
9890 F:      net/mac802154/
9891
9892 IFE PROTOCOL
9893 M:      Yotam Gigi <yotam.gi@gmail.com>
9894 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9895 F:      include/net/ife.h
9896 F:      include/uapi/linux/ife.h
9897 F:      net/ife
9898
9899 IGORPLUG-USB IR RECEIVER
9900 M:      Sean Young <sean@mess.org>
9901 L:      linux-media@vger.kernel.org
9902 S:      Maintained
9903 F:      drivers/media/rc/igorplugusb.c
9904
9905 IGUANAWORKS USB IR TRANSCEIVER
9906 M:      Sean Young <sean@mess.org>
9907 L:      linux-media@vger.kernel.org
9908 S:      Maintained
9909 F:      drivers/media/rc/iguanair.c
9910
9911 IIO DIGITAL POTENTIOMETER DAC
9912 M:      Peter Rosin <peda@axentia.se>
9913 L:      linux-iio@vger.kernel.org
9914 S:      Maintained
9915 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9916 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9917 F:      drivers/iio/dac/dpot-dac.c
9918
9919 IIO ENVELOPE DETECTOR
9920 M:      Peter Rosin <peda@axentia.se>
9921 L:      linux-iio@vger.kernel.org
9922 S:      Maintained
9923 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9924 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9925 F:      drivers/iio/adc/envelope-detector.c
9926
9927 IIO MULTIPLEXER
9928 M:      Peter Rosin <peda@axentia.se>
9929 L:      linux-iio@vger.kernel.org
9930 S:      Maintained
9931 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9932 F:      drivers/iio/multiplexer/iio-mux.c
9933
9934 IIO SCMI BASED DRIVER
9935 M:      Jyoti Bhayana <jbhayana@google.com>
9936 L:      linux-iio@vger.kernel.org
9937 S:      Maintained
9938 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9939
9940 IIO SUBSYSTEM AND DRIVERS
9941 M:      Jonathan Cameron <jic23@kernel.org>
9942 R:      Lars-Peter Clausen <lars@metafoo.de>
9943 L:      linux-iio@vger.kernel.org
9944 S:      Maintained
9945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9946 F:      Documentation/ABI/testing/configfs-iio*
9947 F:      Documentation/ABI/testing/sysfs-bus-iio*
9948 F:      Documentation/devicetree/bindings/iio/
9949 F:      drivers/iio/
9950 F:      drivers/staging/iio/
9951 F:      include/dt-bindings/iio/
9952 F:      include/linux/iio/
9953 F:      tools/iio/
9954
9955 IIO UNIT CONVERTER
9956 M:      Peter Rosin <peda@axentia.se>
9957 L:      linux-iio@vger.kernel.org
9958 S:      Maintained
9959 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9960 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9961 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9962 F:      drivers/iio/afe/iio-rescale.c
9963
9964 IKANOS/ADI EAGLE ADSL USB DRIVER
9965 M:      Matthieu Castet <castet.matthieu@free.fr>
9966 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9967 S:      Maintained
9968 F:      drivers/usb/atm/ueagle-atm.c
9969
9970 IMAGIS TOUCHSCREEN DRIVER
9971 M:      Markuss Broks <markuss.broks@gmail.com>
9972 S:      Maintained
9973 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9974 F:      drivers/input/touchscreen/imagis.c
9975
9976 IMGTEC ASCII LCD DRIVER
9977 M:      Paul Burton <paulburton@kernel.org>
9978 S:      Maintained
9979 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9980 F:      drivers/auxdisplay/img-ascii-lcd.c
9981
9982 IMGTEC IR DECODER DRIVER
9983 S:      Orphan
9984 F:      drivers/media/rc/img-ir/
9985
9986 IMON SOUNDGRAPH USB IR RECEIVER
9987 M:      Sean Young <sean@mess.org>
9988 L:      linux-media@vger.kernel.org
9989 S:      Maintained
9990 F:      drivers/media/rc/imon.c
9991 F:      drivers/media/rc/imon_raw.c
9992
9993 IMS TWINTURBO FRAMEBUFFER DRIVER
9994 L:      linux-fbdev@vger.kernel.org
9995 S:      Orphan
9996 F:      drivers/video/fbdev/imsttfb.c
9997
9998 INA209 HARDWARE MONITOR DRIVER
9999 M:      Guenter Roeck <linux@roeck-us.net>
10000 L:      linux-hwmon@vger.kernel.org
10001 S:      Maintained
10002 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10003 F:      Documentation/hwmon/ina209.rst
10004 F:      drivers/hwmon/ina209.c
10005
10006 INA2XX HARDWARE MONITOR DRIVER
10007 M:      Guenter Roeck <linux@roeck-us.net>
10008 L:      linux-hwmon@vger.kernel.org
10009 S:      Maintained
10010 F:      Documentation/hwmon/ina2xx.rst
10011 F:      drivers/hwmon/ina2xx.c
10012 F:      include/linux/platform_data/ina2xx.h
10013
10014 INDEX OF FURTHER KERNEL DOCUMENTATION
10015 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10016 S:      Maintained
10017 F:      Documentation/process/kernel-docs.rst
10018
10019 INDUSTRY PACK SUBSYSTEM (IPACK)
10020 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10021 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10022 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10023 L:      industrypack-devel@lists.sourceforge.net
10024 S:      Maintained
10025 W:      http://industrypack.sourceforge.net
10026 F:      drivers/ipack/
10027
10028 INFINEON DPS310 Driver
10029 M:      Eddie James <eajames@linux.ibm.com>
10030 L:      linux-iio@vger.kernel.org
10031 S:      Maintained
10032 F:      drivers/iio/pressure/dps310.c
10033
10034 INFINEON PEB2466 ASoC CODEC
10035 M:      Herve Codina <herve.codina@bootlin.com>
10036 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10037 S:      Maintained
10038 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10039 F:      sound/soc/codecs/peb2466.c
10040
10041 INFINIBAND SUBSYSTEM
10042 M:      Jason Gunthorpe <jgg@nvidia.com>
10043 M:      Leon Romanovsky <leonro@nvidia.com>
10044 L:      linux-rdma@vger.kernel.org
10045 S:      Supported
10046 W:      https://github.com/linux-rdma/rdma-core
10047 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10049 F:      Documentation/devicetree/bindings/infiniband/
10050 F:      Documentation/infiniband/
10051 F:      drivers/infiniband/
10052 F:      include/rdma/
10053 F:      include/trace/events/ib_mad.h
10054 F:      include/trace/events/ib_umad.h
10055 F:      include/trace/misc/rdma.h
10056 F:      include/uapi/linux/if_infiniband.h
10057 F:      include/uapi/rdma/
10058 F:      samples/bpf/ibumad_kern.c
10059 F:      samples/bpf/ibumad_user.c
10060
10061 INGENIC JZ4780 NAND DRIVER
10062 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10063 L:      linux-mtd@lists.infradead.org
10064 L:      linux-mips@vger.kernel.org
10065 S:      Maintained
10066 F:      drivers/mtd/nand/raw/ingenic/
10067
10068 INGENIC JZ47xx SoCs
10069 M:      Paul Cercueil <paul@crapouillou.net>
10070 L:      linux-mips@vger.kernel.org
10071 S:      Maintained
10072 F:      arch/mips/boot/dts/ingenic/
10073 F:      arch/mips/generic/board-ingenic.c
10074 F:      arch/mips/include/asm/mach-ingenic/
10075 F:      arch/mips/ingenic/Kconfig
10076 F:      drivers/clk/ingenic/
10077 F:      drivers/dma/dma-jz4780.c
10078 F:      drivers/gpu/drm/ingenic/
10079 F:      drivers/i2c/busses/i2c-jz4780.c
10080 F:      drivers/iio/adc/ingenic-adc.c
10081 F:      drivers/irqchip/irq-ingenic.c
10082 F:      drivers/memory/jz4780-nemc.c
10083 F:      drivers/mmc/host/jz4740_mmc.c
10084 F:      drivers/mtd/nand/raw/ingenic/
10085 F:      drivers/pinctrl/pinctrl-ingenic.c
10086 F:      drivers/power/supply/ingenic-battery.c
10087 F:      drivers/pwm/pwm-jz4740.c
10088 F:      drivers/remoteproc/ingenic_rproc.c
10089 F:      drivers/rtc/rtc-jz4740.c
10090 F:      drivers/tty/serial/8250/8250_ingenic.c
10091 F:      drivers/usb/musb/jz4740.c
10092 F:      drivers/watchdog/jz4740_wdt.c
10093 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10094 F:      include/linux/mfd/ingenic-tcu.h
10095 F:      sound/soc/codecs/jz47*
10096 F:      sound/soc/jz4740/
10097
10098 INJOINIC IP5xxx POWER BANK IC DRIVER
10099 M:      Samuel Holland <samuel@sholland.org>
10100 S:      Maintained
10101 F:      drivers/power/supply/ip5xxx_power.c
10102
10103 INOTIFY
10104 M:      Jan Kara <jack@suse.cz>
10105 R:      Amir Goldstein <amir73il@gmail.com>
10106 L:      linux-fsdevel@vger.kernel.org
10107 S:      Maintained
10108 F:      Documentation/filesystems/inotify.rst
10109 F:      fs/notify/inotify/
10110 F:      include/linux/inotify.h
10111 F:      include/uapi/linux/inotify.h
10112
10113 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10114 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10115 L:      linux-input@vger.kernel.org
10116 S:      Maintained
10117 Q:      http://patchwork.kernel.org/project/linux-input/list/
10118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10119 F:      Documentation/devicetree/bindings/input/
10120 F:      Documentation/devicetree/bindings/serio/
10121 F:      Documentation/input/
10122 F:      drivers/input/
10123 F:      include/dt-bindings/input/
10124 F:      include/linux/input.h
10125 F:      include/linux/input/
10126 F:      include/uapi/linux/input-event-codes.h
10127 F:      include/uapi/linux/input.h
10128
10129 INPUT MULTITOUCH (MT) PROTOCOL
10130 M:      Henrik Rydberg <rydberg@bitmath.org>
10131 L:      linux-input@vger.kernel.org
10132 S:      Odd fixes
10133 F:      Documentation/input/multi-touch-protocol.rst
10134 F:      drivers/input/input-mt.c
10135 K:      \b(ABS|SYN)_MT_
10136
10137 INSIDE SECURE CRYPTO DRIVER
10138 M:      Antoine Tenart <atenart@kernel.org>
10139 L:      linux-crypto@vger.kernel.org
10140 S:      Maintained
10141 F:      drivers/crypto/inside-secure/
10142
10143 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10144 M:      Mimi Zohar <zohar@linux.ibm.com>
10145 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10146 L:      linux-integrity@vger.kernel.org
10147 S:      Supported
10148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10149 F:      security/integrity/ima/
10150 F:      security/integrity/
10151
10152 INTEL 810/815 FRAMEBUFFER DRIVER
10153 M:      Antonino Daplas <adaplas@gmail.com>
10154 L:      linux-fbdev@vger.kernel.org
10155 S:      Maintained
10156 F:      drivers/video/fbdev/i810/
10157
10158 INTEL 8255 GPIO DRIVER
10159 M:      William Breathitt Gray <william.gray@linaro.org>
10160 L:      linux-gpio@vger.kernel.org
10161 S:      Maintained
10162 F:      drivers/gpio/gpio-i8255.c
10163 F:      drivers/gpio/gpio-i8255.h
10164
10165 INTEL ASoC DRIVERS
10166 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10167 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10168 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10169 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10170 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10171 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10172 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10173 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10174 S:      Supported
10175 F:      sound/soc/intel/
10176
10177 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10178 M:      Hans de Goede <hdegoede@redhat.com>
10179 L:      platform-driver-x86@vger.kernel.org
10180 S:      Maintained
10181 F:      drivers/platform/x86/intel/atomisp2/pm.c
10182
10183 INTEL ATOMISP2 LED DRIVER
10184 M:      Hans de Goede <hdegoede@redhat.com>
10185 L:      platform-driver-x86@vger.kernel.org
10186 S:      Maintained
10187 F:      drivers/platform/x86/intel/atomisp2/led.c
10188
10189 INTEL BIOS SAR INT1092 DRIVER
10190 M:      Shravan Sudhakar <s.shravan@intel.com>
10191 M:      Intel Corporation <linuxwwan@intel.com>
10192 L:      platform-driver-x86@vger.kernel.org
10193 S:      Maintained
10194 F:      drivers/platform/x86/intel/int1092/
10195
10196 INTEL BROXTON PMC DRIVER
10197 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10198 M:      Zha Qipeng <qipeng.zha@intel.com>
10199 S:      Maintained
10200 F:      drivers/mfd/intel_pmc_bxt.c
10201 F:      include/linux/mfd/intel_pmc_bxt.h
10202
10203 INTEL C600 SERIES SAS CONTROLLER DRIVER
10204 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10205 L:      linux-scsi@vger.kernel.org
10206 S:      Supported
10207 T:      git git://git.code.sf.net/p/intel-sas/isci
10208 F:      drivers/scsi/isci/
10209
10210 INTEL CPU family model numbers
10211 M:      Tony Luck <tony.luck@intel.com>
10212 M:      x86@kernel.org
10213 L:      linux-kernel@vger.kernel.org
10214 S:      Supported
10215 F:      arch/x86/include/asm/intel-family.h
10216
10217 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10218 M:      Jani Nikula <jani.nikula@linux.intel.com>
10219 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10220 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10221 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10222 L:      intel-gfx@lists.freedesktop.org
10223 S:      Supported
10224 W:      https://01.org/linuxgraphics/
10225 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10226 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10227 C:      irc://irc.oftc.net/intel-gfx
10228 T:      git git://anongit.freedesktop.org/drm-intel
10229 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10230 F:      Documentation/gpu/i915.rst
10231 F:      drivers/gpu/drm/i915/
10232 F:      include/drm/i915*
10233 F:      include/uapi/drm/i915_drm.h
10234
10235 INTEL ETHERNET DRIVERS
10236 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10237 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10238 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10239 S:      Supported
10240 W:      http://www.intel.com/support/feedback.htm
10241 W:      http://e1000.sourceforge.net/
10242 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10245 F:      Documentation/networking/device_drivers/ethernet/intel/
10246 F:      drivers/net/ethernet/intel/
10247 F:      drivers/net/ethernet/intel/*/
10248 F:      include/linux/avf/virtchnl.h
10249 F:      include/linux/net/intel/iidc.h
10250
10251 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10252 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10253 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10254 L:      linux-rdma@vger.kernel.org
10255 S:      Supported
10256 F:      drivers/infiniband/hw/irdma/
10257 F:      include/uapi/rdma/irdma-abi.h
10258
10259 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10260 M:      Maik Broemme <mbroemme@libmpq.org>
10261 L:      linux-fbdev@vger.kernel.org
10262 S:      Maintained
10263 F:      Documentation/fb/intelfb.rst
10264 F:      drivers/video/fbdev/intelfb/
10265
10266 INTEL GPIO DRIVERS
10267 M:      Andy Shevchenko <andy@kernel.org>
10268 L:      linux-gpio@vger.kernel.org
10269 S:      Supported
10270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10271 F:      drivers/gpio/gpio-ich.c
10272 F:      drivers/gpio/gpio-merrifield.c
10273 F:      drivers/gpio/gpio-ml-ioh.c
10274 F:      drivers/gpio/gpio-pch.c
10275 F:      drivers/gpio/gpio-sch.c
10276 F:      drivers/gpio/gpio-sodaville.c
10277
10278 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10279 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10280 M:      Zhi Wang <zhi.a.wang@intel.com>
10281 L:      intel-gvt-dev@lists.freedesktop.org
10282 L:      intel-gfx@lists.freedesktop.org
10283 S:      Supported
10284 W:      https://01.org/igvt-g
10285 T:      git https://github.com/intel/gvt-linux.git
10286 F:      drivers/gpu/drm/i915/gvt/
10287
10288 INTEL HID EVENT DRIVER
10289 M:      Alex Hung <alexhung@gmail.com>
10290 L:      platform-driver-x86@vger.kernel.org
10291 S:      Maintained
10292 F:      drivers/platform/x86/intel/hid.c
10293
10294 INTEL I/OAT DMA DRIVER
10295 M:      Dave Jiang <dave.jiang@intel.com>
10296 R:      Dan Williams <dan.j.williams@intel.com>
10297 L:      dmaengine@vger.kernel.org
10298 S:      Supported
10299 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10300 F:      drivers/dma/ioat*
10301
10302 INTEL IDXD DRIVER
10303 M:      Fenghua Yu <fenghua.yu@intel.com>
10304 M:      Dave Jiang <dave.jiang@intel.com>
10305 L:      dmaengine@vger.kernel.org
10306 S:      Supported
10307 F:      drivers/dma/idxd/*
10308 F:      include/uapi/linux/idxd.h
10309
10310 INTEL IDLE DRIVER
10311 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10312 M:      Len Brown <lenb@kernel.org>
10313 L:      linux-pm@vger.kernel.org
10314 S:      Supported
10315 B:      https://bugzilla.kernel.org
10316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10317 F:      drivers/idle/intel_idle.c
10318
10319 INTEL IN FIELD SCAN (IFS) DEVICE
10320 M:      Jithu Joseph <jithu.joseph@intel.com>
10321 R:      Ashok Raj <ashok.raj@intel.com>
10322 R:      Tony Luck <tony.luck@intel.com>
10323 S:      Maintained
10324 F:      drivers/platform/x86/intel/ifs
10325 F:      include/trace/events/intel_ifs.h
10326
10327 INTEL INTEGRATED SENSOR HUB DRIVER
10328 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10329 M:      Jiri Kosina <jikos@kernel.org>
10330 L:      linux-input@vger.kernel.org
10331 S:      Maintained
10332 F:      drivers/hid/intel-ish-hid/
10333
10334 INTEL IOMMU (VT-d)
10335 M:      David Woodhouse <dwmw2@infradead.org>
10336 M:      Lu Baolu <baolu.lu@linux.intel.com>
10337 L:      iommu@lists.linux.dev
10338 S:      Supported
10339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10340 F:      drivers/iommu/intel/
10341
10342 INTEL IPU3 CSI-2 CIO2 DRIVER
10343 M:      Yong Zhi <yong.zhi@intel.com>
10344 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10345 M:      Bingbu Cao <bingbu.cao@intel.com>
10346 M:      Dan Scally <djrscally@gmail.com>
10347 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10348 L:      linux-media@vger.kernel.org
10349 S:      Maintained
10350 T:      git git://linuxtv.org/media_tree.git
10351 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10352 F:      drivers/media/pci/intel/ipu3/
10353
10354 INTEL IPU3 CSI-2 IMGU DRIVER
10355 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10356 R:      Bingbu Cao <bingbu.cao@intel.com>
10357 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10358 L:      linux-media@vger.kernel.org
10359 S:      Maintained
10360 F:      Documentation/admin-guide/media/ipu3.rst
10361 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10362 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10363 F:      drivers/staging/media/ipu3/
10364
10365 INTEL IXP4XX CRYPTO SUPPORT
10366 M:      Corentin Labbe <clabbe@baylibre.com>
10367 L:      linux-crypto@vger.kernel.org
10368 S:      Maintained
10369 F:      drivers/crypto/ixp4xx_crypto.c
10370
10371 INTEL ISHTP ECLITE DRIVER
10372 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10373 L:      platform-driver-x86@vger.kernel.org
10374 S:      Supported
10375 F:      drivers/platform/x86/intel/ishtp_eclite.c
10376
10377 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10378 M:      Krzysztof Halasa <khalasa@piap.pl>
10379 S:      Maintained
10380 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10381 F:      drivers/net/wan/ixp4xx_hss.c
10382 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10383 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10384 F:      include/linux/soc/ixp4xx/npe.h
10385 F:      include/linux/soc/ixp4xx/qmgr.h
10386
10387 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10388 M:      Deepak Saxena <dsaxena@plexity.net>
10389 S:      Maintained
10390 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10391 F:      drivers/char/hw_random/ixp4xx-rng.c
10392
10393 INTEL KEEM BAY DRM DRIVER
10394 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10395 M:      Edmund Dea <edmund.j.dea@intel.com>
10396 S:      Maintained
10397 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10398 F:      drivers/gpu/drm/kmb/
10399
10400 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10401 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10402 S:      Maintained
10403 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10404 F:      drivers/crypto/keembay/Kconfig
10405 F:      drivers/crypto/keembay/Makefile
10406 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10407 F:      drivers/crypto/keembay/ocs-aes.c
10408 F:      drivers/crypto/keembay/ocs-aes.h
10409
10410 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10411 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10412 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10413 M:      Mark Gross <mgross@linux.intel.com>
10414 S:      Maintained
10415 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10416 F:      drivers/crypto/keembay/Kconfig
10417 F:      drivers/crypto/keembay/Makefile
10418 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10419
10420 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10421 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10422 M:      Declan Murphy <declan.murphy@intel.com>
10423 S:      Maintained
10424 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10425 F:      drivers/crypto/keembay/Kconfig
10426 F:      drivers/crypto/keembay/Makefile
10427 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10428 F:      drivers/crypto/keembay/ocs-hcu.c
10429 F:      drivers/crypto/keembay/ocs-hcu.h
10430
10431 INTEL THUNDER BAY EMMC PHY DRIVER
10432 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10433 M:      Rashmi A <rashmi.a@intel.com>
10434 S:      Maintained
10435 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10436 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10437
10438 INTEL MANAGEMENT ENGINE (mei)
10439 M:      Tomas Winkler <tomas.winkler@intel.com>
10440 L:      linux-kernel@vger.kernel.org
10441 S:      Supported
10442 F:      Documentation/driver-api/mei/*
10443 F:      drivers/misc/mei/
10444 F:      drivers/watchdog/mei_wdt.c
10445 F:      include/linux/mei_aux.h
10446 F:      include/linux/mei_cl_bus.h
10447 F:      include/uapi/linux/mei.h
10448 F:      include/uapi/linux/uuid.h
10449 F:      samples/mei/*
10450
10451 INTEL MAX 10 BMC MFD DRIVER
10452 M:      Xu Yilun <yilun.xu@intel.com>
10453 R:      Tom Rix <trix@redhat.com>
10454 S:      Maintained
10455 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10456 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10457 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10458 F:      drivers/mfd/intel-m10-bmc*
10459 F:      include/linux/mfd/intel-m10-bmc.h
10460
10461 INTEL MENLOW THERMAL DRIVER
10462 M:      Sujith Thomas <sujith.thomas@intel.com>
10463 L:      linux-pm@vger.kernel.org
10464 S:      Supported
10465 F:      drivers/thermal/intel/intel_menlow.c
10466
10467 INTEL P-Unit IPC DRIVER
10468 M:      Zha Qipeng <qipeng.zha@intel.com>
10469 L:      platform-driver-x86@vger.kernel.org
10470 S:      Maintained
10471 F:      arch/x86/include/asm/intel_punit_ipc.h
10472 F:      drivers/platform/x86/intel/punit_ipc.c
10473
10474 INTEL PMC CORE DRIVER
10475 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10476 M:      David E Box <david.e.box@intel.com>
10477 L:      platform-driver-x86@vger.kernel.org
10478 S:      Maintained
10479 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10480 F:      drivers/platform/x86/intel/pmc/
10481
10482 INTEL PMIC GPIO DRIVERS
10483 M:      Andy Shevchenko <andy@kernel.org>
10484 S:      Supported
10485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10486 F:      drivers/gpio/gpio-*cove.c
10487
10488 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10489 M:      Andy Shevchenko <andy@kernel.org>
10490 S:      Supported
10491 F:      drivers/mfd/intel_soc_pmic*
10492 F:      include/linux/mfd/intel_soc_pmic*
10493
10494 INTEL PMT DRIVERS
10495 M:      David E. Box <david.e.box@linux.intel.com>
10496 S:      Supported
10497 F:      drivers/platform/x86/intel/pmt/
10498
10499 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10500 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10501 L:      linux-wireless@vger.kernel.org
10502 S:      Maintained
10503 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10504 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10505 F:      drivers/net/wireless/intel/ipw2x00/
10506
10507 INTEL PSTATE DRIVER
10508 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10509 M:      Len Brown <lenb@kernel.org>
10510 L:      linux-pm@vger.kernel.org
10511 S:      Supported
10512 F:      drivers/cpufreq/intel_pstate.c
10513
10514 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10515 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10516 L:      linux-iio@vger.kernel.org
10517 F:      drivers/counter/intel-qep.c
10518
10519 INTEL SCU DRIVERS
10520 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10521 S:      Maintained
10522 F:      arch/x86/include/asm/intel_scu_ipc.h
10523 F:      drivers/platform/x86/intel_scu_*
10524
10525 INTEL SDSI DRIVER
10526 M:      David E. Box <david.e.box@linux.intel.com>
10527 S:      Supported
10528 F:      drivers/platform/x86/intel/sdsi.c
10529 F:      tools/arch/x86/intel_sdsi/
10530 F:      tools/testing/selftests/drivers/sdsi/
10531
10532 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10533 M:      Daniel Scally <djrscally@gmail.com>
10534 S:      Maintained
10535 F:      drivers/platform/x86/intel/int3472/
10536
10537 INTEL SPEED SELECT TECHNOLOGY
10538 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10539 L:      platform-driver-x86@vger.kernel.org
10540 S:      Maintained
10541 F:      drivers/platform/x86/intel/speed_select_if/
10542 F:      include/uapi/linux/isst_if.h
10543 F:      tools/power/x86/intel-speed-select/
10544
10545 INTEL STRATIX10 FIRMWARE DRIVERS
10546 M:      Dinh Nguyen <dinguyen@kernel.org>
10547 L:      linux-kernel@vger.kernel.org
10548 S:      Maintained
10549 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10550 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10551 F:      drivers/firmware/stratix10-rsu.c
10552 F:      drivers/firmware/stratix10-svc.c
10553 F:      include/linux/firmware/intel/stratix10-smc.h
10554 F:      include/linux/firmware/intel/stratix10-svc-client.h
10555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10556
10557 INTEL TELEMETRY DRIVER
10558 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10559 M:      "David E. Box" <david.e.box@linux.intel.com>
10560 L:      platform-driver-x86@vger.kernel.org
10561 S:      Maintained
10562 F:      arch/x86/include/asm/intel_telemetry.h
10563 F:      drivers/platform/x86/intel/telemetry/
10564
10565 INTEL TPMI DRIVER
10566 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10567 L:      platform-driver-x86@vger.kernel.org
10568 S:      Maintained
10569 F:      drivers/platform/x86/intel/tpmi.c
10570 F:      include/linux/intel_tpmi.h
10571
10572 INTEL UNCORE FREQUENCY CONTROL
10573 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10574 L:      platform-driver-x86@vger.kernel.org
10575 S:      Maintained
10576 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10577 F:      drivers/platform/x86/intel/uncore-frequency/
10578
10579 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10580 M:      David E. Box <david.e.box@linux.intel.com>
10581 S:      Supported
10582 F:      drivers/platform/x86/intel/vsec.*
10583
10584 INTEL VIRTUAL BUTTON DRIVER
10585 M:      AceLan Kao <acelan.kao@canonical.com>
10586 L:      platform-driver-x86@vger.kernel.org
10587 S:      Maintained
10588 F:      drivers/platform/x86/intel/vbtn.c
10589
10590 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10591 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10592 L:      linux-wireless@vger.kernel.org
10593 S:      Supported
10594 F:      drivers/net/wireless/intel/iwlegacy/
10595
10596 INTEL WIRELESS WIFI LINK (iwlwifi)
10597 M:      Gregory Greenman <gregory.greenman@intel.com>
10598 L:      linux-wireless@vger.kernel.org
10599 S:      Supported
10600 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10602 F:      drivers/net/wireless/intel/iwlwifi/
10603
10604 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10605 M:      Jithu Joseph <jithu.joseph@intel.com>
10606 R:      Maurice Ma <maurice.ma@intel.com>
10607 S:      Maintained
10608 W:      https://slimbootloader.github.io/security/firmware-update.html
10609 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10610
10611 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10612 L:      Dell.Client.Kernel@dell.com
10613 S:      Maintained
10614 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10615
10616 INTEL WWAN IOSM DRIVER
10617 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10618 M:      Intel Corporation <linuxwwan@intel.com>
10619 L:      netdev@vger.kernel.org
10620 S:      Maintained
10621 F:      drivers/net/wwan/iosm/
10622
10623 INTEL(R) TRACE HUB
10624 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10625 S:      Supported
10626 F:      Documentation/trace/intel_th.rst
10627 F:      drivers/hwtracing/intel_th/
10628 F:      include/linux/intel_th.h
10629
10630 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10631 M:      Ning Sun <ning.sun@intel.com>
10632 L:      tboot-devel@lists.sourceforge.net
10633 S:      Supported
10634 W:      http://tboot.sourceforge.net
10635 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10636 F:      Documentation/x86/intel_txt.rst
10637 F:      arch/x86/kernel/tboot.c
10638 F:      include/linux/tboot.h
10639
10640 INTEL SGX
10641 M:      Jarkko Sakkinen <jarkko@kernel.org>
10642 R:      Dave Hansen <dave.hansen@linux.intel.com>
10643 L:      linux-sgx@vger.kernel.org
10644 S:      Supported
10645 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10647 F:      Documentation/x86/sgx.rst
10648 F:      arch/x86/entry/vdso/vsgx.S
10649 F:      arch/x86/include/asm/sgx.h
10650 F:      arch/x86/include/uapi/asm/sgx.h
10651 F:      arch/x86/kernel/cpu/sgx/*
10652 F:      tools/testing/selftests/sgx/*
10653 K:      \bSGX_
10654
10655 INTERCONNECT API
10656 M:      Georgi Djakov <djakov@kernel.org>
10657 L:      linux-pm@vger.kernel.org
10658 S:      Maintained
10659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10660 F:      Documentation/devicetree/bindings/interconnect/
10661 F:      Documentation/driver-api/interconnect.rst
10662 F:      drivers/interconnect/
10663 F:      include/dt-bindings/interconnect/
10664 F:      include/linux/interconnect-provider.h
10665 F:      include/linux/interconnect.h
10666
10667 INTERRUPT COUNTER DRIVER
10668 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10669 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10670 L:      linux-iio@vger.kernel.org
10671 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10672 F:      drivers/counter/interrupt-cnt.c
10673
10674 INTERSIL ISL7998X VIDEO DECODER DRIVER
10675 M:      Michael Tretter <m.tretter@pengutronix.de>
10676 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10677 L:      linux-media@vger.kernel.org
10678 S:      Maintained
10679 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10680 F:      drivers/media/i2c/isl7998x.c
10681
10682 INVENSENSE ICM-426xx IMU DRIVER
10683 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10684 L:      linux-iio@vger.kernel.org
10685 S:      Maintained
10686 W:      https://invensense.tdk.com/
10687 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10688 F:      drivers/iio/imu/inv_icm42600/
10689
10690 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10691 M:      Linus Walleij <linus.walleij@linaro.org>
10692 L:      linux-iio@vger.kernel.org
10693 S:      Maintained
10694 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10695 F:      drivers/iio/gyro/mpu3050*
10696
10697 IOC3 ETHERNET DRIVER
10698 M:      Ralf Baechle <ralf@linux-mips.org>
10699 L:      linux-mips@vger.kernel.org
10700 S:      Maintained
10701 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10702
10703 IOMAP FILESYSTEM LIBRARY
10704 M:      Christoph Hellwig <hch@infradead.org>
10705 M:      Darrick J. Wong <djwong@kernel.org>
10706 L:      linux-xfs@vger.kernel.org
10707 L:      linux-fsdevel@vger.kernel.org
10708 S:      Supported
10709 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10710 F:      fs/iomap/
10711 F:      include/linux/iomap.h
10712
10713 IOMMU DMA-API LAYER
10714 M:      Robin Murphy <robin.murphy@arm.com>
10715 L:      iommu@lists.linux.dev
10716 S:      Maintained
10717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10718 F:      drivers/iommu/dma-iommu.c
10719 F:      drivers/iommu/dma-iommu.h
10720 F:      drivers/iommu/iova.c
10721 F:      include/linux/iova.h
10722
10723 IOMMUFD
10724 M:      Jason Gunthorpe <jgg@nvidia.com>
10725 M:      Kevin Tian <kevin.tian@intel.com>
10726 L:      iommu@lists.linux.dev
10727 S:      Maintained
10728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10729 F:      Documentation/userspace-api/iommufd.rst
10730 F:      drivers/iommu/iommufd/
10731 F:      include/linux/iommufd.h
10732 F:      include/uapi/linux/iommufd.h
10733 F:      tools/testing/selftests/iommu/
10734
10735 IOMMU SUBSYSTEM
10736 M:      Joerg Roedel <joro@8bytes.org>
10737 M:      Will Deacon <will@kernel.org>
10738 R:      Robin Murphy <robin.murphy@arm.com>
10739 L:      iommu@lists.linux.dev
10740 S:      Maintained
10741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10742 F:      Documentation/devicetree/bindings/iommu/
10743 F:      Documentation/userspace-api/iommu.rst
10744 F:      drivers/iommu/
10745 F:      include/linux/iommu.h
10746 F:      include/linux/iova.h
10747 F:      include/linux/of_iommu.h
10748 F:      include/uapi/linux/iommu.h
10749
10750 IOSYS-MAP HELPERS
10751 M:      Thomas Zimmermann <tzimmermann@suse.de>
10752 L:      dri-devel@lists.freedesktop.org
10753 S:      Maintained
10754 T:      git git://anongit.freedesktop.org/drm/drm-misc
10755 F:      include/linux/iosys-map.h
10756
10757 IO_URING
10758 M:      Jens Axboe <axboe@kernel.dk>
10759 R:      Pavel Begunkov <asml.silence@gmail.com>
10760 L:      io-uring@vger.kernel.org
10761 S:      Maintained
10762 T:      git git://git.kernel.dk/linux-block
10763 T:      git git://git.kernel.dk/liburing
10764 F:      io_uring/
10765 F:      include/linux/io_uring.h
10766 F:      include/linux/io_uring_types.h
10767 F:      include/trace/events/io_uring.h
10768 F:      include/uapi/linux/io_uring.h
10769 F:      tools/io_uring/
10770
10771 IPMI SUBSYSTEM
10772 M:      Corey Minyard <minyard@acm.org>
10773 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10774 S:      Supported
10775 W:      http://openipmi.sourceforge.net/
10776 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10777 F:      Documentation/driver-api/ipmi.rst
10778 F:      Documentation/devicetree/bindings/ipmi/
10779 F:      drivers/char/ipmi/
10780 F:      include/linux/ipmi*
10781 F:      include/uapi/linux/ipmi*
10782
10783 IPS SCSI RAID DRIVER
10784 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10785 L:      linux-scsi@vger.kernel.org
10786 S:      Maintained
10787 W:      http://www.adaptec.com/
10788 F:      drivers/scsi/ips*
10789
10790 IPVS
10791 M:      Simon Horman <horms@verge.net.au>
10792 M:      Julian Anastasov <ja@ssi.bg>
10793 L:      netdev@vger.kernel.org
10794 L:      lvs-devel@vger.kernel.org
10795 S:      Maintained
10796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10798 F:      Documentation/networking/ipvs-sysctl.rst
10799 F:      include/net/ip_vs.h
10800 F:      include/uapi/linux/ip_vs.h
10801 F:      net/netfilter/ipvs/
10802
10803 IPWIRELESS DRIVER
10804 M:      Jiri Kosina <jikos@kernel.org>
10805 M:      David Sterba <dsterba@suse.com>
10806 S:      Odd Fixes
10807 F:      drivers/tty/ipwireless/
10808
10809 IRON DEVICE AUDIO CODEC DRIVERS
10810 M:      Kiseok Jo <kiseok.jo@irondevice.com>
10811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10812 S:      Maintained
10813 F:      Documentation/devicetree/bindings/sound/irondevice,*
10814 F:      sound/soc/codecs/sma*
10815
10816 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10817 M:      Marc Zyngier <maz@kernel.org>
10818 S:      Maintained
10819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10820 F:      Documentation/core-api/irq/irq-domain.rst
10821 F:      include/linux/irqdomain.h
10822 F:      kernel/irq/irqdomain.c
10823 F:      kernel/irq/msi.c
10824
10825 IRQ SUBSYSTEM
10826 M:      Thomas Gleixner <tglx@linutronix.de>
10827 L:      linux-kernel@vger.kernel.org
10828 S:      Maintained
10829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10830 F:      kernel/irq/
10831 F:      include/linux/group_cpus.h
10832 F:      lib/group_cpus.c
10833
10834 IRQCHIP DRIVERS
10835 M:      Thomas Gleixner <tglx@linutronix.de>
10836 M:      Marc Zyngier <maz@kernel.org>
10837 L:      linux-kernel@vger.kernel.org
10838 S:      Maintained
10839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10840 F:      Documentation/devicetree/bindings/interrupt-controller/
10841 F:      drivers/irqchip/
10842
10843 ISA
10844 M:      William Breathitt Gray <william.gray@linaro.org>
10845 S:      Maintained
10846 F:      Documentation/driver-api/isa.rst
10847 F:      drivers/base/isa.c
10848 F:      include/linux/isa.h
10849
10850 ISA RADIO MODULE
10851 M:      Hans Verkuil <hverkuil@xs4all.nl>
10852 L:      linux-media@vger.kernel.org
10853 S:      Maintained
10854 W:      https://linuxtv.org
10855 T:      git git://linuxtv.org/media_tree.git
10856 F:      drivers/media/radio/radio-isa*
10857
10858 ISAPNP
10859 M:      Jaroslav Kysela <perex@perex.cz>
10860 S:      Maintained
10861 F:      Documentation/driver-api/isapnp.rst
10862 F:      drivers/pnp/isapnp/
10863 F:      include/linux/isapnp.h
10864
10865 ISCSI
10866 M:      Lee Duncan <lduncan@suse.com>
10867 M:      Chris Leech <cleech@redhat.com>
10868 M:      Mike Christie <michael.christie@oracle.com>
10869 L:      open-iscsi@googlegroups.com
10870 L:      linux-scsi@vger.kernel.org
10871 S:      Maintained
10872 W:      www.open-iscsi.com
10873 F:      drivers/scsi/*iscsi*
10874 F:      include/scsi/*iscsi*
10875
10876 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10877 M:      Peter Jones <pjones@redhat.com>
10878 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10879 S:      Maintained
10880 F:      drivers/firmware/iscsi_ibft*
10881
10882 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10883 M:      Sagi Grimberg <sagi@grimberg.me>
10884 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10885 L:      linux-rdma@vger.kernel.org
10886 S:      Supported
10887 W:      http://www.openfabrics.org
10888 W:      www.open-iscsi.org
10889 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10890 F:      drivers/infiniband/ulp/iser/
10891
10892 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10893 M:      Sagi Grimberg <sagi@grimberg.me>
10894 L:      linux-rdma@vger.kernel.org
10895 L:      target-devel@vger.kernel.org
10896 S:      Supported
10897 W:      http://www.linux-iscsi.org
10898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10899 F:      drivers/infiniband/ulp/isert
10900
10901 ISDN/CMTP OVER BLUETOOTH
10902 M:      Karsten Keil <isdn@linux-pingi.de>
10903 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10904 L:      netdev@vger.kernel.org
10905 S:      Odd Fixes
10906 W:      http://www.isdn4linux.de
10907 F:      Documentation/isdn/
10908 F:      drivers/isdn/capi/
10909 F:      include/linux/isdn/
10910 F:      include/uapi/linux/isdn/
10911 F:      net/bluetooth/cmtp/
10912
10913 ISDN/mISDN SUBSYSTEM
10914 M:      Karsten Keil <isdn@linux-pingi.de>
10915 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10916 L:      netdev@vger.kernel.org
10917 S:      Maintained
10918 W:      http://www.isdn4linux.de
10919 F:      drivers/isdn/Kconfig
10920 F:      drivers/isdn/Makefile
10921 F:      drivers/isdn/hardware/
10922 F:      drivers/isdn/mISDN/
10923
10924 ISOFS FILESYSTEM
10925 M:      Jan Kara <jack@suse.cz>
10926 L:      linux-fsdevel@vger.kernel.org
10927 S:      Maintained
10928 F:      Documentation/filesystems/isofs.rst
10929 F:      fs/isofs/
10930
10931 IT87 HARDWARE MONITORING DRIVER
10932 M:      Jean Delvare <jdelvare@suse.com>
10933 L:      linux-hwmon@vger.kernel.org
10934 S:      Maintained
10935 F:      Documentation/hwmon/it87.rst
10936 F:      drivers/hwmon/it87.c
10937
10938 IT913X MEDIA DRIVER
10939 M:      Antti Palosaari <crope@iki.fi>
10940 L:      linux-media@vger.kernel.org
10941 S:      Maintained
10942 W:      https://linuxtv.org
10943 W:      http://palosaari.fi/linux/
10944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10945 T:      git git://linuxtv.org/anttip/media_tree.git
10946 F:      drivers/media/tuners/it913x*
10947
10948 ITE IT66121 HDMI BRIDGE DRIVER
10949 M:      Phong LE <ple@baylibre.com>
10950 M:      Neil Armstrong <neil.armstrong@linaro.org>
10951 S:      Maintained
10952 T:      git git://anongit.freedesktop.org/drm/drm-misc
10953 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10954 F:      drivers/gpu/drm/bridge/ite-it66121.c
10955
10956 IVTV VIDEO4LINUX DRIVER
10957 M:      Andy Walls <awalls@md.metrocast.net>
10958 L:      linux-media@vger.kernel.org
10959 S:      Maintained
10960 W:      https://linuxtv.org
10961 T:      git git://linuxtv.org/media_tree.git
10962 F:      Documentation/admin-guide/media/ivtv*
10963 F:      drivers/media/pci/ivtv/
10964 F:      include/uapi/linux/ivtv*
10965
10966 IX2505V MEDIA DRIVER
10967 M:      Malcolm Priestley <tvboxspy@gmail.com>
10968 L:      linux-media@vger.kernel.org
10969 S:      Maintained
10970 W:      https://linuxtv.org
10971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10972 F:      drivers/media/dvb-frontends/ix2505v*
10973
10974 JAILHOUSE HYPERVISOR INTERFACE
10975 M:      Jan Kiszka <jan.kiszka@siemens.com>
10976 L:      jailhouse-dev@googlegroups.com
10977 S:      Maintained
10978 F:      arch/x86/include/asm/jailhouse_para.h
10979 F:      arch/x86/kernel/jailhouse.c
10980
10981 JC42.4 TEMPERATURE SENSOR DRIVER
10982 M:      Guenter Roeck <linux@roeck-us.net>
10983 L:      linux-hwmon@vger.kernel.org
10984 S:      Maintained
10985 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10986 F:      Documentation/hwmon/jc42.rst
10987 F:      drivers/hwmon/jc42.c
10988
10989 JFS FILESYSTEM
10990 M:      Dave Kleikamp <shaggy@kernel.org>
10991 L:      jfs-discussion@lists.sourceforge.net
10992 S:      Odd Fixes
10993 W:      http://jfs.sourceforge.net/
10994 T:      git https://github.com/kleikamp/linux-shaggy.git
10995 F:      Documentation/admin-guide/jfs.rst
10996 F:      fs/jfs/
10997
10998 JME NETWORK DRIVER
10999 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
11000 L:      netdev@vger.kernel.org
11001 S:      Maintained
11002 F:      drivers/net/ethernet/jme.*
11003
11004 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11005 M:      David Woodhouse <dwmw2@infradead.org>
11006 M:      Richard Weinberger <richard@nod.at>
11007 L:      linux-mtd@lists.infradead.org
11008 S:      Odd Fixes
11009 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11010 T:      git git://git.infradead.org/ubifs-2.6.git
11011 F:      fs/jffs2/
11012 F:      include/uapi/linux/jffs2.h
11013
11014 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11015 M:      "Theodore Ts'o" <tytso@mit.edu>
11016 M:      Jan Kara <jack@suse.com>
11017 L:      linux-ext4@vger.kernel.org
11018 S:      Maintained
11019 F:      fs/jbd2/
11020 F:      include/linux/jbd2.h
11021
11022 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11023 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11024 L:      linux-media@vger.kernel.org
11025 L:      linux-renesas-soc@vger.kernel.org
11026 S:      Maintained
11027 F:      drivers/media/platform/renesas/rcar_jpu.c
11028
11029 JSM Neo PCI based serial card
11030 L:      linux-serial@vger.kernel.org
11031 S:      Orphan
11032 F:      drivers/tty/serial/jsm/
11033
11034 K10TEMP HARDWARE MONITORING DRIVER
11035 M:      Clemens Ladisch <clemens@ladisch.de>
11036 L:      linux-hwmon@vger.kernel.org
11037 S:      Maintained
11038 F:      Documentation/hwmon/k10temp.rst
11039 F:      drivers/hwmon/k10temp.c
11040
11041 K8TEMP HARDWARE MONITORING DRIVER
11042 M:      Rudolf Marek <r.marek@assembler.cz>
11043 L:      linux-hwmon@vger.kernel.org
11044 S:      Maintained
11045 F:      Documentation/hwmon/k8temp.rst
11046 F:      drivers/hwmon/k8temp.c
11047
11048 KASAN
11049 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11050 R:      Alexander Potapenko <glider@google.com>
11051 R:      Andrey Konovalov <andreyknvl@gmail.com>
11052 R:      Dmitry Vyukov <dvyukov@google.com>
11053 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11054 L:      kasan-dev@googlegroups.com
11055 S:      Maintained
11056 F:      Documentation/dev-tools/kasan.rst
11057 F:      arch/*/include/asm/*kasan.h
11058 F:      arch/*/mm/kasan_init*
11059 F:      include/linux/kasan*.h
11060 F:      lib/Kconfig.kasan
11061 F:      mm/kasan/
11062 F:      scripts/Makefile.kasan
11063
11064 KCONFIG
11065 M:      Masahiro Yamada <masahiroy@kernel.org>
11066 L:      linux-kbuild@vger.kernel.org
11067 S:      Maintained
11068 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
11070 F:      Documentation/kbuild/kconfig*
11071 F:      scripts/Kconfig.include
11072 F:      scripts/kconfig/
11073
11074 KCOV
11075 R:      Dmitry Vyukov <dvyukov@google.com>
11076 R:      Andrey Konovalov <andreyknvl@gmail.com>
11077 L:      kasan-dev@googlegroups.com
11078 S:      Maintained
11079 F:      Documentation/dev-tools/kcov.rst
11080 F:      include/linux/kcov.h
11081 F:      include/uapi/linux/kcov.h
11082 F:      kernel/kcov.c
11083 F:      scripts/Makefile.kcov
11084
11085 KCSAN
11086 M:      Marco Elver <elver@google.com>
11087 R:      Dmitry Vyukov <dvyukov@google.com>
11088 L:      kasan-dev@googlegroups.com
11089 S:      Maintained
11090 F:      Documentation/dev-tools/kcsan.rst
11091 F:      include/linux/kcsan*.h
11092 F:      kernel/kcsan/
11093 F:      lib/Kconfig.kcsan
11094 F:      scripts/Makefile.kcsan
11095
11096 KDUMP
11097 M:      Baoquan He <bhe@redhat.com>
11098 R:      Vivek Goyal <vgoyal@redhat.com>
11099 R:      Dave Young <dyoung@redhat.com>
11100 L:      kexec@lists.infradead.org
11101 S:      Maintained
11102 W:      http://lse.sourceforge.net/kdump/
11103 F:      Documentation/admin-guide/kdump/
11104 F:      fs/proc/vmcore.c
11105 F:      include/linux/crash_core.h
11106 F:      include/linux/crash_dump.h
11107 F:      include/uapi/linux/vmcore.h
11108 F:      kernel/crash_*.c
11109
11110 KEENE FM RADIO TRANSMITTER DRIVER
11111 M:      Hans Verkuil <hverkuil@xs4all.nl>
11112 L:      linux-media@vger.kernel.org
11113 S:      Maintained
11114 W:      https://linuxtv.org
11115 T:      git git://linuxtv.org/media_tree.git
11116 F:      drivers/media/radio/radio-keene*
11117
11118 KERNEL AUTOMOUNTER
11119 M:      Ian Kent <raven@themaw.net>
11120 L:      autofs@vger.kernel.org
11121 S:      Maintained
11122 F:      fs/autofs/
11123
11124 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11125 M:      Masahiro Yamada <masahiroy@kernel.org>
11126 R:      Nathan Chancellor <nathan@kernel.org>
11127 R:      Nick Desaulniers <ndesaulniers@google.com>
11128 R:      Nicolas Schier <nicolas@fjasle.eu>
11129 L:      linux-kbuild@vger.kernel.org
11130 S:      Maintained
11131 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11133 F:      Documentation/kbuild/
11134 F:      Makefile
11135 F:      scripts/*vmlinux*
11136 F:      scripts/Kbuild*
11137 F:      scripts/Makefile*
11138 F:      scripts/basic/
11139 F:      scripts/dummy-tools/
11140 F:      scripts/mk*
11141 F:      scripts/mod/
11142 F:      scripts/package/
11143
11144 KERNEL HARDENING (not covered by other areas)
11145 M:      Kees Cook <keescook@chromium.org>
11146 L:      linux-hardening@vger.kernel.org
11147 S:      Supported
11148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11149 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11150 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11151 F:      include/linux/overflow.h
11152 F:      include/linux/randomize_kstack.h
11153 F:      mm/usercopy.c
11154 K:      \b(add|choose)_random_kstack_offset\b
11155 K:      \b__check_(object_size|heap_object)\b
11156
11157 KERNEL JANITORS
11158 L:      kernel-janitors@vger.kernel.org
11159 S:      Odd Fixes
11160 W:      http://kernelnewbies.org/KernelJanitors
11161
11162 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11163 M:      Chuck Lever <chuck.lever@oracle.com>
11164 M:      Jeff Layton <jlayton@kernel.org>
11165 L:      linux-nfs@vger.kernel.org
11166 S:      Supported
11167 W:      http://nfs.sourceforge.net/
11168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11169 F:      fs/exportfs/
11170 F:      fs/lockd/
11171 F:      fs/nfs_common/
11172 F:      fs/nfsd/
11173 F:      include/linux/lockd/
11174 F:      include/linux/sunrpc/
11175 F:      include/trace/events/rpcgss.h
11176 F:      include/trace/events/rpcrdma.h
11177 F:      include/trace/events/sunrpc.h
11178 F:      include/trace/misc/fs.h
11179 F:      include/trace/misc/nfs.h
11180 F:      include/trace/misc/sunrpc.h
11181 F:      include/uapi/linux/nfsd/
11182 F:      include/uapi/linux/sunrpc/
11183 F:      net/sunrpc/
11184 F:      Documentation/filesystems/nfs/
11185
11186 KERNEL REGRESSIONS
11187 M:      Thorsten Leemhuis <linux@leemhuis.info>
11188 L:      regressions@lists.linux.dev
11189 S:      Supported
11190 F:      Documentation/admin-guide/reporting-regressions.rst
11191 F:      Documentation/process/handling-regressions.rst
11192
11193 KERNEL SELFTEST FRAMEWORK
11194 M:      Shuah Khan <shuah@kernel.org>
11195 M:      Shuah Khan <skhan@linuxfoundation.org>
11196 L:      linux-kselftest@vger.kernel.org
11197 S:      Maintained
11198 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11200 F:      Documentation/dev-tools/kselftest*
11201 F:      tools/testing/selftests/
11202
11203 KERNEL SMB3 SERVER (KSMBD)
11204 M:      Namjae Jeon <linkinjeon@kernel.org>
11205 M:      Steve French <sfrench@samba.org>
11206 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11207 R:      Tom Talpey <tom@talpey.com>
11208 L:      linux-cifs@vger.kernel.org
11209 S:      Maintained
11210 T:      git git://git.samba.org/ksmbd.git
11211 F:      Documentation/filesystems/cifs/ksmbd.rst
11212 F:      fs/ksmbd/
11213 F:      fs/smbfs_common/
11214
11215 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11216 M:      Brendan Higgins <brendanhiggins@google.com>
11217 M:      David Gow <davidgow@google.com>
11218 L:      linux-kselftest@vger.kernel.org
11219 L:      kunit-dev@googlegroups.com
11220 S:      Maintained
11221 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11222 F:      Documentation/dev-tools/kunit/
11223 F:      include/kunit/
11224 F:      lib/kunit/
11225 F:      tools/testing/kunit/
11226
11227 KERNEL USERMODE HELPER
11228 M:      Luis Chamberlain <mcgrof@kernel.org>
11229 L:      linux-kernel@vger.kernel.org
11230 S:      Maintained
11231 F:      include/linux/umh.h
11232 F:      kernel/umh.c
11233
11234 KERNEL VIRTUAL MACHINE (KVM)
11235 M:      Paolo Bonzini <pbonzini@redhat.com>
11236 L:      kvm@vger.kernel.org
11237 S:      Supported
11238 W:      http://www.linux-kvm.org
11239 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11240 F:      Documentation/virt/kvm/
11241 F:      include/asm-generic/kvm*
11242 F:      include/kvm/iodev.h
11243 F:      include/linux/kvm*
11244 F:      include/trace/events/kvm.h
11245 F:      include/uapi/asm-generic/kvm*
11246 F:      include/uapi/linux/kvm*
11247 F:      tools/kvm/
11248 F:      tools/testing/selftests/kvm/
11249 F:      virt/kvm/*
11250
11251 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11252 M:      Marc Zyngier <maz@kernel.org>
11253 M:      Oliver Upton <oliver.upton@linux.dev>
11254 R:      James Morse <james.morse@arm.com>
11255 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11256 R:      Zenghui Yu <yuzenghui@huawei.com>
11257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11258 L:      kvmarm@lists.linux.dev
11259 S:      Maintained
11260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11261 F:      arch/arm64/include/asm/kvm*
11262 F:      arch/arm64/include/uapi/asm/kvm*
11263 F:      arch/arm64/kvm/
11264 F:      include/kvm/arm_*
11265 F:      tools/testing/selftests/kvm/*/aarch64/
11266 F:      tools/testing/selftests/kvm/aarch64/
11267
11268 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11269 M:      Huacai Chen <chenhuacai@kernel.org>
11270 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11271 L:      linux-mips@vger.kernel.org
11272 L:      kvm@vger.kernel.org
11273 S:      Maintained
11274 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11275 F:      arch/mips/include/asm/kvm*
11276 F:      arch/mips/include/uapi/asm/kvm*
11277 F:      arch/mips/kvm/
11278
11279 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11280 L:      linuxppc-dev@lists.ozlabs.org
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11282 F:      arch/powerpc/include/asm/kvm*
11283 F:      arch/powerpc/include/uapi/asm/kvm*
11284 F:      arch/powerpc/kernel/kvm*
11285 F:      arch/powerpc/kvm/
11286
11287 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11288 M:      Anup Patel <anup@brainfault.org>
11289 R:      Atish Patra <atishp@atishpatra.org>
11290 L:      kvm@vger.kernel.org
11291 L:      kvm-riscv@lists.infradead.org
11292 L:      linux-riscv@lists.infradead.org
11293 S:      Maintained
11294 T:      git https://github.com/kvm-riscv/linux.git
11295 F:      arch/riscv/include/asm/kvm*
11296 F:      arch/riscv/include/uapi/asm/kvm*
11297 F:      arch/riscv/kvm/
11298 F:      tools/testing/selftests/kvm/*/riscv/
11299
11300 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11301 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11302 M:      Janosch Frank <frankja@linux.ibm.com>
11303 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11304 R:      David Hildenbrand <david@redhat.com>
11305 L:      kvm@vger.kernel.org
11306 S:      Supported
11307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11308 F:      Documentation/virt/kvm/s390*
11309 F:      arch/s390/include/asm/gmap.h
11310 F:      arch/s390/include/asm/kvm*
11311 F:      arch/s390/include/uapi/asm/kvm*
11312 F:      arch/s390/include/uapi/asm/uvdevice.h
11313 F:      arch/s390/kernel/uv.c
11314 F:      arch/s390/kvm/
11315 F:      arch/s390/mm/gmap.c
11316 F:      drivers/s390/char/uvdevice.c
11317 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11318 F:      tools/testing/selftests/kvm/*/s390x/
11319 F:      tools/testing/selftests/kvm/s390x/
11320
11321 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11322 M:      Sean Christopherson <seanjc@google.com>
11323 M:      Paolo Bonzini <pbonzini@redhat.com>
11324 L:      kvm@vger.kernel.org
11325 S:      Supported
11326 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11327 F:      arch/x86/include/asm/kvm*
11328 F:      arch/x86/include/asm/svm.h
11329 F:      arch/x86/include/asm/vmx*.h
11330 F:      arch/x86/include/uapi/asm/kvm*
11331 F:      arch/x86/include/uapi/asm/svm.h
11332 F:      arch/x86/include/uapi/asm/vmx.h
11333 F:      arch/x86/kvm/
11334 F:      arch/x86/kvm/*/
11335
11336 KVM PARAVIRT (KVM/paravirt)
11337 M:      Paolo Bonzini <pbonzini@redhat.com>
11338 R:      Wanpeng Li <wanpengli@tencent.com>
11339 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11340 L:      kvm@vger.kernel.org
11341 S:      Supported
11342 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11343 F:      arch/x86/kernel/kvm.c
11344 F:      arch/x86/kernel/kvmclock.c
11345 F:      arch/x86/include/asm/pvclock-abi.h
11346 F:      include/linux/kvm_para.h
11347 F:      include/uapi/linux/kvm_para.h
11348 F:      include/uapi/asm-generic/kvm_para.h
11349 F:      include/asm-generic/kvm_para.h
11350 F:      arch/um/include/asm/kvm_para.h
11351 F:      arch/x86/include/asm/kvm_para.h
11352 F:      arch/x86/include/uapi/asm/kvm_para.h
11353
11354 KVM X86 HYPER-V (KVM/hyper-v)
11355 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11356 M:      Sean Christopherson <seanjc@google.com>
11357 M:      Paolo Bonzini <pbonzini@redhat.com>
11358 L:      kvm@vger.kernel.org
11359 S:      Supported
11360 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11361 F:      arch/x86/kvm/hyperv.*
11362 F:      arch/x86/kvm/kvm_onhyperv.*
11363 F:      arch/x86/kvm/svm/hyperv.*
11364 F:      arch/x86/kvm/svm/svm_onhyperv.*
11365 F:      arch/x86/kvm/vmx/hyperv.*
11366
11367 KVM X86 Xen (KVM/Xen)
11368 M:      David Woodhouse <dwmw2@infradead.org>
11369 M:      Paul Durrant <paul@xen.org>
11370 M:      Sean Christopherson <seanjc@google.com>
11371 M:      Paolo Bonzini <pbonzini@redhat.com>
11372 L:      kvm@vger.kernel.org
11373 S:      Supported
11374 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11375 F:      arch/x86/kvm/xen.*
11376
11377 KERNFS
11378 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11379 M:      Tejun Heo <tj@kernel.org>
11380 S:      Supported
11381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11382 F:      fs/kernfs/
11383 F:      include/linux/kernfs.h
11384
11385 KEXEC
11386 M:      Eric Biederman <ebiederm@xmission.com>
11387 L:      kexec@lists.infradead.org
11388 S:      Maintained
11389 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11390 F:      include/linux/kexec.h
11391 F:      include/uapi/linux/kexec.h
11392 F:      kernel/kexec*
11393
11394 KEYS-ENCRYPTED
11395 M:      Mimi Zohar <zohar@linux.ibm.com>
11396 L:      linux-integrity@vger.kernel.org
11397 L:      keyrings@vger.kernel.org
11398 S:      Supported
11399 F:      Documentation/security/keys/trusted-encrypted.rst
11400 F:      include/keys/encrypted-type.h
11401 F:      security/keys/encrypted-keys/
11402
11403 KEYS-TRUSTED
11404 M:      James Bottomley <jejb@linux.ibm.com>
11405 M:      Jarkko Sakkinen <jarkko@kernel.org>
11406 M:      Mimi Zohar <zohar@linux.ibm.com>
11407 L:      linux-integrity@vger.kernel.org
11408 L:      keyrings@vger.kernel.org
11409 S:      Supported
11410 F:      Documentation/security/keys/trusted-encrypted.rst
11411 F:      include/keys/trusted-type.h
11412 F:      include/keys/trusted_tpm.h
11413 F:      security/keys/trusted-keys/
11414
11415 KEYS-TRUSTED-TEE
11416 M:      Sumit Garg <sumit.garg@linaro.org>
11417 L:      linux-integrity@vger.kernel.org
11418 L:      keyrings@vger.kernel.org
11419 S:      Supported
11420 F:      include/keys/trusted_tee.h
11421 F:      security/keys/trusted-keys/trusted_tee.c
11422
11423 KEYS-TRUSTED-CAAM
11424 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11425 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11426 L:      linux-integrity@vger.kernel.org
11427 L:      keyrings@vger.kernel.org
11428 S:      Maintained
11429 F:      include/keys/trusted_caam.h
11430 F:      security/keys/trusted-keys/trusted_caam.c
11431
11432 KEYS/KEYRINGS
11433 M:      David Howells <dhowells@redhat.com>
11434 M:      Jarkko Sakkinen <jarkko@kernel.org>
11435 L:      keyrings@vger.kernel.org
11436 S:      Maintained
11437 F:      Documentation/security/keys/core.rst
11438 F:      include/keys/
11439 F:      include/linux/key-type.h
11440 F:      include/linux/key.h
11441 F:      include/linux/keyctl.h
11442 F:      include/uapi/linux/keyctl.h
11443 F:      security/keys/
11444
11445 KEYS/KEYRINGS_INTEGRITY
11446 M:      Jarkko Sakkinen <jarkko@kernel.org>
11447 M:      Mimi Zohar <zohar@linux.ibm.com>
11448 L:      linux-integrity@vger.kernel.org
11449 L:      keyrings@vger.kernel.org
11450 S:      Supported
11451 F:      security/integrity/platform_certs
11452
11453 KFENCE
11454 M:      Alexander Potapenko <glider@google.com>
11455 M:      Marco Elver <elver@google.com>
11456 R:      Dmitry Vyukov <dvyukov@google.com>
11457 L:      kasan-dev@googlegroups.com
11458 S:      Maintained
11459 F:      Documentation/dev-tools/kfence.rst
11460 F:      arch/*/include/asm/kfence.h
11461 F:      include/linux/kfence.h
11462 F:      lib/Kconfig.kfence
11463 F:      mm/kfence/
11464
11465 KFIFO
11466 M:      Stefani Seibold <stefani@seibold.net>
11467 S:      Maintained
11468 F:      include/linux/kfifo.h
11469 F:      lib/kfifo.c
11470 F:      samples/kfifo/
11471
11472 KGDB / KDB /debug_core
11473 M:      Jason Wessel <jason.wessel@windriver.com>
11474 M:      Daniel Thompson <daniel.thompson@linaro.org>
11475 R:      Douglas Anderson <dianders@chromium.org>
11476 L:      kgdb-bugreport@lists.sourceforge.net
11477 S:      Maintained
11478 W:      http://kgdb.wiki.kernel.org/
11479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11480 F:      Documentation/dev-tools/kgdb.rst
11481 F:      drivers/misc/kgdbts.c
11482 F:      drivers/tty/serial/kgdboc.c
11483 F:      include/linux/kdb.h
11484 F:      include/linux/kgdb.h
11485 F:      kernel/debug/
11486 F:      kernel/module/kdb.c
11487
11488 KHADAS MCU MFD DRIVER
11489 M:      Neil Armstrong <neil.armstrong@linaro.org>
11490 L:      linux-amlogic@lists.infradead.org
11491 S:      Maintained
11492 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11493 F:      drivers/mfd/khadas-mcu.c
11494 F:      include/linux/mfd/khadas-mcu.h
11495 F:      drivers/thermal/khadas_mcu_fan.c
11496
11497 KIONIX/ROHM KX022A ACCELEROMETER
11498 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11499 L:      linux-iio@vger.kernel.org
11500 S:      Supported
11501 F:      drivers/iio/accel/kionix-kx022a*
11502
11503 KMEMLEAK
11504 M:      Catalin Marinas <catalin.marinas@arm.com>
11505 S:      Maintained
11506 F:      Documentation/dev-tools/kmemleak.rst
11507 F:      include/linux/kmemleak.h
11508 F:      mm/kmemleak.c
11509 F:      samples/kmemleak/kmemleak-test.c
11510
11511 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11512 M:      Luis Chamberlain <mcgrof@kernel.org>
11513 L:      linux-kernel@vger.kernel.org
11514 L:      linux-modules@vger.kernel.org
11515 S:      Maintained
11516 F:      include/linux/kmod.h
11517 F:      kernel/kmod.c
11518 F:      lib/test_kmod.c
11519 F:      tools/testing/selftests/kmod/
11520
11521 KMSAN
11522 M:      Alexander Potapenko <glider@google.com>
11523 R:      Marco Elver <elver@google.com>
11524 R:      Dmitry Vyukov <dvyukov@google.com>
11525 L:      kasan-dev@googlegroups.com
11526 S:      Maintained
11527 F:      Documentation/dev-tools/kmsan.rst
11528 F:      arch/*/include/asm/kmsan.h
11529 F:      arch/*/mm/kmsan_*
11530 F:      include/linux/kmsan*.h
11531 F:      lib/Kconfig.kmsan
11532 F:      mm/kmsan/
11533 F:      scripts/Makefile.kmsan
11534
11535 KPROBES
11536 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11537 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11538 M:      "David S. Miller" <davem@davemloft.net>
11539 M:      Masami Hiramatsu <mhiramat@kernel.org>
11540 L:      linux-kernel@vger.kernel.org
11541 L:      linux-trace-kernel@vger.kernel.org
11542 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11543 S:      Maintained
11544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11545 F:      Documentation/trace/kprobes.rst
11546 F:      include/asm-generic/kprobes.h
11547 F:      include/linux/kprobes.h
11548 F:      kernel/kprobes.c
11549 F:      lib/test_kprobes.c
11550 F:      samples/kprobes
11551
11552 KS0108 LCD CONTROLLER DRIVER
11553 M:      Miguel Ojeda <ojeda@kernel.org>
11554 S:      Maintained
11555 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11556 F:      drivers/auxdisplay/ks0108.c
11557 F:      include/linux/ks0108.h
11558
11559 KTD253 BACKLIGHT DRIVER
11560 M:      Linus Walleij <linus.walleij@linaro.org>
11561 S:      Maintained
11562 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11563 F:      drivers/video/backlight/ktd253-backlight.c
11564
11565 KTEST
11566 M:      Steven Rostedt <rostedt@goodmis.org>
11567 M:      John Hawley <warthog9@eaglescrag.net>
11568 S:      Maintained
11569 F:      tools/testing/ktest
11570
11571 KTZ8866 BACKLIGHT DRIVER
11572 M:      Jianhua Lu <lujianhua000@gmail.com>
11573 S:      Maintained
11574 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
11575 F:      drivers/video/backlight/ktz8866.c
11576
11577 L3MDEV
11578 M:      David Ahern <dsahern@kernel.org>
11579 L:      netdev@vger.kernel.org
11580 S:      Maintained
11581 F:      include/net/l3mdev.h
11582 F:      net/l3mdev
11583
11584 LANDLOCK SECURITY MODULE
11585 M:      Mickaël Salaün <mic@digikod.net>
11586 L:      linux-security-module@vger.kernel.org
11587 S:      Supported
11588 W:      https://landlock.io
11589 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
11590 F:      Documentation/security/landlock.rst
11591 F:      Documentation/userspace-api/landlock.rst
11592 F:      include/uapi/linux/landlock.h
11593 F:      samples/landlock/
11594 F:      security/landlock/
11595 F:      tools/testing/selftests/landlock/
11596 K:      landlock
11597 K:      LANDLOCK
11598
11599 LANTIQ / INTEL Ethernet drivers
11600 M:      Hauke Mehrtens <hauke@hauke-m.de>
11601 L:      netdev@vger.kernel.org
11602 S:      Maintained
11603 F:      drivers/net/dsa/lantiq_gswip.c
11604 F:      drivers/net/dsa/lantiq_pce.h
11605 F:      drivers/net/ethernet/lantiq_xrx200.c
11606 F:      net/dsa/tag_gswip.c
11607
11608 LANTIQ MIPS ARCHITECTURE
11609 M:      John Crispin <john@phrozen.org>
11610 L:      linux-mips@vger.kernel.org
11611 S:      Maintained
11612 F:      arch/mips/lantiq
11613 F:      drivers/soc/lantiq
11614
11615 LASI 53c700 driver for PARISC
11616 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11617 L:      linux-scsi@vger.kernel.org
11618 S:      Maintained
11619 F:      Documentation/scsi/53c700.rst
11620 F:      drivers/scsi/53c700*
11621
11622 LEAKING_ADDRESSES
11623 M:      Tobin C. Harding <me@tobin.cc>
11624 M:      Tycho Andersen <tycho@tycho.pizza>
11625 L:      linux-hardening@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11628 F:      scripts/leaking_addresses.pl
11629
11630 LED SUBSYSTEM
11631 M:      Pavel Machek <pavel@ucw.cz>
11632 M:      Lee Jones <lee@kernel.org>
11633 L:      linux-leds@vger.kernel.org
11634 S:      Maintained
11635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11636 F:      Documentation/devicetree/bindings/leds/
11637 F:      drivers/leds/
11638 F:      include/dt-bindings/leds/
11639 F:      include/linux/leds.h
11640
11641 LEGACY EEPROM DRIVER
11642 M:      Jean Delvare <jdelvare@suse.com>
11643 S:      Maintained
11644 F:      Documentation/misc-devices/eeprom.rst
11645 F:      drivers/misc/eeprom/eeprom.c
11646
11647 LEGO MINDSTORMS EV3
11648 R:      David Lechner <david@lechnology.com>
11649 S:      Maintained
11650 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11651 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11652 F:      drivers/power/supply/lego_ev3_battery.c
11653
11654 LEGO USB Tower driver
11655 M:      Juergen Stuber <starblue@users.sourceforge.net>
11656 L:      legousb-devel@lists.sourceforge.net
11657 S:      Maintained
11658 W:      http://legousb.sourceforge.net/
11659 F:      drivers/usb/misc/legousbtower.c
11660
11661 LETSKETCH HID TABLET DRIVER
11662 M:      Hans de Goede <hdegoede@redhat.com>
11663 L:      linux-input@vger.kernel.org
11664 S:      Maintained
11665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11666 F:      drivers/hid/hid-letsketch.c
11667
11668 LG LAPTOP EXTRAS
11669 M:      Matan Ziv-Av <matan@svgalib.org>
11670 L:      platform-driver-x86@vger.kernel.org
11671 S:      Maintained
11672 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11673 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11674 F:      drivers/platform/x86/lg-laptop.c
11675
11676 LG2160 MEDIA DRIVER
11677 M:      Michael Krufky <mkrufky@linuxtv.org>
11678 L:      linux-media@vger.kernel.org
11679 S:      Maintained
11680 W:      https://linuxtv.org
11681 W:      http://github.com/mkrufky
11682 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11683 T:      git git://linuxtv.org/mkrufky/tuners.git
11684 F:      drivers/media/dvb-frontends/lg2160.*
11685
11686 LGDT3305 MEDIA DRIVER
11687 M:      Michael Krufky <mkrufky@linuxtv.org>
11688 L:      linux-media@vger.kernel.org
11689 S:      Maintained
11690 W:      https://linuxtv.org
11691 W:      http://github.com/mkrufky
11692 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11693 T:      git git://linuxtv.org/mkrufky/tuners.git
11694 F:      drivers/media/dvb-frontends/lgdt3305.*
11695
11696 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11697 M:      Viresh Kumar <vireshk@kernel.org>
11698 L:      linux-ide@vger.kernel.org
11699 S:      Maintained
11700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11701 F:      drivers/ata/pata_arasan_cf.c
11702 F:      include/linux/pata_arasan_cf_data.h
11703
11704 LIBATA PATA DRIVERS
11705 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11706 L:      linux-ide@vger.kernel.org
11707 F:      drivers/ata/ata_*.c
11708 F:      drivers/ata/pata_*.c
11709
11710 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11711 M:      Linus Walleij <linus.walleij@linaro.org>
11712 L:      linux-ide@vger.kernel.org
11713 S:      Maintained
11714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11715 F:      drivers/ata/pata_ftide010.c
11716 F:      drivers/ata/sata_gemini.c
11717 F:      drivers/ata/sata_gemini.h
11718
11719 LIBATA SATA AHCI PLATFORM devices support
11720 M:      Hans de Goede <hdegoede@redhat.com>
11721 M:      Jens Axboe <axboe@kernel.dk>
11722 L:      linux-ide@vger.kernel.org
11723 S:      Maintained
11724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11725 F:      drivers/ata/ahci_platform.c
11726 F:      drivers/ata/libahci_platform.c
11727 F:      include/linux/ahci_platform.h
11728
11729 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11730 M:      Serge Semin <fancer.lancer@gmail.com>
11731 L:      linux-ide@vger.kernel.org
11732 S:      Maintained
11733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11734 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11735 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11736 F:      drivers/ata/ahci_dwc.c
11737
11738 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11739 M:      Mikael Pettersson <mikpelinux@gmail.com>
11740 L:      linux-ide@vger.kernel.org
11741 S:      Maintained
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11743 F:      drivers/ata/sata_promise.*
11744
11745 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11746 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11747 L:      linux-ide@vger.kernel.org
11748 S:      Maintained
11749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11750 F:      Documentation/ABI/testing/sysfs-ata
11751 F:      Documentation/devicetree/bindings/ata/
11752 F:      drivers/ata/
11753 F:      include/linux/ata.h
11754 F:      include/linux/libata.h
11755
11756 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11757 M:      Vishal Verma <vishal.l.verma@intel.com>
11758 M:      Dan Williams <dan.j.williams@intel.com>
11759 M:      Dave Jiang <dave.jiang@intel.com>
11760 L:      nvdimm@lists.linux.dev
11761 S:      Supported
11762 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11763 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11764 F:      drivers/nvdimm/btt*
11765
11766 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11767 M:      Dan Williams <dan.j.williams@intel.com>
11768 M:      Vishal Verma <vishal.l.verma@intel.com>
11769 M:      Dave Jiang <dave.jiang@intel.com>
11770 L:      nvdimm@lists.linux.dev
11771 S:      Supported
11772 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11773 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11774 F:      drivers/nvdimm/pmem*
11775
11776 LIBNVDIMM: DEVICETREE BINDINGS
11777 M:      Oliver O'Halloran <oohall@gmail.com>
11778 L:      nvdimm@lists.linux.dev
11779 S:      Supported
11780 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11781 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11782 F:      drivers/nvdimm/of_pmem.c
11783
11784 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11785 M:      Dan Williams <dan.j.williams@intel.com>
11786 M:      Vishal Verma <vishal.l.verma@intel.com>
11787 M:      Dave Jiang <dave.jiang@intel.com>
11788 M:      Ira Weiny <ira.weiny@intel.com>
11789 L:      nvdimm@lists.linux.dev
11790 S:      Supported
11791 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11792 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11794 F:      drivers/acpi/nfit/*
11795 F:      drivers/nvdimm/*
11796 F:      include/linux/libnvdimm.h
11797 F:      include/linux/nd.h
11798 F:      include/uapi/linux/ndctl.h
11799 F:      tools/testing/nvdimm/
11800
11801 LICENSES and SPDX stuff
11802 M:      Thomas Gleixner <tglx@linutronix.de>
11803 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11804 L:      linux-spdx@vger.kernel.org
11805 S:      Maintained
11806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11807 F:      COPYING
11808 F:      Documentation/process/license-rules.rst
11809 F:      LICENSES/
11810 F:      scripts/spdxcheck-test.sh
11811 F:      scripts/spdxcheck.py
11812 F:      scripts/spdxexclude
11813
11814 LINEAR RANGES HELPERS
11815 M:      Mark Brown <broonie@kernel.org>
11816 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11817 F:      lib/linear_ranges.c
11818 F:      lib/test_linear_ranges.c
11819 F:      include/linux/linear_range.h
11820
11821 LINUX FOR POWER MACINTOSH
11822 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11823 L:      linuxppc-dev@lists.ozlabs.org
11824 S:      Odd Fixes
11825 F:      arch/powerpc/platforms/powermac/
11826 F:      drivers/macintosh/
11827
11828 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11829 M:      Michael Ellerman <mpe@ellerman.id.au>
11830 R:      Nicholas Piggin <npiggin@gmail.com>
11831 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11832 L:      linuxppc-dev@lists.ozlabs.org
11833 S:      Supported
11834 W:      https://github.com/linuxppc/wiki/wiki
11835 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11837 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11838 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11839 F:      Documentation/devicetree/bindings/powerpc/
11840 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11841 F:      Documentation/powerpc/
11842 F:      arch/powerpc/
11843 F:      drivers/*/*/*pasemi*
11844 F:      drivers/*/*pasemi*
11845 F:      drivers/char/tpm/tpm_ibmvtpm*
11846 F:      drivers/crypto/nx/
11847 F:      drivers/crypto/vmx/
11848 F:      drivers/i2c/busses/i2c-opal.c
11849 F:      drivers/net/ethernet/ibm/ibmveth.*
11850 F:      drivers/net/ethernet/ibm/ibmvnic.*
11851 F:      drivers/pci/hotplug/pnv_php.c
11852 F:      drivers/pci/hotplug/rpa*
11853 F:      drivers/rtc/rtc-opal.c
11854 F:      drivers/scsi/ibmvscsi/
11855 F:      drivers/tty/hvc/hvc_opal.c
11856 F:      drivers/watchdog/wdrtas.c
11857 F:      tools/testing/selftests/powerpc
11858 N:      /pmac
11859 N:      powermac
11860 N:      powernv
11861 N:      [^a-z0-9]ps3
11862 N:      pseries
11863
11864 LINUX FOR POWERPC EMBEDDED MPC5XXX
11865 M:      Anatolij Gustschin <agust@denx.de>
11866 L:      linuxppc-dev@lists.ozlabs.org
11867 S:      Odd Fixes
11868 F:      arch/powerpc/platforms/512x/
11869 F:      arch/powerpc/platforms/52xx/
11870
11871 LINUX FOR POWERPC EMBEDDED PPC4XX
11872 L:      linuxppc-dev@lists.ozlabs.org
11873 S:      Orphan
11874 F:      arch/powerpc/platforms/40x/
11875 F:      arch/powerpc/platforms/44x/
11876
11877 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11878 M:      Scott Wood <oss@buserror.net>
11879 L:      linuxppc-dev@lists.ozlabs.org
11880 S:      Odd fixes
11881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11882 F:      Documentation/devicetree/bindings/powerpc/fsl/
11883 F:      arch/powerpc/platforms/83xx/
11884 F:      arch/powerpc/platforms/85xx/
11885
11886 LINUX FOR POWERPC EMBEDDED PPC8XX
11887 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11888 L:      linuxppc-dev@lists.ozlabs.org
11889 S:      Maintained
11890 F:      arch/powerpc/platforms/8xx/
11891
11892 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11893 M:      Kees Cook <keescook@chromium.org>
11894 S:      Maintained
11895 F:      drivers/misc/lkdtm/*
11896 F:      tools/testing/selftests/lkdtm/*
11897
11898 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11899 M:      Alan Stern <stern@rowland.harvard.edu>
11900 M:      Andrea Parri <parri.andrea@gmail.com>
11901 M:      Will Deacon <will@kernel.org>
11902 M:      Peter Zijlstra <peterz@infradead.org>
11903 M:      Boqun Feng <boqun.feng@gmail.com>
11904 M:      Nicholas Piggin <npiggin@gmail.com>
11905 M:      David Howells <dhowells@redhat.com>
11906 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11907 M:      Luc Maranget <luc.maranget@inria.fr>
11908 M:      "Paul E. McKenney" <paulmck@kernel.org>
11909 R:      Akira Yokosawa <akiyks@gmail.com>
11910 R:      Daniel Lustig <dlustig@nvidia.com>
11911 R:      Joel Fernandes <joel@joelfernandes.org>
11912 L:      linux-kernel@vger.kernel.org
11913 L:      linux-arch@vger.kernel.org
11914 S:      Supported
11915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11916 F:      Documentation/atomic_bitops.txt
11917 F:      Documentation/atomic_t.txt
11918 F:      Documentation/core-api/refcount-vs-atomic.rst
11919 F:      Documentation/litmus-tests/
11920 F:      Documentation/memory-barriers.txt
11921 F:      tools/memory-model/
11922
11923 LIS3LV02D ACCELEROMETER DRIVER
11924 M:      Eric Piel <eric.piel@tremplin-utc.net>
11925 S:      Maintained
11926 F:      Documentation/misc-devices/lis3lv02d.rst
11927 F:      drivers/misc/lis3lv02d/
11928 F:      drivers/platform/x86/hp/hp_accel.c
11929
11930 LIST KUNIT TEST
11931 M:      David Gow <davidgow@google.com>
11932 L:      linux-kselftest@vger.kernel.org
11933 L:      kunit-dev@googlegroups.com
11934 S:      Maintained
11935 F:      lib/list-test.c
11936
11937 LITEX PLATFORM
11938 M:      Karol Gugala <kgugala@antmicro.com>
11939 M:      Mateusz Holenko <mholenko@antmicro.com>
11940 M:      Gabriel Somlo <gsomlo@gmail.com>
11941 M:      Joel Stanley <joel@jms.id.au>
11942 S:      Maintained
11943 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11944 F:      arch/openrisc/boot/dts/or1klitex.dts
11945 F:      include/linux/litex.h
11946 F:      drivers/tty/serial/liteuart.c
11947 F:      drivers/soc/litex/*
11948 F:      drivers/net/ethernet/litex/*
11949 F:      drivers/mmc/host/litex_mmc.c
11950 N:      litex
11951
11952 LIVE PATCHING
11953 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11954 M:      Jiri Kosina <jikos@kernel.org>
11955 M:      Miroslav Benes <mbenes@suse.cz>
11956 M:      Petr Mladek <pmladek@suse.com>
11957 R:      Joe Lawrence <joe.lawrence@redhat.com>
11958 L:      live-patching@vger.kernel.org
11959 S:      Maintained
11960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11961 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11962 F:      Documentation/livepatch/
11963 F:      arch/powerpc/include/asm/livepatch.h
11964 F:      include/linux/livepatch.h
11965 F:      kernel/livepatch/
11966 F:      kernel/module/livepatch.c
11967 F:      lib/livepatch/
11968 F:      samples/livepatch/
11969 F:      tools/testing/selftests/livepatch/
11970
11971 LLC (802.2)
11972 L:      netdev@vger.kernel.org
11973 S:      Odd fixes
11974 F:      include/linux/llc.h
11975 F:      include/net/llc*
11976 F:      include/uapi/linux/llc.h
11977 F:      net/llc/
11978
11979 LM73 HARDWARE MONITOR DRIVER
11980 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11981 L:      linux-hwmon@vger.kernel.org
11982 S:      Maintained
11983 F:      drivers/hwmon/lm73.c
11984
11985 LM78 HARDWARE MONITOR DRIVER
11986 M:      Jean Delvare <jdelvare@suse.com>
11987 L:      linux-hwmon@vger.kernel.org
11988 S:      Maintained
11989 F:      Documentation/hwmon/lm78.rst
11990 F:      drivers/hwmon/lm78.c
11991
11992 LM83 HARDWARE MONITOR DRIVER
11993 M:      Jean Delvare <jdelvare@suse.com>
11994 L:      linux-hwmon@vger.kernel.org
11995 S:      Maintained
11996 F:      Documentation/hwmon/lm83.rst
11997 F:      drivers/hwmon/lm83.c
11998
11999 LM90 HARDWARE MONITOR DRIVER
12000 M:      Jean Delvare <jdelvare@suse.com>
12001 L:      linux-hwmon@vger.kernel.org
12002 S:      Maintained
12003 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12004 F:      Documentation/hwmon/lm90.rst
12005 F:      drivers/hwmon/lm90.c
12006 F:      include/dt-bindings/thermal/lm90.h
12007
12008 LM95234 HARDWARE MONITOR DRIVER
12009 M:      Guenter Roeck <linux@roeck-us.net>
12010 L:      linux-hwmon@vger.kernel.org
12011 S:      Maintained
12012 F:      Documentation/hwmon/lm95234.rst
12013 F:      drivers/hwmon/lm95234.c
12014
12015 LME2510 MEDIA DRIVER
12016 M:      Malcolm Priestley <tvboxspy@gmail.com>
12017 L:      linux-media@vger.kernel.org
12018 S:      Maintained
12019 W:      https://linuxtv.org
12020 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12021 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12022
12023 LOADPIN SECURITY MODULE
12024 M:      Kees Cook <keescook@chromium.org>
12025 S:      Supported
12026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12027 F:      Documentation/admin-guide/LSM/LoadPin.rst
12028 F:      security/loadpin/
12029
12030 LOCKING PRIMITIVES
12031 M:      Peter Zijlstra <peterz@infradead.org>
12032 M:      Ingo Molnar <mingo@redhat.com>
12033 M:      Will Deacon <will@kernel.org>
12034 R:      Waiman Long <longman@redhat.com>
12035 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12036 L:      linux-kernel@vger.kernel.org
12037 S:      Maintained
12038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12039 F:      Documentation/locking/
12040 F:      arch/*/include/asm/spinlock*.h
12041 F:      include/linux/lockdep.h
12042 F:      include/linux/mutex*.h
12043 F:      include/linux/rwlock*.h
12044 F:      include/linux/rwsem*.h
12045 F:      include/linux/seqlock.h
12046 F:      include/linux/spinlock*.h
12047 F:      kernel/locking/
12048 F:      lib/locking*.[ch]
12049 X:      kernel/locking/locktorture.c
12050
12051 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12052 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12053 L:      linux-ntfs-dev@lists.sourceforge.net
12054 S:      Maintained
12055 W:      http://www.linux-ntfs.org/content/view/19/37/
12056 F:      Documentation/admin-guide/ldm.rst
12057 F:      block/partitions/ldm.*
12058
12059 LOGITECH HID GAMING KEYBOARDS
12060 M:      Hans de Goede <hdegoede@redhat.com>
12061 L:      linux-input@vger.kernel.org
12062 S:      Maintained
12063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12064 F:      drivers/hid/hid-lg-g15.c
12065
12066 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12067 M:      Adrien Grassein <adrien.grassein@gmail.com>
12068 S:      Maintained
12069 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12070 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12071
12072 LOONGARCH
12073 M:      Huacai Chen <chenhuacai@kernel.org>
12074 R:      WANG Xuerui <kernel@xen0n.name>
12075 L:      loongarch@lists.linux.dev
12076 S:      Maintained
12077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12078 F:      arch/loongarch/
12079 F:      drivers/*/*loongarch*
12080 F:      Documentation/loongarch/
12081 F:      Documentation/translations/zh_CN/loongarch/
12082
12083 LOONGSON LS2X I2C DRIVER
12084 M:      Binbin Zhou <zhoubinbin@loongson.cn>
12085 L:      linux-i2c@vger.kernel.org
12086 S:      Maintained
12087 F:      Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
12088 F:      drivers/i2c/busses/i2c-ls2x.c
12089
12090 LOONGSON-2 SOC SERIES GUTS DRIVER
12091 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12092 L:      loongarch@lists.linux.dev
12093 S:      Maintained
12094 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12095 F:      drivers/soc/loongson/loongson2_guts.c
12096
12097 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12098 M:      zhanghongchen <zhanghongchen@loongson.cn>
12099 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12100 L:      linux-gpio@vger.kernel.org
12101 S:      Maintained
12102 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12103 F:      drivers/pinctrl/pinctrl-loongson2.c
12104
12105 LOONGSON-2 SOC SERIES CLOCK DRIVER
12106 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12107 L:      linux-clk@vger.kernel.org
12108 S:      Maintained
12109 F:      Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
12110 F:      include/dt-bindings/clock/loongson,ls2k-clk.h
12111
12112 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12113 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12114 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12115 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12116 L:      MPT-FusionLinux.pdl@broadcom.com
12117 L:      linux-scsi@vger.kernel.org
12118 S:      Supported
12119 W:      http://www.avagotech.com/support/
12120 F:      drivers/message/fusion/
12121 F:      drivers/scsi/mpt3sas/
12122
12123 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12124 M:      Matthew Wilcox <willy@infradead.org>
12125 L:      linux-scsi@vger.kernel.org
12126 S:      Maintained
12127 F:      drivers/scsi/sym53c8xx_2/
12128
12129 LTC1660 DAC DRIVER
12130 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12131 L:      linux-iio@vger.kernel.org
12132 S:      Maintained
12133 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12134 F:      drivers/iio/dac/ltc1660.c
12135
12136 LTC2688 IIO DAC DRIVER
12137 M:      Nuno Sá <nuno.sa@analog.com>
12138 L:      linux-iio@vger.kernel.org
12139 S:      Supported
12140 W:      https://ez.analog.com/linux-software-drivers
12141 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12142 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12143 F:      drivers/iio/dac/ltc2688.c
12144
12145 LTC2947 HARDWARE MONITOR DRIVER
12146 M:      Nuno Sá <nuno.sa@analog.com>
12147 L:      linux-hwmon@vger.kernel.org
12148 S:      Supported
12149 W:      https://ez.analog.com/linux-software-drivers
12150 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12151 F:      drivers/hwmon/ltc2947-core.c
12152 F:      drivers/hwmon/ltc2947-i2c.c
12153 F:      drivers/hwmon/ltc2947-spi.c
12154 F:      drivers/hwmon/ltc2947.h
12155
12156 LTC2983 IIO TEMPERATURE DRIVER
12157 M:      Nuno Sá <nuno.sa@analog.com>
12158 L:      linux-iio@vger.kernel.org
12159 S:      Supported
12160 W:      https://ez.analog.com/linux-software-drivers
12161 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12162 F:      drivers/iio/temperature/ltc2983.c
12163
12164 LTC4261 HARDWARE MONITOR DRIVER
12165 M:      Guenter Roeck <linux@roeck-us.net>
12166 L:      linux-hwmon@vger.kernel.org
12167 S:      Maintained
12168 F:      Documentation/hwmon/ltc4261.rst
12169 F:      drivers/hwmon/ltc4261.c
12170
12171 LTC4306 I2C MULTIPLEXER DRIVER
12172 M:      Michael Hennerich <michael.hennerich@analog.com>
12173 L:      linux-i2c@vger.kernel.org
12174 S:      Supported
12175 W:      https://ez.analog.com/linux-software-drivers
12176 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12177 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12178
12179 LTP (Linux Test Project)
12180 M:      Mike Frysinger <vapier@gentoo.org>
12181 M:      Cyril Hrubis <chrubis@suse.cz>
12182 M:      Wanlong Gao <wanlong.gao@gmail.com>
12183 M:      Jan Stancek <jstancek@redhat.com>
12184 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12185 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12186 L:      ltp@lists.linux.it (subscribers-only)
12187 S:      Maintained
12188 W:      http://linux-test-project.github.io/
12189 T:      git https://github.com/linux-test-project/ltp.git
12190
12191 LYNX 28G SERDES PHY DRIVER
12192 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12193 L:      netdev@vger.kernel.org
12194 S:      Supported
12195 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12196 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12197
12198 LYNX PCS MODULE
12199 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12200 L:      netdev@vger.kernel.org
12201 S:      Supported
12202 F:      drivers/net/pcs/pcs-lynx.c
12203 F:      include/linux/pcs-lynx.h
12204
12205 M68K ARCHITECTURE
12206 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12207 L:      linux-m68k@lists.linux-m68k.org
12208 S:      Maintained
12209 W:      http://www.linux-m68k.org/
12210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12211 F:      arch/m68k/
12212 F:      drivers/zorro/
12213
12214 M68K ON APPLE MACINTOSH
12215 M:      Joshua Thompson <funaho@jurai.org>
12216 L:      linux-m68k@lists.linux-m68k.org
12217 S:      Maintained
12218 W:      http://www.mac.linux-m68k.org/
12219 F:      arch/m68k/mac/
12220 F:      drivers/macintosh/adb-iop.c
12221 F:      drivers/macintosh/via-macii.c
12222
12223 M68K ON HP9000/300
12224 M:      Philip Blundell <philb@gnu.org>
12225 S:      Maintained
12226 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12227 F:      arch/m68k/hp300/
12228
12229 M88DS3103 MEDIA DRIVER
12230 M:      Antti Palosaari <crope@iki.fi>
12231 L:      linux-media@vger.kernel.org
12232 S:      Maintained
12233 W:      https://linuxtv.org
12234 W:      http://palosaari.fi/linux/
12235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12236 T:      git git://linuxtv.org/anttip/media_tree.git
12237 F:      drivers/media/dvb-frontends/m88ds3103*
12238
12239 M88RS2000 MEDIA DRIVER
12240 M:      Malcolm Priestley <tvboxspy@gmail.com>
12241 L:      linux-media@vger.kernel.org
12242 S:      Maintained
12243 W:      https://linuxtv.org
12244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12245 F:      drivers/media/dvb-frontends/m88rs2000*
12246
12247 MA901 MASTERKIT USB FM RADIO DRIVER
12248 M:      Alexey Klimov <klimov.linux@gmail.com>
12249 L:      linux-media@vger.kernel.org
12250 S:      Maintained
12251 T:      git git://linuxtv.org/media_tree.git
12252 F:      drivers/media/radio/radio-ma901.c
12253
12254 MAC80211
12255 M:      Johannes Berg <johannes@sipsolutions.net>
12256 L:      linux-wireless@vger.kernel.org
12257 S:      Maintained
12258 W:      https://wireless.wiki.kernel.org/
12259 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12262 F:      Documentation/networking/mac80211-injection.rst
12263 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12264 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12265 F:      include/net/mac80211.h
12266 F:      net/mac80211/
12267
12268 MAILBOX API
12269 M:      Jassi Brar <jassisinghbrar@gmail.com>
12270 L:      linux-kernel@vger.kernel.org
12271 S:      Maintained
12272 F:      drivers/mailbox/
12273 F:      include/linux/mailbox_client.h
12274 F:      include/linux/mailbox_controller.h
12275 F:      include/dt-bindings/mailbox/
12276 F:      Documentation/devicetree/bindings/mailbox/
12277
12278 MAILBOX ARM MHUv2
12279 M:      Viresh Kumar <viresh.kumar@linaro.org>
12280 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12281 L:      linux-kernel@vger.kernel.org
12282 S:      Maintained
12283 F:      drivers/mailbox/arm_mhuv2.c
12284 F:      include/linux/mailbox/arm_mhuv2_message.h
12285 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12286
12287 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12288 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12289 M:      Matt Johnston <matt@codeconstruct.com.au>
12290 L:      netdev@vger.kernel.org
12291 S:      Maintained
12292 F:      Documentation/networking/mctp.rst
12293 F:      drivers/net/mctp/
12294 F:      include/net/mctp.h
12295 F:      include/net/mctpdevice.h
12296 F:      include/net/netns/mctp.h
12297 F:      net/mctp/
12298
12299 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12300 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12301 L:      linux-man@vger.kernel.org
12302 S:      Maintained
12303 W:      http://www.kernel.org/doc/man-pages
12304
12305 MAPLE TREE
12306 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12307 L:      linux-mm@kvack.org
12308 S:      Supported
12309 F:      Documentation/core-api/maple_tree.rst
12310 F:      include/linux/maple_tree.h
12311 F:      include/trace/events/maple_tree.h
12312 F:      lib/maple_tree.c
12313 F:      lib/test_maple_tree.c
12314 F:      tools/testing/radix-tree/linux/maple_tree.h
12315 F:      tools/testing/radix-tree/maple.c
12316
12317 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12318 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12319 L:      linux-mips@vger.kernel.org
12320 S:      Maintained
12321 F:      arch/mips/boot/dts/img/pistachio*
12322
12323 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12324 M:      Andrew Lunn <andrew@lunn.ch>
12325 L:      netdev@vger.kernel.org
12326 S:      Maintained
12327 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12328 F:      Documentation/networking/devlink/mv88e6xxx.rst
12329 F:      drivers/net/dsa/mv88e6xxx/
12330 F:      include/linux/dsa/mv88e6xxx.h
12331 F:      include/linux/platform_data/mv88e6xxx.h
12332
12333 MARVELL ARMADA 3700 PHY DRIVERS
12334 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12335 S:      Maintained
12336 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12337 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12338 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12339 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12340
12341 MARVELL ARMADA 3700 SERIAL DRIVER
12342 M:      Pali Rohár <pali@kernel.org>
12343 S:      Maintained
12344 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12345 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12346 F:      drivers/tty/serial/mvebu-uart.c
12347
12348 MARVELL ARMADA DRM SUPPORT
12349 M:      Russell King <linux@armlinux.org.uk>
12350 S:      Maintained
12351 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12352 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12353 F:      Documentation/devicetree/bindings/display/armada/
12354 F:      drivers/gpu/drm/armada/
12355 F:      include/uapi/drm/armada_drm.h
12356
12357 MARVELL CRYPTO DRIVER
12358 M:      Boris Brezillon <bbrezillon@kernel.org>
12359 M:      Arnaud Ebalard <arno@natisbad.org>
12360 M:      Srujana Challa <schalla@marvell.com>
12361 L:      linux-crypto@vger.kernel.org
12362 S:      Maintained
12363 F:      drivers/crypto/marvell/
12364 F:      include/linux/soc/marvell/octeontx2/
12365
12366 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12367 M:      Mirko Lindner <mlindner@marvell.com>
12368 M:      Stephen Hemminger <stephen@networkplumber.org>
12369 L:      netdev@vger.kernel.org
12370 S:      Maintained
12371 F:      drivers/net/ethernet/marvell/sk*
12372
12373 MARVELL LIBERTAS WIRELESS DRIVER
12374 L:      libertas-dev@lists.infradead.org
12375 S:      Orphan
12376 F:      drivers/net/wireless/marvell/libertas/
12377
12378 MARVELL MACCHIATOBIN SUPPORT
12379 M:      Russell King <linux@armlinux.org.uk>
12380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12381 S:      Maintained
12382 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12383
12384 MARVELL MV643XX ETHERNET DRIVER
12385 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12386 L:      netdev@vger.kernel.org
12387 S:      Maintained
12388 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12389 F:      include/linux/mv643xx.h
12390
12391 MARVELL MV88X3310 PHY DRIVER
12392 M:      Russell King <linux@armlinux.org.uk>
12393 M:      Marek Behún <kabel@kernel.org>
12394 L:      netdev@vger.kernel.org
12395 S:      Maintained
12396 F:      drivers/net/phy/marvell10g.c
12397
12398 MARVELL MVEBU THERMAL DRIVER
12399 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12400 S:      Maintained
12401 F:      drivers/thermal/armada_thermal.c
12402
12403 MARVELL MVNETA ETHERNET DRIVER
12404 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12405 L:      netdev@vger.kernel.org
12406 S:      Maintained
12407 F:      drivers/net/ethernet/marvell/mvneta.*
12408
12409 MARVELL MVPP2 ETHERNET DRIVER
12410 M:      Marcin Wojtas <mw@semihalf.com>
12411 M:      Russell King <linux@armlinux.org.uk>
12412 L:      netdev@vger.kernel.org
12413 S:      Maintained
12414 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12415 F:      drivers/net/ethernet/marvell/mvpp2/
12416
12417 MARVELL MWIFIEX WIRELESS DRIVER
12418 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12419 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12420 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12421 M:      Xinming Hu <huxinming820@gmail.com>
12422 L:      linux-wireless@vger.kernel.org
12423 S:      Maintained
12424 F:      drivers/net/wireless/marvell/mwifiex/
12425
12426 MARVELL MWL8K WIRELESS DRIVER
12427 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12428 L:      linux-wireless@vger.kernel.org
12429 S:      Odd Fixes
12430 F:      drivers/net/wireless/marvell/mwl8k.c
12431
12432 MARVELL NAND CONTROLLER DRIVER
12433 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12434 L:      linux-mtd@lists.infradead.org
12435 S:      Maintained
12436 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12437 F:      drivers/mtd/nand/raw/marvell_nand.c
12438
12439 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12440 M:      Sunil Goutham <sgoutham@marvell.com>
12441 M:      Geetha sowjanya <gakula@marvell.com>
12442 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12443 M:      hariprasad <hkelam@marvell.com>
12444 L:      netdev@vger.kernel.org
12445 S:      Supported
12446 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12447 F:      include/linux/soc/marvell/octeontx2/
12448
12449 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12450 M:      Sunil Goutham <sgoutham@marvell.com>
12451 M:      Linu Cherian <lcherian@marvell.com>
12452 M:      Geetha sowjanya <gakula@marvell.com>
12453 M:      Jerin Jacob <jerinj@marvell.com>
12454 M:      hariprasad <hkelam@marvell.com>
12455 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12456 L:      netdev@vger.kernel.org
12457 S:      Supported
12458 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12459 F:      drivers/net/ethernet/marvell/octeontx2/af/
12460
12461 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12462 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12463 S:      Supported
12464 W:      https://github.com/Marvell-switching/switchdev-prestera
12465 F:      drivers/net/ethernet/marvell/prestera/
12466
12467 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12468 M:      Nicolas Pitre <nico@fluxnic.net>
12469 S:      Odd Fixes
12470 F:      drivers/mmc/host/mvsdio.*
12471
12472 MARVELL USB MDIO CONTROLLER DRIVER
12473 M:      Tobias Waldekranz <tobias@waldekranz.com>
12474 L:      netdev@vger.kernel.org
12475 S:      Maintained
12476 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12477 F:      drivers/net/mdio/mdio-mvusb.c
12478
12479 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12480 M:      Hu Ziji <huziji@marvell.com>
12481 L:      linux-mmc@vger.kernel.org
12482 S:      Supported
12483 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12484 F:      drivers/mmc/host/sdhci-xenon*
12485
12486 MARVELL OCTEON ENDPOINT DRIVER
12487 M:      Veerasenareddy Burru <vburru@marvell.com>
12488 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12489 L:      netdev@vger.kernel.org
12490 S:      Supported
12491 F:      drivers/net/ethernet/marvell/octeon_ep
12492
12493 MATROX FRAMEBUFFER DRIVER
12494 L:      linux-fbdev@vger.kernel.org
12495 S:      Orphan
12496 F:      drivers/video/fbdev/matrox/matroxfb_*
12497 F:      include/uapi/linux/matroxfb.h
12498
12499 MAX15301 DRIVER
12500 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12501 L:      linux-hwmon@vger.kernel.org
12502 S:      Maintained
12503 F:      Documentation/hwmon/max15301.rst
12504 F:      drivers/hwmon/pmbus/max15301.c
12505
12506 MAX16065 HARDWARE MONITOR DRIVER
12507 M:      Guenter Roeck <linux@roeck-us.net>
12508 L:      linux-hwmon@vger.kernel.org
12509 S:      Maintained
12510 F:      Documentation/hwmon/max16065.rst
12511 F:      drivers/hwmon/max16065.c
12512
12513 MAX2175 SDR TUNER DRIVER
12514 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12515 L:      linux-media@vger.kernel.org
12516 S:      Maintained
12517 T:      git git://linuxtv.org/media_tree.git
12518 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12519 F:      Documentation/userspace-api/media/drivers/max2175.rst
12520 F:      drivers/media/i2c/max2175*
12521 F:      include/uapi/linux/max2175.h
12522
12523 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12524 L:      linux-hwmon@vger.kernel.org
12525 S:      Orphan
12526 F:      Documentation/hwmon/max6650.rst
12527 F:      drivers/hwmon/max6650.c
12528
12529 MAX6697 HARDWARE MONITOR DRIVER
12530 M:      Guenter Roeck <linux@roeck-us.net>
12531 L:      linux-hwmon@vger.kernel.org
12532 S:      Maintained
12533 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12534 F:      Documentation/hwmon/max6697.rst
12535 F:      drivers/hwmon/max6697.c
12536 F:      include/linux/platform_data/max6697.h
12537
12538 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12539 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12540 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12541 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12542 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12543 L:      linux-media@vger.kernel.org
12544 S:      Maintained
12545 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12546 F:      drivers/media/i2c/max9286.c
12547
12548 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12549 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12550 L:      linux-media@vger.kernel.org
12551 S:      Maintained
12552 F:      drivers/staging/media/max96712/max96712.c
12553
12554 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12555 M:      Peter Rosin <peda@axentia.se>
12556 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12557 S:      Maintained
12558 F:      Documentation/devicetree/bindings/sound/max9860.txt
12559 F:      sound/soc/codecs/max9860.*
12560
12561 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12562 M:      Andreas Klinger <ak@it-klinger.de>
12563 L:      linux-iio@vger.kernel.org
12564 S:      Maintained
12565 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12566 F:      drivers/iio/proximity/mb1232.c
12567
12568 MAXIM MAX11205 DRIVER
12569 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12570 L:      linux-iio@vger.kernel.org
12571 S:      Supported
12572 W:      https://ez.analog.com/linux-software-drivers
12573 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12574 F:      drivers/iio/adc/max11205.c
12575
12576 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12577 R:      Iskren Chernev <iskren.chernev@gmail.com>
12578 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12579 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12580 R:      Matheus Castello <matheus@castello.eng.br>
12581 L:      linux-pm@vger.kernel.org
12582 S:      Maintained
12583 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12584 F:      drivers/power/supply/max17040_battery.c
12585
12586 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12587 R:      Hans de Goede <hdegoede@redhat.com>
12588 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12589 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12590 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12591 R:      Purism Kernel Team <kernel@puri.sm>
12592 L:      linux-pm@vger.kernel.org
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12595 F:      drivers/power/supply/max17042_battery.c
12596
12597 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12598 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12599 L:      linux-kernel@vger.kernel.org
12600 S:      Maintained
12601 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12602 F:      drivers/regulator/max20086-regulator.c
12603
12604 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12605 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12606 L:      linux-iio@vger.kernel.org
12607 S:      Maintained
12608 F:      drivers/iio/temperature/max30208.c
12609
12610 MAXIM MAX77650 PMIC MFD DRIVER
12611 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12612 L:      linux-kernel@vger.kernel.org
12613 S:      Maintained
12614 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12615 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12616 F:      drivers/gpio/gpio-max77650.c
12617 F:      drivers/input/misc/max77650-onkey.c
12618 F:      drivers/leds/leds-max77650.c
12619 F:      drivers/mfd/max77650.c
12620 F:      drivers/power/supply/max77650-charger.c
12621 F:      drivers/regulator/max77650-regulator.c
12622 F:      include/linux/mfd/max77650.h
12623
12624 MAXIM MAX77714 PMIC MFD DRIVER
12625 M:      Luca Ceresoli <luca@lucaceresoli.net>
12626 S:      Maintained
12627 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12628 F:      drivers/mfd/max77714.c
12629 F:      include/linux/mfd/max77714.h
12630
12631 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12632 M:      Javier Martinez Canillas <javier@dowhile0.org>
12633 L:      linux-kernel@vger.kernel.org
12634 S:      Supported
12635 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12636 F:      drivers/regulator/max77802-regulator.c
12637 F:      include/dt-bindings/*/*max77802.h
12638
12639 MAXIM MAX77976 BATTERY CHARGER
12640 M:      Luca Ceresoli <luca@lucaceresoli.net>
12641 S:      Supported
12642 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12643 F:      drivers/power/supply/max77976_charger.c
12644
12645 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12646 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12647 L:      linux-pm@vger.kernel.org
12648 S:      Supported
12649 B:      mailto:linux-samsung-soc@vger.kernel.org
12650 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12651 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12652 F:      drivers/power/supply/max14577_charger.c
12653 F:      drivers/power/supply/max77693_charger.c
12654
12655 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12656 M:      Chanwoo Choi <cw00.choi@samsung.com>
12657 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12658 L:      linux-kernel@vger.kernel.org
12659 S:      Supported
12660 B:      mailto:linux-samsung-soc@vger.kernel.org
12661 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12662 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12663 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12664 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12665 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12666 F:      drivers/*/*max77843.c
12667 F:      drivers/*/max14577*.c
12668 F:      drivers/*/max77686*.c
12669 F:      drivers/*/max77693*.c
12670 F:      drivers/clk/clk-max77686.c
12671 F:      drivers/extcon/extcon-max14577.c
12672 F:      drivers/extcon/extcon-max77693.c
12673 F:      drivers/rtc/rtc-max77686.c
12674 F:      include/linux/mfd/max14577*.h
12675 F:      include/linux/mfd/max77686*.h
12676 F:      include/linux/mfd/max77693*.h
12677
12678 MAXIRADIO FM RADIO RECEIVER DRIVER
12679 M:      Hans Verkuil <hverkuil@xs4all.nl>
12680 L:      linux-media@vger.kernel.org
12681 S:      Maintained
12682 W:      https://linuxtv.org
12683 T:      git git://linuxtv.org/media_tree.git
12684 F:      drivers/media/radio/radio-maxiradio*
12685
12686 MAXLINEAR ETHERNET PHY DRIVER
12687 M:      Xu Liang <lxu@maxlinear.com>
12688 L:      netdev@vger.kernel.org
12689 S:      Supported
12690 F:      drivers/net/phy/mxl-gpy.c
12691
12692 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12693 R:      Yasushi SHOJI <yashi@spacecubics.com>
12694 L:      linux-can@vger.kernel.org
12695 S:      Maintained
12696 F:      drivers/net/can/usb/mcba_usb.c
12697
12698 MCAN MMIO DEVICE DRIVER
12699 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12700 L:      linux-can@vger.kernel.org
12701 S:      Maintained
12702 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12703 F:      drivers/net/can/m_can/m_can.c
12704 F:      drivers/net/can/m_can/m_can.h
12705 F:      drivers/net/can/m_can/m_can_platform.c
12706
12707 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12708 M:      Rishi Gupta <gupt21@gmail.com>
12709 L:      linux-i2c@vger.kernel.org
12710 L:      linux-input@vger.kernel.org
12711 S:      Maintained
12712 F:      drivers/hid/hid-mcp2221.c
12713
12714 MCP251XFD SPI-CAN NETWORK DRIVER
12715 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12716 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12717 R:      Thomas Kopp <thomas.kopp@microchip.com>
12718 L:      linux-can@vger.kernel.org
12719 S:      Maintained
12720 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12721 F:      drivers/net/can/spi/mcp251xfd/
12722
12723 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12724 M:      Peter Rosin <peda@axentia.se>
12725 L:      linux-iio@vger.kernel.org
12726 S:      Maintained
12727 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12728 F:      drivers/iio/potentiometer/mcp4018.c
12729 F:      drivers/iio/potentiometer/mcp4531.c
12730
12731 MCR20A IEEE-802.15.4 RADIO DRIVER
12732 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12733 L:      linux-wpan@vger.kernel.org
12734 S:      Odd Fixes
12735 W:      https://github.com/xueliu/mcr20a-linux
12736 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12737 F:      drivers/net/ieee802154/mcr20a.c
12738 F:      drivers/net/ieee802154/mcr20a.h
12739
12740 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12741 M:      William Breathitt Gray <william.gray@linaro.org>
12742 L:      linux-iio@vger.kernel.org
12743 S:      Maintained
12744 F:      drivers/iio/dac/cio-dac.c
12745
12746 MEDIA CONTROLLER FRAMEWORK
12747 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12749 L:      linux-media@vger.kernel.org
12750 S:      Supported
12751 W:      https://www.linuxtv.org
12752 T:      git git://linuxtv.org/media_tree.git
12753 F:      drivers/media/mc/
12754 F:      include/media/media-*.h
12755 F:      include/uapi/linux/media.h
12756
12757 MEDIA DRIVER FOR FREESCALE IMX PXP
12758 M:      Philipp Zabel <p.zabel@pengutronix.de>
12759 L:      linux-media@vger.kernel.org
12760 S:      Maintained
12761 T:      git git://linuxtv.org/media_tree.git
12762 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12763
12764 MEDIA DRIVERS FOR ASCOT2E
12765 M:      Sergey Kozlov <serjk@netup.ru>
12766 M:      Abylay Ospan <aospan@netup.ru>
12767 L:      linux-media@vger.kernel.org
12768 S:      Supported
12769 W:      https://linuxtv.org
12770 W:      http://netup.tv/
12771 T:      git git://linuxtv.org/media_tree.git
12772 F:      drivers/media/dvb-frontends/ascot2e*
12773
12774 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12775 M:      Jasmin Jessich <jasmin@anw.at>
12776 L:      linux-media@vger.kernel.org
12777 S:      Maintained
12778 W:      https://linuxtv.org
12779 T:      git git://linuxtv.org/media_tree.git
12780 F:      drivers/media/dvb-frontends/cxd2099*
12781
12782 MEDIA DRIVERS FOR CXD2841ER
12783 M:      Sergey Kozlov <serjk@netup.ru>
12784 M:      Abylay Ospan <aospan@netup.ru>
12785 L:      linux-media@vger.kernel.org
12786 S:      Supported
12787 W:      https://linuxtv.org
12788 W:      http://netup.tv/
12789 T:      git git://linuxtv.org/media_tree.git
12790 F:      drivers/media/dvb-frontends/cxd2841er*
12791
12792 MEDIA DRIVERS FOR CXD2880
12793 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12794 L:      linux-media@vger.kernel.org
12795 S:      Supported
12796 W:      http://linuxtv.org/
12797 T:      git git://linuxtv.org/media_tree.git
12798 F:      drivers/media/dvb-frontends/cxd2880/*
12799 F:      drivers/media/spi/cxd2880*
12800
12801 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12802 L:      linux-media@vger.kernel.org
12803 S:      Orphan
12804 W:      https://linuxtv.org
12805 T:      git git://linuxtv.org/media_tree.git
12806 F:      drivers/media/pci/ddbridge/*
12807
12808 MEDIA DRIVERS FOR FREESCALE IMX
12809 M:      Steve Longerbeam <slongerbeam@gmail.com>
12810 M:      Philipp Zabel <p.zabel@pengutronix.de>
12811 L:      linux-media@vger.kernel.org
12812 S:      Maintained
12813 T:      git git://linuxtv.org/media_tree.git
12814 F:      Documentation/admin-guide/media/imx.rst
12815 F:      Documentation/devicetree/bindings/media/imx.txt
12816 F:      drivers/staging/media/imx/
12817 F:      include/linux/imx-media.h
12818 F:      include/media/imx.h
12819
12820 MEDIA DRIVERS FOR FREESCALE IMX7
12821 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12822 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12823 L:      linux-media@vger.kernel.org
12824 S:      Maintained
12825 T:      git git://linuxtv.org/media_tree.git
12826 F:      Documentation/admin-guide/media/imx7.rst
12827 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12828 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12829 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12830 F:      drivers/media/platform/nxp/imx7-media-csi.c
12831
12832 MEDIA DRIVERS FOR HELENE
12833 M:      Abylay Ospan <aospan@netup.ru>
12834 L:      linux-media@vger.kernel.org
12835 S:      Supported
12836 W:      https://linuxtv.org
12837 W:      http://netup.tv/
12838 T:      git git://linuxtv.org/media_tree.git
12839 F:      drivers/media/dvb-frontends/helene*
12840
12841 MEDIA DRIVERS FOR HORUS3A
12842 M:      Sergey Kozlov <serjk@netup.ru>
12843 M:      Abylay Ospan <aospan@netup.ru>
12844 L:      linux-media@vger.kernel.org
12845 S:      Supported
12846 W:      https://linuxtv.org
12847 W:      http://netup.tv/
12848 T:      git git://linuxtv.org/media_tree.git
12849 F:      drivers/media/dvb-frontends/horus3a*
12850
12851 MEDIA DRIVERS FOR LNBH25
12852 M:      Sergey Kozlov <serjk@netup.ru>
12853 M:      Abylay Ospan <aospan@netup.ru>
12854 L:      linux-media@vger.kernel.org
12855 S:      Supported
12856 W:      https://linuxtv.org
12857 W:      http://netup.tv/
12858 T:      git git://linuxtv.org/media_tree.git
12859 F:      drivers/media/dvb-frontends/lnbh25*
12860
12861 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12862 L:      linux-media@vger.kernel.org
12863 S:      Orphan
12864 W:      https://linuxtv.org
12865 T:      git git://linuxtv.org/media_tree.git
12866 F:      drivers/media/dvb-frontends/mxl5xx*
12867
12868 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12869 M:      Sergey Kozlov <serjk@netup.ru>
12870 M:      Abylay Ospan <aospan@netup.ru>
12871 L:      linux-media@vger.kernel.org
12872 S:      Supported
12873 W:      https://linuxtv.org
12874 W:      http://netup.tv/
12875 T:      git git://linuxtv.org/media_tree.git
12876 F:      drivers/media/pci/netup_unidvb/*
12877
12878 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12879 M:      Dmitry Osipenko <digetx@gmail.com>
12880 L:      linux-media@vger.kernel.org
12881 L:      linux-tegra@vger.kernel.org
12882 S:      Maintained
12883 T:      git git://linuxtv.org/media_tree.git
12884 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12885 F:      drivers/media/platform/nvidia/tegra-vde/
12886
12887 MEDIA DRIVERS FOR RENESAS - CEU
12888 M:      Jacopo Mondi <jacopo@jmondi.org>
12889 L:      linux-media@vger.kernel.org
12890 L:      linux-renesas-soc@vger.kernel.org
12891 S:      Supported
12892 T:      git git://linuxtv.org/media_tree.git
12893 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12894 F:      drivers/media/platform/renesas/renesas-ceu.c
12895 F:      include/media/drv-intf/renesas-ceu.h
12896
12897 MEDIA DRIVERS FOR RENESAS - DRIF
12898 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12899 L:      linux-media@vger.kernel.org
12900 L:      linux-renesas-soc@vger.kernel.org
12901 S:      Supported
12902 T:      git git://linuxtv.org/media_tree.git
12903 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12904 F:      drivers/media/platform/renesas/rcar_drif.c
12905
12906 MEDIA DRIVERS FOR RENESAS - FCP
12907 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12908 L:      linux-media@vger.kernel.org
12909 L:      linux-renesas-soc@vger.kernel.org
12910 S:      Supported
12911 T:      git git://linuxtv.org/media_tree.git
12912 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12913 F:      drivers/media/platform/renesas/rcar-fcp.c
12914 F:      include/media/rcar-fcp.h
12915
12916 MEDIA DRIVERS FOR RENESAS - FDP1
12917 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12918 L:      linux-media@vger.kernel.org
12919 L:      linux-renesas-soc@vger.kernel.org
12920 S:      Supported
12921 T:      git git://linuxtv.org/media_tree.git
12922 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12923 F:      drivers/media/platform/renesas/rcar_fdp1.c
12924
12925 MEDIA DRIVERS FOR RENESAS - VIN
12926 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12927 L:      linux-media@vger.kernel.org
12928 L:      linux-renesas-soc@vger.kernel.org
12929 S:      Supported
12930 T:      git git://linuxtv.org/media_tree.git
12931 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12932 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12933 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12934 F:      drivers/media/platform/renesas/rcar-isp.c
12935 F:      drivers/media/platform/renesas/rcar-vin/
12936
12937 MEDIA DRIVERS FOR RENESAS - VSP1
12938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12939 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12940 L:      linux-media@vger.kernel.org
12941 L:      linux-renesas-soc@vger.kernel.org
12942 S:      Supported
12943 T:      git git://linuxtv.org/media_tree.git
12944 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12945 F:      drivers/media/platform/renesas/vsp1/
12946
12947 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12948 L:      linux-media@vger.kernel.org
12949 S:      Orphan
12950 W:      https://linuxtv.org
12951 T:      git git://linuxtv.org/media_tree.git
12952 F:      drivers/media/dvb-frontends/stv0910*
12953
12954 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12955 L:      linux-media@vger.kernel.org
12956 S:      Orphan
12957 W:      https://linuxtv.org
12958 T:      git git://linuxtv.org/media_tree.git
12959 F:      drivers/media/dvb-frontends/stv6111*
12960
12961 MEDIA DRIVERS FOR STM32 - DCMI
12962 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12963 L:      linux-media@vger.kernel.org
12964 S:      Supported
12965 T:      git git://linuxtv.org/media_tree.git
12966 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12967 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12968
12969 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12970 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12971 L:      linux-media@vger.kernel.org
12972 S:      Maintained
12973 W:      https://linuxtv.org
12974 Q:      http://patchwork.kernel.org/project/linux-media/list/
12975 T:      git git://linuxtv.org/media_tree.git
12976 F:      Documentation/admin-guide/media/
12977 F:      Documentation/devicetree/bindings/media/
12978 F:      Documentation/driver-api/media/
12979 F:      Documentation/userspace-api/media/
12980 F:      drivers/media/
12981 F:      drivers/staging/media/
12982 F:      include/dt-bindings/media/
12983 F:      include/linux/platform_data/media/
12984 F:      include/media/
12985 F:      include/uapi/linux/dvb/
12986 F:      include/uapi/linux/ivtv*
12987 F:      include/uapi/linux/media.h
12988 F:      include/uapi/linux/uvcvideo.h
12989 F:      include/uapi/linux/v4l2-*
12990 F:      include/uapi/linux/videodev2.h
12991
12992 MEDIATEK BLUETOOTH DRIVER
12993 M:      Sean Wang <sean.wang@mediatek.com>
12994 L:      linux-bluetooth@vger.kernel.org
12995 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12996 S:      Maintained
12997 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12998 F:      drivers/bluetooth/btmtkuart.c
12999
13000 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13001 M:      Sean Wang <sean.wang@mediatek.com>
13002 L:      linux-pm@vger.kernel.org
13003 S:      Maintained
13004 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13005 F:      drivers/power/reset/mt6323-poweroff.c
13006
13007 MEDIATEK CIR DRIVER
13008 M:      Sean Wang <sean.wang@mediatek.com>
13009 S:      Maintained
13010 F:      drivers/media/rc/mtk-cir.c
13011
13012 MEDIATEK DMA DRIVER
13013 M:      Sean Wang <sean.wang@mediatek.com>
13014 L:      dmaengine@vger.kernel.org
13015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13016 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13017 S:      Maintained
13018 F:      Documentation/devicetree/bindings/dma/mtk-*
13019 F:      drivers/dma/mediatek/
13020
13021 MEDIATEK ETHERNET DRIVER
13022 M:      Felix Fietkau <nbd@nbd.name>
13023 M:      John Crispin <john@phrozen.org>
13024 M:      Sean Wang <sean.wang@mediatek.com>
13025 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
13026 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13027 L:      netdev@vger.kernel.org
13028 S:      Maintained
13029 F:      drivers/net/ethernet/mediatek/
13030
13031 MEDIATEK I2C CONTROLLER DRIVER
13032 M:      Qii Wang <qii.wang@mediatek.com>
13033 L:      linux-i2c@vger.kernel.org
13034 S:      Maintained
13035 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13036 F:      drivers/i2c/busses/i2c-mt65xx.c
13037
13038 MEDIATEK IOMMU DRIVER
13039 M:      Yong Wu <yong.wu@mediatek.com>
13040 L:      iommu@lists.linux.dev
13041 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13042 S:      Supported
13043 F:      Documentation/devicetree/bindings/iommu/mediatek*
13044 F:      drivers/iommu/mtk_iommu*
13045 F:      include/dt-bindings/memory/mt*-port.h
13046
13047 MEDIATEK JPEG DRIVER
13048 M:      Bin Liu <bin.liu@mediatek.com>
13049 S:      Supported
13050 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13051 F:      drivers/media/platform/mediatek/jpeg/
13052
13053 MEDIATEK KEYPAD DRIVER
13054 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13055 S:      Supported
13056 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13057 F:      drivers/input/keyboard/mt6779-keypad.c
13058
13059 MEDIATEK MDP DRIVER
13060 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13061 M:      Houlong Wei <houlong.wei@mediatek.com>
13062 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13063 S:      Supported
13064 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13065 F:      drivers/media/platform/mediatek/mdp/
13066 F:      drivers/media/platform/mediatek/vpu/
13067
13068 MEDIATEK MEDIA DRIVER
13069 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13070 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13071 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13072 S:      Supported
13073 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13074 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13075 F:      drivers/media/platform/mediatek/vcodec/
13076 F:      drivers/media/platform/mediatek/vpu/
13077
13078 MEDIATEK MMC/SD/SDIO DRIVER
13079 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13080 S:      Maintained
13081 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13082 F:      drivers/mmc/host/mtk-sd.c
13083
13084 MEDIATEK MT76 WIRELESS LAN DRIVER
13085 M:      Felix Fietkau <nbd@nbd.name>
13086 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13087 M:      Ryder Lee <ryder.lee@mediatek.com>
13088 R:      Shayne Chen <shayne.chen@mediatek.com>
13089 R:      Sean Wang <sean.wang@mediatek.com>
13090 L:      linux-wireless@vger.kernel.org
13091 S:      Maintained
13092 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13093 F:      drivers/net/wireless/mediatek/mt76/
13094
13095 MEDIATEK MT7601U WIRELESS LAN DRIVER
13096 M:      Jakub Kicinski <kuba@kernel.org>
13097 L:      linux-wireless@vger.kernel.org
13098 S:      Maintained
13099 F:      drivers/net/wireless/mediatek/mt7601u/
13100
13101 MEDIATEK MT7621 CLOCK DRIVER
13102 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13103 S:      Maintained
13104 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13105 F:      drivers/clk/ralink/clk-mt7621.c
13106
13107 MEDIATEK MT7621/28/88 I2C DRIVER
13108 M:      Stefan Roese <sr@denx.de>
13109 L:      linux-i2c@vger.kernel.org
13110 S:      Maintained
13111 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13112 F:      drivers/i2c/busses/i2c-mt7621.c
13113
13114 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13115 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13116 S:      Maintained
13117 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13118 F:      drivers/pci/controller/pcie-mt7621.c
13119
13120 MEDIATEK MT7621 PHY PCI DRIVER
13121 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13122 S:      Maintained
13123 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13124 F:      drivers/phy/ralink/phy-mt7621-pci.c
13125
13126 MEDIATEK NAND CONTROLLER DRIVER
13127 L:      linux-mtd@lists.infradead.org
13128 S:      Orphan
13129 F:      Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
13130 F:      drivers/mtd/nand/raw/mtk_*
13131
13132 MEDIATEK PMIC LED DRIVER
13133 M:      Sean Wang <sean.wang@mediatek.com>
13134 S:      Maintained
13135 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13136 F:      drivers/leds/leds-mt6323.c
13137
13138 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13139 M:      Sean Wang <sean.wang@mediatek.com>
13140 S:      Maintained
13141 F:      drivers/char/hw_random/mtk-rng.c
13142
13143 MEDIATEK SMI DRIVER
13144 M:      Yong Wu <yong.wu@mediatek.com>
13145 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13146 S:      Supported
13147 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13148 F:      drivers/memory/mtk-smi.c
13149 F:      include/soc/mediatek/smi.h
13150
13151 MEDIATEK SWITCH DRIVER
13152 M:      Sean Wang <sean.wang@mediatek.com>
13153 M:      Landen Chao <Landen.Chao@mediatek.com>
13154 M:      DENG Qingfang <dqfext@gmail.com>
13155 L:      netdev@vger.kernel.org
13156 S:      Maintained
13157 F:      drivers/net/dsa/mt7530.*
13158 F:      net/dsa/tag_mtk.c
13159
13160 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13161 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13162 M:      Intel Corporation <linuxwwan@intel.com>
13163 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13164 R:      Liu Haijun <haijun.liu@mediatek.com>
13165 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13166 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13167 L:      netdev@vger.kernel.org
13168 S:      Supported
13169 F:      drivers/net/wwan/t7xx/
13170
13171 MEDIATEK USB3 DRD IP DRIVER
13172 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13173 L:      linux-usb@vger.kernel.org
13174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13175 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13176 S:      Maintained
13177 F:      Documentation/devicetree/bindings/usb/mediatek,*
13178 F:      drivers/usb/host/xhci-mtk*
13179 F:      drivers/usb/mtu3/
13180
13181 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13182 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13183 M:      Martin Donnelly <martin.donnelly@ge.com>
13184 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13185 S:      Maintained
13186 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13187 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13188
13189 MEGARAID SCSI/SAS DRIVERS
13190 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13191 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13192 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13193 L:      megaraidlinux.pdl@broadcom.com
13194 L:      linux-scsi@vger.kernel.org
13195 S:      Maintained
13196 W:      http://www.avagotech.com/support/
13197 F:      Documentation/scsi/megaraid.rst
13198 F:      drivers/scsi/megaraid.*
13199 F:      drivers/scsi/megaraid/
13200
13201 MELEXIS MLX90614 DRIVER
13202 M:      Crt Mori <cmo@melexis.com>
13203 L:      linux-iio@vger.kernel.org
13204 S:      Supported
13205 W:      http://www.melexis.com
13206 F:      drivers/iio/temperature/mlx90614.c
13207
13208 MELEXIS MLX90632 DRIVER
13209 M:      Crt Mori <cmo@melexis.com>
13210 L:      linux-iio@vger.kernel.org
13211 S:      Supported
13212 W:      http://www.melexis.com
13213 F:      drivers/iio/temperature/mlx90632.c
13214
13215 MELFAS MIP4 TOUCHSCREEN DRIVER
13216 M:      Sangwon Jee <jeesw@melfas.com>
13217 S:      Supported
13218 W:      http://www.melfas.com
13219 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13220 F:      drivers/input/touchscreen/melfas_mip4.c
13221
13222 MELLANOX BLUEFIELD I2C DRIVER
13223 M:      Khalil Blaiech <kblaiech@nvidia.com>
13224 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13225 L:      linux-i2c@vger.kernel.org
13226 S:      Supported
13227 F:      drivers/i2c/busses/i2c-mlxbf.c
13228
13229 MELLANOX ETHERNET DRIVER (mlx4_en)
13230 M:      Tariq Toukan <tariqt@nvidia.com>
13231 L:      netdev@vger.kernel.org
13232 S:      Supported
13233 W:      http://www.mellanox.com
13234 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13235 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13236
13237 MELLANOX ETHERNET DRIVER (mlx5e)
13238 M:      Saeed Mahameed <saeedm@nvidia.com>
13239 L:      netdev@vger.kernel.org
13240 S:      Supported
13241 W:      http://www.mellanox.com
13242 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13243 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13244
13245 MELLANOX ETHERNET INNOVA DRIVERS
13246 R:      Boris Pismenny <borisp@nvidia.com>
13247 L:      netdev@vger.kernel.org
13248 S:      Supported
13249 W:      http://www.mellanox.com
13250 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13251 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13252 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13253 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13254
13255 MELLANOX ETHERNET SWITCH DRIVERS
13256 M:      Ido Schimmel <idosch@nvidia.com>
13257 M:      Petr Machata <petrm@nvidia.com>
13258 L:      netdev@vger.kernel.org
13259 S:      Supported
13260 W:      http://www.mellanox.com
13261 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13262 F:      drivers/net/ethernet/mellanox/mlxsw/
13263 F:      tools/testing/selftests/drivers/net/mlxsw/
13264
13265 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13266 M:      mlxsw@nvidia.com
13267 L:      netdev@vger.kernel.org
13268 S:      Supported
13269 W:      http://www.mellanox.com
13270 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13271 F:      drivers/net/ethernet/mellanox/mlxfw/
13272
13273 MELLANOX HARDWARE PLATFORM SUPPORT
13274 M:      Hans de Goede <hdegoede@redhat.com>
13275 M:      Mark Gross <markgross@kernel.org>
13276 M:      Vadim Pasternak <vadimp@nvidia.com>
13277 L:      platform-driver-x86@vger.kernel.org
13278 S:      Supported
13279 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13280 F:      drivers/platform/mellanox/
13281 F:      include/linux/platform_data/mlxreg.h
13282
13283 MELLANOX MLX4 core VPI driver
13284 M:      Tariq Toukan <tariqt@nvidia.com>
13285 L:      netdev@vger.kernel.org
13286 L:      linux-rdma@vger.kernel.org
13287 S:      Supported
13288 W:      http://www.mellanox.com
13289 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13290 F:      drivers/net/ethernet/mellanox/mlx4/
13291 F:      include/linux/mlx4/
13292
13293 MELLANOX MLX4 IB driver
13294 M:      Yishai Hadas <yishaih@nvidia.com>
13295 L:      linux-rdma@vger.kernel.org
13296 S:      Supported
13297 W:      http://www.mellanox.com
13298 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13299 F:      drivers/infiniband/hw/mlx4/
13300 F:      include/linux/mlx4/
13301 F:      include/uapi/rdma/mlx4-abi.h
13302
13303 MELLANOX MLX5 core VPI driver
13304 M:      Saeed Mahameed <saeedm@nvidia.com>
13305 M:      Leon Romanovsky <leonro@nvidia.com>
13306 L:      netdev@vger.kernel.org
13307 L:      linux-rdma@vger.kernel.org
13308 S:      Supported
13309 W:      http://www.mellanox.com
13310 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13311 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13312 F:      drivers/net/ethernet/mellanox/mlx5/core/
13313 F:      include/linux/mlx5/
13314
13315 MELLANOX MLX5 IB driver
13316 M:      Leon Romanovsky <leonro@nvidia.com>
13317 L:      linux-rdma@vger.kernel.org
13318 S:      Supported
13319 W:      http://www.mellanox.com
13320 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13321 F:      drivers/infiniband/hw/mlx5/
13322 F:      include/linux/mlx5/
13323 F:      include/uapi/rdma/mlx5-abi.h
13324
13325 MELLANOX MLXCPLD I2C AND MUX DRIVER
13326 M:      Vadim Pasternak <vadimp@nvidia.com>
13327 M:      Michael Shych <michaelsh@nvidia.com>
13328 L:      linux-i2c@vger.kernel.org
13329 S:      Supported
13330 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13331 F:      drivers/i2c/busses/i2c-mlxcpld.c
13332 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13333
13334 MELLANOX MLXCPLD LED DRIVER
13335 M:      Vadim Pasternak <vadimp@nvidia.com>
13336 L:      linux-leds@vger.kernel.org
13337 S:      Supported
13338 F:      Documentation/leds/leds-mlxcpld.rst
13339 F:      drivers/leds/leds-mlxcpld.c
13340 F:      drivers/leds/leds-mlxreg.c
13341
13342 MELLANOX PLATFORM DRIVER
13343 M:      Vadim Pasternak <vadimp@nvidia.com>
13344 L:      platform-driver-x86@vger.kernel.org
13345 S:      Supported
13346 F:      drivers/platform/x86/mlx-platform.c
13347
13348 MEMBARRIER SUPPORT
13349 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13350 M:      "Paul E. McKenney" <paulmck@kernel.org>
13351 L:      linux-kernel@vger.kernel.org
13352 S:      Supported
13353 F:      arch/powerpc/include/asm/membarrier.h
13354 F:      include/uapi/linux/membarrier.h
13355 F:      kernel/sched/membarrier.c
13356
13357 MEMBLOCK
13358 M:      Mike Rapoport <rppt@kernel.org>
13359 L:      linux-mm@kvack.org
13360 S:      Maintained
13361 F:      Documentation/core-api/boot-time-mm.rst
13362 F:      include/linux/memblock.h
13363 F:      mm/memblock.c
13364 F:      tools/testing/memblock/
13365
13366 MEMORY CONTROLLER DRIVERS
13367 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13368 L:      linux-kernel@vger.kernel.org
13369 S:      Maintained
13370 B:      mailto:krzysztof.kozlowski@linaro.org
13371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13372 F:      Documentation/devicetree/bindings/memory-controllers/
13373 F:      drivers/memory/
13374 F:      include/dt-bindings/memory/
13375 F:      include/memory/
13376
13377 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13378 M:      Dmitry Osipenko <digetx@gmail.com>
13379 L:      linux-pm@vger.kernel.org
13380 L:      linux-tegra@vger.kernel.org
13381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13382 S:      Maintained
13383 F:      drivers/devfreq/tegra30-devfreq.c
13384
13385 MEMORY MANAGEMENT
13386 M:      Andrew Morton <akpm@linux-foundation.org>
13387 L:      linux-mm@kvack.org
13388 S:      Maintained
13389 W:      http://www.linux-mm.org
13390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13391 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13392 F:      include/linux/gfp.h
13393 F:      include/linux/gfp_types.h
13394 F:      include/linux/memory_hotplug.h
13395 F:      include/linux/mm.h
13396 F:      include/linux/mmzone.h
13397 F:      include/linux/pagewalk.h
13398 F:      mm/
13399 F:      tools/mm/
13400 F:      tools/testing/selftests/mm/
13401
13402 VMALLOC
13403 M:      Andrew Morton <akpm@linux-foundation.org>
13404 R:      Uladzislau Rezki <urezki@gmail.com>
13405 R:      Christoph Hellwig <hch@infradead.org>
13406 L:      linux-mm@kvack.org
13407 S:      Maintained
13408 W:      http://www.linux-mm.org
13409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13410 F:      include/linux/vmalloc.h
13411 F:      mm/vmalloc.c
13412
13413 MEMORY HOT(UN)PLUG
13414 M:      David Hildenbrand <david@redhat.com>
13415 M:      Oscar Salvador <osalvador@suse.de>
13416 L:      linux-mm@kvack.org
13417 S:      Maintained
13418 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13419 F:      Documentation/core-api/memory-hotplug.rst
13420 F:      drivers/base/memory.c
13421 F:      include/linux/memory_hotplug.h
13422 F:      mm/memory_hotplug.c
13423 F:      tools/testing/selftests/memory-hotplug/
13424
13425 MEMORY TECHNOLOGY DEVICES (MTD)
13426 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13427 M:      Richard Weinberger <richard@nod.at>
13428 M:      Vignesh Raghavendra <vigneshr@ti.com>
13429 L:      linux-mtd@lists.infradead.org
13430 S:      Maintained
13431 W:      http://www.linux-mtd.infradead.org/
13432 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13433 C:      irc://irc.oftc.net/mtd
13434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13436 F:      Documentation/devicetree/bindings/mtd/
13437 F:      drivers/mtd/
13438 F:      include/linux/mtd/
13439 F:      include/uapi/mtd/
13440
13441 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13442 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13443 L:      linux-iio@vger.kernel.org
13444 S:      Maintained
13445 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13446 F:      drivers/iio/accel/msa311.c
13447
13448 MEN A21 WATCHDOG DRIVER
13449 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13450 L:      linux-watchdog@vger.kernel.org
13451 S:      Maintained
13452 F:      drivers/watchdog/mena21_wdt.c
13453
13454 MEN CHAMELEON BUS (mcb)
13455 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13456 S:      Maintained
13457 F:      Documentation/driver-api/men-chameleon-bus.rst
13458 F:      drivers/mcb/
13459 F:      include/linux/mcb.h
13460
13461 MEN F21BMC (Board Management Controller)
13462 M:      Andreas Werner <andreas.werner@men.de>
13463 S:      Supported
13464 F:      Documentation/hwmon/menf21bmc.rst
13465 F:      drivers/hwmon/menf21bmc_hwmon.c
13466 F:      drivers/leds/leds-menf21bmc.c
13467 F:      drivers/mfd/menf21bmc.c
13468 F:      drivers/watchdog/menf21bmc_wdt.c
13469
13470 MEN Z069 WATCHDOG DRIVER
13471 M:      Johannes Thumshirn <jth@kernel.org>
13472 L:      linux-watchdog@vger.kernel.org
13473 S:      Maintained
13474 F:      drivers/watchdog/menz69_wdt.c
13475
13476 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13477 M:      Neil Armstrong <neil.armstrong@linaro.org>
13478 L:      linux-media@vger.kernel.org
13479 L:      linux-amlogic@lists.infradead.org
13480 S:      Supported
13481 W:      http://linux-meson.com/
13482 T:      git git://linuxtv.org/media_tree.git
13483 F:      Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
13484 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13485 F:      drivers/media/cec/platform/meson/ao-cec.c
13486
13487 MESON GE2D DRIVER FOR AMLOGIC SOCS
13488 M:      Neil Armstrong <neil.armstrong@linaro.org>
13489 L:      linux-media@vger.kernel.org
13490 L:      linux-amlogic@lists.infradead.org
13491 S:      Supported
13492 T:      git git://linuxtv.org/media_tree.git
13493 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13494 F:      drivers/media/platform/amlogic/meson-ge2d/
13495
13496 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13497 M:      Liang Yang <liang.yang@amlogic.com>
13498 L:      linux-mtd@lists.infradead.org
13499 S:      Maintained
13500 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13501 F:      drivers/mtd/nand/raw/meson_*
13502
13503 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13504 M:      Neil Armstrong <neil.armstrong@linaro.org>
13505 L:      linux-media@vger.kernel.org
13506 L:      linux-amlogic@lists.infradead.org
13507 S:      Supported
13508 T:      git git://linuxtv.org/media_tree.git
13509 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13510 F:      drivers/staging/media/meson/vdec/
13511
13512 METHODE UDPU SUPPORT
13513 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13514 S:      Maintained
13515 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13516
13517 MHI BUS
13518 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13519 L:      mhi@lists.linux.dev
13520 L:      linux-arm-msm@vger.kernel.org
13521 S:      Maintained
13522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13523 F:      Documentation/ABI/stable/sysfs-bus-mhi
13524 F:      Documentation/mhi/
13525 F:      drivers/bus/mhi/
13526 F:      include/linux/mhi.h
13527
13528 MICROBLAZE ARCHITECTURE
13529 M:      Michal Simek <monstr@monstr.eu>
13530 S:      Supported
13531 W:      http://www.monstr.eu/fdt/
13532 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13533 F:      arch/microblaze/
13534
13535 MICROBLAZE TMR MANAGER
13536 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13537 S:      Supported
13538 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13539 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13540 F:      drivers/misc/xilinx_tmr_manager.c
13541
13542 MICROBLAZE TMR INJECT
13543 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13544 S:      Supported
13545 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13546 F:      drivers/misc/xilinx_tmr_inject.c
13547
13548 MICROCHIP AT91 DMA DRIVERS
13549 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13550 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13552 L:      dmaengine@vger.kernel.org
13553 S:      Supported
13554 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13555 F:      drivers/dma/at_hdmac.c
13556 F:      drivers/dma/at_xdmac.c
13557 F:      include/dt-bindings/dma/at91.h
13558
13559 MICROCHIP AT91 SERIAL DRIVER
13560 M:      Richard Genoud <richard.genoud@gmail.com>
13561 S:      Maintained
13562 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13563 F:      drivers/tty/serial/atmel_serial.c
13564 F:      drivers/tty/serial/atmel_serial.h
13565
13566 MICROCHIP AT91 USART MFD DRIVER
13567 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13568 L:      linux-kernel@vger.kernel.org
13569 S:      Supported
13570 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13571 F:      drivers/mfd/at91-usart.c
13572 F:      include/dt-bindings/mfd/at91-usart.h
13573
13574 MICROCHIP AT91 USART SPI DRIVER
13575 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13576 L:      linux-spi@vger.kernel.org
13577 S:      Supported
13578 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13579 F:      drivers/spi/spi-at91-usart.c
13580
13581 MICROCHIP AUDIO ASOC DRIVERS
13582 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13584 S:      Supported
13585 F:      sound/soc/atmel
13586
13587 MICROCHIP CSI2DC DRIVER
13588 M:      Eugen Hristev <eugen.hristev@microchip.com>
13589 L:      linux-media@vger.kernel.org
13590 S:      Supported
13591 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13592 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13593
13594 MICROCHIP ECC DRIVER
13595 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13596 L:      linux-crypto@vger.kernel.org
13597 S:      Maintained
13598 F:      drivers/crypto/atmel-ecc.*
13599
13600 MICROCHIP EIC DRIVER
13601 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13603 S:      Supported
13604 F:      drivers/irqchip/irq-mchp-eic.c
13605
13606 MICROCHIP I2C DRIVER
13607 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13608 L:      linux-i2c@vger.kernel.org
13609 S:      Supported
13610 F:      drivers/i2c/busses/i2c-at91-*.c
13611 F:      drivers/i2c/busses/i2c-at91.h
13612
13613 MICROCHIP ISC DRIVER
13614 M:      Eugen Hristev <eugen.hristev@microchip.com>
13615 L:      linux-media@vger.kernel.org
13616 S:      Supported
13617 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13618 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13619 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13620 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13621 F:      drivers/media/platform/microchip/microchip-isc*
13622 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13623 F:      include/linux/atmel-isc-media.h
13624
13625 MICROCHIP ISI DRIVER
13626 M:      Eugen Hristev <eugen.hristev@microchip.com>
13627 L:      linux-media@vger.kernel.org
13628 S:      Supported
13629 F:      drivers/media/platform/atmel/atmel-isi.c
13630 F:      drivers/media/platform/atmel/atmel-isi.h
13631
13632 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13633 M:      Woojung Huh <woojung.huh@microchip.com>
13634 M:      UNGLinuxDriver@microchip.com
13635 L:      netdev@vger.kernel.org
13636 S:      Maintained
13637 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13638 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13639 F:      drivers/net/dsa/microchip/*
13640 F:      include/linux/dsa/ksz_common.h
13641 F:      include/linux/platform_data/microchip-ksz.h
13642 F:      net/dsa/tag_ksz.c
13643
13644 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13645 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13646 R:      UNGLinuxDriver@microchip.com
13647 L:      netdev@vger.kernel.org
13648 S:      Maintained
13649 F:      drivers/net/phy/microchip_t1.c
13650
13651 MICROCHIP LAN743X ETHERNET DRIVER
13652 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13653 M:      UNGLinuxDriver@microchip.com
13654 L:      netdev@vger.kernel.org
13655 S:      Maintained
13656 F:      drivers/net/ethernet/microchip/lan743x_*
13657
13658 MICROCHIP LAN966X ETHERNET DRIVER
13659 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13660 M:      UNGLinuxDriver@microchip.com
13661 L:      netdev@vger.kernel.org
13662 S:      Maintained
13663 F:      drivers/net/ethernet/microchip/lan966x/*
13664
13665 MICROCHIP LCDFB DRIVER
13666 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13667 L:      linux-fbdev@vger.kernel.org
13668 S:      Maintained
13669 F:      drivers/video/fbdev/atmel_lcdfb.c
13670 F:      include/video/atmel_lcdc.h
13671
13672 MICROCHIP MCP16502 PMIC DRIVER
13673 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13675 S:      Supported
13676 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13677 F:      drivers/regulator/mcp16502.c
13678
13679 MICROCHIP MCP3911 ADC DRIVER
13680 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13681 M:      Kent Gustavsson <kent@minoris.se>
13682 L:      linux-iio@vger.kernel.org
13683 S:      Maintained
13684 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13685 F:      drivers/iio/adc/mcp3911.c
13686
13687 MICROCHIP MMC/SD/SDIO MCI DRIVER
13688 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13689 S:      Maintained
13690 F:      drivers/mmc/host/atmel-mci.c
13691
13692 MICROCHIP NAND DRIVER
13693 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13694 L:      linux-mtd@lists.infradead.org
13695 S:      Supported
13696 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13697 F:      drivers/mtd/nand/raw/atmel/*
13698
13699 MICROCHIP PCI1XXXX GP DRIVER
13700 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13701 L:      linux-gpio@vger.kernel.org
13702 S:      Supported
13703 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13704 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13705 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13706
13707 MICROCHIP OTPC DRIVER
13708 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13710 S:      Supported
13711 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13712 F:      drivers/nvmem/microchip-otpc.c
13713 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13714
13715 MICROCHIP PCI1XXXX I2C DRIVER
13716 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13717 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13718 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13719 L:      linux-i2c@vger.kernel.org
13720 S:      Maintained
13721 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13722
13723 MICROCHIP PCIe UART DRIVER
13724 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13725 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13726 L:      linux-serial@vger.kernel.org
13727 S:      Maintained
13728 F:      drivers/tty/serial/8250/8250_pci1xxxx.c
13729
13730 MICROCHIP PWM DRIVER
13731 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13733 L:      linux-pwm@vger.kernel.org
13734 S:      Supported
13735 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13736 F:      drivers/pwm/pwm-atmel.c
13737
13738 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13739 M:      Eugen Hristev <eugen.hristev@microchip.com>
13740 L:      linux-iio@vger.kernel.org
13741 S:      Supported
13742 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13743 F:      drivers/iio/adc/at91-sama5d2_adc.c
13744 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13745
13746 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13747 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13748 S:      Supported
13749 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13750
13751 MICROCHIP SPI DRIVER
13752 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13753 S:      Supported
13754 F:      drivers/spi/spi-atmel.*
13755
13756 MICROCHIP SSC DRIVER
13757 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13759 S:      Supported
13760 F:      drivers/misc/atmel-ssc.c
13761 F:      include/linux/atmel-ssc.h
13762
13763 MICROCHIP SOC DRIVERS
13764 M:      Conor Dooley <conor@kernel.org>
13765 S:      Supported
13766 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13767 F:      drivers/soc/microchip/
13768
13769 MICROCHIP USB251XB DRIVER
13770 M:      Richard Leitner <richard.leitner@skidata.com>
13771 L:      linux-usb@vger.kernel.org
13772 S:      Maintained
13773 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13774 F:      drivers/usb/misc/usb251xb.c
13775
13776 MICROCHIP USBA UDC DRIVER
13777 M:      Cristian Birsan <cristian.birsan@microchip.com>
13778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13779 S:      Supported
13780 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13781
13782 MICROCHIP WILC1000 WIFI DRIVER
13783 M:      Ajay Singh <ajay.kathat@microchip.com>
13784 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13785 L:      linux-wireless@vger.kernel.org
13786 S:      Supported
13787 F:      drivers/net/wireless/microchip/wilc1000/
13788
13789 MICROSEMI MIPS SOCS
13790 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13791 M:      UNGLinuxDriver@microchip.com
13792 L:      linux-mips@vger.kernel.org
13793 S:      Supported
13794 F:      Documentation/devicetree/bindings/mips/mscc.txt
13795 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13796 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13797 F:      arch/mips/boot/dts/mscc/
13798 F:      arch/mips/configs/generic/board-ocelot.config
13799 F:      arch/mips/generic/board-ocelot.c
13800
13801 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13802 M:      Don Brace <don.brace@microchip.com>
13803 L:      storagedev@microchip.com
13804 L:      linux-scsi@vger.kernel.org
13805 S:      Supported
13806 F:      Documentation/scsi/smartpqi.rst
13807 F:      drivers/scsi/smartpqi/Kconfig
13808 F:      drivers/scsi/smartpqi/Makefile
13809 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13810 F:      include/linux/cciss*.h
13811 F:      include/uapi/linux/cciss*.h
13812
13813 MICROSOFT MANA RDMA DRIVER
13814 M:      Long Li <longli@microsoft.com>
13815 M:      Ajay Sharma <sharmaajay@microsoft.com>
13816 L:      linux-rdma@vger.kernel.org
13817 S:      Supported
13818 F:      drivers/infiniband/hw/mana/
13819 F:      include/net/mana
13820 F:      include/uapi/rdma/mana-abi.h
13821
13822 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13823 M:      Maximilian Luz <luzmaximilian@gmail.com>
13824 L:      platform-driver-x86@vger.kernel.org
13825 S:      Maintained
13826 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13827
13828 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13829 M:      Maximilian Luz <luzmaximilian@gmail.com>
13830 L:      linux-pm@vger.kernel.org
13831 L:      platform-driver-x86@vger.kernel.org
13832 S:      Maintained
13833 F:      drivers/power/supply/surface_battery.c
13834 F:      drivers/power/supply/surface_charger.c
13835
13836 MICROSOFT SURFACE DTX DRIVER
13837 M:      Maximilian Luz <luzmaximilian@gmail.com>
13838 L:      platform-driver-x86@vger.kernel.org
13839 S:      Maintained
13840 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13841 F:      drivers/platform/surface/surface_dtx.c
13842 F:      include/uapi/linux/surface_aggregator/dtx.h
13843
13844 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13845 M:      Maximilian Luz <luzmaximilian@gmail.com>
13846 L:      platform-driver-x86@vger.kernel.org
13847 S:      Maintained
13848 F:      drivers/platform/surface/surface_gpe.c
13849
13850 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13851 M:      Hans de Goede <hdegoede@redhat.com>
13852 M:      Mark Gross <markgross@kernel.org>
13853 M:      Maximilian Luz <luzmaximilian@gmail.com>
13854 L:      platform-driver-x86@vger.kernel.org
13855 S:      Maintained
13856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13857 F:      drivers/platform/surface/
13858
13859 MICROSOFT SURFACE HID TRANSPORT DRIVER
13860 M:      Maximilian Luz <luzmaximilian@gmail.com>
13861 L:      linux-input@vger.kernel.org
13862 L:      platform-driver-x86@vger.kernel.org
13863 S:      Maintained
13864 F:      drivers/hid/surface-hid/
13865
13866 MICROSOFT SURFACE HOT-PLUG DRIVER
13867 M:      Maximilian Luz <luzmaximilian@gmail.com>
13868 L:      platform-driver-x86@vger.kernel.org
13869 S:      Maintained
13870 F:      drivers/platform/surface/surface_hotplug.c
13871
13872 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13873 M:      Maximilian Luz <luzmaximilian@gmail.com>
13874 L:      platform-driver-x86@vger.kernel.org
13875 S:      Maintained
13876 F:      drivers/platform/surface/surface_platform_profile.c
13877
13878 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13879 M:      Chen Yu <yu.c.chen@intel.com>
13880 L:      platform-driver-x86@vger.kernel.org
13881 S:      Supported
13882 F:      drivers/platform/surface/surfacepro3_button.c
13883
13884 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13885 M:      Maximilian Luz <luzmaximilian@gmail.com>
13886 L:      platform-driver-x86@vger.kernel.org
13887 S:      Maintained
13888 W:      https://github.com/linux-surface/surface-aggregator-module
13889 C:      irc://irc.libera.chat/linux-surface
13890 F:      Documentation/driver-api/surface_aggregator/
13891 F:      drivers/platform/surface/aggregator/
13892 F:      drivers/platform/surface/surface_acpi_notify.c
13893 F:      drivers/platform/surface/surface_aggregator_cdev.c
13894 F:      drivers/platform/surface/surface_aggregator_registry.c
13895 F:      include/linux/surface_acpi_notify.h
13896 F:      include/linux/surface_aggregator/
13897 F:      include/uapi/linux/surface_aggregator/
13898
13899 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13900 M:      Maximilian Luz <luzmaximilian@gmail.com>
13901 L:      platform-driver-x86@vger.kernel.org
13902 S:      Maintained
13903 F:      drivers/platform/surface/surface_aggregator_hub.c
13904
13905 MICROTEK X6 SCANNER
13906 M:      Oliver Neukum <oliver@neukum.org>
13907 S:      Maintained
13908 F:      drivers/usb/image/microtek.*
13909
13910 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13911 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13912 M:      Luka Perkov <luka.perkov@sartura.hr>
13913 S:      Maintained
13914 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13915 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13916 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13917 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13918 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13919 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13920
13921 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13922 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13923 L:      linux-media@vger.kernel.org
13924 S:      Maintained
13925 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13926 F:      Documentation/driver-api/media/drivers/ccs/
13927 F:      Documentation/userspace-api/media/drivers/ccs.rst
13928 F:      drivers/media/i2c/ccs-pll.c
13929 F:      drivers/media/i2c/ccs-pll.h
13930 F:      drivers/media/i2c/ccs/
13931 F:      include/uapi/linux/ccs.h
13932 F:      include/uapi/linux/smiapp.h
13933
13934 MIPS
13935 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13936 L:      linux-mips@vger.kernel.org
13937 S:      Maintained
13938 W:      http://www.linux-mips.org/
13939 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13941 F:      Documentation/devicetree/bindings/mips/
13942 F:      Documentation/mips/
13943 F:      arch/mips/
13944 F:      drivers/platform/mips/
13945 F:      include/dt-bindings/mips/
13946
13947 MIPS BOSTON DEVELOPMENT BOARD
13948 M:      Paul Burton <paulburton@kernel.org>
13949 L:      linux-mips@vger.kernel.org
13950 S:      Maintained
13951 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13952 F:      arch/mips/boot/dts/img/boston.dts
13953 F:      arch/mips/configs/generic/board-boston.config
13954 F:      drivers/clk/imgtec/clk-boston.c
13955 F:      include/dt-bindings/clock/boston-clock.h
13956
13957 MIPS CORE DRIVERS
13958 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13959 M:      Serge Semin <fancer.lancer@gmail.com>
13960 L:      linux-mips@vger.kernel.org
13961 S:      Supported
13962 F:      drivers/bus/mips_cdmm.c
13963 F:      drivers/clocksource/mips-gic-timer.c
13964 F:      drivers/cpuidle/cpuidle-cps.c
13965 F:      drivers/irqchip/irq-mips-cpu.c
13966 F:      drivers/irqchip/irq-mips-gic.c
13967
13968 MIPS GENERIC PLATFORM
13969 M:      Paul Burton <paulburton@kernel.org>
13970 L:      linux-mips@vger.kernel.org
13971 S:      Supported
13972 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13973 F:      arch/mips/generic/
13974 F:      arch/mips/tools/generic-board-config.sh
13975
13976 MIPS RINT INSTRUCTION EMULATION
13977 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13978 L:      linux-mips@vger.kernel.org
13979 S:      Supported
13980 F:      arch/mips/math-emu/dp_rint.c
13981 F:      arch/mips/math-emu/sp_rint.c
13982
13983 MIPS/LOONGSON1 ARCHITECTURE
13984 M:      Keguang Zhang <keguang.zhang@gmail.com>
13985 L:      linux-mips@vger.kernel.org
13986 S:      Maintained
13987 F:      arch/mips/include/asm/mach-loongson32/
13988 F:      arch/mips/loongson32/
13989 F:      drivers/*/*/*loongson1*
13990 F:      drivers/*/*loongson1*
13991
13992 MIPS/LOONGSON2EF ARCHITECTURE
13993 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13994 L:      linux-mips@vger.kernel.org
13995 S:      Maintained
13996 F:      arch/mips/include/asm/mach-loongson2ef/
13997 F:      arch/mips/loongson2ef/
13998 F:      drivers/cpufreq/loongson2_cpufreq.c
13999
14000 MIPS/LOONGSON64 ARCHITECTURE
14001 M:      Huacai Chen <chenhuacai@kernel.org>
14002 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14003 L:      linux-mips@vger.kernel.org
14004 S:      Maintained
14005 F:      arch/mips/include/asm/mach-loongson64/
14006 F:      arch/mips/loongson64/
14007 F:      drivers/irqchip/irq-loongson*
14008 F:      drivers/platform/mips/cpu_hwmon.c
14009
14010 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14011 M:      Hans Verkuil <hverkuil@xs4all.nl>
14012 L:      linux-media@vger.kernel.org
14013 S:      Odd Fixes
14014 W:      https://linuxtv.org
14015 T:      git git://linuxtv.org/media_tree.git
14016 F:      drivers/media/radio/radio-miropcm20*
14017
14018 MMP SUPPORT
14019 R:      Lubomir Rintel <lkundrak@v3.sk>
14020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14021 S:      Odd Fixes
14022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14023 F:      arch/arm/boot/dts/mmp*
14024 F:      arch/arm/mach-mmp/
14025 F:      include/linux/soc/mmp/
14026
14027 MMP USB PHY DRIVERS
14028 R:      Lubomir Rintel <lkundrak@v3.sk>
14029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14030 S:      Maintained
14031 F:      drivers/phy/marvell/phy-mmp3-usb.c
14032 F:      drivers/phy/marvell/phy-pxa-usb.c
14033
14034 MMU GATHER AND TLB INVALIDATION
14035 M:      Will Deacon <will@kernel.org>
14036 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14037 M:      Andrew Morton <akpm@linux-foundation.org>
14038 M:      Nick Piggin <npiggin@gmail.com>
14039 M:      Peter Zijlstra <peterz@infradead.org>
14040 L:      linux-arch@vger.kernel.org
14041 L:      linux-mm@kvack.org
14042 S:      Maintained
14043 F:      arch/*/include/asm/tlb.h
14044 F:      include/asm-generic/tlb.h
14045 F:      mm/mmu_gather.c
14046
14047 MN88472 MEDIA DRIVER
14048 M:      Antti Palosaari <crope@iki.fi>
14049 L:      linux-media@vger.kernel.org
14050 S:      Maintained
14051 W:      https://linuxtv.org
14052 W:      http://palosaari.fi/linux/
14053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14054 F:      drivers/media/dvb-frontends/mn88472*
14055
14056 MN88473 MEDIA DRIVER
14057 M:      Antti Palosaari <crope@iki.fi>
14058 L:      linux-media@vger.kernel.org
14059 S:      Maintained
14060 W:      https://linuxtv.org
14061 W:      http://palosaari.fi/linux/
14062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14063 F:      drivers/media/dvb-frontends/mn88473*
14064
14065 MODULE SUPPORT
14066 M:      Luis Chamberlain <mcgrof@kernel.org>
14067 L:      linux-modules@vger.kernel.org
14068 L:      linux-kernel@vger.kernel.org
14069 S:      Maintained
14070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14071 F:      include/linux/module.h
14072 F:      kernel/module/
14073 F:      scripts/module*
14074
14075 MONOLITHIC POWER SYSTEM PMIC DRIVER
14076 M:      Saravanan Sekar <sravanhome@gmail.com>
14077 S:      Maintained
14078 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14079 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14080 F:      drivers/hwmon/pmbus/mpq7932.c
14081 F:      drivers/iio/adc/mp2629_adc.c
14082 F:      drivers/mfd/mp2629.c
14083 F:      drivers/power/supply/mp2629_charger.c
14084 F:      drivers/regulator/mp5416.c
14085 F:      drivers/regulator/mpq7920.c
14086 F:      drivers/regulator/mpq7920.h
14087 F:      include/linux/mfd/mp2629.h
14088
14089 MOST(R) TECHNOLOGY DRIVER
14090 M:      Parthiban Veerasooran <parthiban.veerasooran@microchip.com>
14091 M:      Christian Gromm <christian.gromm@microchip.com>
14092 S:      Maintained
14093 F:      Documentation/ABI/testing/configfs-most
14094 F:      Documentation/ABI/testing/sysfs-bus-most
14095 F:      drivers/most/
14096 F:      drivers/staging/most/
14097 F:      include/linux/most.h
14098
14099 MOTORCOMM PHY DRIVER
14100 M:      Peter Geis <pgwipeout@gmail.com>
14101 M:      Frank <Frank.Sae@motor-comm.com>
14102 L:      netdev@vger.kernel.org
14103 S:      Maintained
14104 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14105 F:      drivers/net/phy/motorcomm.c
14106
14107 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14108 M:      Jiri Slaby <jirislaby@kernel.org>
14109 S:      Maintained
14110 F:      Documentation/driver-api/tty/moxa-smartio.rst
14111 F:      drivers/tty/mxser.*
14112
14113 MR800 AVERMEDIA USB FM RADIO DRIVER
14114 M:      Alexey Klimov <klimov.linux@gmail.com>
14115 L:      linux-media@vger.kernel.org
14116 S:      Maintained
14117 T:      git git://linuxtv.org/media_tree.git
14118 F:      drivers/media/radio/radio-mr800.c
14119
14120 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14121 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14122 L:      linux-wpan@vger.kernel.org
14123 S:      Odd Fixes
14124 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14125 F:      drivers/net/ieee802154/mrf24j40.c
14126
14127 MSI LAPTOP SUPPORT
14128 M:      "Lee, Chun-Yi" <jlee@suse.com>
14129 L:      platform-driver-x86@vger.kernel.org
14130 S:      Maintained
14131 F:      drivers/platform/x86/msi-laptop.c
14132
14133 MSI WMI SUPPORT
14134 L:      platform-driver-x86@vger.kernel.org
14135 S:      Orphan
14136 F:      drivers/platform/x86/msi-wmi.c
14137
14138 MSI001 MEDIA DRIVER
14139 M:      Antti Palosaari <crope@iki.fi>
14140 L:      linux-media@vger.kernel.org
14141 S:      Maintained
14142 W:      https://linuxtv.org
14143 W:      http://palosaari.fi/linux/
14144 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14145 T:      git git://linuxtv.org/anttip/media_tree.git
14146 F:      drivers/media/tuners/msi001*
14147
14148 MSI2500 MEDIA DRIVER
14149 M:      Antti Palosaari <crope@iki.fi>
14150 L:      linux-media@vger.kernel.org
14151 S:      Maintained
14152 W:      https://linuxtv.org
14153 W:      http://palosaari.fi/linux/
14154 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14155 T:      git git://linuxtv.org/anttip/media_tree.git
14156 F:      drivers/media/usb/msi2500/
14157
14158 MSTAR INTERRUPT CONTROLLER DRIVER
14159 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14160 M:      Daniel Palmer <daniel@thingy.jp>
14161 S:      Maintained
14162 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14163 F:      drivers/irqchip/irq-mst-intc.c
14164
14165 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14166 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14167 L:      linux-mtd@lists.infradead.org
14168 S:      Maintained
14169 F:      drivers/mtd/devices/docg3*
14170
14171 MT9P031 APTINA CAMERA SENSOR
14172 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14173 L:      linux-media@vger.kernel.org
14174 S:      Maintained
14175 T:      git git://linuxtv.org/media_tree.git
14176 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14177 F:      drivers/media/i2c/mt9p031.c
14178 F:      include/media/i2c/mt9p031.h
14179
14180 MT9T001 APTINA CAMERA SENSOR
14181 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14182 L:      linux-media@vger.kernel.org
14183 S:      Maintained
14184 T:      git git://linuxtv.org/media_tree.git
14185 F:      drivers/media/i2c/mt9t001.c
14186 F:      include/media/i2c/mt9t001.h
14187
14188 MT9T112 APTINA CAMERA SENSOR
14189 M:      Jacopo Mondi <jacopo@jmondi.org>
14190 L:      linux-media@vger.kernel.org
14191 S:      Odd Fixes
14192 T:      git git://linuxtv.org/media_tree.git
14193 F:      drivers/media/i2c/mt9t112.c
14194 F:      include/media/i2c/mt9t112.h
14195
14196 MT9V032 APTINA CAMERA SENSOR
14197 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14198 L:      linux-media@vger.kernel.org
14199 S:      Maintained
14200 T:      git git://linuxtv.org/media_tree.git
14201 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14202 F:      drivers/media/i2c/mt9v032.c
14203 F:      include/media/i2c/mt9v032.h
14204
14205 MT9V111 APTINA CAMERA SENSOR
14206 M:      Jacopo Mondi <jacopo@jmondi.org>
14207 L:      linux-media@vger.kernel.org
14208 S:      Maintained
14209 T:      git git://linuxtv.org/media_tree.git
14210 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14211 F:      drivers/media/i2c/mt9v111.c
14212
14213 MULTIFUNCTION DEVICES (MFD)
14214 M:      Lee Jones <lee@kernel.org>
14215 S:      Maintained
14216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14217 F:      Documentation/devicetree/bindings/mfd/
14218 F:      drivers/mfd/
14219 F:      include/dt-bindings/mfd/
14220 F:      include/linux/mfd/
14221
14222 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14223 S:      Orphan
14224 F:      drivers/mmc/host/mmc_spi.c
14225 F:      include/linux/spi/mmc_spi.h
14226
14227 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14228 M:      Ulf Hansson <ulf.hansson@linaro.org>
14229 L:      linux-mmc@vger.kernel.org
14230 S:      Maintained
14231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14232 F:      Documentation/devicetree/bindings/mmc/
14233 F:      drivers/mmc/
14234 F:      include/linux/mmc/
14235 F:      include/uapi/linux/mmc/
14236
14237 MULTIPLEXER SUBSYSTEM
14238 M:      Peter Rosin <peda@axentia.se>
14239 S:      Maintained
14240 F:      Documentation/ABI/testing/sysfs-class-mux*
14241 F:      Documentation/devicetree/bindings/mux/
14242 F:      drivers/mux/
14243 F:      include/dt-bindings/mux/
14244 F:      include/linux/mux/
14245
14246 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14247 M:      Bin Liu <b-liu@ti.com>
14248 L:      linux-usb@vger.kernel.org
14249 S:      Maintained
14250 F:      drivers/usb/musb/
14251
14252 MXL301RF MEDIA DRIVER
14253 M:      Akihiro Tsukada <tskd08@gmail.com>
14254 L:      linux-media@vger.kernel.org
14255 S:      Odd Fixes
14256 F:      drivers/media/tuners/mxl301rf*
14257
14258 MXL5007T MEDIA DRIVER
14259 M:      Michael Krufky <mkrufky@linuxtv.org>
14260 L:      linux-media@vger.kernel.org
14261 S:      Maintained
14262 W:      https://linuxtv.org
14263 W:      http://github.com/mkrufky
14264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14265 T:      git git://linuxtv.org/mkrufky/tuners.git
14266 F:      drivers/media/tuners/mxl5007t.*
14267
14268 MXSFB DRM DRIVER
14269 M:      Marek Vasut <marex@denx.de>
14270 M:      Stefan Agner <stefan@agner.ch>
14271 L:      dri-devel@lists.freedesktop.org
14272 S:      Supported
14273 T:      git git://anongit.freedesktop.org/drm/drm-misc
14274 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14275 F:      drivers/gpu/drm/mxsfb/
14276
14277 MYLEX DAC960 PCI RAID Controller
14278 M:      Hannes Reinecke <hare@kernel.org>
14279 L:      linux-scsi@vger.kernel.org
14280 S:      Supported
14281 F:      drivers/scsi/myrb.*
14282 F:      drivers/scsi/myrs.*
14283
14284 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14285 M:      Chris Lee <christopher.lee@cspi.com>
14286 L:      netdev@vger.kernel.org
14287 S:      Supported
14288 W:      https://www.cspi.com/ethernet-products/support/downloads/
14289 F:      drivers/net/ethernet/myricom/myri10ge/
14290
14291 NAND FLASH SUBSYSTEM
14292 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14293 R:      Richard Weinberger <richard@nod.at>
14294 L:      linux-mtd@lists.infradead.org
14295 S:      Maintained
14296 W:      http://www.linux-mtd.infradead.org/
14297 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14298 C:      irc://irc.oftc.net/mtd
14299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14300 F:      drivers/mtd/nand/
14301 F:      include/linux/mtd/*nand*.h
14302
14303 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14304 M:      Daniel Mack <zonque@gmail.com>
14305 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14306 S:      Maintained
14307 W:      http://www.native-instruments.com
14308 F:      sound/usb/caiaq/
14309
14310 NATSEMI ETHERNET DRIVER (DP8381x)
14311 S:      Orphan
14312 F:      drivers/net/ethernet/natsemi/natsemi.c
14313
14314 NCR 5380 SCSI DRIVERS
14315 M:      Finn Thain <fthain@linux-m68k.org>
14316 M:      Michael Schmitz <schmitzmic@gmail.com>
14317 L:      linux-scsi@vger.kernel.org
14318 S:      Maintained
14319 F:      Documentation/scsi/g_NCR5380.rst
14320 F:      drivers/scsi/NCR5380.*
14321 F:      drivers/scsi/arm/cumana_1.c
14322 F:      drivers/scsi/arm/oak.c
14323 F:      drivers/scsi/atari_scsi.*
14324 F:      drivers/scsi/dmx3191d.c
14325 F:      drivers/scsi/g_NCR5380.*
14326 F:      drivers/scsi/mac_scsi.*
14327 F:      drivers/scsi/sun3_scsi.*
14328 F:      drivers/scsi/sun3_scsi_vme.c
14329
14330 NCSI LIBRARY
14331 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14332 S:      Maintained
14333 F:      net/ncsi/
14334
14335 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14336 M:      Guenter Roeck <linux@roeck-us.net>
14337 L:      linux-hwmon@vger.kernel.org
14338 S:      Maintained
14339 F:      Documentation/hwmon/nct6775.rst
14340 F:      drivers/hwmon/nct6775-core.c
14341 F:      drivers/hwmon/nct6775-platform.c
14342 F:      drivers/hwmon/nct6775.h
14343
14344 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14345 M:      Zev Weiss <zev@bewilderbeest.net>
14346 L:      linux-hwmon@vger.kernel.org
14347 S:      Maintained
14348 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14349 F:      drivers/hwmon/nct6775-i2c.c
14350
14351 NETDEVSIM
14352 M:      Jakub Kicinski <kuba@kernel.org>
14353 S:      Maintained
14354 F:      drivers/net/netdevsim/*
14355
14356 NETEM NETWORK EMULATOR
14357 M:      Stephen Hemminger <stephen@networkplumber.org>
14358 L:      netdev@vger.kernel.org
14359 S:      Maintained
14360 F:      net/sched/sch_netem.c
14361
14362 NETERION 10GbE DRIVERS (s2io)
14363 M:      Jon Mason <jdmason@kudzu.us>
14364 L:      netdev@vger.kernel.org
14365 S:      Supported
14366 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14367 F:      drivers/net/ethernet/neterion/
14368
14369 NETFILTER
14370 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14371 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14372 M:      Florian Westphal <fw@strlen.de>
14373 L:      netfilter-devel@vger.kernel.org
14374 L:      coreteam@netfilter.org
14375 S:      Maintained
14376 W:      http://www.netfilter.org/
14377 W:      http://www.iptables.org/
14378 W:      http://www.nftables.org/
14379 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14380 C:      irc://irc.libera.chat/netfilter
14381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14383 F:      include/linux/netfilter*
14384 F:      include/linux/netfilter/
14385 F:      include/net/netfilter/
14386 F:      include/uapi/linux/netfilter*
14387 F:      include/uapi/linux/netfilter/
14388 F:      net/*/netfilter.c
14389 F:      net/*/netfilter/
14390 F:      net/bridge/br_netfilter*.c
14391 F:      net/netfilter/
14392
14393 NETROM NETWORK LAYER
14394 M:      Ralf Baechle <ralf@linux-mips.org>
14395 L:      linux-hams@vger.kernel.org
14396 S:      Maintained
14397 W:      http://www.linux-ax25.org/
14398 F:      include/net/netrom.h
14399 F:      include/uapi/linux/netrom.h
14400 F:      net/netrom/
14401
14402 NETRONIX EMBEDDED CONTROLLER
14403 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14404 S:      Maintained
14405 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14406 F:      drivers/mfd/ntxec.c
14407 F:      drivers/pwm/pwm-ntxec.c
14408 F:      drivers/rtc/rtc-ntxec.c
14409 F:      include/linux/mfd/ntxec.h
14410
14411 NETRONOME ETHERNET DRIVERS
14412 M:      Simon Horman <simon.horman@corigine.com>
14413 R:      Jakub Kicinski <kuba@kernel.org>
14414 L:      oss-drivers@corigine.com
14415 S:      Maintained
14416 F:      drivers/net/ethernet/netronome/
14417
14418 NETWORK BLOCK DEVICE (NBD)
14419 M:      Josef Bacik <josef@toxicpanda.com>
14420 L:      linux-block@vger.kernel.org
14421 L:      nbd@other.debian.org
14422 S:      Maintained
14423 F:      Documentation/admin-guide/blockdev/nbd.rst
14424 F:      drivers/block/nbd.c
14425 F:      include/trace/events/nbd.h
14426 F:      include/uapi/linux/nbd.h
14427
14428 NETWORK DROP MONITOR
14429 M:      Neil Horman <nhorman@tuxdriver.com>
14430 L:      netdev@vger.kernel.org
14431 S:      Maintained
14432 W:      https://fedorahosted.org/dropwatch/
14433 F:      include/uapi/linux/net_dropmon.h
14434 F:      net/core/drop_monitor.c
14435
14436 NETWORKING DRIVERS
14437 M:      "David S. Miller" <davem@davemloft.net>
14438 M:      Eric Dumazet <edumazet@google.com>
14439 M:      Jakub Kicinski <kuba@kernel.org>
14440 M:      Paolo Abeni <pabeni@redhat.com>
14441 L:      netdev@vger.kernel.org
14442 S:      Maintained
14443 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14446 F:      Documentation/devicetree/bindings/net/
14447 F:      drivers/connector/
14448 F:      drivers/net/
14449 F:      include/dt-bindings/net/
14450 F:      include/linux/etherdevice.h
14451 F:      include/linux/fcdevice.h
14452 F:      include/linux/fddidevice.h
14453 F:      include/linux/hippidevice.h
14454 F:      include/linux/if_*
14455 F:      include/linux/inetdevice.h
14456 F:      include/linux/netdevice.h
14457 F:      include/uapi/linux/if_*
14458 F:      include/uapi/linux/netdevice.h
14459
14460 NETWORKING DRIVERS (WIRELESS)
14461 M:      Kalle Valo <kvalo@kernel.org>
14462 L:      linux-wireless@vger.kernel.org
14463 S:      Maintained
14464 W:      https://wireless.wiki.kernel.org/
14465 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14468 F:      Documentation/devicetree/bindings/net/wireless/
14469 F:      drivers/net/wireless/
14470
14471 NETWORKING [DSA]
14472 M:      Andrew Lunn <andrew@lunn.ch>
14473 M:      Florian Fainelli <f.fainelli@gmail.com>
14474 M:      Vladimir Oltean <olteanv@gmail.com>
14475 S:      Maintained
14476 F:      Documentation/devicetree/bindings/net/dsa/
14477 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14478 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14479 F:      drivers/net/dsa/
14480 F:      include/linux/dsa/
14481 F:      include/linux/platform_data/dsa.h
14482 F:      include/net/dsa.h
14483 F:      net/dsa/
14484 F:      tools/testing/selftests/drivers/net/dsa/
14485
14486 NETWORKING [GENERAL]
14487 M:      "David S. Miller" <davem@davemloft.net>
14488 M:      Eric Dumazet <edumazet@google.com>
14489 M:      Jakub Kicinski <kuba@kernel.org>
14490 M:      Paolo Abeni <pabeni@redhat.com>
14491 L:      netdev@vger.kernel.org
14492 S:      Maintained
14493 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14494 B:      mailto:netdev@vger.kernel.org
14495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14497 F:      Documentation/core-api/netlink.rst
14498 F:      Documentation/networking/
14499 F:      Documentation/process/maintainer-netdev.rst
14500 F:      Documentation/userspace-api/netlink/
14501 F:      include/linux/in.h
14502 F:      include/linux/net.h
14503 F:      include/linux/netdevice.h
14504 F:      include/net/
14505 F:      include/uapi/linux/in.h
14506 F:      include/uapi/linux/net.h
14507 F:      include/uapi/linux/net_namespace.h
14508 F:      include/uapi/linux/netdevice.h
14509 F:      lib/net_utils.c
14510 F:      lib/random32.c
14511 F:      net/
14512 F:      tools/net/
14513 F:      tools/testing/selftests/net/
14514
14515 NETWORKING [IPSEC]
14516 M:      Steffen Klassert <steffen.klassert@secunet.com>
14517 M:      Herbert Xu <herbert@gondor.apana.org.au>
14518 M:      "David S. Miller" <davem@davemloft.net>
14519 L:      netdev@vger.kernel.org
14520 S:      Maintained
14521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14523 F:      include/net/xfrm.h
14524 F:      include/uapi/linux/xfrm.h
14525 F:      net/ipv4/ah4.c
14526 F:      net/ipv4/esp4*
14527 F:      net/ipv4/ip_vti.c
14528 F:      net/ipv4/ipcomp.c
14529 F:      net/ipv4/xfrm*
14530 F:      net/ipv6/ah6.c
14531 F:      net/ipv6/esp6*
14532 F:      net/ipv6/ip6_vti.c
14533 F:      net/ipv6/ipcomp6.c
14534 F:      net/ipv6/xfrm*
14535 F:      net/key/
14536 F:      net/xfrm/
14537 F:      tools/testing/selftests/net/ipsec.c
14538
14539 NETWORKING [IPv4/IPv6]
14540 M:      "David S. Miller" <davem@davemloft.net>
14541 M:      David Ahern <dsahern@kernel.org>
14542 L:      netdev@vger.kernel.org
14543 S:      Maintained
14544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14545 F:      arch/x86/net/*
14546 F:      include/linux/ip.h
14547 F:      include/linux/ipv6*
14548 F:      include/net/fib*
14549 F:      include/net/ip*
14550 F:      include/net/route.h
14551 F:      net/ipv4/
14552 F:      net/ipv6/
14553
14554 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14555 M:      Paul Moore <paul@paul-moore.com>
14556 L:      netdev@vger.kernel.org
14557 L:      linux-security-module@vger.kernel.org
14558 S:      Maintained
14559 W:      https://github.com/netlabel
14560 F:      Documentation/netlabel/
14561 F:      include/net/calipso.h
14562 F:      include/net/cipso_ipv4.h
14563 F:      include/net/netlabel.h
14564 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14565 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14566 F:      net/ipv4/cipso_ipv4.c
14567 F:      net/ipv6/calipso.c
14568 F:      net/netfilter/xt_CONNSECMARK.c
14569 F:      net/netfilter/xt_SECMARK.c
14570 F:      net/netlabel/
14571
14572 NETWORKING [MPTCP]
14573 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14574 L:      netdev@vger.kernel.org
14575 L:      mptcp@lists.linux.dev
14576 S:      Maintained
14577 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14578 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14579 F:      Documentation/networking/mptcp-sysctl.rst
14580 F:      include/net/mptcp.h
14581 F:      include/trace/events/mptcp.h
14582 F:      include/uapi/linux/mptcp.h
14583 F:      net/mptcp/
14584 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14585 F:      tools/testing/selftests/net/mptcp/
14586
14587 NETWORKING [TCP]
14588 M:      Eric Dumazet <edumazet@google.com>
14589 L:      netdev@vger.kernel.org
14590 S:      Maintained
14591 F:      include/linux/tcp.h
14592 F:      include/net/tcp.h
14593 F:      include/trace/events/tcp.h
14594 F:      include/uapi/linux/tcp.h
14595 F:      net/ipv4/syncookies.c
14596 F:      net/ipv4/tcp*.c
14597 F:      net/ipv6/syncookies.c
14598 F:      net/ipv6/tcp*.c
14599
14600 NETWORKING [TLS]
14601 M:      Boris Pismenny <borisp@nvidia.com>
14602 M:      John Fastabend <john.fastabend@gmail.com>
14603 M:      Jakub Kicinski <kuba@kernel.org>
14604 L:      netdev@vger.kernel.org
14605 S:      Maintained
14606 F:      include/net/tls.h
14607 F:      include/uapi/linux/tls.h
14608 F:      net/tls/*
14609
14610 NETXEN (1/10) GbE SUPPORT
14611 M:      Manish Chopra <manishc@marvell.com>
14612 M:      Rahul Verma <rahulv@marvell.com>
14613 M:      GR-Linux-NIC-Dev@marvell.com
14614 L:      netdev@vger.kernel.org
14615 S:      Supported
14616 F:      drivers/net/ethernet/qlogic/netxen/
14617
14618 NET_FAILOVER MODULE
14619 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14620 L:      netdev@vger.kernel.org
14621 S:      Supported
14622 F:      Documentation/networking/net_failover.rst
14623 F:      drivers/net/net_failover.c
14624 F:      include/net/net_failover.h
14625
14626 NEXTHOP
14627 M:      David Ahern <dsahern@kernel.org>
14628 L:      netdev@vger.kernel.org
14629 S:      Maintained
14630 F:      include/net/netns/nexthop.h
14631 F:      include/net/nexthop.h
14632 F:      include/uapi/linux/nexthop.h
14633 F:      net/ipv4/nexthop.c
14634
14635 NFC SUBSYSTEM
14636 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14637 L:      linux-nfc@lists.01.org (subscribers-only)
14638 L:      netdev@vger.kernel.org
14639 S:      Maintained
14640 B:      mailto:linux-nfc@lists.01.org
14641 F:      Documentation/devicetree/bindings/net/nfc/
14642 F:      drivers/nfc/
14643 F:      include/linux/platform_data/nfcmrvl.h
14644 F:      include/net/nfc/
14645 F:      include/uapi/linux/nfc.h
14646 F:      net/nfc/
14647
14648 NFC VIRTUAL NCI DEVICE DRIVER
14649 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14650 L:      netdev@vger.kernel.org
14651 L:      linux-nfc@lists.01.org (subscribers-only)
14652 S:      Supported
14653 F:      drivers/nfc/virtual_ncidev.c
14654 F:      tools/testing/selftests/nci/
14655
14656 NFS, SUNRPC, AND LOCKD CLIENTS
14657 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14658 M:      Anna Schumaker <anna@kernel.org>
14659 L:      linux-nfs@vger.kernel.org
14660 S:      Maintained
14661 W:      http://client.linux-nfs.org
14662 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14663 F:      fs/lockd/
14664 F:      fs/nfs/
14665 F:      fs/nfs_common/
14666 F:      include/linux/lockd/
14667 F:      include/linux/nfs*
14668 F:      include/linux/sunrpc/
14669 F:      include/uapi/linux/nfs*
14670 F:      include/uapi/linux/sunrpc/
14671 F:      net/sunrpc/
14672 F:      Documentation/filesystems/nfs/
14673
14674 NILFS2 FILESYSTEM
14675 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14676 L:      linux-nilfs@vger.kernel.org
14677 S:      Supported
14678 W:      https://nilfs.sourceforge.io/
14679 W:      https://nilfs.osdn.jp/
14680 T:      git https://github.com/konis/nilfs2.git
14681 F:      Documentation/filesystems/nilfs2.rst
14682 F:      fs/nilfs2/
14683 F:      include/trace/events/nilfs2.h
14684 F:      include/uapi/linux/nilfs2_api.h
14685 F:      include/uapi/linux/nilfs2_ondisk.h
14686
14687 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14688 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14689 S:      Maintained
14690 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14691 F:      Documentation/scsi/NinjaSCSI.rst
14692 F:      drivers/scsi/pcmcia/nsp_*
14693
14694 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14695 M:      GOTO Masanori <gotom@debian.or.jp>
14696 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14697 S:      Maintained
14698 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14699 F:      Documentation/scsi/NinjaSCSI.rst
14700 F:      drivers/scsi/nsp32*
14701
14702 NINTENDO HID DRIVER
14703 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14704 L:      linux-input@vger.kernel.org
14705 S:      Maintained
14706 F:      drivers/hid/hid-nintendo*
14707
14708 NIOS2 ARCHITECTURE
14709 M:      Dinh Nguyen <dinguyen@kernel.org>
14710 S:      Maintained
14711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14712 F:      arch/nios2/
14713
14714 NITRO ENCLAVES (NE)
14715 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14716 L:      linux-kernel@vger.kernel.org
14717 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14718 S:      Supported
14719 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14720 F:      Documentation/virt/ne_overview.rst
14721 F:      drivers/virt/nitro_enclaves/
14722 F:      include/linux/nitro_enclaves.h
14723 F:      include/uapi/linux/nitro_enclaves.h
14724 F:      samples/nitro_enclaves/
14725
14726 NOHZ, DYNTICKS SUPPORT
14727 M:      Frederic Weisbecker <fweisbec@gmail.com>
14728 M:      Thomas Gleixner <tglx@linutronix.de>
14729 M:      Ingo Molnar <mingo@kernel.org>
14730 L:      linux-kernel@vger.kernel.org
14731 S:      Maintained
14732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14733 F:      include/linux/sched/nohz.h
14734 F:      include/linux/tick.h
14735 F:      kernel/time/tick*.*
14736
14737 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14738 M:      Pavel Machek <pavel@ucw.cz>
14739 M:      Sakari Ailus <sakari.ailus@iki.fi>
14740 L:      linux-media@vger.kernel.org
14741 S:      Maintained
14742 F:      drivers/media/i2c/ad5820.c
14743 F:      drivers/media/i2c/et8ek8
14744
14745 NOKIA N900 POWER SUPPLY DRIVERS
14746 R:      Pali Rohár <pali@kernel.org>
14747 F:      drivers/power/supply/bq2415x_charger.c
14748 F:      drivers/power/supply/bq27xxx_battery.c
14749 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14750 F:      drivers/power/supply/isp1704_charger.c
14751 F:      drivers/power/supply/rx51_battery.c
14752 F:      include/linux/power/bq2415x_charger.h
14753 F:      include/linux/power/bq27xxx_battery.h
14754
14755 NOLIBC HEADER FILE
14756 M:      Willy Tarreau <w@1wt.eu>
14757 S:      Maintained
14758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14759 F:      tools/include/nolibc/
14760 F:      tools/testing/selftests/nolibc/
14761
14762 NSDEPS
14763 M:      Matthias Maennich <maennich@google.com>
14764 S:      Maintained
14765 F:      Documentation/core-api/symbol-namespaces.rst
14766 F:      scripts/nsdeps
14767
14768 NTB AMD DRIVER
14769 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14770 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14771 L:      ntb@lists.linux.dev
14772 S:      Supported
14773 F:      drivers/ntb/hw/amd/
14774
14775 NTB DRIVER CORE
14776 M:      Jon Mason <jdmason@kudzu.us>
14777 M:      Dave Jiang <dave.jiang@intel.com>
14778 M:      Allen Hubbe <allenbh@gmail.com>
14779 L:      ntb@lists.linux.dev
14780 S:      Supported
14781 W:      https://github.com/jonmason/ntb/wiki
14782 T:      git git://github.com/jonmason/ntb.git
14783 F:      drivers/net/ntb_netdev.c
14784 F:      drivers/ntb/
14785 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14786 F:      include/linux/ntb.h
14787 F:      include/linux/ntb_transport.h
14788 F:      tools/testing/selftests/ntb/
14789
14790 NTB IDT DRIVER
14791 M:      Serge Semin <fancer.lancer@gmail.com>
14792 L:      ntb@lists.linux.dev
14793 S:      Supported
14794 F:      drivers/ntb/hw/idt/
14795
14796 NTB INTEL DRIVER
14797 M:      Dave Jiang <dave.jiang@intel.com>
14798 L:      ntb@lists.linux.dev
14799 S:      Supported
14800 W:      https://github.com/davejiang/linux/wiki
14801 T:      git https://github.com/davejiang/linux.git
14802 F:      drivers/ntb/hw/intel/
14803
14804 NTFS FILESYSTEM
14805 M:      Anton Altaparmakov <anton@tuxera.com>
14806 L:      linux-ntfs-dev@lists.sourceforge.net
14807 S:      Supported
14808 W:      http://www.tuxera.com/
14809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14810 F:      Documentation/filesystems/ntfs.rst
14811 F:      fs/ntfs/
14812
14813 NTFS3 FILESYSTEM
14814 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14815 L:      ntfs3@lists.linux.dev
14816 S:      Supported
14817 W:      http://www.paragon-software.com/
14818 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14819 F:      Documentation/filesystems/ntfs3.rst
14820 F:      fs/ntfs3/
14821
14822 NUBUS SUBSYSTEM
14823 M:      Finn Thain <fthain@linux-m68k.org>
14824 L:      linux-m68k@lists.linux-m68k.org
14825 S:      Maintained
14826 F:      arch/*/include/asm/nubus.h
14827 F:      drivers/nubus/
14828 F:      include/linux/nubus.h
14829 F:      include/uapi/linux/nubus.h
14830
14831 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14832 M:      Antonino Daplas <adaplas@gmail.com>
14833 L:      linux-fbdev@vger.kernel.org
14834 S:      Maintained
14835 F:      drivers/video/fbdev/nvidia/
14836 F:      drivers/video/fbdev/riva/
14837
14838 NVIDIA WMI EC BACKLIGHT DRIVER
14839 M:      Daniel Dadap <ddadap@nvidia.com>
14840 L:      platform-driver-x86@vger.kernel.org
14841 S:      Supported
14842 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14843 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14844
14845 NVM EXPRESS DRIVER
14846 M:      Keith Busch <kbusch@kernel.org>
14847 M:      Jens Axboe <axboe@fb.com>
14848 M:      Christoph Hellwig <hch@lst.de>
14849 M:      Sagi Grimberg <sagi@grimberg.me>
14850 L:      linux-nvme@lists.infradead.org
14851 S:      Supported
14852 W:      http://git.infradead.org/nvme.git
14853 T:      git://git.infradead.org/nvme.git
14854 F:      Documentation/nvme/
14855 F:      drivers/nvme/host/
14856 F:      drivers/nvme/common/
14857 F:      include/linux/nvme.h
14858 F:      include/linux/nvme-*.h
14859 F:      include/uapi/linux/nvme_ioctl.h
14860
14861 NVM EXPRESS FABRICS AUTHENTICATION
14862 M:      Hannes Reinecke <hare@suse.de>
14863 L:      linux-nvme@lists.infradead.org
14864 S:      Supported
14865 F:      drivers/nvme/host/auth.c
14866 F:      drivers/nvme/target/auth.c
14867 F:      drivers/nvme/target/fabrics-cmd-auth.c
14868 F:      include/linux/nvme-auth.h
14869
14870 NVM EXPRESS HARDWARE MONITORING SUPPORT
14871 M:      Guenter Roeck <linux@roeck-us.net>
14872 L:      linux-nvme@lists.infradead.org
14873 S:      Supported
14874 F:      drivers/nvme/host/hwmon.c
14875
14876 NVM EXPRESS FC TRANSPORT DRIVERS
14877 M:      James Smart <james.smart@broadcom.com>
14878 L:      linux-nvme@lists.infradead.org
14879 S:      Supported
14880 F:      drivers/nvme/host/fc.c
14881 F:      drivers/nvme/target/fc.c
14882 F:      drivers/nvme/target/fcloop.c
14883 F:      include/linux/nvme-fc-driver.h
14884 F:      include/linux/nvme-fc.h
14885
14886 NVM EXPRESS TARGET DRIVER
14887 M:      Christoph Hellwig <hch@lst.de>
14888 M:      Sagi Grimberg <sagi@grimberg.me>
14889 M:      Chaitanya Kulkarni <kch@nvidia.com>
14890 L:      linux-nvme@lists.infradead.org
14891 S:      Supported
14892 W:      http://git.infradead.org/nvme.git
14893 T:      git://git.infradead.org/nvme.git
14894 F:      drivers/nvme/target/
14895
14896 NVMEM FRAMEWORK
14897 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14898 S:      Maintained
14899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14900 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14901 F:      Documentation/devicetree/bindings/nvmem/
14902 F:      drivers/nvmem/
14903 F:      include/linux/nvmem-consumer.h
14904 F:      include/linux/nvmem-provider.h
14905
14906 NXP C45 TJA11XX PHY DRIVER
14907 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14908 L:      netdev@vger.kernel.org
14909 S:      Maintained
14910 F:      drivers/net/phy/nxp-c45-tja11xx.c
14911
14912 NXP FSPI DRIVER
14913 M:      Han Xu <han.xu@nxp.com>
14914 M:      Haibo Chen <haibo.chen@nxp.com>
14915 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14916 L:      linux-spi@vger.kernel.org
14917 S:      Maintained
14918 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14919 F:      drivers/spi/spi-nxp-fspi.c
14920
14921 NXP FXAS21002C DRIVER
14922 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14923 L:      linux-iio@vger.kernel.org
14924 S:      Maintained
14925 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14926 F:      drivers/iio/gyro/fxas21002c.h
14927 F:      drivers/iio/gyro/fxas21002c_core.c
14928 F:      drivers/iio/gyro/fxas21002c_i2c.c
14929 F:      drivers/iio/gyro/fxas21002c_spi.c
14930
14931 NXP i.MX CLOCK DRIVERS
14932 M:      Abel Vesa <abelvesa@kernel.org>
14933 R:      Peng Fan <peng.fan@nxp.com>
14934 L:      linux-clk@vger.kernel.org
14935 L:      linux-imx@nxp.com
14936 S:      Maintained
14937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14938 F:      Documentation/devicetree/bindings/clock/imx*
14939 F:      drivers/clk/imx/
14940 F:      include/dt-bindings/clock/imx*
14941
14942 NXP i.MX 8MQ DCSS DRIVER
14943 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14944 R:      Lucas Stach <l.stach@pengutronix.de>
14945 L:      dri-devel@lists.freedesktop.org
14946 S:      Maintained
14947 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14948 F:      drivers/gpu/drm/imx/dcss/
14949
14950 NXP i.MX 8QXP ADC DRIVER
14951 M:      Cai Huoqing <cai.huoqing@linux.dev>
14952 M:      Haibo Chen <haibo.chen@nxp.com>
14953 L:      linux-imx@nxp.com
14954 L:      linux-iio@vger.kernel.org
14955 S:      Maintained
14956 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14957 F:      drivers/iio/adc/imx8qxp-adc.c
14958
14959 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
14960 M:      Haibo Chen <haibo.chen@nxp.com>
14961 L:      linux-iio@vger.kernel.org
14962 L:      linux-imx@nxp.com
14963 S:      Maintained
14964 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14965 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14966 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
14967 F:      drivers/iio/adc/imx7d_adc.c
14968 F:      drivers/iio/adc/imx93_adc.c
14969 F:      drivers/iio/adc/vf610_adc.c
14970
14971 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14972 M:      Jagan Teki <jagan@amarulasolutions.com>
14973 S:      Maintained
14974 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14975 F:      drivers/regulator/pf8x00-regulator.c
14976
14977 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14978 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14979 L:      linux-kernel@vger.kernel.org
14980 S:      Maintained
14981 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14982 F:      drivers/extcon/extcon-ptn5150.c
14983
14984 NXP SGTL5000 DRIVER
14985 M:      Fabio Estevam <festevam@gmail.com>
14986 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14989 F:      sound/soc/codecs/sgtl5000*
14990
14991 NXP SJA1105 ETHERNET SWITCH DRIVER
14992 M:      Vladimir Oltean <olteanv@gmail.com>
14993 L:      linux-kernel@vger.kernel.org
14994 S:      Maintained
14995 F:      drivers/net/dsa/sja1105
14996 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14997
14998 NXP TDA998X DRM DRIVER
14999 M:      Russell King <linux@armlinux.org.uk>
15000 S:      Maintained
15001 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15002 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15003 F:      drivers/gpu/drm/i2c/tda998x_drv.c
15004 F:      include/drm/i2c/tda998x.h
15005 F:      include/dt-bindings/display/tda998x.h
15006 K:      "nxp,tda998x"
15007
15008 NXP TFA9879 DRIVER
15009 M:      Peter Rosin <peda@axentia.se>
15010 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15011 S:      Maintained
15012 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
15013 F:      sound/soc/codecs/tfa9879*
15014
15015 NXP/Goodix TFA989X (TFA1) DRIVER
15016 M:      Stephan Gerhold <stephan@gerhold.net>
15017 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15018 S:      Maintained
15019 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15020 F:      sound/soc/codecs/tfa989x.c
15021
15022 NXP-NCI NFC DRIVER
15023 L:      linux-nfc@lists.01.org (subscribers-only)
15024 S:      Orphan
15025 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15026 F:      drivers/nfc/nxp-nci
15027
15028 NXP i.MX 8MP DW100 V4L2 DRIVER
15029 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15030 L:      linux-media@vger.kernel.org
15031 S:      Maintained
15032 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15033 F:      Documentation/userspace-api/media/drivers/dw100.rst
15034 F:      drivers/media/platform/nxp/dw100/
15035 F:      include/uapi/linux/dw100.h
15036
15037 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15038 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
15039 R:      NXP Linux Team <linux-imx@nxp.com>
15040 L:      linux-media@vger.kernel.org
15041 S:      Maintained
15042 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15043 F:      drivers/media/platform/nxp/imx-jpeg
15044
15045 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15046 M:      Jonas Malaco <jonas@protocubo.io>
15047 L:      linux-hwmon@vger.kernel.org
15048 S:      Maintained
15049 F:      Documentation/hwmon/nzxt-kraken2.rst
15050 F:      drivers/hwmon/nzxt-kraken2.c
15051
15052 NZXT-SMART2 HARDWARE MONITORING DRIVER
15053 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15054 L:      linux-hwmon@vger.kernel.org
15055 S:      Maintained
15056 F:      Documentation/hwmon/nzxt-smart2.rst
15057 F:      drivers/hwmon/nzxt-smart2.c
15058
15059 OBJAGG
15060 M:      Jiri Pirko <jiri@nvidia.com>
15061 L:      netdev@vger.kernel.org
15062 S:      Supported
15063 F:      include/linux/objagg.h
15064 F:      lib/objagg.c
15065 F:      lib/test_objagg.c
15066
15067 OBJTOOL
15068 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15069 M:      Peter Zijlstra <peterz@infradead.org>
15070 S:      Supported
15071 F:      tools/objtool/
15072 F:      include/linux/objtool.h
15073
15074 OCELOT ETHERNET SWITCH DRIVER
15075 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15076 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15077 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15078 M:      UNGLinuxDriver@microchip.com
15079 L:      netdev@vger.kernel.org
15080 S:      Supported
15081 F:      drivers/net/dsa/ocelot/*
15082 F:      drivers/net/ethernet/mscc/
15083 F:      include/soc/mscc/ocelot*
15084 F:      net/dsa/tag_ocelot.c
15085 F:      net/dsa/tag_ocelot_8021q.c
15086 F:      tools/testing/selftests/drivers/net/ocelot/*
15087
15088 OCELOT EXTERNAL SWITCH CONTROL
15089 M:      Colin Foster <colin.foster@in-advantage.com>
15090 S:      Supported
15091 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15092 F:      drivers/mfd/ocelot*
15093 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15094 F:      include/linux/mfd/ocelot.h
15095
15096 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15097 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15098 M:      Andrew Donnellan <ajd@linux.ibm.com>
15099 L:      linuxppc-dev@lists.ozlabs.org
15100 S:      Supported
15101 F:      Documentation/userspace-api/accelerators/ocxl.rst
15102 F:      arch/powerpc/include/asm/pnv-ocxl.h
15103 F:      arch/powerpc/platforms/powernv/ocxl.c
15104 F:      drivers/misc/ocxl/
15105 F:      include/misc/ocxl*
15106 F:      include/uapi/misc/ocxl.h
15107
15108 OMAP AUDIO SUPPORT
15109 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15110 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15111 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15112 L:      linux-omap@vger.kernel.org
15113 S:      Maintained
15114 F:      sound/soc/ti/n810.c
15115 F:      sound/soc/ti/omap*
15116 F:      sound/soc/ti/rx51.c
15117 F:      sound/soc/ti/sdma-pcm.*
15118
15119 OMAP CLOCK FRAMEWORK SUPPORT
15120 M:      Paul Walmsley <paul@pwsan.com>
15121 L:      linux-omap@vger.kernel.org
15122 S:      Maintained
15123 F:      arch/arm/*omap*/*clock*
15124
15125 OMAP DEVICE TREE SUPPORT
15126 M:      Benoît Cousson <bcousson@baylibre.com>
15127 M:      Tony Lindgren <tony@atomide.com>
15128 L:      linux-omap@vger.kernel.org
15129 L:      devicetree@vger.kernel.org
15130 S:      Maintained
15131 F:      arch/arm/boot/dts/*am3*
15132 F:      arch/arm/boot/dts/*am4*
15133 F:      arch/arm/boot/dts/*am5*
15134 F:      arch/arm/boot/dts/*dra7*
15135 F:      arch/arm/boot/dts/*omap*
15136 F:      arch/arm/boot/dts/logicpd-som-lv*
15137 F:      arch/arm/boot/dts/logicpd-torpedo*
15138
15139 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15140 L:      linux-omap@vger.kernel.org
15141 L:      linux-fbdev@vger.kernel.org
15142 S:      Orphan
15143 F:      Documentation/arm/omap/dss.rst
15144 F:      drivers/video/fbdev/omap2/
15145
15146 OMAP FRAMEBUFFER SUPPORT
15147 L:      linux-fbdev@vger.kernel.org
15148 L:      linux-omap@vger.kernel.org
15149 S:      Orphan
15150 F:      drivers/video/fbdev/omap/
15151
15152 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15153 M:      Roger Quadros <rogerq@kernel.org>
15154 M:      Tony Lindgren <tony@atomide.com>
15155 L:      linux-omap@vger.kernel.org
15156 S:      Maintained
15157 F:      arch/arm/mach-omap2/*gpmc*
15158 F:      drivers/memory/omap-gpmc.c
15159
15160 OMAP GPIO DRIVER
15161 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15162 M:      Santosh Shilimkar <ssantosh@kernel.org>
15163 M:      Kevin Hilman <khilman@kernel.org>
15164 L:      linux-omap@vger.kernel.org
15165 S:      Maintained
15166 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15167 F:      drivers/gpio/gpio-omap.c
15168
15169 OMAP HARDWARE SPINLOCK SUPPORT
15170 M:      Ohad Ben-Cohen <ohad@wizery.com>
15171 L:      linux-omap@vger.kernel.org
15172 S:      Maintained
15173 F:      drivers/hwspinlock/omap_hwspinlock.c
15174
15175 OMAP HS MMC SUPPORT
15176 L:      linux-mmc@vger.kernel.org
15177 L:      linux-omap@vger.kernel.org
15178 S:      Orphan
15179 F:      drivers/mmc/host/omap_hsmmc.c
15180
15181 OMAP HWMOD DATA
15182 M:      Paul Walmsley <paul@pwsan.com>
15183 L:      linux-omap@vger.kernel.org
15184 S:      Maintained
15185 F:      arch/arm/mach-omap2/omap_hwmod*data*
15186
15187 OMAP HWMOD SUPPORT
15188 M:      Benoît Cousson <bcousson@baylibre.com>
15189 M:      Paul Walmsley <paul@pwsan.com>
15190 L:      linux-omap@vger.kernel.org
15191 S:      Maintained
15192 F:      arch/arm/mach-omap2/omap_hwmod.*
15193
15194 OMAP I2C DRIVER
15195 M:      Vignesh R <vigneshr@ti.com>
15196 L:      linux-omap@vger.kernel.org
15197 L:      linux-i2c@vger.kernel.org
15198 S:      Maintained
15199 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15200 F:      drivers/i2c/busses/i2c-omap.c
15201
15202 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15203 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15204 L:      linux-media@vger.kernel.org
15205 S:      Maintained
15206 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15207 F:      drivers/media/platform/ti/omap3isp/
15208 F:      drivers/staging/media/omap4iss/
15209
15210 OMAP MMC SUPPORT
15211 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15212 L:      linux-omap@vger.kernel.org
15213 S:      Odd Fixes
15214 F:      drivers/mmc/host/omap.c
15215
15216 OMAP POWER MANAGEMENT SUPPORT
15217 M:      Kevin Hilman <khilman@kernel.org>
15218 L:      linux-omap@vger.kernel.org
15219 S:      Maintained
15220 F:      arch/arm/*omap*/*pm*
15221 F:      drivers/cpufreq/omap-cpufreq.c
15222
15223 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15224 M:      Paul Walmsley <paul@pwsan.com>
15225 L:      linux-omap@vger.kernel.org
15226 S:      Maintained
15227 F:      arch/arm/mach-omap2/prm*
15228
15229 OMAP RANDOM NUMBER GENERATOR SUPPORT
15230 M:      Deepak Saxena <dsaxena@plexity.net>
15231 S:      Maintained
15232 F:      drivers/char/hw_random/omap-rng.c
15233
15234 OMAP USB SUPPORT
15235 L:      linux-usb@vger.kernel.org
15236 L:      linux-omap@vger.kernel.org
15237 S:      Orphan
15238 F:      arch/arm/*omap*/usb*
15239 F:      drivers/usb/*/*omap*
15240
15241 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15242 M:      Mark Jackson <mpfj@newflow.co.uk>
15243 L:      linux-omap@vger.kernel.org
15244 S:      Maintained
15245 F:      arch/arm/boot/dts/am335x-nano.dts
15246
15247 OMAP1 SUPPORT
15248 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15249 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15250 M:      Tony Lindgren <tony@atomide.com>
15251 L:      linux-omap@vger.kernel.org
15252 S:      Maintained
15253 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15255 F:      arch/arm/configs/omap1_defconfig
15256 F:      arch/arm/mach-omap1/
15257 F:      drivers/i2c/busses/i2c-omap.c
15258 F:      include/linux/platform_data/ams-delta-fiq.h
15259 F:      include/linux/platform_data/i2c-omap.h
15260
15261 OMAP2+ SUPPORT
15262 M:      Tony Lindgren <tony@atomide.com>
15263 L:      linux-omap@vger.kernel.org
15264 S:      Maintained
15265 W:      http://www.muru.com/linux/omap/
15266 W:      http://linux.omap.com/
15267 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15269 F:      arch/arm/configs/omap2plus_defconfig
15270 F:      arch/arm/mach-omap2/
15271 F:      drivers/bus/ti-sysc.c
15272 F:      drivers/i2c/busses/i2c-omap.c
15273 F:      drivers/irqchip/irq-omap-intc.c
15274 F:      drivers/mfd/*omap*.c
15275 F:      drivers/mfd/menelaus.c
15276 F:      drivers/mfd/palmas.c
15277 F:      drivers/mfd/tps65217.c
15278 F:      drivers/mfd/tps65218.c
15279 F:      drivers/mfd/tps65219.c
15280 F:      drivers/mfd/tps65910.c
15281 F:      drivers/mfd/twl-core.[ch]
15282 F:      drivers/mfd/twl4030*.c
15283 F:      drivers/mfd/twl6030*.c
15284 F:      drivers/mfd/twl6040*.c
15285 F:      drivers/regulator/palmas-regulator*.c
15286 F:      drivers/regulator/pbias-regulator.c
15287 F:      drivers/regulator/tps65217-regulator.c
15288 F:      drivers/regulator/tps65218-regulator.c
15289 F:      drivers/regulator/tps65219-regulator.c
15290 F:      drivers/regulator/tps65910-regulator.c
15291 F:      drivers/regulator/twl-regulator.c
15292 F:      drivers/regulator/twl6030-regulator.c
15293 F:      include/linux/platform_data/i2c-omap.h
15294 F:      include/linux/platform_data/ti-sysc.h
15295
15296 OMFS FILESYSTEM
15297 M:      Bob Copeland <me@bobcopeland.com>
15298 L:      linux-karma-devel@lists.sourceforge.net
15299 S:      Maintained
15300 F:      Documentation/filesystems/omfs.rst
15301 F:      fs/omfs/
15302
15303 OMNIKEY CARDMAN 4000 DRIVER
15304 M:      Harald Welte <laforge@gnumonks.org>
15305 S:      Maintained
15306 F:      drivers/char/pcmcia/cm4000_cs.c
15307 F:      include/linux/cm4000_cs.h
15308 F:      include/uapi/linux/cm4000_cs.h
15309
15310 OMNIKEY CARDMAN 4040 DRIVER
15311 M:      Harald Welte <laforge@gnumonks.org>
15312 S:      Maintained
15313 F:      drivers/char/pcmcia/cm4040_cs.*
15314
15315 OMNIVISION OG01A1B SENSOR DRIVER
15316 M:      Shawn Tu <shawnx.tu@intel.com>
15317 L:      linux-media@vger.kernel.org
15318 S:      Maintained
15319 F:      drivers/media/i2c/og01a1b.c
15320
15321 OMNIVISION OV02A10 SENSOR DRIVER
15322 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15323 L:      linux-media@vger.kernel.org
15324 S:      Maintained
15325 T:      git git://linuxtv.org/media_tree.git
15326 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15327 F:      drivers/media/i2c/ov02a10.c
15328
15329 OMNIVISION OV08D10 SENSOR DRIVER
15330 M:      Jimmy Su <jimmy.su@intel.com>
15331 L:      linux-media@vger.kernel.org
15332 S:      Maintained
15333 T:      git git://linuxtv.org/media_tree.git
15334 F:      drivers/media/i2c/ov08d10.c
15335
15336 OMNIVISION OV08X40 SENSOR DRIVER
15337 M:      Jason Chen <jason.z.chen@intel.com>
15338 L:      linux-media@vger.kernel.org
15339 S:      Maintained
15340 T:      git git://linuxtv.org/media_tree.git
15341 F:      drivers/media/i2c/ov08x40.c
15342
15343 OMNIVISION OV13858 SENSOR DRIVER
15344 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15345 L:      linux-media@vger.kernel.org
15346 S:      Maintained
15347 T:      git git://linuxtv.org/media_tree.git
15348 F:      drivers/media/i2c/ov13858.c
15349
15350 OMNIVISION OV13B10 SENSOR DRIVER
15351 M:      Arec Kao <arec.kao@intel.com>
15352 L:      linux-media@vger.kernel.org
15353 S:      Maintained
15354 T:      git git://linuxtv.org/media_tree.git
15355 F:      drivers/media/i2c/ov13b10.c
15356
15357 OMNIVISION OV2680 SENSOR DRIVER
15358 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15359 L:      linux-media@vger.kernel.org
15360 S:      Maintained
15361 T:      git git://linuxtv.org/media_tree.git
15362 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15363 F:      drivers/media/i2c/ov2680.c
15364
15365 OMNIVISION OV2685 SENSOR DRIVER
15366 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15367 L:      linux-media@vger.kernel.org
15368 S:      Maintained
15369 T:      git git://linuxtv.org/media_tree.git
15370 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
15371 F:      drivers/media/i2c/ov2685.c
15372
15373 OMNIVISION OV2740 SENSOR DRIVER
15374 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15375 R:      Shawn Tu <shawnx.tu@intel.com>
15376 R:      Bingbu Cao <bingbu.cao@intel.com>
15377 L:      linux-media@vger.kernel.org
15378 S:      Maintained
15379 T:      git git://linuxtv.org/media_tree.git
15380 F:      drivers/media/i2c/ov2740.c
15381
15382 OMNIVISION OV4689 SENSOR DRIVER
15383 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15384 L:      linux-media@vger.kernel.org
15385 S:      Maintained
15386 T:      git git://linuxtv.org/media_tree.git
15387 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15388 F:      drivers/media/i2c/ov5647.c
15389
15390 OMNIVISION OV5640 SENSOR DRIVER
15391 M:      Steve Longerbeam <slongerbeam@gmail.com>
15392 L:      linux-media@vger.kernel.org
15393 S:      Maintained
15394 T:      git git://linuxtv.org/media_tree.git
15395 F:      drivers/media/i2c/ov5640.c
15396
15397 OMNIVISION OV5647 SENSOR DRIVER
15398 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15399 M:      Jacopo Mondi <jacopo@jmondi.org>
15400 L:      linux-media@vger.kernel.org
15401 S:      Maintained
15402 T:      git git://linuxtv.org/media_tree.git
15403 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15404 F:      drivers/media/i2c/ov5647.c
15405
15406 OMNIVISION OV5670 SENSOR DRIVER
15407 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15408 L:      linux-media@vger.kernel.org
15409 S:      Maintained
15410 T:      git git://linuxtv.org/media_tree.git
15411 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
15412 F:      drivers/media/i2c/ov5670.c
15413
15414 OMNIVISION OV5675 SENSOR DRIVER
15415 M:      Shawn Tu <shawnx.tu@intel.com>
15416 L:      linux-media@vger.kernel.org
15417 S:      Maintained
15418 T:      git git://linuxtv.org/media_tree.git
15419 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
15420 F:      drivers/media/i2c/ov5675.c
15421
15422 OMNIVISION OV5693 SENSOR DRIVER
15423 M:      Daniel Scally <djrscally@gmail.com>
15424 L:      linux-media@vger.kernel.org
15425 S:      Maintained
15426 T:      git git://linuxtv.org/media_tree.git
15427 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15428 F:      drivers/media/i2c/ov5693.c
15429
15430 OMNIVISION OV5695 SENSOR DRIVER
15431 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15432 L:      linux-media@vger.kernel.org
15433 S:      Maintained
15434 T:      git git://linuxtv.org/media_tree.git
15435 F:      drivers/media/i2c/ov5695.c
15436
15437 OMNIVISION OV7670 SENSOR DRIVER
15438 L:      linux-media@vger.kernel.org
15439 S:      Orphan
15440 T:      git git://linuxtv.org/media_tree.git
15441 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15442 F:      drivers/media/i2c/ov7670.c
15443
15444 OMNIVISION OV772x SENSOR DRIVER
15445 M:      Jacopo Mondi <jacopo@jmondi.org>
15446 L:      linux-media@vger.kernel.org
15447 S:      Odd fixes
15448 T:      git git://linuxtv.org/media_tree.git
15449 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15450 F:      drivers/media/i2c/ov772x.c
15451 F:      include/media/i2c/ov772x.h
15452
15453 OMNIVISION OV7740 SENSOR DRIVER
15454 M:      Wenyou Yang <wenyou.yang@microchip.com>
15455 L:      linux-media@vger.kernel.org
15456 S:      Maintained
15457 T:      git git://linuxtv.org/media_tree.git
15458 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15459 F:      drivers/media/i2c/ov7740.c
15460
15461 OMNIVISION OV8856 SENSOR DRIVER
15462 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15463 L:      linux-media@vger.kernel.org
15464 S:      Maintained
15465 T:      git git://linuxtv.org/media_tree.git
15466 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15467 F:      drivers/media/i2c/ov8856.c
15468
15469 OMNIVISION OV8858 SENSOR DRIVER
15470 M:      Jacopo Mondi <jacopo.mondi@ideasonboard.com>
15471 M:      Nicholas Roth <nicholas@rothemail.net>
15472 L:      linux-media@vger.kernel.org
15473 S:      Maintained
15474 T:      git git://linuxtv.org/media_tree.git
15475 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
15476 F:      drivers/media/i2c/ov8858.c
15477
15478 OMNIVISION OV9282 SENSOR DRIVER
15479 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15480 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15481 L:      linux-media@vger.kernel.org
15482 S:      Maintained
15483 T:      git git://linuxtv.org/media_tree.git
15484 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15485 F:      drivers/media/i2c/ov9282.c
15486
15487 OMNIVISION OV9640 SENSOR DRIVER
15488 M:      Petr Cvek <petrcvekcz@gmail.com>
15489 L:      linux-media@vger.kernel.org
15490 S:      Maintained
15491 F:      drivers/media/i2c/ov9640.*
15492
15493 OMNIVISION OV9650 SENSOR DRIVER
15494 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15495 R:      Akinobu Mita <akinobu.mita@gmail.com>
15496 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15497 L:      linux-media@vger.kernel.org
15498 S:      Maintained
15499 T:      git git://linuxtv.org/media_tree.git
15500 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15501 F:      drivers/media/i2c/ov9650.c
15502
15503 OMNIVISION OV9734 SENSOR DRIVER
15504 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15505 R:      Bingbu Cao <bingbu.cao@intel.com>
15506 L:      linux-media@vger.kernel.org
15507 S:      Maintained
15508 T:      git git://linuxtv.org/media_tree.git
15509 F:      drivers/media/i2c/ov9734.c
15510
15511 ONBOARD USB HUB DRIVER
15512 M:      Matthias Kaehlcke <mka@chromium.org>
15513 L:      linux-usb@vger.kernel.org
15514 S:      Maintained
15515 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15516 F:      drivers/usb/misc/onboard_usb_hub.c
15517
15518 ONENAND FLASH DRIVER
15519 M:      Kyungmin Park <kyungmin.park@samsung.com>
15520 L:      linux-mtd@lists.infradead.org
15521 S:      Maintained
15522 F:      drivers/mtd/nand/onenand/
15523 F:      include/linux/mtd/onenand*.h
15524
15525 ONEXPLAYER FAN DRIVER
15526 M:      Derek John Clark <derekjohn.clark@gmail.com>
15527 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15528 L:      linux-hwmon@vger.kernel.org
15529 S:      Maintained
15530 F:      drivers/hwmon/oxp-sensors.c
15531
15532 ONION OMEGA2+ BOARD
15533 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15534 L:      linux-mips@vger.kernel.org
15535 S:      Maintained
15536 F:      arch/mips/boot/dts/ralink/omega2p.dts
15537
15538 ONSEMI ETHERNET PHY DRIVERS
15539 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15540 L:      netdev@vger.kernel.org
15541 S:      Supported
15542 W:      http://www.onsemi.com
15543 F:      drivers/net/phy/ncn*
15544
15545 OP-TEE DRIVER
15546 M:      Jens Wiklander <jens.wiklander@linaro.org>
15547 L:      op-tee@lists.trustedfirmware.org
15548 S:      Maintained
15549 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15550 F:      drivers/tee/optee/
15551
15552 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15553 M:      Sumit Garg <sumit.garg@linaro.org>
15554 L:      op-tee@lists.trustedfirmware.org
15555 S:      Maintained
15556 F:      drivers/char/hw_random/optee-rng.c
15557
15558 OP-TEE RTC DRIVER
15559 M:      Clément Léger <clement.leger@bootlin.com>
15560 L:      linux-rtc@vger.kernel.org
15561 S:      Maintained
15562 F:      drivers/rtc/rtc-optee.c
15563
15564 OPA-VNIC DRIVER
15565 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15566 L:      linux-rdma@vger.kernel.org
15567 S:      Supported
15568 F:      drivers/infiniband/ulp/opa_vnic
15569
15570 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15571 M:      Rob Herring <robh+dt@kernel.org>
15572 M:      Frank Rowand <frowand.list@gmail.com>
15573 L:      devicetree@vger.kernel.org
15574 S:      Maintained
15575 C:      irc://irc.libera.chat/devicetree
15576 W:      http://www.devicetree.org/
15577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15578 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15579 F:      drivers/of/
15580 F:      include/linux/of*.h
15581 F:      scripts/dtc/
15582 K:      of_overlay_notifier_
15583 K:      of_overlay_fdt_apply
15584 K:      of_overlay_remove
15585
15586 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15587 M:      Rob Herring <robh+dt@kernel.org>
15588 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15589 L:      devicetree@vger.kernel.org
15590 S:      Maintained
15591 C:      irc://irc.libera.chat/devicetree
15592 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15594 F:      Documentation/devicetree/
15595 F:      arch/*/boot/dts/
15596 F:      include/dt-bindings/
15597
15598 OPENCOMPUTE PTP CLOCK DRIVER
15599 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15600 M:      Vadim Fedorenko <vadfed@fb.com>
15601 L:      netdev@vger.kernel.org
15602 S:      Maintained
15603 F:      drivers/ptp/ptp_ocp.c
15604
15605 OPENCORES I2C BUS DRIVER
15606 M:      Peter Korsgaard <peter@korsgaard.com>
15607 M:      Andrew Lunn <andrew@lunn.ch>
15608 L:      linux-i2c@vger.kernel.org
15609 S:      Maintained
15610 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15611 F:      Documentation/i2c/busses/i2c-ocores.rst
15612 F:      drivers/i2c/busses/i2c-ocores.c
15613 F:      include/linux/platform_data/i2c-ocores.h
15614
15615 OPENRISC ARCHITECTURE
15616 M:      Jonas Bonn <jonas@southpole.se>
15617 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15618 M:      Stafford Horne <shorne@gmail.com>
15619 L:      linux-openrisc@vger.kernel.org
15620 S:      Maintained
15621 W:      http://openrisc.io
15622 T:      git https://github.com/openrisc/linux.git
15623 F:      Documentation/devicetree/bindings/openrisc/
15624 F:      Documentation/openrisc/
15625 F:      arch/openrisc/
15626 F:      drivers/irqchip/irq-ompic.c
15627 F:      drivers/irqchip/irq-or1k-*
15628
15629 OPENVSWITCH
15630 M:      Pravin B Shelar <pshelar@ovn.org>
15631 L:      netdev@vger.kernel.org
15632 L:      dev@openvswitch.org
15633 S:      Maintained
15634 W:      http://openvswitch.org
15635 F:      include/uapi/linux/openvswitch.h
15636 F:      net/openvswitch/
15637 F:      tools/testing/selftests/net/openvswitch/
15638
15639 OPERATING PERFORMANCE POINTS (OPP)
15640 M:      Viresh Kumar <vireshk@kernel.org>
15641 M:      Nishanth Menon <nm@ti.com>
15642 M:      Stephen Boyd <sboyd@kernel.org>
15643 L:      linux-pm@vger.kernel.org
15644 S:      Maintained
15645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15646 F:      Documentation/devicetree/bindings/opp/
15647 F:      Documentation/power/opp.rst
15648 F:      drivers/opp/
15649 F:      include/linux/pm_opp.h
15650
15651 OPL4 DRIVER
15652 M:      Clemens Ladisch <clemens@ladisch.de>
15653 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15654 S:      Maintained
15655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15656 F:      sound/drivers/opl4/
15657
15658 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15659 M:      Mark Fasheh <mark@fasheh.com>
15660 M:      Joel Becker <jlbec@evilplan.org>
15661 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15662 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15663 S:      Supported
15664 W:      http://ocfs2.wiki.kernel.org
15665 F:      Documentation/filesystems/dlmfs.rst
15666 F:      Documentation/filesystems/ocfs2.rst
15667 F:      fs/ocfs2/
15668
15669 ORANGEFS FILESYSTEM
15670 M:      Mike Marshall <hubcap@omnibond.com>
15671 R:      Martin Brandenburg <martin@omnibond.com>
15672 L:      devel@lists.orangefs.org
15673 S:      Supported
15674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15675 F:      Documentation/filesystems/orangefs.rst
15676 F:      fs/orangefs/
15677
15678 ORINOCO DRIVER
15679 L:      linux-wireless@vger.kernel.org
15680 S:      Orphan
15681 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15682 W:      http://www.nongnu.org/orinoco/
15683 F:      drivers/net/wireless/intersil/orinoco/
15684
15685 OV2659 OMNIVISION SENSOR DRIVER
15686 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15687 L:      linux-media@vger.kernel.org
15688 S:      Maintained
15689 W:      https://linuxtv.org
15690 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15691 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15692 F:      drivers/media/i2c/ov2659.c
15693 F:      include/media/i2c/ov2659.h
15694
15695 OVERLAY FILESYSTEM
15696 M:      Miklos Szeredi <miklos@szeredi.hu>
15697 L:      linux-unionfs@vger.kernel.org
15698 S:      Supported
15699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15700 F:      Documentation/filesystems/overlayfs.rst
15701 F:      fs/overlayfs/
15702
15703 P54 WIRELESS DRIVER
15704 M:      Christian Lamparter <chunkeey@googlemail.com>
15705 L:      linux-wireless@vger.kernel.org
15706 S:      Maintained
15707 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15708 F:      drivers/net/wireless/intersil/p54/
15709
15710 PACKET SOCKETS
15711 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15712 S:      Maintained
15713 F:      include/uapi/linux/if_packet.h
15714 F:      net/packet/af_packet.c
15715
15716 PACKING
15717 M:      Vladimir Oltean <olteanv@gmail.com>
15718 L:      netdev@vger.kernel.org
15719 S:      Supported
15720 F:      Documentation/core-api/packing.rst
15721 F:      include/linux/packing.h
15722 F:      lib/packing.c
15723
15724 PADATA PARALLEL EXECUTION MECHANISM
15725 M:      Steffen Klassert <steffen.klassert@secunet.com>
15726 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15727 L:      linux-crypto@vger.kernel.org
15728 L:      linux-kernel@vger.kernel.org
15729 S:      Maintained
15730 F:      Documentation/core-api/padata.rst
15731 F:      include/linux/padata.h
15732 F:      kernel/padata.c
15733
15734 PAGE CACHE
15735 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15736 L:      linux-fsdevel@vger.kernel.org
15737 S:      Supported
15738 T:      git git://git.infradead.org/users/willy/pagecache.git
15739 F:      Documentation/filesystems/locking.rst
15740 F:      Documentation/filesystems/vfs.rst
15741 F:      include/linux/pagemap.h
15742 F:      mm/filemap.c
15743 F:      mm/page-writeback.c
15744 F:      mm/readahead.c
15745 F:      mm/truncate.c
15746
15747 PAGE POOL
15748 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15749 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15750 L:      netdev@vger.kernel.org
15751 S:      Supported
15752 F:      Documentation/networking/page_pool.rst
15753 F:      include/net/page_pool.h
15754 F:      include/trace/events/page_pool.h
15755 F:      net/core/page_pool.c
15756
15757 PAGE TABLE CHECK
15758 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15759 M:      Andrew Morton <akpm@linux-foundation.org>
15760 L:      linux-mm@kvack.org
15761 S:      Maintained
15762 F:      Documentation/mm/page_table_check.rst
15763 F:      include/linux/page_table_check.h
15764 F:      mm/page_table_check.c
15765
15766 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15767 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15768 L:      platform-driver-x86@vger.kernel.org
15769 S:      Maintained
15770 F:      drivers/platform/x86/panasonic-laptop.c
15771
15772 PARALLAX PING IIO SENSOR DRIVER
15773 M:      Andreas Klinger <ak@it-klinger.de>
15774 L:      linux-iio@vger.kernel.org
15775 S:      Maintained
15776 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15777 F:      drivers/iio/proximity/ping.c
15778
15779 PARALLEL LCD/KEYPAD PANEL DRIVER
15780 M:      Willy Tarreau <willy@haproxy.com>
15781 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15782 S:      Odd Fixes
15783 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15784 F:      drivers/auxdisplay/panel.c
15785
15786 PARALLEL PORT SUBSYSTEM
15787 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15788 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15789 L:      linux-parport@lists.infradead.org (subscribers-only)
15790 S:      Maintained
15791 F:      Documentation/driver-api/parport*.rst
15792 F:      drivers/char/ppdev.c
15793 F:      drivers/parport/
15794 F:      include/linux/parport*.h
15795 F:      include/uapi/linux/ppdev.h
15796
15797 PARAVIRT_OPS INTERFACE
15798 M:      Juergen Gross <jgross@suse.com>
15799 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15800 R:      Alexey Makhalov <amakhalov@vmware.com>
15801 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15802 L:      virtualization@lists.linux-foundation.org
15803 L:      x86@kernel.org
15804 S:      Supported
15805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15806 F:      Documentation/virt/paravirt_ops.rst
15807 F:      arch/*/include/asm/paravirt*.h
15808 F:      arch/*/kernel/paravirt*
15809 F:      include/linux/hypervisor.h
15810
15811 PARISC ARCHITECTURE
15812 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15813 M:      Helge Deller <deller@gmx.de>
15814 L:      linux-parisc@vger.kernel.org
15815 S:      Maintained
15816 W:      https://parisc.wiki.kernel.org
15817 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15820 F:      Documentation/parisc/
15821 F:      arch/parisc/
15822 F:      drivers/char/agp/parisc-agp.c
15823 F:      drivers/input/misc/hp_sdc_rtc.c
15824 F:      drivers/input/serio/gscps2.c
15825 F:      drivers/input/serio/hp_sdc*
15826 F:      drivers/parisc/
15827 F:      drivers/parport/parport_gsc.*
15828 F:      drivers/tty/serial/8250/8250_parisc.c
15829 F:      drivers/video/console/sti*
15830 F:      drivers/video/fbdev/sti*
15831 F:      drivers/video/logo/logo_parisc*
15832 F:      include/linux/hp_sdc.h
15833
15834 PARMAN
15835 M:      Jiri Pirko <jiri@nvidia.com>
15836 L:      netdev@vger.kernel.org
15837 S:      Supported
15838 F:      include/linux/parman.h
15839 F:      lib/parman.c
15840 F:      lib/test_parman.c
15841
15842 PC ENGINES APU BOARD DRIVER
15843 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15844 S:      Maintained
15845 F:      drivers/platform/x86/pcengines-apuv2.c
15846
15847 PC87360 HARDWARE MONITORING DRIVER
15848 M:      Jim Cromie <jim.cromie@gmail.com>
15849 L:      linux-hwmon@vger.kernel.org
15850 S:      Maintained
15851 F:      Documentation/hwmon/pc87360.rst
15852 F:      drivers/hwmon/pc87360.c
15853
15854 PC8736x GPIO DRIVER
15855 M:      Jim Cromie <jim.cromie@gmail.com>
15856 S:      Maintained
15857 F:      drivers/char/pc8736x_gpio.c
15858
15859 PC87427 HARDWARE MONITORING DRIVER
15860 M:      Jean Delvare <jdelvare@suse.com>
15861 L:      linux-hwmon@vger.kernel.org
15862 S:      Maintained
15863 F:      Documentation/hwmon/pc87427.rst
15864 F:      drivers/hwmon/pc87427.c
15865
15866 PCA9532 LED DRIVER
15867 M:      Riku Voipio <riku.voipio@iki.fi>
15868 S:      Maintained
15869 F:      drivers/leds/leds-pca9532.c
15870 F:      include/linux/leds-pca9532.h
15871
15872 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15873 M:      Guenter Roeck <linux@roeck-us.net>
15874 L:      linux-i2c@vger.kernel.org
15875 S:      Maintained
15876 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15877
15878 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15879 M:      Khalid Aziz <khalid@gonehiking.org>
15880 S:      Maintained
15881 F:      drivers/firmware/pcdp.*
15882
15883 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15884 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15885 M:      Pali Rohár <pali@kernel.org>
15886 L:      linux-pci@vger.kernel.org
15887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15888 S:      Maintained
15889 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15890 F:      drivers/pci/controller/pci-aardvark.c
15891
15892 PCI DRIVER FOR ALTERA PCIE IP
15893 M:      Joyce Ooi <joyce.ooi@intel.com>
15894 L:      linux-pci@vger.kernel.org
15895 S:      Supported
15896 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15897 F:      drivers/pci/controller/pcie-altera.c
15898
15899 PCI DRIVER FOR APPLIEDMICRO XGENE
15900 M:      Toan Le <toan@os.amperecomputing.com>
15901 L:      linux-pci@vger.kernel.org
15902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15903 S:      Maintained
15904 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15905 F:      drivers/pci/controller/pci-xgene.c
15906
15907 PCI DRIVER FOR ARM VERSATILE PLATFORM
15908 M:      Rob Herring <robh@kernel.org>
15909 L:      linux-pci@vger.kernel.org
15910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15911 S:      Maintained
15912 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15913 F:      drivers/pci/controller/pci-versatile.c
15914
15915 PCI DRIVER FOR ARMADA 8K
15916 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15917 L:      linux-pci@vger.kernel.org
15918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15919 S:      Maintained
15920 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15921 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15922
15923 PCI DRIVER FOR CADENCE PCIE IP
15924 M:      Tom Joseph <tjoseph@cadence.com>
15925 L:      linux-pci@vger.kernel.org
15926 S:      Maintained
15927 F:      Documentation/devicetree/bindings/pci/cdns,*
15928 F:      drivers/pci/controller/cadence/
15929
15930 PCI DRIVER FOR FREESCALE LAYERSCAPE
15931 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15932 M:      Mingkai Hu <mingkai.hu@nxp.com>
15933 M:      Roy Zang <roy.zang@nxp.com>
15934 L:      linuxppc-dev@lists.ozlabs.org
15935 L:      linux-pci@vger.kernel.org
15936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15937 S:      Maintained
15938 F:      drivers/pci/controller/dwc/*layerscape*
15939
15940 PCI DRIVER FOR GENERIC OF HOSTS
15941 M:      Will Deacon <will@kernel.org>
15942 L:      linux-pci@vger.kernel.org
15943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15944 S:      Maintained
15945 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15946 F:      drivers/pci/controller/pci-host-common.c
15947 F:      drivers/pci/controller/pci-host-generic.c
15948
15949 PCI DRIVER FOR IMX6
15950 M:      Richard Zhu <hongxing.zhu@nxp.com>
15951 M:      Lucas Stach <l.stach@pengutronix.de>
15952 L:      linux-pci@vger.kernel.org
15953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15954 S:      Maintained
15955 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15956 F:      drivers/pci/controller/dwc/*imx6*
15957
15958 PCI DRIVER FOR FU740
15959 M:      Paul Walmsley <paul.walmsley@sifive.com>
15960 M:      Greentime Hu <greentime.hu@sifive.com>
15961 L:      linux-pci@vger.kernel.org
15962 S:      Maintained
15963 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15964 F:      drivers/pci/controller/dwc/pcie-fu740.c
15965
15966 PCI DRIVER FOR INTEL IXP4XX
15967 M:      Linus Walleij <linus.walleij@linaro.org>
15968 S:      Maintained
15969 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15970 F:      drivers/pci/controller/pci-ixp4xx.c
15971
15972 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15973 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15974 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15975 L:      linux-pci@vger.kernel.org
15976 S:      Supported
15977 F:      drivers/pci/controller/vmd.c
15978
15979 PCI DRIVER FOR MICROSEMI SWITCHTEC
15980 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15981 M:      Logan Gunthorpe <logang@deltatee.com>
15982 L:      linux-pci@vger.kernel.org
15983 S:      Maintained
15984 F:      Documentation/ABI/testing/sysfs-class-switchtec
15985 F:      Documentation/driver-api/switchtec.rst
15986 F:      drivers/ntb/hw/mscc/
15987 F:      drivers/pci/switch/switchtec*
15988 F:      include/linux/switchtec.h
15989 F:      include/uapi/linux/switchtec_ioctl.h
15990
15991 PCI DRIVER FOR MOBIVEIL PCIE IP
15992 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15993 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15994 L:      linux-pci@vger.kernel.org
15995 S:      Supported
15996 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15997 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15998
15999 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16000 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16001 M:      Pali Rohár <pali@kernel.org>
16002 L:      linux-pci@vger.kernel.org
16003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16004 S:      Maintained
16005 F:      drivers/pci/controller/*mvebu*
16006
16007 PCI DRIVER FOR NVIDIA TEGRA
16008 M:      Thierry Reding <thierry.reding@gmail.com>
16009 L:      linux-tegra@vger.kernel.org
16010 L:      linux-pci@vger.kernel.org
16011 S:      Supported
16012 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16013 F:      drivers/pci/controller/pci-tegra.c
16014
16015 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16016 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16017 L:      linux-pci@vger.kernel.org
16018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16019 S:      Maintained
16020 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16021 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16022
16023 PCI DRIVER FOR RENESAS R-CAR
16024 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16025 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16026 L:      linux-pci@vger.kernel.org
16027 L:      linux-renesas-soc@vger.kernel.org
16028 S:      Maintained
16029 F:      Documentation/devicetree/bindings/pci/*rcar*
16030 F:      drivers/pci/controller/*rcar*
16031
16032 PCI DRIVER FOR SAMSUNG EXYNOS
16033 M:      Jingoo Han <jingoohan1@gmail.com>
16034 L:      linux-pci@vger.kernel.org
16035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16036 L:      linux-samsung-soc@vger.kernel.org
16037 S:      Maintained
16038 F:      drivers/pci/controller/dwc/pci-exynos.c
16039
16040 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16041 M:      Jingoo Han <jingoohan1@gmail.com>
16042 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16043 L:      linux-pci@vger.kernel.org
16044 S:      Maintained
16045 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16046 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16047 F:      drivers/pci/controller/dwc/*designware*
16048
16049 PCI DRIVER FOR TI DRA7XX/J721E
16050 M:      Vignesh Raghavendra <vigneshr@ti.com>
16051 L:      linux-omap@vger.kernel.org
16052 L:      linux-pci@vger.kernel.org
16053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16054 S:      Supported
16055 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16056 F:      drivers/pci/controller/cadence/pci-j721e.c
16057 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16058
16059 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16060 M:      Linus Walleij <linus.walleij@linaro.org>
16061 L:      linux-pci@vger.kernel.org
16062 S:      Maintained
16063 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16064 F:      drivers/pci/controller/pci-v3-semi.c
16065
16066 PCI ENDPOINT SUBSYSTEM
16067 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16068 M:      Krzysztof Wilczyński <kw@linux.com>
16069 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16070 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16071 L:      linux-pci@vger.kernel.org
16072 S:      Supported
16073 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16074 B:      https://bugzilla.kernel.org
16075 C:      irc://irc.oftc.net/linux-pci
16076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16077 F:      Documentation/PCI/endpoint/*
16078 F:      Documentation/misc-devices/pci-endpoint-test.rst
16079 F:      drivers/misc/pci_endpoint_test.c
16080 F:      drivers/pci/endpoint/
16081 F:      tools/pci/
16082
16083 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16084 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16085 R:      Oliver O'Halloran <oohall@gmail.com>
16086 L:      linuxppc-dev@lists.ozlabs.org
16087 S:      Supported
16088 F:      Documentation/PCI/pci-error-recovery.rst
16089 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16090 F:      arch/powerpc/include/*/eeh*.h
16091 F:      arch/powerpc/kernel/eeh*.c
16092 F:      arch/powerpc/platforms/*/eeh*.c
16093 F:      drivers/pci/pcie/aer.c
16094 F:      drivers/pci/pcie/dpc.c
16095 F:      drivers/pci/pcie/err.c
16096
16097 PCI ERROR RECOVERY
16098 M:      Linas Vepstas <linasvepstas@gmail.com>
16099 L:      linux-pci@vger.kernel.org
16100 S:      Supported
16101 F:      Documentation/PCI/pci-error-recovery.rst
16102
16103 PCI PEER-TO-PEER DMA (P2PDMA)
16104 M:      Bjorn Helgaas <bhelgaas@google.com>
16105 M:      Logan Gunthorpe <logang@deltatee.com>
16106 L:      linux-pci@vger.kernel.org
16107 S:      Supported
16108 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16109 B:      https://bugzilla.kernel.org
16110 C:      irc://irc.oftc.net/linux-pci
16111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16112 F:      Documentation/driver-api/pci/p2pdma.rst
16113 F:      drivers/pci/p2pdma.c
16114 F:      include/linux/pci-p2pdma.h
16115
16116 PCI MSI DRIVER FOR ALTERA MSI IP
16117 M:      Joyce Ooi <joyce.ooi@intel.com>
16118 L:      linux-pci@vger.kernel.org
16119 S:      Supported
16120 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16121 F:      drivers/pci/controller/pcie-altera-msi.c
16122
16123 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16124 M:      Toan Le <toan@os.amperecomputing.com>
16125 L:      linux-pci@vger.kernel.org
16126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16127 S:      Maintained
16128 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16129 F:      drivers/pci/controller/pci-xgene-msi.c
16130
16131 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16132 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16133 M:      Krzysztof Wilczyński <kw@linux.com>
16134 R:      Rob Herring <robh@kernel.org>
16135 L:      linux-pci@vger.kernel.org
16136 S:      Supported
16137 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16138 B:      https://bugzilla.kernel.org
16139 C:      irc://irc.oftc.net/linux-pci
16140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16141 F:      Documentation/devicetree/bindings/pci/
16142 F:      drivers/pci/controller/
16143 F:      drivers/pci/pci-bridge-emul.c
16144 F:      drivers/pci/pci-bridge-emul.h
16145
16146 PCI SUBSYSTEM
16147 M:      Bjorn Helgaas <bhelgaas@google.com>
16148 L:      linux-pci@vger.kernel.org
16149 S:      Supported
16150 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16151 B:      https://bugzilla.kernel.org
16152 C:      irc://irc.oftc.net/linux-pci
16153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16154 F:      Documentation/PCI/
16155 F:      Documentation/devicetree/bindings/pci/
16156 F:      arch/x86/kernel/early-quirks.c
16157 F:      arch/x86/kernel/quirks.c
16158 F:      arch/x86/pci/
16159 F:      drivers/acpi/pci*
16160 F:      drivers/pci/
16161 F:      include/asm-generic/pci*
16162 F:      include/linux/of_pci.h
16163 F:      include/linux/pci*
16164 F:      include/uapi/linux/pci*
16165 F:      lib/pci*
16166
16167 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16168 M:      Jonathan Chocron <jonnyc@amazon.com>
16169 L:      linux-pci@vger.kernel.org
16170 S:      Maintained
16171 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16172 F:      drivers/pci/controller/dwc/pcie-al.c
16173
16174 PCIE DRIVER FOR AMLOGIC MESON
16175 M:      Yue Wang <yue.wang@Amlogic.com>
16176 L:      linux-pci@vger.kernel.org
16177 L:      linux-amlogic@lists.infradead.org
16178 S:      Maintained
16179 F:      drivers/pci/controller/dwc/pci-meson.c
16180
16181 PCIE DRIVER FOR AXIS ARTPEC
16182 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16183 L:      linux-arm-kernel@axis.com
16184 L:      linux-pci@vger.kernel.org
16185 S:      Maintained
16186 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16187 F:      drivers/pci/controller/dwc/*artpec*
16188
16189 PCIE DRIVER FOR CAVIUM THUNDERX
16190 M:      Robert Richter <rric@kernel.org>
16191 L:      linux-pci@vger.kernel.org
16192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16193 S:      Odd Fixes
16194 F:      drivers/pci/controller/pci-thunder-*
16195
16196 PCIE DRIVER FOR HISILICON
16197 M:      Zhou Wang <wangzhou1@hisilicon.com>
16198 L:      linux-pci@vger.kernel.org
16199 S:      Maintained
16200 F:      drivers/pci/controller/dwc/pcie-hisi.c
16201
16202 PCIE DRIVER FOR HISILICON KIRIN
16203 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16204 M:      Binghui Wang <wangbinghui@hisilicon.com>
16205 L:      linux-pci@vger.kernel.org
16206 S:      Maintained
16207 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16208 F:      drivers/pci/controller/dwc/pcie-kirin.c
16209
16210 PCIE DRIVER FOR HISILICON STB
16211 M:      Shawn Guo <shawn.guo@linaro.org>
16212 L:      linux-pci@vger.kernel.org
16213 S:      Maintained
16214 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16215 F:      drivers/pci/controller/dwc/pcie-histb.c
16216
16217 PCIE DRIVER FOR INTEL KEEM BAY
16218 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16219 L:      linux-pci@vger.kernel.org
16220 S:      Supported
16221 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16222 F:      drivers/pci/controller/dwc/pcie-keembay.c
16223
16224 PCIE DRIVER FOR INTEL LGM GW SOC
16225 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16226 L:      linux-pci@vger.kernel.org
16227 S:      Maintained
16228 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16229 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16230
16231 PCIE DRIVER FOR MEDIATEK
16232 M:      Ryder Lee <ryder.lee@mediatek.com>
16233 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16234 L:      linux-pci@vger.kernel.org
16235 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16236 S:      Supported
16237 F:      Documentation/devicetree/bindings/pci/mediatek*
16238 F:      drivers/pci/controller/*mediatek*
16239
16240 PCIE DRIVER FOR MICROCHIP
16241 M:      Daire McNamara <daire.mcnamara@microchip.com>
16242 L:      linux-pci@vger.kernel.org
16243 S:      Supported
16244 F:      Documentation/devicetree/bindings/pci/microchip*
16245 F:      drivers/pci/controller/*microchip*
16246
16247 PCIE DRIVER FOR QUALCOMM MSM
16248 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16249 L:      linux-pci@vger.kernel.org
16250 L:      linux-arm-msm@vger.kernel.org
16251 S:      Maintained
16252 F:      drivers/pci/controller/dwc/pcie-qcom.c
16253
16254 PCIE ENDPOINT DRIVER FOR QUALCOMM
16255 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16256 L:      linux-pci@vger.kernel.org
16257 L:      linux-arm-msm@vger.kernel.org
16258 S:      Maintained
16259 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16260 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16261
16262 PCIE DRIVER FOR ROCKCHIP
16263 M:      Shawn Lin <shawn.lin@rock-chips.com>
16264 L:      linux-pci@vger.kernel.org
16265 L:      linux-rockchip@lists.infradead.org
16266 S:      Maintained
16267 F:      Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
16268 F:      drivers/pci/controller/pcie-rockchip*
16269
16270 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16271 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16272 L:      linux-pci@vger.kernel.org
16273 S:      Maintained
16274 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16275 F:      drivers/pci/controller/dwc/pcie-uniphier*
16276
16277 PCIE DRIVER FOR ST SPEAR13XX
16278 M:      Pratyush Anand <pratyush.anand@gmail.com>
16279 L:      linux-pci@vger.kernel.org
16280 S:      Maintained
16281 F:      drivers/pci/controller/dwc/*spear*
16282
16283 PCI DRIVER FOR XILINX VERSAL CPM
16284 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16285 M:      Michal Simek <michal.simek@amd.com>
16286 L:      linux-pci@vger.kernel.org
16287 S:      Maintained
16288 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16289 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16290
16291 PCMCIA SUBSYSTEM
16292 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16293 S:      Odd Fixes
16294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16295 F:      Documentation/pcmcia/
16296 F:      drivers/pcmcia/
16297 F:      include/pcmcia/
16298 F:      tools/pcmcia/
16299
16300 PCNET32 NETWORK DRIVER
16301 M:      Don Fry <pcnet32@frontier.com>
16302 L:      netdev@vger.kernel.org
16303 S:      Maintained
16304 F:      drivers/net/ethernet/amd/pcnet32.c
16305
16306 PCRYPT PARALLEL CRYPTO ENGINE
16307 M:      Steffen Klassert <steffen.klassert@secunet.com>
16308 L:      linux-crypto@vger.kernel.org
16309 S:      Maintained
16310 F:      crypto/pcrypt.c
16311 F:      include/crypto/pcrypt.h
16312
16313 PEAQ WMI HOTKEYS DRIVER
16314 M:      Hans de Goede <hdegoede@redhat.com>
16315 L:      platform-driver-x86@vger.kernel.org
16316 S:      Maintained
16317 F:      drivers/platform/x86/peaq-wmi.c
16318
16319 PECI HARDWARE MONITORING DRIVERS
16320 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16321 L:      linux-hwmon@vger.kernel.org
16322 S:      Supported
16323 F:      Documentation/hwmon/peci-cputemp.rst
16324 F:      Documentation/hwmon/peci-dimmtemp.rst
16325 F:      drivers/hwmon/peci/
16326
16327 PECI SUBSYSTEM
16328 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16329 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16330 S:      Supported
16331 F:      Documentation/devicetree/bindings/peci/
16332 F:      Documentation/peci/
16333 F:      drivers/peci/
16334 F:      include/linux/peci-cpu.h
16335 F:      include/linux/peci.h
16336
16337 PENSANDO ETHERNET DRIVERS
16338 M:      Shannon Nelson <shannon.nelson@amd.com>
16339 M:      Brett Creeley <brett.creeley@amd.com>
16340 M:      drivers@pensando.io
16341 L:      netdev@vger.kernel.org
16342 S:      Supported
16343 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16344 F:      drivers/net/ethernet/pensando/
16345
16346 PER-CPU MEMORY ALLOCATOR
16347 M:      Dennis Zhou <dennis@kernel.org>
16348 M:      Tejun Heo <tj@kernel.org>
16349 M:      Christoph Lameter <cl@linux.com>
16350 L:      linux-mm@kvack.org
16351 S:      Maintained
16352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16353 F:      arch/*/include/asm/percpu.h
16354 F:      include/linux/percpu*.h
16355 F:      lib/percpu*.c
16356 F:      mm/percpu*.c
16357
16358 PER-TASK DELAY ACCOUNTING
16359 M:      Balbir Singh <bsingharora@gmail.com>
16360 S:      Maintained
16361 F:      include/linux/delayacct.h
16362 F:      kernel/delayacct.c
16363
16364 PERFORMANCE EVENTS SUBSYSTEM
16365 M:      Peter Zijlstra <peterz@infradead.org>
16366 M:      Ingo Molnar <mingo@redhat.com>
16367 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16368 R:      Mark Rutland <mark.rutland@arm.com>
16369 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16370 R:      Jiri Olsa <jolsa@kernel.org>
16371 R:      Namhyung Kim <namhyung@kernel.org>
16372 R:      Ian Rogers <irogers@google.com>
16373 R:      Adrian Hunter <adrian.hunter@intel.com>
16374 L:      linux-perf-users@vger.kernel.org
16375 L:      linux-kernel@vger.kernel.org
16376 S:      Supported
16377 W:      https://perf.wiki.kernel.org/
16378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16379 F:      arch/*/events/*
16380 F:      arch/*/events/*/*
16381 F:      arch/*/include/asm/perf_event.h
16382 F:      arch/*/kernel/*/*/perf_event*.c
16383 F:      arch/*/kernel/*/perf_event*.c
16384 F:      arch/*/kernel/perf_callchain.c
16385 F:      arch/*/kernel/perf_event*.c
16386 F:      include/linux/perf_event.h
16387 F:      include/uapi/linux/perf_event.h
16388 F:      kernel/events/*
16389 F:      tools/lib/perf/
16390 F:      tools/perf/
16391
16392 PERFORMANCE EVENTS TOOLING ARM64
16393 R:      John Garry <john.g.garry@oracle.com>
16394 R:      Will Deacon <will@kernel.org>
16395 R:      James Clark <james.clark@arm.com>
16396 R:      Mike Leach <mike.leach@linaro.org>
16397 R:      Leo Yan <leo.yan@linaro.org>
16398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16399 S:      Supported
16400 F:      tools/build/feature/test-libopencsd.c
16401 F:      tools/perf/arch/arm*/
16402 F:      tools/perf/pmu-events/arch/arm64/
16403 F:      tools/perf/util/arm-spe*
16404 F:      tools/perf/util/cs-etm*
16405
16406 PERSONALITY HANDLING
16407 M:      Christoph Hellwig <hch@infradead.org>
16408 L:      linux-abi-devel@lists.sourceforge.net
16409 S:      Maintained
16410 F:      include/linux/personality.h
16411 F:      include/uapi/linux/personality.h
16412
16413 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16414 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16415 L:      linux-input@vger.kernel.org
16416 S:      Maintained
16417 F:      Documentation/input/devices/pxrc.rst
16418 F:      drivers/input/joystick/pxrc.c
16419
16420 PHONET PROTOCOL
16421 M:      Remi Denis-Courmont <courmisch@gmail.com>
16422 S:      Supported
16423 F:      Documentation/networking/phonet.rst
16424 F:      include/linux/phonet.h
16425 F:      include/net/phonet/
16426 F:      include/uapi/linux/phonet.h
16427 F:      net/phonet/
16428
16429 PHRAM MTD DRIVER
16430 M:      Joern Engel <joern@lazybastard.org>
16431 L:      linux-mtd@lists.infradead.org
16432 S:      Maintained
16433 F:      drivers/mtd/devices/phram.c
16434
16435 PICOLCD HID DRIVER
16436 M:      Bruno Prémont <bonbons@linux-vserver.org>
16437 L:      linux-input@vger.kernel.org
16438 S:      Maintained
16439 F:      drivers/hid/hid-picolcd*
16440
16441 PIDFD API
16442 M:      Christian Brauner <christian@brauner.io>
16443 L:      linux-kernel@vger.kernel.org
16444 S:      Maintained
16445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16446 F:      samples/pidfd/
16447 F:      tools/testing/selftests/clone3/
16448 F:      tools/testing/selftests/pid_namespace/
16449 F:      tools/testing/selftests/pidfd/
16450 K:      (?i)pidfd
16451 K:      (?i)clone3
16452 K:      \b(clone_args|kernel_clone_args)\b
16453
16454 PIN CONTROL SUBSYSTEM
16455 M:      Linus Walleij <linus.walleij@linaro.org>
16456 L:      linux-gpio@vger.kernel.org
16457 S:      Maintained
16458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16459 F:      Documentation/devicetree/bindings/pinctrl/
16460 F:      Documentation/driver-api/pin-control.rst
16461 F:      drivers/pinctrl/
16462 F:      include/dt-bindings/pinctrl/
16463 F:      include/linux/pinctrl/
16464
16465 PIN CONTROLLER - AMD
16466 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16467 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16468 S:      Maintained
16469 F:      drivers/pinctrl/pinctrl-amd.c
16470
16471 PIN CONTROLLER - FREESCALE
16472 M:      Dong Aisheng <aisheng.dong@nxp.com>
16473 M:      Fabio Estevam <festevam@gmail.com>
16474 M:      Shawn Guo <shawnguo@kernel.org>
16475 M:      Jacky Bai <ping.bai@nxp.com>
16476 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16477 L:      linux-gpio@vger.kernel.org
16478 S:      Maintained
16479 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16480 F:      drivers/pinctrl/freescale/
16481
16482 PIN CONTROLLER - INTEL
16483 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16484 M:      Andy Shevchenko <andy@kernel.org>
16485 S:      Supported
16486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16487 F:      drivers/pinctrl/intel/
16488
16489 PIN CONTROLLER - KEEMBAY
16490 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16491 S:      Supported
16492 F:      drivers/pinctrl/pinctrl-keembay*
16493
16494 PIN CONTROLLER - MEDIATEK
16495 M:      Sean Wang <sean.wang@kernel.org>
16496 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16497 S:      Maintained
16498 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16499 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16500 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16501 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16502 F:      drivers/pinctrl/mediatek/
16503
16504 PIN CONTROLLER - MICROCHIP AT91
16505 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16507 L:      linux-gpio@vger.kernel.org
16508 S:      Supported
16509 F:      drivers/gpio/gpio-sama5d2-piobu.c
16510 F:      drivers/pinctrl/pinctrl-at91*
16511
16512 PIN CONTROLLER - QUALCOMM
16513 M:      Bjorn Andersson <andersson@kernel.org>
16514 L:      linux-arm-msm@vger.kernel.org
16515 S:      Maintained
16516 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16517 F:      drivers/pinctrl/qcom/
16518
16519 PIN CONTROLLER - RENESAS
16520 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16521 L:      linux-renesas-soc@vger.kernel.org
16522 S:      Supported
16523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16524 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16525 F:      drivers/pinctrl/renesas/
16526
16527 PIN CONTROLLER - SAMSUNG
16528 M:      Tomasz Figa <tomasz.figa@gmail.com>
16529 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16530 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16531 R:      Alim Akhtar <alim.akhtar@samsung.com>
16532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16533 L:      linux-samsung-soc@vger.kernel.org
16534 S:      Maintained
16535 C:      irc://irc.libera.chat/linux-exynos
16536 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16537 B:      mailto:linux-samsung-soc@vger.kernel.org
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16539 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16540 F:      drivers/pinctrl/samsung/
16541 F:      include/dt-bindings/pinctrl/samsung.h
16542
16543 PIN CONTROLLER - SINGLE
16544 M:      Tony Lindgren <tony@atomide.com>
16545 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16547 L:      linux-omap@vger.kernel.org
16548 S:      Maintained
16549 F:      drivers/pinctrl/pinctrl-single.c
16550
16551 PIN CONTROLLER - THUNDERBAY
16552 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16553 S:      Supported
16554 F:      drivers/pinctrl/pinctrl-thunderbay.c
16555
16556 PIN CONTROLLER - SUNPLUS / TIBBO
16557 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16558 M:      Wells Lu <wellslutw@gmail.com>
16559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16560 S:      Maintained
16561 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16562 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16563 F:      drivers/pinctrl/sunplus/
16564 F:      include/dt-bindings/pinctrl/sppctl*.h
16565
16566 PINE64 PINEPHONE KEYBOARD DRIVER
16567 M:      Samuel Holland <samuel@sholland.org>
16568 S:      Supported
16569 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16570 F:      drivers/input/keyboard/pinephone-keyboard.c
16571
16572 PKTCDVD DRIVER
16573 M:      linux-block@vger.kernel.org
16574 S:      Orphan
16575 F:      drivers/block/pktcdvd.c
16576 F:      include/linux/pktcdvd.h
16577 F:      include/uapi/linux/pktcdvd.h
16578
16579 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16580 M:      Tomasz Duszynski <tduszyns@gmail.com>
16581 S:      Maintained
16582 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16583 F:      drivers/iio/chemical/pms7003.c
16584
16585 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16586 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16587 L:      netdev@vger.kernel.org
16588 S:      Maintained
16589 F:      drivers/net/phy/mdio-open-alliance.h
16590 F:      net/ethtool/plca.c
16591
16592 PLDMFW LIBRARY
16593 M:      Jacob Keller <jacob.e.keller@intel.com>
16594 S:      Maintained
16595 F:      Documentation/driver-api/pldmfw/
16596 F:      include/linux/pldmfw.h
16597 F:      lib/pldmfw/
16598
16599 PLX DMA DRIVER
16600 M:      Logan Gunthorpe <logang@deltatee.com>
16601 S:      Maintained
16602 F:      drivers/dma/plx_dma.c
16603
16604 PM6764TR DRIVER
16605 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16606 L:      linux-hwmon@vger.kernel.org
16607 S:      Maintained
16608 F:      Documentation/hwmon/pm6764tr.rst
16609 F:      drivers/hwmon/pmbus/pm6764tr.c
16610
16611 PM-GRAPH UTILITY
16612 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16613 L:      linux-pm@vger.kernel.org
16614 S:      Supported
16615 W:      https://01.org/pm-graph
16616 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16617 T:      git git://github.com/intel/pm-graph
16618 F:      tools/power/pm-graph
16619
16620 PMBUS HARDWARE MONITORING DRIVERS
16621 M:      Guenter Roeck <linux@roeck-us.net>
16622 L:      linux-hwmon@vger.kernel.org
16623 S:      Maintained
16624 W:      http://hwmon.wiki.kernel.org/
16625 W:      http://www.roeck-us.net/linux/drivers/
16626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16627 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16628 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16629 F:      Documentation/hwmon/adm1275.rst
16630 F:      Documentation/hwmon/ibm-cffps.rst
16631 F:      Documentation/hwmon/ir35221.rst
16632 F:      Documentation/hwmon/lm25066.rst
16633 F:      Documentation/hwmon/ltc2978.rst
16634 F:      Documentation/hwmon/ltc3815.rst
16635 F:      Documentation/hwmon/max16064.rst
16636 F:      Documentation/hwmon/max20751.rst
16637 F:      Documentation/hwmon/max31785.rst
16638 F:      Documentation/hwmon/max34440.rst
16639 F:      Documentation/hwmon/max8688.rst
16640 F:      Documentation/hwmon/pmbus-core.rst
16641 F:      Documentation/hwmon/pmbus.rst
16642 F:      Documentation/hwmon/tps40422.rst
16643 F:      Documentation/hwmon/ucd9000.rst
16644 F:      Documentation/hwmon/ucd9200.rst
16645 F:      Documentation/hwmon/zl6100.rst
16646 F:      drivers/hwmon/pmbus/
16647 F:      include/linux/pmbus.h
16648
16649 PMC SIERRA MaxRAID DRIVER
16650 L:      linux-scsi@vger.kernel.org
16651 S:      Orphan
16652 W:      http://www.pmc-sierra.com/
16653 F:      drivers/scsi/pmcraid.*
16654
16655 PMC SIERRA PM8001 DRIVER
16656 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16657 L:      linux-scsi@vger.kernel.org
16658 S:      Supported
16659 F:      drivers/scsi/pm8001/
16660
16661 PNI RM3100 IIO DRIVER
16662 M:      Song Qiang <songqiang1304521@gmail.com>
16663 L:      linux-iio@vger.kernel.org
16664 S:      Maintained
16665 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16666 F:      drivers/iio/magnetometer/rm3100*
16667
16668 PNP SUPPORT
16669 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16670 L:      linux-acpi@vger.kernel.org
16671 S:      Maintained
16672 F:      drivers/pnp/
16673 F:      include/linux/pnp.h
16674
16675 POSIX CLOCKS and TIMERS
16676 M:      Thomas Gleixner <tglx@linutronix.de>
16677 L:      linux-kernel@vger.kernel.org
16678 S:      Maintained
16679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16680 F:      fs/timerfd.c
16681 F:      include/linux/time_namespace.h
16682 F:      include/linux/timer*
16683 F:      kernel/time/*timer*
16684 F:      kernel/time/namespace.c
16685
16686 POWER MANAGEMENT CORE
16687 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16688 L:      linux-pm@vger.kernel.org
16689 S:      Supported
16690 B:      https://bugzilla.kernel.org
16691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16692 F:      drivers/base/power/
16693 F:      drivers/powercap/
16694 F:      include/linux/intel_rapl.h
16695 F:      include/linux/pm.h
16696 F:      include/linux/pm_*
16697 F:      include/linux/powercap.h
16698 F:      kernel/configs/nopm.config
16699
16700 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16701 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16702 L:      linux-pm@vger.kernel.org
16703 S:      Supported
16704 B:      https://bugzilla.kernel.org
16705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16706 F:      drivers/powercap/dtpm*
16707 F:      include/linux/dtpm.h
16708
16709 POWER STATE COORDINATION INTERFACE (PSCI)
16710 M:      Mark Rutland <mark.rutland@arm.com>
16711 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16713 S:      Maintained
16714 F:      drivers/firmware/psci/
16715 F:      include/linux/psci.h
16716 F:      include/uapi/linux/psci.h
16717
16718 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16719 M:      Sebastian Reichel <sre@kernel.org>
16720 L:      linux-pm@vger.kernel.org
16721 S:      Maintained
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16723 F:      Documentation/ABI/testing/sysfs-class-power
16724 F:      Documentation/devicetree/bindings/power/supply/
16725 F:      drivers/power/supply/
16726 F:      include/linux/power/
16727 F:      include/linux/power_supply.h
16728
16729 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16730 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16731 L:      linuxppc-dev@lists.ozlabs.org
16732 S:      Maintained
16733 F:      drivers/char/powernv-op-panel.c
16734
16735 PPP OVER ATM (RFC 2364)
16736 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16737 S:      Maintained
16738 F:      include/uapi/linux/atmppp.h
16739 F:      net/atm/pppoatm.c
16740
16741 PPP OVER ETHERNET
16742 M:      Michal Ostrowski <mostrows@earthlink.net>
16743 S:      Maintained
16744 F:      drivers/net/ppp/pppoe.c
16745 F:      drivers/net/ppp/pppox.c
16746
16747 PPP OVER L2TP
16748 M:      James Chapman <jchapman@katalix.com>
16749 S:      Maintained
16750 F:      include/linux/if_pppol2tp.h
16751 F:      include/uapi/linux/if_pppol2tp.h
16752 F:      net/l2tp/l2tp_ppp.c
16753
16754 PPP PROTOCOL DRIVERS AND COMPRESSORS
16755 M:      Paul Mackerras <paulus@samba.org>
16756 L:      linux-ppp@vger.kernel.org
16757 S:      Maintained
16758 F:      drivers/net/ppp/ppp_*
16759
16760 PPS SUPPORT
16761 M:      Rodolfo Giometti <giometti@enneenne.com>
16762 L:      linuxpps@ml.enneenne.com (subscribers-only)
16763 S:      Maintained
16764 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16765 F:      Documentation/ABI/testing/sysfs-pps
16766 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16767 F:      Documentation/driver-api/pps.rst
16768 F:      drivers/pps/
16769 F:      include/linux/pps*.h
16770 F:      include/uapi/linux/pps.h
16771
16772 PPTP DRIVER
16773 M:      Dmitry Kozlov <xeb@mail.ru>
16774 L:      netdev@vger.kernel.org
16775 S:      Maintained
16776 W:      http://sourceforge.net/projects/accel-pptp
16777 F:      drivers/net/ppp/pptp.c
16778
16779 PRESSURE STALL INFORMATION (PSI)
16780 M:      Johannes Weiner <hannes@cmpxchg.org>
16781 M:      Suren Baghdasaryan <surenb@google.com>
16782 S:      Maintained
16783 F:      include/linux/psi*
16784 F:      kernel/sched/psi.c
16785
16786 PRINTK
16787 M:      Petr Mladek <pmladek@suse.com>
16788 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16789 R:      Steven Rostedt <rostedt@goodmis.org>
16790 R:      John Ogness <john.ogness@linutronix.de>
16791 S:      Maintained
16792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16793 F:      include/linux/printk.h
16794 F:      kernel/printk/
16795
16796 PRINTK INDEXING
16797 R:      Chris Down <chris@chrisdown.name>
16798 S:      Maintained
16799 F:      Documentation/core-api/printk-index.rst
16800 F:      kernel/printk/index.c
16801 K:      printk_index
16802
16803 PROC FILESYSTEM
16804 L:      linux-kernel@vger.kernel.org
16805 L:      linux-fsdevel@vger.kernel.org
16806 S:      Maintained
16807 F:      Documentation/filesystems/proc.rst
16808 F:      fs/proc/
16809 F:      include/linux/proc_fs.h
16810 F:      tools/testing/selftests/proc/
16811
16812 PROC SYSCTL
16813 M:      Luis Chamberlain <mcgrof@kernel.org>
16814 M:      Kees Cook <keescook@chromium.org>
16815 M:      Iurii Zaikin <yzaikin@google.com>
16816 L:      linux-kernel@vger.kernel.org
16817 L:      linux-fsdevel@vger.kernel.org
16818 S:      Maintained
16819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16820 F:      fs/proc/proc_sysctl.c
16821 F:      include/linux/sysctl.h
16822 F:      kernel/sysctl-test.c
16823 F:      kernel/sysctl.c
16824 F:      tools/testing/selftests/sysctl/
16825
16826 PS3 NETWORK SUPPORT
16827 M:      Geoff Levand <geoff@infradead.org>
16828 L:      netdev@vger.kernel.org
16829 L:      linuxppc-dev@lists.ozlabs.org
16830 S:      Maintained
16831 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16832
16833 PS3 PLATFORM SUPPORT
16834 M:      Geoff Levand <geoff@infradead.org>
16835 L:      linuxppc-dev@lists.ozlabs.org
16836 S:      Maintained
16837 F:      arch/powerpc/boot/ps3*
16838 F:      arch/powerpc/include/asm/lv1call.h
16839 F:      arch/powerpc/include/asm/ps3*.h
16840 F:      arch/powerpc/platforms/ps3/
16841 F:      drivers/*/ps3*
16842 F:      drivers/ps3/
16843 F:      drivers/rtc/rtc-ps3.c
16844 F:      drivers/usb/host/*ps3.c
16845 F:      sound/ppc/snd_ps3*
16846
16847 PS3VRAM DRIVER
16848 M:      Jim Paris <jim@jtan.com>
16849 M:      Geoff Levand <geoff@infradead.org>
16850 L:      linuxppc-dev@lists.ozlabs.org
16851 S:      Maintained
16852 F:      drivers/block/ps3vram.c
16853
16854 PSAMPLE PACKET SAMPLING SUPPORT
16855 M:      Yotam Gigi <yotam.gi@gmail.com>
16856 S:      Maintained
16857 F:      include/net/psample.h
16858 F:      include/uapi/linux/psample.h
16859 F:      net/psample
16860
16861 PSTORE FILESYSTEM
16862 M:      Kees Cook <keescook@chromium.org>
16863 R:      Tony Luck <tony.luck@intel.com>
16864 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16865 L:      linux-hardening@vger.kernel.org
16866 S:      Supported
16867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16868 F:      Documentation/admin-guide/ramoops.rst
16869 F:      Documentation/admin-guide/pstore-blk.rst
16870 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16871 F:      drivers/acpi/apei/erst.c
16872 F:      drivers/firmware/efi/efi-pstore.c
16873 F:      fs/pstore/
16874 F:      include/linux/pstore*
16875 K:      \b(pstore|ramoops)
16876
16877 PTP HARDWARE CLOCK SUPPORT
16878 M:      Richard Cochran <richardcochran@gmail.com>
16879 L:      netdev@vger.kernel.org
16880 S:      Maintained
16881 W:      http://linuxptp.sourceforge.net/
16882 F:      Documentation/ABI/testing/sysfs-ptp
16883 F:      Documentation/driver-api/ptp.rst
16884 F:      drivers/net/phy/dp83640*
16885 F:      drivers/ptp/*
16886 F:      include/linux/ptp_cl*
16887 K:      (?:\b|_)ptp(?:\b|_)
16888
16889 PTP VIRTUAL CLOCK SUPPORT
16890 M:      Yangbo Lu <yangbo.lu@nxp.com>
16891 L:      netdev@vger.kernel.org
16892 S:      Maintained
16893 F:      drivers/ptp/ptp_vclock.c
16894 F:      net/ethtool/phc_vclocks.c
16895
16896 PTRACE SUPPORT
16897 M:      Oleg Nesterov <oleg@redhat.com>
16898 S:      Maintained
16899 F:      arch/*/*/ptrace*.c
16900 F:      arch/*/include/asm/ptrace*.h
16901 F:      arch/*/ptrace*.c
16902 F:      include/asm-generic/syscall.h
16903 F:      include/linux/ptrace.h
16904 F:      include/linux/regset.h
16905 F:      include/uapi/linux/ptrace.h
16906 F:      kernel/ptrace.c
16907
16908 PULSE8-CEC DRIVER
16909 M:      Hans Verkuil <hverkuil@xs4all.nl>
16910 L:      linux-media@vger.kernel.org
16911 S:      Maintained
16912 T:      git git://linuxtv.org/media_tree.git
16913 F:      drivers/media/cec/usb/pulse8/
16914
16915 PURELIFI PLFXLC DRIVER
16916 M:      Srinivasan Raju <srini.raju@purelifi.com>
16917 L:      linux-wireless@vger.kernel.org
16918 S:      Supported
16919 F:      drivers/net/wireless/purelifi/plfxlc/
16920
16921 PVRUSB2 VIDEO4LINUX DRIVER
16922 M:      Mike Isely <isely@pobox.com>
16923 L:      pvrusb2@isely.net       (subscribers-only)
16924 L:      linux-media@vger.kernel.org
16925 S:      Maintained
16926 W:      http://www.isely.net/pvrusb2/
16927 T:      git git://linuxtv.org/media_tree.git
16928 F:      Documentation/driver-api/media/drivers/pvrusb2*
16929 F:      drivers/media/usb/pvrusb2/
16930
16931 PWC WEBCAM DRIVER
16932 M:      Hans Verkuil <hverkuil@xs4all.nl>
16933 L:      linux-media@vger.kernel.org
16934 S:      Odd Fixes
16935 T:      git git://linuxtv.org/media_tree.git
16936 F:      drivers/media/usb/pwc/*
16937 F:      include/trace/events/pwc.h
16938
16939 PWM IR Transmitter
16940 M:      Sean Young <sean@mess.org>
16941 L:      linux-media@vger.kernel.org
16942 S:      Maintained
16943 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
16944 F:      drivers/media/rc/pwm-ir-tx.c
16945
16946 PWM SUBSYSTEM
16947 M:      Thierry Reding <thierry.reding@gmail.com>
16948 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16949 L:      linux-pwm@vger.kernel.org
16950 S:      Maintained
16951 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16953 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16954 F:      Documentation/devicetree/bindings/pwm/
16955 F:      Documentation/driver-api/pwm.rst
16956 F:      drivers/gpio/gpio-mvebu.c
16957 F:      drivers/pwm/
16958 F:      drivers/video/backlight/pwm_bl.c
16959 F:      include/dt-bindings/pwm/
16960 F:      include/linux/pwm.h
16961 F:      include/linux/pwm_backlight.h
16962 K:      pwm_(config|apply_state|ops)
16963
16964 PXA GPIO DRIVER
16965 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16966 L:      linux-gpio@vger.kernel.org
16967 S:      Maintained
16968 F:      drivers/gpio/gpio-pxa.c
16969
16970 PXA MMCI DRIVER
16971 S:      Orphan
16972
16973 PXA RTC DRIVER
16974 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16975 L:      linux-rtc@vger.kernel.org
16976 S:      Maintained
16977
16978 PXA2xx/PXA3xx SUPPORT
16979 M:      Daniel Mack <daniel@zonque.org>
16980 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16981 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16983 S:      Maintained
16984 T:      git git://github.com/hzhuang1/linux.git
16985 T:      git git://github.com/rjarzmik/linux.git
16986 F:      arch/arm/boot/dts/pxa*
16987 F:      arch/arm/mach-pxa/
16988 F:      drivers/dma/pxa*
16989 F:      drivers/pcmcia/pxa2xx*
16990 F:      drivers/pinctrl/pxa/
16991 F:      drivers/spi/spi-pxa2xx*
16992 F:      drivers/usb/gadget/udc/pxa2*
16993 F:      include/sound/pxa2xx-lib.h
16994 F:      sound/arm/pxa*
16995 F:      sound/soc/pxa/
16996
16997 QAT DRIVER
16998 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16999 L:      qat-linux@intel.com
17000 S:      Supported
17001 F:      drivers/crypto/qat/
17002
17003 QCOM AUDIO (ASoC) DRIVERS
17004 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17005 M:      Banajit Goswami <bgoswami@quicinc.com>
17006 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17007 S:      Supported
17008 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17009 F:      Documentation/devicetree/bindings/sound/qcom,*
17010 F:      drivers/soc/qcom/apr.c
17011 F:      include/dt-bindings/sound/qcom,wcd9335.h
17012 F:      sound/soc/codecs/lpass-rx-macro.*
17013 F:      sound/soc/codecs/lpass-tx-macro.*
17014 F:      sound/soc/codecs/lpass-va-macro.c
17015 F:      sound/soc/codecs/lpass-wsa-macro.*
17016 F:      sound/soc/codecs/msm8916-wcd-analog.c
17017 F:      sound/soc/codecs/msm8916-wcd-digital.c
17018 F:      sound/soc/codecs/wcd9335.*
17019 F:      sound/soc/codecs/wcd934x.c
17020 F:      sound/soc/codecs/wcd-clsh-v2.*
17021 F:      sound/soc/codecs/wcd-mbhc-v2.*
17022 F:      sound/soc/codecs/wsa881x.c
17023 F:      sound/soc/codecs/wsa883x.c
17024 F:      sound/soc/qcom/
17025
17026 QCOM EMBEDDED USB DEBUGGER (EUD)
17027 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
17028 L:      linux-arm-msm@vger.kernel.org
17029 S:      Maintained
17030 F:      Documentation/ABI/testing/sysfs-driver-eud
17031 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17032 F:      drivers/usb/misc/qcom_eud.c
17033
17034 QCOM IPA DRIVER
17035 M:      Alex Elder <elder@kernel.org>
17036 L:      netdev@vger.kernel.org
17037 S:      Supported
17038 F:      drivers/net/ipa/
17039
17040 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17041 M:      Gabriel Somlo <somlo@cmu.edu>
17042 M:      "Michael S. Tsirkin" <mst@redhat.com>
17043 L:      qemu-devel@nongnu.org
17044 S:      Maintained
17045 F:      drivers/firmware/qemu_fw_cfg.c
17046 F:      include/uapi/linux/qemu_fw_cfg.h
17047
17048 QIB DRIVER
17049 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17050 L:      linux-rdma@vger.kernel.org
17051 S:      Supported
17052 F:      drivers/infiniband/hw/qib/
17053
17054 QLOGIC QL41xxx FCOE DRIVER
17055 M:      Saurav Kashyap <skashyap@marvell.com>
17056 M:      Javed Hasan <jhasan@marvell.com>
17057 M:      GR-QLogic-Storage-Upstream@marvell.com
17058 L:      linux-scsi@vger.kernel.org
17059 S:      Supported
17060 F:      drivers/scsi/qedf/
17061
17062 QLOGIC QL41xxx ISCSI DRIVER
17063 M:      Nilesh Javali <njavali@marvell.com>
17064 M:      Manish Rangankar <mrangankar@marvell.com>
17065 M:      GR-QLogic-Storage-Upstream@marvell.com
17066 L:      linux-scsi@vger.kernel.org
17067 S:      Supported
17068 F:      drivers/scsi/qedi/
17069
17070 QLOGIC QL4xxx ETHERNET DRIVER
17071 M:      Ariel Elior <aelior@marvell.com>
17072 M:      Manish Chopra <manishc@marvell.com>
17073 L:      netdev@vger.kernel.org
17074 S:      Supported
17075 F:      drivers/net/ethernet/qlogic/qed/
17076 F:      drivers/net/ethernet/qlogic/qede/
17077 F:      include/linux/qed/
17078
17079 QLOGIC QL4xxx RDMA DRIVER
17080 M:      Michal Kalderon <mkalderon@marvell.com>
17081 M:      Ariel Elior <aelior@marvell.com>
17082 L:      linux-rdma@vger.kernel.org
17083 S:      Supported
17084 F:      drivers/infiniband/hw/qedr/
17085 F:      include/uapi/rdma/qedr-abi.h
17086
17087 QLOGIC QLA1280 SCSI DRIVER
17088 M:      Michael Reed <mdr@sgi.com>
17089 L:      linux-scsi@vger.kernel.org
17090 S:      Maintained
17091 F:      drivers/scsi/qla1280.[ch]
17092
17093 QLOGIC QLA2XXX FC-SCSI DRIVER
17094 M:      Nilesh Javali <njavali@marvell.com>
17095 M:      GR-QLogic-Storage-Upstream@marvell.com
17096 L:      linux-scsi@vger.kernel.org
17097 S:      Supported
17098 F:      drivers/scsi/qla2xxx/
17099
17100 QLOGIC QLA3XXX NETWORK DRIVER
17101 M:      GR-Linux-NIC-Dev@marvell.com
17102 L:      netdev@vger.kernel.org
17103 S:      Supported
17104 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17105
17106 QLOGIC QLA4XXX iSCSI DRIVER
17107 M:      Nilesh Javali <njavali@marvell.com>
17108 M:      Manish Rangankar <mrangankar@marvell.com>
17109 M:      GR-QLogic-Storage-Upstream@marvell.com
17110 L:      linux-scsi@vger.kernel.org
17111 S:      Supported
17112 F:      drivers/scsi/qla4xxx/
17113
17114 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17115 M:      Shahed Shaikh <shshaikh@marvell.com>
17116 M:      Manish Chopra <manishc@marvell.com>
17117 M:      GR-Linux-NIC-Dev@marvell.com
17118 L:      netdev@vger.kernel.org
17119 S:      Supported
17120 F:      drivers/net/ethernet/qlogic/qlcnic/
17121
17122 QLOGIC QLGE 10Gb ETHERNET DRIVER
17123 M:      Manish Chopra <manishc@marvell.com>
17124 M:      GR-Linux-NIC-Dev@marvell.com
17125 M:      Coiby Xu <coiby.xu@gmail.com>
17126 L:      netdev@vger.kernel.org
17127 S:      Supported
17128 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17129 F:      drivers/staging/qlge/
17130
17131 QM1D1B0004 MEDIA DRIVER
17132 M:      Akihiro Tsukada <tskd08@gmail.com>
17133 L:      linux-media@vger.kernel.org
17134 S:      Odd Fixes
17135 F:      drivers/media/tuners/qm1d1b0004*
17136
17137 QM1D1C0042 MEDIA DRIVER
17138 M:      Akihiro Tsukada <tskd08@gmail.com>
17139 L:      linux-media@vger.kernel.org
17140 S:      Odd Fixes
17141 F:      drivers/media/tuners/qm1d1c0042*
17142
17143 QNX4 FILESYSTEM
17144 M:      Anders Larsen <al@alarsen.net>
17145 S:      Maintained
17146 W:      http://www.alarsen.net/linux/qnx4fs/
17147 F:      fs/qnx4/
17148 F:      include/uapi/linux/qnx4_fs.h
17149 F:      include/uapi/linux/qnxtypes.h
17150
17151 QORIQ DPAA2 FSL-MC BUS DRIVER
17152 M:      Stuart Yoder <stuyoder@gmail.com>
17153 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17154 L:      linux-kernel@vger.kernel.org
17155 S:      Maintained
17156 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17157 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17158 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17159 F:      drivers/bus/fsl-mc/
17160 F:      include/uapi/linux/fsl_mc.h
17161
17162 QT1010 MEDIA DRIVER
17163 M:      Antti Palosaari <crope@iki.fi>
17164 L:      linux-media@vger.kernel.org
17165 S:      Maintained
17166 W:      https://linuxtv.org
17167 W:      http://palosaari.fi/linux/
17168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17169 T:      git git://linuxtv.org/anttip/media_tree.git
17170 F:      drivers/media/tuners/qt1010*
17171
17172 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17173 M:      Kalle Valo <kvalo@kernel.org>
17174 L:      ath10k@lists.infradead.org
17175 S:      Supported
17176 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17178 F:      drivers/net/wireless/ath/ath10k/
17179 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
17180
17181 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17182 M:      Kalle Valo <kvalo@kernel.org>
17183 L:      ath11k@lists.infradead.org
17184 S:      Supported
17185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17186 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17187 F:      drivers/net/wireless/ath/ath11k/
17188
17189 QUALCOMM ATH12K WIRELESS DRIVER
17190 M:      Kalle Valo <kvalo@kernel.org>
17191 L:      ath12k@lists.infradead.org
17192 S:      Supported
17193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17194 F:      drivers/net/wireless/ath/ath12k/
17195
17196 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17197 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17198 L:      linux-wireless@vger.kernel.org
17199 S:      Maintained
17200 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17201 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17202 F:      drivers/net/wireless/ath/ath9k/
17203
17204 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17205 M:      Stephan Gerhold <stephan@gerhold.net>
17206 L:      netdev@vger.kernel.org
17207 L:      linux-arm-msm@vger.kernel.org
17208 S:      Maintained
17209 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17210 F:      drivers/net/wwan/qcom_bam_dmux.c
17211
17212 QUALCOMM CAMERA SUBSYSTEM DRIVER
17213 M:      Robert Foss <rfoss@kernel.org>
17214 M:      Todor Tomov <todor.too@gmail.com>
17215 M:      Bryan O'Donoghue <bryan.odonoghue@linaro.org>
17216 L:      linux-media@vger.kernel.org
17217 S:      Maintained
17218 F:      Documentation/admin-guide/media/qcom_camss.rst
17219 F:      Documentation/devicetree/bindings/media/*camss*
17220 F:      drivers/media/platform/qcom/camss/
17221
17222 QUALCOMM CLOCK DRIVERS
17223 M:      Bjorn Andersson <andersson@kernel.org>
17224 L:      linux-arm-msm@vger.kernel.org
17225 S:      Supported
17226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17227 F:      Documentation/devicetree/bindings/clock/qcom,*
17228 F:      drivers/clk/qcom/
17229 F:      include/dt-bindings/clock/qcom,*
17230
17231 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17232 M:      Bjorn Andersson <andersson@kernel.org>
17233 M:      Konrad Dybcio <konrad.dybcio@linaro.org>
17234 L:      linux-pm@vger.kernel.org
17235 L:      linux-arm-msm@vger.kernel.org
17236 S:      Maintained
17237 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17238 F:      drivers/soc/qcom/cpr.c
17239
17240 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17241 M:      Ilia Lin <ilia.lin@kernel.org>
17242 L:      linux-pm@vger.kernel.org
17243 S:      Maintained
17244 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17245 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17246 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17247
17248 QUALCOMM CRYPTO DRIVERS
17249 M:      Thara Gopinath <thara.gopinath@gmail.com>
17250 L:      linux-crypto@vger.kernel.org
17251 L:      linux-arm-msm@vger.kernel.org
17252 S:      Maintained
17253 F:      drivers/crypto/qce/
17254
17255 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17256 M:      Timur Tabi <timur@kernel.org>
17257 L:      netdev@vger.kernel.org
17258 S:      Maintained
17259 F:      drivers/net/ethernet/qualcomm/emac/
17260
17261 QUALCOMM ETHQOS ETHERNET DRIVER
17262 M:      Vinod Koul <vkoul@kernel.org>
17263 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17264 L:      netdev@vger.kernel.org
17265 S:      Maintained
17266 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
17267 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17268
17269 QUALCOMM FASTRPC DRIVER
17270 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17271 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17272 L:      linux-arm-msm@vger.kernel.org
17273 S:      Maintained
17274 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17275 F:      drivers/misc/fastrpc.c
17276 F:      include/uapi/misc/fastrpc.h
17277
17278 QUALCOMM HEXAGON ARCHITECTURE
17279 M:      Brian Cain <bcain@quicinc.com>
17280 L:      linux-hexagon@vger.kernel.org
17281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17282 S:      Supported
17283 F:      arch/hexagon/
17284
17285 QUALCOMM HIDMA DRIVER
17286 M:      Sinan Kaya <okaya@kernel.org>
17287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17288 L:      linux-arm-msm@vger.kernel.org
17289 L:      dmaengine@vger.kernel.org
17290 S:      Supported
17291 F:      drivers/dma/qcom/hidma*
17292
17293 QUALCOMM I2C CCI DRIVER
17294 M:      Loic Poulain <loic.poulain@linaro.org>
17295 M:      Robert Foss <rfoss@kernel.org>
17296 L:      linux-i2c@vger.kernel.org
17297 L:      linux-arm-msm@vger.kernel.org
17298 S:      Maintained
17299 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17300 F:      drivers/i2c/busses/i2c-qcom-cci.c
17301
17302 QUALCOMM INTERCONNECT BWMON DRIVER
17303 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17304 L:      linux-arm-msm@vger.kernel.org
17305 S:      Maintained
17306 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17307 F:      drivers/soc/qcom/icc-bwmon.c
17308
17309 QUALCOMM IOMMU
17310 M:      Rob Clark <robdclark@gmail.com>
17311 L:      iommu@lists.linux.dev
17312 L:      linux-arm-msm@vger.kernel.org
17313 S:      Maintained
17314 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17315
17316 QUALCOMM IPC ROUTER (QRTR) DRIVER
17317 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17318 L:      linux-arm-msm@vger.kernel.org
17319 S:      Maintained
17320 F:      include/trace/events/qrtr.h
17321 F:      include/uapi/linux/qrtr.h
17322 F:      net/qrtr/
17323
17324 QUALCOMM IPCC MAILBOX DRIVER
17325 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17326 L:      linux-arm-msm@vger.kernel.org
17327 S:      Supported
17328 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17329 F:      drivers/mailbox/qcom-ipcc.c
17330 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17331
17332 QUALCOMM IPQ4019 USB PHY DRIVER
17333 M:      Robert Marko <robert.marko@sartura.hr>
17334 M:      Luka Perkov <luka.perkov@sartura.hr>
17335 L:      linux-arm-msm@vger.kernel.org
17336 S:      Maintained
17337 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17338 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17339
17340 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17341 M:      Robert Marko <robert.marko@sartura.hr>
17342 M:      Luka Perkov <luka.perkov@sartura.hr>
17343 L:      linux-arm-msm@vger.kernel.org
17344 S:      Maintained
17345 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17346 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17347
17348 QUALCOMM NAND CONTROLLER DRIVER
17349 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17350 L:      linux-mtd@lists.infradead.org
17351 L:      linux-arm-msm@vger.kernel.org
17352 S:      Maintained
17353 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17354 F:      drivers/mtd/nand/raw/qcom_nandc.c
17355
17356 QUALCOMM RMNET DRIVER
17357 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17358 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17359 L:      netdev@vger.kernel.org
17360 S:      Maintained
17361 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17362 F:      drivers/net/ethernet/qualcomm/rmnet/
17363 F:      include/linux/if_rmnet.h
17364
17365 QUALCOMM TSENS THERMAL DRIVER
17366 M:      Amit Kucheria <amitk@kernel.org>
17367 M:      Thara Gopinath <thara.gopinath@gmail.com>
17368 L:      linux-pm@vger.kernel.org
17369 L:      linux-arm-msm@vger.kernel.org
17370 S:      Maintained
17371 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17372 F:      drivers/thermal/qcom/
17373
17374 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17375 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17376 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17377 L:      linux-media@vger.kernel.org
17378 L:      linux-arm-msm@vger.kernel.org
17379 S:      Maintained
17380 T:      git git://linuxtv.org/media_tree.git
17381 F:      Documentation/devicetree/bindings/media/*venus*
17382 F:      drivers/media/platform/qcom/venus/
17383
17384 QUALCOMM WCN36XX WIRELESS DRIVER
17385 M:      Loic Poulain <loic.poulain@linaro.org>
17386 L:      wcn36xx@lists.infradead.org
17387 S:      Supported
17388 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17389 F:      drivers/net/wireless/ath/wcn36xx/
17390
17391 QUANTENNA QTNFMAC WIRELESS DRIVER
17392 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17393 R:      Sergey Matyukevich <geomatsi@gmail.com>
17394 L:      linux-wireless@vger.kernel.org
17395 S:      Maintained
17396 F:      drivers/net/wireless/quantenna
17397
17398 RADEON and AMDGPU DRM DRIVERS
17399 M:      Alex Deucher <alexander.deucher@amd.com>
17400 M:      Christian König <christian.koenig@amd.com>
17401 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17402 L:      amd-gfx@lists.freedesktop.org
17403 S:      Supported
17404 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17405 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17406 C:      irc://irc.oftc.net/radeon
17407 F:      Documentation/gpu/amdgpu/
17408 F:      drivers/gpu/drm/amd/
17409 F:      drivers/gpu/drm/radeon/
17410 F:      include/uapi/drm/amdgpu_drm.h
17411 F:      include/uapi/drm/radeon_drm.h
17412
17413 RADEON FRAMEBUFFER DISPLAY DRIVER
17414 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17415 L:      linux-fbdev@vger.kernel.org
17416 S:      Maintained
17417 F:      drivers/video/fbdev/aty/radeon*
17418 F:      include/uapi/linux/radeonfb.h
17419
17420 RADIOSHARK RADIO DRIVER
17421 M:      Hans Verkuil <hverkuil@xs4all.nl>
17422 L:      linux-media@vger.kernel.org
17423 S:      Maintained
17424 T:      git git://linuxtv.org/media_tree.git
17425 F:      drivers/media/radio/radio-shark.c
17426
17427 RADIOSHARK2 RADIO DRIVER
17428 M:      Hans Verkuil <hverkuil@xs4all.nl>
17429 L:      linux-media@vger.kernel.org
17430 S:      Maintained
17431 T:      git git://linuxtv.org/media_tree.git
17432 F:      drivers/media/radio/radio-shark2.c
17433 F:      drivers/media/radio/radio-tea5777.c
17434
17435 RADOS BLOCK DEVICE (RBD)
17436 M:      Ilya Dryomov <idryomov@gmail.com>
17437 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17438 L:      ceph-devel@vger.kernel.org
17439 S:      Supported
17440 W:      http://ceph.com/
17441 T:      git https://github.com/ceph/ceph-client.git
17442 F:      Documentation/ABI/testing/sysfs-bus-rbd
17443 F:      drivers/block/rbd.c
17444 F:      drivers/block/rbd_types.h
17445
17446 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17447 M:      Paul Mackerras <paulus@samba.org>
17448 L:      linux-fbdev@vger.kernel.org
17449 S:      Maintained
17450 F:      drivers/video/fbdev/aty/aty128fb.c
17451
17452 RAINSHADOW-CEC DRIVER
17453 M:      Hans Verkuil <hverkuil@xs4all.nl>
17454 L:      linux-media@vger.kernel.org
17455 S:      Maintained
17456 T:      git git://linuxtv.org/media_tree.git
17457 F:      drivers/media/cec/usb/rainshadow/
17458
17459 RALINK MIPS ARCHITECTURE
17460 M:      John Crispin <john@phrozen.org>
17461 L:      linux-mips@vger.kernel.org
17462 S:      Maintained
17463 F:      arch/mips/ralink
17464
17465 RALINK MT7621 MIPS ARCHITECTURE
17466 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17467 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17468 L:      linux-mips@vger.kernel.org
17469 S:      Maintained
17470 F:      arch/mips/boot/dts/ralink/mt7621*
17471
17472 RALINK PINCTRL DRIVER
17473 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17474 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17475 L:      linux-mips@vger.kernel.org
17476 S:      Maintained
17477 F:      drivers/pinctrl/ralink/
17478
17479 RALINK RT2X00 WIRELESS LAN DRIVER
17480 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17481 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17482 L:      linux-wireless@vger.kernel.org
17483 S:      Maintained
17484 F:      drivers/net/wireless/ralink/rt2x00/
17485
17486 RAMDISK RAM BLOCK DEVICE DRIVER
17487 M:      Jens Axboe <axboe@kernel.dk>
17488 S:      Maintained
17489 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17490 F:      drivers/block/brd.c
17491
17492 RANCHU VIRTUAL BOARD FOR MIPS
17493 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17494 L:      linux-mips@vger.kernel.org
17495 S:      Supported
17496 F:      arch/mips/configs/generic/board-ranchu.config
17497 F:      arch/mips/generic/board-ranchu.c
17498
17499 RANDOM NUMBER DRIVER
17500 M:      "Theodore Ts'o" <tytso@mit.edu>
17501 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17502 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17503 S:      Maintained
17504 F:      drivers/char/random.c
17505 F:      drivers/virt/vmgenid.c
17506
17507 RAPIDIO SUBSYSTEM
17508 M:      Matt Porter <mporter@kernel.crashing.org>
17509 M:      Alexandre Bounine <alex.bou9@gmail.com>
17510 S:      Maintained
17511 F:      drivers/rapidio/
17512
17513 RAS INFRASTRUCTURE
17514 M:      Tony Luck <tony.luck@intel.com>
17515 M:      Borislav Petkov <bp@alien8.de>
17516 L:      linux-edac@vger.kernel.org
17517 S:      Maintained
17518 F:      Documentation/admin-guide/ras.rst
17519 F:      drivers/ras/
17520 F:      include/linux/ras.h
17521 F:      include/ras/ras_event.h
17522
17523 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17524 L:      linux-wireless@vger.kernel.org
17525 S:      Orphan
17526 F:      drivers/net/wireless/ray*
17527
17528 RC-CORE / LIRC FRAMEWORK
17529 M:      Sean Young <sean@mess.org>
17530 L:      linux-media@vger.kernel.org
17531 S:      Maintained
17532 W:      http://linuxtv.org
17533 T:      git git://linuxtv.org/media_tree.git
17534 F:      Documentation/driver-api/media/rc-core.rst
17535 F:      Documentation/userspace-api/media/rc/
17536 F:      drivers/media/rc/
17537 F:      include/media/rc-map.h
17538 F:      include/media/rc-core.h
17539 F:      include/uapi/linux/lirc.h
17540
17541 RCMM REMOTE CONTROLS DECODER
17542 M:      Patrick Lerda <patrick9876@free.fr>
17543 S:      Maintained
17544 F:      drivers/media/rc/ir-rcmm-decoder.c
17545
17546 RCUTORTURE TEST FRAMEWORK
17547 M:      "Paul E. McKenney" <paulmck@kernel.org>
17548 M:      Josh Triplett <josh@joshtriplett.org>
17549 R:      Steven Rostedt <rostedt@goodmis.org>
17550 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17551 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17552 L:      rcu@vger.kernel.org
17553 S:      Supported
17554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17555 F:      tools/testing/selftests/rcutorture
17556
17557 RDACM20 Camera Sensor
17558 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17559 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17560 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17561 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17562 L:      linux-media@vger.kernel.org
17563 S:      Maintained
17564 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17565 F:      drivers/media/i2c/max9271.c
17566 F:      drivers/media/i2c/max9271.h
17567 F:      drivers/media/i2c/rdacm20.c
17568
17569 RDACM21 Camera Sensor
17570 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17571 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17572 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17573 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17574 L:      linux-media@vger.kernel.org
17575 S:      Maintained
17576 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17577 F:      drivers/media/i2c/max9271.c
17578 F:      drivers/media/i2c/max9271.h
17579 F:      drivers/media/i2c/rdacm21.c
17580
17581 RDC R-321X SoC
17582 M:      Florian Fainelli <florian@openwrt.org>
17583 S:      Maintained
17584
17585 RDC R6040 FAST ETHERNET DRIVER
17586 M:      Florian Fainelli <f.fainelli@gmail.com>
17587 L:      netdev@vger.kernel.org
17588 S:      Maintained
17589 F:      drivers/net/ethernet/rdc/r6040.c
17590
17591 RDMAVT - RDMA verbs software
17592 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17593 L:      linux-rdma@vger.kernel.org
17594 S:      Supported
17595 F:      drivers/infiniband/sw/rdmavt
17596
17597 RDS - RELIABLE DATAGRAM SOCKETS
17598 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17599 L:      netdev@vger.kernel.org
17600 L:      linux-rdma@vger.kernel.org
17601 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17602 S:      Supported
17603 W:      https://oss.oracle.com/projects/rds/
17604 F:      Documentation/networking/rds.rst
17605 F:      net/rds/
17606
17607 RDT - RESOURCE ALLOCATION
17608 M:      Fenghua Yu <fenghua.yu@intel.com>
17609 M:      Reinette Chatre <reinette.chatre@intel.com>
17610 L:      linux-kernel@vger.kernel.org
17611 S:      Supported
17612 F:      Documentation/x86/resctrl*
17613 F:      arch/x86/include/asm/resctrl.h
17614 F:      arch/x86/kernel/cpu/resctrl/
17615 F:      tools/testing/selftests/resctrl/
17616
17617 READ-COPY UPDATE (RCU)
17618 M:      "Paul E. McKenney" <paulmck@kernel.org>
17619 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17620 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17621 M:      Josh Triplett <josh@joshtriplett.org>
17622 R:      Steven Rostedt <rostedt@goodmis.org>
17623 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17624 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17625 R:      Joel Fernandes <joel@joelfernandes.org>
17626 L:      rcu@vger.kernel.org
17627 S:      Supported
17628 W:      http://www.rdrop.com/users/paulmck/RCU/
17629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17630 F:      Documentation/RCU/
17631 F:      include/linux/rcu*
17632 F:      kernel/rcu/
17633 X:      Documentation/RCU/torture.rst
17634 X:      include/linux/srcu*.h
17635 X:      kernel/rcu/srcu*.c
17636
17637 REAL TIME CLOCK (RTC) SUBSYSTEM
17638 M:      Alessandro Zummo <a.zummo@towertech.it>
17639 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17640 L:      linux-rtc@vger.kernel.org
17641 S:      Maintained
17642 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17644 F:      Documentation/admin-guide/rtc.rst
17645 F:      Documentation/devicetree/bindings/rtc/
17646 F:      drivers/rtc/
17647 F:      include/linux/platform_data/rtc-*
17648 F:      include/linux/rtc.h
17649 F:      include/linux/rtc/
17650 F:      include/uapi/linux/rtc.h
17651 F:      tools/testing/selftests/rtc/
17652
17653 REALTEK AUDIO CODECS
17654 M:      Oder Chiou <oder_chiou@realtek.com>
17655 S:      Maintained
17656 F:      include/sound/rt*.h
17657 F:      sound/soc/codecs/rt*
17658
17659 REALTEK OTTO WATCHDOG
17660 M:      Sander Vanheule <sander@svanheule.net>
17661 L:      linux-watchdog@vger.kernel.org
17662 S:      Maintained
17663 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17664 F:      drivers/watchdog/realtek_otto_wdt.c
17665
17666 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17667 M:      Linus Walleij <linus.walleij@linaro.org>
17668 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17669 S:      Maintained
17670 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17671 F:      drivers/net/dsa/realtek/*
17672
17673 REALTEK WIRELESS DRIVER (rtlwifi family)
17674 M:      Ping-Ke Shih <pkshih@realtek.com>
17675 L:      linux-wireless@vger.kernel.org
17676 S:      Maintained
17677 W:      https://wireless.wiki.kernel.org/
17678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17679 F:      drivers/net/wireless/realtek/rtlwifi/
17680
17681 REALTEK WIRELESS DRIVER (rtw88)
17682 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17683 L:      linux-wireless@vger.kernel.org
17684 S:      Maintained
17685 F:      drivers/net/wireless/realtek/rtw88/
17686
17687 REALTEK WIRELESS DRIVER (rtw89)
17688 M:      Ping-Ke Shih <pkshih@realtek.com>
17689 L:      linux-wireless@vger.kernel.org
17690 S:      Maintained
17691 F:      drivers/net/wireless/realtek/rtw89/
17692
17693 REDPINE WIRELESS DRIVER
17694 L:      linux-wireless@vger.kernel.org
17695 S:      Orphan
17696 F:      drivers/net/wireless/rsi/
17697
17698 REGISTER MAP ABSTRACTION
17699 M:      Mark Brown <broonie@kernel.org>
17700 L:      linux-kernel@vger.kernel.org
17701 S:      Supported
17702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17703 F:      Documentation/devicetree/bindings/regmap/
17704 F:      drivers/base/regmap/
17705 F:      include/linux/regmap.h
17706
17707 REISERFS FILE SYSTEM
17708 L:      reiserfs-devel@vger.kernel.org
17709 S:      Supported
17710 F:      fs/reiserfs/
17711
17712 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17713 M:      Bjorn Andersson <andersson@kernel.org>
17714 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17715 L:      linux-remoteproc@vger.kernel.org
17716 S:      Maintained
17717 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17718 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17719 F:      Documentation/devicetree/bindings/remoteproc/
17720 F:      Documentation/staging/remoteproc.rst
17721 F:      drivers/remoteproc/
17722 F:      include/linux/remoteproc.h
17723 F:      include/linux/remoteproc/
17724
17725 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17726 M:      Bjorn Andersson <andersson@kernel.org>
17727 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17728 L:      linux-remoteproc@vger.kernel.org
17729 S:      Maintained
17730 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17731 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17732 F:      Documentation/staging/rpmsg.rst
17733 F:      drivers/rpmsg/
17734 F:      include/linux/rpmsg.h
17735 F:      include/linux/rpmsg/
17736 F:      include/uapi/linux/rpmsg.h
17737 F:      samples/rpmsg/
17738
17739 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17740 M:      Stephan Gerhold <stephan@gerhold.net>
17741 L:      netdev@vger.kernel.org
17742 L:      linux-remoteproc@vger.kernel.org
17743 S:      Maintained
17744 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17745
17746 RENESAS CLOCK DRIVERS
17747 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17748 L:      linux-renesas-soc@vger.kernel.org
17749 S:      Supported
17750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17751 F:      Documentation/devicetree/bindings/clock/renesas,*
17752 F:      drivers/clk/renesas/
17753
17754 RENESAS EMEV2 I2C DRIVER
17755 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17756 L:      linux-renesas-soc@vger.kernel.org
17757 S:      Supported
17758 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17759 F:      drivers/i2c/busses/i2c-emev2.c
17760
17761 RENESAS ETHERNET DRIVERS
17762 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17763 L:      netdev@vger.kernel.org
17764 L:      linux-renesas-soc@vger.kernel.org
17765 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17766 F:      drivers/net/ethernet/renesas/
17767 F:      include/linux/sh_eth.h
17768
17769 RENESAS IDT821034 ASoC CODEC
17770 M:      Herve Codina <herve.codina@bootlin.com>
17771 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17772 S:      Maintained
17773 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17774 F:      sound/soc/codecs/idt821034.c
17775
17776 RENESAS R-CAR GYROADC DRIVER
17777 M:      Marek Vasut <marek.vasut@gmail.com>
17778 L:      linux-iio@vger.kernel.org
17779 S:      Supported
17780 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17781 F:      drivers/iio/adc/rcar-gyroadc.c
17782
17783 RENESAS R-CAR I2C DRIVERS
17784 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17785 L:      linux-renesas-soc@vger.kernel.org
17786 S:      Supported
17787 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17788 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17789 F:      drivers/i2c/busses/i2c-rcar.c
17790 F:      drivers/i2c/busses/i2c-sh_mobile.c
17791
17792 RENESAS R-CAR SATA DRIVER
17793 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17794 S:      Supported
17795 L:      linux-ide@vger.kernel.org
17796 L:      linux-renesas-soc@vger.kernel.org
17797 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17798 F:      drivers/ata/sata_rcar.c
17799
17800 RENESAS R-CAR THERMAL DRIVERS
17801 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17802 L:      linux-renesas-soc@vger.kernel.org
17803 S:      Supported
17804 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17805 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17806 F:      drivers/thermal/rcar_gen3_thermal.c
17807 F:      drivers/thermal/rcar_thermal.c
17808
17809 RENESAS RIIC DRIVER
17810 M:      Chris Brandt <chris.brandt@renesas.com>
17811 L:      linux-renesas-soc@vger.kernel.org
17812 S:      Supported
17813 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17814 F:      drivers/i2c/busses/i2c-riic.c
17815
17816 RENESAS USB PHY DRIVER
17817 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17818 L:      linux-renesas-soc@vger.kernel.org
17819 S:      Maintained
17820 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17821
17822 RENESAS RZ/G2L A/D DRIVER
17823 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17824 L:      linux-iio@vger.kernel.org
17825 L:      linux-renesas-soc@vger.kernel.org
17826 S:      Supported
17827 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17828 F:      drivers/iio/adc/rzg2l_adc.c
17829
17830 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17831 M:      Clément Léger <clement.leger@bootlin.com>
17832 L:      linux-renesas-soc@vger.kernel.org
17833 L:      netdev@vger.kernel.org
17834 S:      Maintained
17835 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17836 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17837 F:      drivers/net/dsa/rzn1_a5psw*
17838 F:      drivers/net/pcs/pcs-rzn1-miic.c
17839 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17840 F:      include/linux/pcs-rzn1-miic.h
17841 F:      net/dsa/tag_rzn1_a5psw.c
17842
17843 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17844 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17845 L:      linux-rtc@vger.kernel.org
17846 L:      linux-renesas-soc@vger.kernel.org
17847 S:      Maintained
17848 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17849 F:      drivers/rtc/rtc-rzn1.c
17850
17851 RENESAS RZ/N1 USBF CONTROLLER DRIVER
17852 M:      Herve Codina <herve.codina@bootlin.com>
17853 L:      linux-renesas-soc@vger.kernel.org
17854 L:      linux-usb@vger.kernel.org
17855 S:      Maintained
17856 F:      Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
17857 F:      drivers/usb/gadget/udc/renesas_usbf.c
17858
17859 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17860 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17861 L:      linux-mtd@lists.infradead.org
17862 L:      linux-renesas-soc@vger.kernel.org
17863 S:      Maintained
17864 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17865 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17866
17867 RENESAS VERSACLOCK 7 CLOCK DRIVER
17868 M:      Alex Helms <alexander.helms.jy@renesas.com>
17869 S:      Maintained
17870 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17871 F:      drivers/clk/clk-versaclock7.c
17872
17873 RESET CONTROLLER FRAMEWORK
17874 M:      Philipp Zabel <p.zabel@pengutronix.de>
17875 S:      Maintained
17876 T:      git git://git.pengutronix.de/git/pza/linux
17877 F:      Documentation/devicetree/bindings/reset/
17878 F:      Documentation/driver-api/reset.rst
17879 F:      drivers/reset/
17880 F:      include/dt-bindings/reset/
17881 F:      include/linux/reset-controller.h
17882 F:      include/linux/reset.h
17883 F:      include/linux/reset/
17884 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17885
17886 RESTARTABLE SEQUENCES SUPPORT
17887 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17888 M:      Peter Zijlstra <peterz@infradead.org>
17889 M:      "Paul E. McKenney" <paulmck@kernel.org>
17890 M:      Boqun Feng <boqun.feng@gmail.com>
17891 L:      linux-kernel@vger.kernel.org
17892 S:      Supported
17893 F:      include/trace/events/rseq.h
17894 F:      include/uapi/linux/rseq.h
17895 F:      kernel/rseq.c
17896 F:      tools/testing/selftests/rseq/
17897
17898 RFKILL
17899 M:      Johannes Berg <johannes@sipsolutions.net>
17900 L:      linux-wireless@vger.kernel.org
17901 S:      Maintained
17902 W:      https://wireless.wiki.kernel.org/
17903 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17906 F:      Documentation/ABI/stable/sysfs-class-rfkill
17907 F:      Documentation/driver-api/rfkill.rst
17908 F:      include/linux/rfkill.h
17909 F:      include/uapi/linux/rfkill.h
17910 F:      net/rfkill/
17911
17912 RHASHTABLE
17913 M:      Thomas Graf <tgraf@suug.ch>
17914 M:      Herbert Xu <herbert@gondor.apana.org.au>
17915 L:      netdev@vger.kernel.org
17916 S:      Maintained
17917 F:      include/linux/rhashtable-types.h
17918 F:      include/linux/rhashtable.h
17919 F:      lib/rhashtable.c
17920 F:      lib/test_rhashtable.c
17921
17922 RICOH R5C592 MEMORYSTICK DRIVER
17923 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17924 S:      Maintained
17925 F:      drivers/memstick/host/r592.*
17926
17927 RICOH SMARTMEDIA/XD DRIVER
17928 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17929 S:      Maintained
17930 F:      drivers/mtd/nand/raw/r852.c
17931 F:      drivers/mtd/nand/raw/r852.h
17932
17933 RISC-V PMU DRIVERS
17934 M:      Atish Patra <atishp@atishpatra.org>
17935 R:      Anup Patel <anup@brainfault.org>
17936 L:      linux-riscv@lists.infradead.org
17937 S:      Supported
17938 F:      drivers/perf/riscv_pmu.c
17939 F:      drivers/perf/riscv_pmu_legacy.c
17940 F:      drivers/perf/riscv_pmu_sbi.c
17941
17942 RISC-V ARCHITECTURE
17943 M:      Paul Walmsley <paul.walmsley@sifive.com>
17944 M:      Palmer Dabbelt <palmer@dabbelt.com>
17945 M:      Albert Ou <aou@eecs.berkeley.edu>
17946 L:      linux-riscv@lists.infradead.org
17947 S:      Supported
17948 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17949 C:      irc://irc.libera.chat/riscv
17950 P:      Documentation/riscv/patch-acceptance.rst
17951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17952 F:      arch/riscv/
17953 N:      riscv
17954 K:      riscv
17955
17956 RISC-V MICROCHIP FPGA SUPPORT
17957 M:      Conor Dooley <conor.dooley@microchip.com>
17958 M:      Daire McNamara <daire.mcnamara@microchip.com>
17959 L:      linux-riscv@lists.infradead.org
17960 S:      Supported
17961 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
17962 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17963 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17964 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17965 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17966 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17967 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
17968 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17969 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17970 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17971 F:      arch/riscv/boot/dts/microchip/
17972 F:      drivers/char/hw_random/mpfs-rng.c
17973 F:      drivers/clk/microchip/clk-mpfs.c
17974 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
17975 F:      drivers/mailbox/mailbox-mpfs.c
17976 F:      drivers/pci/controller/pcie-microchip-host.c
17977 F:      drivers/reset/reset-mpfs.c
17978 F:      drivers/rtc/rtc-mpfs.c
17979 F:      drivers/soc/microchip/mpfs-sys-controller.c
17980 F:      drivers/spi/spi-microchip-core-qspi.c
17981 F:      drivers/spi/spi-microchip-core.c
17982 F:      drivers/usb/musb/mpfs.c
17983 F:      include/soc/microchip/mpfs.h
17984
17985 RISC-V MISC SOC SUPPORT
17986 M:      Conor Dooley <conor@kernel.org>
17987 L:      linux-riscv@lists.infradead.org
17988 S:      Maintained
17989 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
17990 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
17991 F:      Documentation/devicetree/bindings/riscv/
17992 F:      arch/riscv/boot/dts/
17993
17994 RNBD BLOCK DRIVERS
17995 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17996 M:      Jack Wang <jinpu.wang@ionos.com>
17997 L:      linux-block@vger.kernel.org
17998 S:      Maintained
17999 F:      drivers/block/rnbd/
18000
18001 ROCCAT DRIVERS
18002 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
18003 S:      Maintained
18004 W:      http://sourceforge.net/projects/roccat/
18005 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
18006 F:      drivers/hid/hid-roccat*
18007 F:      include/linux/hid-roccat*
18008
18009 ROCKCHIP CRYPTO DRIVERS
18010 M:      Corentin Labbe <clabbe@baylibre.com>
18011 L:      linux-crypto@vger.kernel.org
18012 S:      Maintained
18013 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18014 F:      drivers/crypto/rockchip/
18015
18016 ROCKCHIP I2S TDM DRIVER
18017 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
18018 L:      linux-rockchip@lists.infradead.org
18019 S:      Maintained
18020 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18021 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
18022
18023 ROCKCHIP ISP V1 DRIVER
18024 M:      Dafna Hirschfeld <dafna@fastmail.com>
18025 L:      linux-media@vger.kernel.org
18026 L:      linux-rockchip@lists.infradead.org
18027 S:      Maintained
18028 F:      Documentation/admin-guide/media/rkisp1.rst
18029 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18030 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18031 F:      drivers/media/platform/rockchip/rkisp1
18032 F:      include/uapi/linux/rkisp1-config.h
18033
18034 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18035 M:      Jacob Chen <jacob-chen@iotwrt.com>
18036 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18037 L:      linux-media@vger.kernel.org
18038 L:      linux-rockchip@lists.infradead.org
18039 S:      Maintained
18040 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
18041 F:      drivers/media/platform/rockchip/rga/
18042
18043 ROCKCHIP VIDEO DECODER DRIVER
18044 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18045 L:      linux-media@vger.kernel.org
18046 L:      linux-rockchip@lists.infradead.org
18047 S:      Maintained
18048 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18049 F:      drivers/staging/media/rkvdec/
18050
18051 ROCKER DRIVER
18052 M:      Jiri Pirko <jiri@resnulli.us>
18053 L:      netdev@vger.kernel.org
18054 S:      Supported
18055 F:      drivers/net/ethernet/rocker/
18056
18057 ROCKETPORT EXPRESS/INFINITY DRIVER
18058 M:      Kevin Cernekee <cernekee@gmail.com>
18059 L:      linux-serial@vger.kernel.org
18060 S:      Odd Fixes
18061 F:      drivers/tty/serial/rp2.*
18062
18063 ROHM BD99954 CHARGER IC
18064 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18065 S:      Supported
18066 F:      drivers/power/supply/bd99954-charger.c
18067 F:      drivers/power/supply/bd99954-charger.h
18068
18069 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18070 M:      Tomasz Duszynski <tduszyns@gmail.com>
18071 S:      Maintained
18072 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18073 F:      drivers/iio/light/bh1750.c
18074
18075 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18076 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18077 L:      linux-kernel@vger.kernel.org
18078 L:      linux-renesas-soc@vger.kernel.org
18079 S:      Supported
18080 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18081 F:      drivers/gpio/gpio-bd9571mwv.c
18082 F:      drivers/mfd/bd9571mwv.c
18083 F:      drivers/regulator/bd9571mwv-regulator.c
18084 F:      include/linux/mfd/bd9571mwv.h
18085
18086 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18087 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18088 S:      Supported
18089 F:      drivers/clk/clk-bd718x7.c
18090 F:      drivers/gpio/gpio-bd71815.c
18091 F:      drivers/gpio/gpio-bd71828.c
18092 F:      drivers/mfd/rohm-bd71828.c
18093 F:      drivers/mfd/rohm-bd718x7.c
18094 F:      drivers/mfd/rohm-bd9576.c
18095 F:      drivers/regulator/bd71815-regulator.c
18096 F:      drivers/regulator/bd71828-regulator.c
18097 F:      drivers/regulator/bd718x7-regulator.c
18098 F:      drivers/regulator/bd9576-regulator.c
18099 F:      drivers/regulator/rohm-regulator.c
18100 F:      drivers/rtc/rtc-bd70528.c
18101 F:      drivers/watchdog/bd9576_wdt.c
18102 F:      include/linux/mfd/rohm-bd71815.h
18103 F:      include/linux/mfd/rohm-bd71828.h
18104 F:      include/linux/mfd/rohm-bd718x7.h
18105 F:      include/linux/mfd/rohm-bd957x.h
18106 F:      include/linux/mfd/rohm-generic.h
18107 F:      include/linux/mfd/rohm-shared.h
18108
18109 ROSE NETWORK LAYER
18110 M:      Ralf Baechle <ralf@linux-mips.org>
18111 L:      linux-hams@vger.kernel.org
18112 S:      Maintained
18113 W:      http://www.linux-ax25.org/
18114 F:      include/net/rose.h
18115 F:      include/uapi/linux/rose.h
18116 F:      net/rose/
18117
18118 ROTATION DRIVER FOR ALLWINNER A83T
18119 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18120 L:      linux-media@vger.kernel.org
18121 S:      Maintained
18122 T:      git git://linuxtv.org/media_tree.git
18123 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18124 F:      drivers/media/platform/sunxi/sun8i-rotate/
18125
18126 RPMSG TTY DRIVER
18127 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18128 L:      linux-remoteproc@vger.kernel.org
18129 S:      Maintained
18130 F:      drivers/tty/rpmsg_tty.c
18131
18132 RTL2830 MEDIA DRIVER
18133 M:      Antti Palosaari <crope@iki.fi>
18134 L:      linux-media@vger.kernel.org
18135 S:      Maintained
18136 W:      https://linuxtv.org
18137 W:      http://palosaari.fi/linux/
18138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18139 T:      git git://linuxtv.org/anttip/media_tree.git
18140 F:      drivers/media/dvb-frontends/rtl2830*
18141
18142 RTL2832 MEDIA DRIVER
18143 M:      Antti Palosaari <crope@iki.fi>
18144 L:      linux-media@vger.kernel.org
18145 S:      Maintained
18146 W:      https://linuxtv.org
18147 W:      http://palosaari.fi/linux/
18148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18149 T:      git git://linuxtv.org/anttip/media_tree.git
18150 F:      drivers/media/dvb-frontends/rtl2832*
18151
18152 RTL2832_SDR MEDIA DRIVER
18153 M:      Antti Palosaari <crope@iki.fi>
18154 L:      linux-media@vger.kernel.org
18155 S:      Maintained
18156 W:      https://linuxtv.org
18157 W:      http://palosaari.fi/linux/
18158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18159 T:      git git://linuxtv.org/anttip/media_tree.git
18160 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18161
18162 RTL8180 WIRELESS DRIVER
18163 L:      linux-wireless@vger.kernel.org
18164 S:      Orphan
18165 W:      https://wireless.wiki.kernel.org/
18166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18167 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18168
18169 RTL8187 WIRELESS DRIVER
18170 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18171 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18172 M:      Larry Finger <Larry.Finger@lwfinger.net>
18173 L:      linux-wireless@vger.kernel.org
18174 S:      Maintained
18175 W:      https://wireless.wiki.kernel.org/
18176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18177 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18178
18179 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18180 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18181 L:      linux-wireless@vger.kernel.org
18182 S:      Maintained
18183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18184 F:      drivers/net/wireless/realtek/rtl8xxxu/
18185
18186 RTRS TRANSPORT DRIVERS
18187 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18188 M:      Jack Wang <jinpu.wang@ionos.com>
18189 L:      linux-rdma@vger.kernel.org
18190 S:      Maintained
18191 F:      drivers/infiniband/ulp/rtrs/
18192
18193 RUNTIME VERIFICATION (RV)
18194 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18195 M:      Steven Rostedt <rostedt@goodmis.org>
18196 L:      linux-trace-devel@vger.kernel.org
18197 S:      Maintained
18198 F:      Documentation/trace/rv/
18199 F:      include/linux/rv.h
18200 F:      include/rv/
18201 F:      kernel/trace/rv/
18202 F:      tools/verification/
18203
18204 RUST
18205 M:      Miguel Ojeda <ojeda@kernel.org>
18206 M:      Alex Gaynor <alex.gaynor@gmail.com>
18207 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18208 R:      Boqun Feng <boqun.feng@gmail.com>
18209 R:      Gary Guo <gary@garyguo.net>
18210 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18211 L:      rust-for-linux@vger.kernel.org
18212 S:      Supported
18213 W:      https://github.com/Rust-for-Linux/linux
18214 B:      https://github.com/Rust-for-Linux/linux/issues
18215 C:      zulip://rust-for-linux.zulipchat.com
18216 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18217 F:      Documentation/rust/
18218 F:      rust/
18219 F:      samples/rust/
18220 F:      scripts/*rust*
18221 K:      \b(?i:rust)\b
18222
18223 RXRPC SOCKETS (AF_RXRPC)
18224 M:      David Howells <dhowells@redhat.com>
18225 M:      Marc Dionne <marc.dionne@auristor.com>
18226 L:      linux-afs@lists.infradead.org
18227 S:      Supported
18228 W:      https://www.infradead.org/~dhowells/kafs/
18229 F:      Documentation/networking/rxrpc.rst
18230 F:      include/keys/rxrpc-type.h
18231 F:      include/net/af_rxrpc.h
18232 F:      include/trace/events/rxrpc.h
18233 F:      include/uapi/linux/rxrpc.h
18234 F:      net/rxrpc/
18235
18236 S3 SAVAGE FRAMEBUFFER DRIVER
18237 M:      Antonino Daplas <adaplas@gmail.com>
18238 L:      linux-fbdev@vger.kernel.org
18239 S:      Maintained
18240 F:      drivers/video/fbdev/savage/
18241
18242 S390 ARCHITECTURE
18243 M:      Heiko Carstens <hca@linux.ibm.com>
18244 M:      Vasily Gorbik <gor@linux.ibm.com>
18245 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18246 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18247 R:      Sven Schnelle <svens@linux.ibm.com>
18248 L:      linux-s390@vger.kernel.org
18249 S:      Supported
18250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18251 F:      Documentation/driver-api/s390-drivers.rst
18252 F:      Documentation/s390/
18253 F:      arch/s390/
18254 F:      drivers/s390/
18255 F:      drivers/watchdog/diag288_wdt.c
18256
18257 S390 COMMON I/O LAYER
18258 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18259 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18260 L:      linux-s390@vger.kernel.org
18261 S:      Supported
18262 F:      drivers/s390/cio/
18263
18264 S390 DASD DRIVER
18265 M:      Stefan Haberland <sth@linux.ibm.com>
18266 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18267 L:      linux-s390@vger.kernel.org
18268 S:      Supported
18269 F:      block/partitions/ibm.c
18270 F:      drivers/s390/block/dasd*
18271 F:      include/linux/dasd_mod.h
18272
18273 S390 IOMMU (PCI)
18274 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18275 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18276 L:      linux-s390@vger.kernel.org
18277 S:      Supported
18278 F:      drivers/iommu/s390-iommu.c
18279
18280 S390 IUCV NETWORK LAYER
18281 M:      Alexandra Winter <wintera@linux.ibm.com>
18282 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18283 L:      linux-s390@vger.kernel.org
18284 L:      netdev@vger.kernel.org
18285 S:      Supported
18286 F:      drivers/s390/net/*iucv*
18287 F:      include/net/iucv/
18288 F:      net/iucv/
18289
18290 S390 NETWORK DRIVERS
18291 M:      Alexandra Winter <wintera@linux.ibm.com>
18292 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18293 L:      linux-s390@vger.kernel.org
18294 L:      netdev@vger.kernel.org
18295 S:      Supported
18296 F:      drivers/s390/net/
18297
18298 S390 MM
18299 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18300 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18301 L:      linux-s390@vger.kernel.org
18302 S:      Supported
18303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18304 F:      arch/s390/include/asm/pgtable.h
18305 F:      arch/s390/mm
18306
18307 S390 PCI SUBSYSTEM
18308 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18309 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18310 L:      linux-s390@vger.kernel.org
18311 S:      Supported
18312 F:      arch/s390/pci/
18313 F:      drivers/pci/hotplug/s390_pci_hpc.c
18314 F:      Documentation/s390/pci.rst
18315
18316 S390 SCM DRIVER
18317 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18318 L:      linux-s390@vger.kernel.org
18319 S:      Supported
18320 F:      drivers/s390/block/scm*
18321 F:      drivers/s390/cio/scm.c
18322
18323 S390 VFIO AP DRIVER
18324 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18325 M:      Halil Pasic <pasic@linux.ibm.com>
18326 M:      Jason Herne <jjherne@linux.ibm.com>
18327 L:      linux-s390@vger.kernel.org
18328 S:      Supported
18329 F:      Documentation/s390/vfio-ap*
18330 F:      drivers/s390/crypto/vfio_ap*
18331
18332 S390 VFIO-CCW DRIVER
18333 M:      Eric Farman <farman@linux.ibm.com>
18334 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18335 R:      Halil Pasic <pasic@linux.ibm.com>
18336 L:      linux-s390@vger.kernel.org
18337 L:      kvm@vger.kernel.org
18338 S:      Supported
18339 F:      Documentation/s390/vfio-ccw.rst
18340 F:      drivers/s390/cio/vfio_ccw*
18341 F:      include/uapi/linux/vfio_ccw.h
18342
18343 S390 VFIO-PCI DRIVER
18344 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18345 M:      Eric Farman <farman@linux.ibm.com>
18346 L:      linux-s390@vger.kernel.org
18347 L:      kvm@vger.kernel.org
18348 S:      Supported
18349 F:      arch/s390/kvm/pci*
18350 F:      drivers/vfio/pci/vfio_pci_zdev.c
18351 F:      include/uapi/linux/vfio_zdev.h
18352
18353 S390 ZCRYPT DRIVER
18354 M:      Harald Freudenberger <freude@linux.ibm.com>
18355 L:      linux-s390@vger.kernel.org
18356 S:      Supported
18357 F:      drivers/s390/crypto/
18358
18359 S390 ZFCP DRIVER
18360 M:      Steffen Maier <maier@linux.ibm.com>
18361 M:      Benjamin Block <bblock@linux.ibm.com>
18362 L:      linux-s390@vger.kernel.org
18363 S:      Supported
18364 F:      drivers/s390/scsi/zfcp_*
18365
18366 SAA6588 RDS RECEIVER DRIVER
18367 M:      Hans Verkuil <hverkuil@xs4all.nl>
18368 L:      linux-media@vger.kernel.org
18369 S:      Odd Fixes
18370 W:      https://linuxtv.org
18371 T:      git git://linuxtv.org/media_tree.git
18372 F:      drivers/media/i2c/saa6588*
18373
18374 SAA7134 VIDEO4LINUX DRIVER
18375 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18376 L:      linux-media@vger.kernel.org
18377 S:      Odd fixes
18378 W:      https://linuxtv.org
18379 T:      git git://linuxtv.org/media_tree.git
18380 F:      Documentation/driver-api/media/drivers/saa7134*
18381 F:      drivers/media/pci/saa7134/
18382
18383 SAA7146 VIDEO4LINUX-2 DRIVER
18384 M:      Hans Verkuil <hverkuil@xs4all.nl>
18385 L:      linux-media@vger.kernel.org
18386 S:      Maintained
18387 T:      git git://linuxtv.org/media_tree.git
18388 F:      drivers/media/common/saa7146/
18389 F:      drivers/media/pci/saa7146/
18390 F:      include/media/drv-intf/saa7146*
18391
18392 SAFESETID SECURITY MODULE
18393 M:      Micah Morton <mortonm@chromium.org>
18394 S:      Supported
18395 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18396 F:      security/safesetid/
18397
18398 SAMSUNG AUDIO (ASoC) DRIVERS
18399 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18400 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18401 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18402 S:      Supported
18403 B:      mailto:linux-samsung-soc@vger.kernel.org
18404 F:      Documentation/devicetree/bindings/sound/samsung*
18405 F:      sound/soc/samsung/
18406
18407 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18408 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18409 L:      linux-crypto@vger.kernel.org
18410 L:      linux-samsung-soc@vger.kernel.org
18411 S:      Maintained
18412 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18413 F:      drivers/crypto/exynos-rng.c
18414
18415 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18416 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18417 L:      linux-samsung-soc@vger.kernel.org
18418 S:      Maintained
18419 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18420 F:      drivers/char/hw_random/exynos-trng.c
18421
18422 SAMSUNG FRAMEBUFFER DRIVER
18423 M:      Jingoo Han <jingoohan1@gmail.com>
18424 L:      linux-fbdev@vger.kernel.org
18425 S:      Maintained
18426 F:      drivers/video/fbdev/s3c-fb.c
18427
18428 SAMSUNG INTERCONNECT DRIVERS
18429 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18430 M:      Artur Świgoń <a.swigon@samsung.com>
18431 L:      linux-pm@vger.kernel.org
18432 L:      linux-samsung-soc@vger.kernel.org
18433 S:      Supported
18434 F:      drivers/interconnect/samsung/
18435
18436 SAMSUNG LAPTOP DRIVER
18437 M:      Corentin Chary <corentin.chary@gmail.com>
18438 L:      platform-driver-x86@vger.kernel.org
18439 S:      Maintained
18440 F:      drivers/platform/x86/samsung-laptop.c
18441
18442 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18443 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18444 L:      linux-kernel@vger.kernel.org
18445 L:      linux-samsung-soc@vger.kernel.org
18446 S:      Supported
18447 B:      mailto:linux-samsung-soc@vger.kernel.org
18448 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18449 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18450 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18451 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18452 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18453 F:      drivers/clk/clk-s2mps11.c
18454 F:      drivers/mfd/sec*.c
18455 F:      drivers/regulator/s2m*.c
18456 F:      drivers/regulator/s5m*.c
18457 F:      drivers/rtc/rtc-s5m.c
18458 F:      include/linux/mfd/samsung/
18459
18460 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18461 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18462 L:      linux-media@vger.kernel.org
18463 L:      linux-samsung-soc@vger.kernel.org
18464 S:      Maintained
18465 F:      drivers/media/platform/samsung/s3c-camif/
18466 F:      include/media/drv-intf/s3c_camif.h
18467
18468 SAMSUNG S3FWRN5 NFC DRIVER
18469 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18470 L:      linux-nfc@lists.01.org (subscribers-only)
18471 S:      Maintained
18472 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18473 F:      drivers/nfc/s3fwrn5
18474
18475 SAMSUNG S5C73M3 CAMERA DRIVER
18476 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18477 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18478 L:      linux-media@vger.kernel.org
18479 S:      Supported
18480 F:      Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
18481 F:      drivers/media/i2c/s5c73m3/*
18482
18483 SAMSUNG S5K5BAF CAMERA DRIVER
18484 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18485 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18486 L:      linux-media@vger.kernel.org
18487 S:      Supported
18488 F:      drivers/media/i2c/s5k5baf.c
18489
18490 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18491 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18492 M:      Vladimir Zapolskiy <vz@mleia.com>
18493 L:      linux-crypto@vger.kernel.org
18494 L:      linux-samsung-soc@vger.kernel.org
18495 S:      Maintained
18496 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18497 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18498 F:      drivers/crypto/s5p-sss.c
18499
18500 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18501 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18502 L:      linux-media@vger.kernel.org
18503 S:      Supported
18504 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18505 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
18506 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
18507 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
18508 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
18509 F:      Documentation/devicetree/bindings/media/samsung,fimc.yaml
18510 F:      drivers/media/platform/samsung/exynos4-is/
18511
18512 SAMSUNG SOC CLOCK DRIVERS
18513 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18514 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18515 M:      Tomasz Figa <tomasz.figa@gmail.com>
18516 M:      Chanwoo Choi <cw00.choi@samsung.com>
18517 R:      Alim Akhtar <alim.akhtar@samsung.com>
18518 L:      linux-samsung-soc@vger.kernel.org
18519 S:      Supported
18520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18522 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18523 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18524 F:      drivers/clk/samsung/
18525 F:      include/dt-bindings/clock/exynos*.h
18526 F:      include/dt-bindings/clock/s5p*.h
18527 F:      include/dt-bindings/clock/samsung,*.h
18528 F:      include/linux/clk/samsung.h
18529
18530 SAMSUNG SPI DRIVERS
18531 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18532 M:      Andi Shyti <andi@etezian.org>
18533 L:      linux-spi@vger.kernel.org
18534 L:      linux-samsung-soc@vger.kernel.org
18535 S:      Maintained
18536 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18537 F:      drivers/spi/spi-s3c*
18538 F:      include/linux/platform_data/spi-s3c64xx.h
18539
18540 SAMSUNG SXGBE DRIVERS
18541 M:      Byungho An <bh74.an@samsung.com>
18542 L:      netdev@vger.kernel.org
18543 S:      Supported
18544 F:      drivers/net/ethernet/samsung/sxgbe/
18545
18546 SAMSUNG THERMAL DRIVER
18547 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18548 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18549 L:      linux-pm@vger.kernel.org
18550 L:      linux-samsung-soc@vger.kernel.org
18551 S:      Maintained
18552 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18553 F:      drivers/thermal/samsung/
18554
18555 SAMSUNG USB2 PHY DRIVER
18556 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18557 L:      linux-kernel@vger.kernel.org
18558 S:      Supported
18559 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18560 F:      Documentation/driver-api/phy/samsung-usb2.rst
18561 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18562 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18563 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18564 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18565 F:      drivers/phy/samsung/phy-samsung-usb2.c
18566 F:      drivers/phy/samsung/phy-samsung-usb2.h
18567
18568 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18569 M:      Paul Barker <paul.barker@sancloud.com>
18570 R:      Marc Murphy <marc.murphy@sancloud.com>
18571 S:      Supported
18572 F:      arch/arm/boot/dts/am335x-sancloud*
18573
18574 SC1200 WDT DRIVER
18575 M:      Zwane Mwaikambo <zwanem@gmail.com>
18576 S:      Maintained
18577 F:      drivers/watchdog/sc1200wdt.c
18578
18579 SCHEDULER
18580 M:      Ingo Molnar <mingo@redhat.com>
18581 M:      Peter Zijlstra <peterz@infradead.org>
18582 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18583 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18584 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18585 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18586 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18587 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18588 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18589 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18590 L:      linux-kernel@vger.kernel.org
18591 S:      Maintained
18592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18593 F:      include/linux/preempt.h
18594 F:      include/linux/sched.h
18595 F:      include/linux/wait.h
18596 F:      include/uapi/linux/sched.h
18597 F:      kernel/sched/
18598
18599 SCR24X CHIP CARD INTERFACE DRIVER
18600 M:      Lubomir Rintel <lkundrak@v3.sk>
18601 S:      Supported
18602 F:      drivers/char/pcmcia/scr24x_cs.c
18603
18604 SCSI RDMA PROTOCOL (SRP) INITIATOR
18605 M:      Bart Van Assche <bvanassche@acm.org>
18606 L:      linux-rdma@vger.kernel.org
18607 S:      Supported
18608 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18609 F:      drivers/infiniband/ulp/srp/
18610 F:      include/scsi/srp.h
18611
18612 SCSI RDMA PROTOCOL (SRP) TARGET
18613 M:      Bart Van Assche <bvanassche@acm.org>
18614 L:      linux-rdma@vger.kernel.org
18615 L:      target-devel@vger.kernel.org
18616 S:      Supported
18617 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18618 F:      drivers/infiniband/ulp/srpt/
18619
18620 SCSI SG DRIVER
18621 M:      Doug Gilbert <dgilbert@interlog.com>
18622 L:      linux-scsi@vger.kernel.org
18623 S:      Maintained
18624 W:      http://sg.danny.cz/sg
18625 F:      Documentation/scsi/scsi-generic.rst
18626 F:      drivers/scsi/sg.c
18627 F:      include/scsi/sg.h
18628
18629 SCSI SUBSYSTEM
18630 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18631 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18632 L:      linux-scsi@vger.kernel.org
18633 S:      Maintained
18634 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18637 F:      Documentation/devicetree/bindings/scsi/
18638 F:      drivers/scsi/
18639 F:      drivers/ufs/
18640 F:      include/scsi/
18641
18642 SCSI TAPE DRIVER
18643 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18644 L:      linux-scsi@vger.kernel.org
18645 S:      Maintained
18646 F:      Documentation/scsi/st.rst
18647 F:      drivers/scsi/st.*
18648 F:      drivers/scsi/st_*.h
18649
18650 SCSI TARGET CORE USER DRIVER
18651 M:      Bodo Stroesser <bostroesser@gmail.com>
18652 L:      linux-scsi@vger.kernel.org
18653 L:      target-devel@vger.kernel.org
18654 S:      Supported
18655 F:      Documentation/target/tcmu-design.rst
18656 F:      drivers/target/target_core_user.c
18657 F:      include/uapi/linux/target_core_user.h
18658
18659 SCSI TARGET SUBSYSTEM
18660 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18661 L:      linux-scsi@vger.kernel.org
18662 L:      target-devel@vger.kernel.org
18663 S:      Supported
18664 W:      http://www.linux-iscsi.org
18665 Q:      https://patchwork.kernel.org/project/target-devel/list/
18666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18667 F:      Documentation/target/
18668 F:      drivers/target/
18669 F:      include/target/
18670
18671 SCTP PROTOCOL
18672 M:      Neil Horman <nhorman@tuxdriver.com>
18673 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18674 M:      Xin Long <lucien.xin@gmail.com>
18675 L:      linux-sctp@vger.kernel.org
18676 S:      Maintained
18677 W:      http://lksctp.sourceforge.net
18678 F:      Documentation/networking/sctp.rst
18679 F:      include/linux/sctp.h
18680 F:      include/net/sctp/
18681 F:      include/uapi/linux/sctp.h
18682 F:      net/sctp/
18683
18684 SCx200 CPU SUPPORT
18685 M:      Jim Cromie <jim.cromie@gmail.com>
18686 S:      Odd Fixes
18687 F:      Documentation/i2c/busses/scx200_acb.rst
18688 F:      arch/x86/platform/scx200/
18689 F:      drivers/i2c/busses/scx200*
18690 F:      drivers/mtd/maps/scx200_docflash.c
18691 F:      drivers/watchdog/scx200_wdt.c
18692 F:      include/linux/scx200.h
18693
18694 SCx200 GPIO DRIVER
18695 M:      Jim Cromie <jim.cromie@gmail.com>
18696 S:      Maintained
18697 F:      drivers/char/scx200_gpio.c
18698 F:      include/linux/scx200_gpio.h
18699
18700 SCx200 HRT CLOCKSOURCE DRIVER
18701 M:      Jim Cromie <jim.cromie@gmail.com>
18702 S:      Maintained
18703 F:      drivers/clocksource/scx200_hrt.c
18704
18705 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18706 M:      Sascha Sommer <saschasommer@freenet.de>
18707 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18708 S:      Maintained
18709 F:      drivers/mmc/host/sdricoh_cs.c
18710
18711 SECO BOARDS CEC DRIVER
18712 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18713 S:      Maintained
18714 F:      drivers/media/cec/platform/seco/seco-cec.c
18715 F:      drivers/media/cec/platform/seco/seco-cec.h
18716
18717 SECURE COMPUTING
18718 M:      Kees Cook <keescook@chromium.org>
18719 R:      Andy Lutomirski <luto@amacapital.net>
18720 R:      Will Drewry <wad@chromium.org>
18721 S:      Supported
18722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18723 F:      Documentation/userspace-api/seccomp_filter.rst
18724 F:      include/linux/seccomp.h
18725 F:      include/uapi/linux/seccomp.h
18726 F:      kernel/seccomp.c
18727 F:      tools/testing/selftests/kselftest_harness.h
18728 F:      tools/testing/selftests/seccomp/*
18729 K:      \bsecure_computing
18730 K:      \bTIF_SECCOMP\b
18731
18732 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18733 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18734 M:      Al Cooper <alcooperx@gmail.com>
18735 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18736 L:      linux-mmc@vger.kernel.org
18737 S:      Maintained
18738 F:      drivers/mmc/host/sdhci-brcmstb*
18739
18740 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18741 M:      Adrian Hunter <adrian.hunter@intel.com>
18742 L:      linux-mmc@vger.kernel.org
18743 S:      Supported
18744 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18745 F:      drivers/mmc/host/sdhci*
18746
18747 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18748 M:      Eugen Hristev <eugen.hristev@microchip.com>
18749 L:      linux-mmc@vger.kernel.org
18750 S:      Supported
18751 F:      drivers/mmc/host/sdhci-of-at91.c
18752
18753 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18754 M:      Ben Dooks <ben-linux@fluff.org>
18755 M:      Jaehoon Chung <jh80.chung@samsung.com>
18756 L:      linux-mmc@vger.kernel.org
18757 S:      Maintained
18758 F:      drivers/mmc/host/sdhci-s3c*
18759
18760 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18761 M:      Viresh Kumar <vireshk@kernel.org>
18762 L:      linux-mmc@vger.kernel.org
18763 S:      Maintained
18764 F:      drivers/mmc/host/sdhci-spear.c
18765
18766 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18767 M:      Vignesh Raghavendra <vigneshr@ti.com>
18768 L:      linux-mmc@vger.kernel.org
18769 S:      Maintained
18770 F:      drivers/mmc/host/sdhci-omap.c
18771
18772 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18773 M:      Haibo Chen <haibo.chen@nxp.com>
18774 L:      linux-imx@nxp.com
18775 L:      linux-mmc@vger.kernel.org
18776 S:      Maintained
18777 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18778
18779 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18780 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18781 L:      linux-block@vger.kernel.org
18782 S:      Supported
18783 F:      block/opal_proto.h
18784 F:      block/sed*
18785 F:      include/linux/sed*
18786 F:      include/uapi/linux/sed*
18787
18788 SECURITY CONTACT
18789 M:      Security Officers <security@kernel.org>
18790 S:      Supported
18791 F:      Documentation/admin-guide/security-bugs.rst
18792
18793 SECURITY SUBSYSTEM
18794 M:      Paul Moore <paul@paul-moore.com>
18795 M:      James Morris <jmorris@namei.org>
18796 M:      "Serge E. Hallyn" <serge@hallyn.com>
18797 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18798 S:      Supported
18799 W:      http://kernsec.org/
18800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18801 F:      security/
18802 X:      security/selinux/
18803
18804 SELINUX SECURITY MODULE
18805 M:      Paul Moore <paul@paul-moore.com>
18806 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18807 M:      Eric Paris <eparis@parisplace.org>
18808 L:      selinux@vger.kernel.org
18809 S:      Supported
18810 W:      https://selinuxproject.org
18811 W:      https://github.com/SELinuxProject
18812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18813 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18814 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18815 F:      Documentation/admin-guide/LSM/SELinux.rst
18816 F:      include/trace/events/avc.h
18817 F:      include/uapi/linux/selinux_netlink.h
18818 F:      scripts/selinux/
18819 F:      security/selinux/
18820
18821 SENSABLE PHANTOM
18822 M:      Jiri Slaby <jirislaby@kernel.org>
18823 S:      Maintained
18824 F:      drivers/misc/phantom.c
18825 F:      include/uapi/linux/phantom.h
18826
18827 SENSEAIR SUNRISE 006-0-0007
18828 M:      Jacopo Mondi <jacopo@jmondi.org>
18829 S:      Maintained
18830 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18831 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18832 F:      drivers/iio/chemical/sunrise_co2.c
18833
18834 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18835 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18836 S:      Maintained
18837 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18838 F:      drivers/iio/chemical/scd30.h
18839 F:      drivers/iio/chemical/scd30_core.c
18840 F:      drivers/iio/chemical/scd30_i2c.c
18841 F:      drivers/iio/chemical/scd30_serial.c
18842
18843 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18844 M:      Roan van Dijk <roan@protonic.nl>
18845 S:      Maintained
18846 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18847 F:      drivers/iio/chemical/scd4x.c
18848
18849 SENSIRION SGP40 GAS SENSOR DRIVER
18850 M:      Andreas Klinger <ak@it-klinger.de>
18851 S:      Maintained
18852 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18853 F:      drivers/iio/chemical/sgp40.c
18854
18855 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18856 M:      Tomasz Duszynski <tduszyns@gmail.com>
18857 S:      Maintained
18858 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18859 F:      drivers/iio/chemical/sps30.c
18860 F:      drivers/iio/chemical/sps30_i2c.c
18861 F:      drivers/iio/chemical/sps30_serial.c
18862
18863 SERIAL DEVICE BUS
18864 M:      Rob Herring <robh@kernel.org>
18865 L:      linux-serial@vger.kernel.org
18866 S:      Maintained
18867 F:      Documentation/devicetree/bindings/serial/serial.yaml
18868 F:      drivers/tty/serdev/
18869 F:      include/linux/serdev.h
18870
18871 SERIAL DRIVERS
18872 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18873 L:      linux-serial@vger.kernel.org
18874 S:      Maintained
18875 F:      Documentation/devicetree/bindings/serial/
18876 F:      drivers/tty/serial/
18877
18878 SERIAL IR RECEIVER
18879 M:      Sean Young <sean@mess.org>
18880 L:      linux-media@vger.kernel.org
18881 S:      Maintained
18882 F:      drivers/media/rc/serial_ir.c
18883
18884 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18885 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18886 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18887 S:      Maintained
18888 F:      Documentation/devicetree/bindings/slimbus/
18889 F:      drivers/slimbus/
18890 F:      include/linux/slimbus.h
18891
18892 SFC NETWORK DRIVER
18893 M:      Edward Cree <ecree.xilinx@gmail.com>
18894 M:      Martin Habets <habetsm.xilinx@gmail.com>
18895 L:      netdev@vger.kernel.org
18896 S:      Supported
18897 F:      Documentation/networking/devlink/sfc.rst
18898 F:      drivers/net/ethernet/sfc/
18899
18900 SFF/SFP/SFP+ MODULE SUPPORT
18901 M:      Russell King <linux@armlinux.org.uk>
18902 L:      netdev@vger.kernel.org
18903 S:      Maintained
18904 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18905 F:      drivers/net/phy/phylink.c
18906 F:      drivers/net/phy/sfp*
18907 F:      include/linux/mdio/mdio-i2c.h
18908 F:      include/linux/phylink.h
18909 F:      include/linux/sfp.h
18910 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)
18911
18912 SGI GRU DRIVER
18913 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18914 S:      Maintained
18915 F:      drivers/misc/sgi-gru/
18916
18917 SGI XP/XPC/XPNET DRIVER
18918 M:      Robin Holt <robinmholt@gmail.com>
18919 M:      Steve Wahl <steve.wahl@hpe.com>
18920 R:      Mike Travis <mike.travis@hpe.com>
18921 S:      Maintained
18922 F:      drivers/misc/sgi-xp/
18923
18924 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18925 M:      Karsten Graul <kgraul@linux.ibm.com>
18926 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18927 M:      Jan Karcher <jaka@linux.ibm.com>
18928 L:      linux-s390@vger.kernel.org
18929 S:      Supported
18930 F:      net/smc/
18931
18932 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18933 M:      Linus Walleij <linus.walleij@linaro.org>
18934 L:      linux-iio@vger.kernel.org
18935 S:      Maintained
18936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18937 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18938 F:      drivers/iio/light/gp2ap002.c
18939
18940 SHARP RJ54N1CB0C SENSOR DRIVER
18941 M:      Jacopo Mondi <jacopo@jmondi.org>
18942 L:      linux-media@vger.kernel.org
18943 S:      Odd fixes
18944 T:      git git://linuxtv.org/media_tree.git
18945 F:      drivers/media/i2c/rj54n1cb0c.c
18946 F:      include/media/i2c/rj54n1cb0c.h
18947
18948 SH_VOU V4L2 OUTPUT DRIVER
18949 L:      linux-media@vger.kernel.org
18950 S:      Orphan
18951 F:      drivers/media/platform/renesas/sh_vou.c
18952 F:      include/media/drv-intf/sh_vou.h
18953
18954 SI2157 MEDIA DRIVER
18955 M:      Antti Palosaari <crope@iki.fi>
18956 L:      linux-media@vger.kernel.org
18957 S:      Maintained
18958 W:      https://linuxtv.org
18959 W:      http://palosaari.fi/linux/
18960 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18961 T:      git git://linuxtv.org/anttip/media_tree.git
18962 F:      drivers/media/tuners/si2157*
18963
18964 SI2165 MEDIA DRIVER
18965 M:      Matthias Schwarzott <zzam@gentoo.org>
18966 L:      linux-media@vger.kernel.org
18967 S:      Maintained
18968 W:      https://linuxtv.org
18969 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18970 F:      drivers/media/dvb-frontends/si2165*
18971
18972 SI2168 MEDIA DRIVER
18973 M:      Antti Palosaari <crope@iki.fi>
18974 L:      linux-media@vger.kernel.org
18975 S:      Maintained
18976 W:      https://linuxtv.org
18977 W:      http://palosaari.fi/linux/
18978 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18979 T:      git git://linuxtv.org/anttip/media_tree.git
18980 F:      drivers/media/dvb-frontends/si2168*
18981
18982 SI470X FM RADIO RECEIVER I2C DRIVER
18983 M:      Hans Verkuil <hverkuil@xs4all.nl>
18984 L:      linux-media@vger.kernel.org
18985 S:      Odd Fixes
18986 W:      https://linuxtv.org
18987 T:      git git://linuxtv.org/media_tree.git
18988 F:      Documentation/devicetree/bindings/media/silabs,si470x.yaml
18989 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18990
18991 SI470X FM RADIO RECEIVER USB DRIVER
18992 M:      Hans Verkuil <hverkuil@xs4all.nl>
18993 L:      linux-media@vger.kernel.org
18994 S:      Maintained
18995 W:      https://linuxtv.org
18996 T:      git git://linuxtv.org/media_tree.git
18997 F:      drivers/media/radio/si470x/radio-si470x-common.c
18998 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18999 F:      drivers/media/radio/si470x/radio-si470x.h
19000
19001 SI4713 FM RADIO TRANSMITTER I2C DRIVER
19002 M:      Eduardo Valentin <edubezval@gmail.com>
19003 L:      linux-media@vger.kernel.org
19004 S:      Odd Fixes
19005 W:      https://linuxtv.org
19006 T:      git git://linuxtv.org/media_tree.git
19007 F:      drivers/media/radio/si4713/si4713.?
19008
19009 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19010 M:      Eduardo Valentin <edubezval@gmail.com>
19011 L:      linux-media@vger.kernel.org
19012 S:      Odd Fixes
19013 W:      https://linuxtv.org
19014 T:      git git://linuxtv.org/media_tree.git
19015 F:      drivers/media/radio/si4713/radio-platform-si4713.c
19016
19017 SI4713 FM RADIO TRANSMITTER USB DRIVER
19018 M:      Hans Verkuil <hverkuil@xs4all.nl>
19019 L:      linux-media@vger.kernel.org
19020 S:      Maintained
19021 W:      https://linuxtv.org
19022 T:      git git://linuxtv.org/media_tree.git
19023 F:      drivers/media/radio/si4713/radio-usb-si4713.c
19024
19025 SIANO DVB DRIVER
19026 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19027 L:      linux-media@vger.kernel.org
19028 S:      Odd fixes
19029 W:      https://linuxtv.org
19030 T:      git git://linuxtv.org/media_tree.git
19031 F:      drivers/media/common/siano/
19032 F:      drivers/media/mmc/siano/
19033 F:      drivers/media/usb/siano/
19034 F:      drivers/media/usb/siano/
19035
19036 SIFIVE DRIVERS
19037 M:      Palmer Dabbelt <palmer@dabbelt.com>
19038 M:      Paul Walmsley <paul.walmsley@sifive.com>
19039 L:      linux-riscv@lists.infradead.org
19040 S:      Supported
19041 N:      sifive
19042 K:      [^@]sifive
19043
19044 SIFIVE FU540 SYSTEM-ON-CHIP
19045 M:      Paul Walmsley <paul.walmsley@sifive.com>
19046 M:      Palmer Dabbelt <palmer@dabbelt.com>
19047 L:      linux-riscv@lists.infradead.org
19048 S:      Supported
19049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19050 N:      fu540
19051 K:      fu540
19052
19053 SIFIVE PDMA DRIVER
19054 M:      Green Wan <green.wan@sifive.com>
19055 S:      Maintained
19056 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19057 F:      drivers/dma/sf-pdma/
19058
19059 SIFIVE SOC DRIVERS
19060 M:      Conor Dooley <conor@kernel.org>
19061 L:      linux-riscv@lists.infradead.org
19062 S:      Maintained
19063 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19064 F:      drivers/soc/sifive/
19065
19066 SILEAD TOUCHSCREEN DRIVER
19067 M:      Hans de Goede <hdegoede@redhat.com>
19068 L:      linux-input@vger.kernel.org
19069 L:      platform-driver-x86@vger.kernel.org
19070 S:      Maintained
19071 F:      drivers/input/touchscreen/silead.c
19072 F:      drivers/platform/x86/touchscreen_dmi.c
19073
19074 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19075 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
19076 S:      Supported
19077 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19078 F:      drivers/net/wireless/silabs/wfx/
19079
19080 SILICON MOTION SM712 FRAME BUFFER DRIVER
19081 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19082 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19083 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19084 L:      linux-fbdev@vger.kernel.org
19085 S:      Maintained
19086 F:      Documentation/fb/sm712fb.rst
19087 F:      drivers/video/fbdev/sm712*
19088
19089 SILVACO I3C DUAL-ROLE MASTER
19090 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19091 M:      Conor Culhane <conor.culhane@silvaco.com>
19092 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19093 S:      Maintained
19094 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19095 F:      drivers/i3c/master/svc-i3c-master.c
19096
19097 SIMPLEFB FB DRIVER
19098 M:      Hans de Goede <hdegoede@redhat.com>
19099 L:      linux-fbdev@vger.kernel.org
19100 S:      Maintained
19101 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19102 F:      drivers/video/fbdev/simplefb.c
19103 F:      include/linux/platform_data/simplefb.h
19104
19105 SIMTEC EB110ATX (Chalice CATS)
19106 M:      Simtec Linux Team <linux@simtec.co.uk>
19107 S:      Supported
19108 W:      http://www.simtec.co.uk/products/EB110ATX/
19109
19110 SIOX
19111 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19112 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19113 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19114 S:      Supported
19115 F:      drivers/gpio/gpio-siox.c
19116 F:      drivers/siox/*
19117 F:      include/trace/events/siox.h
19118
19119 SIPHASH PRF ROUTINES
19120 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19121 S:      Maintained
19122 F:      include/linux/siphash.h
19123 F:      lib/siphash.c
19124 F:      lib/siphash_kunit.c
19125
19126 SIS 190 ETHERNET DRIVER
19127 M:      Francois Romieu <romieu@fr.zoreil.com>
19128 L:      netdev@vger.kernel.org
19129 S:      Maintained
19130 F:      drivers/net/ethernet/sis/sis190.c
19131
19132 SIS 900/7016 FAST ETHERNET DRIVER
19133 M:      Daniele Venzano <venza@brownhat.org>
19134 L:      netdev@vger.kernel.org
19135 S:      Maintained
19136 W:      http://www.brownhat.org/sis900.html
19137 F:      drivers/net/ethernet/sis/sis900.*
19138
19139 SIS FRAMEBUFFER DRIVER
19140 M:      Thomas Winischhofer <thomas@winischhofer.net>
19141 S:      Maintained
19142 W:      http://www.winischhofer.net/linuxsisvga.shtml
19143 F:      Documentation/fb/sisfb.rst
19144 F:      drivers/video/fbdev/sis/
19145 F:      include/video/sisfb.h
19146
19147 SIS I2C TOUCHSCREEN DRIVER
19148 M:      Mika Penttilä <mpenttil@redhat.com>
19149 L:      linux-input@vger.kernel.org
19150 S:      Maintained
19151 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19152 F:      drivers/input/touchscreen/sis_i2c.c
19153
19154 SIS USB2VGA DRIVER
19155 M:      Thomas Winischhofer <thomas@winischhofer.net>
19156 S:      Maintained
19157 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19158 F:      drivers/usb/misc/sisusbvga/
19159
19160 SL28 CPLD MFD DRIVER
19161 M:      Michael Walle <michael@walle.cc>
19162 S:      Maintained
19163 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19164 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19165 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19166 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19167 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19168 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19169 F:      drivers/gpio/gpio-sl28cpld.c
19170 F:      drivers/hwmon/sl28cpld-hwmon.c
19171 F:      drivers/irqchip/irq-sl28cpld.c
19172 F:      drivers/pwm/pwm-sl28cpld.c
19173 F:      drivers/watchdog/sl28cpld_wdt.c
19174
19175 SLAB ALLOCATOR
19176 M:      Christoph Lameter <cl@linux.com>
19177 M:      Pekka Enberg <penberg@kernel.org>
19178 M:      David Rientjes <rientjes@google.com>
19179 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19180 M:      Andrew Morton <akpm@linux-foundation.org>
19181 M:      Vlastimil Babka <vbabka@suse.cz>
19182 R:      Roman Gushchin <roman.gushchin@linux.dev>
19183 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19184 L:      linux-mm@kvack.org
19185 S:      Maintained
19186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19187 F:      include/linux/sl?b*.h
19188 F:      mm/sl?b*
19189
19190 SLCAN CAN NETWORK DRIVER
19191 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19192 L:      linux-can@vger.kernel.org
19193 S:      Maintained
19194 F:      drivers/net/can/slcan/
19195
19196 SLEEPABLE READ-COPY UPDATE (SRCU)
19197 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19198 M:      "Paul E. McKenney" <paulmck@kernel.org>
19199 M:      Josh Triplett <josh@joshtriplett.org>
19200 R:      Steven Rostedt <rostedt@goodmis.org>
19201 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19202 L:      rcu@vger.kernel.org
19203 S:      Supported
19204 W:      http://www.rdrop.com/users/paulmck/RCU/
19205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19206 F:      include/linux/srcu*.h
19207 F:      kernel/rcu/srcu*.c
19208
19209 SMACK SECURITY MODULE
19210 M:      Casey Schaufler <casey@schaufler-ca.com>
19211 L:      linux-security-module@vger.kernel.org
19212 S:      Maintained
19213 W:      http://schaufler-ca.com
19214 T:      git git://github.com/cschaufler/smack-next
19215 F:      Documentation/admin-guide/LSM/Smack.rst
19216 F:      security/smack/
19217
19218 SMC91x ETHERNET DRIVER
19219 M:      Nicolas Pitre <nico@fluxnic.net>
19220 S:      Odd Fixes
19221 F:      drivers/net/ethernet/smsc/smc91x.*
19222
19223 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19224 M:      Mark Rutland <mark.rutland@arm.com>
19225 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19226 M:      Sudeep Holla <sudeep.holla@arm.com>
19227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19228 S:      Maintained
19229 F:      drivers/firmware/smccc/
19230 F:      include/linux/arm-smccc.h
19231
19232 SMM665 HARDWARE MONITOR DRIVER
19233 M:      Guenter Roeck <linux@roeck-us.net>
19234 L:      linux-hwmon@vger.kernel.org
19235 S:      Maintained
19236 F:      Documentation/hwmon/smm665.rst
19237 F:      drivers/hwmon/smm665.c
19238
19239 SMSC EMC2103 HARDWARE MONITOR DRIVER
19240 M:      Steve Glendinning <steve.glendinning@shawell.net>
19241 L:      linux-hwmon@vger.kernel.org
19242 S:      Maintained
19243 F:      Documentation/hwmon/emc2103.rst
19244 F:      drivers/hwmon/emc2103.c
19245
19246 SMSC SCH5627 HARDWARE MONITOR DRIVER
19247 M:      Hans de Goede <hdegoede@redhat.com>
19248 L:      linux-hwmon@vger.kernel.org
19249 S:      Supported
19250 F:      Documentation/hwmon/sch5627.rst
19251 F:      drivers/hwmon/sch5627.c
19252
19253 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19254 M:      Steve Glendinning <steve.glendinning@shawell.net>
19255 L:      linux-fbdev@vger.kernel.org
19256 S:      Maintained
19257 F:      drivers/video/fbdev/smscufx.c
19258
19259 SMSC47B397 HARDWARE MONITOR DRIVER
19260 M:      Jean Delvare <jdelvare@suse.com>
19261 L:      linux-hwmon@vger.kernel.org
19262 S:      Maintained
19263 F:      Documentation/hwmon/smsc47b397.rst
19264 F:      drivers/hwmon/smsc47b397.c
19265
19266 SMSC911x ETHERNET DRIVER
19267 M:      Steve Glendinning <steve.glendinning@shawell.net>
19268 L:      netdev@vger.kernel.org
19269 S:      Maintained
19270 F:      drivers/net/ethernet/smsc/smsc911x.*
19271 F:      include/linux/smsc911x.h
19272
19273 SMSC9420 PCI ETHERNET DRIVER
19274 M:      Steve Glendinning <steve.glendinning@shawell.net>
19275 L:      netdev@vger.kernel.org
19276 S:      Maintained
19277 F:      drivers/net/ethernet/smsc/smsc9420.*
19278
19279 SOCIONEXT (SNI) AVE NETWORK DRIVER
19280 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19281 L:      netdev@vger.kernel.org
19282 S:      Maintained
19283 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19284 F:      drivers/net/ethernet/socionext/sni_ave.c
19285
19286 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19287 M:      Jassi Brar <jaswinder.singh@linaro.org>
19288 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19289 L:      netdev@vger.kernel.org
19290 S:      Maintained
19291 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19292 F:      drivers/net/ethernet/socionext/netsec.c
19293
19294 SOCIONEXT (SNI) Synquacer SPI DRIVER
19295 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19296 M:      Jassi Brar <jaswinder.singh@linaro.org>
19297 L:      linux-spi@vger.kernel.org
19298 S:      Maintained
19299 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19300 F:      drivers/spi/spi-synquacer.c
19301
19302 SOCIONEXT SYNQUACER I2C DRIVER
19303 M:      Ard Biesheuvel <ardb@kernel.org>
19304 L:      linux-i2c@vger.kernel.org
19305 S:      Maintained
19306 F:      Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
19307 F:      drivers/i2c/busses/i2c-synquacer.c
19308
19309 SOCIONEXT UNIPHIER SOUND DRIVER
19310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19311 S:      Orphan
19312 F:      sound/soc/uniphier/
19313
19314 SOCKET TIMESTAMPING
19315 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19316 S:      Maintained
19317 F:      Documentation/networking/timestamping.rst
19318 F:      include/uapi/linux/net_tstamp.h
19319 F:      tools/testing/selftests/net/so_txtime.c
19320
19321 SOEKRIS NET48XX LED SUPPORT
19322 M:      Chris Boot <bootc@bootc.net>
19323 S:      Maintained
19324 F:      drivers/leds/leds-net48xx.c
19325
19326 SOFT-IWARP DRIVER (siw)
19327 M:      Bernard Metzler <bmt@zurich.ibm.com>
19328 L:      linux-rdma@vger.kernel.org
19329 S:      Supported
19330 F:      drivers/infiniband/sw/siw/
19331 F:      include/uapi/rdma/siw-abi.h
19332
19333 SOFT-ROCE DRIVER (rxe)
19334 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19335 L:      linux-rdma@vger.kernel.org
19336 S:      Supported
19337 F:      drivers/infiniband/sw/rxe/
19338 F:      include/uapi/rdma/rdma_user_rxe.h
19339
19340 SOFTLOGIC 6x10 MPEG CODEC
19341 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19342 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19343 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19344 M:      Ismael Luceno <ismael@iodev.co.uk>
19345 L:      linux-media@vger.kernel.org
19346 S:      Supported
19347 F:      drivers/media/pci/solo6x10/
19348
19349 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19350 M:      James Morse <james.morse@arm.com>
19351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19352 S:      Maintained
19353 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19354 F:      drivers/firmware/arm_sdei.c
19355 F:      include/linux/arm_sdei.h
19356 F:      include/uapi/linux/arm_sdei.h
19357
19358 SOFTWARE NODES AND DEVICE PROPERTIES
19359 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19360 R:      Daniel Scally <djrscally@gmail.com>
19361 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19362 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19363 L:      linux-acpi@vger.kernel.org
19364 S:      Maintained
19365 F:      drivers/base/property.c
19366 F:      drivers/base/swnode.c
19367 F:      include/linux/fwnode.h
19368 F:      include/linux/property.h
19369
19370 SOFTWARE RAID (Multiple Disks) SUPPORT
19371 M:      Song Liu <song@kernel.org>
19372 L:      linux-raid@vger.kernel.org
19373 S:      Supported
19374 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19376 F:      drivers/md/Kconfig
19377 F:      drivers/md/Makefile
19378 F:      drivers/md/md*
19379 F:      drivers/md/raid*
19380 F:      include/linux/raid/
19381 F:      include/uapi/linux/raid/
19382
19383 SOLIDRUN CLEARFOG SUPPORT
19384 M:      Russell King <linux@armlinux.org.uk>
19385 S:      Maintained
19386 F:      arch/arm/boot/dts/armada-388-clearfog*
19387 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19388
19389 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19390 M:      Russell King <linux@armlinux.org.uk>
19391 S:      Maintained
19392 F:      arch/arm/boot/dts/imx6*-cubox-i*
19393 F:      arch/arm/boot/dts/imx6*-hummingboard*
19394 F:      arch/arm/boot/dts/imx6*-sr-*
19395
19396 SONIC NETWORK DRIVER
19397 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19398 L:      netdev@vger.kernel.org
19399 S:      Maintained
19400 F:      drivers/net/ethernet/natsemi/sonic.*
19401
19402 SONICS SILICON BACKPLANE DRIVER (SSB)
19403 M:      Michael Buesch <m@bues.ch>
19404 L:      linux-wireless@vger.kernel.org
19405 S:      Maintained
19406 F:      drivers/ssb/
19407 F:      include/linux/ssb/
19408
19409 SONY IMX208 SENSOR DRIVER
19410 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19411 L:      linux-media@vger.kernel.org
19412 S:      Maintained
19413 T:      git git://linuxtv.org/media_tree.git
19414 F:      drivers/media/i2c/imx208.c
19415
19416 SONY IMX214 SENSOR DRIVER
19417 M:      Ricardo Ribalda <ribalda@kernel.org>
19418 L:      linux-media@vger.kernel.org
19419 S:      Maintained
19420 T:      git git://linuxtv.org/media_tree.git
19421 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19422 F:      drivers/media/i2c/imx214.c
19423
19424 SONY IMX219 SENSOR DRIVER
19425 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19426 L:      linux-media@vger.kernel.org
19427 S:      Maintained
19428 T:      git git://linuxtv.org/media_tree.git
19429 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19430 F:      drivers/media/i2c/imx219.c
19431
19432 SONY IMX258 SENSOR DRIVER
19433 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19434 L:      linux-media@vger.kernel.org
19435 S:      Maintained
19436 T:      git git://linuxtv.org/media_tree.git
19437 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19438 F:      drivers/media/i2c/imx258.c
19439
19440 SONY IMX274 SENSOR DRIVER
19441 M:      Leon Luo <leonl@leopardimaging.com>
19442 L:      linux-media@vger.kernel.org
19443 S:      Maintained
19444 T:      git git://linuxtv.org/media_tree.git
19445 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19446 F:      drivers/media/i2c/imx274.c
19447
19448 SONY IMX290 SENSOR DRIVER
19449 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19450 L:      linux-media@vger.kernel.org
19451 S:      Maintained
19452 T:      git git://linuxtv.org/media_tree.git
19453 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19454 F:      drivers/media/i2c/imx290.c
19455
19456 SONY IMX296 SENSOR DRIVER
19457 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19458 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19459 L:      linux-media@vger.kernel.org
19460 S:      Maintained
19461 T:      git git://linuxtv.org/media_tree.git
19462 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
19463 F:      drivers/media/i2c/imx296.c
19464
19465 SONY IMX319 SENSOR DRIVER
19466 M:      Bingbu Cao <bingbu.cao@intel.com>
19467 L:      linux-media@vger.kernel.org
19468 S:      Maintained
19469 T:      git git://linuxtv.org/media_tree.git
19470 F:      drivers/media/i2c/imx319.c
19471
19472 SONY IMX334 SENSOR DRIVER
19473 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19474 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19475 L:      linux-media@vger.kernel.org
19476 S:      Maintained
19477 T:      git git://linuxtv.org/media_tree.git
19478 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19479 F:      drivers/media/i2c/imx334.c
19480
19481 SONY IMX335 SENSOR DRIVER
19482 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19483 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19484 L:      linux-media@vger.kernel.org
19485 S:      Maintained
19486 T:      git git://linuxtv.org/media_tree.git
19487 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19488 F:      drivers/media/i2c/imx335.c
19489
19490 SONY IMX355 SENSOR DRIVER
19491 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19492 L:      linux-media@vger.kernel.org
19493 S:      Maintained
19494 T:      git git://linuxtv.org/media_tree.git
19495 F:      drivers/media/i2c/imx355.c
19496
19497 SONY IMX412 SENSOR DRIVER
19498 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19499 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19500 L:      linux-media@vger.kernel.org
19501 S:      Maintained
19502 T:      git git://linuxtv.org/media_tree.git
19503 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19504 F:      drivers/media/i2c/imx412.c
19505
19506 SONY IMX415 SENSOR DRIVER
19507 M:      Michael Riesch <michael.riesch@wolfvision.net>
19508 L:      linux-media@vger.kernel.org
19509 S:      Maintained
19510 T:      git git://linuxtv.org/media_tree.git
19511 F:      Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
19512 F:      drivers/media/i2c/imx415.c
19513
19514 SONY MEMORYSTICK SUBSYSTEM
19515 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19516 M:      Alex Dubov <oakad@yahoo.com>
19517 M:      Ulf Hansson <ulf.hansson@linaro.org>
19518 L:      linux-mmc@vger.kernel.org
19519 S:      Maintained
19520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19521 F:      drivers/memstick/
19522 F:      include/linux/memstick.h
19523
19524 SONY VAIO CONTROL DEVICE DRIVER
19525 M:      Mattia Dongili <malattia@linux.it>
19526 L:      platform-driver-x86@vger.kernel.org
19527 S:      Maintained
19528 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19529 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19530 F:      drivers/char/sonypi.c
19531 F:      drivers/platform/x86/sony-laptop.c
19532 F:      include/linux/sony-laptop.h
19533
19534 SOUND
19535 M:      Jaroslav Kysela <perex@perex.cz>
19536 M:      Takashi Iwai <tiwai@suse.com>
19537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19538 S:      Maintained
19539 W:      http://www.alsa-project.org/
19540 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19542 F:      Documentation/sound/
19543 F:      include/sound/
19544 F:      include/uapi/sound/
19545 F:      sound/
19546 F:      tools/testing/selftests/alsa
19547
19548 SOUND - COMPRESSED AUDIO
19549 M:      Vinod Koul <vkoul@kernel.org>
19550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19551 S:      Supported
19552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19553 F:      Documentation/sound/designs/compress-offload.rst
19554 F:      include/sound/compress_driver.h
19555 F:      include/uapi/sound/compress_*
19556 F:      sound/core/compress_offload.c
19557 F:      sound/soc/soc-compress.c
19558
19559 SOUND - DMAENGINE HELPERS
19560 M:      Lars-Peter Clausen <lars@metafoo.de>
19561 S:      Supported
19562 F:      include/sound/dmaengine_pcm.h
19563 F:      sound/core/pcm_dmaengine.c
19564 F:      sound/soc/soc-generic-dmaengine-pcm.c
19565
19566 SOUND - ALSA SELFTESTS
19567 M:      Mark Brown <broonie@kernel.org>
19568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19569 L:      linux-kselftest@vger.kernel.org
19570 S:      Supported
19571 F:      tools/testing/selftests/alsa
19572
19573 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19574 M:      Liam Girdwood <lgirdwood@gmail.com>
19575 M:      Mark Brown <broonie@kernel.org>
19576 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19577 S:      Supported
19578 W:      http://alsa-project.org/main/index.php/ASoC
19579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19580 F:      Documentation/devicetree/bindings/sound/
19581 F:      Documentation/sound/soc/
19582 F:      include/dt-bindings/sound/
19583 F:      include/sound/soc*
19584 F:      sound/soc/
19585
19586 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19587 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19588 M:      Liam Girdwood <lgirdwood@gmail.com>
19589 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19590 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19591 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19592 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19593 M:      Daniel Baluta <daniel.baluta@nxp.com>
19594 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19595 S:      Supported
19596 W:      https://github.com/thesofproject/linux/
19597 F:      sound/soc/sof/
19598
19599 SOUNDWIRE SUBSYSTEM
19600 M:      Vinod Koul <vkoul@kernel.org>
19601 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19602 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19603 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19604 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19605 S:      Supported
19606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19607 F:      Documentation/driver-api/soundwire/
19608 F:      drivers/soundwire/
19609 F:      include/linux/soundwire/
19610
19611 SP2 MEDIA DRIVER
19612 M:      Olli Salonen <olli.salonen@iki.fi>
19613 L:      linux-media@vger.kernel.org
19614 S:      Maintained
19615 W:      https://linuxtv.org
19616 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19617 F:      drivers/media/dvb-frontends/sp2*
19618
19619 SPANISH DOCUMENTATION
19620 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19621 S:      Maintained
19622 F:      Documentation/translations/sp_SP/
19623
19624 SPARC + UltraSPARC (sparc/sparc64)
19625 M:      "David S. Miller" <davem@davemloft.net>
19626 L:      sparclinux@vger.kernel.org
19627 S:      Maintained
19628 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19631 F:      arch/sparc/
19632 F:      drivers/sbus/
19633
19634 SPARC SERIAL DRIVERS
19635 M:      "David S. Miller" <davem@davemloft.net>
19636 L:      sparclinux@vger.kernel.org
19637 S:      Maintained
19638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19640 F:      drivers/tty/serial/suncore.c
19641 F:      drivers/tty/serial/sunhv.c
19642 F:      drivers/tty/serial/sunsab.c
19643 F:      drivers/tty/serial/sunsab.h
19644 F:      drivers/tty/serial/sunsu.c
19645 F:      drivers/tty/serial/sunzilog.c
19646 F:      drivers/tty/serial/sunzilog.h
19647 F:      drivers/tty/vcc.c
19648 F:      include/linux/sunserialcore.h
19649
19650 SPARSE CHECKER
19651 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19652 L:      linux-sparse@vger.kernel.org
19653 S:      Maintained
19654 W:      https://sparse.docs.kernel.org/
19655 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19656 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19657 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19658 F:      include/linux/compiler.h
19659
19660 SPEAKUP CONSOLE SPEECH DRIVER
19661 M:      William Hubbs <w.d.hubbs@gmail.com>
19662 M:      Chris Brannon <chris@the-brannons.com>
19663 M:      Kirk Reiser <kirk@reisers.ca>
19664 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19665 L:      speakup@linux-speakup.org
19666 S:      Odd Fixes
19667 W:      http://www.linux-speakup.org/
19668 W:      https://github.com/linux-speakup/speakup
19669 B:      https://github.com/linux-speakup/speakup/issues
19670 F:      drivers/accessibility/speakup/
19671
19672 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19673 M:      Viresh Kumar <vireshk@kernel.org>
19674 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19675 M:      soc@kernel.org
19676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19677 S:      Maintained
19678 W:      http://www.st.com/spear
19679 F:      arch/arm/boot/dts/spear*
19680 F:      arch/arm/mach-spear/
19681 F:      drivers/clk/spear/
19682 F:      drivers/pinctrl/spear/
19683
19684 SPI NOR SUBSYSTEM
19685 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19686 M:      Pratyush Yadav <pratyush@kernel.org>
19687 R:      Michael Walle <michael@walle.cc>
19688 L:      linux-mtd@lists.infradead.org
19689 S:      Maintained
19690 W:      http://www.linux-mtd.infradead.org/
19691 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19692 C:      irc://irc.oftc.net/mtd
19693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19694 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19695 F:      drivers/mtd/spi-nor/
19696 F:      include/linux/mtd/spi-nor.h
19697
19698 SPI SUBSYSTEM
19699 M:      Mark Brown <broonie@kernel.org>
19700 L:      linux-spi@vger.kernel.org
19701 S:      Maintained
19702 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19704 F:      Documentation/devicetree/bindings/spi/
19705 F:      Documentation/spi/
19706 F:      drivers/spi/
19707 F:      include/linux/spi/
19708 F:      include/uapi/linux/spi/
19709 F:      tools/spi/
19710
19711 SPIDERNET NETWORK DRIVER for CELL
19712 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19713 M:      Geoff Levand <geoff@infradead.org>
19714 L:      netdev@vger.kernel.org
19715 L:      linuxppc-dev@lists.ozlabs.org
19716 S:      Maintained
19717 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19718 F:      drivers/net/ethernet/toshiba/spider_net*
19719
19720 SPMI SUBSYSTEM
19721 M:      Stephen Boyd <sboyd@kernel.org>
19722 L:      linux-kernel@vger.kernel.org
19723 S:      Maintained
19724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19725 F:      Documentation/devicetree/bindings/spmi/
19726 F:      drivers/spmi/
19727 F:      include/dt-bindings/spmi/spmi.h
19728 F:      include/linux/spmi.h
19729 F:      include/trace/events/spmi.h
19730
19731 SPU FILE SYSTEM
19732 M:      Jeremy Kerr <jk@ozlabs.org>
19733 L:      linuxppc-dev@lists.ozlabs.org
19734 S:      Supported
19735 W:      http://www.ibm.com/developerworks/power/cell/
19736 F:      Documentation/filesystems/spufs/spufs.rst
19737 F:      arch/powerpc/platforms/cell/spufs/
19738
19739 SQUASHFS FILE SYSTEM
19740 M:      Phillip Lougher <phillip@squashfs.org.uk>
19741 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19742 S:      Maintained
19743 W:      http://squashfs.org.uk
19744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19745 F:      Documentation/filesystems/squashfs.rst
19746 F:      fs/squashfs/
19747
19748 SRM (Alpha) environment access
19749 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19750 S:      Maintained
19751 F:      arch/alpha/kernel/srm_env.c
19752
19753 ST LSM6DSx IMU IIO DRIVER
19754 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19755 L:      linux-iio@vger.kernel.org
19756 S:      Maintained
19757 W:      http://www.st.com/
19758 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19759 F:      drivers/iio/imu/st_lsm6dsx/
19760
19761 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19762 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19763 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19764 L:      linux-media@vger.kernel.org
19765 S:      Maintained
19766 T:      git git://linuxtv.org/media_tree.git
19767 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19768 F:      drivers/media/i2c/st-mipid02.c
19769
19770 ST STM32 I2C/SMBUS DRIVER
19771 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19772 M:      Alain Volmat <alain.volmat@foss.st.com>
19773 L:      linux-i2c@vger.kernel.org
19774 S:      Maintained
19775 F:      drivers/i2c/busses/i2c-stm32*
19776
19777 ST STM32 SPI DRIVER
19778 M:      Alain Volmat <alain.volmat@foss.st.com>
19779 L:      linux-spi@vger.kernel.org
19780 S:      Maintained
19781 F:      drivers/spi/spi-stm32.c
19782
19783 ST STPDDC60 DRIVER
19784 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19785 L:      linux-hwmon@vger.kernel.org
19786 S:      Maintained
19787 F:      Documentation/hwmon/stpddc60.rst
19788 F:      drivers/hwmon/pmbus/stpddc60.c
19789
19790 ST VGXY61 DRIVER
19791 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19792 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19793 L:      linux-media@vger.kernel.org
19794 S:      Maintained
19795 T:      git git://linuxtv.org/media_tree.git
19796 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19797 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19798 F:      drivers/media/i2c/st-vgxy61.c
19799
19800 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19801 M:      Song Qiang <songqiang1304521@gmail.com>
19802 L:      linux-iio@vger.kernel.org
19803 S:      Maintained
19804 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19805 F:      drivers/iio/proximity/vl53l0x-i2c.c
19806
19807 STABLE BRANCH
19808 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19809 M:      Sasha Levin <sashal@kernel.org>
19810 L:      stable@vger.kernel.org
19811 S:      Supported
19812 F:      Documentation/process/stable-kernel-rules.rst
19813
19814 STAGING - ATOMISP DRIVER
19815 M:      Hans de Goede <hdegoede@redhat.com>
19816 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19817 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19818 L:      linux-media@vger.kernel.org
19819 S:      Maintained
19820 F:      drivers/staging/media/atomisp/
19821
19822 STAGING - FIELDBUS SUBSYSTEM
19823 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19824 S:      Maintained
19825 F:      drivers/staging/fieldbus/*
19826 F:      drivers/staging/fieldbus/Documentation/
19827
19828 STAGING - HMS ANYBUS-S BUS
19829 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19830 S:      Maintained
19831 F:      drivers/staging/fieldbus/anybuss/
19832
19833 STAGING - INDUSTRIAL IO
19834 M:      Jonathan Cameron <jic23@kernel.org>
19835 L:      linux-iio@vger.kernel.org
19836 S:      Odd Fixes
19837 F:      Documentation/devicetree/bindings/staging/iio/
19838 F:      drivers/staging/iio/
19839
19840 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19841 M:      Marc Dietrich <marvin24@gmx.de>
19842 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19843 L:      linux-tegra@vger.kernel.org
19844 S:      Maintained
19845 F:      drivers/staging/nvec/
19846
19847 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19848 M:      Jens Frederich <jfrederich@gmail.com>
19849 M:      Jon Nettleton <jon.nettleton@gmail.com>
19850 S:      Maintained
19851 W:      http://wiki.laptop.org/go/DCON
19852 F:      drivers/staging/olpc_dcon/
19853
19854 STAGING - REALTEK RTL8712U DRIVERS
19855 M:      Larry Finger <Larry.Finger@lwfinger.net>
19856 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19857 S:      Odd Fixes
19858 F:      drivers/staging/rtl8712/
19859
19860 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19861 M:      Michael Hennerich <michael.hennerich@analog.com>
19862 L:      linux-fbdev@vger.kernel.org
19863 S:      Supported
19864 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19865 F:      drivers/staging/fbtft/fb_seps525.c
19866
19867 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19868 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19869 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19870 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19871 L:      linux-fbdev@vger.kernel.org
19872 S:      Maintained
19873 F:      drivers/staging/sm750fb/
19874
19875 STAGING - VIA VT665X DRIVERS
19876 M:      Forest Bond <forest@alittletooquiet.net>
19877 S:      Odd Fixes
19878 F:      drivers/staging/vt665?/
19879
19880 STAGING SUBSYSTEM
19881 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19882 L:      linux-staging@lists.linux.dev
19883 S:      Supported
19884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19885 F:      drivers/staging/
19886
19887 STARFIRE/DURALAN NETWORK DRIVER
19888 M:      Ion Badulescu <ionut@badula.org>
19889 S:      Odd Fixes
19890 F:      drivers/net/ethernet/adaptec/starfire*
19891
19892 STARFIVE DEVICETREES
19893 M:      Emil Renner Berthing <kernel@esmil.dk>
19894 S:      Maintained
19895 F:      arch/riscv/boot/dts/starfive/
19896
19897 STARFIVE JH7100 CLOCK DRIVERS
19898 M:      Emil Renner Berthing <kernel@esmil.dk>
19899 S:      Maintained
19900 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19901 F:      drivers/clk/starfive/clk-starfive-jh7100*
19902 F:      include/dt-bindings/clock/starfive-jh7100*.h
19903
19904 STARFIVE JH7110 MMC/SD/SDIO DRIVER
19905 M:      William Qiu <william.qiu@starfivetech.com>
19906 S:      Supported
19907 F:      Documentation/devicetree/bindings/mmc/starfive*
19908 F:      drivers/mmc/host/dw_mmc-starfive.c
19909
19910 STARFIVE JH71X0 PINCTRL DRIVERS
19911 M:      Emil Renner Berthing <kernel@esmil.dk>
19912 M:      Jianlong Huang <jianlong.huang@starfivetech.com>
19913 L:      linux-gpio@vger.kernel.org
19914 S:      Maintained
19915 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
19916 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
19917 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
19918 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
19919
19920 STARFIVE JH7100 RESET CONTROLLER DRIVER
19921 M:      Emil Renner Berthing <kernel@esmil.dk>
19922 S:      Maintained
19923 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19924 F:      drivers/reset/reset-starfive-jh7100.c
19925 F:      include/dt-bindings/reset/starfive-jh7100.h
19926
19927 STARFIVE JH71XX PMU CONTROLLER DRIVER
19928 M:      Walker Chen <walker.chen@starfivetech.com>
19929 S:      Supported
19930 F:      Documentation/devicetree/bindings/power/starfive*
19931 F:      drivers/soc/starfive/jh71xx_pmu.c
19932 F:      include/dt-bindings/power/starfive,jh7110-pmu.h
19933
19934 STARFIVE SOC DRIVERS
19935 M:      Conor Dooley <conor@kernel.org>
19936 S:      Maintained
19937 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19938 F:      drivers/soc/starfive/
19939
19940 STARFIVE TRNG DRIVER
19941 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
19942 S:      Supported
19943 F:      Documentation/devicetree/bindings/rng/starfive*
19944 F:      drivers/char/hw_random/jh7110-trng.c
19945
19946 STATIC BRANCH/CALL
19947 M:      Peter Zijlstra <peterz@infradead.org>
19948 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19949 M:      Jason Baron <jbaron@akamai.com>
19950 R:      Steven Rostedt <rostedt@goodmis.org>
19951 R:      Ard Biesheuvel <ardb@kernel.org>
19952 S:      Supported
19953 F:      arch/*/include/asm/jump_label*.h
19954 F:      arch/*/include/asm/static_call*.h
19955 F:      arch/*/kernel/jump_label.c
19956 F:      arch/*/kernel/static_call.c
19957 F:      include/linux/jump_label*.h
19958 F:      include/linux/static_call*.h
19959 F:      kernel/jump_label.c
19960 F:      kernel/static_call.c
19961
19962 STI AUDIO (ASoC) DRIVERS
19963 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19965 S:      Maintained
19966 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19967 F:      sound/soc/sti/
19968
19969 STI CEC DRIVER
19970 M:      Alain Volmat <alain.volmat@foss.st.com>
19971 S:      Maintained
19972 F:      Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
19973 F:      drivers/media/cec/platform/sti/
19974
19975 STK1160 USB VIDEO CAPTURE DRIVER
19976 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19977 L:      linux-media@vger.kernel.org
19978 S:      Maintained
19979 T:      git git://linuxtv.org/media_tree.git
19980 F:      drivers/media/usb/stk1160/
19981
19982 STM32 AUDIO (ASoC) DRIVERS
19983 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19984 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19986 S:      Maintained
19987 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19988 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19989 F:      sound/soc/stm/
19990
19991 STM32 TIMER/LPTIMER DRIVERS
19992 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19993 S:      Maintained
19994 F:      Documentation/ABI/testing/*timer-stm32
19995 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19996 F:      drivers/*/stm32-*timer*
19997 F:      drivers/pwm/pwm-stm32*
19998 F:      include/linux/*/stm32-*tim*
19999
20000 STMMAC ETHERNET DRIVER
20001 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
20002 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
20003 M:      Jose Abreu <joabreu@synopsys.com>
20004 L:      netdev@vger.kernel.org
20005 S:      Supported
20006 W:      http://www.stlinux.com
20007 F:      Documentation/networking/device_drivers/ethernet/stmicro/
20008 F:      drivers/net/ethernet/stmicro/stmmac/
20009
20010 SUN3/3X
20011 M:      Sam Creasey <sammy@sammy.net>
20012 S:      Maintained
20013 W:      http://sammy.net/sun3/
20014 F:      arch/m68k/include/asm/sun3*
20015 F:      arch/m68k/kernel/*sun3*
20016 F:      arch/m68k/sun3*/
20017 F:      drivers/net/ethernet/i825xx/sun3*
20018
20019 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20020 M:      Hans de Goede <hdegoede@redhat.com>
20021 L:      linux-input@vger.kernel.org
20022 S:      Maintained
20023 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20024 F:      drivers/input/keyboard/sun4i-lradc-keys.c
20025
20026 SUNDANCE NETWORK DRIVER
20027 M:      Denis Kirjanov <kda@linux-powerpc.org>
20028 L:      netdev@vger.kernel.org
20029 S:      Maintained
20030 F:      drivers/net/ethernet/dlink/sundance.c
20031
20032 SUN HAPPY MEAL ETHERNET DRIVER
20033 M:      Sean Anderson <seanga2@gmail.com>
20034 S:      Maintained
20035 F:      drivers/net/ethernet/sun/sunhme.*
20036
20037 SUNPLUS ETHERNET DRIVER
20038 M:      Wells Lu <wellslutw@gmail.com>
20039 L:      netdev@vger.kernel.org
20040 S:      Maintained
20041 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
20042 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20043 F:      drivers/net/ethernet/sunplus/
20044
20045 SUNPLUS MMC DRIVER
20046 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
20047 M:      Li-hao Kuo <lhjeff911@gmail.com>
20048 S:      Maintained
20049 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20050 F:      drivers/mmc/host/sunplus-mmc.c
20051
20052 SUNPLUS OCOTP DRIVER
20053 M:      Vincent Shih <vincent.sunplus@gmail.com>
20054 S:      Maintained
20055 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20056 F:      drivers/nvmem/sunplus-ocotp.c
20057
20058 SUNPLUS USB2 PHY DRIVER
20059 M:      Vincent Shih <vincent.sunplus@gmail.com>
20060 L:      linux-usb@vger.kernel.org
20061 S:      Maintained
20062 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20063 F:      drivers/phy/sunplus/Kconfig
20064 F:      drivers/phy/sunplus/Makefile
20065 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
20066
20067 SUNPLUS PWM DRIVER
20068 M:      Hammer Hsieh <hammerh0314@gmail.com>
20069 S:      Maintained
20070 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20071 F:      drivers/pwm/pwm-sunplus.c
20072
20073 SUNPLUS RTC DRIVER
20074 M:      Vincent Shih <vincent.sunplus@gmail.com>
20075 L:      linux-rtc@vger.kernel.org
20076 S:      Maintained
20077 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20078 F:      drivers/rtc/rtc-sunplus.c
20079
20080 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20081 M:      Li-hao Kuo <lhjeff911@gmail.com>
20082 L:      linux-spi@vger.kernel.org
20083 S:      Maintained
20084 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20085 F:      drivers/spi/spi-sunplus-sp7021.c
20086
20087 SUNPLUS UART DRIVER
20088 M:      Hammer Hsieh <hammerh0314@gmail.com>
20089 S:      Maintained
20090 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20091 F:      drivers/tty/serial/sunplus-uart.c
20092
20093 SUNPLUS WATCHDOG DRIVER
20094 M:      Xiantao Hu <xt.hu@cqplus1.com>
20095 L:      linux-watchdog@vger.kernel.org
20096 S:      Maintained
20097 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20098 F:      drivers/watchdog/sunplus_wdt.c
20099
20100 SUPERH
20101 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
20102 M:      Rich Felker <dalias@libc.org>
20103 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
20104 L:      linux-sh@vger.kernel.org
20105 S:      Maintained
20106 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20107 F:      Documentation/sh/
20108 F:      arch/sh/
20109 F:      drivers/sh/
20110
20111 SUSPEND TO RAM
20112 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20113 M:      Len Brown <len.brown@intel.com>
20114 M:      Pavel Machek <pavel@ucw.cz>
20115 L:      linux-pm@vger.kernel.org
20116 S:      Supported
20117 B:      https://bugzilla.kernel.org
20118 F:      Documentation/power/
20119 F:      arch/x86/kernel/acpi/sleep*
20120 F:      arch/x86/kernel/acpi/wakeup*
20121 F:      drivers/base/power/
20122 F:      include/linux/freezer.h
20123 F:      include/linux/pm.h
20124 F:      include/linux/suspend.h
20125 F:      kernel/power/
20126
20127 SVGA HANDLING
20128 M:      Martin Mares <mj@ucw.cz>
20129 L:      linux-video@atrey.karlin.mff.cuni.cz
20130 S:      Maintained
20131 F:      Documentation/admin-guide/svga.rst
20132 F:      arch/x86/boot/video*
20133
20134 SWITCHDEV
20135 M:      Jiri Pirko <jiri@resnulli.us>
20136 M:      Ivan Vecera <ivecera@redhat.com>
20137 L:      netdev@vger.kernel.org
20138 S:      Supported
20139 F:      include/net/switchdev.h
20140 F:      net/switchdev/
20141
20142 SY8106A REGULATOR DRIVER
20143 M:      Icenowy Zheng <icenowy@aosc.io>
20144 S:      Maintained
20145 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20146 F:      drivers/regulator/sy8106a-regulator.c
20147
20148 SYNC FILE FRAMEWORK
20149 M:      Sumit Semwal <sumit.semwal@linaro.org>
20150 R:      Gustavo Padovan <gustavo@padovan.org>
20151 L:      linux-media@vger.kernel.org
20152 L:      dri-devel@lists.freedesktop.org
20153 S:      Maintained
20154 T:      git git://anongit.freedesktop.org/drm/drm-misc
20155 F:      Documentation/driver-api/sync_file.rst
20156 F:      drivers/dma-buf/dma-fence*
20157 F:      drivers/dma-buf/sw_sync.c
20158 F:      drivers/dma-buf/sync_*
20159 F:      include/linux/sync_file.h
20160 F:      include/uapi/linux/sync_file.h
20161
20162 SYNOPSYS ARC ARCHITECTURE
20163 M:      Vineet Gupta <vgupta@kernel.org>
20164 L:      linux-snps-arc@lists.infradead.org
20165 S:      Supported
20166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20167 F:      Documentation/arc/
20168 F:      Documentation/devicetree/bindings/arc/*
20169 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20170 F:      arch/arc/
20171 F:      drivers/clocksource/arc_timer.c
20172 F:      drivers/tty/serial/arc_uart.c
20173
20174 SYNOPSYS ARC HSDK SDP pll clock driver
20175 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20176 S:      Supported
20177 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20178 F:      drivers/clk/clk-hsdk-pll.c
20179
20180 SYNOPSYS ARC SDP clock driver
20181 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20182 S:      Supported
20183 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20184 F:      drivers/clk/axs10x/*
20185
20186 SYNOPSYS ARC SDP platform support
20187 M:      Alexey Brodkin <abrodkin@synopsys.com>
20188 S:      Supported
20189 F:      Documentation/devicetree/bindings/arc/axs10*
20190 F:      arch/arc/boot/dts/ax*
20191 F:      arch/arc/plat-axs10x
20192
20193 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20194 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20195 S:      Supported
20196 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20197 F:      drivers/reset/reset-axs10x.c
20198
20199 SYNOPSYS CREG GPIO DRIVER
20200 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20201 S:      Maintained
20202 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20203 F:      drivers/gpio/gpio-creg-snps.c
20204
20205 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20206 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20207 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20208 S:      Supported
20209 F:      drivers/tty/serial/8250/8250_dw.c
20210 F:      drivers/tty/serial/8250/8250_dwlib.*
20211 F:      drivers/tty/serial/8250/8250_lpss.c
20212
20213 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20214 M:      Hoan Tran <hoan@os.amperecomputing.com>
20215 M:      Serge Semin <fancer.lancer@gmail.com>
20216 L:      linux-gpio@vger.kernel.org
20217 S:      Maintained
20218 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20219 F:      drivers/gpio/gpio-dwapb.c
20220
20221 SYNOPSYS DESIGNWARE APB SSI DRIVER
20222 M:      Serge Semin <fancer.lancer@gmail.com>
20223 L:      linux-spi@vger.kernel.org
20224 S:      Supported
20225 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20226 F:      drivers/spi/spi-dw*
20227
20228 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20229 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20230 S:      Maintained
20231 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20232 F:      drivers/dma/dw-axi-dmac/
20233
20234 SYNOPSYS DESIGNWARE DMAC DRIVER
20235 M:      Viresh Kumar <vireshk@kernel.org>
20236 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20237 S:      Maintained
20238 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20239 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20240 F:      drivers/dma/dw/
20241 F:      include/dt-bindings/dma/dw-dmac.h
20242 F:      include/linux/dma/dw.h
20243 F:      include/linux/platform_data/dma-dw.h
20244
20245 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20246 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20247 L:      netdev@vger.kernel.org
20248 S:      Supported
20249 F:      drivers/net/ethernet/synopsys/
20250
20251 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20252 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20253 L:      netdev@vger.kernel.org
20254 S:      Supported
20255 F:      drivers/net/pcs/pcs-xpcs.c
20256 F:      drivers/net/pcs/pcs-xpcs.h
20257 F:      include/linux/pcs/pcs-xpcs.h
20258
20259 SYNOPSYS DESIGNWARE I2C DRIVER
20260 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20261 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20262 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20263 R:      Jan Dabros <jsd@semihalf.com>
20264 L:      linux-i2c@vger.kernel.org
20265 S:      Supported
20266 F:      drivers/i2c/busses/i2c-designware-*
20267
20268 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20269 M:      Jaehoon Chung <jh80.chung@samsung.com>
20270 L:      linux-mmc@vger.kernel.org
20271 S:      Maintained
20272 F:      drivers/mmc/host/dw_mmc*
20273
20274 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20275 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20276 S:      Supported
20277 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20278 F:      drivers/reset/reset-hsdk.c
20279 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20280
20281 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20282 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20283 M:      Manjunath M B <manjumb@synopsys.com>
20284 L:      linux-mmc@vger.kernel.org
20285 S:      Maintained
20286 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20287
20288 SYSTEM CONFIGURATION (SYSCON)
20289 M:      Lee Jones <lee@kernel.org>
20290 M:      Arnd Bergmann <arnd@arndb.de>
20291 S:      Supported
20292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20293 F:      drivers/mfd/syscon.c
20294
20295 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20296 M:      Sudeep Holla <sudeep.holla@arm.com>
20297 R:      Cristian Marussi <cristian.marussi@arm.com>
20298 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20299 S:      Maintained
20300 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20301 F:      drivers/clk/clk-sc[mp]i.c
20302 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20303 F:      drivers/firmware/arm_scmi/
20304 F:      drivers/firmware/arm_scpi.c
20305 F:      drivers/powercap/arm_scmi_powercap.c
20306 F:      drivers/regulator/scmi-regulator.c
20307 F:      drivers/reset/reset-scmi.c
20308 F:      include/linux/sc[mp]i_protocol.h
20309 F:      include/trace/events/scmi.h
20310 F:      include/uapi/linux/virtio_scmi.h
20311
20312 SYSTEM RESET/SHUTDOWN DRIVERS
20313 M:      Sebastian Reichel <sre@kernel.org>
20314 L:      linux-pm@vger.kernel.org
20315 S:      Maintained
20316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20317 F:      Documentation/devicetree/bindings/power/reset/
20318 F:      drivers/power/reset/
20319
20320 SYSTEM TRACE MODULE CLASS
20321 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20322 S:      Maintained
20323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20324 F:      Documentation/trace/stm.rst
20325 F:      drivers/hwtracing/stm/
20326 F:      include/linux/stm.h
20327 F:      include/uapi/linux/stm.h
20328
20329 SYSTEM76 ACPI DRIVER
20330 M:      Jeremy Soller <jeremy@system76.com>
20331 M:      System76 Product Development <productdev@system76.com>
20332 L:      platform-driver-x86@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/platform/x86/system76_acpi.c
20335
20336 SYSV FILESYSTEM
20337 S:      Orphan
20338 F:      Documentation/filesystems/sysv-fs.rst
20339 F:      fs/sysv/
20340 F:      include/linux/sysv_fs.h
20341
20342 TASKSTATS STATISTICS INTERFACE
20343 M:      Balbir Singh <bsingharora@gmail.com>
20344 S:      Maintained
20345 F:      Documentation/accounting/taskstats*
20346 F:      include/linux/taskstats*
20347 F:      kernel/taskstats.c
20348
20349 TC subsystem
20350 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20351 M:      Cong Wang <xiyou.wangcong@gmail.com>
20352 M:      Jiri Pirko <jiri@resnulli.us>
20353 L:      netdev@vger.kernel.org
20354 S:      Maintained
20355 F:      include/net/pkt_cls.h
20356 F:      include/net/pkt_sched.h
20357 F:      include/net/tc_act/
20358 F:      include/uapi/linux/pkt_cls.h
20359 F:      include/uapi/linux/pkt_sched.h
20360 F:      include/uapi/linux/tc_act/
20361 F:      include/uapi/linux/tc_ematch/
20362 F:      net/sched/
20363 F:      tools/testing/selftests/tc-testing
20364
20365 TC90522 MEDIA DRIVER
20366 M:      Akihiro Tsukada <tskd08@gmail.com>
20367 L:      linux-media@vger.kernel.org
20368 S:      Odd Fixes
20369 F:      drivers/media/dvb-frontends/tc90522*
20370
20371 TCP LOW PRIORITY MODULE
20372 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20373 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20374 S:      Maintained
20375 W:      http://tcp-lp-mod.sourceforge.net/
20376 F:      net/ipv4/tcp_lp.c
20377
20378 TDA10071 MEDIA DRIVER
20379 M:      Antti Palosaari <crope@iki.fi>
20380 L:      linux-media@vger.kernel.org
20381 S:      Maintained
20382 W:      https://linuxtv.org
20383 W:      http://palosaari.fi/linux/
20384 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20385 T:      git git://linuxtv.org/anttip/media_tree.git
20386 F:      drivers/media/dvb-frontends/tda10071*
20387
20388 TDA18212 MEDIA DRIVER
20389 M:      Antti Palosaari <crope@iki.fi>
20390 L:      linux-media@vger.kernel.org
20391 S:      Maintained
20392 W:      https://linuxtv.org
20393 W:      http://palosaari.fi/linux/
20394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20395 T:      git git://linuxtv.org/anttip/media_tree.git
20396 F:      drivers/media/tuners/tda18212*
20397
20398 TDA18218 MEDIA DRIVER
20399 M:      Antti Palosaari <crope@iki.fi>
20400 L:      linux-media@vger.kernel.org
20401 S:      Maintained
20402 W:      https://linuxtv.org
20403 W:      http://palosaari.fi/linux/
20404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20405 T:      git git://linuxtv.org/anttip/media_tree.git
20406 F:      drivers/media/tuners/tda18218*
20407
20408 TDA18250 MEDIA DRIVER
20409 M:      Olli Salonen <olli.salonen@iki.fi>
20410 L:      linux-media@vger.kernel.org
20411 S:      Maintained
20412 W:      https://linuxtv.org
20413 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20414 T:      git git://linuxtv.org/media_tree.git
20415 F:      drivers/media/tuners/tda18250*
20416
20417 TDA18271 MEDIA DRIVER
20418 M:      Michael Krufky <mkrufky@linuxtv.org>
20419 L:      linux-media@vger.kernel.org
20420 S:      Maintained
20421 W:      https://linuxtv.org
20422 W:      http://github.com/mkrufky
20423 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20424 T:      git git://linuxtv.org/mkrufky/tuners.git
20425 F:      drivers/media/tuners/tda18271*
20426
20427 TDA1997x MEDIA DRIVER
20428 M:      Tim Harvey <tharvey@gateworks.com>
20429 L:      linux-media@vger.kernel.org
20430 S:      Maintained
20431 W:      https://linuxtv.org
20432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20433 F:      drivers/media/i2c/tda1997x.*
20434
20435 TDA827x MEDIA DRIVER
20436 M:      Michael Krufky <mkrufky@linuxtv.org>
20437 L:      linux-media@vger.kernel.org
20438 S:      Maintained
20439 W:      https://linuxtv.org
20440 W:      http://github.com/mkrufky
20441 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20442 T:      git git://linuxtv.org/mkrufky/tuners.git
20443 F:      drivers/media/tuners/tda8290.*
20444
20445 TDA8290 MEDIA DRIVER
20446 M:      Michael Krufky <mkrufky@linuxtv.org>
20447 L:      linux-media@vger.kernel.org
20448 S:      Maintained
20449 W:      https://linuxtv.org
20450 W:      http://github.com/mkrufky
20451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20452 T:      git git://linuxtv.org/mkrufky/tuners.git
20453 F:      drivers/media/tuners/tda8290.*
20454
20455 TDA9840 MEDIA DRIVER
20456 M:      Hans Verkuil <hverkuil@xs4all.nl>
20457 L:      linux-media@vger.kernel.org
20458 S:      Maintained
20459 W:      https://linuxtv.org
20460 T:      git git://linuxtv.org/media_tree.git
20461 F:      drivers/media/i2c/tda9840*
20462
20463 TEA5761 TUNER DRIVER
20464 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20465 L:      linux-media@vger.kernel.org
20466 S:      Odd fixes
20467 W:      https://linuxtv.org
20468 T:      git git://linuxtv.org/media_tree.git
20469 F:      drivers/media/tuners/tea5761.*
20470
20471 TEA5767 TUNER DRIVER
20472 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20473 L:      linux-media@vger.kernel.org
20474 S:      Maintained
20475 W:      https://linuxtv.org
20476 T:      git git://linuxtv.org/media_tree.git
20477 F:      drivers/media/tuners/tea5767.*
20478
20479 TEA6415C MEDIA DRIVER
20480 M:      Hans Verkuil <hverkuil@xs4all.nl>
20481 L:      linux-media@vger.kernel.org
20482 S:      Maintained
20483 W:      https://linuxtv.org
20484 T:      git git://linuxtv.org/media_tree.git
20485 F:      drivers/media/i2c/tea6415c*
20486
20487 TEA6420 MEDIA DRIVER
20488 M:      Hans Verkuil <hverkuil@xs4all.nl>
20489 L:      linux-media@vger.kernel.org
20490 S:      Maintained
20491 W:      https://linuxtv.org
20492 T:      git git://linuxtv.org/media_tree.git
20493 F:      drivers/media/i2c/tea6420*
20494
20495 TEAM DRIVER
20496 M:      Jiri Pirko <jiri@resnulli.us>
20497 L:      netdev@vger.kernel.org
20498 S:      Supported
20499 F:      drivers/net/team/
20500 F:      include/linux/if_team.h
20501 F:      include/uapi/linux/if_team.h
20502 F:      tools/testing/selftests/drivers/net/team/
20503
20504 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20505 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20506 S:      Maintained
20507 F:      arch/x86/platform/ts5500/
20508
20509 TECHNOTREND USB IR RECEIVER
20510 M:      Sean Young <sean@mess.org>
20511 L:      linux-media@vger.kernel.org
20512 S:      Maintained
20513 F:      drivers/media/rc/ttusbir.c
20514
20515 TECHWELL TW9910 VIDEO DECODER
20516 L:      linux-media@vger.kernel.org
20517 S:      Orphan
20518 F:      drivers/media/i2c/tw9910.c
20519 F:      include/media/i2c/tw9910.h
20520
20521 TEE SUBSYSTEM
20522 M:      Jens Wiklander <jens.wiklander@linaro.org>
20523 R:      Sumit Garg <sumit.garg@linaro.org>
20524 L:      op-tee@lists.trustedfirmware.org
20525 S:      Maintained
20526 F:      Documentation/staging/tee.rst
20527 F:      drivers/tee/
20528 F:      include/linux/tee_drv.h
20529 F:      include/uapi/linux/tee.h
20530
20531 TEGRA ARCHITECTURE SUPPORT
20532 M:      Thierry Reding <thierry.reding@gmail.com>
20533 M:      Jonathan Hunter <jonathanh@nvidia.com>
20534 L:      linux-tegra@vger.kernel.org
20535 S:      Supported
20536 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20538 N:      [^a-z]tegra
20539
20540 TEGRA CLOCK DRIVER
20541 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20542 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20543 S:      Supported
20544 F:      drivers/clk/tegra/
20545
20546 TEGRA DMA DRIVERS
20547 M:      Laxman Dewangan <ldewangan@nvidia.com>
20548 M:      Jon Hunter <jonathanh@nvidia.com>
20549 S:      Supported
20550 F:      drivers/dma/tegra*
20551
20552 TEGRA I2C DRIVER
20553 M:      Laxman Dewangan <ldewangan@nvidia.com>
20554 R:      Dmitry Osipenko <digetx@gmail.com>
20555 S:      Supported
20556 F:      drivers/i2c/busses/i2c-tegra.c
20557
20558 TEGRA IOMMU DRIVERS
20559 M:      Thierry Reding <thierry.reding@gmail.com>
20560 R:      Krishna Reddy <vdumpa@nvidia.com>
20561 L:      linux-tegra@vger.kernel.org
20562 S:      Supported
20563 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20564 F:      drivers/iommu/tegra*
20565
20566 TEGRA KBC DRIVER
20567 M:      Laxman Dewangan <ldewangan@nvidia.com>
20568 S:      Supported
20569 F:      drivers/input/keyboard/tegra-kbc.c
20570
20571 TEGRA NAND DRIVER
20572 M:      Stefan Agner <stefan@agner.ch>
20573 M:      Lucas Stach <dev@lynxeye.de>
20574 S:      Maintained
20575 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20576 F:      drivers/mtd/nand/raw/tegra_nand.c
20577
20578 TEGRA PWM DRIVER
20579 M:      Thierry Reding <thierry.reding@gmail.com>
20580 S:      Supported
20581 F:      drivers/pwm/pwm-tegra.c
20582
20583 TEGRA SERIAL DRIVER
20584 M:      Laxman Dewangan <ldewangan@nvidia.com>
20585 S:      Supported
20586 F:      drivers/tty/serial/serial-tegra.c
20587
20588 TEGRA SPI DRIVER
20589 M:      Laxman Dewangan <ldewangan@nvidia.com>
20590 S:      Supported
20591 F:      drivers/spi/spi-tegra*
20592
20593 TEGRA QUAD SPI DRIVER
20594 M:      Thierry Reding <thierry.reding@gmail.com>
20595 M:      Jonathan Hunter <jonathanh@nvidia.com>
20596 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20597 L:      linux-tegra@vger.kernel.org
20598 S:      Maintained
20599 F:      drivers/spi/spi-tegra210-quad.c
20600
20601 TEGRA VIDEO DRIVER
20602 M:      Thierry Reding <thierry.reding@gmail.com>
20603 M:      Jonathan Hunter <jonathanh@nvidia.com>
20604 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20605 L:      linux-media@vger.kernel.org
20606 L:      linux-tegra@vger.kernel.org
20607 S:      Maintained
20608 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20609 F:      drivers/staging/media/tegra-video/
20610
20611 TEGRA XUSB PADCTL DRIVER
20612 M:      JC Kuo <jckuo@nvidia.com>
20613 S:      Supported
20614 F:      drivers/phy/tegra/xusb*
20615
20616 TEHUTI ETHERNET DRIVER
20617 M:      Andy Gospodarek <andy@greyhouse.net>
20618 L:      netdev@vger.kernel.org
20619 S:      Supported
20620 F:      drivers/net/ethernet/tehuti/*
20621
20622 TELECOM CLOCK DRIVER FOR MCPL0010
20623 M:      Mark Gross <markgross@kernel.org>
20624 S:      Supported
20625 F:      drivers/char/tlclk.c
20626
20627 TEMPO SEMICONDUCTOR DRIVERS
20628 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20629 S:      Maintained
20630 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20631 F:      sound/soc/codecs/tscs*.c
20632 F:      sound/soc/codecs/tscs*.h
20633
20634 TENSILICA XTENSA PORT (xtensa)
20635 M:      Chris Zankel <chris@zankel.net>
20636 M:      Max Filippov <jcmvbkbc@gmail.com>
20637 L:      linux-xtensa@linux-xtensa.org
20638 S:      Maintained
20639 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20640 F:      arch/xtensa/
20641 F:      drivers/irqchip/irq-xtensa-*
20642
20643 TEXAS INSTRUMENTS ASoC DRIVERS
20644 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20645 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20646 S:      Maintained
20647 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20648 F:      sound/soc/ti/
20649
20650 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20651 M:      Ricardo Ribalda <ribalda@kernel.org>
20652 L:      linux-iio@vger.kernel.org
20653 S:      Supported
20654 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20655 F:      drivers/iio/dac/ti-dac7612.c
20656
20657 TEXAS INSTRUMENTS DMA DRIVERS
20658 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20659 L:      dmaengine@vger.kernel.org
20660 S:      Maintained
20661 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20662 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20663 F:      Documentation/devicetree/bindings/dma/ti/
20664 F:      drivers/dma/ti/
20665 X:      drivers/dma/ti/cppi41.c
20666 F:      include/linux/dma/k3-udma-glue.h
20667 F:      include/linux/dma/ti-cppi5.h
20668 F:      include/linux/dma/k3-psil.h
20669
20670 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20671 M:      Nishanth Menon <nm@ti.com>
20672 M:      Tero Kristo <kristo@kernel.org>
20673 M:      Santosh Shilimkar <ssantosh@kernel.org>
20674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20675 S:      Maintained
20676 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20677 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20678 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20679 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20680 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20681 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20682 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20683 F:      drivers/clk/keystone/sci-clk.c
20684 F:      drivers/firmware/ti_sci*
20685 F:      drivers/irqchip/irq-ti-sci-inta.c
20686 F:      drivers/irqchip/irq-ti-sci-intr.c
20687 F:      drivers/reset/reset-ti-sci.c
20688 F:      drivers/soc/ti/ti_sci_inta_msi.c
20689 F:      drivers/soc/ti/ti_sci_pm_domains.c
20690 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20691 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20692 F:      include/linux/soc/ti/ti_sci_protocol.h
20693
20694 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20695 M:      Robert Marko <robert.marko@sartura.hr>
20696 M:      Luka Perkov <luka.perkov@sartura.hr>
20697 L:      linux-hwmon@vger.kernel.org
20698 S:      Maintained
20699 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20700 F:      Documentation/hwmon/tps23861.rst
20701 F:      drivers/hwmon/tps23861.c
20702
20703 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20704 M:      Puranjay Mohan <puranjay12@gmail.com>
20705 L:      linux-iio@vger.kernel.org
20706 S:      Supported
20707 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20708 F:      drivers/iio/temperature/tmp117.c
20709
20710 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20711 M:      Hans Verkuil <hverkuil@xs4all.nl>
20712 L:      linux-media@vger.kernel.org
20713 S:      Maintained
20714 W:      https://linuxtv.org
20715 T:      git git://linuxtv.org/media_tree.git
20716 F:      drivers/media/radio/radio-raremono.c
20717
20718 THERMAL
20719 M:      Rafael J. Wysocki <rafael@kernel.org>
20720 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20721 R:      Amit Kucheria <amitk@kernel.org>
20722 R:      Zhang Rui <rui.zhang@intel.com>
20723 L:      linux-pm@vger.kernel.org
20724 S:      Supported
20725 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20727 F:      Documentation/ABI/testing/sysfs-class-thermal
20728 F:      Documentation/admin-guide/thermal/
20729 F:      Documentation/devicetree/bindings/thermal/
20730 F:      Documentation/driver-api/thermal/
20731 F:      drivers/thermal/
20732 F:      include/dt-bindings/thermal/
20733 F:      include/linux/cpu_cooling.h
20734 F:      include/linux/thermal.h
20735 F:      include/uapi/linux/thermal.h
20736 F:      tools/lib/thermal/
20737 F:      tools/thermal/
20738
20739 THERMAL DRIVER FOR AMLOGIC SOCS
20740 M:      Guillaume La Roque <glaroque@baylibre.com>
20741 L:      linux-pm@vger.kernel.org
20742 L:      linux-amlogic@lists.infradead.org
20743 S:      Supported
20744 W:      http://linux-meson.com/
20745 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20746 F:      drivers/thermal/amlogic_thermal.c
20747
20748 THERMAL/CPU_COOLING
20749 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20750 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20751 M:      Viresh Kumar <viresh.kumar@linaro.org>
20752 R:      Lukasz Luba <lukasz.luba@arm.com>
20753 L:      linux-pm@vger.kernel.org
20754 S:      Supported
20755 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20756 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20757 F:      drivers/thermal/cpufreq_cooling.c
20758 F:      drivers/thermal/cpuidle_cooling.c
20759 F:      include/linux/cpu_cooling.h
20760
20761 THERMAL/POWER_ALLOCATOR
20762 M:      Lukasz Luba <lukasz.luba@arm.com>
20763 L:      linux-pm@vger.kernel.org
20764 S:      Maintained
20765 F:      Documentation/driver-api/thermal/power_allocator.rst
20766 F:      drivers/thermal/gov_power_allocator.c
20767 F:      include/trace/events/thermal_power_allocator.h
20768
20769 THINKPAD ACPI EXTRAS DRIVER
20770 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20771 L:      ibm-acpi-devel@lists.sourceforge.net
20772 L:      platform-driver-x86@vger.kernel.org
20773 S:      Maintained
20774 W:      http://ibm-acpi.sourceforge.net
20775 W:      http://thinkwiki.org/wiki/Ibm-acpi
20776 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20777 F:      drivers/platform/x86/thinkpad_acpi.c
20778
20779 THINKPAD LMI DRIVER
20780 M:      Mark Pearson <markpearson@lenovo.com>
20781 L:      platform-driver-x86@vger.kernel.org
20782 S:      Maintained
20783 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20784 F:      drivers/platform/x86/think-lmi.?
20785
20786 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20787 M:      Isaac Hazan <isaac.hazan@intel.com>
20788 L:      linux-usb@vger.kernel.org
20789 S:      Maintained
20790 F:      drivers/thunderbolt/dma_test.c
20791
20792 THUNDERBOLT DRIVER
20793 M:      Andreas Noever <andreas.noever@gmail.com>
20794 M:      Michael Jamet <michael.jamet@intel.com>
20795 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20796 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20797 L:      linux-usb@vger.kernel.org
20798 S:      Maintained
20799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20800 F:      Documentation/admin-guide/thunderbolt.rst
20801 F:      drivers/thunderbolt/
20802 F:      include/linux/thunderbolt.h
20803
20804 THUNDERBOLT NETWORK DRIVER
20805 M:      Michael Jamet <michael.jamet@intel.com>
20806 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20807 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20808 L:      netdev@vger.kernel.org
20809 S:      Maintained
20810 F:      drivers/net/thunderbolt/
20811
20812 THUNDERX GPIO DRIVER
20813 M:      Robert Richter <rric@kernel.org>
20814 S:      Odd Fixes
20815 F:      drivers/gpio/gpio-thunderx.c
20816
20817 TI ADS7924 ADC DRIVER
20818 M:      Hugo Villeneuve <hvilleneuve@dimonoff.com>
20819 L:      linux-iio@vger.kernel.org
20820 S:      Supported
20821 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
20822 F:      drivers/iio/adc/ti-ads7924.c
20823
20824 TI AM437X VPFE DRIVER
20825 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20826 L:      linux-media@vger.kernel.org
20827 S:      Maintained
20828 W:      https://linuxtv.org
20829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20830 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20831 F:      drivers/media/platform/ti/am437x/
20832
20833 TI BANDGAP AND THERMAL DRIVER
20834 M:      Eduardo Valentin <edubezval@gmail.com>
20835 M:      Keerthy <j-keerthy@ti.com>
20836 L:      linux-pm@vger.kernel.org
20837 L:      linux-omap@vger.kernel.org
20838 S:      Maintained
20839 F:      drivers/thermal/ti-soc-thermal/
20840
20841 TI BQ27XXX POWER SUPPLY DRIVER
20842 F:      drivers/power/supply/bq27xxx_battery.c
20843 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20844 F:      include/linux/power/bq27xxx_battery.h
20845
20846 TI CDCE706 CLOCK DRIVER
20847 M:      Max Filippov <jcmvbkbc@gmail.com>
20848 S:      Maintained
20849 F:      drivers/clk/clk-cdce706.c
20850
20851 TI CLOCK DRIVER
20852 M:      Tero Kristo <kristo@kernel.org>
20853 L:      linux-omap@vger.kernel.org
20854 S:      Odd Fixes
20855 F:      drivers/clk/ti/
20856 F:      include/linux/clk/ti.h
20857
20858 TI DAVINCI MACHINE SUPPORT
20859 M:      Bartosz Golaszewski <brgl@bgdev.pl>
20860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20861 S:      Maintained
20862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
20863 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20864 F:      arch/arm/boot/dts/da850*
20865 F:      arch/arm/mach-davinci/
20866 F:      drivers/i2c/busses/i2c-davinci.c
20867
20868 TI DAVINCI SERIES CLOCK DRIVER
20869 M:      David Lechner <david@lechnology.com>
20870 R:      Sekhar Nori <nsekhar@ti.com>
20871 S:      Maintained
20872 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20873 F:      drivers/clk/davinci/
20874 F:      include/linux/clk/davinci.h
20875
20876 TI DAVINCI SERIES GPIO DRIVER
20877 M:      Keerthy <j-keerthy@ti.com>
20878 L:      linux-gpio@vger.kernel.org
20879 S:      Maintained
20880 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20881 F:      drivers/gpio/gpio-davinci.c
20882
20883 TI DAVINCI SERIES MEDIA DRIVER
20884 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20885 L:      linux-media@vger.kernel.org
20886 S:      Maintained
20887 W:      https://linuxtv.org
20888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20889 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20890 F:      drivers/media/platform/ti/davinci/
20891 F:      include/media/davinci/
20892
20893 TI ENHANCED CAPTURE (eCAP) DRIVER
20894 M:      Vignesh Raghavendra <vigneshr@ti.com>
20895 R:      Julien Panis <jpanis@baylibre.com>
20896 L:      linux-iio@vger.kernel.org
20897 L:      linux-omap@vger.kernel.org
20898 S:      Maintained
20899 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
20900 F:      drivers/counter/ti-ecap-capture.c
20901
20902 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20903 R:      David Lechner <david@lechnology.com>
20904 L:      linux-iio@vger.kernel.org
20905 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20906 F:      drivers/counter/ti-eqep.c
20907
20908 TI ETHERNET SWITCH DRIVER (CPSW)
20909 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20910 L:      linux-omap@vger.kernel.org
20911 L:      netdev@vger.kernel.org
20912 S:      Maintained
20913 F:      drivers/net/ethernet/ti/cpsw*
20914 F:      drivers/net/ethernet/ti/davinci*
20915
20916 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20917 M:      Alex Dubov <oakad@yahoo.com>
20918 S:      Maintained
20919 W:      http://tifmxx.berlios.de/
20920 F:      drivers/memstick/host/tifm_ms.c
20921 F:      drivers/misc/tifm*
20922 F:      drivers/mmc/host/tifm_sd.c
20923 F:      include/linux/tifm.h
20924
20925 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20926 M:      Nishanth Menon <nm@ti.com>
20927 M:      Santosh Shilimkar <ssantosh@kernel.org>
20928 L:      linux-kernel@vger.kernel.org
20929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20930 S:      Maintained
20931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20932 F:      drivers/soc/ti/*
20933
20934 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20935 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20936 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20937 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20938 S:      Maintained
20939 F:      sound/soc/codecs/isabelle*
20940 F:      sound/soc/codecs/lm49453*
20941
20942 TI LMP92064 ADC DRIVER
20943 M:      Leonard Göhrs <l.goehrs@pengutronix.de>
20944 R:      kernel@pengutronix.de
20945 L:      linux-iio@vger.kernel.org
20946 S:      Maintained
20947 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
20948 F:      drivers/iio/adc/ti-lmp92064.c
20949
20950 TI PCM3060 ASoC CODEC DRIVER
20951 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20952 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20953 S:      Maintained
20954 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20955 F:      sound/soc/codecs/pcm3060*
20956
20957 TI TAS571X FAMILY ASoC CODEC DRIVER
20958 M:      Kevin Cernekee <cernekee@chromium.org>
20959 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20960 S:      Odd Fixes
20961 F:      sound/soc/codecs/tas571x*
20962
20963 TI TMAG5273 MAGNETOMETER DRIVER
20964 M:      Gerald Loacker <gerald.loacker@wolfvision.net>
20965 L:      linux-iio@vger.kernel.org
20966 S:      Maintained
20967 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
20968 F:      drivers/iio/magnetometer/tmag5273.c
20969
20970 TI TRF7970A NFC DRIVER
20971 M:      Mark Greer <mgreer@animalcreek.com>
20972 L:      linux-wireless@vger.kernel.org
20973 L:      linux-nfc@lists.01.org (subscribers-only)
20974 S:      Supported
20975 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20976 F:      drivers/nfc/trf7970a.c
20977
20978 TI TSC2046 ADC DRIVER
20979 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20980 R:      kernel@pengutronix.de
20981 L:      linux-iio@vger.kernel.org
20982 S:      Maintained
20983 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20984 F:      drivers/iio/adc/ti-tsc2046.c
20985
20986 TI TWL4030 SERIES SOC CODEC DRIVER
20987 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20989 S:      Maintained
20990 F:      sound/soc/codecs/twl4030*
20991
20992 TI VPE/CAL DRIVERS
20993 M:      Benoit Parrot <bparrot@ti.com>
20994 L:      linux-media@vger.kernel.org
20995 S:      Maintained
20996 W:      http://linuxtv.org/
20997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20998 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20999 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
21000 F:      drivers/media/platform/ti/cal/
21001 F:      drivers/media/platform/ti/vpe/
21002
21003 TI WILINK WIRELESS DRIVERS
21004 L:      linux-wireless@vger.kernel.org
21005 S:      Orphan
21006 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21007 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21009 F:      drivers/net/wireless/ti/
21010
21011 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21012 M:      John Stultz <jstultz@google.com>
21013 M:      Thomas Gleixner <tglx@linutronix.de>
21014 R:      Stephen Boyd <sboyd@kernel.org>
21015 L:      linux-kernel@vger.kernel.org
21016 S:      Supported
21017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21018 F:      include/linux/clocksource.h
21019 F:      include/linux/time.h
21020 F:      include/linux/timex.h
21021 F:      include/uapi/linux/time.h
21022 F:      include/uapi/linux/timex.h
21023 F:      kernel/time/alarmtimer.c
21024 F:      kernel/time/clocksource.c
21025 F:      kernel/time/ntp.c
21026 F:      kernel/time/time*.c
21027 F:      tools/testing/selftests/timers/
21028
21029 TIPC NETWORK LAYER
21030 M:      Jon Maloy <jmaloy@redhat.com>
21031 M:      Ying Xue <ying.xue@windriver.com>
21032 L:      netdev@vger.kernel.org (core kernel code)
21033 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
21034 S:      Maintained
21035 W:      http://tipc.sourceforge.net/
21036 F:      include/uapi/linux/tipc*.h
21037 F:      net/tipc/
21038
21039 TLAN NETWORK DRIVER
21040 M:      Samuel Chessman <chessman@tux.org>
21041 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
21042 S:      Maintained
21043 W:      http://sourceforge.net/projects/tlan/
21044 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21045 F:      drivers/net/ethernet/ti/tlan.*
21046
21047 TMIO/SDHI MMC DRIVER
21048 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
21049 L:      linux-mmc@vger.kernel.org
21050 L:      linux-renesas-soc@vger.kernel.org
21051 S:      Supported
21052 F:      drivers/mmc/host/renesas_sdhi*
21053 F:      drivers/mmc/host/tmio_mmc*
21054 F:      include/linux/mfd/tmio.h
21055
21056 TMP401 HARDWARE MONITOR DRIVER
21057 M:      Guenter Roeck <linux@roeck-us.net>
21058 L:      linux-hwmon@vger.kernel.org
21059 S:      Maintained
21060 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21061 F:      Documentation/hwmon/tmp401.rst
21062 F:      drivers/hwmon/tmp401.c
21063
21064 TMP464 HARDWARE MONITOR DRIVER
21065 M:      Agathe Porte <agathe.porte@nokia.com>
21066 M:      Guenter Roeck <linux@roeck-us.net>
21067 L:      linux-hwmon@vger.kernel.org
21068 S:      Maintained
21069 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21070 F:      Documentation/hwmon/tmp464.rst
21071 F:      drivers/hwmon/tmp464.c
21072
21073 TMP513 HARDWARE MONITOR DRIVER
21074 M:      Eric Tremblay <etremblay@distech-controls.com>
21075 L:      linux-hwmon@vger.kernel.org
21076 S:      Maintained
21077 F:      Documentation/hwmon/tmp513.rst
21078 F:      drivers/hwmon/tmp513.c
21079
21080 TMPFS (SHMEM FILESYSTEM)
21081 M:      Hugh Dickins <hughd@google.com>
21082 L:      linux-mm@kvack.org
21083 S:      Maintained
21084 F:      include/linux/shmem_fs.h
21085 F:      mm/shmem.c
21086
21087 TOMOYO SECURITY MODULE
21088 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
21089 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
21090 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
21091 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
21092 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
21093 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
21094 S:      Maintained
21095 W:      https://tomoyo.osdn.jp/
21096 F:      security/tomoyo/
21097
21098 TOPSTAR LAPTOP EXTRAS DRIVER
21099 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
21100 L:      platform-driver-x86@vger.kernel.org
21101 S:      Maintained
21102 F:      drivers/platform/x86/topstar-laptop.c
21103
21104 TORTURE-TEST MODULES
21105 M:      Davidlohr Bueso <dave@stgolabs.net>
21106 M:      "Paul E. McKenney" <paulmck@kernel.org>
21107 M:      Josh Triplett <josh@joshtriplett.org>
21108 L:      linux-kernel@vger.kernel.org
21109 S:      Supported
21110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21111 F:      Documentation/RCU/torture.rst
21112 F:      kernel/locking/locktorture.c
21113 F:      kernel/rcu/rcuscale.c
21114 F:      kernel/rcu/rcutorture.c
21115 F:      kernel/rcu/refscale.c
21116 F:      kernel/torture.c
21117
21118 TOSHIBA ACPI EXTRAS DRIVER
21119 M:      Azael Avalos <coproscefalo@gmail.com>
21120 L:      platform-driver-x86@vger.kernel.org
21121 S:      Maintained
21122 F:      drivers/platform/x86/toshiba_acpi.c
21123
21124 TOSHIBA BLUETOOTH DRIVER
21125 M:      Azael Avalos <coproscefalo@gmail.com>
21126 L:      platform-driver-x86@vger.kernel.org
21127 S:      Maintained
21128 F:      drivers/platform/x86/toshiba_bluetooth.c
21129
21130 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21131 M:      Azael Avalos <coproscefalo@gmail.com>
21132 L:      platform-driver-x86@vger.kernel.org
21133 S:      Maintained
21134 F:      drivers/platform/x86/toshiba_haps.c
21135
21136 TOSHIBA SMM DRIVER
21137 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21138 S:      Maintained
21139 W:      http://www.buzzard.org.uk/toshiba/
21140 F:      drivers/char/toshiba.c
21141 F:      include/linux/toshiba.h
21142 F:      include/uapi/linux/toshiba.h
21143
21144 TOSHIBA TC358743 DRIVER
21145 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21146 L:      linux-media@vger.kernel.org
21147 S:      Maintained
21148 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21149 F:      drivers/media/i2c/tc358743*
21150 F:      include/media/i2c/tc358743.h
21151
21152 TOSHIBA WMI HOTKEYS DRIVER
21153 M:      Azael Avalos <coproscefalo@gmail.com>
21154 L:      platform-driver-x86@vger.kernel.org
21155 S:      Maintained
21156 F:      drivers/platform/x86/toshiba-wmi.c
21157
21158 TPM DEVICE DRIVER
21159 M:      Peter Huewe <peterhuewe@gmx.de>
21160 M:      Jarkko Sakkinen <jarkko@kernel.org>
21161 R:      Jason Gunthorpe <jgg@ziepe.ca>
21162 L:      linux-integrity@vger.kernel.org
21163 S:      Maintained
21164 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21165 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21167 F:      drivers/char/tpm/
21168
21169 TPS546D24 DRIVER
21170 M:      Duke Du <dukedu83@gmail.com>
21171 L:      linux-hwmon@vger.kernel.org
21172 S:      Maintained
21173 F:      Documentation/hwmon/tps546d24.rst
21174 F:      drivers/hwmon/pmbus/tps546d24.c
21175
21176 TRACING
21177 M:      Steven Rostedt <rostedt@goodmis.org>
21178 M:      Masami Hiramatsu <mhiramat@kernel.org>
21179 L:      linux-kernel@vger.kernel.org
21180 L:      linux-trace-kernel@vger.kernel.org
21181 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21182 S:      Maintained
21183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21184 F:      Documentation/trace/*
21185 F:      fs/tracefs/
21186 F:      include/linux/trace*.h
21187 F:      include/trace/
21188 F:      kernel/trace/
21189 F:      scripts/tracing/
21190 F:      tools/testing/selftests/ftrace/
21191
21192 TRACING MMIO ACCESSES (MMIOTRACE)
21193 M:      Steven Rostedt <rostedt@goodmis.org>
21194 M:      Masami Hiramatsu <mhiramat@kernel.org>
21195 R:      Karol Herbst <karolherbst@gmail.com>
21196 R:      Pekka Paalanen <ppaalanen@gmail.com>
21197 L:      linux-kernel@vger.kernel.org
21198 L:      nouveau@lists.freedesktop.org
21199 S:      Maintained
21200 F:      arch/x86/mm/kmmio.c
21201 F:      arch/x86/mm/mmio-mod.c
21202 F:      arch/x86/mm/testmmiotrace.c
21203 F:      include/linux/mmiotrace.h
21204 F:      kernel/trace/trace_mmiotrace.c
21205
21206 TRACING OS NOISE / LATENCY TRACERS
21207 M:      Steven Rostedt <rostedt@goodmis.org>
21208 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21209 S:      Maintained
21210 F:      kernel/trace/trace_osnoise.c
21211 F:      include/trace/events/osnoise.h
21212 F:      kernel/trace/trace_hwlat.c
21213 F:      kernel/trace/trace_irqsoff.c
21214 F:      kernel/trace/trace_sched_wakeup.c
21215 F:      Documentation/trace/osnoise-tracer.rst
21216 F:      Documentation/trace/timerlat-tracer.rst
21217 F:      Documentation/trace/hwlat_detector.rst
21218 F:      arch/*/kernel/trace.c
21219
21220 Real-time Linux Analysis (RTLA) tools
21221 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21222 M:      Steven Rostedt <rostedt@goodmis.org>
21223 L:      linux-trace-devel@vger.kernel.org
21224 S:      Maintained
21225 F:      Documentation/tools/rtla/
21226 F:      tools/tracing/rtla/
21227
21228 TRADITIONAL CHINESE DOCUMENTATION
21229 M:      Hu Haowen <src.res@email.cn>
21230 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21231 S:      Maintained
21232 W:      https://github.com/srcres258/linux-doc
21233 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21234 F:      Documentation/translations/zh_TW/
21235
21236 TTY LAYER
21237 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21238 M:      Jiri Slaby <jirislaby@kernel.org>
21239 S:      Supported
21240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21241 F:      Documentation/driver-api/serial/
21242 F:      drivers/tty/
21243 F:      drivers/tty/serial/serial_core.c
21244 F:      include/linux/selection.h
21245 F:      include/linux/serial.h
21246 F:      include/linux/serial_core.h
21247 F:      include/linux/sysrq.h
21248 F:      include/linux/tty*.h
21249 F:      include/linux/vt.h
21250 F:      include/linux/vt_*.h
21251 F:      include/uapi/linux/serial.h
21252 F:      include/uapi/linux/serial_core.h
21253 F:      include/uapi/linux/tty.h
21254
21255 TUA9001 MEDIA DRIVER
21256 M:      Antti Palosaari <crope@iki.fi>
21257 L:      linux-media@vger.kernel.org
21258 S:      Maintained
21259 W:      https://linuxtv.org
21260 W:      http://palosaari.fi/linux/
21261 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21262 T:      git git://linuxtv.org/anttip/media_tree.git
21263 F:      drivers/media/tuners/tua9001*
21264
21265 TULIP NETWORK DRIVERS
21266 L:      netdev@vger.kernel.org
21267 L:      linux-parisc@vger.kernel.org
21268 S:      Orphan
21269 F:      drivers/net/ethernet/dec/tulip/
21270
21271 TUN/TAP driver
21272 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21273 S:      Maintained
21274 W:      http://vtun.sourceforge.net/tun
21275 F:      Documentation/networking/tuntap.rst
21276 F:      arch/um/os-Linux/drivers/
21277
21278 TURBOCHANNEL SUBSYSTEM
21279 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21280 M:      Ralf Baechle <ralf@linux-mips.org>
21281 L:      linux-mips@vger.kernel.org
21282 S:      Maintained
21283 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21284 F:      drivers/tc/
21285 F:      include/linux/tc.h
21286
21287 TURBOSTAT UTILITY
21288 M:      "Len Brown" <lenb@kernel.org>
21289 L:      linux-pm@vger.kernel.org
21290 S:      Supported
21291 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21292 B:      https://bugzilla.kernel.org
21293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21294 F:      tools/power/x86/turbostat/
21295
21296 TW5864 VIDEO4LINUX DRIVER
21297 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21298 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21299 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21300 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21301 L:      linux-media@vger.kernel.org
21302 S:      Supported
21303 F:      drivers/media/pci/tw5864/
21304
21305 TW68 VIDEO4LINUX DRIVER
21306 M:      Hans Verkuil <hverkuil@xs4all.nl>
21307 L:      linux-media@vger.kernel.org
21308 S:      Odd Fixes
21309 W:      https://linuxtv.org
21310 T:      git git://linuxtv.org/media_tree.git
21311 F:      drivers/media/pci/tw68/
21312
21313 TW686X VIDEO4LINUX DRIVER
21314 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21315 L:      linux-media@vger.kernel.org
21316 S:      Maintained
21317 W:      http://linuxtv.org
21318 T:      git git://linuxtv.org/media_tree.git
21319 F:      drivers/media/pci/tw686x/
21320
21321 U-BOOT ENVIRONMENT VARIABLES
21322 M:      Rafał Miłecki <rafal@milecki.pl>
21323 S:      Maintained
21324 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21325 F:      drivers/nvmem/u-boot-env.c
21326
21327 UACCE ACCELERATOR FRAMEWORK
21328 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21329 M:      Zhou Wang <wangzhou1@hisilicon.com>
21330 L:      linux-accelerators@lists.ozlabs.org
21331 L:      linux-kernel@vger.kernel.org
21332 S:      Maintained
21333 F:      Documentation/ABI/testing/sysfs-driver-uacce
21334 F:      Documentation/misc-devices/uacce.rst
21335 F:      drivers/misc/uacce/
21336 F:      include/linux/uacce.h
21337 F:      include/uapi/misc/uacce/
21338
21339 UBI FILE SYSTEM (UBIFS)
21340 M:      Richard Weinberger <richard@nod.at>
21341 L:      linux-mtd@lists.infradead.org
21342 S:      Supported
21343 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21346 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21347 F:      Documentation/filesystems/ubifs-authentication.rst
21348 F:      Documentation/filesystems/ubifs.rst
21349 F:      fs/ubifs/
21350
21351 UBLK USERSPACE BLOCK DRIVER
21352 M:      Ming Lei <ming.lei@redhat.com>
21353 L:      linux-block@vger.kernel.org
21354 S:      Maintained
21355 F:      Documentation/block/ublk.rst
21356 F:      drivers/block/ublk_drv.c
21357 F:      include/uapi/linux/ublk_cmd.h
21358
21359 UCLINUX (M68KNOMMU AND COLDFIRE)
21360 M:      Greg Ungerer <gerg@linux-m68k.org>
21361 L:      linux-m68k@lists.linux-m68k.org
21362 L:      uclinux-dev@uclinux.org  (subscribers-only)
21363 S:      Maintained
21364 W:      http://www.linux-m68k.org/
21365 W:      http://www.uclinux.org/
21366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21367 F:      arch/m68k/*/*_no.*
21368 F:      arch/m68k/68*/
21369 F:      arch/m68k/coldfire/
21370 F:      arch/m68k/include/asm/*_no.*
21371
21372 UDF FILESYSTEM
21373 M:      Jan Kara <jack@suse.com>
21374 S:      Maintained
21375 F:      Documentation/filesystems/udf.rst
21376 F:      fs/udf/
21377
21378 UDRAW TABLET
21379 M:      Bastien Nocera <hadess@hadess.net>
21380 L:      linux-input@vger.kernel.org
21381 S:      Maintained
21382 F:      drivers/hid/hid-udraw-ps3.c
21383
21384 UFS FILESYSTEM
21385 M:      Evgeniy Dushistov <dushistov@mail.ru>
21386 S:      Maintained
21387 F:      Documentation/admin-guide/ufs.rst
21388 F:      fs/ufs/
21389
21390 UHID USERSPACE HID IO DRIVER
21391 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21392 L:      linux-input@vger.kernel.org
21393 S:      Maintained
21394 F:      drivers/hid/uhid.c
21395 F:      include/uapi/linux/uhid.h
21396
21397 ULPI BUS
21398 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21399 L:      linux-usb@vger.kernel.org
21400 S:      Maintained
21401 F:      drivers/usb/common/ulpi.c
21402 F:      include/linux/ulpi/
21403
21404 UNICODE SUBSYSTEM
21405 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21406 L:      linux-fsdevel@vger.kernel.org
21407 S:      Supported
21408 F:      fs/unicode/
21409
21410 UNIFDEF
21411 M:      Tony Finch <dot@dotat.at>
21412 S:      Maintained
21413 W:      http://dotat.at/prog/unifdef
21414 F:      scripts/unifdef.c
21415
21416 UNIFORM CDROM DRIVER
21417 M:      Phillip Potter <phil@philpotter.co.uk>
21418 S:      Maintained
21419 F:      Documentation/cdrom/
21420 F:      drivers/cdrom/cdrom.c
21421 F:      include/linux/cdrom.h
21422 F:      include/uapi/linux/cdrom.h
21423
21424 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21425 R:      Alim Akhtar <alim.akhtar@samsung.com>
21426 R:      Avri Altman <avri.altman@wdc.com>
21427 R:      Bart Van Assche <bvanassche@acm.org>
21428 L:      linux-scsi@vger.kernel.org
21429 S:      Supported
21430 F:      Documentation/devicetree/bindings/ufs/
21431 F:      Documentation/scsi/ufs.rst
21432 F:      drivers/ufs/core/
21433
21434 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21435 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21436 L:      linux-scsi@vger.kernel.org
21437 S:      Supported
21438 F:      drivers/ufs/host/*dwc*
21439
21440 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
21441 M:      Alim Akhtar <alim.akhtar@samsung.com>
21442 L:      linux-scsi@vger.kernel.org
21443 S:      Maintained
21444 F:      drivers/ufs/host/ufs-exynos*
21445
21446 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21447 M:      Stanley Chu <stanley.chu@mediatek.com>
21448 L:      linux-scsi@vger.kernel.org
21449 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21450 S:      Maintained
21451 F:      drivers/ufs/host/ufs-mediatek*
21452
21453 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
21454 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
21455 L:      linux-arm-msm@vger.kernel.org
21456 L:      linux-scsi@vger.kernel.org
21457 S:      Maintained
21458 F:      Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
21459 F:      drivers/ufs/host/ufs-qcom*
21460
21461 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21462 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21463 L:      linux-renesas-soc@vger.kernel.org
21464 L:      linux-scsi@vger.kernel.org
21465 S:      Maintained
21466 F:      drivers/ufs/host/ufs-renesas.c
21467
21468 UNSORTED BLOCK IMAGES (UBI)
21469 M:      Richard Weinberger <richard@nod.at>
21470 L:      linux-mtd@lists.infradead.org
21471 S:      Supported
21472 W:      http://www.linux-mtd.infradead.org/
21473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21475 F:      drivers/mtd/ubi/
21476 F:      include/linux/mtd/ubi.h
21477 F:      include/uapi/mtd/ubi-user.h
21478
21479 USB "USBNET" DRIVER FRAMEWORK
21480 M:      Oliver Neukum <oneukum@suse.com>
21481 L:      netdev@vger.kernel.org
21482 S:      Maintained
21483 W:      http://www.linux-usb.org/usbnet
21484 F:      drivers/net/usb/usbnet.c
21485 F:      include/linux/usb/usbnet.h
21486
21487 USB ACM DRIVER
21488 M:      Oliver Neukum <oneukum@suse.com>
21489 L:      linux-usb@vger.kernel.org
21490 S:      Maintained
21491 F:      Documentation/usb/acm.rst
21492 F:      drivers/usb/class/cdc-acm.*
21493
21494 USB APPLE MFI FASTCHARGE DRIVER
21495 M:      Bastien Nocera <hadess@hadess.net>
21496 L:      linux-usb@vger.kernel.org
21497 S:      Maintained
21498 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21499
21500 USB AR5523 WIRELESS DRIVER
21501 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21502 L:      linux-wireless@vger.kernel.org
21503 S:      Maintained
21504 F:      drivers/net/wireless/ath/ar5523/
21505
21506 USB ATTACHED SCSI
21507 M:      Oliver Neukum <oneukum@suse.com>
21508 L:      linux-usb@vger.kernel.org
21509 L:      linux-scsi@vger.kernel.org
21510 S:      Maintained
21511 F:      drivers/usb/storage/uas.c
21512
21513 USB CDC ETHERNET DRIVER
21514 M:      Oliver Neukum <oliver@neukum.org>
21515 L:      linux-usb@vger.kernel.org
21516 S:      Maintained
21517 F:      drivers/net/usb/cdc_*.c
21518 F:      include/uapi/linux/usb/cdc.h
21519
21520 USB CHAOSKEY DRIVER
21521 M:      Keith Packard <keithp@keithp.com>
21522 L:      linux-usb@vger.kernel.org
21523 S:      Maintained
21524 F:      drivers/usb/misc/chaoskey.c
21525
21526 USB CYPRESS C67X00 DRIVER
21527 L:      linux-usb@vger.kernel.org
21528 S:      Orphan
21529 F:      drivers/usb/c67x00/
21530
21531 USB DAVICOM DM9601 DRIVER
21532 M:      Peter Korsgaard <peter@korsgaard.com>
21533 L:      netdev@vger.kernel.org
21534 S:      Maintained
21535 W:      http://www.linux-usb.org/usbnet
21536 F:      drivers/net/usb/dm9601.c
21537
21538 USB EHCI DRIVER
21539 M:      Alan Stern <stern@rowland.harvard.edu>
21540 L:      linux-usb@vger.kernel.org
21541 S:      Maintained
21542 F:      Documentation/usb/ehci.rst
21543 F:      drivers/usb/host/ehci*
21544
21545 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21546 M:      Jiri Kosina <jikos@kernel.org>
21547 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21548 L:      linux-usb@vger.kernel.org
21549 S:      Maintained
21550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21551 F:      Documentation/hid/hiddev.rst
21552 F:      drivers/hid/usbhid/
21553
21554 USB INTEL XHCI ROLE MUX DRIVER
21555 M:      Hans de Goede <hdegoede@redhat.com>
21556 L:      linux-usb@vger.kernel.org
21557 S:      Maintained
21558 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21559
21560 USB IP DRIVER FOR HISILICON KIRIN 960
21561 M:      Yu Chen <chenyu56@huawei.com>
21562 M:      Binghui Wang <wangbinghui@hisilicon.com>
21563 L:      linux-usb@vger.kernel.org
21564 S:      Maintained
21565 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21566 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21567
21568 USB IP DRIVER FOR HISILICON KIRIN 970
21569 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21570 L:      linux-usb@vger.kernel.org
21571 S:      Maintained
21572 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21573 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21574
21575 USB ISP116X DRIVER
21576 M:      Olav Kongas <ok@artecdesign.ee>
21577 L:      linux-usb@vger.kernel.org
21578 S:      Maintained
21579 F:      drivers/usb/host/isp116x*
21580 F:      include/linux/usb/isp116x.h
21581
21582 USB ISP1760 DRIVER
21583 M:      Rui Miguel Silva <rui.silva@linaro.org>
21584 L:      linux-usb@vger.kernel.org
21585 S:      Maintained
21586 F:      drivers/usb/isp1760/*
21587 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21588
21589 USB LAN78XX ETHERNET DRIVER
21590 M:      Woojung Huh <woojung.huh@microchip.com>
21591 M:      UNGLinuxDriver@microchip.com
21592 L:      netdev@vger.kernel.org
21593 S:      Maintained
21594 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21595 F:      drivers/net/usb/lan78xx.*
21596 F:      include/dt-bindings/net/microchip-lan78xx.h
21597
21598 USB MASS STORAGE DRIVER
21599 M:      Alan Stern <stern@rowland.harvard.edu>
21600 L:      linux-usb@vger.kernel.org
21601 L:      usb-storage@lists.one-eyed-alien.net
21602 S:      Maintained
21603 F:      drivers/usb/storage/
21604
21605 USB MIDI DRIVER
21606 M:      Clemens Ladisch <clemens@ladisch.de>
21607 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21608 S:      Maintained
21609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21610 F:      sound/usb/midi.*
21611
21612 USB NETWORKING DRIVERS
21613 L:      linux-usb@vger.kernel.org
21614 S:      Odd Fixes
21615 F:      drivers/net/usb/
21616
21617 USB OHCI DRIVER
21618 M:      Alan Stern <stern@rowland.harvard.edu>
21619 L:      linux-usb@vger.kernel.org
21620 S:      Maintained
21621 F:      Documentation/usb/ohci.rst
21622 F:      drivers/usb/host/ohci*
21623
21624 USB OTG FSM (Finite State Machine)
21625 M:      Peter Chen <peter.chen@kernel.org>
21626 L:      linux-usb@vger.kernel.org
21627 S:      Maintained
21628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21629 F:      drivers/usb/common/usb-otg-fsm.c
21630
21631 USB OVER IP DRIVER
21632 M:      Valentina Manea <valentina.manea.m@gmail.com>
21633 M:      Shuah Khan <shuah@kernel.org>
21634 M:      Shuah Khan <skhan@linuxfoundation.org>
21635 L:      linux-usb@vger.kernel.org
21636 S:      Maintained
21637 F:      Documentation/usb/usbip_protocol.rst
21638 F:      drivers/usb/usbip/
21639 F:      tools/testing/selftests/drivers/usb/usbip/
21640 F:      tools/usb/usbip/
21641
21642 USB PEGASUS DRIVER
21643 M:      Petko Manolov <petkan@nucleusys.com>
21644 L:      linux-usb@vger.kernel.org
21645 L:      netdev@vger.kernel.org
21646 S:      Maintained
21647 W:      https://github.com/petkan/pegasus
21648 T:      git https://github.com/petkan/pegasus.git
21649 F:      drivers/net/usb/pegasus.*
21650
21651 USB PRINTER DRIVER (usblp)
21652 M:      Pete Zaitcev <zaitcev@redhat.com>
21653 L:      linux-usb@vger.kernel.org
21654 S:      Supported
21655 F:      drivers/usb/class/usblp.c
21656
21657 USB RAW GADGET DRIVER
21658 R:      Andrey Konovalov <andreyknvl@gmail.com>
21659 L:      linux-usb@vger.kernel.org
21660 S:      Maintained
21661 F:      Documentation/usb/raw-gadget.rst
21662 F:      drivers/usb/gadget/legacy/raw_gadget.c
21663 F:      include/uapi/linux/usb/raw_gadget.h
21664
21665 USB QMI WWAN NETWORK DRIVER
21666 M:      Bjørn Mork <bjorn@mork.no>
21667 L:      netdev@vger.kernel.org
21668 S:      Maintained
21669 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21670 F:      drivers/net/usb/qmi_wwan.c
21671
21672 USB RTL8150 DRIVER
21673 M:      Petko Manolov <petkan@nucleusys.com>
21674 L:      linux-usb@vger.kernel.org
21675 L:      netdev@vger.kernel.org
21676 S:      Maintained
21677 W:      https://github.com/petkan/rtl8150
21678 T:      git https://github.com/petkan/rtl8150.git
21679 F:      drivers/net/usb/rtl8150.c
21680
21681 USB SERIAL SUBSYSTEM
21682 M:      Johan Hovold <johan@kernel.org>
21683 L:      linux-usb@vger.kernel.org
21684 S:      Maintained
21685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21686 F:      Documentation/usb/usb-serial.rst
21687 F:      drivers/usb/serial/
21688 F:      include/linux/usb/serial.h
21689
21690 USB SMSC75XX ETHERNET DRIVER
21691 M:      Steve Glendinning <steve.glendinning@shawell.net>
21692 L:      netdev@vger.kernel.org
21693 S:      Maintained
21694 F:      drivers/net/usb/smsc75xx.*
21695
21696 USB SMSC95XX ETHERNET DRIVER
21697 M:      Steve Glendinning <steve.glendinning@shawell.net>
21698 M:      UNGLinuxDriver@microchip.com
21699 L:      netdev@vger.kernel.org
21700 S:      Maintained
21701 F:      drivers/net/usb/smsc95xx.*
21702
21703 USB SUBSYSTEM
21704 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21705 L:      linux-usb@vger.kernel.org
21706 S:      Supported
21707 W:      http://www.linux-usb.org
21708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21709 F:      Documentation/devicetree/bindings/usb/
21710 F:      Documentation/usb/
21711 F:      drivers/usb/
21712 F:      include/dt-bindings/usb/
21713 F:      include/linux/usb.h
21714 F:      include/linux/usb/
21715
21716 USB TYPEC BUS FOR ALTERNATE MODES
21717 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21718 L:      linux-usb@vger.kernel.org
21719 S:      Maintained
21720 F:      Documentation/ABI/testing/sysfs-bus-typec
21721 F:      Documentation/driver-api/usb/typec_bus.rst
21722 F:      drivers/usb/typec/altmodes/
21723 F:      include/linux/usb/typec_altmode.h
21724
21725 USB TYPEC CLASS
21726 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21727 L:      linux-usb@vger.kernel.org
21728 S:      Maintained
21729 F:      Documentation/ABI/testing/sysfs-class-typec
21730 F:      Documentation/driver-api/usb/typec.rst
21731 F:      drivers/usb/typec/
21732 F:      include/linux/usb/typec.h
21733
21734 USB TYPEC INTEL PMC MUX DRIVER
21735 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21736 L:      linux-usb@vger.kernel.org
21737 S:      Maintained
21738 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21739 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21740
21741 USB TYPEC PI3USB30532 MUX DRIVER
21742 M:      Hans de Goede <hdegoede@redhat.com>
21743 L:      linux-usb@vger.kernel.org
21744 S:      Maintained
21745 F:      drivers/usb/typec/mux/pi3usb30532.c
21746
21747 USB TYPEC PORT CONTROLLER DRIVERS
21748 M:      Guenter Roeck <linux@roeck-us.net>
21749 L:      linux-usb@vger.kernel.org
21750 S:      Maintained
21751 F:      drivers/usb/typec/tcpm/
21752
21753 USB UHCI DRIVER
21754 M:      Alan Stern <stern@rowland.harvard.edu>
21755 L:      linux-usb@vger.kernel.org
21756 S:      Maintained
21757 F:      drivers/usb/host/uhci*
21758
21759 USB VIDEO CLASS
21760 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21761 L:      linux-media@vger.kernel.org
21762 S:      Maintained
21763 W:      http://www.ideasonboard.org/uvc/
21764 T:      git git://linuxtv.org/media_tree.git
21765 F:      drivers/media/usb/uvc/
21766 F:      include/uapi/linux/uvcvideo.h
21767
21768 USB WEBCAM GADGET
21769 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21770 M:      Daniel Scally <dan.scally@ideasonboard.com>
21771 L:      linux-usb@vger.kernel.org
21772 S:      Maintained
21773 F:      drivers/usb/gadget/function/*uvc*
21774 F:      drivers/usb/gadget/legacy/webcam.c
21775 F:      include/uapi/linux/usb/g_uvc.h
21776
21777 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21778 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21779 L:      linux-wireless@vger.kernel.org
21780 S:      Maintained
21781 F:      drivers/net/wireless/rndis_wlan.c
21782
21783 USB XHCI DRIVER
21784 M:      Mathias Nyman <mathias.nyman@intel.com>
21785 L:      linux-usb@vger.kernel.org
21786 S:      Supported
21787 F:      drivers/usb/host/pci-quirks*
21788 F:      drivers/usb/host/xhci*
21789
21790 USB ZD1201 DRIVER
21791 L:      linux-wireless@vger.kernel.org
21792 S:      Orphan
21793 W:      http://linux-lc100020.sourceforge.net
21794 F:      drivers/net/wireless/zydas/zd1201.*
21795
21796 USER DATAGRAM PROTOCOL (UDP)
21797 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21798 S:      Maintained
21799 F:      include/linux/udp.h
21800 F:      net/ipv4/udp.c
21801 F:      net/ipv6/udp.c
21802
21803 USER-MODE LINUX (UML)
21804 M:      Richard Weinberger <richard@nod.at>
21805 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21806 M:      Johannes Berg <johannes@sipsolutions.net>
21807 L:      linux-um@lists.infradead.org
21808 S:      Maintained
21809 W:      http://user-mode-linux.sourceforge.net
21810 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21813 F:      Documentation/virt/uml/
21814 F:      arch/um/
21815 F:      arch/x86/um/
21816 F:      fs/hostfs/
21817
21818 USERSPACE COPYIN/COPYOUT (UIOVEC)
21819 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21820 S:      Maintained
21821 F:      include/linux/uio.h
21822 F:      lib/iov_iter.c
21823
21824 USERSPACE DMA BUFFER DRIVER
21825 M:      Gerd Hoffmann <kraxel@redhat.com>
21826 L:      dri-devel@lists.freedesktop.org
21827 S:      Maintained
21828 T:      git git://anongit.freedesktop.org/drm/drm-misc
21829 F:      drivers/dma-buf/udmabuf.c
21830 F:      include/uapi/linux/udmabuf.h
21831
21832 USERSPACE I/O (UIO)
21833 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21834 S:      Maintained
21835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21836 F:      Documentation/driver-api/uio-howto.rst
21837 F:      drivers/uio/
21838 F:      include/linux/uio_driver.h
21839
21840 UTIL-LINUX PACKAGE
21841 M:      Karel Zak <kzak@redhat.com>
21842 L:      util-linux@vger.kernel.org
21843 S:      Maintained
21844 W:      http://en.wikipedia.org/wiki/Util-linux
21845 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21846
21847 UUID HELPERS
21848 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21849 L:      linux-kernel@vger.kernel.org
21850 S:      Maintained
21851 F:      include/linux/uuid.h
21852 F:      lib/test_uuid.c
21853 F:      lib/uuid.c
21854
21855 UV SYSFS DRIVER
21856 M:      Justin Ernst <justin.ernst@hpe.com>
21857 L:      platform-driver-x86@vger.kernel.org
21858 S:      Maintained
21859 F:      drivers/platform/x86/uv_sysfs.c
21860
21861 UVESAFB DRIVER
21862 M:      Michal Januszewski <spock@gentoo.org>
21863 L:      linux-fbdev@vger.kernel.org
21864 S:      Maintained
21865 W:      https://github.com/mjanusz/v86d
21866 F:      Documentation/fb/uvesafb.rst
21867 F:      drivers/video/fbdev/uvesafb.*
21868
21869 Ux500 CLOCK DRIVERS
21870 M:      Ulf Hansson <ulf.hansson@linaro.org>
21871 L:      linux-clk@vger.kernel.org
21872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21873 S:      Maintained
21874 F:      drivers/clk/ux500/
21875
21876 VF610 NAND DRIVER
21877 M:      Stefan Agner <stefan@agner.ch>
21878 L:      linux-mtd@lists.infradead.org
21879 S:      Supported
21880 F:      drivers/mtd/nand/raw/vf610_nfc.c
21881
21882 VFAT/FAT/MSDOS FILESYSTEM
21883 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21884 S:      Maintained
21885 F:      Documentation/filesystems/vfat.rst
21886 F:      fs/fat/
21887 F:      tools/testing/selftests/filesystems/fat/
21888
21889 VFIO DRIVER
21890 M:      Alex Williamson <alex.williamson@redhat.com>
21891 L:      kvm@vger.kernel.org
21892 S:      Maintained
21893 T:      git https://github.com/awilliam/linux-vfio.git
21894 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
21895 F:      Documentation/driver-api/vfio.rst
21896 F:      drivers/vfio/
21897 F:      include/linux/vfio.h
21898 F:      include/linux/vfio_pci_core.h
21899 F:      include/uapi/linux/vfio.h
21900
21901 VFIO FSL-MC DRIVER
21902 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21903 L:      kvm@vger.kernel.org
21904 S:      Maintained
21905 F:      drivers/vfio/fsl-mc/
21906
21907 VFIO HISILICON PCI DRIVER
21908 M:      Longfang Liu <liulongfang@huawei.com>
21909 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21910 L:      kvm@vger.kernel.org
21911 S:      Maintained
21912 F:      drivers/vfio/pci/hisilicon/
21913
21914 VFIO MEDIATED DEVICE DRIVERS
21915 M:      Kirti Wankhede <kwankhede@nvidia.com>
21916 L:      kvm@vger.kernel.org
21917 S:      Maintained
21918 F:      Documentation/driver-api/vfio-mediated-device.rst
21919 F:      drivers/vfio/mdev/
21920 F:      include/linux/mdev.h
21921 F:      samples/vfio-mdev/
21922
21923 VFIO PCI DEVICE SPECIFIC DRIVERS
21924 R:      Jason Gunthorpe <jgg@nvidia.com>
21925 R:      Yishai Hadas <yishaih@nvidia.com>
21926 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21927 R:      Kevin Tian <kevin.tian@intel.com>
21928 L:      kvm@vger.kernel.org
21929 S:      Maintained
21930 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21931 F:      drivers/vfio/pci/*/
21932
21933 VFIO PLATFORM DRIVER
21934 M:      Eric Auger <eric.auger@redhat.com>
21935 L:      kvm@vger.kernel.org
21936 S:      Maintained
21937 F:      drivers/vfio/platform/
21938
21939 VFIO MLX5 PCI DRIVER
21940 M:      Yishai Hadas <yishaih@nvidia.com>
21941 L:      kvm@vger.kernel.org
21942 S:      Maintained
21943 F:      drivers/vfio/pci/mlx5/
21944
21945 VGA_SWITCHEROO
21946 R:      Lukas Wunner <lukas@wunner.de>
21947 S:      Maintained
21948 T:      git git://anongit.freedesktop.org/drm/drm-misc
21949 F:      Documentation/gpu/vga-switcheroo.rst
21950 F:      drivers/gpu/vga/vga_switcheroo.c
21951 F:      include/linux/vga_switcheroo.h
21952
21953 VIA RHINE NETWORK DRIVER
21954 S:      Maintained
21955 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21956 F:      drivers/net/ethernet/via/via-rhine.c
21957
21958 VIA SD/MMC CARD CONTROLLER DRIVER
21959 M:      Bruce Chang <brucechang@via.com.tw>
21960 M:      Harald Welte <HaraldWelte@viatech.com>
21961 S:      Maintained
21962 F:      drivers/mmc/host/via-sdmmc.c
21963
21964 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21965 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21966 L:      linux-fbdev@vger.kernel.org
21967 S:      Maintained
21968 F:      drivers/video/fbdev/via/
21969 F:      include/linux/via-core.h
21970 F:      include/linux/via-gpio.h
21971 F:      include/linux/via_i2c.h
21972
21973 VIA VELOCITY NETWORK DRIVER
21974 M:      Francois Romieu <romieu@fr.zoreil.com>
21975 L:      netdev@vger.kernel.org
21976 S:      Maintained
21977 F:      drivers/net/ethernet/via/via-velocity.*
21978
21979 VICODEC VIRTUAL CODEC DRIVER
21980 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21981 L:      linux-media@vger.kernel.org
21982 S:      Maintained
21983 W:      https://linuxtv.org
21984 T:      git git://linuxtv.org/media_tree.git
21985 F:      drivers/media/test-drivers/vicodec/*
21986
21987 VIDEO I2C POLLING DRIVER
21988 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21989 L:      linux-media@vger.kernel.org
21990 S:      Maintained
21991 F:      drivers/media/i2c/video-i2c.c
21992
21993 VIDEO MULTIPLEXER DRIVER
21994 M:      Philipp Zabel <p.zabel@pengutronix.de>
21995 L:      linux-media@vger.kernel.org
21996 S:      Maintained
21997 F:      drivers/media/platform/video-mux.c
21998
21999 VIDEOBUF2 FRAMEWORK
22000 M:      Tomasz Figa <tfiga@chromium.org>
22001 M:      Marek Szyprowski <m.szyprowski@samsung.com>
22002 L:      linux-media@vger.kernel.org
22003 S:      Maintained
22004 F:      drivers/media/common/videobuf2/*
22005 F:      include/media/videobuf2-*
22006
22007 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22008 M:      Shuah Khan <skhan@linuxfoundation.org>
22009 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
22010 L:      linux-media@vger.kernel.org
22011 S:      Maintained
22012 W:      https://linuxtv.org
22013 T:      git git://linuxtv.org/media_tree.git
22014 F:      drivers/media/test-drivers/vimc/*
22015
22016 VIRT LIB
22017 M:      Alex Williamson <alex.williamson@redhat.com>
22018 M:      Paolo Bonzini <pbonzini@redhat.com>
22019 L:      kvm@vger.kernel.org
22020 S:      Supported
22021 F:      virt/lib/
22022
22023 VIRTIO AND VHOST VSOCK DRIVER
22024 M:      Stefan Hajnoczi <stefanha@redhat.com>
22025 M:      Stefano Garzarella <sgarzare@redhat.com>
22026 L:      kvm@vger.kernel.org
22027 L:      virtualization@lists.linux-foundation.org
22028 L:      netdev@vger.kernel.org
22029 S:      Maintained
22030 F:      drivers/vhost/vsock.c
22031 F:      include/linux/virtio_vsock.h
22032 F:      include/uapi/linux/virtio_vsock.h
22033 F:      net/vmw_vsock/virtio_transport.c
22034 F:      net/vmw_vsock/virtio_transport_common.c
22035
22036 VIRTIO BLOCK AND SCSI DRIVERS
22037 M:      "Michael S. Tsirkin" <mst@redhat.com>
22038 M:      Jason Wang <jasowang@redhat.com>
22039 R:      Paolo Bonzini <pbonzini@redhat.com>
22040 R:      Stefan Hajnoczi <stefanha@redhat.com>
22041 L:      virtualization@lists.linux-foundation.org
22042 S:      Maintained
22043 F:      drivers/block/virtio_blk.c
22044 F:      drivers/scsi/virtio_scsi.c
22045 F:      drivers/vhost/scsi.c
22046 F:      include/uapi/linux/virtio_blk.h
22047 F:      include/uapi/linux/virtio_scsi.h
22048
22049 VIRTIO CONSOLE DRIVER
22050 M:      Amit Shah <amit@kernel.org>
22051 L:      virtualization@lists.linux-foundation.org
22052 S:      Maintained
22053 F:      drivers/char/virtio_console.c
22054 F:      include/linux/virtio_console.h
22055 F:      include/uapi/linux/virtio_console.h
22056
22057 VIRTIO CORE AND NET DRIVERS
22058 M:      "Michael S. Tsirkin" <mst@redhat.com>
22059 M:      Jason Wang <jasowang@redhat.com>
22060 L:      virtualization@lists.linux-foundation.org
22061 S:      Maintained
22062 F:      Documentation/ABI/testing/sysfs-bus-vdpa
22063 F:      Documentation/ABI/testing/sysfs-class-vduse
22064 F:      Documentation/devicetree/bindings/virtio/
22065 F:      Documentation/driver-api/virtio/
22066 F:      drivers/block/virtio_blk.c
22067 F:      drivers/crypto/virtio/
22068 F:      drivers/net/virtio_net.c
22069 F:      drivers/vdpa/
22070 F:      drivers/virtio/
22071 F:      include/linux/vdpa.h
22072 F:      include/linux/virtio*.h
22073 F:      include/uapi/linux/virtio_*.h
22074 F:      tools/virtio/
22075
22076 VISL VIRTUAL STATELESS DECODER DRIVER
22077 M:      Daniel Almeida <daniel.almeida@collabora.com>
22078 L:      linux-media@vger.kernel.org
22079 S:      Supported
22080 F:      drivers/media/test-drivers/visl
22081
22082 IFCVF VIRTIO DATA PATH ACCELERATOR
22083 R:      Zhu Lingshan <lingshan.zhu@intel.com>
22084 F:      drivers/vdpa/ifcvf/
22085
22086 SNET DPU VIRTIO DATA PATH ACCELERATOR
22087 R:      Alvaro Karsz <alvaro.karsz@solid-run.com>
22088 F:      drivers/vdpa/solidrun/
22089
22090 VIRTIO BALLOON
22091 M:      "Michael S. Tsirkin" <mst@redhat.com>
22092 M:      David Hildenbrand <david@redhat.com>
22093 L:      virtualization@lists.linux-foundation.org
22094 S:      Maintained
22095 F:      drivers/virtio/virtio_balloon.c
22096 F:      include/uapi/linux/virtio_balloon.h
22097 F:      include/linux/balloon_compaction.h
22098 F:      mm/balloon_compaction.c
22099
22100 VIRTIO CRYPTO DRIVER
22101 M:      Gonglei <arei.gonglei@huawei.com>
22102 L:      virtualization@lists.linux-foundation.org
22103 L:      linux-crypto@vger.kernel.org
22104 S:      Maintained
22105 F:      drivers/crypto/virtio/
22106 F:      include/uapi/linux/virtio_crypto.h
22107
22108 VIRTIO DRIVERS FOR S390
22109 M:      Cornelia Huck <cohuck@redhat.com>
22110 M:      Halil Pasic <pasic@linux.ibm.com>
22111 M:      Eric Farman <farman@linux.ibm.com>
22112 L:      linux-s390@vger.kernel.org
22113 L:      virtualization@lists.linux-foundation.org
22114 L:      kvm@vger.kernel.org
22115 S:      Supported
22116 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22117 F:      drivers/s390/virtio/
22118
22119 VIRTIO FILE SYSTEM
22120 M:      Vivek Goyal <vgoyal@redhat.com>
22121 M:      Stefan Hajnoczi <stefanha@redhat.com>
22122 M:      Miklos Szeredi <miklos@szeredi.hu>
22123 L:      virtualization@lists.linux-foundation.org
22124 L:      linux-fsdevel@vger.kernel.org
22125 S:      Supported
22126 W:      https://virtio-fs.gitlab.io/
22127 F:      Documentation/filesystems/virtiofs.rst
22128 F:      fs/fuse/virtio_fs.c
22129 F:      include/uapi/linux/virtio_fs.h
22130
22131 VIRTIO GPIO DRIVER
22132 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22133 M:      Viresh Kumar <vireshk@kernel.org>
22134 L:      linux-gpio@vger.kernel.org
22135 L:      virtualization@lists.linux-foundation.org
22136 S:      Maintained
22137 F:      drivers/gpio/gpio-virtio.c
22138 F:      include/uapi/linux/virtio_gpio.h
22139
22140 VIRTIO GPU DRIVER
22141 M:      David Airlie <airlied@redhat.com>
22142 M:      Gerd Hoffmann <kraxel@redhat.com>
22143 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22144 R:      Chia-I Wu <olvaffe@gmail.com>
22145 L:      dri-devel@lists.freedesktop.org
22146 L:      virtualization@lists.linux-foundation.org
22147 S:      Maintained
22148 T:      git git://anongit.freedesktop.org/drm/drm-misc
22149 F:      drivers/gpu/drm/virtio/
22150 F:      include/uapi/linux/virtio_gpu.h
22151
22152 VIRTIO HOST (VHOST)
22153 M:      "Michael S. Tsirkin" <mst@redhat.com>
22154 M:      Jason Wang <jasowang@redhat.com>
22155 L:      kvm@vger.kernel.org
22156 L:      virtualization@lists.linux-foundation.org
22157 L:      netdev@vger.kernel.org
22158 S:      Maintained
22159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22160 F:      drivers/vhost/
22161 F:      include/linux/vhost_iotlb.h
22162 F:      include/uapi/linux/vhost.h
22163
22164 VIRTIO INPUT DRIVER
22165 M:      Gerd Hoffmann <kraxel@redhat.com>
22166 S:      Maintained
22167 F:      drivers/virtio/virtio_input.c
22168 F:      include/uapi/linux/virtio_input.h
22169
22170 VIRTIO IOMMU DRIVER
22171 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22172 L:      virtualization@lists.linux-foundation.org
22173 S:      Maintained
22174 F:      drivers/iommu/virtio-iommu.c
22175 F:      include/uapi/linux/virtio_iommu.h
22176
22177 VIRTIO MEM DRIVER
22178 M:      David Hildenbrand <david@redhat.com>
22179 L:      virtualization@lists.linux-foundation.org
22180 S:      Maintained
22181 W:      https://virtio-mem.gitlab.io/
22182 F:      drivers/virtio/virtio_mem.c
22183 F:      include/uapi/linux/virtio_mem.h
22184
22185 VIRTIO SOUND DRIVER
22186 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22187 M:      "Michael S. Tsirkin" <mst@redhat.com>
22188 L:      virtualization@lists.linux-foundation.org
22189 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22190 S:      Maintained
22191 F:      include/uapi/linux/virtio_snd.h
22192 F:      sound/virtio/*
22193
22194 VIRTIO I2C DRIVER
22195 M:      Conghui Chen <conghui.chen@intel.com>
22196 M:      Viresh Kumar <viresh.kumar@linaro.org>
22197 L:      linux-i2c@vger.kernel.org
22198 L:      virtualization@lists.linux-foundation.org
22199 S:      Maintained
22200 F:      drivers/i2c/busses/i2c-virtio.c
22201 F:      include/uapi/linux/virtio_i2c.h
22202
22203 VIRTIO PMEM DRIVER
22204 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22205 L:      virtualization@lists.linux-foundation.org
22206 S:      Maintained
22207 F:      drivers/nvdimm/virtio_pmem.c
22208 F:      drivers/nvdimm/nd_virtio.c
22209
22210 VIRTUAL BOX GUEST DEVICE DRIVER
22211 M:      Hans de Goede <hdegoede@redhat.com>
22212 M:      Arnd Bergmann <arnd@arndb.de>
22213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22214 S:      Maintained
22215 F:      drivers/virt/vboxguest/
22216 F:      include/linux/vbox_utils.h
22217 F:      include/uapi/linux/vbox*.h
22218
22219 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22220 M:      Hans de Goede <hdegoede@redhat.com>
22221 L:      linux-fsdevel@vger.kernel.org
22222 S:      Maintained
22223 F:      fs/vboxsf/*
22224
22225 VIRTUAL SERIO DEVICE DRIVER
22226 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22227 S:      Maintained
22228 F:      drivers/input/serio/userio.c
22229 F:      include/uapi/linux/userio.h
22230
22231 VIVID VIRTUAL VIDEO DRIVER
22232 M:      Hans Verkuil <hverkuil@xs4all.nl>
22233 L:      linux-media@vger.kernel.org
22234 S:      Maintained
22235 W:      https://linuxtv.org
22236 T:      git git://linuxtv.org/media_tree.git
22237 F:      drivers/media/test-drivers/vivid/*
22238
22239 VIDTV VIRTUAL DIGITAL TV DRIVER
22240 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22241 L:      linux-media@vger.kernel.org
22242 S:      Maintained
22243 W:      https://linuxtv.org
22244 T:      git git://linuxtv.org/media_tree.git
22245 F:      drivers/media/test-drivers/vidtv/*
22246
22247 VLYNQ BUS
22248 M:      Florian Fainelli <f.fainelli@gmail.com>
22249 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22250 S:      Maintained
22251 F:      drivers/vlynq/vlynq.c
22252 F:      include/linux/vlynq.h
22253
22254 VME SUBSYSTEM
22255 M:      Martyn Welch <martyn@welchs.me.uk>
22256 M:      Manohar Vanga <manohar.vanga@gmail.com>
22257 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22258 L:      linux-kernel@vger.kernel.org
22259 S:      Odd fixes
22260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22261 F:      Documentation/driver-api/vme.rst
22262 F:      drivers/staging/vme_user/
22263
22264 VM SOCKETS (AF_VSOCK)
22265 M:      Stefano Garzarella <sgarzare@redhat.com>
22266 L:      virtualization@lists.linux-foundation.org
22267 L:      netdev@vger.kernel.org
22268 S:      Maintained
22269 F:      drivers/net/vsockmon.c
22270 F:      include/net/af_vsock.h
22271 F:      include/uapi/linux/vm_sockets.h
22272 F:      include/uapi/linux/vm_sockets_diag.h
22273 F:      include/uapi/linux/vsockmon.h
22274 F:      net/vmw_vsock/
22275 F:      tools/testing/vsock/
22276
22277 VMWARE BALLOON DRIVER
22278 M:      Nadav Amit <namit@vmware.com>
22279 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22280 L:      linux-kernel@vger.kernel.org
22281 S:      Supported
22282 F:      drivers/misc/vmw_balloon.c
22283
22284 VMWARE HYPERVISOR INTERFACE
22285 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22286 M:      Alexey Makhalov <amakhalov@vmware.com>
22287 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22288 L:      virtualization@lists.linux-foundation.org
22289 L:      x86@kernel.org
22290 S:      Supported
22291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22292 F:      arch/x86/include/asm/vmware.h
22293 F:      arch/x86/kernel/cpu/vmware.c
22294
22295 VMWARE PVRDMA DRIVER
22296 M:      Bryan Tan <bryantan@vmware.com>
22297 M:      Vishnu Dasa <vdasa@vmware.com>
22298 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22299 L:      linux-rdma@vger.kernel.org
22300 S:      Supported
22301 F:      drivers/infiniband/hw/vmw_pvrdma/
22302
22303 VMWARE PVSCSI DRIVER
22304 M:      Vishal Bhakta <vbhakta@vmware.com>
22305 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22306 L:      linux-scsi@vger.kernel.org
22307 S:      Supported
22308 F:      drivers/scsi/vmw_pvscsi.c
22309 F:      drivers/scsi/vmw_pvscsi.h
22310
22311 VMWARE VIRTUAL PTP CLOCK DRIVER
22312 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22313 M:      Deep Shah <sdeep@vmware.com>
22314 R:      Alexey Makhalov <amakhalov@vmware.com>
22315 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22316 L:      netdev@vger.kernel.org
22317 S:      Supported
22318 F:      drivers/ptp/ptp_vmw.c
22319
22320 VMWARE VMCI DRIVER
22321 M:      Bryan Tan <bryantan@vmware.com>
22322 M:      Vishnu Dasa <vdasa@vmware.com>
22323 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22324 L:      linux-kernel@vger.kernel.org
22325 S:      Supported
22326 F:      drivers/misc/vmw_vmci/
22327 F:      include/linux/vmw_vmci*
22328
22329 VMWARE VMMOUSE SUBDRIVER
22330 M:      Zack Rusin <zackr@vmware.com>
22331 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22332 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22333 L:      linux-input@vger.kernel.org
22334 S:      Supported
22335 F:      drivers/input/mouse/vmmouse.c
22336 F:      drivers/input/mouse/vmmouse.h
22337
22338 VMWARE VMXNET3 ETHERNET DRIVER
22339 M:      Ronak Doshi <doshir@vmware.com>
22340 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22341 L:      netdev@vger.kernel.org
22342 S:      Supported
22343 F:      drivers/net/vmxnet3/
22344
22345 VMWARE VSOCK VMCI TRANSPORT DRIVER
22346 M:      Bryan Tan <bryantan@vmware.com>
22347 M:      Vishnu Dasa <vdasa@vmware.com>
22348 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22349 L:      linux-kernel@vger.kernel.org
22350 S:      Supported
22351 F:      net/vmw_vsock/vmci_transport*
22352
22353 VOCORE VOCORE2 BOARD
22354 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22355 L:      linux-mips@vger.kernel.org
22356 S:      Maintained
22357 F:      arch/mips/boot/dts/ralink/vocore2.dts
22358
22359 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22360 M:      Liam Girdwood <lgirdwood@gmail.com>
22361 M:      Mark Brown <broonie@kernel.org>
22362 L:      linux-kernel@vger.kernel.org
22363 S:      Supported
22364 W:      http://www.slimlogic.co.uk/?p=48
22365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22366 F:      Documentation/devicetree/bindings/regulator/
22367 F:      Documentation/power/regulator/
22368 F:      drivers/regulator/
22369 F:      include/dt-bindings/regulator/
22370 F:      include/linux/regulator/
22371 K:      regulator_get_optional
22372
22373 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22374 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22375 F:      drivers/regulator/irq_helpers.c
22376
22377 VRF
22378 M:      David Ahern <dsahern@kernel.org>
22379 L:      netdev@vger.kernel.org
22380 S:      Maintained
22381 F:      Documentation/networking/vrf.rst
22382 F:      drivers/net/vrf.c
22383
22384 VSPRINTF
22385 M:      Petr Mladek <pmladek@suse.com>
22386 M:      Steven Rostedt <rostedt@goodmis.org>
22387 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22388 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22389 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22390 S:      Maintained
22391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22392 F:      Documentation/core-api/printk-formats.rst
22393 F:      lib/test_printf.c
22394 F:      lib/test_scanf.c
22395 F:      lib/vsprintf.c
22396
22397 VT1211 HARDWARE MONITOR DRIVER
22398 M:      Juerg Haefliger <juergh@proton.me>
22399 L:      linux-hwmon@vger.kernel.org
22400 S:      Maintained
22401 F:      Documentation/hwmon/vt1211.rst
22402 F:      drivers/hwmon/vt1211.c
22403
22404 VT8231 HARDWARE MONITOR DRIVER
22405 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22406 L:      linux-hwmon@vger.kernel.org
22407 S:      Maintained
22408 F:      drivers/hwmon/vt8231.c
22409
22410 VUB300 USB to SDIO/SD/MMC bridge chip
22411 L:      linux-mmc@vger.kernel.org
22412 S:      Orphan
22413 F:      drivers/mmc/host/vub300.c
22414
22415 W1 DALLAS'S 1-WIRE BUS
22416 M:      Evgeniy Polyakov <zbr@ioremap.net>
22417 S:      Maintained
22418 F:      Documentation/devicetree/bindings/w1/
22419 F:      Documentation/w1/
22420 F:      drivers/w1/
22421 F:      include/linux/w1.h
22422
22423 W83791D HARDWARE MONITORING DRIVER
22424 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22425 L:      linux-hwmon@vger.kernel.org
22426 S:      Maintained
22427 F:      Documentation/hwmon/w83791d.rst
22428 F:      drivers/hwmon/w83791d.c
22429
22430 W83793 HARDWARE MONITORING DRIVER
22431 M:      Rudolf Marek <r.marek@assembler.cz>
22432 L:      linux-hwmon@vger.kernel.org
22433 S:      Maintained
22434 F:      Documentation/hwmon/w83793.rst
22435 F:      drivers/hwmon/w83793.c
22436
22437 W83795 HARDWARE MONITORING DRIVER
22438 M:      Jean Delvare <jdelvare@suse.com>
22439 L:      linux-hwmon@vger.kernel.org
22440 S:      Maintained
22441 F:      drivers/hwmon/w83795.c
22442
22443 W83L51xD SD/MMC CARD INTERFACE DRIVER
22444 M:      Pierre Ossman <pierre@ossman.eu>
22445 S:      Maintained
22446 F:      drivers/mmc/host/wbsd.*
22447
22448 WACOM PROTOCOL 4 SERIAL TABLETS
22449 M:      Julian Squires <julian@cipht.net>
22450 M:      Hans de Goede <hdegoede@redhat.com>
22451 L:      linux-input@vger.kernel.org
22452 S:      Maintained
22453 F:      drivers/input/tablet/wacom_serial4.c
22454
22455 WANGXUN ETHERNET DRIVER
22456 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22457 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22458 W:      https://www.net-swift.com
22459 L:      netdev@vger.kernel.org
22460 S:      Maintained
22461 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22462 F:      drivers/net/ethernet/wangxun/
22463
22464 WATCHDOG DEVICE DRIVERS
22465 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22466 M:      Guenter Roeck <linux@roeck-us.net>
22467 L:      linux-watchdog@vger.kernel.org
22468 S:      Maintained
22469 W:      http://www.linux-watchdog.org/
22470 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22471 F:      Documentation/devicetree/bindings/watchdog/
22472 F:      Documentation/watchdog/
22473 F:      drivers/watchdog/
22474 F:      include/linux/watchdog.h
22475 F:      include/uapi/linux/watchdog.h
22476 F:      include/trace/events/watchdog.h
22477
22478 WHISKEYCOVE PMIC GPIO DRIVER
22479 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22480 L:      linux-gpio@vger.kernel.org
22481 S:      Maintained
22482 F:      drivers/gpio/gpio-wcove.c
22483
22484 WHWAVE RTC DRIVER
22485 M:      Dianlong Li <long17.cool@163.com>
22486 L:      linux-rtc@vger.kernel.org
22487 S:      Maintained
22488 F:      drivers/rtc/rtc-sd3078.c
22489
22490 WIIMOTE HID DRIVER
22491 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22492 L:      linux-input@vger.kernel.org
22493 S:      Maintained
22494 F:      drivers/hid/hid-wiimote*
22495
22496 WILOCITY WIL6210 WIRELESS DRIVER
22497 L:      linux-wireless@vger.kernel.org
22498 S:      Orphan
22499 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22500 F:      drivers/net/wireless/ath/wil6210/
22501
22502 WINBOND CIR DRIVER
22503 M:      David Härdeman <david@hardeman.nu>
22504 S:      Maintained
22505 F:      drivers/media/rc/winbond-cir.c
22506
22507 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22508 M:      William Breathitt Gray <william.gray@linaro.org>
22509 L:      linux-watchdog@vger.kernel.org
22510 S:      Maintained
22511 F:      drivers/watchdog/ebc-c384_wdt.c
22512
22513 WINSYSTEMS WS16C48 GPIO DRIVER
22514 M:      William Breathitt Gray <william.gray@linaro.org>
22515 L:      linux-gpio@vger.kernel.org
22516 S:      Maintained
22517 F:      drivers/gpio/gpio-ws16c48.c
22518
22519 WIREGUARD SECURE NETWORK TUNNEL
22520 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22521 L:      wireguard@lists.zx2c4.com
22522 L:      netdev@vger.kernel.org
22523 S:      Maintained
22524 F:      drivers/net/wireguard/
22525 F:      tools/testing/selftests/wireguard/
22526
22527 WISTRON LAPTOP BUTTON DRIVER
22528 M:      Miloslav Trmac <mitr@volny.cz>
22529 S:      Maintained
22530 F:      drivers/input/misc/wistron_btns.c
22531
22532 WL3501 WIRELESS PCMCIA CARD DRIVER
22533 L:      linux-wireless@vger.kernel.org
22534 S:      Odd fixes
22535 F:      drivers/net/wireless/wl3501*
22536
22537 WOLFSON MICROELECTRONICS DRIVERS
22538 L:      patches@opensource.cirrus.com
22539 S:      Supported
22540 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22541 T:      git https://github.com/CirrusLogic/linux-drivers.git
22542 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22543 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22544 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22545 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22546 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22547 F:      Documentation/devicetree/bindings/sound/wm*
22548 F:      Documentation/hwmon/wm83??.rst
22549 F:      arch/arm/mach-s3c/mach-crag6410*
22550 F:      drivers/clk/clk-wm83*.c
22551 F:      drivers/gpio/gpio-*wm*.c
22552 F:      drivers/gpio/gpio-arizona.c
22553 F:      drivers/hwmon/wm83??-hwmon.c
22554 F:      drivers/input/misc/wm831x-on.c
22555 F:      drivers/input/touchscreen/wm831x-ts.c
22556 F:      drivers/input/touchscreen/wm97*.c
22557 F:      drivers/leds/leds-wm83*.c
22558 F:      drivers/mfd/arizona*
22559 F:      drivers/mfd/cs47l24*
22560 F:      drivers/mfd/wm*.c
22561 F:      drivers/power/supply/wm83*.c
22562 F:      drivers/regulator/arizona*
22563 F:      drivers/regulator/wm8*.c
22564 F:      drivers/rtc/rtc-wm83*.c
22565 F:      drivers/video/backlight/wm83*_bl.c
22566 F:      drivers/watchdog/wm83*_wdt.c
22567 F:      include/linux/mfd/arizona/
22568 F:      include/linux/mfd/wm831x/
22569 F:      include/linux/mfd/wm8350/
22570 F:      include/linux/mfd/wm8400*
22571 F:      include/linux/regulator/arizona*
22572 F:      include/linux/wm97xx.h
22573 F:      include/sound/wm????.h
22574 F:      sound/soc/codecs/arizona*
22575 F:      sound/soc/codecs/cs47l24*
22576 F:      sound/soc/codecs/wm*
22577
22578 WORKQUEUE
22579 M:      Tejun Heo <tj@kernel.org>
22580 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22581 S:      Maintained
22582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22583 F:      Documentation/core-api/workqueue.rst
22584 F:      include/linux/workqueue.h
22585 F:      kernel/workqueue.c
22586
22587 WWAN DRIVERS
22588 M:      Loic Poulain <loic.poulain@linaro.org>
22589 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22590 R:      Johannes Berg <johannes@sipsolutions.net>
22591 L:      netdev@vger.kernel.org
22592 S:      Maintained
22593 F:      drivers/net/wwan/
22594 F:      include/linux/wwan.h
22595 F:      include/uapi/linux/wwan.h
22596
22597 X-POWERS AXP288 PMIC DRIVERS
22598 M:      Hans de Goede <hdegoede@redhat.com>
22599 S:      Maintained
22600 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22601 N:      axp288
22602
22603 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22604 M:      Chen-Yu Tsai <wens@csie.org>
22605 L:      linux-kernel@vger.kernel.org
22606 S:      Maintained
22607 N:      axp[128]
22608
22609 X.25 STACK
22610 M:      Martin Schiller <ms@dev.tdt.de>
22611 L:      linux-x25@vger.kernel.org
22612 S:      Maintained
22613 F:      Documentation/networking/lapb-module.rst
22614 F:      Documentation/networking/x25*
22615 F:      drivers/net/wan/hdlc_x25.c
22616 F:      drivers/net/wan/lapbether.c
22617 F:      include/*/lapb.h
22618 F:      include/net/x25*
22619 F:      include/uapi/linux/x25.h
22620 F:      net/lapb/
22621 F:      net/x25/
22622
22623 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22624 M:      Thomas Gleixner <tglx@linutronix.de>
22625 M:      Ingo Molnar <mingo@redhat.com>
22626 M:      Borislav Petkov <bp@alien8.de>
22627 M:      Dave Hansen <dave.hansen@linux.intel.com>
22628 M:      x86@kernel.org
22629 R:      "H. Peter Anvin" <hpa@zytor.com>
22630 L:      linux-kernel@vger.kernel.org
22631 S:      Maintained
22632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22633 F:      Documentation/devicetree/bindings/x86/
22634 F:      Documentation/x86/
22635 F:      arch/x86/
22636
22637 X86 ENTRY CODE
22638 M:      Andy Lutomirski <luto@kernel.org>
22639 L:      linux-kernel@vger.kernel.org
22640 S:      Maintained
22641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22642 F:      arch/x86/entry/
22643
22644 X86 MCE INFRASTRUCTURE
22645 M:      Tony Luck <tony.luck@intel.com>
22646 M:      Borislav Petkov <bp@alien8.de>
22647 L:      linux-edac@vger.kernel.org
22648 S:      Maintained
22649 F:      Documentation/ABI/testing/sysfs-mce
22650 F:      Documentation/x86/x86_64/machinecheck.rst
22651 F:      arch/x86/kernel/cpu/mce/*
22652
22653 X86 MICROCODE UPDATE SUPPORT
22654 M:      Borislav Petkov <bp@alien8.de>
22655 S:      Maintained
22656 F:      arch/x86/kernel/cpu/microcode/*
22657
22658 X86 MM
22659 M:      Dave Hansen <dave.hansen@linux.intel.com>
22660 M:      Andy Lutomirski <luto@kernel.org>
22661 M:      Peter Zijlstra <peterz@infradead.org>
22662 L:      linux-kernel@vger.kernel.org
22663 S:      Maintained
22664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22665 F:      arch/x86/mm/
22666
22667 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22668 M:      Hans de Goede <hdegoede@redhat.com>
22669 L:      platform-driver-x86@vger.kernel.org
22670 S:      Maintained
22671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22672 F:      drivers/platform/x86/x86-android-tablets.c
22673
22674 X86 PLATFORM DRIVERS
22675 M:      Hans de Goede <hdegoede@redhat.com>
22676 M:      Mark Gross <markgross@kernel.org>
22677 L:      platform-driver-x86@vger.kernel.org
22678 S:      Maintained
22679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22680 F:      drivers/platform/olpc/
22681 F:      drivers/platform/x86/
22682 F:      include/linux/platform_data/x86/
22683
22684 X86 PLATFORM DRIVERS - ARCH
22685 R:      Darren Hart <dvhart@infradead.org>
22686 R:      Andy Shevchenko <andy@infradead.org>
22687 L:      platform-driver-x86@vger.kernel.org
22688 L:      x86@kernel.org
22689 S:      Maintained
22690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22691 F:      arch/x86/platform
22692
22693 X86 PLATFORM UV HPE SUPERDOME FLEX
22694 M:      Steve Wahl <steve.wahl@hpe.com>
22695 R:      Mike Travis <mike.travis@hpe.com>
22696 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22697 R:      Russ Anderson <russ.anderson@hpe.com>
22698 S:      Supported
22699 F:      arch/x86/include/asm/uv/
22700 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22701 F:      arch/x86/platform/uv/
22702
22703 X86 STACK UNWINDING
22704 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22705 M:      Peter Zijlstra <peterz@infradead.org>
22706 S:      Supported
22707 F:      arch/x86/include/asm/unwind*.h
22708 F:      arch/x86/kernel/dumpstack.c
22709 F:      arch/x86/kernel/stacktrace.c
22710 F:      arch/x86/kernel/unwind_*.c
22711
22712 X86 VDSO
22713 M:      Andy Lutomirski <luto@kernel.org>
22714 L:      linux-kernel@vger.kernel.org
22715 S:      Maintained
22716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22717 F:      arch/x86/entry/vdso/
22718
22719 XARRAY
22720 M:      Matthew Wilcox <willy@infradead.org>
22721 L:      linux-fsdevel@vger.kernel.org
22722 S:      Supported
22723 F:      Documentation/core-api/xarray.rst
22724 F:      include/linux/idr.h
22725 F:      include/linux/xarray.h
22726 F:      lib/idr.c
22727 F:      lib/xarray.c
22728 F:      tools/testing/radix-tree
22729
22730 XBOX DVD IR REMOTE
22731 M:      Benjamin Valentin <benpicco@googlemail.com>
22732 S:      Maintained
22733 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22734 F:      drivers/media/rc/xbox_remote.c
22735
22736 XC2028/3028 TUNER DRIVER
22737 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22738 L:      linux-media@vger.kernel.org
22739 S:      Maintained
22740 W:      https://linuxtv.org
22741 T:      git git://linuxtv.org/media_tree.git
22742 F:      drivers/media/tuners/xc2028.*
22743
22744 XDP (eXpress Data Path)
22745 M:      Alexei Starovoitov <ast@kernel.org>
22746 M:      Daniel Borkmann <daniel@iogearbox.net>
22747 M:      David S. Miller <davem@davemloft.net>
22748 M:      Jakub Kicinski <kuba@kernel.org>
22749 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22750 M:      John Fastabend <john.fastabend@gmail.com>
22751 L:      netdev@vger.kernel.org
22752 L:      bpf@vger.kernel.org
22753 S:      Supported
22754 F:      include/net/xdp.h
22755 F:      include/net/xdp_priv.h
22756 F:      include/trace/events/xdp.h
22757 F:      kernel/bpf/cpumap.c
22758 F:      kernel/bpf/devmap.c
22759 F:      net/core/xdp.c
22760 F:      samples/bpf/xdp*
22761 F:      tools/testing/selftests/bpf/*xdp*
22762 F:      tools/testing/selftests/bpf/*/*xdp*
22763 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22764 F:      drivers/net/ethernet/*/*/*xdp*
22765 K:      (?:\b|_)xdp(?:\b|_)
22766
22767 XDP SOCKETS (AF_XDP)
22768 M:      Björn Töpel <bjorn@kernel.org>
22769 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22770 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22771 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22772 L:      netdev@vger.kernel.org
22773 L:      bpf@vger.kernel.org
22774 S:      Maintained
22775 F:      Documentation/networking/af_xdp.rst
22776 F:      include/net/xdp_sock*
22777 F:      include/net/xsk_buff_pool.h
22778 F:      include/uapi/linux/if_xdp.h
22779 F:      include/uapi/linux/xdp_diag.h
22780 F:      include/net/netns/xdp.h
22781 F:      net/xdp/
22782 F:      tools/testing/selftests/bpf/*xsk*
22783
22784 XEN BLOCK SUBSYSTEM
22785 M:      Roger Pau Monné <roger.pau@citrix.com>
22786 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22787 S:      Supported
22788 F:      drivers/block/xen*
22789 F:      drivers/block/xen-blkback/*
22790
22791 XEN HYPERVISOR ARM
22792 M:      Stefano Stabellini <sstabellini@kernel.org>
22793 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22794 S:      Maintained
22795 F:      arch/arm/include/asm/xen/
22796 F:      arch/arm/xen/
22797
22798 XEN HYPERVISOR ARM64
22799 M:      Stefano Stabellini <sstabellini@kernel.org>
22800 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22801 S:      Maintained
22802 F:      arch/arm64/include/asm/xen/
22803 F:      arch/arm64/xen/
22804
22805 XEN HYPERVISOR INTERFACE
22806 M:      Juergen Gross <jgross@suse.com>
22807 M:      Stefano Stabellini <sstabellini@kernel.org>
22808 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22809 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22810 S:      Supported
22811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22812 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22813 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22814 F:      drivers/*/xen-*front.c
22815 F:      drivers/xen/
22816 F:      include/uapi/xen/
22817 F:      include/xen/
22818 F:      kernel/configs/xen.config
22819
22820 XEN HYPERVISOR X86
22821 M:      Juergen Gross <jgross@suse.com>
22822 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22823 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22824 S:      Supported
22825 F:      arch/x86/configs/xen.config
22826 F:      arch/x86/include/asm/pvclock-abi.h
22827 F:      arch/x86/include/asm/xen/
22828 F:      arch/x86/platform/pvh/
22829 F:      arch/x86/xen/
22830
22831 XEN NETWORK BACKEND DRIVER
22832 M:      Wei Liu <wei.liu@kernel.org>
22833 M:      Paul Durrant <paul@xen.org>
22834 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22835 L:      netdev@vger.kernel.org
22836 S:      Supported
22837 F:      drivers/net/xen-netback/*
22838
22839 XEN PCI SUBSYSTEM
22840 M:      Juergen Gross <jgross@suse.com>
22841 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22842 S:      Supported
22843 F:      arch/x86/pci/*xen*
22844 F:      drivers/pci/*xen*
22845
22846 XEN PVSCSI DRIVERS
22847 M:      Juergen Gross <jgross@suse.com>
22848 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22849 L:      linux-scsi@vger.kernel.org
22850 S:      Supported
22851 F:      drivers/scsi/xen-scsifront.c
22852 F:      drivers/xen/xen-scsiback.c
22853 F:      include/xen/interface/io/vscsiif.h
22854
22855 XEN PVUSB DRIVER
22856 M:      Juergen Gross <jgross@suse.com>
22857 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22858 L:      linux-usb@vger.kernel.org
22859 S:      Supported
22860 F:      drivers/usb/host/xen*
22861 F:      include/xen/interface/io/usbif.h
22862
22863 XEN SOUND FRONTEND DRIVER
22864 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22865 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22866 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22867 S:      Supported
22868 F:      sound/xen/*
22869
22870 XEN SWIOTLB SUBSYSTEM
22871 M:      Juergen Gross <jgross@suse.com>
22872 M:      Stefano Stabellini <sstabellini@kernel.org>
22873 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22874 L:      iommu@lists.linux.dev
22875 S:      Supported
22876 F:      arch/*/include/asm/xen/swiotlb-xen.h
22877 F:      drivers/xen/swiotlb-xen.c
22878 F:      include/xen/arm/swiotlb-xen.h
22879 F:      include/xen/swiotlb-xen.h
22880
22881 XFS FILESYSTEM
22882 C:      irc://irc.oftc.net/xfs
22883 M:      Darrick J. Wong <djwong@kernel.org>
22884 L:      linux-xfs@vger.kernel.org
22885 S:      Supported
22886 W:      http://xfs.org/
22887 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22888 F:      Documentation/ABI/testing/sysfs-fs-xfs
22889 F:      Documentation/admin-guide/xfs.rst
22890 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22891 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22892 F:      fs/xfs/
22893 F:      include/uapi/linux/dqblk_xfs.h
22894 F:      include/uapi/linux/fsmap.h
22895
22896 XILINX AMS DRIVER
22897 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22898 L:      linux-iio@vger.kernel.org
22899 S:      Maintained
22900 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22901 F:      drivers/iio/adc/xilinx-ams.c
22902
22903 XILINX AXI ETHERNET DRIVER
22904 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22905 S:      Maintained
22906 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22907
22908 XILINX CAN DRIVER
22909 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22910 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22911 L:      linux-can@vger.kernel.org
22912 S:      Maintained
22913 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22914 F:      drivers/net/can/xilinx_can.c
22915
22916 XILINX GPIO DRIVER
22917 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22918 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22919 R:      Michal Simek <michal.simek@xilinx.com>
22920 S:      Maintained
22921 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22922 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22923 F:      drivers/gpio/gpio-xilinx.c
22924 F:      drivers/gpio/gpio-zynq.c
22925
22926 XILINX SD-FEC IP CORES
22927 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22928 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22929 S:      Maintained
22930 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22931 F:      Documentation/misc-devices/xilinx_sdfec.rst
22932 F:      drivers/misc/Kconfig
22933 F:      drivers/misc/Makefile
22934 F:      drivers/misc/xilinx_sdfec.c
22935 F:      include/uapi/misc/xilinx_sdfec.h
22936
22937 XILINX PWM DRIVER
22938 M:      Sean Anderson <sean.anderson@seco.com>
22939 S:      Maintained
22940 F:      drivers/pwm/pwm-xilinx.c
22941 F:      include/clocksource/timer-xilinx.h
22942
22943 XILINX UARTLITE SERIAL DRIVER
22944 M:      Peter Korsgaard <jacmet@sunsite.dk>
22945 L:      linux-serial@vger.kernel.org
22946 S:      Maintained
22947 F:      drivers/tty/serial/uartlite.c
22948
22949 XILINX VIDEO IP CORES
22950 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22951 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22952 L:      linux-media@vger.kernel.org
22953 S:      Supported
22954 T:      git git://linuxtv.org/media_tree.git
22955 F:      Documentation/devicetree/bindings/media/xilinx/
22956 F:      drivers/media/platform/xilinx/
22957 F:      include/uapi/linux/xilinx-v4l2-controls.h
22958
22959 XILINX XDMA DRIVER
22960 M:      Lizhi Hou <lizhi.hou@amd.com>
22961 M:      Brian Xu <brian.xu@amd.com>
22962 M:      Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>
22963 L:      dmaengine@vger.kernel.org
22964 S:      Supported
22965 F:      drivers/dma/xilinx/xdma-regs.h
22966 F:      drivers/dma/xilinx/xdma.c
22967 F:      include/linux/dma/amd_xdma.h
22968 F:      include/linux/platform_data/amd_xdma.h
22969
22970 XILINX ZYNQMP DPDMA DRIVER
22971 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22972 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22973 L:      dmaengine@vger.kernel.org
22974 S:      Supported
22975 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22976 F:      drivers/dma/xilinx/xilinx_dpdma.c
22977 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22978
22979 XILINX ZYNQMP OCM EDAC DRIVER
22980 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
22981 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
22982 S:      Maintained
22983 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
22984 F:      drivers/edac/zynqmp_edac.c
22985
22986 XILINX ZYNQMP PSGTR PHY DRIVER
22987 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22989 L:      linux-kernel@vger.kernel.org
22990 S:      Supported
22991 T:      git https://github.com/Xilinx/linux-xlnx.git
22992 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22993 F:      drivers/phy/xilinx/phy-zynqmp.c
22994
22995 XILINX ZYNQMP SHA3 DRIVER
22996 M:      Harsha <harsha.harsha@xilinx.com>
22997 S:      Maintained
22998 F:      drivers/crypto/xilinx/zynqmp-sha.c
22999
23000 XILINX EVENT MANAGEMENT DRIVER
23001 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
23002 S:      Maintained
23003 F:      drivers/soc/xilinx/xlnx_event_manager.c
23004 F:      include/linux/firmware/xlnx-event-manager.h
23005
23006 XILLYBUS DRIVER
23007 M:      Eli Billauer <eli.billauer@gmail.com>
23008 L:      linux-kernel@vger.kernel.org
23009 S:      Supported
23010 F:      drivers/char/xillybus/
23011
23012 XLP9XX I2C DRIVER
23013 M:      George Cherian <gcherian@marvell.com>
23014 L:      linux-i2c@vger.kernel.org
23015 S:      Supported
23016 W:      http://www.marvell.com
23017 F:      drivers/i2c/busses/i2c-xlp9xx.c
23018
23019 XRA1403 GPIO EXPANDER
23020 M:      Nandor Han <nandor.han@ge.com>
23021 M:      Semi Malinen <semi.malinen@ge.com>
23022 L:      linux-gpio@vger.kernel.org
23023 S:      Maintained
23024 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23025 F:      drivers/gpio/gpio-xra1403.c
23026
23027 XTENSA XTFPGA PLATFORM SUPPORT
23028 M:      Max Filippov <jcmvbkbc@gmail.com>
23029 L:      linux-xtensa@linux-xtensa.org
23030 S:      Maintained
23031 F:      drivers/spi/spi-xtensa-xtfpga.c
23032 F:      sound/soc/xtensa/xtfpga-i2s.c
23033
23034 YAM DRIVER FOR AX.25
23035 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
23036 L:      linux-hams@vger.kernel.org
23037 S:      Maintained
23038 F:      drivers/net/hamradio/yam*
23039 F:      include/linux/yam.h
23040
23041 YAMA SECURITY MODULE
23042 M:      Kees Cook <keescook@chromium.org>
23043 S:      Supported
23044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23045 F:      Documentation/admin-guide/LSM/Yama.rst
23046 F:      security/yama/
23047
23048 YEALINK PHONE DRIVER
23049 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
23050 L:      usbb2k-api-dev@nongnu.org
23051 S:      Maintained
23052 F:      Documentation/input/devices/yealink.rst
23053 F:      drivers/input/misc/yealink.*
23054
23055 Z8530 DRIVER FOR AX.25
23056 M:      Joerg Reuter <jreuter@yaina.de>
23057 L:      linux-hams@vger.kernel.org
23058 S:      Maintained
23059 W:      http://yaina.de/jreuter/
23060 W:      http://www.qsl.net/dl1bke/
23061 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
23062 F:      drivers/net/hamradio/*scc.c
23063 F:      drivers/net/hamradio/z8530.h
23064
23065 ZBUD COMPRESSED PAGE ALLOCATOR
23066 M:      Seth Jennings <sjenning@redhat.com>
23067 M:      Dan Streetman <ddstreet@ieee.org>
23068 L:      linux-mm@kvack.org
23069 S:      Maintained
23070 F:      mm/zbud.c
23071
23072 Z3FOLD COMPRESSED PAGE ALLOCATOR
23073 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23074 R:      Miaohe Lin <linmiaohe@huawei.com>
23075 L:      linux-mm@kvack.org
23076 S:      Maintained
23077 F:      mm/z3fold.c
23078
23079 ZD1211RW WIRELESS DRIVER
23080 M:      Ulrich Kunitz <kune@deine-taler.de>
23081 L:      linux-wireless@vger.kernel.org
23082 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
23083 S:      Maintained
23084 W:      http://zd1211.ath.cx/wiki/DriverRewrite
23085 F:      drivers/net/wireless/zydas/zd1211rw/
23086
23087 ZD1301 MEDIA DRIVER
23088 M:      Antti Palosaari <crope@iki.fi>
23089 L:      linux-media@vger.kernel.org
23090 S:      Maintained
23091 W:      https://linuxtv.org/
23092 W:      http://palosaari.fi/linux/
23093 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23094 F:      drivers/media/usb/dvb-usb-v2/zd1301*
23095
23096 ZD1301_DEMOD MEDIA DRIVER
23097 M:      Antti Palosaari <crope@iki.fi>
23098 L:      linux-media@vger.kernel.org
23099 S:      Maintained
23100 W:      https://linuxtv.org/
23101 W:      http://palosaari.fi/linux/
23102 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23103 F:      drivers/media/dvb-frontends/zd1301_demod*
23104
23105 ZHAOXIN PROCESSOR SUPPORT
23106 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
23107 L:      linux-kernel@vger.kernel.org
23108 S:      Maintained
23109 F:      arch/x86/kernel/cpu/zhaoxin.c
23110
23111 ZONEFS FILESYSTEM
23112 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
23113 M:      Naohiro Aota <naohiro.aota@wdc.com>
23114 R:      Johannes Thumshirn <jth@kernel.org>
23115 L:      linux-fsdevel@vger.kernel.org
23116 S:      Maintained
23117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23118 F:      Documentation/filesystems/zonefs.rst
23119 F:      fs/zonefs/
23120
23121 ZPOOL COMPRESSED PAGE STORAGE API
23122 M:      Dan Streetman <ddstreet@ieee.org>
23123 L:      linux-mm@kvack.org
23124 S:      Maintained
23125 F:      include/linux/zpool.h
23126 F:      mm/zpool.c
23127
23128 ZR36067 VIDEO FOR LINUX DRIVER
23129 M:      Corentin Labbe <clabbe@baylibre.com>
23130 L:      mjpeg-users@lists.sourceforge.net
23131 L:      linux-media@vger.kernel.org
23132 S:      Maintained
23133 W:      http://mjpeg.sourceforge.net/driver-zoran/
23134 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23135 F:      Documentation/driver-api/media/drivers/zoran.rst
23136 F:      drivers/media/pci/zoran/
23137
23138 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23139 M:      Minchan Kim <minchan@kernel.org>
23140 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23141 L:      linux-kernel@vger.kernel.org
23142 S:      Maintained
23143 F:      Documentation/admin-guide/blockdev/zram.rst
23144 F:      drivers/block/zram/
23145
23146 ZS DECSTATION Z85C30 SERIAL DRIVER
23147 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23148 S:      Maintained
23149 F:      drivers/tty/serial/zs.*
23150
23151 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23152 M:      Minchan Kim <minchan@kernel.org>
23153 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23154 L:      linux-mm@kvack.org
23155 S:      Maintained
23156 F:      Documentation/mm/zsmalloc.rst
23157 F:      include/linux/zsmalloc.h
23158 F:      mm/zsmalloc.c
23159
23160 ZSTD
23161 M:      Nick Terrell <terrelln@fb.com>
23162 S:      Maintained
23163 B:      https://github.com/facebook/zstd/issues
23164 T:      git https://github.com/terrelln/linux.git
23165 F:      include/linux/zstd*
23166 F:      lib/zstd/
23167 F:      lib/decompress_unzstd.c
23168 F:      crypto/zstd.c
23169 N:      zstd
23170 K:      zstd
23171
23172 ZSWAP COMPRESSED SWAP CACHING
23173 M:      Seth Jennings <sjenning@redhat.com>
23174 M:      Dan Streetman <ddstreet@ieee.org>
23175 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23176 L:      linux-mm@kvack.org
23177 S:      Maintained
23178 F:      mm/zswap.c
23179
23180 THE REST
23181 M:      Linus Torvalds <torvalds@linux-foundation.org>
23182 L:      linux-kernel@vger.kernel.org
23183 S:      Buried alive in reporters
23184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23185 F:      *
23186 F:      */