Merge tag 'pci-v6.4-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
[linux-block.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/process/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@kernel.org>
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@lists.linux.dev
232 S:      Maintained
233 W:      http://github.com/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 PDS CORE DRIVER
1045 M:      Shannon Nelson <shannon.nelson@amd.com>
1046 M:      Brett Creeley <brett.creeley@amd.com>
1047 L:      netdev@vger.kernel.org
1048 S:      Supported
1049 F:      Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1050 F:      drivers/net/ethernet/amd/pds_core/
1051 F:      include/linux/pds/
1052
1053 AMD SPI DRIVER
1054 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1055 S:      Maintained
1056 F:      drivers/spi/spi-amd.c
1057
1058 AMD MP2 I2C DRIVER
1059 M:      Elie Morisse <syniurge@gmail.com>
1060 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1061 L:      linux-i2c@vger.kernel.org
1062 S:      Maintained
1063 F:      drivers/i2c/busses/i2c-amd-mp2*
1064
1065 AMD PMC DRIVER
1066 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1067 L:      platform-driver-x86@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/platform/x86/amd/pmc.c
1070
1071 AMD PMF DRIVER
1072 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1073 L:      platform-driver-x86@vger.kernel.org
1074 S:      Maintained
1075 F:      Documentation/ABI/testing/sysfs-amd-pmf
1076 F:      drivers/platform/x86/amd/pmf/
1077
1078 AMD HSMP DRIVER
1079 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1080 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1081 L:      platform-driver-x86@vger.kernel.org
1082 S:      Maintained
1083 F:      Documentation/arch/x86/amd_hsmp.rst
1084 F:      arch/x86/include/asm/amd_hsmp.h
1085 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1086 F:      drivers/platform/x86/amd/hsmp.c
1087
1088 AMD POWERPLAY AND SWSMU
1089 M:      Evan Quan <evan.quan@amd.com>
1090 L:      amd-gfx@lists.freedesktop.org
1091 S:      Supported
1092 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1093 F:      drivers/gpu/drm/amd/pm/
1094
1095 AMD PSTATE DRIVER
1096 M:      Huang Rui <ray.huang@amd.com>
1097 L:      linux-pm@vger.kernel.org
1098 S:      Supported
1099 F:      Documentation/admin-guide/pm/amd-pstate.rst
1100 F:      drivers/cpufreq/amd-pstate*
1101 F:      include/linux/amd-pstate.h
1102 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1103
1104 AMD PTDMA DRIVER
1105 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1106 L:      dmaengine@vger.kernel.org
1107 S:      Maintained
1108 F:      drivers/dma/ptdma/
1109
1110 AMD SEATTLE DEVICE TREE SUPPORT
1111 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1112 M:      Tom Lendacky <thomas.lendacky@amd.com>
1113 S:      Supported
1114 F:      arch/arm64/boot/dts/amd/
1115
1116 AMD XGBE DRIVER
1117 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1118 L:      netdev@vger.kernel.org
1119 S:      Supported
1120 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1121 F:      drivers/net/ethernet/amd/xgbe/
1122
1123 AMD SENSOR FUSION HUB DRIVER
1124 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1125 L:      linux-input@vger.kernel.org
1126 S:      Maintained
1127 F:      Documentation/hid/amd-sfh*
1128 F:      drivers/hid/amd-sfh-hid/
1129
1130 AMLOGIC DDR PMU DRIVER
1131 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1132 L:      linux-amlogic@lists.infradead.org
1133 S:      Supported
1134 W:      http://www.amlogic.com
1135 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1136 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1137 F:      drivers/perf/amlogic/
1138 F:      include/soc/amlogic/
1139
1140 AMPHION VPU CODEC V4L2 DRIVER
1141 M:      Ming Qian <ming.qian@nxp.com>
1142 M:      Shijie Qin <shijie.qin@nxp.com>
1143 M:      Zhou Peng <eagle.zhou@nxp.com>
1144 L:      linux-media@vger.kernel.org
1145 S:      Maintained
1146 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1147 F:      drivers/media/platform/amphion/
1148
1149 AMS AS73211 DRIVER
1150 M:      Christian Eggers <ceggers@arri.de>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Maintained
1153 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1154 F:      drivers/iio/light/as73211.c
1155
1156 AMT (Automatic Multicast Tunneling)
1157 M:      Taehee Yoo <ap420073@gmail.com>
1158 L:      netdev@vger.kernel.org
1159 S:      Maintained
1160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1162 F:      drivers/net/amt.c
1163
1164 ANALOG DEVICES INC AD4130 DRIVER
1165 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      http://ez.analog.com/community/linux-device-drivers
1169 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1170 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1171 F:      drivers/iio/adc/ad4130.c
1172
1173 ANALOG DEVICES INC AD7192 DRIVER
1174 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1175 L:      linux-iio@vger.kernel.org
1176 S:      Supported
1177 W:      https://ez.analog.com/linux-software-drivers
1178 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1179 F:      drivers/iio/adc/ad7192.c
1180
1181 ANALOG DEVICES INC AD7292 DRIVER
1182 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1183 L:      linux-iio@vger.kernel.org
1184 S:      Supported
1185 W:      https://ez.analog.com/linux-software-drivers
1186 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1187 F:      drivers/iio/adc/ad7292.c
1188
1189 ANALOG DEVICES INC AD3552R DRIVER
1190 M:      Nuno Sá <nuno.sa@analog.com>
1191 L:      linux-iio@vger.kernel.org
1192 S:      Supported
1193 W:      https://ez.analog.com/linux-software-drivers
1194 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1195 F:      drivers/iio/dac/ad3552r.c
1196
1197 ANALOG DEVICES INC AD7293 DRIVER
1198 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1199 L:      linux-iio@vger.kernel.org
1200 S:      Supported
1201 W:      https://ez.analog.com/linux-software-drivers
1202 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1203 F:      drivers/iio/dac/ad7293.c
1204
1205 ANALOG DEVICES INC AD7768-1 DRIVER
1206 M:      Michael Hennerich <Michael.Hennerich@analog.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,ad7768-1.yaml
1211 F:      drivers/iio/adc/ad7768-1.c
1212
1213 ANALOG DEVICES INC AD7780 DRIVER
1214 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1215 M:      Renato Lui Geh <renatogeh@gmail.com>
1216 L:      linux-iio@vger.kernel.org
1217 S:      Supported
1218 W:      https://ez.analog.com/linux-software-drivers
1219 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1220 F:      drivers/iio/adc/ad7780.c
1221
1222 ANALOG DEVICES INC AD74115 DRIVER
1223 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1224 L:      linux-iio@vger.kernel.org
1225 S:      Supported
1226 W:      http://ez.analog.com/community/linux-device-drivers
1227 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1228 F:      drivers/iio/addac/ad74115.c
1229
1230 ANALOG DEVICES INC AD74413R DRIVER
1231 M:      Cosmin Tanislav <cosmin.tanislav@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/addac/adi,ad74413r.yaml
1236 F:      drivers/iio/addac/ad74413r.c
1237 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1238
1239 ANALOG DEVICES INC ADA4250 DRIVER
1240 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1241 L:      linux-iio@vger.kernel.org
1242 S:      Supported
1243 W:      https://ez.analog.com/linux-software-drivers
1244 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1245 F:      drivers/iio/amplifiers/ada4250.c
1246
1247 ANALOG DEVICES INC ADF4377 DRIVER
1248 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1249 L:      linux-iio@vger.kernel.org
1250 S:      Supported
1251 W:      https://ez.analog.com/linux-software-drivers
1252 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1253 F:      drivers/iio/frequency/adf4377.c
1254
1255 ANALOG DEVICES INC ADGS1408 DRIVER
1256 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1257 S:      Supported
1258 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1259 F:      drivers/mux/adgs1408.c
1260
1261 ANALOG DEVICES INC ADIN DRIVER
1262 M:      Michael Hennerich <michael.hennerich@analog.com>
1263 L:      netdev@vger.kernel.org
1264 S:      Supported
1265 W:      https://ez.analog.com/linux-software-drivers
1266 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1267 F:      drivers/net/phy/adin.c
1268
1269 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1270 M:      Nuno Sa <nuno.sa@analog.com>
1271 L:      linux-iio@vger.kernel.org
1272 S:      Supported
1273 F:      drivers/iio/imu/adis.c
1274 F:      drivers/iio/imu/adis_buffer.c
1275 F:      drivers/iio/imu/adis_trigger.c
1276 F:      include/linux/iio/imu/adis.h
1277
1278 ANALOG DEVICES INC ADIS16460 DRIVER
1279 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1280 L:      linux-iio@vger.kernel.org
1281 S:      Supported
1282 W:      https://ez.analog.com/linux-software-drivers
1283 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1284 F:      drivers/iio/imu/adis16460.c
1285
1286 ANALOG DEVICES INC ADIS16475 DRIVER
1287 M:      Nuno Sa <nuno.sa@analog.com>
1288 L:      linux-iio@vger.kernel.org
1289 W:      https://ez.analog.com/linux-software-drivers
1290 S:      Supported
1291 F:      drivers/iio/imu/adis16475.c
1292 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1293
1294 ANALOG DEVICES INC ADM1177 DRIVER
1295 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1296 L:      linux-hwmon@vger.kernel.org
1297 S:      Supported
1298 W:      https://ez.analog.com/linux-software-drivers
1299 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1300 F:      drivers/hwmon/adm1177.c
1301
1302 ANALOG DEVICES INC ADMV1013 DRIVER
1303 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1304 L:      linux-iio@vger.kernel.org
1305 S:      Supported
1306 W:      https://ez.analog.com/linux-software-drivers
1307 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1308 F:      drivers/iio/frequency/admv1013.c
1309
1310 ANALOG DEVICES INC ADMV8818 DRIVER
1311 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1312 L:      linux-iio@vger.kernel.org
1313 S:      Supported
1314 W:      https://ez.analog.com/linux-software-drivers
1315 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1316 F:      drivers/iio/filter/admv8818.c
1317
1318 ANALOG DEVICES INC ADMV1014 DRIVER
1319 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1320 L:      linux-iio@vger.kernel.org
1321 S:      Supported
1322 W:      https://ez.analog.com/linux-software-drivers
1323 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1324 F:      drivers/iio/frequency/admv1014.c
1325
1326 ANALOG DEVICES INC ADP5061 DRIVER
1327 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1328 L:      linux-pm@vger.kernel.org
1329 S:      Supported
1330 W:      https://ez.analog.com/linux-software-drivers
1331 F:      drivers/power/supply/adp5061.c
1332
1333 ANALOG DEVICES INC ADRF6780 DRIVER
1334 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1335 L:      linux-iio@vger.kernel.org
1336 S:      Supported
1337 W:      https://ez.analog.com/linux-software-drivers
1338 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1339 F:      drivers/iio/frequency/adrf6780.c
1340
1341 ANALOG DEVICES INC ADV7180 DRIVER
1342 M:      Lars-Peter Clausen <lars@metafoo.de>
1343 L:      linux-media@vger.kernel.org
1344 S:      Supported
1345 W:      https://ez.analog.com/linux-software-drivers
1346 F:      drivers/media/i2c/adv7180.c
1347 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1348
1349 ANALOG DEVICES INC ADV748X DRIVER
1350 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1351 L:      linux-media@vger.kernel.org
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1354 F:      drivers/media/i2c/adv748x/*
1355
1356 ANALOG DEVICES INC ADV7511 DRIVER
1357 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1358 L:      linux-media@vger.kernel.org
1359 S:      Maintained
1360 F:      drivers/media/i2c/adv7511*
1361
1362 ANALOG DEVICES INC ADV7604 DRIVER
1363 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1364 L:      linux-media@vger.kernel.org
1365 S:      Maintained
1366 F:      drivers/media/i2c/adv7604*
1367 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1368
1369 ANALOG DEVICES INC ADV7842 DRIVER
1370 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1371 L:      linux-media@vger.kernel.org
1372 S:      Maintained
1373 F:      drivers/media/i2c/adv7842*
1374
1375 ANALOG DEVICES INC ADXRS290 DRIVER
1376 M:      Nishant Malpani <nish.malpani25@gmail.com>
1377 L:      linux-iio@vger.kernel.org
1378 S:      Supported
1379 F:      drivers/iio/gyro/adxrs290.c
1380 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1381
1382 ANALOG DEVICES INC ASOC CODEC DRIVERS
1383 M:      Lars-Peter Clausen <lars@metafoo.de>
1384 M:      Nuno Sá <nuno.sa@analog.com>
1385 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1386 S:      Supported
1387 W:      http://wiki.analog.com/
1388 W:      https://ez.analog.com/linux-software-drivers
1389 F:      sound/soc/codecs/ad1*
1390 F:      sound/soc/codecs/ad7*
1391 F:      sound/soc/codecs/adau*
1392 F:      sound/soc/codecs/adav*
1393 F:      sound/soc/codecs/sigmadsp.*
1394 F:      sound/soc/codecs/ssm*
1395
1396 ANALOG DEVICES INC DMA DRIVERS
1397 M:      Lars-Peter Clausen <lars@metafoo.de>
1398 S:      Supported
1399 W:      https://ez.analog.com/linux-software-drivers
1400 F:      drivers/dma/dma-axi-dmac.c
1401
1402 ANALOG DEVICES INC IIO DRIVERS
1403 M:      Lars-Peter Clausen <lars@metafoo.de>
1404 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1405 S:      Supported
1406 W:      http://wiki.analog.com/
1407 W:      https://ez.analog.com/linux-software-drivers
1408 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1409 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1410 F:      Documentation/devicetree/bindings/iio/*/adi,*
1411 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1412 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1413 F:      drivers/iio/*/ad*
1414 F:      drivers/iio/adc/ltc249*
1415 F:      drivers/iio/amplifiers/hmc425a.c
1416 F:      drivers/staging/iio/*/ad*
1417 X:      drivers/iio/*/adjd*
1418
1419 ANALOG DEVICES INC MAX31760 DRIVER
1420 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1421 S:      Maintained
1422 W:      http://wiki.analog.com/
1423 W:      https://ez.analog.com/linux-software-drivers
1424 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1425 F:      Documentation/hwmon/max31760.rst
1426 F:      drivers/hwmon/max31760.c
1427
1428 ANALOGBITS PLL LIBRARIES
1429 M:      Paul Walmsley <paul.walmsley@sifive.com>
1430 S:      Supported
1431 F:      drivers/clk/analogbits/*
1432 F:      include/linux/clk/analogbits*
1433
1434 ANDROID CONFIG FRAGMENTS
1435 M:      Rob Herring <robh@kernel.org>
1436 S:      Supported
1437 F:      kernel/configs/android*
1438
1439 ANDROID DRIVERS
1440 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1441 M:      Arve Hjønnevåg <arve@android.com>
1442 M:      Todd Kjos <tkjos@android.com>
1443 M:      Martijn Coenen <maco@android.com>
1444 M:      Joel Fernandes <joel@joelfernandes.org>
1445 M:      Christian Brauner <christian@brauner.io>
1446 M:      Carlos Llamas <cmllamas@google.com>
1447 M:      Suren Baghdasaryan <surenb@google.com>
1448 L:      linux-kernel@vger.kernel.org
1449 S:      Supported
1450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1451 F:      drivers/android/
1452
1453 ANDROID GOLDFISH PIC DRIVER
1454 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1455 S:      Supported
1456 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1457 F:      drivers/irqchip/irq-goldfish-pic.c
1458
1459 ANDROID GOLDFISH RTC DRIVER
1460 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1461 S:      Supported
1462 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1463 F:      drivers/rtc/rtc-goldfish.c
1464
1465 AOA (Apple Onboard Audio) ALSA DRIVER
1466 M:      Johannes Berg <johannes@sipsolutions.net>
1467 L:      linuxppc-dev@lists.ozlabs.org
1468 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1469 S:      Maintained
1470 F:      sound/aoa/
1471
1472 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1473 M:      William Breathitt Gray <william.gray@linaro.org>
1474 L:      linux-iio@vger.kernel.org
1475 S:      Maintained
1476 F:      drivers/iio/addac/stx104.c
1477
1478 APM DRIVER
1479 M:      Jiri Kosina <jikos@kernel.org>
1480 S:      Odd fixes
1481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1482 F:      arch/x86/kernel/apm_32.c
1483 F:      drivers/char/apm-emulation.c
1484 F:      include/linux/apm_bios.h
1485 F:      include/uapi/linux/apm_bios.h
1486
1487 APPARMOR SECURITY MODULE
1488 M:      John Johansen <john.johansen@canonical.com>
1489 M:      John Johansen <john@apparmor.net>
1490 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1491 S:      Supported
1492 W:      apparmor.net
1493 B:      https://gitlab.com/apparmor/apparmor-kernel
1494 C:      irc://irc.oftc.net/apparmor
1495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1496 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1497 F:      Documentation/admin-guide/LSM/apparmor.rst
1498 F:      security/apparmor/
1499
1500 APPLE BCM5974 MULTITOUCH DRIVER
1501 M:      Henrik Rydberg <rydberg@bitmath.org>
1502 L:      linux-input@vger.kernel.org
1503 S:      Odd fixes
1504 F:      drivers/input/mouse/bcm5974.c
1505
1506 APPLE PCIE CONTROLLER DRIVER
1507 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1508 M:      Marc Zyngier <maz@kernel.org>
1509 L:      linux-pci@vger.kernel.org
1510 S:      Maintained
1511 F:      drivers/pci/controller/pcie-apple.c
1512
1513 APPLE SMC DRIVER
1514 M:      Henrik Rydberg <rydberg@bitmath.org>
1515 L:      linux-hwmon@vger.kernel.org
1516 S:      Odd fixes
1517 F:      drivers/hwmon/applesmc.c
1518
1519 APPLETALK NETWORK LAYER
1520 L:      netdev@vger.kernel.org
1521 S:      Odd fixes
1522 F:      drivers/net/appletalk/
1523 F:      include/linux/atalk.h
1524 F:      include/uapi/linux/atalk.h
1525 F:      net/appletalk/
1526
1527 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1528 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1529 S:      Supported
1530 F:      arch/arm64/boot/dts/apm/
1531
1532 APPLIED MICRO (APM) X-GENE SOC EDAC
1533 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1534 S:      Supported
1535 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1536 F:      drivers/edac/xgene_edac.c
1537
1538 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1539 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1540 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1541 S:      Supported
1542 F:      drivers/net/ethernet/apm/xgene-v2/
1543
1544 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1545 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1546 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1547 M:      Quan Nguyen <quan@os.amperecomputing.com>
1548 S:      Supported
1549 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1550 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1551 F:      drivers/net/ethernet/apm/xgene/
1552 F:      drivers/net/mdio/mdio-xgene.c
1553
1554 APPLIED MICRO (APM) X-GENE SOC PMU
1555 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1556 S:      Supported
1557 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1558 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1559 F:      drivers/perf/xgene_pmu.c
1560
1561 APTINA CAMERA SENSOR PLL
1562 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1563 L:      linux-media@vger.kernel.org
1564 S:      Maintained
1565 F:      drivers/media/i2c/aptina-pll.*
1566
1567 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1568 M:      Aleksa Savic <savicaleksa83@gmail.com>
1569 M:      Jack Doan <me@jackdoan.com>
1570 L:      linux-hwmon@vger.kernel.org
1571 S:      Maintained
1572 F:      Documentation/hwmon/aquacomputer_d5next.rst
1573 F:      drivers/hwmon/aquacomputer_d5next.c
1574
1575 AQUANTIA ETHERNET DRIVER (atlantic)
1576 M:      Igor Russkikh <irusskikh@marvell.com>
1577 L:      netdev@vger.kernel.org
1578 S:      Supported
1579 W:      https://www.marvell.com/
1580 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1581 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1582 F:      drivers/net/ethernet/aquantia/atlantic/
1583
1584 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1585 M:      Egor Pomozov <epomozov@marvell.com>
1586 L:      netdev@vger.kernel.org
1587 S:      Supported
1588 W:      http://www.aquantia.com
1589 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1590
1591 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1592 M:      Krzysztof Hałasa <khalasa@piap.pl>
1593 L:      linux-media@vger.kernel.org
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1596 F:      drivers/media/i2c/ar0521.c
1597
1598 ARASAN NAND CONTROLLER DRIVER
1599 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1600 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1601 L:      linux-mtd@lists.infradead.org
1602 S:      Maintained
1603 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1604 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1605
1606 ARC FRAMEBUFFER DRIVER
1607 M:      Jaya Kumar <jayalk@intworks.biz>
1608 S:      Maintained
1609 F:      drivers/video/fbdev/arcfb.c
1610 F:      drivers/video/fbdev/core/fb_defio.c
1611
1612 ARC PGU DRM DRIVER
1613 M:      Alexey Brodkin <abrodkin@synopsys.com>
1614 S:      Supported
1615 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1616 F:      drivers/gpu/drm/tiny/arcpgu.c
1617
1618 ARCNET NETWORK LAYER
1619 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1620 L:      netdev@vger.kernel.org
1621 S:      Maintained
1622 F:      drivers/net/arcnet/
1623 F:      include/uapi/linux/if_arcnet.h
1624
1625 ARM ARCHITECTED TIMER DRIVER
1626 M:      Mark Rutland <mark.rutland@arm.com>
1627 M:      Marc Zyngier <maz@kernel.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      arch/arm/include/asm/arch_timer.h
1631 F:      arch/arm64/include/asm/arch_timer.h
1632 F:      drivers/clocksource/arm_arch_timer.c
1633
1634 ARM HDLCD DRM DRIVER
1635 M:      Liviu Dudau <liviu.dudau@arm.com>
1636 S:      Supported
1637 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1638 F:      drivers/gpu/drm/arm/hdlcd_*
1639
1640 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1641 M:      Linus Walleij <linus.walleij@linaro.org>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1645 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1646 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1647 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1648 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1649 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1650 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1651 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1652 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1653 F:      arch/arm/boot/dts/arm-realview-*
1654 F:      arch/arm/boot/dts/integrator*
1655 F:      arch/arm/boot/dts/versatile*
1656 F:      arch/arm/mach-versatile/
1657 F:      drivers/bus/arm-integrator-lm.c
1658 F:      drivers/clk/versatile/
1659 F:      drivers/i2c/busses/i2c-versatile.c
1660 F:      drivers/irqchip/irq-versatile-fpga.c
1661 F:      drivers/mtd/maps/physmap-versatile.*
1662 F:      drivers/power/reset/arm-versatile-reboot.c
1663 F:      drivers/soc/versatile/
1664
1665 ARM KOMEDA DRM-KMS DRIVER
1666 M:      James (Qian) Wang <james.qian.wang@arm.com>
1667 M:      Liviu Dudau <liviu.dudau@arm.com>
1668 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1669 L:      Mali DP Maintainers <malidp@foss.arm.com>
1670 S:      Supported
1671 T:      git git://anongit.freedesktop.org/drm/drm-misc
1672 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1673 F:      Documentation/gpu/komeda-kms.rst
1674 F:      drivers/gpu/drm/arm/display/include/
1675 F:      drivers/gpu/drm/arm/display/komeda/
1676
1677 ARM MALI PANFROST DRM DRIVER
1678 M:      Rob Herring <robh@kernel.org>
1679 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1680 R:      Steven Price <steven.price@arm.com>
1681 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1682 L:      dri-devel@lists.freedesktop.org
1683 S:      Supported
1684 T:      git git://anongit.freedesktop.org/drm/drm-misc
1685 F:      drivers/gpu/drm/panfrost/
1686 F:      include/uapi/drm/panfrost_drm.h
1687
1688 ARM MALI-DP DRM DRIVER
1689 M:      Liviu Dudau <liviu.dudau@arm.com>
1690 M:      Brian Starkey <brian.starkey@arm.com>
1691 L:      Mali DP Maintainers <malidp@foss.arm.com>
1692 S:      Supported
1693 T:      git git://anongit.freedesktop.org/drm/drm-misc
1694 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1695 F:      Documentation/gpu/afbc.rst
1696 F:      drivers/gpu/drm/arm/
1697
1698 ARM MFM AND FLOPPY DRIVERS
1699 M:      Ian Molton <spyro@f2s.com>
1700 S:      Maintained
1701 F:      arch/arm/include/asm/floppy.h
1702 F:      arch/arm/mach-rpc/floppydma.S
1703
1704 ARM PMU PROFILING AND DEBUGGING
1705 M:      Will Deacon <will@kernel.org>
1706 M:      Mark Rutland <mark.rutland@arm.com>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1710 F:      Documentation/devicetree/bindings/perf/
1711 F:      arch/arm*/include/asm/hw_breakpoint.h
1712 F:      arch/arm*/include/asm/perf_event.h
1713 F:      arch/arm*/kernel/hw_breakpoint.c
1714 F:      arch/arm*/kernel/perf_*
1715 F:      drivers/perf/
1716 F:      include/linux/perf/arm_pmu.h
1717
1718 ARM PORT
1719 M:      Russell King <linux@armlinux.org.uk>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Odd Fixes
1722 W:      http://www.armlinux.org.uk/
1723 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1724 F:      arch/arm/
1725 X:      arch/arm/boot/dts/
1726
1727 ARM PRIMECELL AACI PL041 DRIVER
1728 M:      Russell King <linux@armlinux.org.uk>
1729 S:      Odd Fixes
1730 F:      sound/arm/aaci.*
1731
1732 ARM PRIMECELL BUS SUPPORT
1733 M:      Russell King <linux@armlinux.org.uk>
1734 S:      Odd Fixes
1735 F:      drivers/amba/
1736 F:      include/linux/amba/bus.h
1737
1738 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1739 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1740 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1741 L:      linux-mtd@lists.infradead.org
1742 S:      Maintained
1743 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1744 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1745
1746 ARM PRIMECELL PL35X SMC DRIVER
1747 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1748 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1752 F:      drivers/memory/pl353-smc.c
1753
1754 ARM PRIMECELL CLCD PL110 DRIVER
1755 M:      Russell King <linux@armlinux.org.uk>
1756 S:      Odd Fixes
1757 F:      drivers/video/fbdev/amba-clcd.*
1758
1759 ARM PRIMECELL KMI PL050 DRIVER
1760 M:      Russell King <linux@armlinux.org.uk>
1761 S:      Odd Fixes
1762 F:      drivers/input/serio/ambakmi.*
1763 F:      include/linux/amba/kmi.h
1764
1765 ARM PRIMECELL MMCI PL180/1 DRIVER
1766 M:      Russell King <linux@armlinux.org.uk>
1767 S:      Odd Fixes
1768 F:      drivers/mmc/host/mmci.*
1769 F:      include/linux/amba/mmci.h
1770
1771 ARM PRIMECELL SSP PL022 SPI DRIVER
1772 M:      Linus Walleij <linus.walleij@linaro.org>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Maintained
1775 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1776 F:      drivers/spi/spi-pl022.c
1777
1778 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1779 M:      Russell King <linux@armlinux.org.uk>
1780 S:      Odd Fixes
1781 F:      drivers/tty/serial/amba-pl01*.c
1782 F:      include/linux/amba/serial.h
1783
1784 ARM PRIMECELL VIC PL190/PL192 DRIVER
1785 M:      Linus Walleij <linus.walleij@linaro.org>
1786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1787 S:      Maintained
1788 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1789 F:      drivers/irqchip/irq-vic.c
1790
1791 ARM SMC WATCHDOG DRIVER
1792 M:      Julius Werner <jwerner@chromium.org>
1793 R:      Evan Benn <evanbenn@chromium.org>
1794 S:      Maintained
1795 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1796 F:      drivers/watchdog/arm_smc_wdt.c
1797
1798 ARM SMMU DRIVERS
1799 M:      Will Deacon <will@kernel.org>
1800 R:      Robin Murphy <robin.murphy@arm.com>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1804 F:      drivers/iommu/arm/
1805 F:      drivers/iommu/io-pgtable-arm*
1806
1807 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1808 M:      Arnd Bergmann <arnd@arndb.de>
1809 M:      Olof Johansson <olof@lixom.net>
1810 M:      soc@kernel.org
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 C:      irc://irc.libera.chat/armlinux
1814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1815 F:      arch/arm/boot/dts/Makefile
1816 F:      arch/arm64/boot/dts/Makefile
1817
1818 ARM SUB-ARCHITECTURES
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 C:      irc://irc.libera.chat/armlinux
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1823 F:      arch/arm/mach-*/
1824 F:      arch/arm/plat-*/
1825
1826 ARM/ACTIONS SEMI ARCHITECTURE
1827 M:      Andreas Färber <afaerber@suse.de>
1828 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1831 S:      Maintained
1832 F:      Documentation/devicetree/bindings/arm/actions.yaml
1833 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1834 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1835 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1836 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1837 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1838 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1839 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1840 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1841 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1842 F:      arch/arm/boot/dts/owl-*
1843 F:      arch/arm/mach-actions/
1844 F:      arch/arm64/boot/dts/actions/
1845 F:      drivers/clk/actions/
1846 F:      drivers/clocksource/timer-owl*
1847 F:      drivers/dma/owl-dma.c
1848 F:      drivers/i2c/busses/i2c-owl.c
1849 F:      drivers/irqchip/irq-owl-sirq.c
1850 F:      drivers/mmc/host/owl-mmc.c
1851 F:      drivers/net/ethernet/actions/
1852 F:      drivers/pinctrl/actions/*
1853 F:      drivers/soc/actions/
1854 F:      include/dt-bindings/power/owl-*
1855 F:      include/dt-bindings/reset/actions,*
1856 F:      include/linux/soc/actions/
1857 N:      owl
1858
1859 ARM/Allwinner SoC Clock Support
1860 M:      Emilio López <emilio@elopez.com.ar>
1861 S:      Maintained
1862 F:      drivers/clk/sunxi/
1863
1864 ARM/Allwinner sunXi SoC support
1865 M:      Chen-Yu Tsai <wens@csie.org>
1866 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1867 M:      Samuel Holland <samuel@sholland.org>
1868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1869 S:      Maintained
1870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1871 L:      linux-sunxi@lists.linux.dev
1872 F:      arch/arm/mach-sunxi/
1873 F:      arch/arm64/boot/dts/allwinner/
1874 F:      drivers/clk/sunxi-ng/
1875 F:      drivers/pinctrl/sunxi/
1876 F:      drivers/soc/sunxi/
1877 N:      allwinner
1878 N:      sun[x456789]i
1879 N:      sun[25]0i
1880
1881 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1882 M:      Neil Armstrong <neil.armstrong@linaro.org>
1883 M:      Jerome Brunet <jbrunet@baylibre.com>
1884 L:      linux-amlogic@lists.infradead.org
1885 S:      Maintained
1886 F:      Documentation/devicetree/bindings/clock/amlogic*
1887 F:      drivers/clk/meson/
1888 F:      include/dt-bindings/clock/gxbb*
1889 F:      include/dt-bindings/clock/meson*
1890
1891 ARM/Amlogic Meson SoC Crypto Drivers
1892 M:      Corentin Labbe <clabbe@baylibre.com>
1893 L:      linux-crypto@vger.kernel.org
1894 L:      linux-amlogic@lists.infradead.org
1895 S:      Maintained
1896 F:      Documentation/devicetree/bindings/crypto/amlogic*
1897 F:      drivers/crypto/amlogic/
1898
1899 ARM/Amlogic Meson SoC Sound Drivers
1900 M:      Jerome Brunet <jbrunet@baylibre.com>
1901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      Documentation/devicetree/bindings/sound/amlogic*
1904 F:      sound/soc/meson/
1905
1906 ARM/Amlogic Meson SoC support
1907 M:      Neil Armstrong <neil.armstrong@linaro.org>
1908 M:      Kevin Hilman <khilman@baylibre.com>
1909 R:      Jerome Brunet <jbrunet@baylibre.com>
1910 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1912 L:      linux-amlogic@lists.infradead.org
1913 S:      Maintained
1914 W:      http://linux-meson.com/
1915 F:      arch/arm/boot/dts/meson*
1916 F:      arch/arm/mach-meson/
1917 F:      arch/arm64/boot/dts/amlogic/
1918 F:      drivers/mmc/host/meson*
1919 F:      drivers/pinctrl/meson/
1920 F:      drivers/rtc/rtc-meson*
1921 F:      drivers/soc/amlogic/
1922 N:      meson
1923
1924 ARM/Annapurna Labs ALPINE ARCHITECTURE
1925 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1926 M:      Antoine Tenart <atenart@kernel.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 F:      arch/arm/boot/dts/alpine*
1930 F:      arch/arm/mach-alpine/
1931 F:      arch/arm64/boot/dts/amazon/
1932 F:      drivers/*/*alpine*
1933
1934 ARM/APPLE MACHINE SUPPORT
1935 M:      Hector Martin <marcan@marcan.st>
1936 M:      Sven Peter <sven@svenpeter.dev>
1937 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1938 L:      asahi@lists.linux.dev
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 W:      https://asahilinux.org
1942 B:      https://github.com/AsahiLinux/linux/issues
1943 C:      irc://irc.oftc.net/asahi-dev
1944 T:      git https://github.com/AsahiLinux/linux.git
1945 F:      Documentation/devicetree/bindings/arm/apple.yaml
1946 F:      Documentation/devicetree/bindings/arm/apple/*
1947 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1948 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1949 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1950 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1951 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1952 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1953 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1954 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1955 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1956 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1957 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1958 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1959 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1960 F:      Documentation/devicetree/bindings/power/apple*
1961 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1962 F:      arch/arm64/boot/dts/apple/
1963 F:      drivers/bluetooth/hci_bcm4377.c
1964 F:      drivers/clk/clk-apple-nco.c
1965 F:      drivers/cpufreq/apple-soc-cpufreq.c
1966 F:      drivers/dma/apple-admac.c
1967 F:      drivers/i2c/busses/i2c-pasemi-core.c
1968 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1969 F:      drivers/iommu/apple-dart.c
1970 F:      drivers/iommu/io-pgtable-dart.c
1971 F:      drivers/irqchip/irq-apple-aic.c
1972 F:      drivers/mailbox/apple-mailbox.c
1973 F:      drivers/nvme/host/apple.c
1974 F:      drivers/nvmem/apple-efuses.c
1975 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1976 F:      drivers/soc/apple/*
1977 F:      drivers/watchdog/apple_wdt.c
1978 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1979 F:      include/dt-bindings/pinctrl/apple.h
1980 F:      include/linux/apple-mailbox.h
1981 F:      include/linux/soc/apple/*
1982
1983 ARM/APPLE MACHINE SOUND DRIVERS
1984 M:      Martin Povišer <povik+lin@cutebit.org>
1985 L:      asahi@lists.linux.dev
1986 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1987 S:      Maintained
1988 F:      Documentation/devicetree/bindings/sound/apple,*
1989 F:      sound/soc/apple/*
1990 F:      sound/soc/codecs/cs42l83-i2c.c
1991
1992 ARM/ARTPEC MACHINE SUPPORT
1993 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1994 M:      Lars Persson <lars.persson@axis.com>
1995 L:      linux-arm-kernel@axis.com
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1998 F:      arch/arm/boot/dts/artpec6*
1999 F:      arch/arm/mach-artpec
2000 F:      drivers/clk/axis
2001 F:      drivers/crypto/axis
2002 F:      drivers/mmc/host/usdhi6rol0.c
2003 F:      drivers/pinctrl/pinctrl-artpec*
2004
2005 ARM/ASPEED I2C DRIVER
2006 M:      Brendan Higgins <brendanhiggins@google.com>
2007 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2008 R:      Joel Stanley <joel@jms.id.au>
2009 L:      linux-i2c@vger.kernel.org
2010 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2013 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2014 F:      drivers/i2c/busses/i2c-aspeed.c
2015 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2016
2017 ARM/ASPEED MACHINE SUPPORT
2018 M:      Joel Stanley <joel@jms.id.au>
2019 R:      Andrew Jeffery <andrew@aj.id.au>
2020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2021 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2022 S:      Supported
2023 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2025 F:      Documentation/devicetree/bindings/arm/aspeed/
2026 F:      arch/arm/boot/dts/aspeed-*
2027 F:      arch/arm/mach-aspeed/
2028 N:      aspeed
2029
2030 ARM/BITMAIN ARCHITECTURE
2031 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 S:      Maintained
2034 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2035 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2036 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2037 F:      arch/arm64/boot/dts/bitmain/
2038 F:      drivers/clk/clk-bm1880.c
2039 F:      drivers/pinctrl/pinctrl-bm1880.c
2040
2041 ARM/CALXEDA HIGHBANK ARCHITECTURE
2042 M:      Andre Przywara <andre.przywara@arm.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      arch/arm/boot/dts/ecx-*.dts*
2046 F:      arch/arm/boot/dts/highbank.dts
2047 F:      arch/arm/mach-highbank/
2048
2049 ARM/CAVIUM THUNDER NETWORK DRIVER
2050 M:      Sunil Goutham <sgoutham@marvell.com>
2051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 S:      Supported
2053 F:      drivers/net/ethernet/cavium/thunder/
2054
2055 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2056 M:      Lukasz Majewski <lukma@denx.de>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      arch/arm/mach-ep93xx/ts72xx.c
2060
2061 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2062 M:      Alexander Shiyan <shc_work@mail.ru>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 S:      Odd Fixes
2065 N:      clps711x
2066
2067 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2068 M:      Lennert Buytenhek <kernel@wantstofly.org>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071
2072 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2073 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2074 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2078 F:      arch/arm/boot/compressed/misc-ep93xx.h
2079 F:      arch/arm/mach-ep93xx/
2080 F:      drivers/iio/adc/ep93xx_adc.c
2081
2082 ARM/CLKDEV SUPPORT
2083 M:      Russell King <linux@armlinux.org.uk>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2087 F:      drivers/clk/clkdev.c
2088
2089 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2090 M:      Baruch Siach <baruch@tkos.co.il>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Maintained
2093 F:      arch/arm/boot/dts/cx92755*
2094 N:      digicolor
2095
2096 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2097 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2098 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2099 R:      Mike Leach <mike.leach@linaro.org>
2100 R:      Leo Yan <leo.yan@linaro.org>
2101 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2105 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2106 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2107 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2108 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2109 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2110 F:      Documentation/trace/coresight/*
2111 F:      drivers/hwtracing/coresight/*
2112 F:      include/dt-bindings/arm/coresight-cti-dt.h
2113 F:      include/linux/coresight*
2114 F:      samples/coresight/*
2115 F:      tools/perf/tests/shell/coresight/*
2116 F:      tools/perf/arch/arm/util/auxtrace.c
2117 F:      tools/perf/arch/arm/util/cs-etm.c
2118 F:      tools/perf/arch/arm/util/cs-etm.h
2119 F:      tools/perf/arch/arm/util/pmu.c
2120 F:      tools/perf/util/cs-etm-decoder/*
2121 F:      tools/perf/util/cs-etm.*
2122
2123 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2124 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2125 M:      Linus Walleij <linus.walleij@linaro.org>
2126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://github.com/ulli-kroll/linux.git
2129 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2130 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2131 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2132 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2133 F:      arch/arm/boot/dts/gemini*
2134 F:      arch/arm/mach-gemini/
2135 F:      drivers/crypto/gemini/
2136 F:      drivers/net/ethernet/cortina/
2137 F:      drivers/pinctrl/pinctrl-gemini.c
2138 F:      drivers/rtc/rtc-ftrtc010.c
2139
2140 ARM/CZ.NIC TURRIS SUPPORT
2141 M:      Marek Behún <kabel@kernel.org>
2142 S:      Maintained
2143 W:      https://www.turris.cz/
2144 F:      Documentation/ABI/testing/debugfs-moxtet
2145 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2146 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2147 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2148 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2149 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2150 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2151 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2152 F:      drivers/bus/moxtet.c
2153 F:      drivers/firmware/turris-mox-rwtm.c
2154 F:      drivers/leds/leds-turris-omnia.c
2155 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2156 F:      drivers/gpio/gpio-moxtet.c
2157 F:      drivers/watchdog/armada_37xx_wdt.c
2158 F:      include/dt-bindings/bus/moxtet.h
2159 F:      include/linux/armada-37xx-rwtm-mailbox.h
2160 F:      include/linux/moxtet.h
2161
2162 ARM/FARADAY FA526 PORT
2163 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 T:      git git://git.berlios.de/gemini-board
2167 F:      arch/arm/mm/*-fa*
2168
2169 ARM/FOOTBRIDGE ARCHITECTURE
2170 M:      Russell King <linux@armlinux.org.uk>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Maintained
2173 W:      http://www.armlinux.org.uk/
2174 F:      arch/arm/include/asm/hardware/dec21285.h
2175 F:      arch/arm/mach-footbridge/
2176
2177 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2178 M:      Shawn Guo <shawnguo@kernel.org>
2179 M:      Sascha Hauer <s.hauer@pengutronix.de>
2180 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2181 R:      Fabio Estevam <festevam@gmail.com>
2182 R:      NXP Linux Team <linux-imx@nxp.com>
2183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2184 S:      Maintained
2185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2186 X:      drivers/media/i2c/
2187 F:      arch/arm64/boot/dts/freescale/
2188 X:      arch/arm64/boot/dts/freescale/fsl-*
2189 X:      arch/arm64/boot/dts/freescale/qoriq-*
2190 N:      imx
2191 N:      mxs
2192
2193 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2194 M:      Shawn Guo <shawnguo@kernel.org>
2195 M:      Li Yang <leoyang.li@nxp.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 S:      Maintained
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2199 F:      arch/arm/boot/dts/ls1021a*
2200 F:      arch/arm64/boot/dts/freescale/fsl-*
2201 F:      arch/arm64/boot/dts/freescale/qoriq-*
2202
2203 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2204 M:      Shawn Guo <shawnguo@kernel.org>
2205 M:      Sascha Hauer <s.hauer@pengutronix.de>
2206 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2207 R:      Stefan Agner <stefan@agner.ch>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2211 F:      arch/arm/boot/dts/vf*
2212 F:      arch/arm/mach-imx/*vf610*
2213
2214 ARM/GUMSTIX MACHINE SUPPORT
2215 M:      Steve Sakoman <sakoman@gmail.com>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Maintained
2218
2219 ARM/HISILICON SOC SUPPORT
2220 M:      Wei Xu <xuwei5@hisilicon.com>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Supported
2223 W:      http://www.hisilicon.com
2224 T:      git https://github.com/hisilicon/linux-hisi.git
2225 F:      arch/arm/boot/dts/hi3*
2226 F:      arch/arm/boot/dts/hip*
2227 F:      arch/arm/boot/dts/hisi*
2228 F:      arch/arm/mach-hisi/
2229 F:      arch/arm64/boot/dts/hisilicon/
2230
2231 ARM/HP JORNADA 7XX MACHINE SUPPORT
2232 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2233 S:      Maintained
2234 W:      www.jlime.com
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2236 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2237 F:      arch/arm/mach-sa1100/jornada720.c
2238
2239 ARM/HPE GXP ARCHITECTURE
2240 M:      Jean-Marie Verdun <verdun@hpe.com>
2241 M:      Nick Hawkins <nick.hawkins@hpe.com>
2242 S:      Maintained
2243 F:      Documentation/hwmon/gxp-fan-ctrl.rst
2244 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2245 F:      Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2246 F:      Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
2247 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2248 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2249 F:      arch/arm/boot/dts/hpe-bmc*
2250 F:      arch/arm/boot/dts/hpe-gxp*
2251 F:      arch/arm/mach-hpe/
2252 F:      drivers/clocksource/timer-gxp.c
2253 F:      drivers/hwmon/gxp-fan-ctrl.c
2254 F:      drivers/i2c/busses/i2c-gxp.c
2255 F:      drivers/spi/spi-gxp.c
2256 F:      drivers/watchdog/gxp-wdt.c
2257
2258 ARM/IGEP MACHINE SUPPORT
2259 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2260 M:      Javier Martinez Canillas <javier@dowhile0.org>
2261 L:      linux-omap@vger.kernel.org
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      arch/arm/boot/dts/omap3-igep*
2265
2266 ARM/INTEL IXP4XX ARM ARCHITECTURE
2267 M:      Linus Walleij <linusw@kernel.org>
2268 M:      Imre Kaloz <kaloz@openwrt.org>
2269 M:      Krzysztof Halasa <khalasa@piap.pl>
2270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2271 S:      Maintained
2272 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2273 F:      Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2274 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2275 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2276 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2277 F:      arch/arm/boot/dts/intel-ixp*
2278 F:      arch/arm/mach-ixp4xx/
2279 F:      drivers/bus/intel-ixp4xx-eb.c
2280 F:      drivers/clocksource/timer-ixp4xx.c
2281 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
2282 F:      drivers/gpio/gpio-ixp4xx.c
2283 F:      drivers/irqchip/irq-ixp4xx.c
2284
2285 ARM/INTEL KEEMBAY ARCHITECTURE
2286 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2287 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2288 S:      Maintained
2289 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2290 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2291 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2292
2293 ARM/INTEL XSC3 (MANZANO) ARM CORE
2294 M:      Lennert Buytenhek <kernel@wantstofly.org>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297
2298 ARM/LG1K ARCHITECTURE
2299 M:      Chanho Min <chanho.min@lge.com>
2300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301 S:      Maintained
2302 F:      arch/arm64/boot/dts/lg/
2303
2304 ARM/LPC18XX ARCHITECTURE
2305 M:      Vladimir Zapolskiy <vz@mleia.com>
2306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 S:      Maintained
2308 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2309 F:      arch/arm/boot/dts/lpc43*
2310 F:      drivers/i2c/busses/i2c-lpc2k.c
2311 F:      drivers/memory/pl172.c
2312 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2313 F:      drivers/rtc/rtc-lpc24xx.c
2314 N:      lpc18xx
2315
2316 ARM/LPC32XX SOC SUPPORT
2317 M:      Vladimir Zapolskiy <vz@mleia.com>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2321 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2322 F:      arch/arm/boot/dts/lpc32*
2323 F:      arch/arm/mach-lpc32xx/
2324 F:      drivers/i2c/busses/i2c-pnx.c
2325 F:      drivers/net/ethernet/nxp/lpc_eth.c
2326 F:      drivers/usb/host/ohci-nxp.c
2327 F:      drivers/watchdog/pnx4008_wdt.c
2328 N:      lpc32xx
2329
2330 ARM/Marvell Dove/MV78xx0/Orion SOC support
2331 M:      Andrew Lunn <andrew@lunn.ch>
2332 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2333 M:      Gregory Clement <gregory.clement@bootlin.com>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2337 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2338 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2339 F:      Documentation/devicetree/bindings/soc/dove/
2340 F:      arch/arm/boot/dts/dove*
2341 F:      arch/arm/boot/dts/orion5x*
2342 F:      arch/arm/mach-dove/
2343 F:      arch/arm/mach-mv78xx0/
2344 F:      arch/arm/mach-orion5x/
2345 F:      arch/arm/plat-orion/
2346 F:      drivers/soc/dove/
2347
2348 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2349 M:      Andrew Lunn <andrew@lunn.ch>
2350 M:      Gregory Clement <gregory.clement@bootlin.com>
2351 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2353 S:      Maintained
2354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2355 F:      Documentation/devicetree/bindings/arm/marvell/
2356 F:      arch/arm/boot/dts/armada*
2357 F:      arch/arm/boot/dts/kirkwood*
2358 F:      arch/arm/configs/mvebu_*_defconfig
2359 F:      arch/arm/mach-mvebu/
2360 F:      arch/arm64/boot/dts/marvell/armada*
2361 F:      arch/arm64/boot/dts/marvell/cn913*
2362 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2363 F:      drivers/cpufreq/armada-8k-cpufreq.c
2364 F:      drivers/cpufreq/mvebu-cpufreq.c
2365 F:      drivers/irqchip/irq-armada-370-xp.c
2366 F:      drivers/irqchip/irq-mvebu-*
2367 F:      drivers/pinctrl/mvebu/
2368 F:      drivers/rtc/rtc-armada38x.c
2369
2370 ARM/Mediatek RTC DRIVER
2371 M:      Eddie Huang <eddie.huang@mediatek.com>
2372 M:      Sean Wang <sean.wang@mediatek.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2375 S:      Maintained
2376 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2377 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2378 F:      drivers/rtc/rtc-mt2712.c
2379 F:      drivers/rtc/rtc-mt6397.c
2380 F:      drivers/rtc/rtc-mt7622.c
2381
2382 ARM/Mediatek SoC support
2383 M:      Matthias Brugger <matthias.bgg@gmail.com>
2384 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2385 L:      linux-kernel@vger.kernel.org
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2388 S:      Maintained
2389 W:      https://mtk.wiki.kernel.org/
2390 C:      irc://irc.libera.chat/linux-mediatek
2391 F:      arch/arm/boot/dts/mt2*
2392 F:      arch/arm/boot/dts/mt6*
2393 F:      arch/arm/boot/dts/mt7*
2394 F:      arch/arm/boot/dts/mt8*
2395 F:      arch/arm/mach-mediatek/
2396 F:      arch/arm64/boot/dts/mediatek/
2397 F:      drivers/soc/mediatek/
2398 N:      mtk
2399 N:      mt[2678]
2400 K:      mediatek
2401
2402 ARM/Mediatek USB3 PHY DRIVER
2403 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2405 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2406 S:      Maintained
2407 F:      Documentation/devicetree/bindings/phy/mediatek,*
2408 F:      drivers/phy/mediatek/
2409
2410 ARM/Microchip (AT91) SoC support
2411 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2412 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2413 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 S:      Supported
2416 W:      http://www.linux4sam.org
2417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2418 F:      arch/arm/boot/dts/at91*.dts
2419 F:      arch/arm/boot/dts/at91*.dtsi
2420 F:      arch/arm/boot/dts/sama*.dts
2421 F:      arch/arm/boot/dts/sama*.dtsi
2422 F:      arch/arm/include/debug/at91.S
2423 F:      arch/arm/mach-at91/
2424 F:      drivers/memory/atmel*
2425 F:      drivers/watchdog/sama5d4_wdt.c
2426 F:      include/soc/at91/
2427 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2428 X:      drivers/net/wireless/atmel/
2429 N:      at91
2430 N:      atmel
2431
2432 ARM/Microchip Sparx5 SoC support
2433 M:      Lars Povlsen <lars.povlsen@microchip.com>
2434 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2435 M:      Daniel Machon <daniel.machon@microchip.com>
2436 M:      UNGLinuxDriver@microchip.com
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 S:      Supported
2439 T:      git git://github.com/microchip-ung/linux-upstream.git
2440 F:      arch/arm64/boot/dts/microchip/
2441 F:      drivers/net/ethernet/microchip/vcap/
2442 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2443 N:      sparx5
2444
2445 Microchip Timer Counter Block (TCB) Capture Driver
2446 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2448 L:      linux-iio@vger.kernel.org
2449 S:      Maintained
2450 F:      drivers/counter/microchip-tcb-capture.c
2451
2452 ARM/MILBEAUT ARCHITECTURE
2453 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2454 M:      Takao Orito <orito.takao@socionext.com>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 S:      Maintained
2457 F:      arch/arm/boot/dts/milbeaut*
2458 F:      arch/arm/mach-milbeaut/
2459 N:      milbeaut
2460
2461 ARM/MStar/Sigmastar Armv7 SoC support
2462 M:      Daniel Palmer <daniel@thingy.jp>
2463 M:      Romain Perier <romain.perier@gmail.com>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466 W:      http://linux-chenxing.org/
2467 T:      git git://github.com/linux-chenxing/linux.git
2468 F:      Documentation/devicetree/bindings/arm/mstar/*
2469 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2470 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2471 F:      arch/arm/boot/dts/mstar-*
2472 F:      arch/arm/mach-mstar/
2473 F:      drivers/clk/mstar/
2474 F:      drivers/clocksource/timer-msc313e.c
2475 F:      drivers/gpio/gpio-msc313.c
2476 F:      drivers/rtc/rtc-msc313.c
2477 F:      drivers/watchdog/msc313e_wdt.c
2478 F:      include/dt-bindings/clock/mstar-*
2479 F:      include/dt-bindings/gpio/msc313-gpio.h
2480
2481 ARM/NOMADIK/Ux500 ARCHITECTURES
2482 M:      Linus Walleij <linus.walleij@linaro.org>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S:      Maintained
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2486 F:      Documentation/devicetree/bindings/arm/ste-*
2487 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2488 F:      Documentation/devicetree/bindings/arm/ux500/
2489 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2490 F:      arch/arm/boot/dts/ste-*
2491 F:      arch/arm/mach-nomadik/
2492 F:      arch/arm/mach-ux500/
2493 F:      drivers/clk/clk-nomadik.c
2494 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2495 F:      drivers/dma/ste_dma40*
2496 F:      drivers/hwspinlock/u8500_hsem.c
2497 F:      drivers/i2c/busses/i2c-nomadik.c
2498 F:      drivers/iio/adc/ab8500-gpadc.c
2499 F:      drivers/mfd/ab8500*
2500 F:      drivers/mfd/abx500*
2501 F:      drivers/mfd/db8500*
2502 F:      drivers/pinctrl/nomadik/
2503 F:      drivers/rtc/rtc-ab8500.c
2504 F:      drivers/rtc/rtc-pl031.c
2505 F:      drivers/soc/ux500/
2506
2507 ARM/NUVOTON NPCM ARCHITECTURE
2508 M:      Avi Fishman <avifishman70@gmail.com>
2509 M:      Tomer Maimon <tmaimon77@gmail.com>
2510 M:      Tali Perry <tali.perry1@gmail.com>
2511 R:      Patrick Venture <venture@google.com>
2512 R:      Nancy Yuen <yuenn@google.com>
2513 R:      Benjamin Fair <benjaminfair@google.com>
2514 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2515 S:      Supported
2516 F:      Documentation/devicetree/bindings/*/*/*npcm*
2517 F:      Documentation/devicetree/bindings/*/*npcm*
2518 F:      Documentation/devicetree/bindings/arm/npcm/*
2519 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2520 F:      arch/arm/boot/dts/nuvoton-npcm*
2521 F:      arch/arm/mach-npcm/
2522 F:      arch/arm64/boot/dts/nuvoton/
2523 F:      drivers/*/*npcm*
2524 F:      drivers/*/*/*npcm*
2525 F:      drivers/rtc/rtc-nct3018y.c
2526 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2527 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2528
2529 ARM/NUVOTON WPCM450 ARCHITECTURE
2530 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2531 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2532 S:      Maintained
2533 W:      https://github.com/neuschaefer/wpcm450/wiki
2534 F:      Documentation/devicetree/bindings/*/*wpcm*
2535 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2536 F:      arch/arm/configs/wpcm450_defconfig
2537 F:      arch/arm/mach-npcm/wpcm450.c
2538 F:      drivers/*/*/*wpcm*
2539 F:      drivers/*/*wpcm*
2540
2541 ARM/NXP S32G ARCHITECTURE
2542 M:      Chester Lin <clin@suse.com>
2543 R:      Andreas Färber <afaerber@suse.de>
2544 R:      Matthias Brugger <mbrugger@suse.com>
2545 R:      NXP S32 Linux Team <s32@nxp.com>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2549
2550 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2551 M:      Alexander Clouter <alex@digriz.org.uk>
2552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2553 S:      Maintained
2554 W:      http://www.digriz.org.uk/ts78xx/kernel
2555 F:      arch/arm/mach-orion5x/ts78xx-*
2556
2557 ARM/OXNAS platform support
2558 M:      Neil Armstrong <neil.armstrong@linaro.org>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2561 S:      Maintained
2562 F:      arch/arm/boot/dts/ox8*.dts*
2563 F:      arch/arm/mach-oxnas/
2564 F:      drivers/power/reset/oxnas-restart.c
2565 N:      oxnas
2566
2567 ARM/QUALCOMM SUPPORT
2568 M:      Andy Gross <agross@kernel.org>
2569 M:      Bjorn Andersson <andersson@kernel.org>
2570 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2571 L:      linux-arm-msm@vger.kernel.org
2572 S:      Maintained
2573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2574 F:      Documentation/devicetree/bindings/*/qcom*
2575 F:      Documentation/devicetree/bindings/soc/qcom/
2576 F:      arch/arm/boot/dts/qcom-*.dts
2577 F:      arch/arm/boot/dts/qcom-*.dtsi
2578 F:      arch/arm/configs/qcom_defconfig
2579 F:      arch/arm/mach-qcom/
2580 F:      arch/arm64/boot/dts/qcom/
2581 F:      drivers/*/*/qcom*
2582 F:      drivers/*/*/qcom/
2583 F:      drivers/*/pm8???-*
2584 F:      drivers/*/qcom*
2585 F:      drivers/*/qcom/
2586 F:      drivers/bluetooth/btqcomsmd.c
2587 F:      drivers/clocksource/timer-qcom.c
2588 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2589 F:      drivers/extcon/extcon-qcom*
2590 F:      drivers/i2c/busses/i2c-qcom-geni.c
2591 F:      drivers/i2c/busses/i2c-qup.c
2592 F:      drivers/iommu/msm*
2593 F:      drivers/mfd/ssbi.c
2594 F:      drivers/mmc/host/mmci_qcom*
2595 F:      drivers/mmc/host/sdhci-msm.c
2596 F:      drivers/pci/controller/dwc/pcie-qcom.c
2597 F:      drivers/phy/qualcomm/
2598 F:      drivers/power/*/msm*
2599 F:      drivers/reset/reset-qcom-*
2600 F:      drivers/ufs/host/ufs-qcom*
2601 F:      drivers/spi/spi-geni-qcom.c
2602 F:      drivers/spi/spi-qcom-qspi.c
2603 F:      drivers/spi/spi-qup.c
2604 F:      drivers/tty/serial/msm_serial.c
2605 F:      drivers/usb/dwc3/dwc3-qcom.c
2606 F:      include/dt-bindings/*/qcom*
2607 F:      include/linux/*/qcom*
2608 F:      include/linux/soc/qcom/
2609
2610 ARM/QUALCOMM CHROMEBOOK SUPPORT
2611 R:      cros-qcom-dts-watchers@chromium.org
2612 F:      arch/arm64/boot/dts/qcom/sc7180*
2613 F:      arch/arm64/boot/dts/qcom/sc7280*
2614 F:      arch/arm64/boot/dts/qcom/sdm845-cheza*
2615
2616 ARM/RDA MICRO ARCHITECTURE
2617 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2620 S:      Maintained
2621 F:      Documentation/devicetree/bindings/arm/rda.yaml
2622 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2623 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2624 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2625 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2626 F:      arch/arm/boot/dts/rda8810pl-*
2627 F:      drivers/clocksource/timer-rda.c
2628 F:      drivers/gpio/gpio-rda.c
2629 F:      drivers/irqchip/irq-rda-intc.c
2630 F:      drivers/tty/serial/rda-uart.c
2631
2632 ARM/REALTEK ARCHITECTURE
2633 M:      Andreas Färber <afaerber@suse.de>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2638 F:      arch/arm/boot/dts/rtd*
2639 F:      arch/arm/mach-realtek/
2640 F:      arch/arm64/boot/dts/realtek/
2641
2642 ARM/RISC-V/RENESAS ARCHITECTURE
2643 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2644 M:      Magnus Damm <magnus.damm@gmail.com>
2645 L:      linux-renesas-soc@vger.kernel.org
2646 S:      Supported
2647 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2648 C:      irc://irc.libera.chat/renesas-soc
2649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2650 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2651 F:      Documentation/devicetree/bindings/soc/renesas/
2652 F:      arch/arm/boot/dts/emev2*
2653 F:      arch/arm/boot/dts/gr-peach*
2654 F:      arch/arm/boot/dts/iwg20d-q7*
2655 F:      arch/arm/boot/dts/r7s*
2656 F:      arch/arm/boot/dts/r8a*
2657 F:      arch/arm/boot/dts/r9a*
2658 F:      arch/arm/boot/dts/sh*
2659 F:      arch/arm/configs/shmobile_defconfig
2660 F:      arch/arm/include/debug/renesas-scif.S
2661 F:      arch/arm/mach-shmobile/
2662 F:      arch/arm64/boot/dts/renesas/
2663 F:      arch/riscv/boot/dts/renesas/
2664 F:      drivers/soc/renesas/
2665 F:      include/linux/soc/renesas/
2666 K:      \brenesas,
2667
2668 ARM/RISCPC ARCHITECTURE
2669 M:      Russell King <linux@armlinux.org.uk>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Maintained
2672 W:      http://www.armlinux.org.uk/
2673 F:      arch/arm/include/asm/hardware/ioc.h
2674 F:      arch/arm/include/asm/hardware/iomd.h
2675 F:      arch/arm/include/asm/hardware/memc.h
2676 F:      arch/arm/mach-rpc/
2677 F:      drivers/net/ethernet/8390/etherh.c
2678 F:      drivers/net/ethernet/i825xx/ether1*
2679 F:      drivers/net/ethernet/seeq/ether3*
2680 F:      drivers/scsi/arm/
2681
2682 ARM/Rockchip SoC support
2683 M:      Heiko Stuebner <heiko@sntech.de>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 L:      linux-rockchip@lists.infradead.org
2686 S:      Maintained
2687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2688 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2689 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2690 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2691 F:      arch/arm/boot/dts/rk3*
2692 F:      arch/arm/boot/dts/rv11*
2693 F:      arch/arm/mach-rockchip/
2694 F:      drivers/*/*/*rockchip*
2695 F:      drivers/*/*rockchip*
2696 F:      drivers/clk/rockchip/
2697 F:      drivers/i2c/busses/i2c-rk3x.c
2698 F:      sound/soc/rockchip/
2699 N:      rockchip
2700
2701 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2702 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2703 R:      Alim Akhtar <alim.akhtar@samsung.com>
2704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2705 L:      linux-samsung-soc@vger.kernel.org
2706 S:      Maintained
2707 C:      irc://irc.libera.chat/linux-exynos
2708 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2709 B:      mailto:linux-samsung-soc@vger.kernel.org
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2711 F:      Documentation/arm/samsung/
2712 F:      Documentation/devicetree/bindings/arm/samsung/
2713 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2714 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2715 F:      Documentation/devicetree/bindings/soc/samsung/
2716 F:      arch/arm/boot/dts/exynos*
2717 F:      arch/arm/boot/dts/s3c*
2718 F:      arch/arm/boot/dts/s5p*
2719 F:      arch/arm/mach-exynos*/
2720 F:      arch/arm/mach-s3c/
2721 F:      arch/arm/mach-s5p*/
2722 F:      arch/arm64/boot/dts/exynos/
2723 F:      drivers/*/*/*s3c24*
2724 F:      drivers/*/*s3c24*
2725 F:      drivers/*/*s3c64xx*
2726 F:      drivers/*/*s5pv210*
2727 F:      drivers/clocksource/samsung_pwm_timer.c
2728 F:      drivers/memory/samsung/
2729 F:      drivers/pwm/pwm-samsung.c
2730 F:      drivers/soc/samsung/
2731 F:      drivers/tty/serial/samsung*
2732 F:      include/clocksource/samsung_pwm.h
2733 F:      include/linux/platform_data/*s3c*
2734 F:      include/linux/serial_s3c.h
2735 F:      include/linux/soc/samsung/
2736 N:      exynos
2737 N:      s3c64xx
2738 N:      s5pv210
2739
2740 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2741 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 L:      linux-media@vger.kernel.org
2744 S:      Maintained
2745 F:      drivers/media/platform/samsung/s5p-g2d/
2746
2747 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2748 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2749 L:      linux-samsung-soc@vger.kernel.org
2750 L:      linux-media@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2753 F:      drivers/media/cec/platform/s5p/
2754
2755 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2756 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2757 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2758 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 L:      linux-media@vger.kernel.org
2761 S:      Maintained
2762 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2763 F:      drivers/media/platform/samsung/s5p-jpeg/
2764
2765 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2766 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2767 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2769 L:      linux-media@vger.kernel.org
2770 S:      Maintained
2771 F:      drivers/media/platform/samsung/s5p-mfc/
2772
2773 ARM/SOCFPGA ARCHITECTURE
2774 M:      Dinh Nguyen <dinguyen@kernel.org>
2775 S:      Maintained
2776 W:      http://www.rocketboards.org
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2778 F:      arch/arm/boot/dts/socfpga*
2779 F:      arch/arm/configs/socfpga_defconfig
2780 F:      arch/arm/mach-socfpga/
2781 F:      arch/arm64/boot/dts/altera/
2782 F:      arch/arm64/boot/dts/intel/
2783
2784 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2785 M:      Dinh Nguyen <dinguyen@kernel.org>
2786 S:      Maintained
2787 F:      drivers/clk/socfpga/
2788
2789 ARM/SOCFPGA EDAC SUPPORT
2790 M:      Dinh Nguyen <dinguyen@kernel.org>
2791 S:      Maintained
2792 F:      drivers/edac/altera_edac.[ch]
2793
2794 ARM/SPREADTRUM SoC SUPPORT
2795 M:      Orson Zhai <orsonzhai@gmail.com>
2796 M:      Baolin Wang <baolin.wang7@gmail.com>
2797 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2798 S:      Maintained
2799 F:      arch/arm64/boot/dts/sprd
2800 N:      sprd
2801 N:      sc27xx
2802 N:      sc2731
2803
2804 ARM/STI ARCHITECTURE
2805 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2807 S:      Maintained
2808 W:      http://www.stlinux.com
2809 F:      Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2810 F:      Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2811 F:      arch/arm/boot/dts/sti*
2812 F:      arch/arm/mach-sti/
2813 F:      drivers/ata/ahci_st.c
2814 F:      drivers/char/hw_random/st-rng.c
2815 F:      drivers/clocksource/arm_global_timer.c
2816 F:      drivers/clocksource/clksrc_st_lpc.c
2817 F:      drivers/cpufreq/sti-cpufreq.c
2818 F:      drivers/dma/st_fdma*
2819 F:      drivers/i2c/busses/i2c-st.c
2820 F:      drivers/media/platform/st/sti/c8sectpfe/
2821 F:      drivers/media/rc/st_rc.c
2822 F:      drivers/mmc/host/sdhci-st.c
2823 F:      drivers/phy/st/phy-miphy28lp.c
2824 F:      drivers/phy/st/phy-stih407-usb.c
2825 F:      drivers/pinctrl/pinctrl-st.c
2826 F:      drivers/remoteproc/st_remoteproc.c
2827 F:      drivers/remoteproc/st_slim_rproc.c
2828 F:      drivers/reset/sti/
2829 F:      drivers/rtc/rtc-st-lpc.c
2830 F:      drivers/tty/serial/st-asc.c
2831 F:      drivers/usb/dwc3/dwc3-st.c
2832 F:      drivers/usb/host/ehci-st.c
2833 F:      drivers/usb/host/ohci-st.c
2834 F:      drivers/watchdog/st_lpc_wdt.c
2835 F:      include/linux/remoteproc/st_slim_rproc.h
2836
2837 ARM/STM32 ARCHITECTURE
2838 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2839 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2840 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2842 S:      Maintained
2843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2844 F:      arch/arm/boot/dts/stm32*
2845 F:      arch/arm/mach-stm32/
2846 F:      drivers/clocksource/armv7m_systick.c
2847 N:      stm32
2848 N:      stm
2849
2850 ARM/SUNPLUS SP7021 SOC SUPPORT
2851 M:      Qin Jian <qinjian@cqplus1.com>
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2853 S:      Maintained
2854 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2855 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2856 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2857 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2858 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2859 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2860 F:      arch/arm/configs/sp7021_*defconfig
2861 F:      arch/arm/mach-sunplus/
2862 F:      drivers/irqchip/irq-sp7021-intc.c
2863 F:      drivers/reset/reset-sunplus.c
2864 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2865 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2866
2867 ARM/Synaptics SoC support
2868 M:      Jisheng Zhang <jszhang@kernel.org>
2869 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2871 S:      Maintained
2872 F:      arch/arm/boot/dts/berlin*
2873 F:      arch/arm/mach-berlin/
2874 F:      arch/arm64/boot/dts/synaptics/
2875
2876 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2877 M:      Lennert Buytenhek <kernel@wantstofly.org>
2878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2879 S:      Maintained
2880
2881 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2882 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2883 L:      linux-tegra@vger.kernel.org
2884 L:      linux-media@vger.kernel.org
2885 S:      Maintained
2886 F:      Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
2887 F:      drivers/media/cec/platform/tegra/
2888
2889 ARM/TESLA FSD SoC SUPPORT
2890 M:      Alim Akhtar <alim.akhtar@samsung.com>
2891 M:      linux-fsd@tesla.com
2892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2893 L:      linux-samsung-soc@vger.kernel.org
2894 S:      Maintained
2895 F:      arch/arm64/boot/dts/tesla/
2896
2897 ARM/TETON BGA MACHINE SUPPORT
2898 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2900 S:      Maintained
2901
2902 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2903 M:      Santosh Shilimkar <ssantosh@kernel.org>
2904 L:      linux-kernel@vger.kernel.org
2905 S:      Maintained
2906 F:      drivers/memory/*emif*
2907
2908 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2909 M:      Nishanth Menon <nm@ti.com>
2910 M:      Santosh Shilimkar <ssantosh@kernel.org>
2911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2912 S:      Maintained
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2914 F:      arch/arm/boot/dts/keystone-*
2915 F:      arch/arm/mach-keystone/
2916
2917 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2918 M:      Santosh Shilimkar <ssantosh@kernel.org>
2919 L:      linux-kernel@vger.kernel.org
2920 S:      Maintained
2921 F:      drivers/clk/keystone/
2922
2923 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2924 M:      Santosh Shilimkar <ssantosh@kernel.org>
2925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2926 L:      linux-kernel@vger.kernel.org
2927 S:      Maintained
2928 F:      drivers/clocksource/timer-keystone.c
2929
2930 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2931 M:      Santosh Shilimkar <ssantosh@kernel.org>
2932 L:      linux-kernel@vger.kernel.org
2933 S:      Maintained
2934 F:      drivers/power/reset/keystone-reset.c
2935
2936 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2937 M:      Nishanth Menon <nm@ti.com>
2938 M:      Vignesh Raghavendra <vigneshr@ti.com>
2939 M:      Tero Kristo <kristo@kernel.org>
2940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2941 S:      Supported
2942 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2943 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2944 F:      arch/arm64/boot/dts/ti/Makefile
2945 F:      arch/arm64/boot/dts/ti/k3-*
2946 F:      include/dt-bindings/pinctrl/k3.h
2947
2948 ARM/TOSHIBA VISCONTI ARCHITECTURE
2949 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2951 S:      Supported
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2953 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2954 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2955 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2956 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2957 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2958 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2959 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2960 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2961 F:      arch/arm64/boot/dts/toshiba/
2962 F:      drivers/clk/visconti/
2963 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2964 F:      drivers/gpio/gpio-visconti.c
2965 F:      drivers/pci/controller/dwc/pcie-visconti.c
2966 F:      drivers/pinctrl/visconti/
2967 F:      drivers/watchdog/visconti_wdt.c
2968 N:      visconti
2969
2970 ARM/UNIPHIER ARCHITECTURE
2971 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2972 M:      Masami Hiramatsu <mhiramat@kernel.org>
2973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2974 S:      Maintained
2975 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2976 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2977 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2978 F:      Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
2979 F:      arch/arm/boot/dts/uniphier*
2980 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2981 F:      arch/arm/mach-uniphier/
2982 F:      arch/arm/mm/cache-uniphier.c
2983 F:      arch/arm64/boot/dts/socionext/uniphier*
2984 F:      drivers/bus/uniphier-system-bus.c
2985 F:      drivers/clk/uniphier/
2986 F:      drivers/dma/uniphier-mdmac.c
2987 F:      drivers/gpio/gpio-uniphier.c
2988 F:      drivers/i2c/busses/i2c-uniphier*
2989 F:      drivers/irqchip/irq-uniphier-aidet.c
2990 F:      drivers/mmc/host/uniphier-sd.c
2991 F:      drivers/pinctrl/uniphier/
2992 F:      drivers/reset/reset-uniphier.c
2993 F:      drivers/tty/serial/8250/8250_uniphier.c
2994 N:      uniphier
2995
2996 ARM/VERSATILE EXPRESS PLATFORM
2997 M:      Liviu Dudau <liviu.dudau@arm.com>
2998 M:      Sudeep Holla <sudeep.holla@arm.com>
2999 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Maintained
3002 F:      */*/*/vexpress*
3003 F:      */*/vexpress*
3004 F:      arch/arm/boot/dts/vexpress*
3005 F:      arch/arm/mach-versatile/
3006 F:      arch/arm64/boot/dts/arm/
3007 F:      drivers/clk/versatile/clk-vexpress-osc.c
3008 F:      drivers/clocksource/timer-versatile.c
3009 N:      mps2
3010
3011 ARM/VFP SUPPORT
3012 M:      Russell King <linux@armlinux.org.uk>
3013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3014 S:      Maintained
3015 W:      http://www.armlinux.org.uk/
3016 F:      arch/arm/vfp/
3017
3018 ARM/VT8500 ARM ARCHITECTURE
3019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3020 S:      Orphan
3021 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3022 F:      arch/arm/mach-vt8500/
3023 F:      drivers/clocksource/timer-vt8500.c
3024 F:      drivers/i2c/busses/i2c-wmt.c
3025 F:      drivers/mmc/host/wmt-sdmmc.c
3026 F:      drivers/pwm/pwm-vt8500.c
3027 F:      drivers/rtc/rtc-vt8500.c
3028 F:      drivers/tty/serial/vt8500_serial.c
3029 F:      drivers/usb/host/ehci-platform.c
3030 F:      drivers/usb/host/uhci-platform.c
3031 F:      drivers/video/fbdev/vt8500lcdfb.*
3032 F:      drivers/video/fbdev/wm8505fb*
3033 F:      drivers/video/fbdev/wmt_ge_rops.*
3034
3035 ARM/ZYNQ ARCHITECTURE
3036 M:      Michal Simek <michal.simek@xilinx.com>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Supported
3039 W:      http://wiki.xilinx.com
3040 T:      git https://github.com/Xilinx/linux-xlnx.git
3041 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3042 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3043 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3044 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3045 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3046 F:      arch/arm/mach-zynq/
3047 F:      drivers/clocksource/timer-cadence-ttc.c
3048 F:      drivers/cpuidle/cpuidle-zynq.c
3049 F:      drivers/edac/synopsys_edac.c
3050 F:      drivers/i2c/busses/i2c-cadence.c
3051 F:      drivers/i2c/busses/i2c-xiic.c
3052 F:      drivers/mmc/host/sdhci-of-arasan.c
3053 N:      zynq
3054 N:      xilinx
3055
3056 ARM64 PORT (AARCH64 ARCHITECTURE)
3057 M:      Catalin Marinas <catalin.marinas@arm.com>
3058 M:      Will Deacon <will@kernel.org>
3059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3060 S:      Maintained
3061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3062 F:      Documentation/arm64/
3063 F:      arch/arm64/
3064 F:      tools/testing/selftests/arm64/
3065 X:      arch/arm64/boot/dts/
3066
3067 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3068 M:      George McCollister <george.mccollister@gmail.com>
3069 L:      netdev@vger.kernel.org
3070 S:      Maintained
3071 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3072 F:      drivers/net/dsa/xrs700x/*
3073 F:      net/dsa/tag_xrs700x.c
3074
3075 AS3645A LED FLASH CONTROLLER DRIVER
3076 M:      Sakari Ailus <sakari.ailus@iki.fi>
3077 L:      linux-leds@vger.kernel.org
3078 S:      Maintained
3079 F:      drivers/leds/flash/leds-as3645a.c
3080
3081 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3082 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3083 L:      linux-media@vger.kernel.org
3084 S:      Maintained
3085 T:      git git://linuxtv.org/media_tree.git
3086 F:      Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3087 F:      drivers/media/i2c/ak7375.c
3088
3089 ASAHI KASEI AK8974 DRIVER
3090 M:      Linus Walleij <linus.walleij@linaro.org>
3091 L:      linux-iio@vger.kernel.org
3092 S:      Supported
3093 W:      http://www.akm.com/
3094 F:      drivers/iio/magnetometer/ak8974.c
3095
3096 ASC7621 HARDWARE MONITOR DRIVER
3097 M:      George Joseph <george.joseph@fairview5.com>
3098 L:      linux-hwmon@vger.kernel.org
3099 S:      Maintained
3100 F:      Documentation/hwmon/asc7621.rst
3101 F:      drivers/hwmon/asc7621.c
3102
3103 ASIX AX88796C SPI ETHERNET ADAPTER
3104 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3105 S:      Maintained
3106 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3107 F:      drivers/net/ethernet/asix/ax88796c_*
3108
3109 ASPEED PECI CONTROLLER
3110 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3111 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3112 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3113 S:      Supported
3114 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3115 F:      drivers/peci/controller/peci-aspeed.c
3116
3117 ASPEED PINCTRL DRIVERS
3118 M:      Andrew Jeffery <andrew@aj.id.au>
3119 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3120 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3121 L:      linux-gpio@vger.kernel.org
3122 S:      Maintained
3123 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3124 F:      drivers/pinctrl/aspeed/
3125
3126 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3127 M:      Eddie James <eajames@linux.ibm.com>
3128 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3131 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3132 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3133
3134 ASPEED SD/MMC DRIVER
3135 M:      Andrew Jeffery <andrew@aj.id.au>
3136 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3137 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3138 L:      linux-mmc@vger.kernel.org
3139 S:      Maintained
3140 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3141 F:      drivers/mmc/host/sdhci-of-aspeed*
3142
3143 ASPEED SMC SPI DRIVER
3144 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3145 M:      Cédric Le Goater <clg@kaod.org>
3146 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3147 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3148 L:      linux-spi@vger.kernel.org
3149 S:      Maintained
3150 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3151 F:      drivers/spi/spi-aspeed-smc.c
3152
3153 ASPEED VIDEO ENGINE DRIVER
3154 M:      Eddie James <eajames@linux.ibm.com>
3155 L:      linux-media@vger.kernel.org
3156 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3157 S:      Maintained
3158 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3159 F:      drivers/media/platform/aspeed/
3160
3161 ASPEED USB UDC DRIVER
3162 M:      Neal Liu <neal_liu@aspeedtech.com>
3163 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3164 S:      Maintained
3165 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3166 F:      drivers/usb/gadget/udc/aspeed_udc.c
3167
3168 ASPEED CRYPTO DRIVER
3169 M:      Neal Liu <neal_liu@aspeedtech.com>
3170 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3171 S:      Maintained
3172 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3173 F:      drivers/crypto/aspeed/
3174
3175 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3176 M:      Corentin Chary <corentin.chary@gmail.com>
3177 L:      acpi4asus-user@lists.sourceforge.net
3178 L:      platform-driver-x86@vger.kernel.org
3179 S:      Maintained
3180 W:      http://acpi4asus.sf.net
3181 F:      drivers/platform/x86/asus*.c
3182 F:      drivers/platform/x86/eeepc*.c
3183
3184 ASUS TF103C DOCK DRIVER
3185 M:      Hans de Goede <hdegoede@redhat.com>
3186 L:      platform-driver-x86@vger.kernel.org
3187 S:      Maintained
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3189 F:      drivers/platform/x86/asus-tf103c-dock.c
3190
3191 ASUS WMI HARDWARE MONITOR DRIVER
3192 M:      Ed Brindley <kernel@maidavale.org>
3193 M:      Denis Pauk <pauk.denis@gmail.com>
3194 L:      linux-hwmon@vger.kernel.org
3195 S:      Maintained
3196 F:      drivers/hwmon/asus_wmi_sensors.c
3197
3198 ASUS EC HARDWARE MONITOR DRIVER
3199 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3200 L:      linux-hwmon@vger.kernel.org
3201 S:      Maintained
3202 F:      drivers/hwmon/asus-ec-sensors.c
3203
3204 ASUS WIRELESS RADIO CONTROL DRIVER
3205 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3206 L:      platform-driver-x86@vger.kernel.org
3207 S:      Maintained
3208 F:      drivers/platform/x86/asus-wireless.c
3209
3210 ASYMMETRIC KEYS
3211 M:      David Howells <dhowells@redhat.com>
3212 L:      keyrings@vger.kernel.org
3213 S:      Maintained
3214 F:      Documentation/crypto/asymmetric-keys.rst
3215 F:      crypto/asymmetric_keys/
3216 F:      include/crypto/pkcs7.h
3217 F:      include/crypto/public_key.h
3218 F:      include/linux/verification.h
3219
3220 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3221 R:      Dan Williams <dan.j.williams@intel.com>
3222 S:      Odd fixes
3223 W:      http://sourceforge.net/projects/xscaleiop
3224 F:      Documentation/crypto/async-tx-api.rst
3225 F:      crypto/async_tx/
3226 F:      include/linux/async_tx.h
3227
3228 AT24 EEPROM DRIVER
3229 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3230 L:      linux-i2c@vger.kernel.org
3231 S:      Maintained
3232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3233 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3234 F:      drivers/misc/eeprom/at24.c
3235
3236 ATA OVER ETHERNET (AOE) DRIVER
3237 M:      "Justin Sanders" <justin@coraid.com>
3238 S:      Supported
3239 W:      http://www.openaoe.org/
3240 F:      Documentation/admin-guide/aoe/
3241 F:      drivers/block/aoe/
3242
3243 ATC260X PMIC MFD DRIVER
3244 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3245 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3246 L:      linux-actions@lists.infradead.org
3247 S:      Maintained
3248 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3249 F:      drivers/input/misc/atc260x-onkey.c
3250 F:      drivers/mfd/atc260*
3251 F:      drivers/power/reset/atc260x-poweroff.c
3252 F:      drivers/regulator/atc260x-regulator.c
3253 F:      include/linux/mfd/atc260x/*
3254
3255 ATHEROS 71XX/9XXX GPIO DRIVER
3256 M:      Alban Bedel <albeu@free.fr>
3257 S:      Maintained
3258 W:      https://github.com/AlbanBedel/linux
3259 T:      git git://github.com/AlbanBedel/linux
3260 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3261 F:      drivers/gpio/gpio-ath79.c
3262
3263 ATHEROS 71XX/9XXX USB PHY DRIVER
3264 M:      Alban Bedel <albeu@free.fr>
3265 S:      Maintained
3266 W:      https://github.com/AlbanBedel/linux
3267 T:      git git://github.com/AlbanBedel/linux
3268 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3269 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3270
3271 ATHEROS ATH GENERIC UTILITIES
3272 M:      Kalle Valo <kvalo@kernel.org>
3273 L:      linux-wireless@vger.kernel.org
3274 S:      Supported
3275 F:      drivers/net/wireless/ath/*
3276
3277 ATHEROS ATH5K WIRELESS DRIVER
3278 M:      Jiri Slaby <jirislaby@kernel.org>
3279 M:      Nick Kossifidis <mickflemm@gmail.com>
3280 M:      Luis Chamberlain <mcgrof@kernel.org>
3281 L:      linux-wireless@vger.kernel.org
3282 S:      Maintained
3283 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3284 F:      drivers/net/wireless/ath/ath5k/
3285
3286 ATHEROS ATH6KL WIRELESS DRIVER
3287 L:      linux-wireless@vger.kernel.org
3288 S:      Orphan
3289 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3290 F:      drivers/net/wireless/ath/ath6kl/
3291
3292 ATI_REMOTE2 DRIVER
3293 M:      Ville Syrjala <syrjala@sci.fi>
3294 S:      Maintained
3295 F:      drivers/input/misc/ati_remote2.c
3296
3297 ATK0110 HWMON DRIVER
3298 M:      Luca Tettamanti <kronos.it@gmail.com>
3299 L:      linux-hwmon@vger.kernel.org
3300 S:      Maintained
3301 F:      drivers/hwmon/asus_atk0110.c
3302
3303 ATLX ETHERNET DRIVERS
3304 M:      Chris Snook <chris.snook@gmail.com>
3305 L:      netdev@vger.kernel.org
3306 S:      Maintained
3307 W:      http://sourceforge.net/projects/atl1
3308 W:      http://atl1.sourceforge.net
3309 F:      drivers/net/ethernet/atheros/
3310
3311 ATM
3312 M:      Chas Williams <3chas3@gmail.com>
3313 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3314 L:      netdev@vger.kernel.org
3315 S:      Maintained
3316 W:      http://linux-atm.sourceforge.net
3317 F:      drivers/atm/
3318 F:      include/linux/atm*
3319 F:      include/uapi/linux/atm*
3320
3321 ATMEL MACB ETHERNET DRIVER
3322 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3323 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3324 S:      Supported
3325 F:      drivers/net/ethernet/cadence/
3326
3327 ATMEL MAXTOUCH DRIVER
3328 M:      Nick Dyer <nick@shmanahar.org>
3329 S:      Maintained
3330 T:      git git://github.com/ndyer/linux.git
3331 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3332 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3333
3334 ATMEL WIRELESS DRIVER
3335 M:      Simon Kelley <simon@thekelleys.org.uk>
3336 L:      linux-wireless@vger.kernel.org
3337 S:      Maintained
3338 W:      http://www.thekelleys.org.uk/atmel
3339 W:      http://atmelwlandriver.sourceforge.net/
3340 F:      drivers/net/wireless/atmel/atmel*
3341
3342 ATOMIC INFRASTRUCTURE
3343 M:      Will Deacon <will@kernel.org>
3344 M:      Peter Zijlstra <peterz@infradead.org>
3345 R:      Boqun Feng <boqun.feng@gmail.com>
3346 R:      Mark Rutland <mark.rutland@arm.com>
3347 L:      linux-kernel@vger.kernel.org
3348 S:      Maintained
3349 F:      arch/*/include/asm/atomic*.h
3350 F:      include/*/atomic*.h
3351 F:      include/linux/refcount.h
3352 F:      Documentation/atomic_*.txt
3353 F:      scripts/atomic/
3354
3355 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3356 M:      Bradley Grove <linuxdrivers@attotech.com>
3357 L:      linux-scsi@vger.kernel.org
3358 S:      Supported
3359 W:      http://www.attotech.com
3360 F:      drivers/scsi/esas2r
3361
3362 ATUSB IEEE 802.15.4 RADIO DRIVER
3363 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3364 L:      linux-wpan@vger.kernel.org
3365 S:      Maintained
3366 F:      drivers/net/ieee802154/at86rf230.h
3367 F:      drivers/net/ieee802154/atusb.c
3368 F:      drivers/net/ieee802154/atusb.h
3369
3370 AUDIT SUBSYSTEM
3371 M:      Paul Moore <paul@paul-moore.com>
3372 M:      Eric Paris <eparis@redhat.com>
3373 L:      audit@vger.kernel.org
3374 S:      Supported
3375 W:      https://github.com/linux-audit
3376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3377 F:      include/asm-generic/audit_*.h
3378 F:      include/linux/audit.h
3379 F:      include/linux/audit_arch.h
3380 F:      include/uapi/linux/audit.h
3381 F:      kernel/audit*
3382 F:      lib/*audit.c
3383
3384 AUXILIARY DISPLAY DRIVERS
3385 M:      Miguel Ojeda <ojeda@kernel.org>
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/auxdisplay/
3388 F:      drivers/auxdisplay/
3389 F:      include/linux/cfag12864b.h
3390
3391 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3392 M:      Andreas Klinger <ak@it-klinger.de>
3393 L:      linux-iio@vger.kernel.org
3394 S:      Maintained
3395 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3396 F:      drivers/iio/adc/hx711.c
3397
3398 AX.25 NETWORK LAYER
3399 M:      Ralf Baechle <ralf@linux-mips.org>
3400 L:      linux-hams@vger.kernel.org
3401 S:      Maintained
3402 W:      http://www.linux-ax25.org/
3403 F:      include/net/ax25.h
3404 F:      include/uapi/linux/ax25.h
3405 F:      net/ax25/
3406
3407 AXENTIA ARM DEVICES
3408 M:      Peter Rosin <peda@axentia.se>
3409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3410 S:      Maintained
3411 F:      arch/arm/boot/dts/at91-linea.dtsi
3412 F:      arch/arm/boot/dts/at91-natte.dtsi
3413 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3414 F:      arch/arm/boot/dts/at91-tse850-3.dts
3415
3416 AXENTIA ASOC DRIVERS
3417 M:      Peter Rosin <peda@axentia.se>
3418 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3419 S:      Maintained
3420 F:      Documentation/devicetree/bindings/sound/axentia,*
3421 F:      sound/soc/atmel/tse850-pcm5142.c
3422
3423 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3424 M:      Nuno Sá <nuno.sa@analog.com>
3425 L:      linux-hwmon@vger.kernel.org
3426 S:      Supported
3427 W:      https://ez.analog.com/linux-software-drivers
3428 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3429 F:      drivers/hwmon/axi-fan-control.c
3430
3431 AXXIA I2C CONTROLLER
3432 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3433 L:      linux-i2c@vger.kernel.org
3434 S:      Maintained
3435 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3436 F:      drivers/i2c/busses/i2c-axxia.c
3437
3438 AZ6007 DVB DRIVER
3439 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3440 L:      linux-media@vger.kernel.org
3441 S:      Maintained
3442 W:      https://linuxtv.org
3443 T:      git git://linuxtv.org/media_tree.git
3444 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3445
3446 AZTECH FM RADIO RECEIVER DRIVER
3447 M:      Hans Verkuil <hverkuil@xs4all.nl>
3448 L:      linux-media@vger.kernel.org
3449 S:      Maintained
3450 W:      https://linuxtv.org
3451 T:      git git://linuxtv.org/media_tree.git
3452 F:      drivers/media/radio/radio-aztech*
3453
3454 B43 WIRELESS DRIVER
3455 L:      linux-wireless@vger.kernel.org
3456 L:      b43-dev@lists.infradead.org
3457 S:      Odd Fixes
3458 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3459 F:      drivers/net/wireless/broadcom/b43/
3460
3461 B43LEGACY WIRELESS DRIVER
3462 M:      Larry Finger <Larry.Finger@lwfinger.net>
3463 L:      linux-wireless@vger.kernel.org
3464 L:      b43-dev@lists.infradead.org
3465 S:      Maintained
3466 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3467 F:      drivers/net/wireless/broadcom/b43legacy/
3468
3469 BACKLIGHT CLASS/SUBSYSTEM
3470 M:      Lee Jones <lee@kernel.org>
3471 M:      Daniel Thompson <daniel.thompson@linaro.org>
3472 M:      Jingoo Han <jingoohan1@gmail.com>
3473 L:      dri-devel@lists.freedesktop.org
3474 S:      Maintained
3475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3476 F:      Documentation/ABI/stable/sysfs-class-backlight
3477 F:      Documentation/ABI/testing/sysfs-class-backlight
3478 F:      Documentation/devicetree/bindings/leds/backlight
3479 F:      drivers/video/backlight/
3480 F:      include/linux/backlight.h
3481 F:      include/linux/pwm_backlight.h
3482
3483 BARCO P50 GPIO DRIVER
3484 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3485 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3486 S:      Maintained
3487 F:      drivers/platform/x86/barco-p50-gpio.c
3488
3489 BATMAN ADVANCED
3490 M:      Marek Lindner <mareklindner@neomailbox.ch>
3491 M:      Simon Wunderlich <sw@simonwunderlich.de>
3492 M:      Antonio Quartulli <a@unstable.cc>
3493 M:      Sven Eckelmann <sven@narfation.org>
3494 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3495 S:      Maintained
3496 W:      https://www.open-mesh.org/
3497 Q:      https://patchwork.open-mesh.org/project/batman/list/
3498 B:      https://www.open-mesh.org/projects/batman-adv/issues
3499 C:      ircs://irc.hackint.org/batadv
3500 T:      git https://git.open-mesh.org/linux-merge.git
3501 F:      Documentation/networking/batman-adv.rst
3502 F:      include/uapi/linux/batadv_packet.h
3503 F:      include/uapi/linux/batman_adv.h
3504 F:      net/batman-adv/
3505
3506 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3507 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3508 L:      linux-hams@vger.kernel.org
3509 S:      Maintained
3510 W:      http://www.baycom.org/~tom/ham/ham.html
3511 F:      drivers/net/hamradio/baycom*
3512
3513 BCACHE (BLOCK LAYER CACHE)
3514 M:      Coly Li <colyli@suse.de>
3515 M:      Kent Overstreet <kent.overstreet@gmail.com>
3516 L:      linux-bcache@vger.kernel.org
3517 S:      Maintained
3518 W:      http://bcache.evilpiepirate.org
3519 C:      irc://irc.oftc.net/bcache
3520 F:      drivers/md/bcache/
3521
3522 BDISP ST MEDIA DRIVER
3523 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3524 L:      linux-media@vger.kernel.org
3525 S:      Supported
3526 W:      https://linuxtv.org
3527 T:      git git://linuxtv.org/media_tree.git
3528 F:      drivers/media/platform/st/sti/bdisp
3529
3530 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3531 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3532 L:      netdev@vger.kernel.org
3533 S:      Maintained
3534 F:      drivers/net/ethernet/ec_bhf.c
3535
3536 BEFS FILE SYSTEM
3537 M:      Luis de Bethencourt <luisbg@kernel.org>
3538 M:      Salah Triki <salah.triki@gmail.com>
3539 S:      Maintained
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3541 F:      Documentation/filesystems/befs.rst
3542 F:      fs/befs/
3543
3544 BFQ I/O SCHEDULER
3545 M:      Paolo Valente <paolo.valente@linaro.org>
3546 M:      Jens Axboe <axboe@kernel.dk>
3547 L:      linux-block@vger.kernel.org
3548 S:      Maintained
3549 F:      Documentation/block/bfq-iosched.rst
3550 F:      block/bfq-*
3551
3552 BFS FILE SYSTEM
3553 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3554 S:      Maintained
3555 F:      Documentation/filesystems/bfs.rst
3556 F:      fs/bfs/
3557 F:      include/uapi/linux/bfs_fs.h
3558
3559 BITMAP API
3560 M:      Yury Norov <yury.norov@gmail.com>
3561 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3562 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3563 S:      Maintained
3564 F:      include/linux/bitmap.h
3565 F:      include/linux/cpumask.h
3566 F:      include/linux/find.h
3567 F:      include/linux/nodemask.h
3568 F:      lib/bitmap.c
3569 F:      lib/cpumask.c
3570 F:      lib/cpumask_kunit.c
3571 F:      lib/find_bit.c
3572 F:      lib/find_bit_benchmark.c
3573 F:      lib/test_bitmap.c
3574 F:      tools/include/linux/bitmap.h
3575 F:      tools/include/linux/find.h
3576 F:      tools/lib/bitmap.c
3577 F:      tools/lib/find_bit.c
3578
3579 BLINKM RGB LED DRIVER
3580 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3581 S:      Maintained
3582 F:      drivers/leds/leds-blinkm.c
3583
3584 BLOCK LAYER
3585 M:      Jens Axboe <axboe@kernel.dk>
3586 L:      linux-block@vger.kernel.org
3587 S:      Maintained
3588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3589 F:      Documentation/ABI/stable/sysfs-block
3590 F:      Documentation/block/
3591 F:      block/
3592 F:      drivers/block/
3593 F:      include/linux/bio.h
3594 F:      include/linux/blk*
3595 F:      kernel/trace/blktrace.c
3596 F:      lib/sbitmap.c
3597
3598 BLOCK2MTD DRIVER
3599 M:      Joern Engel <joern@lazybastard.org>
3600 L:      linux-mtd@lists.infradead.org
3601 S:      Maintained
3602 F:      drivers/mtd/devices/block2mtd.c
3603
3604 BLUETOOTH DRIVERS
3605 M:      Marcel Holtmann <marcel@holtmann.org>
3606 M:      Johan Hedberg <johan.hedberg@gmail.com>
3607 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3608 L:      linux-bluetooth@vger.kernel.org
3609 S:      Supported
3610 W:      http://www.bluez.org/
3611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3613 F:      drivers/bluetooth/
3614
3615 BLUETOOTH SUBSYSTEM
3616 M:      Marcel Holtmann <marcel@holtmann.org>
3617 M:      Johan Hedberg <johan.hedberg@gmail.com>
3618 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3619 L:      linux-bluetooth@vger.kernel.org
3620 S:      Supported
3621 W:      http://www.bluez.org/
3622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3624 F:      include/net/bluetooth/
3625 F:      net/bluetooth/
3626
3627 BONDING DRIVER
3628 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3629 M:      Andy Gospodarek <andy@greyhouse.net>
3630 L:      netdev@vger.kernel.org
3631 S:      Supported
3632 W:      http://sourceforge.net/projects/bonding/
3633 F:      Documentation/networking/bonding.rst
3634 F:      drivers/net/bonding/
3635 F:      include/net/bond*
3636 F:      include/uapi/linux/if_bonding.h
3637 F:      tools/testing/selftests/drivers/net/bonding/
3638
3639 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3640 M:      Dan Robertson <dan@dlrobertson.com>
3641 L:      linux-iio@vger.kernel.org
3642 S:      Maintained
3643 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3644 F:      drivers/iio/accel/bma400*
3645
3646 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3647 M:      Alexei Starovoitov <ast@kernel.org>
3648 M:      Daniel Borkmann <daniel@iogearbox.net>
3649 M:      Andrii Nakryiko <andrii@kernel.org>
3650 R:      Martin KaFai Lau <martin.lau@linux.dev>
3651 R:      Song Liu <song@kernel.org>
3652 R:      Yonghong Song <yhs@fb.com>
3653 R:      John Fastabend <john.fastabend@gmail.com>
3654 R:      KP Singh <kpsingh@kernel.org>
3655 R:      Stanislav Fomichev <sdf@google.com>
3656 R:      Hao Luo <haoluo@google.com>
3657 R:      Jiri Olsa <jolsa@kernel.org>
3658 L:      bpf@vger.kernel.org
3659 S:      Supported
3660 W:      https://bpf.io/
3661 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3664 F:      Documentation/bpf/
3665 F:      Documentation/networking/filter.rst
3666 F:      Documentation/userspace-api/ebpf/
3667 F:      arch/*/net/*
3668 F:      include/linux/bpf*
3669 F:      include/linux/btf*
3670 F:      include/linux/filter.h
3671 F:      include/trace/events/xdp.h
3672 F:      include/uapi/linux/bpf*
3673 F:      include/uapi/linux/btf*
3674 F:      include/uapi/linux/filter.h
3675 F:      kernel/bpf/
3676 F:      kernel/trace/bpf_trace.c
3677 F:      lib/test_bpf.c
3678 F:      net/bpf/
3679 F:      net/core/filter.c
3680 F:      net/sched/act_bpf.c
3681 F:      net/sched/cls_bpf.c
3682 F:      samples/bpf/
3683 F:      scripts/bpf_doc.py
3684 F:      scripts/pahole-flags.sh
3685 F:      scripts/pahole-version.sh
3686 F:      tools/bpf/
3687 F:      tools/lib/bpf/
3688 F:      tools/testing/selftests/bpf/
3689
3690 BPF JIT for ARM
3691 M:      Shubham Bansal <illusionist.neo@gmail.com>
3692 L:      bpf@vger.kernel.org
3693 S:      Odd Fixes
3694 F:      arch/arm/net/
3695
3696 BPF JIT for ARM64
3697 M:      Daniel Borkmann <daniel@iogearbox.net>
3698 M:      Alexei Starovoitov <ast@kernel.org>
3699 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3700 L:      bpf@vger.kernel.org
3701 S:      Supported
3702 F:      arch/arm64/net/
3703
3704 BPF JIT for MIPS (32-BIT AND 64-BIT)
3705 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3706 M:      Paul Burton <paulburton@kernel.org>
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/mips/net/
3710
3711 BPF JIT for NFP NICs
3712 M:      Jakub Kicinski <kuba@kernel.org>
3713 L:      bpf@vger.kernel.org
3714 S:      Odd Fixes
3715 F:      drivers/net/ethernet/netronome/nfp/bpf/
3716
3717 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3718 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3719 M:      Michael Ellerman <mpe@ellerman.id.au>
3720 L:      bpf@vger.kernel.org
3721 S:      Supported
3722 F:      arch/powerpc/net/
3723
3724 BPF JIT for RISC-V (32-bit)
3725 M:      Luke Nelson <luke.r.nels@gmail.com>
3726 M:      Xi Wang <xi.wang@gmail.com>
3727 L:      bpf@vger.kernel.org
3728 S:      Maintained
3729 F:      arch/riscv/net/
3730 X:      arch/riscv/net/bpf_jit_comp64.c
3731
3732 BPF JIT for RISC-V (64-bit)
3733 M:      Björn Töpel <bjorn@kernel.org>
3734 L:      bpf@vger.kernel.org
3735 S:      Maintained
3736 F:      arch/riscv/net/
3737 X:      arch/riscv/net/bpf_jit_comp32.c
3738
3739 BPF JIT for S390
3740 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3741 M:      Heiko Carstens <hca@linux.ibm.com>
3742 M:      Vasily Gorbik <gor@linux.ibm.com>
3743 L:      bpf@vger.kernel.org
3744 S:      Supported
3745 F:      arch/s390/net/
3746 X:      arch/s390/net/pnet.c
3747
3748 BPF JIT for SPARC (32-BIT AND 64-BIT)
3749 M:      David S. Miller <davem@davemloft.net>
3750 L:      bpf@vger.kernel.org
3751 S:      Odd Fixes
3752 F:      arch/sparc/net/
3753
3754 BPF JIT for X86 32-BIT
3755 M:      Wang YanQing <udknight@gmail.com>
3756 L:      bpf@vger.kernel.org
3757 S:      Odd Fixes
3758 F:      arch/x86/net/bpf_jit_comp32.c
3759
3760 BPF JIT for X86 64-BIT
3761 M:      Alexei Starovoitov <ast@kernel.org>
3762 M:      Daniel Borkmann <daniel@iogearbox.net>
3763 L:      bpf@vger.kernel.org
3764 S:      Supported
3765 F:      arch/x86/net/
3766 X:      arch/x86/net/bpf_jit_comp32.c
3767
3768 BPF [CORE]
3769 M:      Alexei Starovoitov <ast@kernel.org>
3770 M:      Daniel Borkmann <daniel@iogearbox.net>
3771 R:      John Fastabend <john.fastabend@gmail.com>
3772 L:      bpf@vger.kernel.org
3773 S:      Maintained
3774 F:      kernel/bpf/verifier.c
3775 F:      kernel/bpf/tnum.c
3776 F:      kernel/bpf/core.c
3777 F:      kernel/bpf/syscall.c
3778 F:      kernel/bpf/dispatcher.c
3779 F:      kernel/bpf/trampoline.c
3780 F:      include/linux/bpf*
3781 F:      include/linux/filter.h
3782 F:      include/linux/tnum.h
3783
3784 BPF [BTF]
3785 M:      Martin KaFai Lau <martin.lau@linux.dev>
3786 L:      bpf@vger.kernel.org
3787 S:      Maintained
3788 F:      kernel/bpf/btf.c
3789 F:      include/linux/btf*
3790
3791 BPF [TRACING]
3792 M:      Song Liu <song@kernel.org>
3793 R:      Jiri Olsa <jolsa@kernel.org>
3794 L:      bpf@vger.kernel.org
3795 S:      Maintained
3796 F:      kernel/trace/bpf_trace.c
3797 F:      kernel/bpf/stackmap.c
3798
3799 BPF [NETWORKING] (tc BPF, sock_addr)
3800 M:      Martin KaFai Lau <martin.lau@linux.dev>
3801 M:      Daniel Borkmann <daniel@iogearbox.net>
3802 R:      John Fastabend <john.fastabend@gmail.com>
3803 L:      bpf@vger.kernel.org
3804 L:      netdev@vger.kernel.org
3805 S:      Maintained
3806 F:      net/core/filter.c
3807 F:      net/sched/act_bpf.c
3808 F:      net/sched/cls_bpf.c
3809
3810 BPF [NETWORKING] (struct_ops, reuseport)
3811 M:      Martin KaFai Lau <martin.lau@linux.dev>
3812 L:      bpf@vger.kernel.org
3813 L:      netdev@vger.kernel.org
3814 S:      Maintained
3815 F:      kernel/bpf/bpf_struct*
3816
3817 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3818 M:      KP Singh <kpsingh@kernel.org>
3819 R:      Florent Revest <revest@chromium.org>
3820 R:      Brendan Jackman <jackmanb@chromium.org>
3821 L:      bpf@vger.kernel.org
3822 S:      Maintained
3823 F:      Documentation/bpf/prog_lsm.rst
3824 F:      include/linux/bpf_lsm.h
3825 F:      kernel/bpf/bpf_lsm.c
3826 F:      security/bpf/
3827
3828 BPF [STORAGE & CGROUPS]
3829 M:      Martin KaFai Lau <martin.lau@linux.dev>
3830 L:      bpf@vger.kernel.org
3831 S:      Maintained
3832 F:      kernel/bpf/cgroup.c
3833 F:      kernel/bpf/*storage.c
3834 F:      kernel/bpf/bpf_lru*
3835
3836 BPF [RINGBUF]
3837 M:      Andrii Nakryiko <andrii@kernel.org>
3838 L:      bpf@vger.kernel.org
3839 S:      Maintained
3840 F:      kernel/bpf/ringbuf.c
3841
3842 BPF [ITERATOR]
3843 M:      Yonghong Song <yhs@fb.com>
3844 L:      bpf@vger.kernel.org
3845 S:      Maintained
3846 F:      kernel/bpf/*iter.c
3847
3848 BPF [L7 FRAMEWORK] (sockmap)
3849 M:      John Fastabend <john.fastabend@gmail.com>
3850 M:      Jakub Sitnicki <jakub@cloudflare.com>
3851 L:      netdev@vger.kernel.org
3852 L:      bpf@vger.kernel.org
3853 S:      Maintained
3854 F:      include/linux/skmsg.h
3855 F:      net/core/skmsg.c
3856 F:      net/core/sock_map.c
3857 F:      net/ipv4/tcp_bpf.c
3858 F:      net/ipv4/udp_bpf.c
3859 F:      net/unix/unix_bpf.c
3860
3861 BPF [LIBRARY] (libbpf)
3862 M:      Andrii Nakryiko <andrii@kernel.org>
3863 L:      bpf@vger.kernel.org
3864 S:      Maintained
3865 F:      tools/lib/bpf/
3866
3867 BPF [TOOLING] (bpftool)
3868 M:      Quentin Monnet <quentin@isovalent.com>
3869 L:      bpf@vger.kernel.org
3870 S:      Maintained
3871 F:      kernel/bpf/disasm.*
3872 F:      tools/bpf/bpftool/
3873
3874 BPF [SELFTESTS] (Test Runners & Infrastructure)
3875 M:      Andrii Nakryiko <andrii@kernel.org>
3876 R:      Mykola Lysenko <mykolal@fb.com>
3877 L:      bpf@vger.kernel.org
3878 S:      Maintained
3879 F:      tools/testing/selftests/bpf/
3880
3881 BPF [DOCUMENTATION] (Related to Standardization)
3882 R:      David Vernet <void@manifault.com>
3883 L:      bpf@vger.kernel.org
3884 L:      bpf@ietf.org
3885 S:      Maintained
3886 F:      Documentation/bpf/instruction-set.rst
3887
3888 BPF [MISC]
3889 L:      bpf@vger.kernel.org
3890 S:      Odd Fixes
3891 K:      (?:\b|_)bpf(?:\b|_)
3892
3893 BROADCOM B44 10/100 ETHERNET DRIVER
3894 M:      Michael Chan <michael.chan@broadcom.com>
3895 L:      netdev@vger.kernel.org
3896 S:      Supported
3897 F:      drivers/net/ethernet/broadcom/b44.*
3898
3899 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3900 M:      Florian Fainelli <f.fainelli@gmail.com>
3901 L:      netdev@vger.kernel.org
3902 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3903 S:      Supported
3904 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3905 F:      drivers/net/dsa/b53/*
3906 F:      drivers/net/dsa/bcm_sf2*
3907 F:      include/linux/dsa/brcm.h
3908 F:      include/linux/platform_data/b53.h
3909
3910 BROADCOM BCMBCA ARM ARCHITECTURE
3911 M:      William Zhang <william.zhang@broadcom.com>
3912 M:      Anand Gore <anand.gore@broadcom.com>
3913 M:      Kursad Oney <kursad.oney@broadcom.com>
3914 M:      Florian Fainelli <f.fainelli@gmail.com>
3915 M:      Rafał Miłecki <rafal@milecki.pl>
3916 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3918 S:      Maintained
3919 T:      git https://github.com/broadcom/stblinux.git
3920 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3921 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3922 N:      bcmbca
3923 N:      bcm[9]?47622
3924 N:      bcm[9]?4912
3925 N:      bcm[9]?63138
3926 N:      bcm[9]?63146
3927 N:      bcm[9]?63148
3928 N:      bcm[9]?63158
3929 N:      bcm[9]?63178
3930 N:      bcm[9]?6756
3931 N:      bcm[9]?6813
3932 N:      bcm[9]?6846
3933 N:      bcm[9]?6855
3934 N:      bcm[9]?6856
3935 N:      bcm[9]?6858
3936 N:      bcm[9]?6878
3937
3938 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3939 M:      Florian Fainelli <f.fainelli@gmail.com>
3940 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3941 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3943 S:      Maintained
3944 T:      git https://github.com/broadcom/stblinux.git
3945 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3946 F:      drivers/pci/controller/pcie-brcmstb.c
3947 F:      drivers/staging/vc04_services
3948 N:      bcm2711
3949 N:      bcm283*
3950 N:      raspberrypi
3951
3952 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3953 M:      Florian Fainelli <f.fainelli@gmail.com>
3954 M:      Ray Jui <rjui@broadcom.com>
3955 M:      Scott Branden <sbranden@broadcom.com>
3956 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 S:      Maintained
3958 T:      git https://github.com/broadcom/mach-bcm
3959 F:      arch/arm/mach-bcm/
3960 N:      bcm281*
3961 N:      bcm113*
3962 N:      bcm216*
3963 N:      kona
3964
3965 BROADCOM BCM47XX MIPS ARCHITECTURE
3966 M:      Hauke Mehrtens <hauke@hauke-m.de>
3967 M:      Rafał Miłecki <zajec5@gmail.com>
3968 L:      linux-mips@vger.kernel.org
3969 S:      Maintained
3970 F:      Documentation/devicetree/bindings/mips/brcm/
3971 F:      arch/mips/bcm47xx/*
3972 F:      arch/mips/include/asm/mach-bcm47xx/*
3973
3974 BROADCOM BCM4908 ETHERNET DRIVER
3975 M:      Rafał Miłecki <rafal@milecki.pl>
3976 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3980 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3981 F:      drivers/net/ethernet/broadcom/unimac.h
3982
3983 BROADCOM BCM4908 PINMUX DRIVER
3984 M:      Rafał Miłecki <rafal@milecki.pl>
3985 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3986 L:      linux-gpio@vger.kernel.org
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3989 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3990
3991 BROADCOM BCM5301X ARM ARCHITECTURE
3992 M:      Florian Fainelli <f.fainelli@gmail.com>
3993 M:      Hauke Mehrtens <hauke@hauke-m.de>
3994 M:      Rafał Miłecki <zajec5@gmail.com>
3995 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3997 S:      Maintained
3998 F:      arch/arm/boot/dts/bcm470*
3999 F:      arch/arm/boot/dts/bcm5301*
4000 F:      arch/arm/boot/dts/bcm953012*
4001 F:      arch/arm/mach-bcm/bcm_5301x.c
4002
4003 BROADCOM BCM53573 ARM ARCHITECTURE
4004 M:      Florian Fainelli <f.fainelli@gmail.com>
4005 M:      Rafał Miłecki <rafal@milecki.pl>
4006 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4008 S:      Maintained
4009 F:      arch/arm/boot/dts/bcm47189*
4010 F:      arch/arm/boot/dts/bcm53573*
4011
4012 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4013 M:      Kevin Cernekee <cernekee@gmail.com>
4014 L:      linux-usb@vger.kernel.org
4015 S:      Maintained
4016 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4017
4018 BROADCOM BCM7XXX ARM ARCHITECTURE
4019 M:      Florian Fainelli <f.fainelli@gmail.com>
4020 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4022 S:      Maintained
4023 T:      git https://github.com/broadcom/stblinux.git
4024 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4025 F:      arch/arm/boot/dts/bcm7*.dts*
4026 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4027 F:      arch/arm/mach-bcm/*brcmstb*
4028 F:      arch/arm/mm/cache-b15-rac.c
4029 F:      drivers/bus/brcmstb_gisb.c
4030 F:      drivers/pci/controller/pcie-brcmstb.c
4031 N:      brcmstb
4032 N:      bcm7038
4033 N:      bcm7120
4034
4035 BROADCOM BDC DRIVER
4036 M:      Justin Chen <justinpopo6@gmail.com>
4037 M:      Al Cooper <alcooperx@gmail.com>
4038 L:      linux-usb@vger.kernel.org
4039 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4040 S:      Maintained
4041 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4042 F:      drivers/usb/gadget/udc/bdc/
4043
4044 BROADCOM BMIPS CPUFREQ DRIVER
4045 M:      Markus Mayer <mmayer@broadcom.com>
4046 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4047 L:      linux-pm@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/cpufreq/bmips-cpufreq.c
4050
4051 BROADCOM BMIPS MIPS ARCHITECTURE
4052 M:      Florian Fainelli <f.fainelli@gmail.com>
4053 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4054 L:      linux-mips@vger.kernel.org
4055 S:      Maintained
4056 T:      git https://github.com/broadcom/stblinux.git
4057 F:      arch/mips/bmips/*
4058 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4059 F:      arch/mips/include/asm/mach-bmips/*
4060 F:      arch/mips/kernel/*bmips*
4061 F:      drivers/soc/bcm/bcm63xx
4062 F:      drivers/irqchip/irq-bcm63*
4063 F:      drivers/irqchip/irq-bcm7*
4064 F:      drivers/irqchip/irq-brcmstb*
4065 F:      include/linux/bcm963xx_nvram.h
4066 F:      include/linux/bcm963xx_tag.h
4067
4068 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4069 M:      Rasesh Mody <rmody@marvell.com>
4070 M:      GR-Linux-NIC-Dev@marvell.com
4071 L:      netdev@vger.kernel.org
4072 S:      Supported
4073 F:      drivers/net/ethernet/broadcom/bnx2.*
4074 F:      drivers/net/ethernet/broadcom/bnx2_*
4075
4076 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4077 M:      Saurav Kashyap <skashyap@marvell.com>
4078 M:      Javed Hasan <jhasan@marvell.com>
4079 M:      GR-QLogic-Storage-Upstream@marvell.com
4080 L:      linux-scsi@vger.kernel.org
4081 S:      Supported
4082 F:      drivers/scsi/bnx2fc/
4083
4084 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4085 M:      Nilesh Javali <njavali@marvell.com>
4086 M:      Manish Rangankar <mrangankar@marvell.com>
4087 M:      GR-QLogic-Storage-Upstream@marvell.com
4088 L:      linux-scsi@vger.kernel.org
4089 S:      Supported
4090 F:      drivers/scsi/bnx2i/
4091
4092 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4093 M:      Ariel Elior <aelior@marvell.com>
4094 M:      Sudarsana Kalluru <skalluru@marvell.com>
4095 M:      Manish Chopra <manishc@marvell.com>
4096 L:      netdev@vger.kernel.org
4097 S:      Supported
4098 F:      drivers/net/ethernet/broadcom/bnx2x/
4099
4100 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4101 M:      Michael Chan <michael.chan@broadcom.com>
4102 L:      netdev@vger.kernel.org
4103 S:      Supported
4104 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4105 F:      drivers/net/ethernet/broadcom/bnxt/
4106 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4107
4108 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4109 M:      Arend van Spriel <aspriel@gmail.com>
4110 M:      Franky Lin <franky.lin@broadcom.com>
4111 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4112 L:      linux-wireless@vger.kernel.org
4113 L:      brcm80211-dev-list.pdl@broadcom.com
4114 L:      SHA-cyfmac-dev-list@infineon.com
4115 S:      Supported
4116 F:      drivers/net/wireless/broadcom/brcm80211/
4117
4118 BROADCOM BRCMSTB GPIO DRIVER
4119 M:      Doug Berger <opendmb@gmail.com>
4120 M:      Florian Fainelli <f.fainelli@gmail.com>
4121 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4124 F:      drivers/gpio/gpio-brcmstb.c
4125
4126 BROADCOM BRCMSTB I2C DRIVER
4127 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4128 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4129 L:      linux-i2c@vger.kernel.org
4130 S:      Supported
4131 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4132 F:      drivers/i2c/busses/i2c-brcmstb.c
4133
4134 BROADCOM BRCMSTB UART DRIVER
4135 M:      Al Cooper <alcooperx@gmail.com>
4136 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-serial@vger.kernel.org
4138 S:      Maintained
4139 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4140 F:      drivers/tty/serial/8250/8250_bcm7271.c
4141
4142 BROADCOM BRCMSTB USB EHCI DRIVER
4143 M:      Justin Chen <justinpopo6@gmail.com>
4144 M:      Al Cooper <alcooperx@gmail.com>
4145 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4146 L:      linux-usb@vger.kernel.org
4147 S:      Maintained
4148 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4149 F:      drivers/usb/host/ehci-brcm.*
4150
4151 BROADCOM BRCMSTB USB PIN MAP DRIVER
4152 M:      Al Cooper <alcooperx@gmail.com>
4153 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4154 L:      linux-usb@vger.kernel.org
4155 S:      Maintained
4156 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4157 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4158
4159 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4160 M:      Justin Chen <justinpopo6@gmail.com>
4161 M:      Al Cooper <alcooperx@gmail.com>
4162 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4163 L:      linux-kernel@vger.kernel.org
4164 S:      Maintained
4165 F:      drivers/phy/broadcom/phy-brcm-usb*
4166
4167 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4168 M:      William Zhang <william.zhang@broadcom.com>
4169 M:      Kursad Oney <kursad.oney@broadcom.com>
4170 M:      Jonas Gorski <jonas.gorski@gmail.com>
4171 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4172 L:      linux-spi@vger.kernel.org
4173 S:      Maintained
4174 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4175 F:      drivers/spi/spi-bcm63xx-hsspi.c
4176 F:      drivers/spi/spi-bcmbca-hsspi.c
4177
4178 BROADCOM ETHERNET PHY DRIVERS
4179 M:      Florian Fainelli <f.fainelli@gmail.com>
4180 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4181 L:      netdev@vger.kernel.org
4182 S:      Supported
4183 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4184 F:      drivers/net/phy/bcm*.[ch]
4185 F:      drivers/net/phy/broadcom.c
4186 F:      include/linux/brcmphy.h
4187
4188 BROADCOM GENET ETHERNET DRIVER
4189 M:      Doug Berger <opendmb@gmail.com>
4190 M:      Florian Fainelli <f.fainelli@gmail.com>
4191 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4192 L:      netdev@vger.kernel.org
4193 S:      Supported
4194 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4195 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4196 F:      drivers/net/ethernet/broadcom/genet/
4197 F:      drivers/net/ethernet/broadcom/unimac.h
4198 F:      drivers/net/mdio/mdio-bcm-unimac.c
4199 F:      include/linux/platform_data/bcmgenet.h
4200 F:      include/linux/platform_data/mdio-bcm-unimac.h
4201
4202 BROADCOM IPROC ARM ARCHITECTURE
4203 M:      Ray Jui <rjui@broadcom.com>
4204 M:      Scott Branden <sbranden@broadcom.com>
4205 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4207 S:      Maintained
4208 T:      git https://github.com/broadcom/stblinux.git
4209 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4210 F:      arch/arm64/boot/dts/broadcom/stingray/*
4211 F:      drivers/clk/bcm/clk-ns*
4212 F:      drivers/clk/bcm/clk-sr*
4213 F:      drivers/pinctrl/bcm/pinctrl-ns*
4214 F:      include/dt-bindings/clock/bcm-sr*
4215 N:      iproc
4216 N:      cygnus
4217 N:      bcm[-_]nsp
4218 N:      bcm9113*
4219 N:      bcm9583*
4220 N:      bcm9585*
4221 N:      bcm9586*
4222 N:      bcm988312
4223 N:      bcm113*
4224 N:      bcm583*
4225 N:      bcm585*
4226 N:      bcm586*
4227 N:      bcm88312
4228 N:      hr2
4229 N:      stingray
4230
4231 BROADCOM IPROC GBIT ETHERNET DRIVER
4232 M:      Rafał Miłecki <rafal@milecki.pl>
4233 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4234 L:      netdev@vger.kernel.org
4235 S:      Maintained
4236 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4237 F:      drivers/net/ethernet/broadcom/bgmac*
4238 F:      drivers/net/ethernet/broadcom/unimac.h
4239
4240 BROADCOM KONA GPIO DRIVER
4241 M:      Ray Jui <rjui@broadcom.com>
4242 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4243 S:      Supported
4244 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4245 F:      drivers/gpio/gpio-bcm-kona.c
4246
4247 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4248 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4249 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4250 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4251 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4252 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4253 L:      linux-scsi@vger.kernel.org
4254 S:      Supported
4255 W:      https://www.broadcom.com/support/storage
4256 F:      drivers/scsi/mpi3mr/
4257
4258 BROADCOM NETXTREME-E ROCE DRIVER
4259 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4260 L:      linux-rdma@vger.kernel.org
4261 S:      Supported
4262 W:      http://www.broadcom.com
4263 F:      drivers/infiniband/hw/bnxt_re/
4264 F:      include/uapi/rdma/bnxt_re-abi.h
4265
4266 BROADCOM NVRAM DRIVER
4267 M:      Rafał Miłecki <zajec5@gmail.com>
4268 L:      linux-mips@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/firmware/broadcom/*
4271
4272 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4273 M:      Rafał Miłecki <rafal@milecki.pl>
4274 M:      Florian Fainelli <f.fainelli@gmail.com>
4275 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4276 L:      linux-pm@vger.kernel.org
4277 S:      Maintained
4278 T:      git https://github.com/broadcom/stblinux.git
4279 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4280 F:      include/dt-bindings/soc/bcm-pmb.h
4281
4282 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4283 M:      Rafał Miłecki <zajec5@gmail.com>
4284 L:      linux-wireless@vger.kernel.org
4285 S:      Maintained
4286 F:      drivers/bcma/
4287 F:      include/linux/bcma/
4288
4289 BROADCOM SPI DRIVER
4290 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4291 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4292 S:      Maintained
4293 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4294 F:      drivers/spi/spi-bcm-qspi.*
4295 F:      drivers/spi/spi-brcmstb-qspi.c
4296 F:      drivers/spi/spi-iproc-qspi.c
4297
4298 BROADCOM STB AVS CPUFREQ DRIVER
4299 M:      Markus Mayer <mmayer@broadcom.com>
4300 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4301 L:      linux-pm@vger.kernel.org
4302 S:      Maintained
4303 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4304 F:      drivers/cpufreq/brcmstb*
4305
4306 BROADCOM STB AVS TMON DRIVER
4307 M:      Markus Mayer <mmayer@broadcom.com>
4308 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4309 L:      linux-pm@vger.kernel.org
4310 S:      Maintained
4311 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4312 F:      drivers/thermal/broadcom/brcmstb*
4313
4314 BROADCOM STB DPFE DRIVER
4315 M:      Markus Mayer <mmayer@broadcom.com>
4316 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4318 S:      Maintained
4319 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4320 F:      drivers/memory/brcmstb_dpfe.c
4321
4322 BROADCOM STB NAND FLASH DRIVER
4323 M:      Brian Norris <computersforpeace@gmail.com>
4324 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4325 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4326 L:      linux-mtd@lists.infradead.org
4327 S:      Maintained
4328 F:      drivers/mtd/nand/raw/brcmnand/
4329 F:      include/linux/platform_data/brcmnand.h
4330
4331 BROADCOM STB PCIE DRIVER
4332 M:      Jim Quinlan <jim2101024@gmail.com>
4333 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4334 M:      Florian Fainelli <f.fainelli@gmail.com>
4335 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4336 L:      linux-pci@vger.kernel.org
4337 S:      Maintained
4338 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4339 F:      drivers/pci/controller/pcie-brcmstb.c
4340
4341 BROADCOM SYSTEMPORT ETHERNET DRIVER
4342 M:      Florian Fainelli <f.fainelli@gmail.com>
4343 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4344 L:      netdev@vger.kernel.org
4345 S:      Supported
4346 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4347 F:      drivers/net/ethernet/broadcom/unimac.h
4348 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4349
4350 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4351 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4352 M:      Prashant Sreedharan <prashant@broadcom.com>
4353 M:      Michael Chan <mchan@broadcom.com>
4354 L:      netdev@vger.kernel.org
4355 S:      Supported
4356 F:      drivers/net/ethernet/broadcom/tg3.*
4357
4358 BROADCOM VK DRIVER
4359 M:      Scott Branden <scott.branden@broadcom.com>
4360 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4361 S:      Supported
4362 F:      drivers/misc/bcm-vk/
4363 F:      include/uapi/linux/misc/bcm_vk.h
4364
4365 BROCADE BFA FC SCSI DRIVER
4366 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4367 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4368 L:      linux-scsi@vger.kernel.org
4369 S:      Supported
4370 F:      drivers/scsi/bfa/
4371
4372 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4373 M:      Rasesh Mody <rmody@marvell.com>
4374 M:      Sudarsana Kalluru <skalluru@marvell.com>
4375 M:      GR-Linux-NIC-Dev@marvell.com
4376 L:      netdev@vger.kernel.org
4377 S:      Supported
4378 F:      drivers/net/ethernet/brocade/bna/
4379
4380 BSG (block layer generic sg v4 driver)
4381 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4382 L:      linux-scsi@vger.kernel.org
4383 S:      Supported
4384 F:      block/bsg.c
4385 F:      include/linux/bsg.h
4386 F:      include/uapi/linux/bsg.h
4387
4388 BT87X AUDIO DRIVER
4389 M:      Clemens Ladisch <clemens@ladisch.de>
4390 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4391 S:      Maintained
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4393 F:      Documentation/sound/cards/bt87x.rst
4394 F:      sound/pci/bt87x.c
4395
4396 BT8XXGPIO DRIVER
4397 M:      Michael Buesch <m@bues.ch>
4398 S:      Maintained
4399 W:      http://bu3sch.de/btgpio.php
4400 F:      drivers/gpio/gpio-bt8xx.c
4401
4402 BTRFS FILE SYSTEM
4403 M:      Chris Mason <clm@fb.com>
4404 M:      Josef Bacik <josef@toxicpanda.com>
4405 M:      David Sterba <dsterba@suse.com>
4406 L:      linux-btrfs@vger.kernel.org
4407 S:      Maintained
4408 W:      https://btrfs.readthedocs.io
4409 W:      https://btrfs.wiki.kernel.org/
4410 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4411 C:      irc://irc.libera.chat/btrfs
4412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4413 F:      Documentation/filesystems/btrfs.rst
4414 F:      fs/btrfs/
4415 F:      include/linux/btrfs*
4416 F:      include/trace/events/btrfs.h
4417 F:      include/uapi/linux/btrfs*
4418
4419 BTTV VIDEO4LINUX DRIVER
4420 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4421 L:      linux-media@vger.kernel.org
4422 S:      Odd fixes
4423 W:      https://linuxtv.org
4424 T:      git git://linuxtv.org/media_tree.git
4425 F:      Documentation/driver-api/media/drivers/bttv*
4426 F:      drivers/media/pci/bt8xx/bttv*
4427
4428 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4429 M:      Chanwoo Choi <cw00.choi@samsung.com>
4430 L:      linux-pm@vger.kernel.org
4431 L:      linux-samsung-soc@vger.kernel.org
4432 S:      Maintained
4433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4434 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4435 F:      drivers/devfreq/exynos-bus.c
4436
4437 BUSLOGIC SCSI DRIVER
4438 M:      Khalid Aziz <khalid@gonehiking.org>
4439 L:      linux-scsi@vger.kernel.org
4440 S:      Maintained
4441 F:      drivers/scsi/BusLogic.*
4442 F:      drivers/scsi/FlashPoint.*
4443
4444 BXCAN CAN NETWORK DRIVER
4445 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
4446 L:      linux-can@vger.kernel.org
4447 S:      Maintained
4448 F:      Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
4449 F:      drivers/net/can/bxcan.c
4450
4451 C-MEDIA CMI8788 DRIVER
4452 M:      Clemens Ladisch <clemens@ladisch.de>
4453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4454 S:      Maintained
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4456 F:      sound/pci/oxygen/
4457
4458 C-SKY ARCHITECTURE
4459 M:      Guo Ren <guoren@kernel.org>
4460 L:      linux-csky@vger.kernel.org
4461 S:      Supported
4462 T:      git https://github.com/c-sky/csky-linux.git
4463 F:      Documentation/devicetree/bindings/csky/
4464 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4465 F:      Documentation/devicetree/bindings/timer/csky,*
4466 F:      arch/csky/
4467 F:      drivers/clocksource/timer-gx6605s.c
4468 F:      drivers/clocksource/timer-mp-csky.c
4469 F:      drivers/irqchip/irq-csky-*
4470 N:      csky
4471 K:      csky
4472
4473 CA8210 IEEE-802.15.4 RADIO DRIVER
4474 L:      linux-wpan@vger.kernel.org
4475 S:      Orphan
4476 W:      https://github.com/Cascoda/ca8210-linux.git
4477 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4478 F:      drivers/net/ieee802154/ca8210.c
4479
4480 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4481 M:      Damien Le Moal <dlemoal@kernel.org>
4482 L:      linux-riscv@lists.infradead.org
4483 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4484 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4485 F:      drivers/pinctrl/pinctrl-k210.c
4486
4487 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4488 M:      Damien Le Moal <dlemoal@kernel.org>
4489 L:      linux-kernel@vger.kernel.org
4490 L:      linux-riscv@lists.infradead.org
4491 S:      Maintained
4492 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4493 F:      drivers/reset/reset-k210.c
4494
4495 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4496 M:      Damien Le Moal <dlemoal@kernel.org>
4497 L:      linux-riscv@lists.infradead.org
4498 S:      Maintained
4499 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4500 F:      drivers/soc/canaan/
4501 F:      include/soc/canaan/
4502
4503 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4504 M:      David Howells <dhowells@redhat.com>
4505 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4506 S:      Supported
4507 F:      Documentation/filesystems/caching/cachefiles.rst
4508 F:      fs/cachefiles/
4509
4510 CADENCE MIPI-CSI2 BRIDGES
4511 M:      Maxime Ripard <mripard@kernel.org>
4512 L:      linux-media@vger.kernel.org
4513 S:      Maintained
4514 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4515 F:      drivers/media/platform/cadence/cdns-csi2*
4516
4517 CADENCE NAND DRIVER
4518 L:      linux-mtd@lists.infradead.org
4519 S:      Orphan
4520 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4521 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4522
4523 CADENCE USB3 DRD IP DRIVER
4524 M:      Peter Chen <peter.chen@kernel.org>
4525 M:      Pawel Laszczak <pawell@cadence.com>
4526 R:      Roger Quadros <rogerq@kernel.org>
4527 R:      Aswath Govindraju <a-govindraju@ti.com>
4528 L:      linux-usb@vger.kernel.org
4529 S:      Maintained
4530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4531 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4532 F:      drivers/usb/cdns3/
4533 X:      drivers/usb/cdns3/cdnsp*
4534
4535 CADENCE USBSSP DRD IP DRIVER
4536 M:      Pawel Laszczak <pawell@cadence.com>
4537 L:      linux-usb@vger.kernel.org
4538 S:      Maintained
4539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4540 F:      drivers/usb/cdns3/
4541 X:      drivers/usb/cdns3/cdns3*
4542
4543 CADET FM/AM RADIO RECEIVER DRIVER
4544 M:      Hans Verkuil <hverkuil@xs4all.nl>
4545 L:      linux-media@vger.kernel.org
4546 S:      Maintained
4547 W:      https://linuxtv.org
4548 T:      git git://linuxtv.org/media_tree.git
4549 F:      drivers/media/radio/radio-cadet*
4550
4551 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4552 L:      linux-media@vger.kernel.org
4553 S:      Orphan
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      Documentation/admin-guide/media/cafe_ccic*
4556 F:      drivers/media/platform/marvell/
4557
4558 CAIF NETWORK LAYER
4559 L:      netdev@vger.kernel.org
4560 S:      Orphan
4561 F:      Documentation/networking/caif/
4562 F:      drivers/net/caif/
4563 F:      include/net/caif/
4564 F:      include/uapi/linux/caif/
4565 F:      net/caif/
4566
4567 CAKE QDISC
4568 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4569 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4570 S:      Maintained
4571 F:      net/sched/sch_cake.c
4572
4573 CAN NETWORK DRIVERS
4574 M:      Wolfgang Grandegger <wg@grandegger.com>
4575 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4576 L:      linux-can@vger.kernel.org
4577 S:      Maintained
4578 W:      https://github.com/linux-can
4579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4581 F:      Documentation/devicetree/bindings/net/can/
4582 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4583 F:      drivers/net/can/
4584 F:      drivers/phy/phy-can-transceiver.c
4585 F:      include/linux/can/bittiming.h
4586 F:      include/linux/can/dev.h
4587 F:      include/linux/can/length.h
4588 F:      include/linux/can/platform/
4589 F:      include/linux/can/rx-offload.h
4590 F:      include/uapi/linux/can/error.h
4591 F:      include/uapi/linux/can/netlink.h
4592 F:      include/uapi/linux/can/vxcan.h
4593
4594 CAN NETWORK LAYER
4595 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4596 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4597 L:      linux-can@vger.kernel.org
4598 S:      Maintained
4599 W:      https://github.com/linux-can
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4602 F:      Documentation/networking/can.rst
4603 F:      include/linux/can/can-ml.h
4604 F:      include/linux/can/core.h
4605 F:      include/linux/can/skb.h
4606 F:      include/net/netns/can.h
4607 F:      include/uapi/linux/can.h
4608 F:      include/uapi/linux/can/bcm.h
4609 F:      include/uapi/linux/can/gw.h
4610 F:      include/uapi/linux/can/isotp.h
4611 F:      include/uapi/linux/can/raw.h
4612 F:      net/can/
4613
4614 CAN-J1939 NETWORK LAYER
4615 M:      Robin van der Gracht <robin@protonic.nl>
4616 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4617 R:      kernel@pengutronix.de
4618 L:      linux-can@vger.kernel.org
4619 S:      Maintained
4620 F:      Documentation/networking/j1939.rst
4621 F:      include/uapi/linux/can/j1939.h
4622 F:      net/can/j1939/
4623
4624 CAPABILITIES
4625 M:      Serge Hallyn <serge@hallyn.com>
4626 L:      linux-security-module@vger.kernel.org
4627 S:      Supported
4628 F:      include/linux/capability.h
4629 F:      include/uapi/linux/capability.h
4630 F:      kernel/capability.c
4631 F:      security/commoncap.c
4632
4633 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4634 M:      Kevin Tsai <ktsai@capellamicro.com>
4635 S:      Maintained
4636 F:      drivers/iio/light/cm*
4637
4638 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4639 M:      Christian Lamparter <chunkeey@googlemail.com>
4640 L:      linux-wireless@vger.kernel.org
4641 S:      Maintained
4642 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4643 F:      drivers/net/wireless/ath/carl9170/
4644
4645 CAVIUM I2C DRIVER
4646 M:      Robert Richter <rric@kernel.org>
4647 S:      Odd Fixes
4648 W:      http://www.marvell.com
4649 F:      drivers/i2c/busses/i2c-octeon*
4650 F:      drivers/i2c/busses/i2c-thunderx*
4651
4652 CAVIUM LIQUIDIO NETWORK DRIVER
4653 M:      Derek Chickles <dchickles@marvell.com>
4654 M:      Satanand Burla <sburla@marvell.com>
4655 M:      Felix Manlunas <fmanlunas@marvell.com>
4656 L:      netdev@vger.kernel.org
4657 S:      Supported
4658 W:      http://www.marvell.com
4659 F:      drivers/net/ethernet/cavium/liquidio/
4660
4661 CAVIUM MMC DRIVER
4662 M:      Robert Richter <rric@kernel.org>
4663 S:      Odd Fixes
4664 W:      http://www.marvell.com
4665 F:      drivers/mmc/host/cavium*
4666
4667 CAVIUM OCTEON-TX CRYPTO DRIVER
4668 M:      George Cherian <gcherian@marvell.com>
4669 L:      linux-crypto@vger.kernel.org
4670 S:      Supported
4671 W:      http://www.marvell.com
4672 F:      drivers/crypto/cavium/cpt/
4673
4674 CAVIUM THUNDERX2 ARM64 SOC
4675 M:      Robert Richter <rric@kernel.org>
4676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4677 S:      Odd Fixes
4678 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4679 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4680
4681 CBS/ETF/TAPRIO QDISCS
4682 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4683 S:      Maintained
4684 L:      netdev@vger.kernel.org
4685 F:      net/sched/sch_cbs.c
4686 F:      net/sched/sch_etf.c
4687 F:      net/sched/sch_taprio.c
4688
4689 CC2520 IEEE-802.15.4 RADIO DRIVER
4690 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4691 L:      linux-wpan@vger.kernel.org
4692 S:      Odd Fixes
4693 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4694 F:      drivers/net/ieee802154/cc2520.c
4695
4696 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4697 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4698 L:      linux-crypto@vger.kernel.org
4699 S:      Supported
4700 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4701 F:      drivers/crypto/ccree/
4702
4703 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4704 M:      Hadar Gat <hadar.gat@arm.com>
4705 L:      linux-crypto@vger.kernel.org
4706 S:      Supported
4707 F:      drivers/char/hw_random/cctrng.c
4708 F:      drivers/char/hw_random/cctrng.h
4709 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4710 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4711
4712 CEC FRAMEWORK
4713 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4714 L:      linux-media@vger.kernel.org
4715 S:      Supported
4716 W:      http://linuxtv.org
4717 T:      git git://linuxtv.org/media_tree.git
4718 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4719 F:      Documentation/devicetree/bindings/media/cec/cec-common.yaml
4720 F:      Documentation/driver-api/media/cec-core.rst
4721 F:      Documentation/userspace-api/media/cec
4722 F:      drivers/media/cec/
4723 F:      drivers/media/rc/keymaps/rc-cec.c
4724 F:      include/media/cec-notifier.h
4725 F:      include/media/cec.h
4726 F:      include/uapi/linux/cec-funcs.h
4727 F:      include/uapi/linux/cec.h
4728
4729 CEC GPIO DRIVER
4730 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4731 L:      linux-media@vger.kernel.org
4732 S:      Supported
4733 W:      http://linuxtv.org
4734 T:      git git://linuxtv.org/media_tree.git
4735 F:      Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
4736 F:      drivers/media/cec/platform/cec-gpio/
4737
4738 CELL BROADBAND ENGINE ARCHITECTURE
4739 M:      Arnd Bergmann <arnd@arndb.de>
4740 L:      linuxppc-dev@lists.ozlabs.org
4741 S:      Supported
4742 W:      http://www.ibm.com/developerworks/power/cell/
4743 F:      arch/powerpc/include/asm/cell*.h
4744 F:      arch/powerpc/include/asm/spu*.h
4745 F:      arch/powerpc/include/uapi/asm/spu*.h
4746 F:      arch/powerpc/platforms/cell/
4747
4748 CELLWISE CW2015 BATTERY DRIVER
4749 M:      Tobias Schrammm <t.schramm@manjaro.org>
4750 S:      Maintained
4751 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4752 F:      drivers/power/supply/cw2015_battery.c
4753
4754 CEPH COMMON CODE (LIBCEPH)
4755 M:      Ilya Dryomov <idryomov@gmail.com>
4756 M:      Xiubo Li <xiubli@redhat.com>
4757 R:      Jeff Layton <jlayton@kernel.org>
4758 L:      ceph-devel@vger.kernel.org
4759 S:      Supported
4760 W:      http://ceph.com/
4761 T:      git https://github.com/ceph/ceph-client.git
4762 F:      include/linux/ceph/
4763 F:      include/linux/crush/
4764 F:      net/ceph/
4765
4766 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4767 M:      Xiubo Li <xiubli@redhat.com>
4768 M:      Ilya Dryomov <idryomov@gmail.com>
4769 R:      Jeff Layton <jlayton@kernel.org>
4770 L:      ceph-devel@vger.kernel.org
4771 S:      Supported
4772 W:      http://ceph.com/
4773 T:      git https://github.com/ceph/ceph-client.git
4774 F:      Documentation/filesystems/ceph.rst
4775 F:      fs/ceph/
4776
4777 CERTIFICATE HANDLING
4778 M:      David Howells <dhowells@redhat.com>
4779 M:      David Woodhouse <dwmw2@infradead.org>
4780 L:      keyrings@vger.kernel.org
4781 S:      Maintained
4782 F:      Documentation/admin-guide/module-signing.rst
4783 F:      certs/
4784 F:      scripts/sign-file.c
4785 F:      tools/certs/
4786
4787 CFAG12864B LCD DRIVER
4788 M:      Miguel Ojeda <ojeda@kernel.org>
4789 S:      Maintained
4790 F:      drivers/auxdisplay/cfag12864b.c
4791 F:      include/linux/cfag12864b.h
4792
4793 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4794 M:      Miguel Ojeda <ojeda@kernel.org>
4795 S:      Maintained
4796 F:      drivers/auxdisplay/cfag12864bfb.c
4797 F:      include/linux/cfag12864b.h
4798
4799 CHAR and MISC DRIVERS
4800 M:      Arnd Bergmann <arnd@arndb.de>
4801 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4802 S:      Supported
4803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4804 F:      drivers/char/
4805 F:      drivers/misc/
4806 F:      include/linux/miscdevice.h
4807 X:      drivers/char/agp/
4808 X:      drivers/char/hw_random/
4809 X:      drivers/char/ipmi/
4810 X:      drivers/char/random.c
4811 X:      drivers/char/tpm/
4812
4813 CHECKPATCH
4814 M:      Andy Whitcroft <apw@canonical.com>
4815 M:      Joe Perches <joe@perches.com>
4816 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4817 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4818 S:      Maintained
4819 F:      scripts/checkpatch.pl
4820
4821 CHECKPATCH DOCUMENTATION
4822 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4823 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4824 R:      Joe Perches <joe@perches.com>
4825 S:      Maintained
4826 F:      Documentation/dev-tools/checkpatch.rst
4827
4828 CHINESE DOCUMENTATION
4829 M:      Alex Shi <alexs@kernel.org>
4830 M:      Yanteng Si <siyanteng@loongson.cn>
4831 S:      Maintained
4832 F:      Documentation/translations/zh_CN/
4833
4834 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4835 M:      Peter Chen <peter.chen@kernel.org>
4836 L:      linux-usb@vger.kernel.org
4837 S:      Maintained
4838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4839 F:      drivers/usb/chipidea/
4840
4841 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4842 M:      Hans de Goede <hdegoede@redhat.com>
4843 L:      linux-input@vger.kernel.org
4844 S:      Maintained
4845 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4846 F:      drivers/input/touchscreen/chipone_icn8318.c
4847
4848 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4849 M:      Hans de Goede <hdegoede@redhat.com>
4850 L:      linux-input@vger.kernel.org
4851 S:      Maintained
4852 F:      drivers/input/touchscreen/chipone_icn8505.c
4853
4854 CHROME HARDWARE PLATFORM SUPPORT
4855 M:      Benson Leung <bleung@chromium.org>
4856 L:      chrome-platform@lists.linux.dev
4857 S:      Maintained
4858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4859 F:      drivers/platform/chrome/
4860
4861 CHROMEOS EC CODEC DRIVER
4862 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4863 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4864 R:      Guenter Roeck <groeck@chromium.org>
4865 L:      chrome-platform@lists.linux.dev
4866 S:      Maintained
4867 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4868 F:      sound/soc/codecs/cros_ec_codec.*
4869
4870 CHROMEOS EC UART DRIVER
4871 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4872 R:      Benson Leung <bleung@chromium.org>
4873 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4874 S:      Maintained
4875 F:      drivers/platform/chrome/cros_ec_uart.c
4876
4877 CHROMEOS EC SUBDRIVERS
4878 M:      Benson Leung <bleung@chromium.org>
4879 R:      Guenter Roeck <groeck@chromium.org>
4880 L:      chrome-platform@lists.linux.dev
4881 S:      Maintained
4882 F:      drivers/power/supply/cros_usbpd-charger.c
4883 N:      cros_ec
4884 N:      cros-ec
4885
4886 CHROMEOS EC USB TYPE-C DRIVER
4887 M:      Prashant Malani <pmalani@chromium.org>
4888 L:      chrome-platform@lists.linux.dev
4889 S:      Maintained
4890 F:      drivers/platform/chrome/cros_ec_typec.*
4891 F:      drivers/platform/chrome/cros_typec_switch.c
4892 F:      drivers/platform/chrome/cros_typec_vdm.*
4893
4894 CHROMEOS EC USB PD NOTIFY DRIVER
4895 M:      Prashant Malani <pmalani@chromium.org>
4896 L:      chrome-platform@lists.linux.dev
4897 S:      Maintained
4898 F:      drivers/platform/chrome/cros_usbpd_notify.c
4899 F:      include/linux/platform_data/cros_usbpd_notify.h
4900
4901 CHROMEOS HPS DRIVER
4902 M:      Dan Callaghan <dcallagh@chromium.org>
4903 R:      Sami Kyöstilä <skyostil@chromium.org>
4904 S:      Maintained
4905 F:      drivers/platform/chrome/cros_hps_i2c.c
4906
4907 CHRONTEL CH7322 CEC DRIVER
4908 M:      Joe Tessler <jrt@google.com>
4909 L:      linux-media@vger.kernel.org
4910 S:      Maintained
4911 T:      git git://linuxtv.org/media_tree.git
4912 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4913 F:      drivers/media/cec/i2c/ch7322.c
4914
4915 CIRRUS LOGIC AUDIO CODEC DRIVERS
4916 M:      James Schulman <james.schulman@cirrus.com>
4917 M:      David Rhodes <david.rhodes@cirrus.com>
4918 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4919 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4921 L:      patches@opensource.cirrus.com
4922 S:      Maintained
4923 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4924 F:      include/dt-bindings/sound/cs*
4925 F:      sound/pci/hda/cs*
4926 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4927 F:      sound/soc/codecs/cs*
4928
4929 CIRRUS LOGIC DSP FIRMWARE DRIVER
4930 M:      Simon Trimmer <simont@opensource.cirrus.com>
4931 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4932 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4933 L:      patches@opensource.cirrus.com
4934 S:      Supported
4935 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4936 T:      git https://github.com/CirrusLogic/linux-drivers.git
4937 F:      drivers/firmware/cirrus/*
4938 F:      include/linux/firmware/cirrus/*
4939
4940 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4941 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4942 L:      netdev@vger.kernel.org
4943 S:      Maintained
4944 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4945
4946 CIRRUS LOGIC LOCHNAGAR DRIVER
4947 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4948 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4949 L:      patches@opensource.cirrus.com
4950 S:      Supported
4951 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4952 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4953 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4954 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4955 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4956 F:      Documentation/hwmon/lochnagar.rst
4957 F:      drivers/clk/clk-lochnagar.c
4958 F:      drivers/hwmon/lochnagar-hwmon.c
4959 F:      drivers/mfd/lochnagar-i2c.c
4960 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4961 F:      drivers/regulator/lochnagar-regulator.c
4962 F:      include/dt-bindings/clock/lochnagar.h
4963 F:      include/dt-bindings/pinctrl/lochnagar.h
4964 F:      include/linux/mfd/lochnagar*
4965 F:      sound/soc/codecs/lochnagar-sc.c
4966
4967 CIRRUS LOGIC MADERA CODEC DRIVERS
4968 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4969 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4970 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4971 L:      patches@opensource.cirrus.com
4972 S:      Supported
4973 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4974 T:      git https://github.com/CirrusLogic/linux-drivers.git
4975 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4976 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4977 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4978 F:      drivers/gpio/gpio-madera*
4979 F:      drivers/irqchip/irq-madera*
4980 F:      drivers/mfd/cs47l*
4981 F:      drivers/mfd/madera*
4982 F:      drivers/pinctrl/cirrus/*
4983 F:      include/dt-bindings/sound/madera*
4984 F:      include/linux/irqchip/irq-madera*
4985 F:      include/linux/mfd/madera/*
4986 F:      include/sound/madera*
4987 F:      sound/soc/codecs/cs47l*
4988 F:      sound/soc/codecs/madera*
4989
4990 CISCO FCOE HBA DRIVER
4991 M:      Satish Kharat <satishkh@cisco.com>
4992 M:      Sesidhar Baddela <sebaddel@cisco.com>
4993 M:      Karan Tilak Kumar <kartilak@cisco.com>
4994 L:      linux-scsi@vger.kernel.org
4995 S:      Supported
4996 F:      drivers/scsi/fnic/
4997
4998 CISCO SCSI HBA DRIVER
4999 M:      Karan Tilak Kumar <kartilak@cisco.com>
5000 M:      Sesidhar Baddela <sebaddel@cisco.com>
5001 L:      linux-scsi@vger.kernel.org
5002 S:      Supported
5003 F:      drivers/scsi/snic/
5004
5005 CISCO VIC ETHERNET NIC DRIVER
5006 M:      Christian Benvenuti <benve@cisco.com>
5007 M:      Satish Kharat <satishkh@cisco.com>
5008 S:      Supported
5009 F:      drivers/net/ethernet/cisco/enic/
5010
5011 CISCO VIC LOW LATENCY NIC DRIVER
5012 M:      Christian Benvenuti <benve@cisco.com>
5013 M:      Nelson Escobar <neescoba@cisco.com>
5014 S:      Supported
5015 F:      drivers/infiniband/hw/usnic/
5016
5017 CLANG-FORMAT FILE
5018 M:      Miguel Ojeda <ojeda@kernel.org>
5019 S:      Maintained
5020 F:      .clang-format
5021
5022 CLANG/LLVM BUILD SUPPORT
5023 M:      Nathan Chancellor <nathan@kernel.org>
5024 M:      Nick Desaulniers <ndesaulniers@google.com>
5025 R:      Tom Rix <trix@redhat.com>
5026 L:      llvm@lists.linux.dev
5027 S:      Supported
5028 W:      https://clangbuiltlinux.github.io/
5029 B:      https://github.com/ClangBuiltLinux/linux/issues
5030 C:      irc://irc.libera.chat/clangbuiltlinux
5031 F:      Documentation/kbuild/llvm.rst
5032 F:      include/linux/compiler-clang.h
5033 F:      scripts/Makefile.clang
5034 F:      scripts/clang-tools/
5035 K:      \b(?i:clang|llvm)\b
5036
5037 CLANG CONTROL FLOW INTEGRITY SUPPORT
5038 M:      Sami Tolvanen <samitolvanen@google.com>
5039 M:      Kees Cook <keescook@chromium.org>
5040 R:      Nathan Chancellor <nathan@kernel.org>
5041 R:      Nick Desaulniers <ndesaulniers@google.com>
5042 L:      llvm@lists.linux.dev
5043 S:      Supported
5044 B:      https://github.com/ClangBuiltLinux/linux/issues
5045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5046 F:      include/linux/cfi.h
5047 F:      kernel/cfi.c
5048
5049 CLK API
5050 M:      Russell King <linux@armlinux.org.uk>
5051 L:      linux-clk@vger.kernel.org
5052 S:      Maintained
5053 F:      include/linux/clk.h
5054
5055 CLOCKSOURCE, CLOCKEVENT DRIVERS
5056 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5057 M:      Thomas Gleixner <tglx@linutronix.de>
5058 L:      linux-kernel@vger.kernel.org
5059 S:      Supported
5060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5061 F:      Documentation/devicetree/bindings/timer/
5062 F:      drivers/clocksource/
5063
5064 CMPC ACPI DRIVER
5065 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5066 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5067 L:      platform-driver-x86@vger.kernel.org
5068 S:      Supported
5069 F:      drivers/platform/x86/classmate-laptop.c
5070
5071 COBALT MEDIA DRIVER
5072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5073 L:      linux-media@vger.kernel.org
5074 S:      Supported
5075 W:      https://linuxtv.org
5076 T:      git git://linuxtv.org/media_tree.git
5077 F:      drivers/media/pci/cobalt/
5078
5079 COCCINELLE/Semantic Patches (SmPL)
5080 M:      Julia Lawall <Julia.Lawall@inria.fr>
5081 M:      Nicolas Palix <nicolas.palix@imag.fr>
5082 L:      cocci@inria.fr (moderated for non-subscribers)
5083 S:      Supported
5084 W:      https://coccinelle.gitlabpages.inria.fr/website/
5085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5086 F:      Documentation/dev-tools/coccinelle.rst
5087 F:      scripts/coccicheck
5088 F:      scripts/coccinelle/
5089
5090 CODA FILE SYSTEM
5091 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5092 M:      coda@cs.cmu.edu
5093 L:      codalist@coda.cs.cmu.edu
5094 S:      Maintained
5095 W:      http://www.coda.cs.cmu.edu/
5096 F:      Documentation/filesystems/coda.rst
5097 F:      fs/coda/
5098 F:      include/linux/coda*.h
5099 F:      include/uapi/linux/coda*.h
5100
5101 CODA V4L2 MEM2MEM DRIVER
5102 M:      Philipp Zabel <p.zabel@pengutronix.de>
5103 L:      linux-media@vger.kernel.org
5104 S:      Maintained
5105 F:      Documentation/devicetree/bindings/media/coda.yaml
5106 F:      drivers/media/platform/chips-media/
5107
5108 CODE OF CONDUCT
5109 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5110 S:      Supported
5111 F:      Documentation/process/code-of-conduct-interpretation.rst
5112 F:      Documentation/process/code-of-conduct.rst
5113
5114 COMEDI DRIVERS
5115 M:      Ian Abbott <abbotti@mev.co.uk>
5116 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5117 S:      Odd Fixes
5118 F:      drivers/comedi/
5119 F:      include/linux/comedi/
5120 F:      include/uapi/linux/comedi.h
5121
5122 COMMON CLK FRAMEWORK
5123 M:      Michael Turquette <mturquette@baylibre.com>
5124 M:      Stephen Boyd <sboyd@kernel.org>
5125 L:      linux-clk@vger.kernel.org
5126 S:      Maintained
5127 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5129 F:      Documentation/devicetree/bindings/clock/
5130 F:      drivers/clk/
5131 F:      include/dt-bindings/clock/
5132 F:      include/linux/clk-pr*
5133 F:      include/linux/clk/
5134 F:      include/linux/of_clk.h
5135 X:      drivers/clk/clkdev.c
5136
5137 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5138 M:      Steve French <sfrench@samba.org>
5139 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5140 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5141 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5142 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5143 L:      linux-cifs@vger.kernel.org
5144 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5145 S:      Supported
5146 W:      https://wiki.samba.org/index.php/LinuxCIFS
5147 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5148 F:      Documentation/admin-guide/cifs/
5149 F:      fs/cifs/
5150 F:      fs/smbfs_common/
5151 F:      include/uapi/linux/cifs
5152
5153 COMPACTPCI HOTPLUG CORE
5154 M:      Scott Murray <scott@spiteful.org>
5155 L:      linux-pci@vger.kernel.org
5156 S:      Maintained
5157 F:      drivers/pci/hotplug/cpci_hotplug*
5158
5159 COMPACTPCI HOTPLUG GENERIC DRIVER
5160 M:      Scott Murray <scott@spiteful.org>
5161 L:      linux-pci@vger.kernel.org
5162 S:      Maintained
5163 F:      drivers/pci/hotplug/cpcihp_generic.c
5164
5165 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5166 M:      Scott Murray <scott@spiteful.org>
5167 L:      linux-pci@vger.kernel.org
5168 S:      Maintained
5169 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5170
5171 COMPAL LAPTOP SUPPORT
5172 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5173 L:      platform-driver-x86@vger.kernel.org
5174 S:      Maintained
5175 F:      drivers/platform/x86/compal-laptop.c
5176
5177 COMPILER ATTRIBUTES
5178 M:      Miguel Ojeda <ojeda@kernel.org>
5179 R:      Nick Desaulniers <ndesaulniers@google.com>
5180 S:      Maintained
5181 F:      include/linux/compiler_attributes.h
5182
5183 COMPUTE EXPRESS LINK (CXL)
5184 M:      Alison Schofield <alison.schofield@intel.com>
5185 M:      Vishal Verma <vishal.l.verma@intel.com>
5186 M:      Ira Weiny <ira.weiny@intel.com>
5187 M:      Ben Widawsky <bwidawsk@kernel.org>
5188 M:      Dan Williams <dan.j.williams@intel.com>
5189 L:      linux-cxl@vger.kernel.org
5190 S:      Maintained
5191 F:      drivers/cxl/
5192 F:      include/uapi/linux/cxl_mem.h
5193
5194 CONEXANT ACCESSRUNNER USB DRIVER
5195 L:      accessrunner-general@lists.sourceforge.net
5196 S:      Orphan
5197 W:      http://accessrunner.sourceforge.net/
5198 F:      drivers/usb/atm/cxacru.c
5199
5200 CONFIGFS
5201 M:      Joel Becker <jlbec@evilplan.org>
5202 M:      Christoph Hellwig <hch@lst.de>
5203 S:      Supported
5204 T:      git git://git.infradead.org/users/hch/configfs.git
5205 F:      fs/configfs/
5206 F:      include/linux/configfs.h
5207 F:      samples/configfs/
5208
5209 CONSOLE SUBSYSTEM
5210 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5211 S:      Supported
5212 F:      drivers/video/console/
5213 F:      include/linux/console*
5214
5215 CONTEXT TRACKING
5216 M:      Frederic Weisbecker <frederic@kernel.org>
5217 M:      "Paul E. McKenney" <paulmck@kernel.org>
5218 S:      Maintained
5219 F:      kernel/context_tracking.c
5220 F:      include/linux/context_tracking*
5221
5222 CONTROL GROUP (CGROUP)
5223 M:      Tejun Heo <tj@kernel.org>
5224 M:      Zefan Li <lizefan.x@bytedance.com>
5225 M:      Johannes Weiner <hannes@cmpxchg.org>
5226 L:      cgroups@vger.kernel.org
5227 S:      Maintained
5228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5229 F:      Documentation/admin-guide/cgroup-v1/
5230 F:      Documentation/admin-guide/cgroup-v2.rst
5231 F:      include/linux/cgroup*
5232 F:      kernel/cgroup/
5233 F:      tools/testing/selftests/cgroup/
5234
5235 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5236 M:      Tejun Heo <tj@kernel.org>
5237 M:      Josef Bacik <josef@toxicpanda.com>
5238 M:      Jens Axboe <axboe@kernel.dk>
5239 L:      cgroups@vger.kernel.org
5240 L:      linux-block@vger.kernel.org
5241 T:      git git://git.kernel.dk/linux-block
5242 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5243 F:      block/bfq-cgroup.c
5244 F:      block/blk-cgroup.c
5245 F:      block/blk-iocost.c
5246 F:      block/blk-iolatency.c
5247 F:      block/blk-throttle.c
5248 F:      include/linux/blk-cgroup.h
5249
5250 CONTROL GROUP - CPUSET
5251 M:      Waiman Long <longman@redhat.com>
5252 M:      Zefan Li <lizefan.x@bytedance.com>
5253 L:      cgroups@vger.kernel.org
5254 S:      Maintained
5255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5256 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5257 F:      include/linux/cpuset.h
5258 F:      kernel/cgroup/cpuset.c
5259
5260 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5261 M:      Johannes Weiner <hannes@cmpxchg.org>
5262 M:      Michal Hocko <mhocko@kernel.org>
5263 M:      Roman Gushchin <roman.gushchin@linux.dev>
5264 M:      Shakeel Butt <shakeelb@google.com>
5265 R:      Muchun Song <muchun.song@linux.dev>
5266 L:      cgroups@vger.kernel.org
5267 L:      linux-mm@kvack.org
5268 S:      Maintained
5269 F:      mm/memcontrol.c
5270 F:      mm/swap_cgroup.c
5271 F:      tools/testing/selftests/cgroup/memcg_protection.m
5272 F:      tools/testing/selftests/cgroup/test_kmem.c
5273 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5274
5275 CORETEMP HARDWARE MONITORING DRIVER
5276 M:      Fenghua Yu <fenghua.yu@intel.com>
5277 L:      linux-hwmon@vger.kernel.org
5278 S:      Maintained
5279 F:      Documentation/hwmon/coretemp.rst
5280 F:      drivers/hwmon/coretemp.c
5281
5282 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5283 M:      Marius Zachmann <mail@mariuszachmann.de>
5284 L:      linux-hwmon@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/hwmon/corsair-cpro.c
5287
5288 CORSAIR-PSU HARDWARE MONITOR DRIVER
5289 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5290 L:      linux-hwmon@vger.kernel.org
5291 S:      Maintained
5292 F:      Documentation/hwmon/corsair-psu.rst
5293 F:      drivers/hwmon/corsair-psu.c
5294
5295 COUNTER SUBSYSTEM
5296 M:      William Breathitt Gray <william.gray@linaro.org>
5297 L:      linux-iio@vger.kernel.org
5298 S:      Maintained
5299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5300 F:      Documentation/ABI/testing/sysfs-bus-counter
5301 F:      Documentation/driver-api/generic-counter.rst
5302 F:      drivers/counter/
5303 F:      include/linux/counter.h
5304 F:      include/uapi/linux/counter.h
5305 F:      tools/counter/
5306
5307 CP2615 I2C DRIVER
5308 M:      Bence Csókás <bence98@sch.bme.hu>
5309 S:      Maintained
5310 F:      drivers/i2c/busses/i2c-cp2615.c
5311
5312 CPMAC ETHERNET DRIVER
5313 M:      Florian Fainelli <f.fainelli@gmail.com>
5314 L:      netdev@vger.kernel.org
5315 S:      Maintained
5316 F:      drivers/net/ethernet/ti/cpmac.c
5317
5318 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5319 M:      Viresh Kumar <viresh.kumar@linaro.org>
5320 M:      Sudeep Holla <sudeep.holla@arm.com>
5321 L:      linux-pm@vger.kernel.org
5322 S:      Maintained
5323 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5324 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5325
5326 CPU FREQUENCY SCALING FRAMEWORK
5327 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5328 M:      Viresh Kumar <viresh.kumar@linaro.org>
5329 L:      linux-pm@vger.kernel.org
5330 S:      Maintained
5331 B:      https://bugzilla.kernel.org
5332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5334 F:      Documentation/admin-guide/pm/cpufreq.rst
5335 F:      Documentation/admin-guide/pm/intel_pstate.rst
5336 F:      Documentation/cpu-freq/
5337 F:      Documentation/devicetree/bindings/cpufreq/
5338 F:      drivers/cpufreq/
5339 F:      include/linux/cpufreq.h
5340 F:      include/linux/sched/cpufreq.h
5341 F:      kernel/sched/cpufreq*.c
5342 F:      tools/testing/selftests/cpufreq/
5343
5344 CPU IDLE TIME MANAGEMENT FRAMEWORK
5345 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5346 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5347 L:      linux-pm@vger.kernel.org
5348 S:      Maintained
5349 B:      https://bugzilla.kernel.org
5350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5351 F:      Documentation/admin-guide/pm/cpuidle.rst
5352 F:      Documentation/driver-api/pm/cpuidle.rst
5353 F:      drivers/cpuidle/
5354 F:      include/linux/cpuidle.h
5355
5356 CPU POWER MONITORING SUBSYSTEM
5357 M:      Thomas Renninger <trenn@suse.com>
5358 M:      Shuah Khan <shuah@kernel.org>
5359 M:      Shuah Khan <skhan@linuxfoundation.org>
5360 L:      linux-pm@vger.kernel.org
5361 S:      Maintained
5362 F:      tools/power/cpupower/
5363
5364 CPUID/MSR DRIVER
5365 M:      "H. Peter Anvin" <hpa@zytor.com>
5366 S:      Maintained
5367 F:      arch/x86/kernel/cpuid.c
5368 F:      arch/x86/kernel/msr.c
5369
5370 CPUIDLE DRIVER - ARM BIG LITTLE
5371 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5372 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5373 L:      linux-pm@vger.kernel.org
5374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5375 S:      Maintained
5376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5377 F:      drivers/cpuidle/cpuidle-big_little.c
5378
5379 CPUIDLE DRIVER - ARM EXYNOS
5380 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5381 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5382 M:      Kukjin Kim <kgene@kernel.org>
5383 L:      linux-pm@vger.kernel.org
5384 L:      linux-samsung-soc@vger.kernel.org
5385 S:      Supported
5386 F:      arch/arm/mach-exynos/pm.c
5387 F:      drivers/cpuidle/cpuidle-exynos.c
5388 F:      include/linux/platform_data/cpuidle-exynos.h
5389
5390 CPUIDLE DRIVER - ARM PSCI
5391 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5392 M:      Sudeep Holla <sudeep.holla@arm.com>
5393 L:      linux-pm@vger.kernel.org
5394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5395 S:      Supported
5396 F:      drivers/cpuidle/cpuidle-psci.c
5397
5398 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5399 M:      Ulf Hansson <ulf.hansson@linaro.org>
5400 L:      linux-pm@vger.kernel.org
5401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5402 S:      Supported
5403 F:      drivers/cpuidle/cpuidle-psci.h
5404 F:      drivers/cpuidle/cpuidle-psci-domain.c
5405
5406 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5407 M:      Ulf Hansson <ulf.hansson@linaro.org>
5408 L:      linux-pm@vger.kernel.org
5409 S:      Supported
5410 F:      drivers/cpuidle/dt_idle_genpd.c
5411 F:      drivers/cpuidle/dt_idle_genpd.h
5412
5413 CPUIDLE DRIVER - RISC-V SBI
5414 M:      Anup Patel <anup@brainfault.org>
5415 L:      linux-pm@vger.kernel.org
5416 L:      linux-riscv@lists.infradead.org
5417 S:      Maintained
5418 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5419
5420 CRAMFS FILESYSTEM
5421 M:      Nicolas Pitre <nico@fluxnic.net>
5422 S:      Maintained
5423 F:      Documentation/filesystems/cramfs.rst
5424 F:      fs/cramfs/
5425
5426 CREATIVE SB0540
5427 M:      Bastien Nocera <hadess@hadess.net>
5428 L:      linux-input@vger.kernel.org
5429 S:      Maintained
5430 F:      drivers/hid/hid-creative-sb0540.c
5431
5432 CRYPTO API
5433 M:      Herbert Xu <herbert@gondor.apana.org.au>
5434 M:      "David S. Miller" <davem@davemloft.net>
5435 L:      linux-crypto@vger.kernel.org
5436 S:      Maintained
5437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5439 F:      Documentation/crypto/
5440 F:      Documentation/devicetree/bindings/crypto/
5441 F:      arch/*/crypto/
5442 F:      crypto/
5443 F:      drivers/crypto/
5444 F:      include/crypto/
5445 F:      include/linux/crypto*
5446 F:      lib/crypto/
5447
5448 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5449 M:      Neil Horman <nhorman@tuxdriver.com>
5450 L:      linux-crypto@vger.kernel.org
5451 S:      Maintained
5452 F:      crypto/ansi_cprng.c
5453 F:      crypto/rng.c
5454
5455 CS3308 MEDIA DRIVER
5456 M:      Hans Verkuil <hverkuil@xs4all.nl>
5457 L:      linux-media@vger.kernel.org
5458 S:      Odd Fixes
5459 W:      http://linuxtv.org
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      drivers/media/i2c/cs3308.c
5462
5463 CS5535 Audio ALSA driver
5464 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5465 S:      Maintained
5466 F:      sound/pci/cs5535audio/
5467
5468 CTU CAN FD DRIVER
5469 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5470 M:      Ondrej Ille <ondrej.ille@gmail.com>
5471 L:      linux-can@vger.kernel.org
5472 S:      Maintained
5473 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5474 F:      drivers/net/can/ctucanfd/
5475
5476 CW1200 WLAN driver
5477 M:      Solomon Peachy <pizza@shaftnet.org>
5478 S:      Maintained
5479 F:      drivers/net/wireless/st/cw1200/
5480
5481 CX18 VIDEO4LINUX DRIVER
5482 M:      Andy Walls <awalls@md.metrocast.net>
5483 L:      linux-media@vger.kernel.org
5484 S:      Maintained
5485 W:      https://linuxtv.org
5486 T:      git git://linuxtv.org/media_tree.git
5487 F:      drivers/media/pci/cx18/
5488 F:      include/uapi/linux/ivtv*
5489
5490 CX2341X MPEG ENCODER HELPER MODULE
5491 M:      Hans Verkuil <hverkuil@xs4all.nl>
5492 L:      linux-media@vger.kernel.org
5493 S:      Maintained
5494 W:      https://linuxtv.org
5495 T:      git git://linuxtv.org/media_tree.git
5496 F:      drivers/media/common/cx2341x*
5497 F:      include/media/drv-intf/cx2341x.h
5498
5499 CX24120 MEDIA DRIVER
5500 M:      Jemma Denson <jdenson@gmail.com>
5501 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5502 L:      linux-media@vger.kernel.org
5503 S:      Maintained
5504 W:      https://linuxtv.org
5505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5506 F:      drivers/media/dvb-frontends/cx24120*
5507
5508 CX88 VIDEO4LINUX DRIVER
5509 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5510 L:      linux-media@vger.kernel.org
5511 S:      Odd fixes
5512 W:      https://linuxtv.org
5513 T:      git git://linuxtv.org/media_tree.git
5514 F:      Documentation/driver-api/media/drivers/cx88*
5515 F:      drivers/media/pci/cx88/
5516
5517 CXD2820R MEDIA DRIVER
5518 M:      Antti Palosaari <crope@iki.fi>
5519 L:      linux-media@vger.kernel.org
5520 S:      Maintained
5521 W:      https://linuxtv.org
5522 W:      http://palosaari.fi/linux/
5523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5524 T:      git git://linuxtv.org/anttip/media_tree.git
5525 F:      drivers/media/dvb-frontends/cxd2820r*
5526
5527 CXGB3 ETHERNET DRIVER (CXGB3)
5528 M:      Raju Rangoju <rajur@chelsio.com>
5529 L:      netdev@vger.kernel.org
5530 S:      Supported
5531 W:      http://www.chelsio.com
5532 F:      drivers/net/ethernet/chelsio/cxgb3/
5533
5534 CXGB3 ISCSI DRIVER (CXGB3I)
5535 M:      Varun Prakash <varun@chelsio.com>
5536 L:      linux-scsi@vger.kernel.org
5537 S:      Supported
5538 W:      http://www.chelsio.com
5539 F:      drivers/scsi/cxgbi/cxgb3i
5540
5541 CXGB4 CRYPTO DRIVER (chcr)
5542 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5543 L:      linux-crypto@vger.kernel.org
5544 S:      Supported
5545 W:      http://www.chelsio.com
5546 F:      drivers/crypto/chelsio
5547
5548 CXGB4 INLINE CRYPTO DRIVER
5549 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5550 L:      netdev@vger.kernel.org
5551 S:      Supported
5552 W:      http://www.chelsio.com
5553 F:      drivers/net/ethernet/chelsio/inline_crypto/
5554
5555 CXGB4 ETHERNET DRIVER (CXGB4)
5556 M:      Raju Rangoju <rajur@chelsio.com>
5557 L:      netdev@vger.kernel.org
5558 S:      Supported
5559 W:      http://www.chelsio.com
5560 F:      drivers/net/ethernet/chelsio/cxgb4/
5561
5562 CXGB4 ISCSI DRIVER (CXGB4I)
5563 M:      Varun Prakash <varun@chelsio.com>
5564 L:      linux-scsi@vger.kernel.org
5565 S:      Supported
5566 W:      http://www.chelsio.com
5567 F:      drivers/scsi/cxgbi/cxgb4i
5568
5569 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5570 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5571 L:      linux-rdma@vger.kernel.org
5572 S:      Supported
5573 W:      http://www.openfabrics.org
5574 F:      drivers/infiniband/hw/cxgb4/
5575 F:      include/uapi/rdma/cxgb4-abi.h
5576
5577 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5578 M:      Raju Rangoju <rajur@chelsio.com>
5579 L:      netdev@vger.kernel.org
5580 S:      Supported
5581 W:      http://www.chelsio.com
5582 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5583
5584 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5585 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5586 M:      Andrew Donnellan <ajd@linux.ibm.com>
5587 L:      linuxppc-dev@lists.ozlabs.org
5588 S:      Supported
5589 F:      Documentation/ABI/testing/sysfs-class-cxl
5590 F:      Documentation/powerpc/cxl.rst
5591 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5592 F:      drivers/misc/cxl/
5593 F:      include/misc/cxl*
5594 F:      include/uapi/misc/cxl.h
5595
5596 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5597 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5598 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5599 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5600 L:      linux-scsi@vger.kernel.org
5601 S:      Supported
5602 F:      Documentation/powerpc/cxlflash.rst
5603 F:      drivers/scsi/cxlflash/
5604 F:      include/uapi/scsi/cxlflash_ioctl.h
5605
5606 CYBERPRO FB DRIVER
5607 M:      Russell King <linux@armlinux.org.uk>
5608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5609 S:      Maintained
5610 W:      http://www.armlinux.org.uk/
5611 F:      drivers/video/fbdev/cyber2000fb.*
5612
5613 CYCLADES PC300 DRIVER
5614 S:      Orphan
5615 F:      drivers/net/wan/pc300*
5616
5617 CYPRESS_FIRMWARE MEDIA DRIVER
5618 M:      Antti Palosaari <crope@iki.fi>
5619 L:      linux-media@vger.kernel.org
5620 S:      Maintained
5621 W:      https://linuxtv.org
5622 W:      http://palosaari.fi/linux/
5623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5624 T:      git git://linuxtv.org/anttip/media_tree.git
5625 F:      drivers/media/common/cypress_firmware*
5626
5627 CYPRESS CY8C95X0 PINCTRL DRIVER
5628 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5629 L:      linux-gpio@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5632
5633 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5634 M:      Linus Walleij <linus.walleij@linaro.org>
5635 L:      linux-input@vger.kernel.org
5636 S:      Maintained
5637 F:      drivers/input/touchscreen/cy8ctma140.c
5638
5639 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5640 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5641 L:      linux-input@vger.kernel.org
5642 S:      Maintained
5643 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5644 F:      drivers/input/keyboard/cypress-sf.c
5645
5646 CYTTSP TOUCHSCREEN DRIVER
5647 M:      Linus Walleij <linus.walleij@linaro.org>
5648 L:      linux-input@vger.kernel.org
5649 S:      Maintained
5650 F:      drivers/input/touchscreen/cyttsp*
5651
5652 D-LINK DIR-685 TOUCHKEYS DRIVER
5653 M:      Linus Walleij <linus.walleij@linaro.org>
5654 L:      linux-input@vger.kernel.org
5655 S:      Supported
5656 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5657
5658 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5659 M:      Joshua Kinard <kumba@gentoo.org>
5660 S:      Maintained
5661 F:      drivers/rtc/rtc-ds1685.c
5662 F:      include/linux/rtc/ds1685.h
5663
5664 DAMA SLAVE for AX.25
5665 M:      Joerg Reuter <jreuter@yaina.de>
5666 L:      linux-hams@vger.kernel.org
5667 S:      Maintained
5668 W:      http://yaina.de/jreuter/
5669 W:      http://www.qsl.net/dl1bke/
5670 F:      net/ax25/af_ax25.c
5671 F:      net/ax25/ax25_dev.c
5672 F:      net/ax25/ax25_ds_*
5673 F:      net/ax25/ax25_in.c
5674 F:      net/ax25/ax25_out.c
5675 F:      net/ax25/ax25_timer.c
5676 F:      net/ax25/sysctl_net_ax25.c
5677
5678 DATA ACCESS MONITOR
5679 M:      SeongJae Park <sj@kernel.org>
5680 L:      damon@lists.linux.dev
5681 L:      linux-mm@kvack.org
5682 S:      Maintained
5683 W:      https://damonitor.github.io
5684 P:      Documentation/mm/damon/maintainer-profile.rst
5685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
5686 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
5687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
5688 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5689 F:      Documentation/admin-guide/mm/damon/
5690 F:      Documentation/mm/damon/
5691 F:      include/linux/damon.h
5692 F:      include/trace/events/damon.h
5693 F:      mm/damon/
5694 F:      tools/testing/selftests/damon/
5695
5696 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5697 L:      netdev@vger.kernel.org
5698 S:      Orphan
5699 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5700 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5701
5702 DC390/AM53C974 SCSI driver
5703 M:      Hannes Reinecke <hare@suse.com>
5704 L:      linux-scsi@vger.kernel.org
5705 S:      Maintained
5706 F:      drivers/scsi/am53c974.c
5707
5708 DC395x SCSI driver
5709 M:      Oliver Neukum <oliver@neukum.org>
5710 M:      Ali Akcaagac <aliakc@web.de>
5711 M:      Jamie Lenehan <lenehan@twibble.org>
5712 L:      dc395x@twibble.org
5713 S:      Maintained
5714 W:      http://twibble.org/dist/dc395x/
5715 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5716 F:      Documentation/scsi/dc395x.rst
5717 F:      drivers/scsi/dc395x.*
5718
5719 DCCP PROTOCOL
5720 L:      dccp@vger.kernel.org
5721 S:      Orphan
5722 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5723 F:      include/linux/dccp.h
5724 F:      include/linux/tfrc.h
5725 F:      include/uapi/linux/dccp.h
5726 F:      net/dccp/
5727
5728 DECSTATION PLATFORM SUPPORT
5729 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5730 L:      linux-mips@vger.kernel.org
5731 S:      Maintained
5732 W:      http://www.linux-mips.org/wiki/DECstation
5733 F:      arch/mips/dec/
5734 F:      arch/mips/include/asm/dec/
5735 F:      arch/mips/include/asm/mach-dec/
5736
5737 DEFXX FDDI NETWORK DRIVER
5738 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5739 S:      Maintained
5740 F:      drivers/net/fddi/defxx.*
5741
5742 DEFZA FDDI NETWORK DRIVER
5743 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5744 S:      Maintained
5745 F:      drivers/net/fddi/defza.*
5746
5747 DEINTERLACE DRIVERS FOR ALLWINNER H3
5748 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5749 L:      linux-media@vger.kernel.org
5750 S:      Maintained
5751 T:      git git://linuxtv.org/media_tree.git
5752 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5753 F:      drivers/media/platform/sunxi/sun8i-di/
5754
5755 DELL LAPTOP DRIVER
5756 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5757 M:      Pali Rohár <pali@kernel.org>
5758 L:      platform-driver-x86@vger.kernel.org
5759 S:      Maintained
5760 F:      drivers/platform/x86/dell/dell-laptop.c
5761
5762 DELL LAPTOP FREEFALL DRIVER
5763 M:      Pali Rohár <pali@kernel.org>
5764 S:      Maintained
5765 F:      drivers/platform/x86/dell/dell-smo8800.c
5766
5767 DELL LAPTOP RBTN DRIVER
5768 M:      Pali Rohár <pali@kernel.org>
5769 S:      Maintained
5770 F:      drivers/platform/x86/dell/dell-rbtn.*
5771
5772 DELL LAPTOP SMM DRIVER
5773 M:      Pali Rohár <pali@kernel.org>
5774 S:      Maintained
5775 F:      Documentation/ABI/obsolete/procfs-i8k
5776 F:      drivers/hwmon/dell-smm-hwmon.c
5777 F:      include/uapi/linux/i8k.h
5778
5779 DELL REMOTE BIOS UPDATE DRIVER
5780 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5781 L:      platform-driver-x86@vger.kernel.org
5782 S:      Maintained
5783 F:      drivers/platform/x86/dell/dell_rbu.c
5784
5785 DELL SMBIOS DRIVER
5786 M:      Pali Rohár <pali@kernel.org>
5787 L:      Dell.Client.Kernel@dell.com
5788 L:      platform-driver-x86@vger.kernel.org
5789 S:      Maintained
5790 F:      drivers/platform/x86/dell/dell-smbios.*
5791
5792 DELL SMBIOS SMM DRIVER
5793 L:      Dell.Client.Kernel@dell.com
5794 L:      platform-driver-x86@vger.kernel.org
5795 S:      Maintained
5796 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5797
5798 DELL SMBIOS WMI DRIVER
5799 L:      Dell.Client.Kernel@dell.com
5800 L:      platform-driver-x86@vger.kernel.org
5801 S:      Maintained
5802 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5803 F:      tools/wmi/dell-smbios-example.c
5804
5805 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5806 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5807 L:      platform-driver-x86@vger.kernel.org
5808 S:      Maintained
5809 F:      Documentation/driver-api/dcdbas.rst
5810 F:      drivers/platform/x86/dell/dcdbas.*
5811
5812 DELL WMI DESCRIPTOR DRIVER
5813 L:      Dell.Client.Kernel@dell.com
5814 S:      Maintained
5815 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5816
5817 DELL WMI DDV DRIVER
5818 M:      Armin Wolf <W_Armin@gmx.de>
5819 S:      Maintained
5820 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5821 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5822 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5823
5824 DELL WMI SYSMAN DRIVER
5825 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5826 L:      Dell.Client.Kernel@dell.com
5827 L:      platform-driver-x86@vger.kernel.org
5828 S:      Maintained
5829 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5830 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5831
5832 DELL WMI NOTIFICATIONS DRIVER
5833 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5834 M:      Pali Rohár <pali@kernel.org>
5835 S:      Maintained
5836 F:      drivers/platform/x86/dell/dell-wmi-base.c
5837
5838 DELL WMI HARDWARE PRIVACY SUPPORT
5839 M:      Perry Yuan <Perry.Yuan@dell.com>
5840 L:      Dell.Client.Kernel@dell.com
5841 L:      platform-driver-x86@vger.kernel.org
5842 S:      Maintained
5843 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5844
5845 DELTA ST MEDIA DRIVER
5846 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5847 L:      linux-media@vger.kernel.org
5848 S:      Supported
5849 W:      https://linuxtv.org
5850 T:      git git://linuxtv.org/media_tree.git
5851 F:      drivers/media/platform/st/sti/delta
5852
5853 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5854 M:      Zev Weiss <zev@bewilderbeest.net>
5855 L:      linux-hwmon@vger.kernel.org
5856 S:      Maintained
5857 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5858
5859 DELTA DPS920AB PSU DRIVER
5860 M:      Robert Marko <robert.marko@sartura.hr>
5861 L:      linux-hwmon@vger.kernel.org
5862 S:      Maintained
5863 F:      Documentation/hwmon/dps920ab.rst
5864 F:      drivers/hwmon/pmbus/dps920ab.c
5865
5866 DELTA NETWORKS TN48M CPLD DRIVERS
5867 M:      Robert Marko <robert.marko@sartura.hr>
5868 S:      Maintained
5869 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5870 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5871 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5872 F:      drivers/gpio/gpio-tn48m.c
5873 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5874
5875 DENALI NAND DRIVER
5876 L:      linux-mtd@lists.infradead.org
5877 S:      Orphan
5878 F:      drivers/mtd/nand/raw/denali*
5879
5880 DESIGNWARE EDMA CORE IP DRIVER
5881 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5882 L:      dmaengine@vger.kernel.org
5883 S:      Maintained
5884 F:      drivers/dma/dw-edma/
5885 F:      include/linux/dma/edma.h
5886
5887 DESIGNWARE XDATA IP DRIVER
5888 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5889 L:      linux-pci@vger.kernel.org
5890 S:      Maintained
5891 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5892 F:      drivers/misc/dw-xdata-pcie.c
5893
5894 DESIGNWARE USB2 DRD IP DRIVER
5895 M:      Minas Harutyunyan <hminas@synopsys.com>
5896 L:      linux-usb@vger.kernel.org
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5899 F:      drivers/usb/dwc2/
5900
5901 DESIGNWARE USB3 DRD IP DRIVER
5902 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5903 L:      linux-usb@vger.kernel.org
5904 S:      Maintained
5905 F:      drivers/usb/dwc3/
5906
5907 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5908 M:      Andreas Klinger <ak@it-klinger.de>
5909 L:      linux-iio@vger.kernel.org
5910 S:      Maintained
5911 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5912 F:      drivers/iio/proximity/srf*.c
5913
5914 DEVICE COREDUMP (DEV_COREDUMP)
5915 M:      Johannes Berg <johannes@sipsolutions.net>
5916 L:      linux-kernel@vger.kernel.org
5917 S:      Maintained
5918 F:      drivers/base/devcoredump.c
5919 F:      include/linux/devcoredump.h
5920
5921 DEVICE DEPENDENCY HELPER SCRIPT
5922 M:      Saravana Kannan <saravanak@google.com>
5923 L:      linux-kernel@vger.kernel.org
5924 S:      Maintained
5925 F:      scripts/dev-needs.sh
5926
5927 DEVICE DIRECT ACCESS (DAX)
5928 M:      Dan Williams <dan.j.williams@intel.com>
5929 M:      Vishal Verma <vishal.l.verma@intel.com>
5930 M:      Dave Jiang <dave.jiang@intel.com>
5931 L:      nvdimm@lists.linux.dev
5932 L:      linux-cxl@vger.kernel.org
5933 S:      Supported
5934 F:      drivers/dax/
5935
5936 DEVICE FREQUENCY (DEVFREQ)
5937 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5938 M:      Kyungmin Park <kyungmin.park@samsung.com>
5939 M:      Chanwoo Choi <cw00.choi@samsung.com>
5940 L:      linux-pm@vger.kernel.org
5941 S:      Maintained
5942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5943 F:      Documentation/devicetree/bindings/devfreq/
5944 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5945 F:      drivers/devfreq/
5946 F:      include/linux/devfreq.h
5947 F:      include/trace/events/devfreq.h
5948
5949 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5950 M:      Chanwoo Choi <cw00.choi@samsung.com>
5951 L:      linux-pm@vger.kernel.org
5952 S:      Supported
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5954 F:      Documentation/devicetree/bindings/devfreq/event/
5955 F:      drivers/devfreq/devfreq-event.c
5956 F:      drivers/devfreq/event/
5957 F:      include/dt-bindings/pmu/exynos_ppmu.h
5958 F:      include/linux/devfreq-event.h
5959
5960 DEVICE RESOURCE MANAGEMENT HELPERS
5961 M:      Hans de Goede <hdegoede@redhat.com>
5962 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5963 S:      Maintained
5964 F:      include/linux/devm-helpers.h
5965
5966 DEVICE-MAPPER  (LVM)
5967 M:      Alasdair Kergon <agk@redhat.com>
5968 M:      Mike Snitzer <snitzer@kernel.org>
5969 M:      dm-devel@redhat.com
5970 L:      dm-devel@redhat.com
5971 S:      Maintained
5972 W:      http://sources.redhat.com/dm
5973 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5975 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5976 F:      Documentation/admin-guide/device-mapper/
5977 F:      drivers/md/Kconfig
5978 F:      drivers/md/Makefile
5979 F:      drivers/md/dm*
5980 F:      drivers/md/persistent-data/
5981 F:      include/linux/device-mapper.h
5982 F:      include/linux/dm-*.h
5983 F:      include/uapi/linux/dm-*.h
5984
5985 DEVLINK
5986 M:      Jiri Pirko <jiri@resnulli.us>
5987 L:      netdev@vger.kernel.org
5988 S:      Supported
5989 F:      Documentation/networking/devlink
5990 F:      include/net/devlink.h
5991 F:      include/uapi/linux/devlink.h
5992 F:      net/devlink/
5993
5994 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5995 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5996 L:      kernel@dh-electronics.com
5997 S:      Maintained
5998 F:      arch/arm/boot/dts/imx6*-dhcom-*
5999 F:      arch/arm/boot/dts/imx6*-dhcor-*
6000
6001 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6002 M:      Marek Vasut <marex@denx.de>
6003 L:      kernel@dh-electronics.com
6004 S:      Maintained
6005 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6006 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6007
6008 DIALOG SEMICONDUCTOR DRIVERS
6009 M:      Support Opensource <support.opensource@diasemi.com>
6010 S:      Supported
6011 W:      http://www.dialog-semiconductor.com/products
6012 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6013 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6014 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6015 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6016 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6017 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6018 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6019 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6020 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6021 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6022 F:      Documentation/hwmon/da90??.rst
6023 F:      drivers/gpio/gpio-da90??.c
6024 F:      drivers/hwmon/da90??-hwmon.c
6025 F:      drivers/iio/adc/da91??-*.c
6026 F:      drivers/input/misc/da72??.[ch]
6027 F:      drivers/input/misc/da90??_onkey.c
6028 F:      drivers/input/touchscreen/da9052_tsi.c
6029 F:      drivers/leds/leds-da90??.c
6030 F:      drivers/mfd/da903x.c
6031 F:      drivers/mfd/da90??-*.c
6032 F:      drivers/mfd/da91??-*.c
6033 F:      drivers/pinctrl/pinctrl-da90??.c
6034 F:      drivers/power/supply/da9052-battery.c
6035 F:      drivers/power/supply/da91??-*.c
6036 F:      drivers/regulator/da9???-regulator.[ch]
6037 F:      drivers/regulator/slg51000-regulator.[ch]
6038 F:      drivers/rtc/rtc-da90??.c
6039 F:      drivers/thermal/da90??-thermal.c
6040 F:      drivers/video/backlight/da90??_bl.c
6041 F:      drivers/watchdog/da90??_wdt.c
6042 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6043 F:      include/linux/mfd/da903x.h
6044 F:      include/linux/mfd/da9052/
6045 F:      include/linux/mfd/da9055/
6046 F:      include/linux/mfd/da9062/
6047 F:      include/linux/mfd/da9063/
6048 F:      include/linux/mfd/da9150/
6049 F:      include/linux/regulator/da9211.h
6050 F:      include/sound/da[79]*.h
6051 F:      sound/soc/codecs/da[79]*.[ch]
6052
6053 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6054 M:      William Breathitt Gray <william.gray@linaro.org>
6055 L:      linux-gpio@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/gpio/gpio-gpio-mm.c
6058
6059 DIOLAN U2C-12 I2C DRIVER
6060 M:      Guenter Roeck <linux@roeck-us.net>
6061 L:      linux-i2c@vger.kernel.org
6062 S:      Maintained
6063 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6064
6065 DIRECTORY NOTIFICATION (DNOTIFY)
6066 M:      Jan Kara <jack@suse.cz>
6067 R:      Amir Goldstein <amir73il@gmail.com>
6068 L:      linux-fsdevel@vger.kernel.org
6069 S:      Maintained
6070 F:      Documentation/filesystems/dnotify.rst
6071 F:      fs/notify/dnotify/
6072 F:      include/linux/dnotify.h
6073
6074 DISK GEOMETRY AND PARTITION HANDLING
6075 M:      Andries Brouwer <aeb@cwi.nl>
6076 S:      Maintained
6077 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6078 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6079 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6080
6081 DISKQUOTA
6082 M:      Jan Kara <jack@suse.com>
6083 S:      Maintained
6084 F:      Documentation/filesystems/quota.rst
6085 F:      fs/quota/
6086 F:      include/linux/quota*.h
6087 F:      include/uapi/linux/quota*.h
6088
6089 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6090 M:      Bernie Thompson <bernie@plugable.com>
6091 L:      linux-fbdev@vger.kernel.org
6092 S:      Maintained
6093 W:      http://plugable.com/category/projects/udlfb/
6094 F:      Documentation/fb/udlfb.rst
6095 F:      drivers/video/fbdev/udlfb.c
6096 F:      include/video/udlfb.h
6097
6098 DISTRIBUTED LOCK MANAGER (DLM)
6099 M:      Christine Caulfield <ccaulfie@redhat.com>
6100 M:      David Teigland <teigland@redhat.com>
6101 L:      cluster-devel@redhat.com
6102 S:      Supported
6103 W:      http://sources.redhat.com/cluster/
6104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6105 F:      fs/dlm/
6106
6107 DMA BUFFER SHARING FRAMEWORK
6108 M:      Sumit Semwal <sumit.semwal@linaro.org>
6109 M:      Christian König <christian.koenig@amd.com>
6110 L:      linux-media@vger.kernel.org
6111 L:      dri-devel@lists.freedesktop.org
6112 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6113 S:      Maintained
6114 T:      git git://anongit.freedesktop.org/drm/drm-misc
6115 F:      Documentation/driver-api/dma-buf.rst
6116 F:      drivers/dma-buf/
6117 F:      include/linux/*fence.h
6118 F:      include/linux/dma-buf.h
6119 F:      include/linux/dma-resv.h
6120 K:      \bdma_(?:buf|fence|resv)\b
6121
6122 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6123 M:      Vinod Koul <vkoul@kernel.org>
6124 L:      dmaengine@vger.kernel.org
6125 S:      Maintained
6126 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6128 F:      Documentation/devicetree/bindings/dma/
6129 F:      Documentation/driver-api/dmaengine/
6130 F:      drivers/dma/
6131 F:      include/dt-bindings/dma/
6132 F:      include/linux/dma/
6133 F:      include/linux/dmaengine.h
6134 F:      include/linux/of_dma.h
6135
6136 DMA MAPPING HELPERS
6137 M:      Christoph Hellwig <hch@lst.de>
6138 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6139 R:      Robin Murphy <robin.murphy@arm.com>
6140 L:      iommu@lists.linux.dev
6141 S:      Supported
6142 W:      http://git.infradead.org/users/hch/dma-mapping.git
6143 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6144 F:      include/asm-generic/dma-mapping.h
6145 F:      include/linux/dma-direct.h
6146 F:      include/linux/dma-mapping.h
6147 F:      include/linux/dma-map-ops.h
6148 F:      include/linux/swiotlb.h
6149 F:      kernel/dma/
6150
6151 DMA MAPPING BENCHMARK
6152 M:      Xiang Chen <chenxiang66@hisilicon.com>
6153 L:      iommu@lists.linux.dev
6154 F:      kernel/dma/map_benchmark.c
6155 F:      tools/testing/selftests/dma/
6156
6157 DMA-BUF HEAPS FRAMEWORK
6158 M:      Sumit Semwal <sumit.semwal@linaro.org>
6159 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6160 R:      Liam Mark <lmark@codeaurora.org>
6161 R:      Laura Abbott <labbott@redhat.com>
6162 R:      Brian Starkey <Brian.Starkey@arm.com>
6163 R:      John Stultz <jstultz@google.com>
6164 L:      linux-media@vger.kernel.org
6165 L:      dri-devel@lists.freedesktop.org
6166 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6167 S:      Maintained
6168 T:      git git://anongit.freedesktop.org/drm/drm-misc
6169 F:      drivers/dma-buf/dma-heap.c
6170 F:      drivers/dma-buf/heaps/*
6171 F:      include/linux/dma-heap.h
6172 F:      include/uapi/linux/dma-heap.h
6173
6174 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6175 M:      Lukasz Luba <lukasz.luba@arm.com>
6176 L:      linux-pm@vger.kernel.org
6177 L:      linux-samsung-soc@vger.kernel.org
6178 S:      Maintained
6179 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6180 F:      drivers/memory/samsung/exynos5422-dmc.c
6181
6182 DME1737 HARDWARE MONITOR DRIVER
6183 M:      Juerg Haefliger <juergh@proton.me>
6184 L:      linux-hwmon@vger.kernel.org
6185 S:      Maintained
6186 F:      Documentation/hwmon/dme1737.rst
6187 F:      drivers/hwmon/dme1737.c
6188
6189 DMI/SMBIOS SUPPORT
6190 M:      Jean Delvare <jdelvare@suse.com>
6191 S:      Maintained
6192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6193 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6194 F:      drivers/firmware/dmi-id.c
6195 F:      drivers/firmware/dmi_scan.c
6196 F:      include/linux/dmi.h
6197
6198 DOCUMENTATION
6199 M:      Jonathan Corbet <corbet@lwn.net>
6200 L:      linux-doc@vger.kernel.org
6201 S:      Maintained
6202 P:      Documentation/doc-guide/maintainer-profile.rst
6203 T:      git git://git.lwn.net/linux.git docs-next
6204 F:      Documentation/
6205 F:      scripts/documentation-file-ref-check
6206 F:      scripts/kernel-doc
6207 F:      scripts/sphinx-pre-install
6208 X:      Documentation/ABI/
6209 X:      Documentation/admin-guide/media/
6210 X:      Documentation/devicetree/
6211 X:      Documentation/driver-api/media/
6212 X:      Documentation/firmware-guide/acpi/
6213 X:      Documentation/i2c/
6214 X:      Documentation/power/
6215 X:      Documentation/spi/
6216 X:      Documentation/userspace-api/media/
6217
6218 DOCUMENTATION REPORTING ISSUES
6219 M:      Thorsten Leemhuis <linux@leemhuis.info>
6220 L:      linux-doc@vger.kernel.org
6221 S:      Maintained
6222 F:      Documentation/admin-guide/quickly-build-trimmed-linux.rst
6223 F:      Documentation/admin-guide/reporting-issues.rst
6224
6225 DOCUMENTATION SCRIPTS
6226 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6227 L:      linux-doc@vger.kernel.org
6228 S:      Maintained
6229 F:      Documentation/sphinx/parse-headers.pl
6230 F:      scripts/documentation-file-ref-check
6231 F:      scripts/sphinx-pre-install
6232
6233 DOCUMENTATION/ITALIAN
6234 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6235 L:      linux-doc@vger.kernel.org
6236 S:      Maintained
6237 F:      Documentation/translations/it_IT
6238
6239 DOCUMENTATION/JAPANESE
6240 R:      Akira Yokosawa <akiyks@gmail.com>
6241 L:      linux-doc@vger.kernel.org
6242 S:      Maintained
6243 F:      Documentation/translations/ja_JP
6244
6245 DONGWOON DW9714 LENS VOICE COIL DRIVER
6246 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6247 L:      linux-media@vger.kernel.org
6248 S:      Maintained
6249 T:      git git://linuxtv.org/media_tree.git
6250 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6251 F:      drivers/media/i2c/dw9714.c
6252
6253 DONGWOON DW9768 LENS VOICE COIL DRIVER
6254 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6255 L:      linux-media@vger.kernel.org
6256 S:      Maintained
6257 T:      git git://linuxtv.org/media_tree.git
6258 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6259 F:      drivers/media/i2c/dw9768.c
6260
6261 DONGWOON DW9807 LENS VOICE COIL DRIVER
6262 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6263 L:      linux-media@vger.kernel.org
6264 S:      Maintained
6265 T:      git git://linuxtv.org/media_tree.git
6266 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6267 F:      drivers/media/i2c/dw9807-vcm.c
6268
6269 DOUBLETALK DRIVER
6270 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6271 L:      blinux-list@redhat.com
6272 S:      Maintained
6273 F:      drivers/char/dtlk.c
6274 F:      include/linux/dtlk.h
6275
6276 DPAA2 DATAPATH I/O (DPIO) DRIVER
6277 M:      Roy Pledge <Roy.Pledge@nxp.com>
6278 L:      linux-kernel@vger.kernel.org
6279 S:      Maintained
6280 F:      drivers/soc/fsl/dpio
6281
6282 DPAA2 ETHERNET DRIVER
6283 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6284 L:      netdev@vger.kernel.org
6285 S:      Maintained
6286 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6287 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6288 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6289 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6290 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6291 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6292 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6293 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6294 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6295 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6296
6297 DPAA2 ETHERNET SWITCH DRIVER
6298 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6299 L:      netdev@vger.kernel.org
6300 S:      Maintained
6301 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6302 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6303 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6304
6305 DRBD DRIVER
6306 M:      Philipp Reisner <philipp.reisner@linbit.com>
6307 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6308 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6309 L:      drbd-dev@lists.linbit.com
6310 S:      Supported
6311 W:      http://www.drbd.org
6312 T:      git git://git.linbit.com/linux-drbd.git
6313 T:      git git://git.linbit.com/drbd-8.4.git
6314 F:      Documentation/admin-guide/blockdev/
6315 F:      drivers/block/drbd/
6316 F:      include/linux/drbd*
6317 F:      lib/lru_cache.c
6318
6319 DRIVER COMPONENT FRAMEWORK
6320 L:      dri-devel@lists.freedesktop.org
6321 F:      drivers/base/component.c
6322 F:      include/linux/component.h
6323
6324 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6325 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6326 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6327 S:      Supported
6328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6329 F:      Documentation/core-api/kobject.rst
6330 F:      drivers/base/
6331 F:      fs/debugfs/
6332 F:      fs/sysfs/
6333 F:      include/linux/debugfs.h
6334 F:      include/linux/kobj*
6335 F:      lib/kobj*
6336
6337 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6338 M:      Nishanth Menon <nm@ti.com>
6339 L:      linux-pm@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/soc/ti/smartreflex.c
6342 F:      include/linux/power/smartreflex.h
6343
6344 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6345 M:      Maxime Ripard <mripard@kernel.org>
6346 M:      Chen-Yu Tsai <wens@csie.org>
6347 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Supported
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/sun4i/sun8i*
6352
6353 DRM DRIVER FOR ARM PL111 CLCD
6354 M:      Emma Anholt <emma@anholt.net>
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      drivers/gpu/drm/pl111/
6358
6359 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6360 M:      Linus Walleij <linus.walleij@linaro.org>
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6364 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6365
6366 DRM DRIVER FOR ASPEED BMC GFX
6367 M:      Joel Stanley <joel@jms.id.au>
6368 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6369 S:      Supported
6370 T:      git git://anongit.freedesktop.org/drm/drm-misc
6371 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6372 F:      drivers/gpu/drm/aspeed/
6373
6374 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6375 M:      Dave Airlie <airlied@redhat.com>
6376 R:      Thomas Zimmermann <tzimmermann@suse.de>
6377 L:      dri-devel@lists.freedesktop.org
6378 S:      Supported
6379 T:      git git://anongit.freedesktop.org/drm/drm-misc
6380 F:      drivers/gpu/drm/ast/
6381
6382 DRM DRIVER FOR BOCHS VIRTUAL GPU
6383 M:      Gerd Hoffmann <kraxel@redhat.com>
6384 L:      virtualization@lists.linux-foundation.org
6385 S:      Maintained
6386 T:      git git://anongit.freedesktop.org/drm/drm-misc
6387 F:      drivers/gpu/drm/tiny/bochs.c
6388
6389 DRM DRIVER FOR BOE HIMAX8279D PANELS
6390 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6391 S:      Maintained
6392 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6393 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6394
6395 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6396 M:      Jagan Teki <jagan@amarulasolutions.com>
6397 S:      Maintained
6398 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6399 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6400
6401 DRM DRIVER FOR EBBG FT8719 PANEL
6402 M:      Joel Selvaraj <jo@jsfamily.in>
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6406 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6407
6408 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6409 M:      Linus Walleij <linus.walleij@linaro.org>
6410 S:      Maintained
6411 T:      git git://anongit.freedesktop.org/drm/drm-misc
6412 F:      drivers/gpu/drm/tve200/
6413
6414 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6415 M:      Icenowy Zheng <icenowy@aosc.io>
6416 S:      Maintained
6417 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6418 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6419
6420 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6421 M:      Jagan Teki <jagan@amarulasolutions.com>
6422 S:      Maintained
6423 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6424 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6425
6426 DRM DRIVER FOR GENERIC EDP PANELS
6427 R:      Douglas Anderson <dianders@chromium.org>
6428 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6429 F:      drivers/gpu/drm/panel/panel-edp.c
6430
6431 DRM DRIVER FOR GENERIC USB DISPLAY
6432 M:      Noralf Trønnes <noralf@tronnes.org>
6433 S:      Maintained
6434 W:      https://github.com/notro/gud/wiki
6435 T:      git git://anongit.freedesktop.org/drm/drm-misc
6436 F:      drivers/gpu/drm/gud/
6437 F:      include/drm/gud.h
6438
6439 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6440 M:      Hans de Goede <hdegoede@redhat.com>
6441 S:      Maintained
6442 T:      git git://anongit.freedesktop.org/drm/drm-misc
6443 F:      drivers/gpu/drm/tiny/gm12u320.c
6444
6445 DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
6446 M:      Ondrej Jirman <megi@xff.cz>
6447 M:      Javier Martinez Canillas <javierm@redhat.com>
6448 S:      Maintained
6449 T:      git git://anongit.freedesktop.org/drm/drm-misc
6450 F:      Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
6451 F:      drivers/gpu/drm/panel/panel-himax-hx8394.c
6452
6453 DRM DRIVER FOR HX8357D PANELS
6454 M:      Emma Anholt <emma@anholt.net>
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6458 F:      drivers/gpu/drm/tiny/hx8357d.c
6459
6460 DRM DRIVER FOR ILITEK ILI9225 PANELS
6461 M:      David Lechner <david@lechnology.com>
6462 S:      Maintained
6463 T:      git git://anongit.freedesktop.org/drm/drm-misc
6464 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6465 F:      drivers/gpu/drm/tiny/ili9225.c
6466
6467 DRM DRIVER FOR ILITEK ILI9486 PANELS
6468 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6469 S:      Maintained
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6472 F:      drivers/gpu/drm/tiny/ili9486.c
6473
6474 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6475 M:      Jagan Teki <jagan@edgeble.ai>
6476 S:      Maintained
6477 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6478 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6479
6480 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6481 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6482 S:      Supported
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      drivers/gpu/drm/logicvc/
6485
6486 DRM DRIVER FOR LVDS PANELS
6487 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6488 L:      dri-devel@lists.freedesktop.org
6489 T:      git git://anongit.freedesktop.org/drm/drm-misc
6490 S:      Maintained
6491 F:      drivers/gpu/drm/panel/panel-lvds.c
6492 F:      Documentation/devicetree/bindings/display/lvds.yaml
6493 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6494
6495 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6496 M:      Guido Günther <agx@sigxcpu.org>
6497 R:      Purism Kernel Team <kernel@puri.sm>
6498 S:      Maintained
6499 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6500 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6501
6502 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6503 M:      Dave Airlie <airlied@redhat.com>
6504 R:      Thomas Zimmermann <tzimmermann@suse.de>
6505 L:      dri-devel@lists.freedesktop.org
6506 S:      Supported
6507 T:      git git://anongit.freedesktop.org/drm/drm-misc
6508 F:      drivers/gpu/drm/mgag200/
6509
6510 DRM DRIVER FOR MI0283QT
6511 M:      Noralf Trønnes <noralf@tronnes.org>
6512 S:      Maintained
6513 T:      git git://anongit.freedesktop.org/drm/drm-misc
6514 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6515 F:      drivers/gpu/drm/tiny/mi0283qt.c
6516
6517 DRM DRIVER FOR MIPI DBI compatible panels
6518 M:      Noralf Trønnes <noralf@tronnes.org>
6519 S:      Maintained
6520 W:      https://github.com/notro/panel-mipi-dbi/wiki
6521 T:      git git://anongit.freedesktop.org/drm/drm-misc
6522 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6523 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6524
6525 DRM DRIVER FOR MSM ADRENO GPU
6526 M:      Rob Clark <robdclark@gmail.com>
6527 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6528 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6529 R:      Sean Paul <sean@poorly.run>
6530 L:      linux-arm-msm@vger.kernel.org
6531 L:      dri-devel@lists.freedesktop.org
6532 L:      freedreno@lists.freedesktop.org
6533 S:      Maintained
6534 B:      https://gitlab.freedesktop.org/drm/msm/-/issues
6535 T:      git https://gitlab.freedesktop.org/drm/msm.git
6536 F:      Documentation/devicetree/bindings/display/msm/
6537 F:      drivers/gpu/drm/msm/
6538 F:      include/uapi/drm/msm_drm.h
6539
6540 DRM DRIVER FOR NOVATEK NT35510 PANELS
6541 M:      Linus Walleij <linus.walleij@linaro.org>
6542 S:      Maintained
6543 T:      git git://anongit.freedesktop.org/drm/drm-misc
6544 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6545 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6546
6547 DRM DRIVER FOR NOVATEK NT35560 PANELS
6548 M:      Linus Walleij <linus.walleij@linaro.org>
6549 S:      Maintained
6550 T:      git git://anongit.freedesktop.org/drm/drm-misc
6551 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6552 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6553
6554 DRM DRIVER FOR NOVATEK NT36523 PANELS
6555 M:      Jianhua Lu <lujianhua000@gmail.com>
6556 S:      Maintained
6557 T:      git git://anongit.freedesktop.org/drm/drm-misc
6558 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
6559 F:      drivers/gpu/drm/panel/panel-novatek-nt36523.c
6560
6561 DRM DRIVER FOR NOVATEK NT36672A PANELS
6562 M:      Sumit Semwal <sumit.semwal@linaro.org>
6563 S:      Maintained
6564 T:      git git://anongit.freedesktop.org/drm/drm-misc
6565 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6566 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6567
6568 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6569 M:      Ben Skeggs <bskeggs@redhat.com>
6570 M:      Karol Herbst <kherbst@redhat.com>
6571 M:      Lyude Paul <lyude@redhat.com>
6572 L:      dri-devel@lists.freedesktop.org
6573 L:      nouveau@lists.freedesktop.org
6574 S:      Supported
6575 W:      https://nouveau.freedesktop.org/
6576 Q:      https://patchwork.freedesktop.org/project/nouveau/
6577 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6578 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6579 C:      irc://irc.oftc.net/nouveau
6580 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6581 F:      drivers/gpu/drm/nouveau/
6582 F:      include/uapi/drm/nouveau_drm.h
6583
6584 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6585 M:      Stefan Mavrodiev <stefan@olimex.com>
6586 S:      Maintained
6587 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6588 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6589
6590 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6591 R:      Douglas Anderson <dianders@chromium.org>
6592 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6593 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6594
6595 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6596 M:      Noralf Trønnes <noralf@tronnes.org>
6597 S:      Maintained
6598 T:      git git://anongit.freedesktop.org/drm/drm-misc
6599 F:      Documentation/devicetree/bindings/display/repaper.txt
6600 F:      drivers/gpu/drm/tiny/repaper.c
6601
6602 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6603 M:      Javier Martinez Canillas <javierm@redhat.com>
6604 S:      Maintained
6605 T:      git git://anongit.freedesktop.org/drm/drm-misc
6606 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6607 F:      drivers/gpu/drm/solomon/ssd130x*
6608
6609 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6610 M:      Dave Airlie <airlied@redhat.com>
6611 M:      Gerd Hoffmann <kraxel@redhat.com>
6612 L:      virtualization@lists.linux-foundation.org
6613 S:      Obsolete
6614 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6615 T:      git git://anongit.freedesktop.org/drm/drm-misc
6616 F:      drivers/gpu/drm/tiny/cirrus.c
6617
6618 DRM DRIVER FOR QXL VIRTUAL GPU
6619 M:      Dave Airlie <airlied@redhat.com>
6620 M:      Gerd Hoffmann <kraxel@redhat.com>
6621 L:      virtualization@lists.linux-foundation.org
6622 L:      spice-devel@lists.freedesktop.org
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/qxl/
6626 F:      include/uapi/drm/qxl_drm.h
6627
6628 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6629 M:      Robert Chiras <robert.chiras@nxp.com>
6630 S:      Maintained
6631 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6632 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6633
6634 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6635 M:      Linus Walleij <linus.walleij@linaro.org>
6636 S:      Maintained
6637 T:      git git://anongit.freedesktop.org/drm/drm-misc
6638 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6639 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6640
6641 DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
6642 M:      Inki Dae <inki.dae@samsung.com>
6643 M:      Jagan Teki <jagan@amarulasolutions.com>
6644 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6645 S:      Maintained
6646 T:      git git://anongit.freedesktop.org/drm/drm-misc
6647 F:      Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
6648 F:      drivers/gpu/drm/bridge/samsung-dsim.c
6649 F:      include/drm/bridge/samsung-dsim.h
6650
6651 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6652 M:      Markuss Broks <markuss.broks@gmail.com>
6653 S:      Maintained
6654 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6655 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6656
6657 DRM DRIVER FOR SITRONIX ST7703 PANELS
6658 M:      Guido Günther <agx@sigxcpu.org>
6659 R:      Purism Kernel Team <kernel@puri.sm>
6660 R:      Ondrej Jirman <megous@megous.com>
6661 S:      Maintained
6662 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6663 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6664
6665 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6666 M:      Thomas Zimmermann <tzimmermann@suse.de>
6667 M:      Javier Martinez Canillas <javierm@redhat.com>
6668 L:      dri-devel@lists.freedesktop.org
6669 S:      Maintained
6670 T:      git git://anongit.freedesktop.org/drm/drm-misc
6671 F:      drivers/gpu/drm/drm_aperture.c
6672 F:      drivers/gpu/drm/tiny/ofdrm.c
6673 F:      drivers/gpu/drm/tiny/simpledrm.c
6674 F:      drivers/video/aperture.c
6675 F:      drivers/video/nomodeset.c
6676 F:      include/drm/drm_aperture.h
6677 F:      include/linux/aperture.h
6678 F:      include/video/nomodeset.h
6679
6680 DRM DRIVER FOR SITRONIX ST7586 PANELS
6681 M:      David Lechner <david@lechnology.com>
6682 S:      Maintained
6683 T:      git git://anongit.freedesktop.org/drm/drm-misc
6684 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6685 F:      drivers/gpu/drm/tiny/st7586.c
6686
6687 DRM DRIVER FOR SITRONIX ST7701 PANELS
6688 M:      Jagan Teki <jagan@amarulasolutions.com>
6689 S:      Maintained
6690 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6691 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6692
6693 DRM DRIVER FOR SITRONIX ST7735R PANELS
6694 M:      David Lechner <david@lechnology.com>
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6698 F:      drivers/gpu/drm/tiny/st7735r.c
6699
6700 DRM DRIVER FOR ST-ERICSSON MCDE
6701 M:      Linus Walleij <linus.walleij@linaro.org>
6702 S:      Maintained
6703 T:      git git://anongit.freedesktop.org/drm/drm-misc
6704 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6705 F:      drivers/gpu/drm/mcde/
6706
6707 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6708 M:      Jagan Teki <jagan@amarulasolutions.com>
6709 S:      Maintained
6710 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6711 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6712
6713 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6714 R:      Douglas Anderson <dianders@chromium.org>
6715 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6716 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6717
6718 DRM DRIVER FOR TPO TPG110 PANELS
6719 M:      Linus Walleij <linus.walleij@linaro.org>
6720 S:      Maintained
6721 T:      git git://anongit.freedesktop.org/drm/drm-misc
6722 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6723 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6724
6725 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6726 M:      Dave Airlie <airlied@redhat.com>
6727 R:      Sean Paul <sean@poorly.run>
6728 R:      Thomas Zimmermann <tzimmermann@suse.de>
6729 L:      dri-devel@lists.freedesktop.org
6730 S:      Supported
6731 T:      git git://anongit.freedesktop.org/drm/drm-misc
6732 F:      drivers/gpu/drm/udl/
6733
6734 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6735 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6736 M:      Melissa Wen <melissa.srw@gmail.com>
6737 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6738 R:      Daniel Vetter <daniel@ffwll.ch>
6739 L:      dri-devel@lists.freedesktop.org
6740 S:      Maintained
6741 T:      git git://anongit.freedesktop.org/drm/drm-misc
6742 F:      Documentation/gpu/vkms.rst
6743 F:      drivers/gpu/drm/vkms/
6744
6745 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6746 M:      Hans de Goede <hdegoede@redhat.com>
6747 L:      dri-devel@lists.freedesktop.org
6748 S:      Maintained
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      drivers/gpu/drm/vboxvideo/
6751
6752 DRM DRIVER FOR VMWARE VIRTUAL GPU
6753 M:      Zack Rusin <zackr@vmware.com>
6754 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6755 L:      dri-devel@lists.freedesktop.org
6756 S:      Supported
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      drivers/gpu/drm/vmwgfx/
6759 F:      include/uapi/drm/vmwgfx_drm.h
6760
6761 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6762 M:      Linus Walleij <linus.walleij@linaro.org>
6763 S:      Maintained
6764 T:      git git://anongit.freedesktop.org/drm/drm-misc
6765 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6766 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6767
6768 DRM DRIVERS
6769 M:      David Airlie <airlied@gmail.com>
6770 M:      Daniel Vetter <daniel@ffwll.ch>
6771 L:      dri-devel@lists.freedesktop.org
6772 S:      Maintained
6773 B:      https://gitlab.freedesktop.org/drm
6774 C:      irc://irc.oftc.net/dri-devel
6775 T:      git git://anongit.freedesktop.org/drm/drm
6776 F:      Documentation/devicetree/bindings/display/
6777 F:      Documentation/devicetree/bindings/gpu/
6778 F:      Documentation/gpu/
6779 F:      drivers/gpu/
6780 F:      include/drm/
6781 F:      include/linux/vga*
6782 F:      include/uapi/drm/
6783
6784 DRM DRIVERS AND MISC GPU PATCHES
6785 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6786 M:      Maxime Ripard <mripard@kernel.org>
6787 M:      Thomas Zimmermann <tzimmermann@suse.de>
6788 S:      Maintained
6789 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6790 T:      git git://anongit.freedesktop.org/drm/drm-misc
6791 F:      Documentation/gpu/
6792 F:      drivers/gpu/drm/*
6793 F:      drivers/gpu/vga/
6794 F:      include/drm/drm*
6795 F:      include/linux/vga*
6796 F:      include/uapi/drm/drm*
6797
6798 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6799 M:      Oded Gabbay <ogabbay@kernel.org>
6800 L:      dri-devel@lists.freedesktop.org
6801 S:      Maintained
6802 C:      irc://irc.oftc.net/dri-devel
6803 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6804 F:      Documentation/accel/
6805 F:      drivers/accel/
6806 F:      include/drm/drm_accel.h
6807
6808 DRM ACCEL DRIVERS FOR INTEL VPU
6809 M:      Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
6810 M:      Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
6811 L:      dri-devel@lists.freedesktop.org
6812 S:      Supported
6813 T:      git git://anongit.freedesktop.org/drm/drm-misc
6814 F:      drivers/accel/ivpu/
6815 F:      include/uapi/drm/ivpu_accel.h
6816
6817 DRM DRIVERS FOR ALLWINNER A10
6818 M:      Maxime Ripard <mripard@kernel.org>
6819 M:      Chen-Yu Tsai <wens@csie.org>
6820 L:      dri-devel@lists.freedesktop.org
6821 S:      Supported
6822 T:      git git://anongit.freedesktop.org/drm/drm-misc
6823 F:      Documentation/devicetree/bindings/display/allwinner*
6824 F:      drivers/gpu/drm/sun4i/
6825
6826 DRM DRIVERS FOR AMLOGIC SOCS
6827 M:      Neil Armstrong <neil.armstrong@linaro.org>
6828 L:      dri-devel@lists.freedesktop.org
6829 L:      linux-amlogic@lists.infradead.org
6830 S:      Supported
6831 W:      http://linux-meson.com/
6832 T:      git git://anongit.freedesktop.org/drm/drm-misc
6833 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6834 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6835 F:      Documentation/gpu/meson.rst
6836 F:      drivers/gpu/drm/meson/
6837
6838 DRM DRIVERS FOR ATMEL HLCDC
6839 M:      Sam Ravnborg <sam@ravnborg.org>
6840 M:      Boris Brezillon <bbrezillon@kernel.org>
6841 L:      dri-devel@lists.freedesktop.org
6842 S:      Supported
6843 T:      git git://anongit.freedesktop.org/drm/drm-misc
6844 F:      Documentation/devicetree/bindings/display/atmel/
6845 F:      drivers/gpu/drm/atmel-hlcdc/
6846
6847 DRM DRIVERS FOR BRIDGE CHIPS
6848 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6849 M:      Neil Armstrong <neil.armstrong@linaro.org>
6850 M:      Robert Foss <rfoss@kernel.org>
6851 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6852 R:      Jonas Karlman <jonas@kwiboo.se>
6853 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6854 S:      Maintained
6855 T:      git git://anongit.freedesktop.org/drm/drm-misc
6856 F:      Documentation/devicetree/bindings/display/bridge/
6857 F:      drivers/gpu/drm/bridge/
6858 F:      include/drm/drm_bridge.h
6859
6860 DRM DRIVERS FOR EXYNOS
6861 M:      Inki Dae <inki.dae@samsung.com>
6862 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6863 M:      Kyungmin Park <kyungmin.park@samsung.com>
6864 L:      dri-devel@lists.freedesktop.org
6865 S:      Supported
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6867 F:      Documentation/devicetree/bindings/display/exynos/
6868 F:      Documentation/devicetree/bindings/display/samsung/
6869 F:      drivers/gpu/drm/exynos/
6870 F:      include/uapi/drm/exynos_drm.h
6871
6872 DRM DRIVERS FOR FREESCALE DCU
6873 M:      Stefan Agner <stefan@agner.ch>
6874 M:      Alison Wang <alison.wang@nxp.com>
6875 L:      dri-devel@lists.freedesktop.org
6876 S:      Supported
6877 T:      git git://anongit.freedesktop.org/drm/drm-misc
6878 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6879 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6880 F:      drivers/gpu/drm/fsl-dcu/
6881
6882 DRM DRIVERS FOR FREESCALE IMX
6883 M:      Philipp Zabel <p.zabel@pengutronix.de>
6884 L:      dri-devel@lists.freedesktop.org
6885 S:      Maintained
6886 F:      Documentation/devicetree/bindings/display/imx/
6887 F:      drivers/gpu/drm/imx/ipuv3/
6888 F:      drivers/gpu/ipu-v3/
6889
6890 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6891 M:      Liu Ying <victor.liu@nxp.com>
6892 L:      dri-devel@lists.freedesktop.org
6893 S:      Maintained
6894 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6895 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6896 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6897 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6898 F:      drivers/gpu/drm/bridge/imx/
6899
6900 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6901 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6902 L:      dri-devel@lists.freedesktop.org
6903 S:      Maintained
6904 T:      git git://github.com/patjak/drm-gma500
6905 F:      drivers/gpu/drm/gma500/
6906
6907 DRM DRIVERS FOR HISILICON
6908 M:      Xinliang Liu <xinliang.liu@linaro.org>
6909 M:      Tian Tao  <tiantao6@hisilicon.com>
6910 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6911 R:      Sumit Semwal <sumit.semwal@linaro.org>
6912 R:      Yongqin Liu <yongqin.liu@linaro.org>
6913 R:      John Stultz <jstultz@google.com>
6914 L:      dri-devel@lists.freedesktop.org
6915 S:      Maintained
6916 T:      git git://anongit.freedesktop.org/drm/drm-misc
6917 F:      Documentation/devicetree/bindings/display/hisilicon/
6918 F:      drivers/gpu/drm/hisilicon/
6919
6920 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6921 M:      Deepak Rawat <drawat.floss@gmail.com>
6922 L:      linux-hyperv@vger.kernel.org
6923 L:      dri-devel@lists.freedesktop.org
6924 S:      Maintained
6925 T:      git git://anongit.freedesktop.org/drm/drm-misc
6926 F:      drivers/gpu/drm/hyperv
6927
6928 DRM DRIVERS FOR LIMA
6929 M:      Qiang Yu <yuq825@gmail.com>
6930 L:      dri-devel@lists.freedesktop.org
6931 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      drivers/gpu/drm/lima/
6935 F:      include/uapi/drm/lima_drm.h
6936
6937 DRM DRIVERS FOR MEDIATEK
6938 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6939 M:      Philipp Zabel <p.zabel@pengutronix.de>
6940 L:      dri-devel@lists.freedesktop.org
6941 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6942 S:      Supported
6943 F:      Documentation/devicetree/bindings/display/mediatek/
6944 F:      drivers/gpu/drm/mediatek/
6945 F:      drivers/phy/mediatek/phy-mtk-dp.c
6946 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6947 F:      drivers/phy/mediatek/phy-mtk-mipi*
6948
6949 DRM DRIVERS FOR NVIDIA TEGRA
6950 M:      Thierry Reding <thierry.reding@gmail.com>
6951 M:      Mikko Perttunen <mperttunen@nvidia.com>
6952 L:      dri-devel@lists.freedesktop.org
6953 L:      linux-tegra@vger.kernel.org
6954 S:      Supported
6955 T:      git https://gitlab.freedesktop.org/drm/tegra.git
6956 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6957 F:      Documentation/devicetree/bindings/gpu/host1x/
6958 F:      drivers/gpu/drm/tegra/
6959 F:      drivers/gpu/host1x/
6960 F:      include/linux/host1x.h
6961 F:      include/uapi/drm/tegra_drm.h
6962
6963 DRM DRIVERS FOR RENESAS
6964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6965 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6966 L:      dri-devel@lists.freedesktop.org
6967 L:      linux-renesas-soc@vger.kernel.org
6968 S:      Supported
6969 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6970 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6971 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6972 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6973 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6974 F:      drivers/gpu/drm/rcar-du/
6975 F:      drivers/gpu/drm/shmobile/
6976 F:      include/linux/platform_data/shmob_drm.h
6977
6978 DRM DRIVERS FOR ROCKCHIP
6979 M:      Sandy Huang <hjc@rock-chips.com>
6980 M:      Heiko Stübner <heiko@sntech.de>
6981 L:      dri-devel@lists.freedesktop.org
6982 S:      Maintained
6983 T:      git git://anongit.freedesktop.org/drm/drm-misc
6984 F:      Documentation/devicetree/bindings/display/rockchip/
6985 F:      drivers/gpu/drm/rockchip/
6986
6987 DRM DRIVERS FOR STI
6988 M:      Alain Volmat <alain.volmat@foss.st.com>
6989 L:      dri-devel@lists.freedesktop.org
6990 S:      Maintained
6991 T:      git git://anongit.freedesktop.org/drm/drm-misc
6992 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6993 F:      drivers/gpu/drm/sti
6994
6995 DRM DRIVERS FOR STM
6996 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6997 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6998 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6999 L:      dri-devel@lists.freedesktop.org
7000 S:      Maintained
7001 T:      git git://anongit.freedesktop.org/drm/drm-misc
7002 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7003 F:      drivers/gpu/drm/stm
7004
7005 DRM DRIVERS FOR TI KEYSTONE
7006 M:      Jyri Sarha <jyri.sarha@iki.fi>
7007 M:      Tomi Valkeinen <tomba@kernel.org>
7008 L:      dri-devel@lists.freedesktop.org
7009 S:      Maintained
7010 T:      git git://anongit.freedesktop.org/drm/drm-misc
7011 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7012 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7013 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7014 F:      drivers/gpu/drm/tidss/
7015
7016 DRM DRIVERS FOR TI LCDC
7017 M:      Jyri Sarha <jyri.sarha@iki.fi>
7018 R:      Tomi Valkeinen <tomba@kernel.org>
7019 L:      dri-devel@lists.freedesktop.org
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/display/tilcdc/
7022 F:      drivers/gpu/drm/tilcdc/
7023
7024 DRM DRIVERS FOR TI OMAP
7025 M:      Tomi Valkeinen <tomba@kernel.org>
7026 L:      dri-devel@lists.freedesktop.org
7027 S:      Maintained
7028 F:      Documentation/devicetree/bindings/display/ti/
7029 F:      drivers/gpu/drm/omapdrm/
7030
7031 DRM DRIVERS FOR V3D
7032 M:      Emma Anholt <emma@anholt.net>
7033 M:      Melissa Wen <mwen@igalia.com>
7034 S:      Supported
7035 T:      git git://anongit.freedesktop.org/drm/drm-misc
7036 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7037 F:      drivers/gpu/drm/v3d/
7038 F:      include/uapi/drm/v3d_drm.h
7039
7040 DRM DRIVERS FOR VC4
7041 M:      Emma Anholt <emma@anholt.net>
7042 M:      Maxime Ripard <mripard@kernel.org>
7043 S:      Supported
7044 T:      git git://github.com/anholt/linux
7045 T:      git git://anongit.freedesktop.org/drm/drm-misc
7046 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7047 F:      drivers/gpu/drm/vc4/
7048 F:      include/uapi/drm/vc4_drm.h
7049
7050 DRM DRIVERS FOR VIVANTE GPU IP
7051 M:      Lucas Stach <l.stach@pengutronix.de>
7052 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7053 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7054 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7055 L:      dri-devel@lists.freedesktop.org
7056 S:      Maintained
7057 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7058 F:      drivers/gpu/drm/etnaviv/
7059 F:      include/uapi/drm/etnaviv_drm.h
7060
7061 DRM DRIVERS FOR XEN
7062 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7063 L:      dri-devel@lists.freedesktop.org
7064 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7065 S:      Supported
7066 T:      git git://anongit.freedesktop.org/drm/drm-misc
7067 F:      Documentation/gpu/xen-front.rst
7068 F:      drivers/gpu/drm/xen/
7069
7070 DRM DRIVERS FOR XILINX
7071 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7072 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7073 L:      dri-devel@lists.freedesktop.org
7074 S:      Maintained
7075 T:      git git://anongit.freedesktop.org/drm/drm-misc
7076 F:      Documentation/devicetree/bindings/display/xlnx/
7077 F:      drivers/gpu/drm/xlnx/
7078
7079 DRM PANEL DRIVERS
7080 M:      Neil Armstrong <neil.armstrong@linaro.org>
7081 R:      Sam Ravnborg <sam@ravnborg.org>
7082 L:      dri-devel@lists.freedesktop.org
7083 S:      Maintained
7084 T:      git git://anongit.freedesktop.org/drm/drm-misc
7085 F:      Documentation/devicetree/bindings/display/panel/
7086 F:      drivers/gpu/drm/drm_panel.c
7087 F:      drivers/gpu/drm/panel/
7088 F:      include/drm/drm_panel.h
7089
7090 DRM PRIVACY-SCREEN CLASS
7091 M:      Hans de Goede <hdegoede@redhat.com>
7092 L:      dri-devel@lists.freedesktop.org
7093 S:      Maintained
7094 T:      git git://anongit.freedesktop.org/drm/drm-misc
7095 F:      drivers/gpu/drm/drm_privacy_screen*
7096 F:      include/drm/drm_privacy_screen*
7097
7098 DRM TTM SUBSYSTEM
7099 M:      Christian Koenig <christian.koenig@amd.com>
7100 M:      Huang Rui <ray.huang@amd.com>
7101 L:      dri-devel@lists.freedesktop.org
7102 S:      Maintained
7103 T:      git git://anongit.freedesktop.org/drm/drm-misc
7104 F:      drivers/gpu/drm/ttm/
7105 F:      include/drm/ttm/
7106
7107 DRM GPU SCHEDULER
7108 M:      Luben Tuikov <luben.tuikov@amd.com>
7109 L:      dri-devel@lists.freedesktop.org
7110 S:      Maintained
7111 T:      git git://anongit.freedesktop.org/drm/drm-misc
7112 F:      drivers/gpu/drm/scheduler/
7113 F:      include/drm/gpu_scheduler.h
7114
7115 DSBR100 USB FM RADIO DRIVER
7116 M:      Alexey Klimov <klimov.linux@gmail.com>
7117 L:      linux-media@vger.kernel.org
7118 S:      Maintained
7119 T:      git git://linuxtv.org/media_tree.git
7120 F:      drivers/media/radio/dsbr100.c
7121
7122 DT3155 MEDIA DRIVER
7123 M:      Hans Verkuil <hverkuil@xs4all.nl>
7124 L:      linux-media@vger.kernel.org
7125 S:      Odd Fixes
7126 W:      https://linuxtv.org
7127 T:      git git://linuxtv.org/media_tree.git
7128 F:      drivers/media/pci/dt3155/
7129
7130 DVB_USB_AF9015 MEDIA DRIVER
7131 M:      Antti Palosaari <crope@iki.fi>
7132 L:      linux-media@vger.kernel.org
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://palosaari.fi/linux/
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/anttip/media_tree.git
7138 F:      drivers/media/usb/dvb-usb-v2/af9015*
7139
7140 DVB_USB_AF9035 MEDIA DRIVER
7141 M:      Antti Palosaari <crope@iki.fi>
7142 L:      linux-media@vger.kernel.org
7143 S:      Maintained
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 F:      drivers/media/usb/dvb-usb-v2/af9035*
7149
7150 DVB_USB_ANYSEE MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 W:      http://palosaari.fi/linux/
7156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7157 T:      git git://linuxtv.org/anttip/media_tree.git
7158 F:      drivers/media/usb/dvb-usb-v2/anysee*
7159
7160 DVB_USB_AU6610 MEDIA DRIVER
7161 M:      Antti Palosaari <crope@iki.fi>
7162 L:      linux-media@vger.kernel.org
7163 S:      Maintained
7164 W:      https://linuxtv.org
7165 W:      http://palosaari.fi/linux/
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/au6610*
7169
7170 DVB_USB_CE6230 MEDIA DRIVER
7171 M:      Antti Palosaari <crope@iki.fi>
7172 L:      linux-media@vger.kernel.org
7173 S:      Maintained
7174 W:      https://linuxtv.org
7175 W:      http://palosaari.fi/linux/
7176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7177 T:      git git://linuxtv.org/anttip/media_tree.git
7178 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7179
7180 DVB_USB_CXUSB MEDIA DRIVER
7181 M:      Michael Krufky <mkrufky@linuxtv.org>
7182 L:      linux-media@vger.kernel.org
7183 S:      Maintained
7184 W:      https://linuxtv.org
7185 W:      http://github.com/mkrufky
7186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7187 T:      git git://linuxtv.org/media_tree.git
7188 F:      drivers/media/usb/dvb-usb/cxusb*
7189
7190 DVB_USB_EC168 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/ec168*
7199
7200 DVB_USB_GL861 MEDIA DRIVER
7201 M:      Antti Palosaari <crope@iki.fi>
7202 L:      linux-media@vger.kernel.org
7203 S:      Maintained
7204 W:      https://linuxtv.org
7205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7206 T:      git git://linuxtv.org/anttip/media_tree.git
7207 F:      drivers/media/usb/dvb-usb-v2/gl861*
7208
7209 DVB_USB_MXL111SF MEDIA DRIVER
7210 M:      Michael Krufky <mkrufky@linuxtv.org>
7211 L:      linux-media@vger.kernel.org
7212 S:      Maintained
7213 W:      https://linuxtv.org
7214 W:      http://github.com/mkrufky
7215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7216 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7217 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7218
7219 DVB_USB_RTL28XXU MEDIA DRIVER
7220 M:      Antti Palosaari <crope@iki.fi>
7221 L:      linux-media@vger.kernel.org
7222 S:      Maintained
7223 W:      https://linuxtv.org
7224 W:      http://palosaari.fi/linux/
7225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7226 T:      git git://linuxtv.org/anttip/media_tree.git
7227 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7228
7229 DVB_USB_V2 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/usb/dvb-usb-v2/dvb_usb*
7238 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7239
7240 DYNAMIC DEBUG
7241 M:      Jason Baron <jbaron@akamai.com>
7242 S:      Maintained
7243 F:      include/linux/dynamic_debug.h
7244 F:      lib/dynamic_debug.c
7245 M:      Jim Cromie <jim.cromie@gmail.com>
7246 F:      lib/test_dynamic_debug.c
7247
7248 DYNAMIC INTERRUPT MODERATION
7249 M:      Tal Gilboa <talgi@nvidia.com>
7250 S:      Maintained
7251 F:      Documentation/networking/net_dim.rst
7252 F:      include/linux/dim.h
7253 F:      lib/dim/
7254
7255 DZ DECSTATION DZ11 SERIAL DRIVER
7256 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7257 S:      Maintained
7258 F:      drivers/tty/serial/dz.*
7259
7260 E3X0 POWER BUTTON DRIVER
7261 M:      Moritz Fischer <moritz.fischer@ettus.com>
7262 L:      usrp-users@lists.ettus.com
7263 S:      Supported
7264 W:      http://www.ettus.com
7265 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7266 F:      drivers/input/misc/e3x0-button.c
7267
7268 E4000 MEDIA DRIVER
7269 M:      Antti Palosaari <crope@iki.fi>
7270 L:      linux-media@vger.kernel.org
7271 S:      Maintained
7272 W:      https://linuxtv.org
7273 W:      http://palosaari.fi/linux/
7274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7275 T:      git git://linuxtv.org/anttip/media_tree.git
7276 F:      drivers/media/tuners/e4000*
7277
7278 EARTH_PT1 MEDIA DRIVER
7279 M:      Akihiro Tsukada <tskd08@gmail.com>
7280 L:      linux-media@vger.kernel.org
7281 S:      Odd Fixes
7282 F:      drivers/media/pci/pt1/
7283
7284 EARTH_PT3 MEDIA DRIVER
7285 M:      Akihiro Tsukada <tskd08@gmail.com>
7286 L:      linux-media@vger.kernel.org
7287 S:      Odd Fixes
7288 F:      drivers/media/pci/pt3/
7289
7290 EC100 MEDIA DRIVER
7291 M:      Antti Palosaari <crope@iki.fi>
7292 L:      linux-media@vger.kernel.org
7293 S:      Maintained
7294 W:      https://linuxtv.org
7295 W:      http://palosaari.fi/linux/
7296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7297 T:      git git://linuxtv.org/anttip/media_tree.git
7298 F:      drivers/media/dvb-frontends/ec100*
7299
7300 ECRYPT FILE SYSTEM
7301 M:      Tyler Hicks <code@tyhicks.com>
7302 L:      ecryptfs@vger.kernel.org
7303 S:      Odd Fixes
7304 W:      http://ecryptfs.org
7305 W:      https://launchpad.net/ecryptfs
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7307 F:      Documentation/filesystems/ecryptfs.rst
7308 F:      fs/ecryptfs/
7309
7310 EDAC-AMD64
7311 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7312 L:      linux-edac@vger.kernel.org
7313 S:      Supported
7314 F:      drivers/edac/amd64_edac*
7315 F:      drivers/edac/mce_amd*
7316
7317 EDAC-ARMADA
7318 M:      Jan Luebbe <jlu@pengutronix.de>
7319 L:      linux-edac@vger.kernel.org
7320 S:      Maintained
7321 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7322 F:      drivers/edac/armada_xp_*
7323
7324 EDAC-AST2500
7325 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7326 S:      Supported
7327 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7328 F:      drivers/edac/aspeed_edac.c
7329
7330 EDAC-BLUEFIELD
7331 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7332 S:      Supported
7333 F:      drivers/edac/bluefield_edac.c
7334
7335 EDAC-CALXEDA
7336 M:      Andre Przywara <andre.przywara@arm.com>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/highbank*
7340
7341 EDAC-CAVIUM OCTEON
7342 M:      Ralf Baechle <ralf@linux-mips.org>
7343 L:      linux-edac@vger.kernel.org
7344 L:      linux-mips@vger.kernel.org
7345 S:      Supported
7346 F:      drivers/edac/octeon_edac*
7347
7348 EDAC-CAVIUM THUNDERX
7349 M:      Robert Richter <rric@kernel.org>
7350 L:      linux-edac@vger.kernel.org
7351 S:      Odd Fixes
7352 F:      drivers/edac/thunderx_edac*
7353
7354 EDAC-CORE
7355 M:      Borislav Petkov <bp@alien8.de>
7356 M:      Tony Luck <tony.luck@intel.com>
7357 R:      James Morse <james.morse@arm.com>
7358 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7359 R:      Robert Richter <rric@kernel.org>
7360 L:      linux-edac@vger.kernel.org
7361 S:      Supported
7362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7363 F:      Documentation/admin-guide/ras.rst
7364 F:      Documentation/driver-api/edac.rst
7365 F:      drivers/edac/
7366 F:      include/linux/edac.h
7367
7368 EDAC-DMC520
7369 M:      Lei Wang <lewan@microsoft.com>
7370 L:      linux-edac@vger.kernel.org
7371 S:      Supported
7372 F:      drivers/edac/dmc520_edac.c
7373
7374 EDAC-E752X
7375 M:      Mark Gross <markgross@kernel.org>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/e752x_edac.c
7379
7380 EDAC-E7XXX
7381 L:      linux-edac@vger.kernel.org
7382 S:      Maintained
7383 F:      drivers/edac/e7xxx_edac.c
7384
7385 EDAC-FSL_DDR
7386 M:      York Sun <york.sun@nxp.com>
7387 L:      linux-edac@vger.kernel.org
7388 S:      Maintained
7389 F:      drivers/edac/fsl_ddr_edac.*
7390
7391 EDAC-GHES
7392 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7393 L:      linux-edac@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/edac/ghes_edac.c
7396
7397 EDAC-I10NM
7398 M:      Tony Luck <tony.luck@intel.com>
7399 L:      linux-edac@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/edac/i10nm_base.c
7402
7403 EDAC-I3000
7404 L:      linux-edac@vger.kernel.org
7405 S:      Orphan
7406 F:      drivers/edac/i3000_edac.c
7407
7408 EDAC-I5000
7409 L:      linux-edac@vger.kernel.org
7410 S:      Maintained
7411 F:      drivers/edac/i5000_edac.c
7412
7413 EDAC-I5400
7414 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7415 L:      linux-edac@vger.kernel.org
7416 S:      Maintained
7417 F:      drivers/edac/i5400_edac.c
7418
7419 EDAC-I7300
7420 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7421 L:      linux-edac@vger.kernel.org
7422 S:      Maintained
7423 F:      drivers/edac/i7300_edac.c
7424
7425 EDAC-I7CORE
7426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7427 L:      linux-edac@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/edac/i7core_edac.c
7430
7431 EDAC-I82443BXGX
7432 M:      Tim Small <tim@buttersideup.com>
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/i82443bxgx_edac.c
7436
7437 EDAC-I82975X
7438 M:      "Arvind R." <arvino55@gmail.com>
7439 L:      linux-edac@vger.kernel.org
7440 S:      Maintained
7441 F:      drivers/edac/i82975x_edac.c
7442
7443 EDAC-IE31200
7444 M:      Jason Baron <jbaron@akamai.com>
7445 L:      linux-edac@vger.kernel.org
7446 S:      Maintained
7447 F:      drivers/edac/ie31200_edac.c
7448
7449 EDAC-IGEN6
7450 M:      Tony Luck <tony.luck@intel.com>
7451 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/edac/igen6_edac.c
7455
7456 EDAC-MPC85XX
7457 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7458 L:      linux-edac@vger.kernel.org
7459 S:      Maintained
7460 F:      drivers/edac/mpc85xx_edac.[ch]
7461
7462 EDAC-PASEMI
7463 M:      Egor Martovetsky <egor@pasemi.com>
7464 L:      linux-edac@vger.kernel.org
7465 S:      Maintained
7466 F:      drivers/edac/pasemi_edac.c
7467
7468 EDAC-PND2
7469 M:      Tony Luck <tony.luck@intel.com>
7470 L:      linux-edac@vger.kernel.org
7471 S:      Maintained
7472 F:      drivers/edac/pnd2_edac.[ch]
7473
7474 EDAC-QCOM
7475 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7476 L:      linux-arm-msm@vger.kernel.org
7477 L:      linux-edac@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/edac/qcom_edac.c
7480
7481 EDAC-R82600
7482 M:      Tim Small <tim@buttersideup.com>
7483 L:      linux-edac@vger.kernel.org
7484 S:      Maintained
7485 F:      drivers/edac/r82600_edac.c
7486
7487 EDAC-SBRIDGE
7488 M:      Tony Luck <tony.luck@intel.com>
7489 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7490 L:      linux-edac@vger.kernel.org
7491 S:      Maintained
7492 F:      drivers/edac/sb_edac.c
7493
7494 EDAC-SKYLAKE
7495 M:      Tony Luck <tony.luck@intel.com>
7496 L:      linux-edac@vger.kernel.org
7497 S:      Maintained
7498 F:      drivers/edac/skx_*.[ch]
7499
7500 EDAC-TI
7501 M:      Tero Kristo <kristo@kernel.org>
7502 L:      linux-edac@vger.kernel.org
7503 S:      Odd Fixes
7504 F:      drivers/edac/ti_edac.c
7505
7506 EDIROL UA-101/UA-1000 DRIVER
7507 M:      Clemens Ladisch <clemens@ladisch.de>
7508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7509 S:      Maintained
7510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7511 F:      sound/usb/misc/ua101.c
7512
7513 EFI TEST DRIVER
7514 M:      Ivan Hu <ivan.hu@canonical.com>
7515 M:      Ard Biesheuvel <ardb@kernel.org>
7516 L:      linux-efi@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/firmware/efi/test/
7519
7520 EFI VARIABLE FILESYSTEM
7521 M:      Jeremy Kerr <jk@ozlabs.org>
7522 M:      Ard Biesheuvel <ardb@kernel.org>
7523 L:      linux-efi@vger.kernel.org
7524 S:      Maintained
7525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7526 F:      fs/efivarfs/
7527
7528 EFIFB FRAMEBUFFER DRIVER
7529 M:      Peter Jones <pjones@redhat.com>
7530 L:      linux-fbdev@vger.kernel.org
7531 S:      Maintained
7532 F:      drivers/video/fbdev/efifb.c
7533
7534 EFS FILESYSTEM
7535 S:      Orphan
7536 W:      http://aeschi.ch.eu.org/efs/
7537 F:      fs/efs/
7538
7539 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7540 M:      Douglas Miller <dougmill@linux.ibm.com>
7541 L:      netdev@vger.kernel.org
7542 S:      Maintained
7543 F:      drivers/net/ethernet/ibm/ehea/
7544
7545 ELM327 CAN NETWORK DRIVER
7546 M:      Max Staudt <max@enpas.org>
7547 L:      linux-can@vger.kernel.org
7548 S:      Maintained
7549 F:      Documentation/networking/device_drivers/can/can327.rst
7550 F:      drivers/net/can/can327.c
7551
7552 EM28XX VIDEO4LINUX DRIVER
7553 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7554 L:      linux-media@vger.kernel.org
7555 S:      Maintained
7556 W:      https://linuxtv.org
7557 T:      git git://linuxtv.org/media_tree.git
7558 F:      Documentation/admin-guide/media/em28xx*
7559 F:      drivers/media/usb/em28xx/
7560
7561 EMBEDDED LINUX
7562 M:      Olivia Mackall <olivia@selenic.com>
7563 M:      David Woodhouse <dwmw2@infradead.org>
7564 L:      linux-embedded@vger.kernel.org
7565 S:      Maintained
7566
7567 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7568 M:      Adrian Hunter <adrian.hunter@intel.com>
7569 M:      Ritesh Harjani <riteshh@codeaurora.org>
7570 M:      Asutosh Das <asutoshd@codeaurora.org>
7571 L:      linux-mmc@vger.kernel.org
7572 S:      Supported
7573 F:      drivers/mmc/host/cqhci*
7574
7575 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7576 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7577 L:      linux-scsi@vger.kernel.org
7578 S:      Supported
7579 W:      http://www.broadcom.com
7580 F:      drivers/scsi/be2iscsi/
7581
7582 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7583 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7584 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7585 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7586 L:      netdev@vger.kernel.org
7587 S:      Supported
7588 W:      http://www.emulex.com
7589 F:      drivers/net/ethernet/emulex/benet/
7590
7591 EMULEX ONECONNECT ROCE DRIVER
7592 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7593 L:      linux-rdma@vger.kernel.org
7594 S:      Odd Fixes
7595 W:      http://www.broadcom.com
7596 F:      drivers/infiniband/hw/ocrdma/
7597 F:      include/uapi/rdma/ocrdma-abi.h
7598
7599 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7600 M:      James Smart <james.smart@broadcom.com>
7601 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7602 L:      linux-scsi@vger.kernel.org
7603 S:      Supported
7604 W:      http://www.broadcom.com
7605 F:      drivers/scsi/lpfc/
7606
7607 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7608 M:      James Smart <james.smart@broadcom.com>
7609 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7610 L:      linux-scsi@vger.kernel.org
7611 L:      target-devel@vger.kernel.org
7612 S:      Supported
7613 W:      http://www.broadcom.com
7614 F:      drivers/scsi/elx/
7615
7616 ENE CB710 FLASH CARD READER DRIVER
7617 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7618 S:      Maintained
7619 F:      drivers/misc/cb710/
7620 F:      drivers/mmc/host/cb710-mmc.*
7621 F:      include/linux/cb710.h
7622
7623 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7624 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7625 S:      Maintained
7626 F:      drivers/media/rc/ene_ir.*
7627
7628 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7629 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7630 L:      linuxppc-dev@lists.ozlabs.org
7631 S:      Maintained
7632 F:      drivers/tty/ehv_bytechan.c
7633
7634 EPSON S1D13XXX FRAMEBUFFER DRIVER
7635 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7636 S:      Maintained
7637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7638 F:      drivers/video/fbdev/s1d13xxxfb.c
7639 F:      include/video/s1d13xxxfb.h
7640
7641 EROFS FILE SYSTEM
7642 M:      Gao Xiang <xiang@kernel.org>
7643 M:      Chao Yu <chao@kernel.org>
7644 R:      Yue Hu <huyue2@coolpad.com>
7645 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7646 L:      linux-erofs@lists.ozlabs.org
7647 S:      Maintained
7648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7649 F:      Documentation/ABI/testing/sysfs-fs-erofs
7650 F:      Documentation/filesystems/erofs.rst
7651 F:      fs/erofs/
7652 F:      include/trace/events/erofs.h
7653
7654 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7655 M:      Jeff Layton <jlayton@kernel.org>
7656 S:      Maintained
7657 F:      include/linux/errseq.h
7658 F:      lib/errseq.c
7659
7660 ESD CAN/USB DRIVERS
7661 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7662 R:      socketcan@esd.eu
7663 L:      linux-can@vger.kernel.org
7664 S:      Maintained
7665 F:      drivers/net/can/usb/esd_usb.c
7666
7667 ET131X NETWORK DRIVER
7668 M:      Mark Einon <mark.einon@gmail.com>
7669 S:      Odd Fixes
7670 F:      drivers/net/ethernet/agere/
7671
7672 ETAS ES58X CAN/USB DRIVER
7673 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7674 L:      linux-can@vger.kernel.org
7675 S:      Maintained
7676 F:      Documentation/networking/devlink/etas_es58x.rst
7677 F:      drivers/net/can/usb/etas_es58x/
7678
7679 ETHERNET BRIDGE
7680 M:      Roopa Prabhu <roopa@nvidia.com>
7681 M:      Nikolay Aleksandrov <razor@blackwall.org>
7682 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7683 L:      netdev@vger.kernel.org
7684 S:      Maintained
7685 W:      http://www.linuxfoundation.org/en/Net:Bridge
7686 F:      include/linux/netfilter_bridge/
7687 F:      net/bridge/
7688
7689 ETHERNET PHY LIBRARY
7690 M:      Andrew Lunn <andrew@lunn.ch>
7691 M:      Heiner Kallweit <hkallweit1@gmail.com>
7692 R:      Russell King <linux@armlinux.org.uk>
7693 L:      netdev@vger.kernel.org
7694 S:      Maintained
7695 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7696 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7697 F:      Documentation/devicetree/bindings/net/mdio*
7698 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7699 F:      Documentation/networking/phy.rst
7700 F:      drivers/net/mdio/
7701 F:      drivers/net/mdio/acpi_mdio.c
7702 F:      drivers/net/mdio/fwnode_mdio.c
7703 F:      drivers/net/mdio/of_mdio.c
7704 F:      drivers/net/pcs/
7705 F:      drivers/net/phy/
7706 F:      include/dt-bindings/net/qca-ar803x.h
7707 F:      include/linux/linkmode.h
7708 F:      include/linux/*mdio*.h
7709 F:      include/linux/mdio/*.h
7710 F:      include/linux/mii.h
7711 F:      include/linux/of_net.h
7712 F:      include/linux/phy.h
7713 F:      include/linux/phy_fixed.h
7714 F:      include/linux/platform_data/mdio-bcm-unimac.h
7715 F:      include/linux/platform_data/mdio-gpio.h
7716 F:      include/trace/events/mdio.h
7717 F:      include/uapi/linux/mdio.h
7718 F:      include/uapi/linux/mii.h
7719 F:      net/core/of_net.c
7720
7721 EXEC & BINFMT API
7722 R:      Eric Biederman <ebiederm@xmission.com>
7723 R:      Kees Cook <keescook@chromium.org>
7724 L:      linux-mm@kvack.org
7725 S:      Supported
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7727 F:      fs/*binfmt_*.c
7728 F:      fs/exec.c
7729 F:      include/linux/binfmts.h
7730 F:      include/linux/elf.h
7731 F:      include/uapi/linux/binfmts.h
7732 F:      include/uapi/linux/elf.h
7733 F:      tools/testing/selftests/exec/
7734 N:      asm/elf.h
7735 N:      binfmt
7736
7737 EXFAT FILE SYSTEM
7738 M:      Namjae Jeon <linkinjeon@kernel.org>
7739 M:      Sungjong Seo <sj1557.seo@samsung.com>
7740 L:      linux-fsdevel@vger.kernel.org
7741 S:      Maintained
7742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7743 F:      fs/exfat/
7744
7745 EXT2 FILE SYSTEM
7746 M:      Jan Kara <jack@suse.com>
7747 L:      linux-ext4@vger.kernel.org
7748 S:      Maintained
7749 F:      Documentation/filesystems/ext2.rst
7750 F:      fs/ext2/
7751 F:      include/linux/ext2*
7752
7753 EXT4 FILE SYSTEM
7754 M:      "Theodore Ts'o" <tytso@mit.edu>
7755 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7756 L:      linux-ext4@vger.kernel.org
7757 S:      Maintained
7758 W:      http://ext4.wiki.kernel.org
7759 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7761 F:      Documentation/filesystems/ext4/
7762 F:      fs/ext4/
7763 F:      include/trace/events/ext4.h
7764 F:      include/uapi/linux/ext4.h
7765
7766 Extended Verification Module (EVM)
7767 M:      Mimi Zohar <zohar@linux.ibm.com>
7768 L:      linux-integrity@vger.kernel.org
7769 S:      Supported
7770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7771 F:      security/integrity/evm/
7772 F:      security/integrity/
7773
7774 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7775 M:      Ard Biesheuvel <ardb@kernel.org>
7776 L:      linux-efi@vger.kernel.org
7777 S:      Maintained
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7779 F:      Documentation/admin-guide/efi-stub.rst
7780 F:      arch/*/include/asm/efi.h
7781 F:      arch/*/kernel/efi.c
7782 F:      arch/arm/boot/compressed/efi-header.S
7783 F:      arch/x86/platform/efi/
7784 F:      drivers/firmware/efi/
7785 F:      include/linux/efi*.h
7786
7787 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7788 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7789 M:      Chanwoo Choi <cw00.choi@samsung.com>
7790 L:      linux-kernel@vger.kernel.org
7791 S:      Maintained
7792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7793 F:      Documentation/devicetree/bindings/extcon/
7794 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7795 F:      drivers/extcon/
7796 F:      include/linux/extcon.h
7797 F:      include/linux/extcon/
7798
7799 EXTRA BOOT CONFIG
7800 M:      Masami Hiramatsu <mhiramat@kernel.org>
7801 L:      linux-kernel@vger.kernel.org
7802 L:      linux-trace-kernel@vger.kernel.org
7803 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7804 S:      Maintained
7805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7806 F:      Documentation/admin-guide/bootconfig.rst
7807 F:      fs/proc/bootconfig.c
7808 F:      include/linux/bootconfig.h
7809 F:      lib/bootconfig-data.S
7810 F:      lib/bootconfig.c
7811 F:      tools/bootconfig/*
7812 F:      tools/bootconfig/scripts/*
7813
7814 EXYNOS DP DRIVER
7815 M:      Jingoo Han <jingoohan1@gmail.com>
7816 L:      dri-devel@lists.freedesktop.org
7817 S:      Maintained
7818 F:      drivers/gpu/drm/exynos/exynos_dp*
7819
7820 EXYNOS SYSMMU (IOMMU) driver
7821 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7822 L:      iommu@lists.linux.dev
7823 S:      Maintained
7824 F:      drivers/iommu/exynos-iommu.c
7825
7826 F2FS FILE SYSTEM
7827 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7828 M:      Chao Yu <chao@kernel.org>
7829 L:      linux-f2fs-devel@lists.sourceforge.net
7830 S:      Maintained
7831 W:      https://f2fs.wiki.kernel.org/
7832 Q:      https://patchwork.kernel.org/project/f2fs/list/
7833 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7835 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7836 F:      Documentation/filesystems/f2fs.rst
7837 F:      fs/f2fs/
7838 F:      include/linux/f2fs_fs.h
7839 F:      include/trace/events/f2fs.h
7840 F:      include/uapi/linux/f2fs.h
7841
7842 F71805F HARDWARE MONITORING DRIVER
7843 M:      Jean Delvare <jdelvare@suse.com>
7844 L:      linux-hwmon@vger.kernel.org
7845 S:      Maintained
7846 F:      Documentation/hwmon/f71805f.rst
7847 F:      drivers/hwmon/f71805f.c
7848
7849 FADDR2LINE
7850 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7851 S:      Maintained
7852 F:      scripts/faddr2line
7853
7854 FAILOVER MODULE
7855 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7856 L:      netdev@vger.kernel.org
7857 S:      Supported
7858 F:      Documentation/networking/failover.rst
7859 F:      include/net/failover.h
7860 F:      net/core/failover.c
7861
7862 FANOTIFY
7863 M:      Jan Kara <jack@suse.cz>
7864 R:      Amir Goldstein <amir73il@gmail.com>
7865 R:      Matthew Bobrowski <repnop@google.com>
7866 L:      linux-fsdevel@vger.kernel.org
7867 S:      Maintained
7868 F:      fs/notify/fanotify/
7869 F:      include/linux/fanotify.h
7870 F:      include/uapi/linux/fanotify.h
7871
7872 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7873 M:      Linus Walleij <linus.walleij@linaro.org>
7874 L:      linux-usb@vger.kernel.org
7875 S:      Maintained
7876 F:      drivers/usb/fotg210/
7877
7878 FARSYNC SYNCHRONOUS DRIVER
7879 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7880 S:      Supported
7881 W:      http://www.farsite.co.uk/
7882 F:      drivers/net/wan/farsync.*
7883
7884 FAULT INJECTION SUPPORT
7885 M:      Akinobu Mita <akinobu.mita@gmail.com>
7886 S:      Supported
7887 F:      Documentation/fault-injection/
7888 F:      lib/fault-inject.c
7889
7890 FBTFT Framebuffer drivers
7891 L:      dri-devel@lists.freedesktop.org
7892 L:      linux-fbdev@vger.kernel.org
7893 S:      Orphan
7894 F:      drivers/staging/fbtft/
7895
7896 FC0011 TUNER DRIVER
7897 M:      Michael Buesch <m@bues.ch>
7898 L:      linux-media@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/media/tuners/fc0011.c
7901 F:      drivers/media/tuners/fc0011.h
7902
7903 FC2580 MEDIA DRIVER
7904 M:      Antti Palosaari <crope@iki.fi>
7905 L:      linux-media@vger.kernel.org
7906 S:      Maintained
7907 W:      https://linuxtv.org
7908 W:      http://palosaari.fi/linux/
7909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7910 T:      git git://linuxtv.org/anttip/media_tree.git
7911 F:      drivers/media/tuners/fc2580*
7912
7913 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7914 M:      Hannes Reinecke <hare@suse.de>
7915 L:      linux-scsi@vger.kernel.org
7916 S:      Supported
7917 W:      www.Open-FCoE.org
7918 F:      drivers/scsi/fcoe/
7919 F:      drivers/scsi/libfc/
7920 F:      include/scsi/fc/
7921 F:      include/scsi/libfc.h
7922 F:      include/scsi/libfcoe.h
7923 F:      include/uapi/scsi/fc/
7924
7925 FILE LOCKING (flock() and fcntl()/lockf())
7926 M:      Jeff Layton <jlayton@kernel.org>
7927 M:      Chuck Lever <chuck.lever@oracle.com>
7928 L:      linux-fsdevel@vger.kernel.org
7929 S:      Maintained
7930 F:      fs/fcntl.c
7931 F:      fs/locks.c
7932 F:      include/linux/fcntl.h
7933 F:      include/uapi/linux/fcntl.h
7934
7935 FILESYSTEM DIRECT ACCESS (DAX)
7936 M:      Dan Williams <dan.j.williams@intel.com>
7937 R:      Matthew Wilcox <willy@infradead.org>
7938 R:      Jan Kara <jack@suse.cz>
7939 L:      linux-fsdevel@vger.kernel.org
7940 L:      nvdimm@lists.linux.dev
7941 S:      Supported
7942 F:      fs/dax.c
7943 F:      include/linux/dax.h
7944 F:      include/trace/events/fs_dax.h
7945
7946 FILESYSTEMS (VFS and infrastructure)
7947 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7948 M:      Christian Brauner <brauner@kernel.org>
7949 L:      linux-fsdevel@vger.kernel.org
7950 S:      Maintained
7951 F:      fs/*
7952 F:      include/linux/fs.h
7953 F:      include/linux/fs_types.h
7954 F:      include/uapi/linux/fs.h
7955 F:      include/uapi/linux/openat2.h
7956
7957 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7958 M:      Riku Voipio <riku.voipio@iki.fi>
7959 L:      linux-hwmon@vger.kernel.org
7960 S:      Maintained
7961 F:      drivers/hwmon/f75375s.c
7962 F:      include/linux/f75375s.h
7963
7964 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7965 M:      Clemens Ladisch <clemens@ladisch.de>
7966 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7967 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7968 S:      Maintained
7969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7970 F:      include/uapi/sound/firewire.h
7971 F:      sound/firewire/
7972
7973 FIREWIRE MEDIA DRIVERS (firedtv)
7974 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7975 L:      linux-media@vger.kernel.org
7976 L:      linux1394-devel@lists.sourceforge.net
7977 S:      Maintained
7978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7979 F:      drivers/media/firewire/
7980
7981 FIREWIRE SBP-2 TARGET
7982 M:      Chris Boot <bootc@bootc.net>
7983 L:      linux-scsi@vger.kernel.org
7984 L:      target-devel@vger.kernel.org
7985 L:      linux1394-devel@lists.sourceforge.net
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7988 F:      drivers/target/sbp/
7989
7990 FIREWIRE SUBSYSTEM
7991 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7992 L:      linux1394-devel@lists.sourceforge.net
7993 S:      Maintained
7994 W:      http://ieee1394.wiki.kernel.org/
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7996 F:      drivers/firewire/
7997 F:      include/linux/firewire.h
7998 F:      include/uapi/linux/firewire*.h
7999 F:      tools/firewire/
8000
8001 FIRMWARE FRAMEWORK FOR ARMV8-A
8002 M:      Sudeep Holla <sudeep.holla@arm.com>
8003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8004 S:      Maintained
8005 F:      drivers/firmware/arm_ffa/
8006 F:      include/linux/arm_ffa.h
8007
8008 FIRMWARE LOADER (request_firmware)
8009 M:      Luis Chamberlain <mcgrof@kernel.org>
8010 M:      Russ Weight <russell.h.weight@intel.com>
8011 L:      linux-kernel@vger.kernel.org
8012 S:      Maintained
8013 F:      Documentation/firmware_class/
8014 F:      drivers/base/firmware_loader/
8015 F:      include/linux/firmware.h
8016
8017 FLEXTIMER FTM-QUADDEC DRIVER
8018 M:      Patrick Havelange <patrick.havelange@essensium.com>
8019 L:      linux-iio@vger.kernel.org
8020 S:      Maintained
8021 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8022 F:      drivers/counter/ftm-quaddec.c
8023
8024 FLOPPY DRIVER
8025 M:      Denis Efremov <efremov@linux.com>
8026 L:      linux-block@vger.kernel.org
8027 S:      Odd Fixes
8028 F:      drivers/block/floppy.c
8029
8030 FLYSKY FSIA6B RC RECEIVER
8031 M:      Markus Koch <markus@notsyncing.net>
8032 L:      linux-input@vger.kernel.org
8033 S:      Maintained
8034 F:      drivers/input/joystick/fsia6b.c
8035
8036 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8037 M:      Geoffrey D. Bennett <g@b4.vu>
8038 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8039 S:      Maintained
8040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8041 F:      sound/usb/mixer_scarlett_gen2.c
8042
8043 FORCEDETH GIGABIT ETHERNET DRIVER
8044 M:      Rain River <rain.1986.08.12@gmail.com>
8045 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8046 L:      netdev@vger.kernel.org
8047 S:      Maintained
8048 F:      drivers/net/ethernet/nvidia/*
8049
8050 FORTIFY_SOURCE
8051 M:      Kees Cook <keescook@chromium.org>
8052 L:      linux-hardening@vger.kernel.org
8053 S:      Supported
8054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8055 F:      include/linux/fortify-string.h
8056 F:      lib/fortify_kunit.c
8057 F:      lib/memcpy_kunit.c
8058 F:      lib/strscpy_kunit.c
8059 F:      lib/test_fortify/*
8060 F:      scripts/test_fortify.sh
8061 K:      \b__NO_FORTIFY\b
8062
8063 FPGA DFL DRIVERS
8064 M:      Wu Hao <hao.wu@intel.com>
8065 R:      Tom Rix <trix@redhat.com>
8066 L:      linux-fpga@vger.kernel.org
8067 S:      Maintained
8068 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8069 F:      Documentation/fpga/dfl.rst
8070 F:      drivers/fpga/dfl*
8071 F:      drivers/uio/uio_dfl.c
8072 F:      include/linux/dfl.h
8073 F:      include/uapi/linux/fpga-dfl.h
8074
8075 FPGA MANAGER FRAMEWORK
8076 M:      Moritz Fischer <mdf@kernel.org>
8077 M:      Wu Hao <hao.wu@intel.com>
8078 M:      Xu Yilun <yilun.xu@intel.com>
8079 R:      Tom Rix <trix@redhat.com>
8080 L:      linux-fpga@vger.kernel.org
8081 S:      Maintained
8082 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8084 F:      Documentation/devicetree/bindings/fpga/
8085 F:      Documentation/driver-api/fpga/
8086 F:      Documentation/fpga/
8087 F:      drivers/fpga/
8088 F:      include/linux/fpga/
8089
8090 INTEL MAX10 BMC SECURE UPDATES
8091 M:      Russ Weight <russell.h.weight@intel.com>
8092 L:      linux-fpga@vger.kernel.org
8093 S:      Maintained
8094 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8095 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8096
8097 MICROCHIP POLARFIRE FPGA DRIVERS
8098 M:      Conor Dooley <conor.dooley@microchip.com>
8099 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8100 L:      linux-fpga@vger.kernel.org
8101 S:      Supported
8102 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8103 F:      drivers/fpga/microchip-spi.c
8104
8105 FPU EMULATOR
8106 M:      Bill Metzenthen <billm@melbpc.org.au>
8107 S:      Maintained
8108 W:      https://floatingpoint.billm.au/
8109 F:      arch/x86/math-emu/
8110
8111 FRAMEBUFFER CORE
8112 M:      Daniel Vetter <daniel@ffwll.ch>
8113 F:      drivers/video/fbdev/core/
8114 S:      Odd Fixes
8115 T:      git git://anongit.freedesktop.org/drm/drm-misc
8116
8117 FRAMEBUFFER LAYER
8118 M:      Helge Deller <deller@gmx.de>
8119 L:      linux-fbdev@vger.kernel.org
8120 L:      dri-devel@lists.freedesktop.org
8121 S:      Maintained
8122 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8124 F:      Documentation/fb/
8125 F:      drivers/video/
8126 F:      include/linux/fb.h
8127 F:      include/uapi/linux/fb.h
8128 F:      include/uapi/video/
8129 F:      include/video/
8130
8131 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8132 M:      Horia Geantă <horia.geanta@nxp.com>
8133 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8134 M:      Gaurav Jain <gaurav.jain@nxp.com>
8135 L:      linux-crypto@vger.kernel.org
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/crypto/fsl,sec-v4.0*
8138 F:      drivers/crypto/caam/
8139
8140 FREESCALE COLDFIRE M5441X MMC DRIVER
8141 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8142 L:      linux-mmc@vger.kernel.org
8143 S:      Maintained
8144 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8145 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8146
8147 FREESCALE DIU FRAMEBUFFER DRIVER
8148 M:      Timur Tabi <timur@kernel.org>
8149 L:      linux-fbdev@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/video/fbdev/fsl-diu-fb.*
8152
8153 FREESCALE DMA DRIVER
8154 M:      Li Yang <leoyang.li@nxp.com>
8155 M:      Zhang Wei <zw@zh-kernel.org>
8156 L:      linuxppc-dev@lists.ozlabs.org
8157 S:      Maintained
8158 F:      drivers/dma/fsldma.*
8159
8160 FREESCALE DSPI DRIVER
8161 M:      Vladimir Oltean <olteanv@gmail.com>
8162 L:      linux-spi@vger.kernel.org
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8165 F:      drivers/spi/spi-fsl-dspi.c
8166 F:      include/linux/spi/spi-fsl-dspi.h
8167
8168 FREESCALE ENETC ETHERNET DRIVERS
8169 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8170 L:      netdev@vger.kernel.org
8171 S:      Maintained
8172 F:      drivers/net/ethernet/freescale/enetc/
8173
8174 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8175 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8176 L:      netdev@vger.kernel.org
8177 S:      Maintained
8178 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8179 F:      drivers/net/ethernet/freescale/gianfar*
8180
8181 FREESCALE GPMI NAND DRIVER
8182 M:      Han Xu <han.xu@nxp.com>
8183 L:      linux-mtd@lists.infradead.org
8184 S:      Maintained
8185 F:      drivers/mtd/nand/raw/gpmi-nand/*
8186
8187 FREESCALE I2C CPM DRIVER
8188 M:      Jochen Friedrich <jochen@scram.de>
8189 L:      linuxppc-dev@lists.ozlabs.org
8190 L:      linux-i2c@vger.kernel.org
8191 S:      Maintained
8192 F:      drivers/i2c/busses/i2c-cpm.c
8193
8194 FREESCALE IMX / MXC FEC DRIVER
8195 M:      Wei Fang <wei.fang@nxp.com>
8196 R:      Shenwei Wang <shenwei.wang@nxp.com>
8197 R:      Clark Wang <xiaoning.wang@nxp.com>
8198 R:      NXP Linux Team <linux-imx@nxp.com>
8199 L:      netdev@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8202 F:      drivers/net/ethernet/freescale/fec.h
8203 F:      drivers/net/ethernet/freescale/fec_main.c
8204 F:      drivers/net/ethernet/freescale/fec_ptp.c
8205
8206 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8207 M:      Sascha Hauer <s.hauer@pengutronix.de>
8208 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8209 L:      linux-fbdev@vger.kernel.org
8210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8211 S:      Maintained
8212 F:      drivers/video/fbdev/imxfb.c
8213
8214 FREESCALE IMX DDR PMU DRIVER
8215 M:      Frank Li <Frank.li@nxp.com>
8216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8217 S:      Maintained
8218 F:      Documentation/admin-guide/perf/imx-ddr.rst
8219 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8220 F:      drivers/perf/fsl_imx8_ddr_perf.c
8221
8222 FREESCALE IMX I2C DRIVER
8223 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8224 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8225 L:      linux-i2c@vger.kernel.org
8226 S:      Maintained
8227 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8228 F:      drivers/i2c/busses/i2c-imx.c
8229
8230 FREESCALE IMX LPI2C DRIVER
8231 M:      Dong Aisheng <aisheng.dong@nxp.com>
8232 L:      linux-i2c@vger.kernel.org
8233 L:      linux-imx@nxp.com
8234 S:      Maintained
8235 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8236 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8237
8238 FREESCALE MPC I2C DRIVER
8239 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8240 L:      linux-i2c@vger.kernel.org
8241 S:      Maintained
8242 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8243 F:      drivers/i2c/busses/i2c-mpc.c
8244
8245 FREESCALE QORIQ DPAA ETHERNET DRIVER
8246 M:      Madalin Bucur <madalin.bucur@nxp.com>
8247 L:      netdev@vger.kernel.org
8248 S:      Maintained
8249 F:      drivers/net/ethernet/freescale/dpaa
8250
8251 FREESCALE QORIQ DPAA FMAN DRIVER
8252 M:      Madalin Bucur <madalin.bucur@nxp.com>
8253 R:      Sean Anderson <sean.anderson@seco.com>
8254 L:      netdev@vger.kernel.org
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8257 F:      drivers/net/ethernet/freescale/fman
8258
8259 FREESCALE QORIQ PTP CLOCK DRIVER
8260 M:      Yangbo Lu <yangbo.lu@nxp.com>
8261 L:      netdev@vger.kernel.org
8262 S:      Maintained
8263 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8264 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8265 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8266 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8267 F:      drivers/ptp/ptp_qoriq.c
8268 F:      drivers/ptp/ptp_qoriq_debugfs.c
8269 F:      include/linux/fsl/ptp_qoriq.h
8270
8271 FREESCALE QUAD SPI DRIVER
8272 M:      Han Xu <han.xu@nxp.com>
8273 L:      linux-spi@vger.kernel.org
8274 S:      Maintained
8275 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8276 F:      drivers/spi/spi-fsl-qspi.c
8277
8278 FREESCALE QUICC ENGINE LIBRARY
8279 M:      Qiang Zhao <qiang.zhao@nxp.com>
8280 L:      linuxppc-dev@lists.ozlabs.org
8281 S:      Maintained
8282 F:      drivers/soc/fsl/qe/
8283 F:      include/soc/fsl/qe/
8284
8285 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8286 M:      Li Yang <leoyang.li@nxp.com>
8287 L:      netdev@vger.kernel.org
8288 L:      linuxppc-dev@lists.ozlabs.org
8289 S:      Maintained
8290 F:      drivers/net/ethernet/freescale/ucc_geth*
8291
8292 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8293 M:      Zhao Qiang <qiang.zhao@nxp.com>
8294 L:      netdev@vger.kernel.org
8295 L:      linuxppc-dev@lists.ozlabs.org
8296 S:      Maintained
8297 F:      drivers/net/wan/fsl_ucc_hdlc*
8298
8299 FREESCALE QUICC ENGINE UCC UART DRIVER
8300 M:      Timur Tabi <timur@kernel.org>
8301 L:      linuxppc-dev@lists.ozlabs.org
8302 S:      Maintained
8303 F:      drivers/tty/serial/ucc_uart.c
8304
8305 FREESCALE SOC DRIVERS
8306 M:      Li Yang <leoyang.li@nxp.com>
8307 L:      linuxppc-dev@lists.ozlabs.org
8308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8311 F:      Documentation/devicetree/bindings/soc/fsl/
8312 F:      drivers/soc/fsl/
8313 F:      include/linux/fsl/
8314 F:      include/soc/fsl/
8315
8316 FREESCALE SOC FS_ENET DRIVER
8317 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8318 L:      linuxppc-dev@lists.ozlabs.org
8319 L:      netdev@vger.kernel.org
8320 S:      Maintained
8321 F:      drivers/net/ethernet/freescale/fs_enet/
8322 F:      include/linux/fs_enet_pd.h
8323
8324 FREESCALE SOC SOUND DRIVERS
8325 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8326 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8327 R:      Fabio Estevam <festevam@gmail.com>
8328 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8330 L:      linuxppc-dev@lists.ozlabs.org
8331 S:      Maintained
8332 F:      sound/soc/fsl/fsl*
8333 F:      sound/soc/fsl/imx*
8334 F:      sound/soc/fsl/mpc8610_hpcd.c
8335
8336 FREESCALE USB PERIPHERAL DRIVERS
8337 M:      Li Yang <leoyang.li@nxp.com>
8338 L:      linux-usb@vger.kernel.org
8339 L:      linuxppc-dev@lists.ozlabs.org
8340 S:      Maintained
8341 F:      drivers/usb/gadget/udc/fsl*
8342
8343 FREESCALE USB PHY DRIVER
8344 M:      Ran Wang <ran.wang_1@nxp.com>
8345 L:      linux-usb@vger.kernel.org
8346 L:      linuxppc-dev@lists.ozlabs.org
8347 S:      Maintained
8348 F:      drivers/usb/phy/phy-fsl-usb*
8349
8350 FREEVXFS FILESYSTEM
8351 M:      Christoph Hellwig <hch@infradead.org>
8352 S:      Maintained
8353 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8354 F:      fs/freevxfs/
8355
8356 FREEZER
8357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8358 M:      Pavel Machek <pavel@ucw.cz>
8359 L:      linux-pm@vger.kernel.org
8360 S:      Supported
8361 F:      Documentation/power/freezing-of-tasks.rst
8362 F:      include/linux/freezer.h
8363 F:      kernel/freezer.c
8364
8365 FRONTSWAP API
8366 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8367 L:      linux-kernel@vger.kernel.org
8368 S:      Maintained
8369 F:      include/linux/frontswap.h
8370 F:      mm/frontswap.c
8371
8372 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8373 M:      David Howells <dhowells@redhat.com>
8374 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8375 S:      Supported
8376 F:      Documentation/filesystems/caching/
8377 F:      fs/fscache/
8378 F:      include/linux/fscache*.h
8379
8380 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8381 M:      Eric Biggers <ebiggers@kernel.org>
8382 M:      Theodore Y. Ts'o <tytso@mit.edu>
8383 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8384 L:      linux-fscrypt@vger.kernel.org
8385 S:      Supported
8386 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8387 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8388 F:      Documentation/filesystems/fscrypt.rst
8389 F:      fs/crypto/
8390 F:      include/linux/fscrypt.h
8391 F:      include/uapi/linux/fscrypt.h
8392
8393 FSI SUBSYSTEM
8394 M:      Jeremy Kerr <jk@ozlabs.org>
8395 M:      Joel Stanley <joel@jms.id.au>
8396 R:      Alistar Popple <alistair@popple.id.au>
8397 R:      Eddie James <eajames@linux.ibm.com>
8398 L:      linux-fsi@lists.ozlabs.org
8399 S:      Supported
8400 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8402 F:      drivers/fsi/
8403 F:      include/linux/fsi*.h
8404 F:      include/trace/events/fsi*.h
8405
8406 FSI-ATTACHED I2C DRIVER
8407 M:      Eddie James <eajames@linux.ibm.com>
8408 L:      linux-i2c@vger.kernel.org
8409 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8410 S:      Maintained
8411 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8412 F:      drivers/i2c/busses/i2c-fsi.c
8413
8414 FSI-ATTACHED SPI DRIVER
8415 M:      Eddie James <eajames@linux.ibm.com>
8416 L:      linux-spi@vger.kernel.org
8417 S:      Maintained
8418 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8419 F:      drivers/spi/spi-fsi.c
8420
8421 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8422 M:      Jan Kara <jack@suse.cz>
8423 R:      Amir Goldstein <amir73il@gmail.com>
8424 L:      linux-fsdevel@vger.kernel.org
8425 S:      Maintained
8426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8427 F:      fs/notify/
8428 F:      include/linux/fsnotify*.h
8429
8430 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8431 M:      Eric Biggers <ebiggers@kernel.org>
8432 M:      Theodore Y. Ts'o <tytso@mit.edu>
8433 L:      fsverity@lists.linux.dev
8434 S:      Supported
8435 Q:      https://patchwork.kernel.org/project/fsverity/list/
8436 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8437 F:      Documentation/filesystems/fsverity.rst
8438 F:      fs/verity/
8439 F:      include/linux/fsverity.h
8440 F:      include/uapi/linux/fsverity.h
8441
8442 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8443 M:      Michael Zaidman <michael.zaidman@gmail.com>
8444 L:      linux-i2c@vger.kernel.org
8445 L:      linux-input@vger.kernel.org
8446 S:      Maintained
8447 F:      drivers/hid/hid-ft260.c
8448
8449 FUJITSU LAPTOP EXTRAS
8450 M:      Jonathan Woithe <jwoithe@just42.net>
8451 L:      platform-driver-x86@vger.kernel.org
8452 S:      Maintained
8453 F:      drivers/platform/x86/fujitsu-laptop.c
8454
8455 FUJITSU TABLET EXTRAS
8456 M:      Robert Gerlach <khnz@gmx.de>
8457 L:      platform-driver-x86@vger.kernel.org
8458 S:      Maintained
8459 F:      drivers/platform/x86/fujitsu-tablet.c
8460
8461 FUNCTION HOOKS (FTRACE)
8462 M:      Steven Rostedt <rostedt@goodmis.org>
8463 M:      Masami Hiramatsu <mhiramat@kernel.org>
8464 R:      Mark Rutland <mark.rutland@arm.com>
8465 L:      linux-kernel@vger.kernel.org
8466 L:      linux-trace-kernel@vger.kernel.org
8467 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8470 F:      Documentation/trace/ftrace*
8471 F:      kernel/trace/ftrace*
8472 F:      kernel/trace/fgraph.c
8473 F:      arch/*/*/*/*ftrace*
8474 F:      arch/*/*/*ftrace*
8475 F:      include/*/ftrace.h
8476 F:      samples/ftrace
8477
8478 FUNGIBLE ETHERNET DRIVERS
8479 M:      Dimitris Michailidis <dmichail@fungible.com>
8480 L:      netdev@vger.kernel.org
8481 S:      Supported
8482 F:      drivers/net/ethernet/fungible/
8483
8484 FUSE: FILESYSTEM IN USERSPACE
8485 M:      Miklos Szeredi <miklos@szeredi.hu>
8486 L:      linux-fsdevel@vger.kernel.org
8487 S:      Maintained
8488 W:      https://github.com/libfuse/
8489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8490 F:      Documentation/filesystems/fuse.rst
8491 F:      fs/fuse/
8492 F:      include/uapi/linux/fuse.h
8493
8494 FUTEX SUBSYSTEM
8495 M:      Thomas Gleixner <tglx@linutronix.de>
8496 M:      Ingo Molnar <mingo@redhat.com>
8497 R:      Peter Zijlstra <peterz@infradead.org>
8498 R:      Darren Hart <dvhart@infradead.org>
8499 R:      Davidlohr Bueso <dave@stgolabs.net>
8500 R:      André Almeida <andrealmeid@igalia.com>
8501 L:      linux-kernel@vger.kernel.org
8502 S:      Maintained
8503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8504 F:      Documentation/locking/*futex*
8505 F:      include/asm-generic/futex.h
8506 F:      include/linux/futex.h
8507 F:      include/uapi/linux/futex.h
8508 F:      kernel/futex/*
8509 F:      tools/perf/bench/futex*
8510 F:      tools/testing/selftests/futex/
8511
8512 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8513 M:      Tim Harvey <tharvey@gateworks.com>
8514 S:      Maintained
8515 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8516 F:      drivers/mfd/gateworks-gsc.c
8517 F:      include/linux/mfd/gsc.h
8518 F:      Documentation/hwmon/gsc-hwmon.rst
8519 F:      drivers/hwmon/gsc-hwmon.c
8520 F:      include/linux/platform_data/gsc_hwmon.h
8521
8522 GCC PLUGINS
8523 M:      Kees Cook <keescook@chromium.org>
8524 L:      linux-hardening@vger.kernel.org
8525 S:      Maintained
8526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8527 F:      Documentation/kbuild/gcc-plugins.rst
8528 F:      scripts/Makefile.gcc-plugins
8529 F:      scripts/gcc-plugins/
8530
8531 GCOV BASED KERNEL PROFILING
8532 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8533 S:      Maintained
8534 F:      Documentation/dev-tools/gcov.rst
8535 F:      kernel/gcov/
8536
8537 GDB KERNEL DEBUGGING HELPER SCRIPTS
8538 M:      Jan Kiszka <jan.kiszka@siemens.com>
8539 M:      Kieran Bingham <kbingham@kernel.org>
8540 S:      Supported
8541 F:      scripts/gdb/
8542
8543 GEMINI CRYPTO DRIVER
8544 M:      Corentin Labbe <clabbe@baylibre.com>
8545 L:      linux-crypto@vger.kernel.org
8546 S:      Maintained
8547 F:      drivers/crypto/gemini/
8548
8549 GEMTEK FM RADIO RECEIVER DRIVER
8550 M:      Hans Verkuil <hverkuil@xs4all.nl>
8551 L:      linux-media@vger.kernel.org
8552 S:      Maintained
8553 W:      https://linuxtv.org
8554 T:      git git://linuxtv.org/media_tree.git
8555 F:      drivers/media/radio/radio-gemtek*
8556
8557 GENERIC ARCHITECTURE TOPOLOGY
8558 M:      Sudeep Holla <sudeep.holla@arm.com>
8559 L:      linux-kernel@vger.kernel.org
8560 S:      Maintained
8561 F:      drivers/base/arch_topology.c
8562 F:      include/linux/arch_topology.h
8563
8564 GENERIC ENTRY CODE
8565 M:      Thomas Gleixner <tglx@linutronix.de>
8566 M:      Peter Zijlstra <peterz@infradead.org>
8567 M:      Andy Lutomirski <luto@kernel.org>
8568 L:      linux-kernel@vger.kernel.org
8569 S:      Maintained
8570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8571 F:      include/linux/entry-common.h
8572 F:      include/linux/entry-kvm.h
8573 F:      kernel/entry/
8574
8575 GENERIC GPIO I2C DRIVER
8576 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8577 S:      Supported
8578 F:      drivers/i2c/busses/i2c-gpio.c
8579 F:      include/linux/platform_data/i2c-gpio.h
8580
8581 GENERIC GPIO I2C MULTIPLEXER DRIVER
8582 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8583 L:      linux-i2c@vger.kernel.org
8584 S:      Supported
8585 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8586 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8587 F:      include/linux/platform_data/i2c-mux-gpio.h
8588
8589 GENERIC HDLC (WAN) DRIVERS
8590 M:      Krzysztof Halasa <khc@pm.waw.pl>
8591 S:      Maintained
8592 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8593 F:      drivers/net/wan/c101.c
8594 F:      drivers/net/wan/hd6457*
8595 F:      drivers/net/wan/hdlc*
8596 F:      drivers/net/wan/n2.c
8597 F:      drivers/net/wan/pc300too.c
8598 F:      drivers/net/wan/pci200syn.c
8599 F:      drivers/net/wan/wanxl*
8600
8601 GENERIC INCLUDE/ASM HEADER FILES
8602 M:      Arnd Bergmann <arnd@arndb.de>
8603 L:      linux-arch@vger.kernel.org
8604 S:      Maintained
8605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8606 F:      include/asm-generic/
8607 F:      include/uapi/asm-generic/
8608
8609 GENERIC PHY FRAMEWORK
8610 M:      Vinod Koul <vkoul@kernel.org>
8611 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8612 L:      linux-phy@lists.infradead.org
8613 S:      Supported
8614 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8616 F:      Documentation/devicetree/bindings/phy/
8617 F:      drivers/phy/
8618 F:      include/dt-bindings/phy/
8619 F:      include/linux/phy/
8620
8621 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8622 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8623 S:      Supported
8624 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8625
8626 GENERIC PM DOMAINS
8627 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8628 M:      Kevin Hilman <khilman@kernel.org>
8629 M:      Ulf Hansson <ulf.hansson@linaro.org>
8630 L:      linux-pm@vger.kernel.org
8631 S:      Supported
8632 F:      Documentation/devicetree/bindings/power/power?domain*
8633 F:      drivers/base/power/domain*.c
8634 F:      include/linux/pm_domain.h
8635
8636 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8637 M:      Eugen Hristev <eugen.hristev@microchip.com>
8638 L:      linux-input@vger.kernel.org
8639 S:      Maintained
8640 F:      drivers/input/touchscreen/resistive-adc-touch.c
8641
8642 GENERIC STRING LIBRARY
8643 R:      Andy Shevchenko <andy@kernel.org>
8644 S:      Maintained
8645 F:      lib/string.c
8646 F:      lib/string_helpers.c
8647 F:      lib/test_string.c
8648 F:      lib/test-string_helpers.c
8649
8650 GENERIC UIO DRIVER FOR PCI DEVICES
8651 M:      "Michael S. Tsirkin" <mst@redhat.com>
8652 L:      kvm@vger.kernel.org
8653 S:      Supported
8654 F:      drivers/uio/uio_pci_generic.c
8655
8656 GENERIC VDSO LIBRARY
8657 M:      Andy Lutomirski <luto@kernel.org>
8658 M:      Thomas Gleixner <tglx@linutronix.de>
8659 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8660 L:      linux-kernel@vger.kernel.org
8661 S:      Maintained
8662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8663 F:      include/asm-generic/vdso/vsyscall.h
8664 F:      include/vdso/
8665 F:      kernel/time/vsyscall.c
8666 F:      lib/vdso/
8667
8668 GENWQE (IBM Generic Workqueue Card)
8669 M:      Frank Haverkamp <haver@linux.ibm.com>
8670 S:      Supported
8671 F:      drivers/misc/genwqe/
8672
8673 GET_MAINTAINER SCRIPT
8674 M:      Joe Perches <joe@perches.com>
8675 S:      Maintained
8676 F:      scripts/get_maintainer.pl
8677
8678 GFS2 FILE SYSTEM
8679 M:      Bob Peterson <rpeterso@redhat.com>
8680 M:      Andreas Gruenbacher <agruenba@redhat.com>
8681 L:      cluster-devel@redhat.com
8682 S:      Supported
8683 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8685 F:      Documentation/filesystems/gfs2*
8686 F:      fs/gfs2/
8687 F:      include/uapi/linux/gfs2_ondisk.h
8688
8689 GIGABYTE WMI DRIVER
8690 M:      Thomas Weißschuh <thomas@weissschuh.net>
8691 L:      platform-driver-x86@vger.kernel.org
8692 S:      Maintained
8693 F:      drivers/platform/x86/gigabyte-wmi.c
8694
8695 GNSS SUBSYSTEM
8696 M:      Johan Hovold <johan@kernel.org>
8697 S:      Maintained
8698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8699 F:      Documentation/ABI/testing/sysfs-class-gnss
8700 F:      Documentation/devicetree/bindings/gnss/
8701 F:      drivers/gnss/
8702 F:      include/linux/gnss.h
8703
8704 GO7007 MPEG CODEC
8705 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8706 L:      linux-media@vger.kernel.org
8707 S:      Maintained
8708 F:      drivers/media/usb/go7007/
8709
8710 GOODIX TOUCHSCREEN
8711 M:      Bastien Nocera <hadess@hadess.net>
8712 M:      Hans de Goede <hdegoede@redhat.com>
8713 L:      linux-input@vger.kernel.org
8714 S:      Maintained
8715 F:      drivers/input/touchscreen/goodix*
8716
8717 GOOGLE ETHERNET DRIVERS
8718 M:      Jeroen de Borst <jeroendb@google.com>
8719 M:      Praveen Kaligineedi <pkaligineedi@google.com>
8720 R:      Shailend Chand <shailend@google.com>
8721 L:      netdev@vger.kernel.org
8722 S:      Supported
8723 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8724 F:      drivers/net/ethernet/google
8725
8726 GPD POCKET FAN DRIVER
8727 M:      Hans de Goede <hdegoede@redhat.com>
8728 L:      platform-driver-x86@vger.kernel.org
8729 S:      Maintained
8730 F:      drivers/platform/x86/gpd-pocket-fan.c
8731
8732 GPIO ACPI SUPPORT
8733 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8734 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8735 L:      linux-gpio@vger.kernel.org
8736 L:      linux-acpi@vger.kernel.org
8737 S:      Supported
8738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8739 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8740 F:      drivers/gpio/gpiolib-acpi.c
8741 F:      drivers/gpio/gpiolib-acpi.h
8742
8743 GPIO AGGREGATOR
8744 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8745 L:      linux-gpio@vger.kernel.org
8746 S:      Supported
8747 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8748 F:      drivers/gpio/gpio-aggregator.c
8749
8750 GPIO IR Transmitter
8751 M:      Sean Young <sean@mess.org>
8752 L:      linux-media@vger.kernel.org
8753 S:      Maintained
8754 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8755 F:      drivers/media/rc/gpio-ir-tx.c
8756
8757 GPIO MOCKUP DRIVER
8758 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8759 L:      linux-gpio@vger.kernel.org
8760 S:      Maintained
8761 F:      drivers/gpio/gpio-mockup.c
8762 F:      tools/testing/selftests/gpio/
8763
8764 GPIO REGMAP
8765 R:      Michael Walle <michael@walle.cc>
8766 S:      Maintained
8767 F:      drivers/gpio/gpio-regmap.c
8768 F:      include/linux/gpio/regmap.h
8769
8770 GPIO SUBSYSTEM
8771 M:      Linus Walleij <linus.walleij@linaro.org>
8772 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8773 L:      linux-gpio@vger.kernel.org
8774 S:      Maintained
8775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8776 F:      Documentation/ABI/obsolete/sysfs-gpio
8777 F:      Documentation/ABI/testing/gpio-cdev
8778 F:      Documentation/admin-guide/gpio/
8779 F:      Documentation/devicetree/bindings/gpio/
8780 F:      Documentation/driver-api/gpio/
8781 F:      drivers/gpio/
8782 F:      include/dt-bindings/gpio/
8783 F:      include/linux/gpio.h
8784 F:      include/linux/gpio/
8785 F:      include/linux/of_gpio.h
8786 F:      include/uapi/linux/gpio.h
8787 F:      tools/gpio/
8788
8789 GRE DEMULTIPLEXER DRIVER
8790 M:      Dmitry Kozlov <xeb@mail.ru>
8791 L:      netdev@vger.kernel.org
8792 S:      Maintained
8793 F:      include/net/gre.h
8794 F:      net/ipv4/gre_demux.c
8795 F:      net/ipv4/gre_offload.c
8796
8797 GRETH 10/100/1G Ethernet MAC device driver
8798 M:      Andreas Larsson <andreas@gaisler.com>
8799 L:      netdev@vger.kernel.org
8800 S:      Maintained
8801 F:      drivers/net/ethernet/aeroflex/
8802
8803 GREYBUS AUDIO PROTOCOLS DRIVERS
8804 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8805 M:      Mark Greer <mgreer@animalcreek.com>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/audio_apbridgea.c
8808 F:      drivers/staging/greybus/audio_apbridgea.h
8809 F:      drivers/staging/greybus/audio_codec.c
8810 F:      drivers/staging/greybus/audio_codec.h
8811 F:      drivers/staging/greybus/audio_gb.c
8812 F:      drivers/staging/greybus/audio_manager.c
8813 F:      drivers/staging/greybus/audio_manager.h
8814 F:      drivers/staging/greybus/audio_manager_module.c
8815 F:      drivers/staging/greybus/audio_manager_private.h
8816 F:      drivers/staging/greybus/audio_manager_sysfs.c
8817 F:      drivers/staging/greybus/audio_module.c
8818 F:      drivers/staging/greybus/audio_topology.c
8819
8820 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8821 M:      Viresh Kumar <vireshk@kernel.org>
8822 S:      Maintained
8823 F:      drivers/staging/greybus/authentication.c
8824 F:      drivers/staging/greybus/bootrom.c
8825 F:      drivers/staging/greybus/firmware.h
8826 F:      drivers/staging/greybus/fw-core.c
8827 F:      drivers/staging/greybus/fw-download.c
8828 F:      drivers/staging/greybus/fw-management.c
8829 F:      drivers/staging/greybus/greybus_authentication.h
8830 F:      drivers/staging/greybus/greybus_firmware.h
8831 F:      drivers/staging/greybus/hid.c
8832 F:      drivers/staging/greybus/i2c.c
8833 F:      drivers/staging/greybus/spi.c
8834 F:      drivers/staging/greybus/spilib.c
8835 F:      drivers/staging/greybus/spilib.h
8836
8837 GREYBUS LOOPBACK DRIVER
8838 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8839 S:      Maintained
8840 F:      drivers/staging/greybus/loopback.c
8841
8842 GREYBUS PLATFORM DRIVERS
8843 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8844 S:      Maintained
8845 F:      drivers/staging/greybus/arche-apb-ctrl.c
8846 F:      drivers/staging/greybus/arche-platform.c
8847 F:      drivers/staging/greybus/arche_platform.h
8848
8849 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8850 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8851 S:      Maintained
8852 F:      drivers/staging/greybus/gpio.c
8853 F:      drivers/staging/greybus/light.c
8854 F:      drivers/staging/greybus/power_supply.c
8855 F:      drivers/staging/greybus/sdio.c
8856 F:      drivers/staging/greybus/spi.c
8857 F:      drivers/staging/greybus/spilib.c
8858
8859 GREYBUS SUBSYSTEM
8860 M:      Johan Hovold <johan@kernel.org>
8861 M:      Alex Elder <elder@kernel.org>
8862 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8863 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8864 S:      Maintained
8865 F:      drivers/greybus/
8866 F:      drivers/staging/greybus/
8867 F:      include/linux/greybus.h
8868 F:      include/linux/greybus/
8869
8870 GREYBUS UART PROTOCOLS DRIVERS
8871 M:      David Lin <dtwlin@gmail.com>
8872 S:      Maintained
8873 F:      drivers/staging/greybus/log.c
8874 F:      drivers/staging/greybus/uart.c
8875
8876 GS1662 VIDEO SERIALIZER
8877 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8878 L:      linux-media@vger.kernel.org
8879 S:      Maintained
8880 T:      git git://linuxtv.org/media_tree.git
8881 F:      drivers/media/spi/gs1662.c
8882
8883 GSPCA FINEPIX SUBDRIVER
8884 M:      Frank Zago <frank@zago.net>
8885 L:      linux-media@vger.kernel.org
8886 S:      Maintained
8887 T:      git git://linuxtv.org/media_tree.git
8888 F:      drivers/media/usb/gspca/finepix.c
8889
8890 GSPCA GL860 SUBDRIVER
8891 M:      Olivier Lorin <o.lorin@laposte.net>
8892 L:      linux-media@vger.kernel.org
8893 S:      Maintained
8894 T:      git git://linuxtv.org/media_tree.git
8895 F:      drivers/media/usb/gspca/gl860/
8896
8897 GSPCA M5602 SUBDRIVER
8898 M:      Erik Andren <erik.andren@gmail.com>
8899 L:      linux-media@vger.kernel.org
8900 S:      Maintained
8901 T:      git git://linuxtv.org/media_tree.git
8902 F:      drivers/media/usb/gspca/m5602/
8903
8904 GSPCA PAC207 SONIXB SUBDRIVER
8905 M:      Hans Verkuil <hverkuil@xs4all.nl>
8906 L:      linux-media@vger.kernel.org
8907 S:      Odd Fixes
8908 T:      git git://linuxtv.org/media_tree.git
8909 F:      drivers/media/usb/gspca/pac207.c
8910
8911 GSPCA SN9C20X SUBDRIVER
8912 M:      Brian Johnson <brijohn@gmail.com>
8913 L:      linux-media@vger.kernel.org
8914 S:      Maintained
8915 T:      git git://linuxtv.org/media_tree.git
8916 F:      drivers/media/usb/gspca/sn9c20x.c
8917
8918 GSPCA T613 SUBDRIVER
8919 M:      Leandro Costantino <lcostantino@gmail.com>
8920 L:      linux-media@vger.kernel.org
8921 S:      Maintained
8922 T:      git git://linuxtv.org/media_tree.git
8923 F:      drivers/media/usb/gspca/t613.c
8924
8925 GSPCA USB WEBCAM DRIVER
8926 M:      Hans Verkuil <hverkuil@xs4all.nl>
8927 L:      linux-media@vger.kernel.org
8928 S:      Odd Fixes
8929 T:      git git://linuxtv.org/media_tree.git
8930 F:      drivers/media/usb/gspca/
8931
8932 GTP (GPRS Tunneling Protocol)
8933 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8934 M:      Harald Welte <laforge@gnumonks.org>
8935 L:      osmocom-net-gprs@lists.osmocom.org
8936 S:      Maintained
8937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8938 F:      drivers/net/gtp.c
8939
8940 GUID PARTITION TABLE (GPT)
8941 M:      Davidlohr Bueso <dave@stgolabs.net>
8942 L:      linux-efi@vger.kernel.org
8943 S:      Maintained
8944 F:      block/partitions/efi.*
8945
8946 HABANALABS PCI DRIVER
8947 M:      Oded Gabbay <ogabbay@kernel.org>
8948 L:      dri-devel@lists.freedesktop.org
8949 S:      Supported
8950 C:      irc://irc.oftc.net/dri-devel
8951 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8952 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8953 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8954 F:      drivers/accel/habanalabs/
8955 F:      include/trace/events/habanalabs.h
8956 F:      include/uapi/drm/habanalabs_accel.h
8957
8958 HACKRF MEDIA DRIVER
8959 M:      Antti Palosaari <crope@iki.fi>
8960 L:      linux-media@vger.kernel.org
8961 S:      Maintained
8962 W:      https://linuxtv.org
8963 W:      http://palosaari.fi/linux/
8964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8965 T:      git git://linuxtv.org/anttip/media_tree.git
8966 F:      drivers/media/usb/hackrf/
8967
8968 HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
8969 M:      Chuck Lever <chuck.lever@oracle.com>
8970 L:      kernel-tls-handshake@lists.linux.dev
8971 L:      netdev@vger.kernel.org
8972 S:      Maintained
8973 F:      Documentation/netlink/specs/handshake.yaml
8974 F:      Documentation/networking/tls-handshake.rst
8975 F:      include/net/handshake.h
8976 F:      include/trace/events/handshake.h
8977 F:      net/handshake/
8978
8979 HANTRO VPU CODEC DRIVER
8980 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8981 M:      Philipp Zabel <p.zabel@pengutronix.de>
8982 L:      linux-media@vger.kernel.org
8983 L:      linux-rockchip@lists.infradead.org
8984 S:      Maintained
8985 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8986 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8987 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8988 F:      drivers/media/platform/verisilicon/
8989
8990 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8991 M:      Frank Seidel <frank@f-seidel.de>
8992 L:      platform-driver-x86@vger.kernel.org
8993 S:      Maintained
8994 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8995 F:      drivers/platform/x86/hdaps.c
8996
8997 HARDWARE MONITORING
8998 M:      Jean Delvare <jdelvare@suse.com>
8999 M:      Guenter Roeck <linux@roeck-us.net>
9000 L:      linux-hwmon@vger.kernel.org
9001 S:      Maintained
9002 W:      http://hwmon.wiki.kernel.org/
9003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9004 F:      Documentation/ABI/testing/sysfs-class-hwmon
9005 F:      Documentation/devicetree/bindings/hwmon/
9006 F:      Documentation/hwmon/
9007 F:      drivers/hwmon/
9008 F:      include/linux/hwmon*.h
9009 F:      include/trace/events/hwmon*.h
9010 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9011
9012 HARDWARE RANDOM NUMBER GENERATOR CORE
9013 M:      Olivia Mackall <olivia@selenic.com>
9014 M:      Herbert Xu <herbert@gondor.apana.org.au>
9015 L:      linux-crypto@vger.kernel.org
9016 S:      Odd fixes
9017 F:      Documentation/admin-guide/hw_random.rst
9018 F:      Documentation/devicetree/bindings/rng/
9019 F:      drivers/char/hw_random/
9020 F:      include/linux/hw_random.h
9021
9022 HARDWARE SPINLOCK CORE
9023 M:      Ohad Ben-Cohen <ohad@wizery.com>
9024 M:      Bjorn Andersson <andersson@kernel.org>
9025 R:      Baolin Wang <baolin.wang7@gmail.com>
9026 L:      linux-remoteproc@vger.kernel.org
9027 S:      Maintained
9028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9029 F:      Documentation/devicetree/bindings/hwlock/
9030 F:      Documentation/locking/hwspinlock.rst
9031 F:      drivers/hwspinlock/
9032 F:      include/linux/hwspinlock.h
9033
9034 HARDWARE TRACING FACILITIES
9035 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9036 S:      Maintained
9037 F:      drivers/hwtracing/
9038
9039 HARMONY SOUND DRIVER
9040 L:      linux-parisc@vger.kernel.org
9041 S:      Maintained
9042 F:      sound/parisc/harmony.*
9043
9044 HDPVR USB VIDEO ENCODER DRIVER
9045 M:      Hans Verkuil <hverkuil@xs4all.nl>
9046 L:      linux-media@vger.kernel.org
9047 S:      Odd Fixes
9048 W:      https://linuxtv.org
9049 T:      git git://linuxtv.org/media_tree.git
9050 F:      drivers/media/usb/hdpvr/
9051
9052 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9053 M:      Matt Hsiao <matt.hsiao@hpe.com>
9054 S:      Supported
9055 F:      drivers/misc/hpilo.[ch]
9056
9057 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9058 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9059 S:      Supported
9060 F:      Documentation/watchdog/hpwdt.rst
9061 F:      drivers/watchdog/hpwdt.c
9062
9063 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9064 M:      Don Brace <don.brace@microchip.com>
9065 L:      storagedev@microchip.com
9066 L:      linux-scsi@vger.kernel.org
9067 S:      Supported
9068 F:      Documentation/scsi/hpsa.rst
9069 F:      drivers/scsi/hpsa*.[ch]
9070 F:      include/linux/cciss*.h
9071 F:      include/uapi/linux/cciss*.h
9072
9073 HFI1 DRIVER
9074 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9075 L:      linux-rdma@vger.kernel.org
9076 S:      Supported
9077 F:      drivers/infiniband/hw/hfi1
9078
9079 HFS FILESYSTEM
9080 L:      linux-fsdevel@vger.kernel.org
9081 S:      Orphan
9082 F:      Documentation/filesystems/hfs.rst
9083 F:      fs/hfs/
9084
9085 HFSPLUS FILESYSTEM
9086 L:      linux-fsdevel@vger.kernel.org
9087 S:      Orphan
9088 F:      Documentation/filesystems/hfsplus.rst
9089 F:      fs/hfsplus/
9090
9091 HGA FRAMEBUFFER DRIVER
9092 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9093 L:      linux-nvidia@lists.surfsouth.com
9094 S:      Maintained
9095 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9096 F:      drivers/video/fbdev/hgafb.c
9097
9098 HIBERNATION (aka Software Suspend, aka swsusp)
9099 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9100 M:      Pavel Machek <pavel@ucw.cz>
9101 L:      linux-pm@vger.kernel.org
9102 S:      Supported
9103 B:      https://bugzilla.kernel.org
9104 F:      arch/*/include/asm/suspend*.h
9105 F:      arch/x86/power/
9106 F:      drivers/base/power/
9107 F:      include/linux/freezer.h
9108 F:      include/linux/pm.h
9109 F:      include/linux/suspend.h
9110 F:      kernel/power/
9111
9112 HID CORE LAYER
9113 M:      Jiri Kosina <jikos@kernel.org>
9114 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9115 L:      linux-input@vger.kernel.org
9116 S:      Maintained
9117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9118 F:      Documentation/hid/
9119 F:      drivers/hid/
9120 F:      include/linux/hid*
9121 F:      include/uapi/linux/hid*
9122 F:      samples/hid/
9123 F:      tools/testing/selftests/hid/
9124
9125 HID LOGITECH DRIVERS
9126 R:      Filipe Laíns <lains@riseup.net>
9127 L:      linux-input@vger.kernel.org
9128 S:      Maintained
9129 F:      drivers/hid/hid-logitech-*
9130
9131 HID++ LOGITECH DRIVERS
9132 R:      Filipe Laíns <lains@riseup.net>
9133 R:      Bastien Nocera <hadess@hadess.net>
9134 L:      linux-input@vger.kernel.org
9135 S:      Maintained
9136 F:      drivers/hid/hid-logitech-hidpp.c
9137
9138 HID PLAYSTATION DRIVER
9139 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9140 L:      linux-input@vger.kernel.org
9141 S:      Supported
9142 F:      drivers/hid/hid-playstation.c
9143
9144 HID PHOENIX RC FLIGHT CONTROLLER
9145 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9146 L:      linux-input@vger.kernel.org
9147 S:      Maintained
9148 F:      drivers/hid/hid-pxrc.c
9149
9150 HID SENSOR HUB DRIVERS
9151 M:      Jiri Kosina <jikos@kernel.org>
9152 M:      Jonathan Cameron <jic23@kernel.org>
9153 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9154 L:      linux-input@vger.kernel.org
9155 L:      linux-iio@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/hid/hid-sensor*
9158 F:      drivers/hid/hid-sensor-*
9159 F:      drivers/iio/*/hid-*
9160 F:      include/linux/hid-sensor-*
9161
9162 HID VRC-2 CAR CONTROLLER DRIVER
9163 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9164 L:      linux-input@vger.kernel.org
9165 S:      Maintained
9166 F:      drivers/hid/hid-vrc2.c
9167
9168 HID WACOM DRIVER
9169 M:      Ping Cheng <ping.cheng@wacom.com>
9170 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9171 L:      linux-input@vger.kernel.org
9172 S:      Maintained
9173 F:      drivers/hid/wacom.h
9174 F:      drivers/hid/wacom_*
9175
9176 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9177 M:      Thomas Gleixner <tglx@linutronix.de>
9178 L:      linux-kernel@vger.kernel.org
9179 S:      Maintained
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9181 F:      Documentation/timers/
9182 F:      include/linux/clockchips.h
9183 F:      include/linux/hrtimer.h
9184 F:      kernel/time/clockevents.c
9185 F:      kernel/time/hrtimer.c
9186 F:      kernel/time/timer_*.c
9187
9188 HIGH-SPEED SCC DRIVER FOR AX.25
9189 L:      linux-hams@vger.kernel.org
9190 S:      Orphan
9191 F:      drivers/net/hamradio/scc.c
9192
9193 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9194 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9195 S:      Supported
9196 W:      http://www.highpoint-tech.com
9197 F:      Documentation/scsi/hptiop.rst
9198 F:      drivers/scsi/hptiop.c
9199
9200 HIMAX HX83112B TOUCHSCREEN SUPPORT
9201 M:      Job Noorman <job@noorman.info>
9202 L:      linux-input@vger.kernel.org
9203 S:      Maintained
9204 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9205 F:      drivers/input/touchscreen/himax_hx83112b.c
9206
9207 HIPPI
9208 M:      Jes Sorensen <jes@trained-monkey.org>
9209 L:      linux-hippi@sunsite.dk
9210 S:      Maintained
9211 F:      drivers/net/hippi/
9212 F:      include/linux/hippidevice.h
9213 F:      include/uapi/linux/if_hippi.h
9214 F:      net/802/hippi.c
9215
9216 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9217 M:      Kurt Kanzenbach <kurt@linutronix.de>
9218 L:      netdev@vger.kernel.org
9219 S:      Maintained
9220 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9221 F:      drivers/net/dsa/hirschmann/*
9222 F:      include/linux/platform_data/hirschmann-hellcreek.h
9223 F:      net/dsa/tag_hellcreek.c
9224
9225 HISILICON DMA DRIVER
9226 M:      Zhou Wang <wangzhou1@hisilicon.com>
9227 M:      Jie Hai <haijie1@huawei.com>
9228 L:      dmaengine@vger.kernel.org
9229 S:      Maintained
9230 F:      drivers/dma/hisi_dma.c
9231
9232 HISILICON GPIO DRIVER
9233 M:      Jay Fang <f.fangjian@huawei.com>
9234 L:      linux-gpio@vger.kernel.org
9235 S:      Maintained
9236 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9237 F:      drivers/gpio/gpio-hisi.c
9238
9239 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9240 M:      Longfang Liu <liulongfang@huawei.com>
9241 L:      linux-crypto@vger.kernel.org
9242 S:      Maintained
9243 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9244 F:      drivers/crypto/hisilicon/hpre/hpre.h
9245 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9246 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9247
9248 HISILICON I2C CONTROLLER DRIVER
9249 M:      Yicong Yang <yangyicong@hisilicon.com>
9250 L:      linux-i2c@vger.kernel.org
9251 S:      Maintained
9252 W:      https://www.hisilicon.com
9253 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9254 F:      drivers/i2c/busses/i2c-hisi.c
9255
9256 HISILICON LPC BUS DRIVER
9257 M:      Jay Fang <f.fangjian@huawei.com>
9258 S:      Maintained
9259 W:      http://www.hisilicon.com
9260 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9261 F:      drivers/bus/hisi_lpc.c
9262
9263 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9264 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9265 M:      Salil Mehta <salil.mehta@huawei.com>
9266 L:      netdev@vger.kernel.org
9267 S:      Maintained
9268 W:      http://www.hisilicon.com
9269 F:      drivers/net/ethernet/hisilicon/hns3/
9270
9271 HISILICON NETWORK SUBSYSTEM DRIVER
9272 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9273 M:      Salil Mehta <salil.mehta@huawei.com>
9274 L:      netdev@vger.kernel.org
9275 S:      Maintained
9276 W:      http://www.hisilicon.com
9277 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9278 F:      drivers/net/ethernet/hisilicon/
9279
9280 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9281 M:      John Stultz <jstultz@google.com>
9282 L:      linux-kernel@vger.kernel.org
9283 S:      Maintained
9284 F:      drivers/misc/hisi_hikey_usb.c
9285
9286 HISILICON PMU DRIVER
9287 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9288 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9289 S:      Supported
9290 W:      http://www.hisilicon.com
9291 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9292 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9293 F:      drivers/perf/hisilicon
9294
9295 HISILICON HNS3 PMU DRIVER
9296 M:      Guangbin Huang <huangguangbin2@huawei.com>
9297 S:      Supported
9298 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9299 F:      drivers/perf/hisilicon/hns3_pmu.c
9300
9301 HISILICON PTT DRIVER
9302 M:      Yicong Yang <yangyicong@hisilicon.com>
9303 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9304 L:      linux-kernel@vger.kernel.org
9305 S:      Maintained
9306 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9307 F:      Documentation/trace/hisi-ptt.rst
9308 F:      drivers/hwtracing/ptt/
9309 F:      tools/perf/arch/arm64/util/hisi-ptt.c
9310 F:      tools/perf/util/hisi-ptt*
9311 F:      tools/perf/util/hisi-ptt-decoder/*
9312
9313 HISILICON QM DRIVER
9314 M:      Weili Qian <qianweili@huawei.com>
9315 M:      Zhou Wang <wangzhou1@hisilicon.com>
9316 L:      linux-crypto@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/crypto/hisilicon/Kconfig
9319 F:      drivers/crypto/hisilicon/Makefile
9320 F:      drivers/crypto/hisilicon/qm.c
9321 F:      drivers/crypto/hisilicon/sgl.c
9322 F:      include/linux/hisi_acc_qm.h
9323
9324 HISILICON ZIP Controller DRIVER
9325 M:      Yang Shen <shenyang39@huawei.com>
9326 M:      Zhou Wang <wangzhou1@hisilicon.com>
9327 L:      linux-crypto@vger.kernel.org
9328 S:      Maintained
9329 F:      Documentation/ABI/testing/debugfs-hisi-zip
9330 F:      drivers/crypto/hisilicon/zip/
9331
9332 HISILICON ROCE DRIVER
9333 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9334 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9335 L:      linux-rdma@vger.kernel.org
9336 S:      Maintained
9337 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9338 F:      drivers/infiniband/hw/hns/
9339
9340 HISILICON SAS Controller
9341 M:      Xiang Chen <chenxiang66@hisilicon.com>
9342 S:      Supported
9343 W:      http://www.hisilicon.com
9344 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9345 F:      drivers/scsi/hisi_sas/
9346
9347 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9348 M:      Kai Ye <yekai13@huawei.com>
9349 M:      Longfang Liu <liulongfang@huawei.com>
9350 L:      linux-crypto@vger.kernel.org
9351 S:      Maintained
9352 F:      Documentation/ABI/testing/debugfs-hisi-sec
9353 F:      drivers/crypto/hisilicon/sec2/sec.h
9354 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9355 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9356 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9357
9358 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9359 M:      Jay Fang <f.fangjian@huawei.com>
9360 L:      linux-spi@vger.kernel.org
9361 S:      Maintained
9362 W:      http://www.hisilicon.com
9363 F:      drivers/spi/spi-hisi-kunpeng.c
9364
9365 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9366 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9367 L:      linux-kernel@vger.kernel.org
9368 S:      Maintained
9369 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9370 F:      drivers/spmi/hisi-spmi-controller.c
9371
9372 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9373 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9374 L:      linux-kernel@vger.kernel.org
9375 S:      Maintained
9376 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9377 F:      drivers/mfd/hi6421-spmi-pmic.c
9378
9379 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9380 M:      Weili Qian <qianweili@huawei.com>
9381 S:      Maintained
9382 F:      drivers/crypto/hisilicon/trng/trng.c
9383
9384 HISILICON V3XX SPI NOR FLASH Controller Driver
9385 M:      Jay Fang <f.fangjian@huawei.com>
9386 S:      Maintained
9387 W:      http://www.hisilicon.com
9388 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9389
9390 HMM - Heterogeneous Memory Management
9391 M:      Jérôme Glisse <jglisse@redhat.com>
9392 L:      linux-mm@kvack.org
9393 S:      Maintained
9394 F:      Documentation/mm/hmm.rst
9395 F:      include/linux/hmm*
9396 F:      lib/test_hmm*
9397 F:      mm/hmm*
9398 F:      tools/testing/selftests/mm/*hmm*
9399
9400 HOST AP DRIVER
9401 M:      Jouni Malinen <j@w1.fi>
9402 L:      linux-wireless@vger.kernel.org
9403 S:      Obsolete
9404 W:      http://w1.fi/hostap-driver.html
9405 F:      drivers/net/wireless/intersil/hostap/
9406
9407 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9408 L:      platform-driver-x86@vger.kernel.org
9409 S:      Orphan
9410 F:      drivers/platform/x86/hp/tc1100-wmi.c
9411
9412 HPET:   High Precision Event Timers driver
9413 M:      Clemens Ladisch <clemens@ladisch.de>
9414 S:      Maintained
9415 F:      Documentation/timers/hpet.rst
9416 F:      drivers/char/hpet.c
9417 F:      include/linux/hpet.h
9418 F:      include/uapi/linux/hpet.h
9419
9420 HPET:   x86
9421 S:      Orphan
9422 F:      arch/x86/include/asm/hpet.h
9423 F:      arch/x86/kernel/hpet.c
9424
9425 HPFS FILESYSTEM
9426 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9427 S:      Maintained
9428 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9429 F:      fs/hpfs/
9430
9431 HSI SUBSYSTEM
9432 M:      Sebastian Reichel <sre@kernel.org>
9433 S:      Maintained
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9435 F:      Documentation/ABI/testing/sysfs-bus-hsi
9436 F:      Documentation/driver-api/hsi.rst
9437 F:      drivers/hsi/
9438 F:      include/linux/hsi/
9439 F:      include/uapi/linux/hsi/
9440
9441 HSO 3G MODEM DRIVER
9442 L:      linux-usb@vger.kernel.org
9443 S:      Orphan
9444 F:      drivers/net/usb/hso.c
9445
9446 HSR NETWORK PROTOCOL
9447 L:      netdev@vger.kernel.org
9448 S:      Orphan
9449 F:      net/hsr/
9450
9451 HT16K33 LED CONTROLLER DRIVER
9452 M:      Robin van der Gracht <robin@protonic.nl>
9453 S:      Maintained
9454 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9455 F:      drivers/auxdisplay/ht16k33.c
9456
9457 HTCPEN TOUCHSCREEN DRIVER
9458 M:      Pau Oliva Fora <pof@eslack.org>
9459 L:      linux-input@vger.kernel.org
9460 S:      Maintained
9461 F:      drivers/input/touchscreen/htcpen.c
9462
9463 HTE SUBSYSTEM
9464 M:      Dipen Patel <dipenp@nvidia.com>
9465 S:      Maintained
9466 F:      Documentation/devicetree/bindings/timestamp/
9467 F:      Documentation/driver-api/hte/
9468 F:      drivers/hte/
9469 F:      include/linux/hte.h
9470
9471 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9472 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9473 L:      linux-iio@vger.kernel.org
9474 S:      Maintained
9475 W:      http://www.st.com/
9476 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9477 F:      drivers/iio/humidity/hts221*
9478
9479 HUAWEI ETHERNET DRIVER
9480 M:      Cai Huoqing <cai.huoqing@linux.dev>
9481 L:      netdev@vger.kernel.org
9482 S:      Maintained
9483 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9484 F:      drivers/net/ethernet/huawei/hinic/
9485
9486 HUGETLB SUBSYSTEM
9487 M:      Mike Kravetz <mike.kravetz@oracle.com>
9488 M:      Muchun Song <muchun.song@linux.dev>
9489 L:      linux-mm@kvack.org
9490 S:      Maintained
9491 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9492 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9493 F:      Documentation/mm/hugetlbfs_reserv.rst
9494 F:      Documentation/mm/vmemmap_dedup.rst
9495 F:      fs/hugetlbfs/
9496 F:      include/linux/hugetlb.h
9497 F:      mm/hugetlb.c
9498 F:      mm/hugetlb_vmemmap.c
9499 F:      mm/hugetlb_vmemmap.h
9500
9501 HVA ST MEDIA DRIVER
9502 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9503 L:      linux-media@vger.kernel.org
9504 S:      Supported
9505 W:      https://linuxtv.org
9506 T:      git git://linuxtv.org/media_tree.git
9507 F:      drivers/media/platform/st/sti/hva
9508
9509 HWPOISON MEMORY FAILURE HANDLING
9510 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9511 R:      Miaohe Lin <linmiaohe@huawei.com>
9512 L:      linux-mm@kvack.org
9513 S:      Maintained
9514 F:      mm/hwpoison-inject.c
9515 F:      mm/memory-failure.c
9516
9517 HYCON HY46XX TOUCHSCREEN SUPPORT
9518 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9519 L:      linux-input@vger.kernel.org
9520 S:      Maintained
9521 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9522 F:      drivers/input/touchscreen/hycon-hy46xx.c
9523
9524 HYGON PROCESSOR SUPPORT
9525 M:      Pu Wen <puwen@hygon.cn>
9526 L:      linux-kernel@vger.kernel.org
9527 S:      Maintained
9528 F:      arch/x86/kernel/cpu/hygon.c
9529
9530 HYNIX HI556 SENSOR DRIVER
9531 M:      Shawn Tu <shawnx.tu@intel.com>
9532 L:      linux-media@vger.kernel.org
9533 S:      Maintained
9534 T:      git git://linuxtv.org/media_tree.git
9535 F:      drivers/media/i2c/hi556.c
9536
9537 HYNIX HI846 SENSOR DRIVER
9538 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9539 L:      linux-media@vger.kernel.org
9540 S:      Maintained
9541 F:      drivers/media/i2c/hi846.c
9542
9543 HYNIX HI847 SENSOR DRIVER
9544 M:      Shawn Tu <shawnx.tu@intel.com>
9545 L:      linux-media@vger.kernel.org
9546 S:      Maintained
9547 F:      drivers/media/i2c/hi847.c
9548
9549 Hyper-V/Azure CORE AND DRIVERS
9550 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9551 M:      Haiyang Zhang <haiyangz@microsoft.com>
9552 M:      Wei Liu <wei.liu@kernel.org>
9553 M:      Dexuan Cui <decui@microsoft.com>
9554 L:      linux-hyperv@vger.kernel.org
9555 S:      Supported
9556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9557 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9558 F:      Documentation/ABI/testing/debugfs-hyperv
9559 F:      Documentation/virt/hyperv
9560 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9561 F:      arch/arm64/hyperv
9562 F:      arch/arm64/include/asm/hyperv-tlfs.h
9563 F:      arch/arm64/include/asm/mshyperv.h
9564 F:      arch/x86/hyperv
9565 F:      arch/x86/include/asm/hyperv-tlfs.h
9566 F:      arch/x86/include/asm/mshyperv.h
9567 F:      arch/x86/include/asm/trace/hyperv.h
9568 F:      arch/x86/kernel/cpu/mshyperv.c
9569 F:      drivers/clocksource/hyperv_timer.c
9570 F:      drivers/hid/hid-hyperv.c
9571 F:      drivers/hv/
9572 F:      drivers/input/serio/hyperv-keyboard.c
9573 F:      drivers/iommu/hyperv-iommu.c
9574 F:      drivers/net/ethernet/microsoft/
9575 F:      drivers/net/hyperv/
9576 F:      drivers/pci/controller/pci-hyperv-intf.c
9577 F:      drivers/pci/controller/pci-hyperv.c
9578 F:      drivers/scsi/storvsc_drv.c
9579 F:      drivers/uio/uio_hv_generic.c
9580 F:      drivers/video/fbdev/hyperv_fb.c
9581 F:      include/asm-generic/hyperv-tlfs.h
9582 F:      include/asm-generic/mshyperv.h
9583 F:      include/clocksource/hyperv_timer.h
9584 F:      include/linux/hyperv.h
9585 F:      include/net/mana
9586 F:      include/uapi/linux/hyperv.h
9587 F:      net/vmw_vsock/hyperv_transport.c
9588 F:      tools/hv/
9589
9590 HYPERBUS SUPPORT
9591 M:      Vignesh Raghavendra <vigneshr@ti.com>
9592 L:      linux-mtd@lists.infradead.org
9593 S:      Supported
9594 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9595 C:      irc://irc.oftc.net/mtd
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9597 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9598 F:      drivers/mtd/hyperbus/
9599 F:      include/linux/mtd/hyperbus.h
9600
9601 HYPERVISOR VIRTUAL CONSOLE DRIVER
9602 L:      linuxppc-dev@lists.ozlabs.org
9603 S:      Odd Fixes
9604 F:      drivers/tty/hvc/
9605
9606 I2C ACPI SUPPORT
9607 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9608 L:      linux-i2c@vger.kernel.org
9609 L:      linux-acpi@vger.kernel.org
9610 S:      Maintained
9611 F:      drivers/i2c/i2c-core-acpi.c
9612
9613 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9614 M:      Ajay Gupta <ajayg@nvidia.com>
9615 L:      linux-i2c@vger.kernel.org
9616 S:      Maintained
9617 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9618 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9619
9620 I2C MUXES
9621 M:      Peter Rosin <peda@axentia.se>
9622 L:      linux-i2c@vger.kernel.org
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9625 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9626 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9627 F:      Documentation/i2c/i2c-topology.rst
9628 F:      Documentation/i2c/muxes/
9629 F:      drivers/i2c/i2c-mux.c
9630 F:      drivers/i2c/muxes/
9631 F:      include/linux/i2c-mux.h
9632
9633 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9634 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9635 L:      linux-i2c@vger.kernel.org
9636 S:      Maintained
9637 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9638 F:      drivers/i2c/busses/i2c-mv64xxx.c
9639
9640 I2C OVER PARALLEL PORT
9641 M:      Jean Delvare <jdelvare@suse.com>
9642 L:      linux-i2c@vger.kernel.org
9643 S:      Maintained
9644 F:      Documentation/i2c/busses/i2c-parport.rst
9645 F:      drivers/i2c/busses/i2c-parport.c
9646
9647 I2C SUBSYSTEM
9648 M:      Wolfram Sang <wsa@kernel.org>
9649 L:      linux-i2c@vger.kernel.org
9650 S:      Maintained
9651 W:      https://i2c.wiki.kernel.org/
9652 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9654 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9655 F:      Documentation/i2c/
9656 F:      drivers/i2c/*
9657 F:      include/dt-bindings/i2c/i2c.h
9658 F:      include/linux/i2c-dev.h
9659 F:      include/linux/i2c-smbus.h
9660 F:      include/linux/i2c.h
9661 F:      include/uapi/linux/i2c-*.h
9662 F:      include/uapi/linux/i2c.h
9663
9664 I2C SUBSYSTEM HOST DRIVERS
9665 L:      linux-i2c@vger.kernel.org
9666 S:      Odd Fixes
9667 W:      https://i2c.wiki.kernel.org/
9668 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9670 F:      Documentation/devicetree/bindings/i2c/
9671 F:      drivers/i2c/algos/
9672 F:      drivers/i2c/busses/
9673 F:      include/dt-bindings/i2c/
9674
9675 I2C-TAOS-EVM DRIVER
9676 M:      Jean Delvare <jdelvare@suse.com>
9677 L:      linux-i2c@vger.kernel.org
9678 S:      Maintained
9679 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9680 F:      drivers/i2c/busses/i2c-taos-evm.c
9681
9682 I2C-TINY-USB DRIVER
9683 M:      Till Harbaum <till@harbaum.org>
9684 L:      linux-i2c@vger.kernel.org
9685 S:      Maintained
9686 W:      http://www.harbaum.org/till/i2c_tiny_usb
9687 F:      drivers/i2c/busses/i2c-tiny-usb.c
9688
9689 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9690 M:      Jean Delvare <jdelvare@suse.com>
9691 L:      linux-i2c@vger.kernel.org
9692 S:      Maintained
9693 F:      Documentation/i2c/busses/i2c-ali1535.rst
9694 F:      Documentation/i2c/busses/i2c-ali1563.rst
9695 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9696 F:      Documentation/i2c/busses/i2c-amd756.rst
9697 F:      Documentation/i2c/busses/i2c-amd8111.rst
9698 F:      Documentation/i2c/busses/i2c-i801.rst
9699 F:      Documentation/i2c/busses/i2c-nforce2.rst
9700 F:      Documentation/i2c/busses/i2c-piix4.rst
9701 F:      Documentation/i2c/busses/i2c-sis5595.rst
9702 F:      Documentation/i2c/busses/i2c-sis630.rst
9703 F:      Documentation/i2c/busses/i2c-sis96x.rst
9704 F:      Documentation/i2c/busses/i2c-via.rst
9705 F:      Documentation/i2c/busses/i2c-viapro.rst
9706 F:      drivers/i2c/busses/i2c-ali1535.c
9707 F:      drivers/i2c/busses/i2c-ali1563.c
9708 F:      drivers/i2c/busses/i2c-ali15x3.c
9709 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9710 F:      drivers/i2c/busses/i2c-amd756.c
9711 F:      drivers/i2c/busses/i2c-amd8111.c
9712 F:      drivers/i2c/busses/i2c-i801.c
9713 F:      drivers/i2c/busses/i2c-isch.c
9714 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9715 F:      drivers/i2c/busses/i2c-nforce2.c
9716 F:      drivers/i2c/busses/i2c-piix4.c
9717 F:      drivers/i2c/busses/i2c-sis5595.c
9718 F:      drivers/i2c/busses/i2c-sis630.c
9719 F:      drivers/i2c/busses/i2c-sis96x.c
9720 F:      drivers/i2c/busses/i2c-via.c
9721 F:      drivers/i2c/busses/i2c-viapro.c
9722
9723 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9724 M:      Hans de Goede <hdegoede@redhat.com>
9725 L:      linux-i2c@vger.kernel.org
9726 S:      Maintained
9727 F:      drivers/i2c/busses/i2c-cht-wc.c
9728
9729 I2C/SMBUS ISMT DRIVER
9730 M:      Seth Heasley <seth.heasley@intel.com>
9731 M:      Neil Horman <nhorman@tuxdriver.com>
9732 L:      linux-i2c@vger.kernel.org
9733 F:      Documentation/i2c/busses/i2c-ismt.rst
9734 F:      drivers/i2c/busses/i2c-ismt.c
9735
9736 I2C/SMBUS STUB DRIVER
9737 M:      Jean Delvare <jdelvare@suse.com>
9738 L:      linux-i2c@vger.kernel.org
9739 S:      Maintained
9740 F:      drivers/i2c/i2c-stub.c
9741
9742 I3C DRIVER FOR CADENCE I3C MASTER IP
9743 M:      Przemysław Gaj <pgaj@cadence.com>
9744 S:      Maintained
9745 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9746 F:      drivers/i3c/master/i3c-master-cdns.c
9747
9748 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9749 S:      Orphan
9750 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9751 F:      drivers/i3c/master/dw*
9752
9753 I3C SUBSYSTEM
9754 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9755 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9756 S:      Maintained
9757 C:      irc://chat.freenode.net/linux-i3c
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9759 F:      Documentation/ABI/testing/sysfs-bus-i3c
9760 F:      Documentation/devicetree/bindings/i3c/
9761 F:      Documentation/driver-api/i3c
9762 F:      drivers/i3c/
9763 F:      include/linux/i3c/
9764
9765 IA64 (Itanium) PLATFORM
9766 L:      linux-ia64@vger.kernel.org
9767 S:      Orphan
9768 F:      Documentation/arch/ia64/
9769 F:      arch/ia64/
9770
9771 IBM Operation Panel Input Driver
9772 M:      Eddie James <eajames@linux.ibm.com>
9773 L:      linux-input@vger.kernel.org
9774 S:      Maintained
9775 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9776 F:      drivers/input/misc/ibm-panel.c
9777
9778 IBM Power 842 compression accelerator
9779 M:      Haren Myneni <haren@us.ibm.com>
9780 S:      Supported
9781 F:      crypto/842.c
9782 F:      drivers/crypto/nx/Kconfig
9783 F:      drivers/crypto/nx/Makefile
9784 F:      drivers/crypto/nx/nx-842*
9785 F:      include/linux/sw842.h
9786 F:      lib/842/
9787
9788 IBM Power in-Nest Crypto Acceleration
9789 M:      Breno Leitão <leitao@debian.org>
9790 M:      Nayna Jain <nayna@linux.ibm.com>
9791 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9792 L:      linux-crypto@vger.kernel.org
9793 S:      Supported
9794 F:      drivers/crypto/nx/Kconfig
9795 F:      drivers/crypto/nx/Makefile
9796 F:      drivers/crypto/nx/nx-aes*
9797 F:      drivers/crypto/nx/nx-sha*
9798 F:      drivers/crypto/nx/nx.*
9799 F:      drivers/crypto/nx/nx_csbcpb.h
9800 F:      drivers/crypto/nx/nx_debugfs.c
9801
9802 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9803 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9804 L:      linux-pci@vger.kernel.org
9805 L:      linuxppc-dev@lists.ozlabs.org
9806 S:      Supported
9807 F:      drivers/pci/hotplug/rpadlpar*
9808
9809 IBM Power Linux RAID adapter
9810 M:      Brian King <brking@us.ibm.com>
9811 S:      Supported
9812 F:      drivers/scsi/ipr.*
9813
9814 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9815 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9816 L:      linux-pci@vger.kernel.org
9817 L:      linuxppc-dev@lists.ozlabs.org
9818 S:      Supported
9819 F:      drivers/pci/hotplug/rpaphp*
9820
9821 IBM Power SRIOV Virtual NIC Device Driver
9822 M:      Haren Myneni <haren@linux.ibm.com>
9823 M:      Rick Lindsley <ricklind@linux.ibm.com>
9824 R:      Nick Child <nnac123@linux.ibm.com>
9825 R:      Dany Madden <danymadden@us.ibm.com>
9826 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9827 L:      netdev@vger.kernel.org
9828 S:      Supported
9829 F:      drivers/net/ethernet/ibm/ibmvnic.*
9830
9831 IBM Power Virtual Ethernet Device Driver
9832 M:      Nick Child <nnac123@linux.ibm.com>
9833 L:      netdev@vger.kernel.org
9834 S:      Supported
9835 F:      drivers/net/ethernet/ibm/ibmveth.*
9836
9837 IBM Power Virtual FC Device Drivers
9838 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9839 L:      linux-scsi@vger.kernel.org
9840 S:      Supported
9841 F:      drivers/scsi/ibmvscsi/ibmvfc*
9842
9843 IBM Power Virtual Management Channel Driver
9844 M:      Brad Warrum <bwarrum@linux.ibm.com>
9845 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9846 S:      Supported
9847 F:      drivers/misc/ibmvmc.*
9848
9849 IBM Power Virtual SCSI Device Drivers
9850 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9851 L:      linux-scsi@vger.kernel.org
9852 S:      Supported
9853 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9854 F:      include/scsi/viosrp.h
9855
9856 IBM Power Virtual SCSI Device Target Driver
9857 M:      Michael Cyr <mikecyr@linux.ibm.com>
9858 L:      linux-scsi@vger.kernel.org
9859 L:      target-devel@vger.kernel.org
9860 S:      Supported
9861 F:      drivers/scsi/ibmvscsi_tgt/
9862
9863 IBM Power VMX Cryptographic instructions
9864 M:      Breno Leitão <leitao@debian.org>
9865 M:      Nayna Jain <nayna@linux.ibm.com>
9866 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9867 L:      linux-crypto@vger.kernel.org
9868 S:      Supported
9869 F:      drivers/crypto/vmx/Kconfig
9870 F:      drivers/crypto/vmx/Makefile
9871 F:      drivers/crypto/vmx/aes*
9872 F:      drivers/crypto/vmx/ghash*
9873 F:      drivers/crypto/vmx/ppc-xlate.pl
9874 F:      drivers/crypto/vmx/vmx.c
9875
9876 IBM ServeRAID RAID DRIVER
9877 S:      Orphan
9878 F:      drivers/scsi/ips.*
9879
9880 ICH LPC AND GPIO DRIVER
9881 M:      Peter Tyser <ptyser@xes-inc.com>
9882 S:      Maintained
9883 F:      drivers/gpio/gpio-ich.c
9884 F:      drivers/mfd/lpc_ich.c
9885
9886 ICY I2C DRIVER
9887 M:      Max Staudt <max@enpas.org>
9888 L:      linux-i2c@vger.kernel.org
9889 S:      Maintained
9890 F:      drivers/i2c/busses/i2c-icy.c
9891
9892 IDEAPAD LAPTOP EXTRAS DRIVER
9893 M:      Ike Panhc <ike.pan@canonical.com>
9894 L:      platform-driver-x86@vger.kernel.org
9895 S:      Maintained
9896 W:      http://launchpad.net/ideapad-laptop
9897 F:      drivers/platform/x86/ideapad-laptop.c
9898
9899 IDEAPAD LAPTOP SLIDEBAR DRIVER
9900 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9901 L:      linux-input@vger.kernel.org
9902 S:      Maintained
9903 W:      https://github.com/o2genum/ideapad-slidebar
9904 F:      drivers/input/misc/ideapad_slidebar.c
9905
9906 IDMAPPED MOUNTS
9907 M:      Christian Brauner <brauner@kernel.org>
9908 M:      Seth Forshee <sforshee@kernel.org>
9909 L:      linux-fsdevel@vger.kernel.org
9910 S:      Maintained
9911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9912 F:      Documentation/filesystems/idmappings.rst
9913 F:      include/linux/mnt_idmapping.*
9914 F:      tools/testing/selftests/mount_setattr/
9915
9916 IDT VersaClock 5 CLOCK DRIVER
9917 M:      Luca Ceresoli <luca@lucaceresoli.net>
9918 S:      Maintained
9919 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9920 F:      drivers/clk/clk-versaclock5.c
9921
9922 IEEE 802.15.4 SUBSYSTEM
9923 M:      Alexander Aring <alex.aring@gmail.com>
9924 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9925 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9926 L:      linux-wpan@vger.kernel.org
9927 S:      Maintained
9928 W:      https://linux-wpan.org/
9929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9931 F:      Documentation/networking/ieee802154.rst
9932 F:      drivers/net/ieee802154/
9933 F:      include/linux/ieee802154.h
9934 F:      include/linux/nl802154.h
9935 F:      include/net/af_ieee802154.h
9936 F:      include/net/cfg802154.h
9937 F:      include/net/ieee802154_netdev.h
9938 F:      include/net/mac802154.h
9939 F:      include/net/nl802154.h
9940 F:      net/ieee802154/
9941 F:      net/mac802154/
9942
9943 IFE PROTOCOL
9944 M:      Yotam Gigi <yotam.gi@gmail.com>
9945 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9946 F:      include/net/ife.h
9947 F:      include/uapi/linux/ife.h
9948 F:      net/ife
9949
9950 IGORPLUG-USB IR RECEIVER
9951 M:      Sean Young <sean@mess.org>
9952 L:      linux-media@vger.kernel.org
9953 S:      Maintained
9954 F:      drivers/media/rc/igorplugusb.c
9955
9956 IGUANAWORKS USB IR TRANSCEIVER
9957 M:      Sean Young <sean@mess.org>
9958 L:      linux-media@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/media/rc/iguanair.c
9961
9962 IIO DIGITAL POTENTIOMETER DAC
9963 M:      Peter Rosin <peda@axentia.se>
9964 L:      linux-iio@vger.kernel.org
9965 S:      Maintained
9966 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9967 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9968 F:      drivers/iio/dac/dpot-dac.c
9969
9970 IIO ENVELOPE DETECTOR
9971 M:      Peter Rosin <peda@axentia.se>
9972 L:      linux-iio@vger.kernel.org
9973 S:      Maintained
9974 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9975 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9976 F:      drivers/iio/adc/envelope-detector.c
9977
9978 IIO MULTIPLEXER
9979 M:      Peter Rosin <peda@axentia.se>
9980 L:      linux-iio@vger.kernel.org
9981 S:      Maintained
9982 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9983 F:      drivers/iio/multiplexer/iio-mux.c
9984
9985 IIO SCMI BASED DRIVER
9986 M:      Jyoti Bhayana <jbhayana@google.com>
9987 L:      linux-iio@vger.kernel.org
9988 S:      Maintained
9989 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9990
9991 IIO SUBSYSTEM AND DRIVERS
9992 M:      Jonathan Cameron <jic23@kernel.org>
9993 R:      Lars-Peter Clausen <lars@metafoo.de>
9994 L:      linux-iio@vger.kernel.org
9995 S:      Maintained
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9997 F:      Documentation/ABI/testing/configfs-iio*
9998 F:      Documentation/ABI/testing/sysfs-bus-iio*
9999 F:      Documentation/devicetree/bindings/iio/
10000 F:      drivers/iio/
10001 F:      drivers/staging/iio/
10002 F:      include/dt-bindings/iio/
10003 F:      include/linux/iio/
10004 F:      tools/iio/
10005
10006 IIO UNIT CONVERTER
10007 M:      Peter Rosin <peda@axentia.se>
10008 L:      linux-iio@vger.kernel.org
10009 S:      Maintained
10010 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10011 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10012 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10013 F:      drivers/iio/afe/iio-rescale.c
10014
10015 IKANOS/ADI EAGLE ADSL USB DRIVER
10016 M:      Matthieu Castet <castet.matthieu@free.fr>
10017 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10018 S:      Maintained
10019 F:      drivers/usb/atm/ueagle-atm.c
10020
10021 IMAGIS TOUCHSCREEN DRIVER
10022 M:      Markuss Broks <markuss.broks@gmail.com>
10023 S:      Maintained
10024 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10025 F:      drivers/input/touchscreen/imagis.c
10026
10027 IMGTEC ASCII LCD DRIVER
10028 M:      Paul Burton <paulburton@kernel.org>
10029 S:      Maintained
10030 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10031 F:      drivers/auxdisplay/img-ascii-lcd.c
10032
10033 IMGTEC IR DECODER DRIVER
10034 S:      Orphan
10035 F:      drivers/media/rc/img-ir/
10036
10037 IMON SOUNDGRAPH USB IR RECEIVER
10038 M:      Sean Young <sean@mess.org>
10039 L:      linux-media@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/media/rc/imon.c
10042 F:      drivers/media/rc/imon_raw.c
10043
10044 IMS TWINTURBO FRAMEBUFFER DRIVER
10045 L:      linux-fbdev@vger.kernel.org
10046 S:      Orphan
10047 F:      drivers/video/fbdev/imsttfb.c
10048
10049 INA209 HARDWARE MONITOR DRIVER
10050 M:      Guenter Roeck <linux@roeck-us.net>
10051 L:      linux-hwmon@vger.kernel.org
10052 S:      Maintained
10053 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10054 F:      Documentation/hwmon/ina209.rst
10055 F:      drivers/hwmon/ina209.c
10056
10057 INA2XX HARDWARE MONITOR DRIVER
10058 M:      Guenter Roeck <linux@roeck-us.net>
10059 L:      linux-hwmon@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/hwmon/ina2xx.rst
10062 F:      drivers/hwmon/ina2xx.c
10063 F:      include/linux/platform_data/ina2xx.h
10064
10065 INDEX OF FURTHER KERNEL DOCUMENTATION
10066 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10067 S:      Maintained
10068 F:      Documentation/process/kernel-docs.rst
10069
10070 INDUSTRY PACK SUBSYSTEM (IPACK)
10071 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10072 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10073 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10074 L:      industrypack-devel@lists.sourceforge.net
10075 S:      Maintained
10076 W:      http://industrypack.sourceforge.net
10077 F:      drivers/ipack/
10078
10079 INFINEON DPS310 Driver
10080 M:      Eddie James <eajames@linux.ibm.com>
10081 L:      linux-iio@vger.kernel.org
10082 S:      Maintained
10083 F:      drivers/iio/pressure/dps310.c
10084
10085 INFINEON PEB2466 ASoC CODEC
10086 M:      Herve Codina <herve.codina@bootlin.com>
10087 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10088 S:      Maintained
10089 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10090 F:      sound/soc/codecs/peb2466.c
10091
10092 INFINIBAND SUBSYSTEM
10093 M:      Jason Gunthorpe <jgg@nvidia.com>
10094 M:      Leon Romanovsky <leonro@nvidia.com>
10095 L:      linux-rdma@vger.kernel.org
10096 S:      Supported
10097 W:      https://github.com/linux-rdma/rdma-core
10098 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10100 F:      Documentation/devicetree/bindings/infiniband/
10101 F:      Documentation/infiniband/
10102 F:      drivers/infiniband/
10103 F:      include/rdma/
10104 F:      include/trace/events/ib_mad.h
10105 F:      include/trace/events/ib_umad.h
10106 F:      include/trace/misc/rdma.h
10107 F:      include/uapi/linux/if_infiniband.h
10108 F:      include/uapi/rdma/
10109 F:      samples/bpf/ibumad_kern.c
10110 F:      samples/bpf/ibumad_user.c
10111
10112 INGENIC JZ4780 NAND DRIVER
10113 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10114 L:      linux-mtd@lists.infradead.org
10115 L:      linux-mips@vger.kernel.org
10116 S:      Maintained
10117 F:      drivers/mtd/nand/raw/ingenic/
10118
10119 INGENIC JZ47xx SoCs
10120 M:      Paul Cercueil <paul@crapouillou.net>
10121 L:      linux-mips@vger.kernel.org
10122 S:      Maintained
10123 F:      arch/mips/boot/dts/ingenic/
10124 F:      arch/mips/generic/board-ingenic.c
10125 F:      arch/mips/include/asm/mach-ingenic/
10126 F:      arch/mips/ingenic/Kconfig
10127 F:      drivers/clk/ingenic/
10128 F:      drivers/dma/dma-jz4780.c
10129 F:      drivers/gpu/drm/ingenic/
10130 F:      drivers/i2c/busses/i2c-jz4780.c
10131 F:      drivers/iio/adc/ingenic-adc.c
10132 F:      drivers/irqchip/irq-ingenic.c
10133 F:      drivers/memory/jz4780-nemc.c
10134 F:      drivers/mmc/host/jz4740_mmc.c
10135 F:      drivers/mtd/nand/raw/ingenic/
10136 F:      drivers/pinctrl/pinctrl-ingenic.c
10137 F:      drivers/power/supply/ingenic-battery.c
10138 F:      drivers/pwm/pwm-jz4740.c
10139 F:      drivers/remoteproc/ingenic_rproc.c
10140 F:      drivers/rtc/rtc-jz4740.c
10141 F:      drivers/tty/serial/8250/8250_ingenic.c
10142 F:      drivers/usb/musb/jz4740.c
10143 F:      drivers/watchdog/jz4740_wdt.c
10144 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10145 F:      include/linux/mfd/ingenic-tcu.h
10146 F:      sound/soc/codecs/jz47*
10147 F:      sound/soc/jz4740/
10148
10149 INJOINIC IP5xxx POWER BANK IC DRIVER
10150 M:      Samuel Holland <samuel@sholland.org>
10151 S:      Maintained
10152 F:      drivers/power/supply/ip5xxx_power.c
10153
10154 INOTIFY
10155 M:      Jan Kara <jack@suse.cz>
10156 R:      Amir Goldstein <amir73il@gmail.com>
10157 L:      linux-fsdevel@vger.kernel.org
10158 S:      Maintained
10159 F:      Documentation/filesystems/inotify.rst
10160 F:      fs/notify/inotify/
10161 F:      include/linux/inotify.h
10162 F:      include/uapi/linux/inotify.h
10163
10164 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10165 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10166 L:      linux-input@vger.kernel.org
10167 S:      Maintained
10168 Q:      http://patchwork.kernel.org/project/linux-input/list/
10169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10170 F:      Documentation/devicetree/bindings/input/
10171 F:      Documentation/devicetree/bindings/serio/
10172 F:      Documentation/input/
10173 F:      drivers/input/
10174 F:      include/dt-bindings/input/
10175 F:      include/linux/input.h
10176 F:      include/linux/input/
10177 F:      include/uapi/linux/input-event-codes.h
10178 F:      include/uapi/linux/input.h
10179
10180 INPUT MULTITOUCH (MT) PROTOCOL
10181 M:      Henrik Rydberg <rydberg@bitmath.org>
10182 L:      linux-input@vger.kernel.org
10183 S:      Odd fixes
10184 F:      Documentation/input/multi-touch-protocol.rst
10185 F:      drivers/input/input-mt.c
10186 K:      \b(ABS|SYN)_MT_
10187
10188 INSIDE SECURE CRYPTO DRIVER
10189 M:      Antoine Tenart <atenart@kernel.org>
10190 L:      linux-crypto@vger.kernel.org
10191 S:      Maintained
10192 F:      drivers/crypto/inside-secure/
10193
10194 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10195 M:      Mimi Zohar <zohar@linux.ibm.com>
10196 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10197 L:      linux-integrity@vger.kernel.org
10198 S:      Supported
10199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10200 F:      security/integrity/ima/
10201 F:      security/integrity/
10202
10203 INTEL 810/815 FRAMEBUFFER DRIVER
10204 M:      Antonino Daplas <adaplas@gmail.com>
10205 L:      linux-fbdev@vger.kernel.org
10206 S:      Maintained
10207 F:      drivers/video/fbdev/i810/
10208
10209 INTEL 8255 GPIO DRIVER
10210 M:      William Breathitt Gray <william.gray@linaro.org>
10211 L:      linux-gpio@vger.kernel.org
10212 S:      Maintained
10213 F:      drivers/gpio/gpio-i8255.c
10214 F:      drivers/gpio/gpio-i8255.h
10215
10216 INTEL ASoC DRIVERS
10217 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10218 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10219 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10220 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10221 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10222 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10223 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10224 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10225 S:      Supported
10226 F:      sound/soc/intel/
10227
10228 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10229 M:      Hans de Goede <hdegoede@redhat.com>
10230 L:      platform-driver-x86@vger.kernel.org
10231 S:      Maintained
10232 F:      drivers/platform/x86/intel/atomisp2/pm.c
10233
10234 INTEL ATOMISP2 LED DRIVER
10235 M:      Hans de Goede <hdegoede@redhat.com>
10236 L:      platform-driver-x86@vger.kernel.org
10237 S:      Maintained
10238 F:      drivers/platform/x86/intel/atomisp2/led.c
10239
10240 INTEL BIOS SAR INT1092 DRIVER
10241 M:      Shravan Sudhakar <s.shravan@intel.com>
10242 M:      Intel Corporation <linuxwwan@intel.com>
10243 L:      platform-driver-x86@vger.kernel.org
10244 S:      Maintained
10245 F:      drivers/platform/x86/intel/int1092/
10246
10247 INTEL BROXTON PMC DRIVER
10248 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10249 M:      Zha Qipeng <qipeng.zha@intel.com>
10250 S:      Maintained
10251 F:      drivers/mfd/intel_pmc_bxt.c
10252 F:      include/linux/mfd/intel_pmc_bxt.h
10253
10254 INTEL C600 SERIES SAS CONTROLLER DRIVER
10255 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10256 L:      linux-scsi@vger.kernel.org
10257 S:      Supported
10258 T:      git git://git.code.sf.net/p/intel-sas/isci
10259 F:      drivers/scsi/isci/
10260
10261 INTEL CPU family model numbers
10262 M:      Tony Luck <tony.luck@intel.com>
10263 M:      x86@kernel.org
10264 L:      linux-kernel@vger.kernel.org
10265 S:      Supported
10266 F:      arch/x86/include/asm/intel-family.h
10267
10268 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10269 M:      Jani Nikula <jani.nikula@linux.intel.com>
10270 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10271 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10272 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10273 L:      intel-gfx@lists.freedesktop.org
10274 S:      Supported
10275 W:      https://01.org/linuxgraphics/
10276 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10277 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10278 C:      irc://irc.oftc.net/intel-gfx
10279 T:      git git://anongit.freedesktop.org/drm-intel
10280 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10281 F:      Documentation/gpu/i915.rst
10282 F:      drivers/gpu/drm/i915/
10283 F:      include/drm/i915*
10284 F:      include/uapi/drm/i915_drm.h
10285
10286 INTEL ETHERNET DRIVERS
10287 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10288 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10289 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10290 S:      Supported
10291 W:      http://www.intel.com/support/feedback.htm
10292 W:      http://e1000.sourceforge.net/
10293 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10296 F:      Documentation/networking/device_drivers/ethernet/intel/
10297 F:      drivers/net/ethernet/intel/
10298 F:      drivers/net/ethernet/intel/*/
10299 F:      include/linux/avf/virtchnl.h
10300 F:      include/linux/net/intel/iidc.h
10301
10302 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10303 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10304 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10305 L:      linux-rdma@vger.kernel.org
10306 S:      Supported
10307 F:      drivers/infiniband/hw/irdma/
10308 F:      include/uapi/rdma/irdma-abi.h
10309
10310 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10311 M:      Maik Broemme <mbroemme@libmpq.org>
10312 L:      linux-fbdev@vger.kernel.org
10313 S:      Maintained
10314 F:      Documentation/fb/intelfb.rst
10315 F:      drivers/video/fbdev/intelfb/
10316
10317 INTEL GPIO DRIVERS
10318 M:      Andy Shevchenko <andy@kernel.org>
10319 L:      linux-gpio@vger.kernel.org
10320 S:      Supported
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10322 F:      drivers/gpio/gpio-elkhartlake.c
10323 F:      drivers/gpio/gpio-ich.c
10324 F:      drivers/gpio/gpio-merrifield.c
10325 F:      drivers/gpio/gpio-ml-ioh.c
10326 F:      drivers/gpio/gpio-pch.c
10327 F:      drivers/gpio/gpio-sch.c
10328 F:      drivers/gpio/gpio-sodaville.c
10329 F:      drivers/gpio/gpio-tangier.c
10330
10331 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10332 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10333 M:      Zhi Wang <zhi.a.wang@intel.com>
10334 L:      intel-gvt-dev@lists.freedesktop.org
10335 L:      intel-gfx@lists.freedesktop.org
10336 S:      Supported
10337 W:      https://01.org/igvt-g
10338 T:      git https://github.com/intel/gvt-linux.git
10339 F:      drivers/gpu/drm/i915/gvt/
10340
10341 INTEL HID EVENT DRIVER
10342 M:      Alex Hung <alexhung@gmail.com>
10343 L:      platform-driver-x86@vger.kernel.org
10344 S:      Maintained
10345 F:      drivers/platform/x86/intel/hid.c
10346
10347 INTEL I/OAT DMA DRIVER
10348 M:      Dave Jiang <dave.jiang@intel.com>
10349 R:      Dan Williams <dan.j.williams@intel.com>
10350 L:      dmaengine@vger.kernel.org
10351 S:      Supported
10352 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10353 F:      drivers/dma/ioat*
10354
10355 INTEL IDXD DRIVER
10356 M:      Fenghua Yu <fenghua.yu@intel.com>
10357 M:      Dave Jiang <dave.jiang@intel.com>
10358 L:      dmaengine@vger.kernel.org
10359 S:      Supported
10360 F:      drivers/dma/idxd/*
10361 F:      include/uapi/linux/idxd.h
10362
10363 INTEL IDLE DRIVER
10364 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10365 M:      Len Brown <lenb@kernel.org>
10366 L:      linux-pm@vger.kernel.org
10367 S:      Supported
10368 B:      https://bugzilla.kernel.org
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10370 F:      drivers/idle/intel_idle.c
10371
10372 INTEL IN FIELD SCAN (IFS) DEVICE
10373 M:      Jithu Joseph <jithu.joseph@intel.com>
10374 R:      Ashok Raj <ashok.raj@intel.com>
10375 R:      Tony Luck <tony.luck@intel.com>
10376 S:      Maintained
10377 F:      drivers/platform/x86/intel/ifs
10378 F:      include/trace/events/intel_ifs.h
10379
10380 INTEL INTEGRATED SENSOR HUB DRIVER
10381 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10382 M:      Jiri Kosina <jikos@kernel.org>
10383 L:      linux-input@vger.kernel.org
10384 S:      Maintained
10385 F:      drivers/hid/intel-ish-hid/
10386
10387 INTEL IOMMU (VT-d)
10388 M:      David Woodhouse <dwmw2@infradead.org>
10389 M:      Lu Baolu <baolu.lu@linux.intel.com>
10390 L:      iommu@lists.linux.dev
10391 S:      Supported
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10393 F:      drivers/iommu/intel/
10394
10395 INTEL IPU3 CSI-2 CIO2 DRIVER
10396 M:      Yong Zhi <yong.zhi@intel.com>
10397 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10398 M:      Bingbu Cao <bingbu.cao@intel.com>
10399 M:      Dan Scally <djrscally@gmail.com>
10400 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10401 L:      linux-media@vger.kernel.org
10402 S:      Maintained
10403 T:      git git://linuxtv.org/media_tree.git
10404 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10405 F:      drivers/media/pci/intel/ipu3/
10406
10407 INTEL IPU3 CSI-2 IMGU DRIVER
10408 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10409 R:      Bingbu Cao <bingbu.cao@intel.com>
10410 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10411 L:      linux-media@vger.kernel.org
10412 S:      Maintained
10413 F:      Documentation/admin-guide/media/ipu3.rst
10414 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10415 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10416 F:      drivers/staging/media/ipu3/
10417
10418 INTEL IXP4XX CRYPTO SUPPORT
10419 M:      Corentin Labbe <clabbe@baylibre.com>
10420 L:      linux-crypto@vger.kernel.org
10421 S:      Maintained
10422 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
10423
10424 INTEL ISHTP ECLITE DRIVER
10425 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10426 L:      platform-driver-x86@vger.kernel.org
10427 S:      Supported
10428 F:      drivers/platform/x86/intel/ishtp_eclite.c
10429
10430 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10431 M:      Krzysztof Halasa <khalasa@piap.pl>
10432 S:      Maintained
10433 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10434 F:      drivers/net/wan/ixp4xx_hss.c
10435 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10436 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10437 F:      include/linux/soc/ixp4xx/npe.h
10438 F:      include/linux/soc/ixp4xx/qmgr.h
10439
10440 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10441 M:      Deepak Saxena <dsaxena@plexity.net>
10442 S:      Maintained
10443 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10444 F:      drivers/char/hw_random/ixp4xx-rng.c
10445
10446 INTEL KEEM BAY DRM DRIVER
10447 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10448 M:      Edmund Dea <edmund.j.dea@intel.com>
10449 S:      Maintained
10450 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10451 F:      drivers/gpu/drm/kmb/
10452
10453 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10454 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10455 S:      Maintained
10456 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10457 F:      drivers/crypto/intel/keembay/Kconfig
10458 F:      drivers/crypto/intel/keembay/Makefile
10459 F:      drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
10460 F:      drivers/crypto/intel/keembay/ocs-aes.c
10461 F:      drivers/crypto/intel/keembay/ocs-aes.h
10462
10463 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10464 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10465 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10466 M:      Mark Gross <mgross@linux.intel.com>
10467 S:      Maintained
10468 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10469 F:      drivers/crypto/intel/keembay/Kconfig
10470 F:      drivers/crypto/intel/keembay/Makefile
10471 F:      drivers/crypto/intel/keembay/keembay-ocs-ecc.c
10472
10473 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10474 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10475 M:      Declan Murphy <declan.murphy@intel.com>
10476 S:      Maintained
10477 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10478 F:      drivers/crypto/intel/keembay/Kconfig
10479 F:      drivers/crypto/intel/keembay/Makefile
10480 F:      drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
10481 F:      drivers/crypto/intel/keembay/ocs-hcu.c
10482 F:      drivers/crypto/intel/keembay/ocs-hcu.h
10483
10484 INTEL THUNDER BAY EMMC PHY DRIVER
10485 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10486 M:      Rashmi A <rashmi.a@intel.com>
10487 S:      Maintained
10488 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10489 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10490
10491 INTEL MANAGEMENT ENGINE (mei)
10492 M:      Tomas Winkler <tomas.winkler@intel.com>
10493 L:      linux-kernel@vger.kernel.org
10494 S:      Supported
10495 F:      Documentation/driver-api/mei/*
10496 F:      drivers/misc/mei/
10497 F:      drivers/watchdog/mei_wdt.c
10498 F:      include/linux/mei_aux.h
10499 F:      include/linux/mei_cl_bus.h
10500 F:      include/uapi/linux/mei.h
10501 F:      include/uapi/linux/uuid.h
10502 F:      samples/mei/*
10503
10504 INTEL MAX 10 BMC MFD DRIVER
10505 M:      Xu Yilun <yilun.xu@intel.com>
10506 R:      Tom Rix <trix@redhat.com>
10507 S:      Maintained
10508 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10509 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10510 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10511 F:      drivers/mfd/intel-m10-bmc*
10512 F:      include/linux/mfd/intel-m10-bmc.h
10513
10514 INTEL MENLOW THERMAL DRIVER
10515 M:      Sujith Thomas <sujith.thomas@intel.com>
10516 L:      linux-pm@vger.kernel.org
10517 S:      Supported
10518 F:      drivers/thermal/intel/intel_menlow.c
10519
10520 INTEL P-Unit IPC DRIVER
10521 M:      Zha Qipeng <qipeng.zha@intel.com>
10522 L:      platform-driver-x86@vger.kernel.org
10523 S:      Maintained
10524 F:      arch/x86/include/asm/intel_punit_ipc.h
10525 F:      drivers/platform/x86/intel/punit_ipc.c
10526
10527 INTEL PMC CORE DRIVER
10528 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10529 M:      David E Box <david.e.box@intel.com>
10530 L:      platform-driver-x86@vger.kernel.org
10531 S:      Maintained
10532 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10533 F:      drivers/platform/x86/intel/pmc/
10534
10535 INTEL PMIC GPIO DRIVERS
10536 M:      Andy Shevchenko <andy@kernel.org>
10537 S:      Supported
10538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10539 F:      drivers/gpio/gpio-*cove.c
10540
10541 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10542 M:      Andy Shevchenko <andy@kernel.org>
10543 S:      Supported
10544 F:      drivers/mfd/intel_soc_pmic*
10545 F:      include/linux/mfd/intel_soc_pmic*
10546
10547 INTEL PMT DRIVERS
10548 M:      David E. Box <david.e.box@linux.intel.com>
10549 S:      Supported
10550 F:      drivers/platform/x86/intel/pmt/
10551
10552 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10553 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10554 L:      linux-wireless@vger.kernel.org
10555 S:      Maintained
10556 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10557 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10558 F:      drivers/net/wireless/intel/ipw2x00/
10559
10560 INTEL PSTATE DRIVER
10561 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10562 M:      Len Brown <lenb@kernel.org>
10563 L:      linux-pm@vger.kernel.org
10564 S:      Supported
10565 F:      drivers/cpufreq/intel_pstate.c
10566
10567 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10568 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10569 L:      linux-iio@vger.kernel.org
10570 F:      drivers/counter/intel-qep.c
10571
10572 INTEL SCU DRIVERS
10573 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10574 S:      Maintained
10575 F:      arch/x86/include/asm/intel_scu_ipc.h
10576 F:      drivers/platform/x86/intel_scu_*
10577
10578 INTEL SDSI DRIVER
10579 M:      David E. Box <david.e.box@linux.intel.com>
10580 S:      Supported
10581 F:      drivers/platform/x86/intel/sdsi.c
10582 F:      tools/arch/x86/intel_sdsi/
10583 F:      tools/testing/selftests/drivers/sdsi/
10584
10585 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10586 M:      Daniel Scally <djrscally@gmail.com>
10587 S:      Maintained
10588 F:      drivers/platform/x86/intel/int3472/
10589
10590 INTEL SPEED SELECT TECHNOLOGY
10591 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10592 L:      platform-driver-x86@vger.kernel.org
10593 S:      Maintained
10594 F:      drivers/platform/x86/intel/speed_select_if/
10595 F:      include/uapi/linux/isst_if.h
10596 F:      tools/power/x86/intel-speed-select/
10597
10598 INTEL STRATIX10 FIRMWARE DRIVERS
10599 M:      Dinh Nguyen <dinguyen@kernel.org>
10600 L:      linux-kernel@vger.kernel.org
10601 S:      Maintained
10602 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10603 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10604 F:      drivers/firmware/stratix10-rsu.c
10605 F:      drivers/firmware/stratix10-svc.c
10606 F:      include/linux/firmware/intel/stratix10-smc.h
10607 F:      include/linux/firmware/intel/stratix10-svc-client.h
10608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10609
10610 INTEL TELEMETRY DRIVER
10611 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10612 M:      "David E. Box" <david.e.box@linux.intel.com>
10613 L:      platform-driver-x86@vger.kernel.org
10614 S:      Maintained
10615 F:      arch/x86/include/asm/intel_telemetry.h
10616 F:      drivers/platform/x86/intel/telemetry/
10617
10618 INTEL TPMI DRIVER
10619 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10620 L:      platform-driver-x86@vger.kernel.org
10621 S:      Maintained
10622 F:      drivers/platform/x86/intel/tpmi.c
10623 F:      include/linux/intel_tpmi.h
10624
10625 INTEL UNCORE FREQUENCY CONTROL
10626 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10627 L:      platform-driver-x86@vger.kernel.org
10628 S:      Maintained
10629 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10630 F:      drivers/platform/x86/intel/uncore-frequency/
10631
10632 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10633 M:      David E. Box <david.e.box@linux.intel.com>
10634 S:      Supported
10635 F:      drivers/platform/x86/intel/vsec.*
10636
10637 INTEL VIRTUAL BUTTON DRIVER
10638 M:      AceLan Kao <acelan.kao@canonical.com>
10639 L:      platform-driver-x86@vger.kernel.org
10640 S:      Maintained
10641 F:      drivers/platform/x86/intel/vbtn.c
10642
10643 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10644 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10645 L:      linux-wireless@vger.kernel.org
10646 S:      Supported
10647 F:      drivers/net/wireless/intel/iwlegacy/
10648
10649 INTEL WIRELESS WIFI LINK (iwlwifi)
10650 M:      Gregory Greenman <gregory.greenman@intel.com>
10651 L:      linux-wireless@vger.kernel.org
10652 S:      Supported
10653 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10655 F:      drivers/net/wireless/intel/iwlwifi/
10656
10657 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10658 M:      Jithu Joseph <jithu.joseph@intel.com>
10659 R:      Maurice Ma <maurice.ma@intel.com>
10660 S:      Maintained
10661 W:      https://slimbootloader.github.io/security/firmware-update.html
10662 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10663
10664 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10665 L:      Dell.Client.Kernel@dell.com
10666 S:      Maintained
10667 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10668
10669 INTEL WWAN IOSM DRIVER
10670 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10671 M:      Intel Corporation <linuxwwan@intel.com>
10672 L:      netdev@vger.kernel.org
10673 S:      Maintained
10674 F:      drivers/net/wwan/iosm/
10675
10676 INTEL(R) TRACE HUB
10677 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10678 S:      Supported
10679 F:      Documentation/trace/intel_th.rst
10680 F:      drivers/hwtracing/intel_th/
10681 F:      include/linux/intel_th.h
10682
10683 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10684 M:      Ning Sun <ning.sun@intel.com>
10685 L:      tboot-devel@lists.sourceforge.net
10686 S:      Supported
10687 W:      http://tboot.sourceforge.net
10688 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10689 F:      Documentation/arch/x86/intel_txt.rst
10690 F:      arch/x86/kernel/tboot.c
10691 F:      include/linux/tboot.h
10692
10693 INTEL SGX
10694 M:      Jarkko Sakkinen <jarkko@kernel.org>
10695 R:      Dave Hansen <dave.hansen@linux.intel.com>
10696 L:      linux-sgx@vger.kernel.org
10697 S:      Supported
10698 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10700 F:      Documentation/arch/x86/sgx.rst
10701 F:      arch/x86/entry/vdso/vsgx.S
10702 F:      arch/x86/include/asm/sgx.h
10703 F:      arch/x86/include/uapi/asm/sgx.h
10704 F:      arch/x86/kernel/cpu/sgx/*
10705 F:      tools/testing/selftests/sgx/*
10706 K:      \bSGX_
10707
10708 INTERCONNECT API
10709 M:      Georgi Djakov <djakov@kernel.org>
10710 L:      linux-pm@vger.kernel.org
10711 S:      Maintained
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10713 F:      Documentation/devicetree/bindings/interconnect/
10714 F:      Documentation/driver-api/interconnect.rst
10715 F:      drivers/interconnect/
10716 F:      include/dt-bindings/interconnect/
10717 F:      include/linux/interconnect-provider.h
10718 F:      include/linux/interconnect.h
10719
10720 INTERRUPT COUNTER DRIVER
10721 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10722 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10723 L:      linux-iio@vger.kernel.org
10724 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10725 F:      drivers/counter/interrupt-cnt.c
10726
10727 INTERSIL ISL7998X VIDEO DECODER DRIVER
10728 M:      Michael Tretter <m.tretter@pengutronix.de>
10729 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10730 L:      linux-media@vger.kernel.org
10731 S:      Maintained
10732 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10733 F:      drivers/media/i2c/isl7998x.c
10734
10735 INVENSENSE ICM-426xx IMU DRIVER
10736 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10737 L:      linux-iio@vger.kernel.org
10738 S:      Maintained
10739 W:      https://invensense.tdk.com/
10740 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10741 F:      drivers/iio/imu/inv_icm42600/
10742
10743 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10744 M:      Linus Walleij <linus.walleij@linaro.org>
10745 L:      linux-iio@vger.kernel.org
10746 S:      Maintained
10747 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10748 F:      drivers/iio/gyro/mpu3050*
10749
10750 IOC3 ETHERNET DRIVER
10751 M:      Ralf Baechle <ralf@linux-mips.org>
10752 L:      linux-mips@vger.kernel.org
10753 S:      Maintained
10754 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10755
10756 IOMAP FILESYSTEM LIBRARY
10757 M:      Christoph Hellwig <hch@infradead.org>
10758 M:      Darrick J. Wong <djwong@kernel.org>
10759 L:      linux-xfs@vger.kernel.org
10760 L:      linux-fsdevel@vger.kernel.org
10761 S:      Supported
10762 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10763 F:      fs/iomap/
10764 F:      include/linux/iomap.h
10765
10766 IOMMU DMA-API LAYER
10767 M:      Robin Murphy <robin.murphy@arm.com>
10768 L:      iommu@lists.linux.dev
10769 S:      Maintained
10770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10771 F:      drivers/iommu/dma-iommu.c
10772 F:      drivers/iommu/dma-iommu.h
10773 F:      drivers/iommu/iova.c
10774 F:      include/linux/iova.h
10775
10776 IOMMUFD
10777 M:      Jason Gunthorpe <jgg@nvidia.com>
10778 M:      Kevin Tian <kevin.tian@intel.com>
10779 L:      iommu@lists.linux.dev
10780 S:      Maintained
10781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10782 F:      Documentation/userspace-api/iommufd.rst
10783 F:      drivers/iommu/iommufd/
10784 F:      include/linux/iommufd.h
10785 F:      include/uapi/linux/iommufd.h
10786 F:      tools/testing/selftests/iommu/
10787
10788 IOMMU SUBSYSTEM
10789 M:      Joerg Roedel <joro@8bytes.org>
10790 M:      Will Deacon <will@kernel.org>
10791 R:      Robin Murphy <robin.murphy@arm.com>
10792 L:      iommu@lists.linux.dev
10793 S:      Maintained
10794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10795 F:      Documentation/devicetree/bindings/iommu/
10796 F:      Documentation/userspace-api/iommu.rst
10797 F:      drivers/iommu/
10798 F:      include/linux/iommu.h
10799 F:      include/linux/iova.h
10800 F:      include/linux/of_iommu.h
10801 F:      include/uapi/linux/iommu.h
10802
10803 IOSYS-MAP HELPERS
10804 M:      Thomas Zimmermann <tzimmermann@suse.de>
10805 L:      dri-devel@lists.freedesktop.org
10806 S:      Maintained
10807 T:      git git://anongit.freedesktop.org/drm/drm-misc
10808 F:      include/linux/iosys-map.h
10809
10810 IO_URING
10811 M:      Jens Axboe <axboe@kernel.dk>
10812 R:      Pavel Begunkov <asml.silence@gmail.com>
10813 L:      io-uring@vger.kernel.org
10814 S:      Maintained
10815 T:      git git://git.kernel.dk/linux-block
10816 T:      git git://git.kernel.dk/liburing
10817 F:      io_uring/
10818 F:      include/linux/io_uring.h
10819 F:      include/linux/io_uring_types.h
10820 F:      include/trace/events/io_uring.h
10821 F:      include/uapi/linux/io_uring.h
10822 F:      tools/io_uring/
10823
10824 IPMI SUBSYSTEM
10825 M:      Corey Minyard <minyard@acm.org>
10826 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10827 S:      Supported
10828 W:      http://openipmi.sourceforge.net/
10829 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10830 F:      Documentation/driver-api/ipmi.rst
10831 F:      Documentation/devicetree/bindings/ipmi/
10832 F:      drivers/char/ipmi/
10833 F:      include/linux/ipmi*
10834 F:      include/uapi/linux/ipmi*
10835
10836 IPS SCSI RAID DRIVER
10837 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10838 L:      linux-scsi@vger.kernel.org
10839 S:      Maintained
10840 W:      http://www.adaptec.com/
10841 F:      drivers/scsi/ips*
10842
10843 IPVS
10844 M:      Simon Horman <horms@verge.net.au>
10845 M:      Julian Anastasov <ja@ssi.bg>
10846 L:      netdev@vger.kernel.org
10847 L:      lvs-devel@vger.kernel.org
10848 S:      Maintained
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10851 F:      Documentation/networking/ipvs-sysctl.rst
10852 F:      include/net/ip_vs.h
10853 F:      include/uapi/linux/ip_vs.h
10854 F:      net/netfilter/ipvs/
10855
10856 IPWIRELESS DRIVER
10857 M:      Jiri Kosina <jikos@kernel.org>
10858 M:      David Sterba <dsterba@suse.com>
10859 S:      Odd Fixes
10860 F:      drivers/tty/ipwireless/
10861
10862 IRON DEVICE AUDIO CODEC DRIVERS
10863 M:      Kiseok Jo <kiseok.jo@irondevice.com>
10864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10865 S:      Maintained
10866 F:      Documentation/devicetree/bindings/sound/irondevice,*
10867 F:      sound/soc/codecs/sma*
10868
10869 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10870 M:      Marc Zyngier <maz@kernel.org>
10871 S:      Maintained
10872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10873 F:      Documentation/core-api/irq/irq-domain.rst
10874 F:      include/linux/irqdomain.h
10875 F:      kernel/irq/irqdomain.c
10876 F:      kernel/irq/msi.c
10877
10878 IRQ SUBSYSTEM
10879 M:      Thomas Gleixner <tglx@linutronix.de>
10880 L:      linux-kernel@vger.kernel.org
10881 S:      Maintained
10882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10883 F:      kernel/irq/
10884 F:      include/linux/group_cpus.h
10885 F:      lib/group_cpus.c
10886
10887 IRQCHIP DRIVERS
10888 M:      Thomas Gleixner <tglx@linutronix.de>
10889 M:      Marc Zyngier <maz@kernel.org>
10890 L:      linux-kernel@vger.kernel.org
10891 S:      Maintained
10892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10893 F:      Documentation/devicetree/bindings/interrupt-controller/
10894 F:      drivers/irqchip/
10895
10896 ISA
10897 M:      William Breathitt Gray <william.gray@linaro.org>
10898 S:      Maintained
10899 F:      Documentation/driver-api/isa.rst
10900 F:      drivers/base/isa.c
10901 F:      include/linux/isa.h
10902
10903 ISA RADIO MODULE
10904 M:      Hans Verkuil <hverkuil@xs4all.nl>
10905 L:      linux-media@vger.kernel.org
10906 S:      Maintained
10907 W:      https://linuxtv.org
10908 T:      git git://linuxtv.org/media_tree.git
10909 F:      drivers/media/radio/radio-isa*
10910
10911 ISAPNP
10912 M:      Jaroslav Kysela <perex@perex.cz>
10913 S:      Maintained
10914 F:      Documentation/driver-api/isapnp.rst
10915 F:      drivers/pnp/isapnp/
10916 F:      include/linux/isapnp.h
10917
10918 ISCSI
10919 M:      Lee Duncan <lduncan@suse.com>
10920 M:      Chris Leech <cleech@redhat.com>
10921 M:      Mike Christie <michael.christie@oracle.com>
10922 L:      open-iscsi@googlegroups.com
10923 L:      linux-scsi@vger.kernel.org
10924 S:      Maintained
10925 W:      www.open-iscsi.com
10926 F:      drivers/scsi/*iscsi*
10927 F:      include/scsi/*iscsi*
10928
10929 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10930 M:      Peter Jones <pjones@redhat.com>
10931 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10932 S:      Maintained
10933 F:      drivers/firmware/iscsi_ibft*
10934
10935 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10936 M:      Sagi Grimberg <sagi@grimberg.me>
10937 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10938 L:      linux-rdma@vger.kernel.org
10939 S:      Supported
10940 W:      http://www.openfabrics.org
10941 W:      www.open-iscsi.org
10942 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10943 F:      drivers/infiniband/ulp/iser/
10944
10945 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10946 M:      Sagi Grimberg <sagi@grimberg.me>
10947 L:      linux-rdma@vger.kernel.org
10948 L:      target-devel@vger.kernel.org
10949 S:      Supported
10950 W:      http://www.linux-iscsi.org
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10952 F:      drivers/infiniband/ulp/isert
10953
10954 ISDN/CMTP OVER BLUETOOTH
10955 M:      Karsten Keil <isdn@linux-pingi.de>
10956 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10957 L:      netdev@vger.kernel.org
10958 S:      Odd Fixes
10959 W:      http://www.isdn4linux.de
10960 F:      Documentation/isdn/
10961 F:      drivers/isdn/capi/
10962 F:      include/linux/isdn/
10963 F:      include/uapi/linux/isdn/
10964 F:      net/bluetooth/cmtp/
10965
10966 ISDN/mISDN SUBSYSTEM
10967 M:      Karsten Keil <isdn@linux-pingi.de>
10968 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10969 L:      netdev@vger.kernel.org
10970 S:      Maintained
10971 W:      http://www.isdn4linux.de
10972 F:      drivers/isdn/Kconfig
10973 F:      drivers/isdn/Makefile
10974 F:      drivers/isdn/hardware/
10975 F:      drivers/isdn/mISDN/
10976
10977 ISOFS FILESYSTEM
10978 M:      Jan Kara <jack@suse.cz>
10979 L:      linux-fsdevel@vger.kernel.org
10980 S:      Maintained
10981 F:      Documentation/filesystems/isofs.rst
10982 F:      fs/isofs/
10983
10984 IT87 HARDWARE MONITORING DRIVER
10985 M:      Jean Delvare <jdelvare@suse.com>
10986 L:      linux-hwmon@vger.kernel.org
10987 S:      Maintained
10988 F:      Documentation/hwmon/it87.rst
10989 F:      drivers/hwmon/it87.c
10990
10991 IT913X MEDIA DRIVER
10992 M:      Antti Palosaari <crope@iki.fi>
10993 L:      linux-media@vger.kernel.org
10994 S:      Maintained
10995 W:      https://linuxtv.org
10996 W:      http://palosaari.fi/linux/
10997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10998 T:      git git://linuxtv.org/anttip/media_tree.git
10999 F:      drivers/media/tuners/it913x*
11000
11001 ITE IT66121 HDMI BRIDGE DRIVER
11002 M:      Phong LE <ple@baylibre.com>
11003 M:      Neil Armstrong <neil.armstrong@linaro.org>
11004 S:      Maintained
11005 T:      git git://anongit.freedesktop.org/drm/drm-misc
11006 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11007 F:      drivers/gpu/drm/bridge/ite-it66121.c
11008
11009 IVTV VIDEO4LINUX DRIVER
11010 M:      Andy Walls <awalls@md.metrocast.net>
11011 L:      linux-media@vger.kernel.org
11012 S:      Maintained
11013 W:      https://linuxtv.org
11014 T:      git git://linuxtv.org/media_tree.git
11015 F:      Documentation/admin-guide/media/ivtv*
11016 F:      drivers/media/pci/ivtv/
11017 F:      include/uapi/linux/ivtv*
11018
11019 IX2505V MEDIA DRIVER
11020 M:      Malcolm Priestley <tvboxspy@gmail.com>
11021 L:      linux-media@vger.kernel.org
11022 S:      Maintained
11023 W:      https://linuxtv.org
11024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11025 F:      drivers/media/dvb-frontends/ix2505v*
11026
11027 JAILHOUSE HYPERVISOR INTERFACE
11028 M:      Jan Kiszka <jan.kiszka@siemens.com>
11029 L:      jailhouse-dev@googlegroups.com
11030 S:      Maintained
11031 F:      arch/x86/include/asm/jailhouse_para.h
11032 F:      arch/x86/kernel/jailhouse.c
11033
11034 JC42.4 TEMPERATURE SENSOR DRIVER
11035 M:      Guenter Roeck <linux@roeck-us.net>
11036 L:      linux-hwmon@vger.kernel.org
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
11039 F:      Documentation/hwmon/jc42.rst
11040 F:      drivers/hwmon/jc42.c
11041
11042 JFS FILESYSTEM
11043 M:      Dave Kleikamp <shaggy@kernel.org>
11044 L:      jfs-discussion@lists.sourceforge.net
11045 S:      Odd Fixes
11046 W:      http://jfs.sourceforge.net/
11047 T:      git https://github.com/kleikamp/linux-shaggy.git
11048 F:      Documentation/admin-guide/jfs.rst
11049 F:      fs/jfs/
11050
11051 JME NETWORK DRIVER
11052 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
11053 L:      netdev@vger.kernel.org
11054 S:      Maintained
11055 F:      drivers/net/ethernet/jme.*
11056
11057 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11058 M:      David Woodhouse <dwmw2@infradead.org>
11059 M:      Richard Weinberger <richard@nod.at>
11060 L:      linux-mtd@lists.infradead.org
11061 S:      Odd Fixes
11062 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11063 T:      git git://git.infradead.org/ubifs-2.6.git
11064 F:      fs/jffs2/
11065 F:      include/uapi/linux/jffs2.h
11066
11067 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11068 M:      "Theodore Ts'o" <tytso@mit.edu>
11069 M:      Jan Kara <jack@suse.com>
11070 L:      linux-ext4@vger.kernel.org
11071 S:      Maintained
11072 F:      fs/jbd2/
11073 F:      include/linux/jbd2.h
11074
11075 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11076 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11077 L:      linux-media@vger.kernel.org
11078 L:      linux-renesas-soc@vger.kernel.org
11079 S:      Maintained
11080 F:      drivers/media/platform/renesas/rcar_jpu.c
11081
11082 JSM Neo PCI based serial card
11083 L:      linux-serial@vger.kernel.org
11084 S:      Orphan
11085 F:      drivers/tty/serial/jsm/
11086
11087 K10TEMP HARDWARE MONITORING DRIVER
11088 M:      Clemens Ladisch <clemens@ladisch.de>
11089 L:      linux-hwmon@vger.kernel.org
11090 S:      Maintained
11091 F:      Documentation/hwmon/k10temp.rst
11092 F:      drivers/hwmon/k10temp.c
11093
11094 K8TEMP HARDWARE MONITORING DRIVER
11095 M:      Rudolf Marek <r.marek@assembler.cz>
11096 L:      linux-hwmon@vger.kernel.org
11097 S:      Maintained
11098 F:      Documentation/hwmon/k8temp.rst
11099 F:      drivers/hwmon/k8temp.c
11100
11101 KASAN
11102 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11103 R:      Alexander Potapenko <glider@google.com>
11104 R:      Andrey Konovalov <andreyknvl@gmail.com>
11105 R:      Dmitry Vyukov <dvyukov@google.com>
11106 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11107 L:      kasan-dev@googlegroups.com
11108 S:      Maintained
11109 F:      Documentation/dev-tools/kasan.rst
11110 F:      arch/*/include/asm/*kasan.h
11111 F:      arch/*/mm/kasan_init*
11112 F:      include/linux/kasan*.h
11113 F:      lib/Kconfig.kasan
11114 F:      mm/kasan/
11115 F:      scripts/Makefile.kasan
11116
11117 KCONFIG
11118 M:      Masahiro Yamada <masahiroy@kernel.org>
11119 L:      linux-kbuild@vger.kernel.org
11120 S:      Maintained
11121 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
11123 F:      Documentation/kbuild/kconfig*
11124 F:      scripts/Kconfig.include
11125 F:      scripts/kconfig/
11126
11127 KCOV
11128 R:      Dmitry Vyukov <dvyukov@google.com>
11129 R:      Andrey Konovalov <andreyknvl@gmail.com>
11130 L:      kasan-dev@googlegroups.com
11131 S:      Maintained
11132 F:      Documentation/dev-tools/kcov.rst
11133 F:      include/linux/kcov.h
11134 F:      include/uapi/linux/kcov.h
11135 F:      kernel/kcov.c
11136 F:      scripts/Makefile.kcov
11137
11138 KCSAN
11139 M:      Marco Elver <elver@google.com>
11140 R:      Dmitry Vyukov <dvyukov@google.com>
11141 L:      kasan-dev@googlegroups.com
11142 S:      Maintained
11143 F:      Documentation/dev-tools/kcsan.rst
11144 F:      include/linux/kcsan*.h
11145 F:      kernel/kcsan/
11146 F:      lib/Kconfig.kcsan
11147 F:      scripts/Makefile.kcsan
11148
11149 KDUMP
11150 M:      Baoquan He <bhe@redhat.com>
11151 R:      Vivek Goyal <vgoyal@redhat.com>
11152 R:      Dave Young <dyoung@redhat.com>
11153 L:      kexec@lists.infradead.org
11154 S:      Maintained
11155 W:      http://lse.sourceforge.net/kdump/
11156 F:      Documentation/admin-guide/kdump/
11157 F:      fs/proc/vmcore.c
11158 F:      include/linux/crash_core.h
11159 F:      include/linux/crash_dump.h
11160 F:      include/uapi/linux/vmcore.h
11161 F:      kernel/crash_*.c
11162
11163 KEENE FM RADIO TRANSMITTER DRIVER
11164 M:      Hans Verkuil <hverkuil@xs4all.nl>
11165 L:      linux-media@vger.kernel.org
11166 S:      Maintained
11167 W:      https://linuxtv.org
11168 T:      git git://linuxtv.org/media_tree.git
11169 F:      drivers/media/radio/radio-keene*
11170
11171 KERNEL AUTOMOUNTER
11172 M:      Ian Kent <raven@themaw.net>
11173 L:      autofs@vger.kernel.org
11174 S:      Maintained
11175 F:      fs/autofs/
11176
11177 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11178 M:      Masahiro Yamada <masahiroy@kernel.org>
11179 R:      Nathan Chancellor <nathan@kernel.org>
11180 R:      Nick Desaulniers <ndesaulniers@google.com>
11181 R:      Nicolas Schier <nicolas@fjasle.eu>
11182 L:      linux-kbuild@vger.kernel.org
11183 S:      Maintained
11184 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11186 F:      Documentation/kbuild/
11187 F:      Makefile
11188 F:      scripts/*vmlinux*
11189 F:      scripts/Kbuild*
11190 F:      scripts/Makefile*
11191 F:      scripts/basic/
11192 F:      scripts/dummy-tools/
11193 F:      scripts/mk*
11194 F:      scripts/mod/
11195 F:      scripts/package/
11196
11197 KERNEL HARDENING (not covered by other areas)
11198 M:      Kees Cook <keescook@chromium.org>
11199 L:      linux-hardening@vger.kernel.org
11200 S:      Supported
11201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11202 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11203 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11204 F:      include/linux/overflow.h
11205 F:      include/linux/randomize_kstack.h
11206 F:      mm/usercopy.c
11207 K:      \b(add|choose)_random_kstack_offset\b
11208 K:      \b__check_(object_size|heap_object)\b
11209
11210 KERNEL JANITORS
11211 L:      kernel-janitors@vger.kernel.org
11212 S:      Odd Fixes
11213 W:      http://kernelnewbies.org/KernelJanitors
11214
11215 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11216 M:      Chuck Lever <chuck.lever@oracle.com>
11217 M:      Jeff Layton <jlayton@kernel.org>
11218 L:      linux-nfs@vger.kernel.org
11219 S:      Supported
11220 W:      http://nfs.sourceforge.net/
11221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11222 F:      fs/exportfs/
11223 F:      fs/lockd/
11224 F:      fs/nfs_common/
11225 F:      fs/nfsd/
11226 F:      include/linux/lockd/
11227 F:      include/linux/sunrpc/
11228 F:      include/trace/events/rpcgss.h
11229 F:      include/trace/events/rpcrdma.h
11230 F:      include/trace/events/sunrpc.h
11231 F:      include/trace/misc/fs.h
11232 F:      include/trace/misc/nfs.h
11233 F:      include/trace/misc/sunrpc.h
11234 F:      include/uapi/linux/nfsd/
11235 F:      include/uapi/linux/sunrpc/
11236 F:      net/sunrpc/
11237 F:      Documentation/filesystems/nfs/
11238
11239 KERNEL REGRESSIONS
11240 M:      Thorsten Leemhuis <linux@leemhuis.info>
11241 L:      regressions@lists.linux.dev
11242 S:      Supported
11243 F:      Documentation/admin-guide/reporting-regressions.rst
11244 F:      Documentation/process/handling-regressions.rst
11245
11246 KERNEL SELFTEST FRAMEWORK
11247 M:      Shuah Khan <shuah@kernel.org>
11248 M:      Shuah Khan <skhan@linuxfoundation.org>
11249 L:      linux-kselftest@vger.kernel.org
11250 S:      Maintained
11251 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11253 F:      Documentation/dev-tools/kselftest*
11254 F:      tools/testing/selftests/
11255
11256 KERNEL SMB3 SERVER (KSMBD)
11257 M:      Namjae Jeon <linkinjeon@kernel.org>
11258 M:      Steve French <sfrench@samba.org>
11259 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11260 R:      Tom Talpey <tom@talpey.com>
11261 L:      linux-cifs@vger.kernel.org
11262 S:      Maintained
11263 T:      git git://git.samba.org/ksmbd.git
11264 F:      Documentation/filesystems/cifs/ksmbd.rst
11265 F:      fs/ksmbd/
11266 F:      fs/smbfs_common/
11267
11268 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11269 M:      Brendan Higgins <brendanhiggins@google.com>
11270 M:      David Gow <davidgow@google.com>
11271 L:      linux-kselftest@vger.kernel.org
11272 L:      kunit-dev@googlegroups.com
11273 S:      Maintained
11274 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11275 F:      Documentation/dev-tools/kunit/
11276 F:      include/kunit/
11277 F:      lib/kunit/
11278 F:      tools/testing/kunit/
11279
11280 KERNEL USERMODE HELPER
11281 M:      Luis Chamberlain <mcgrof@kernel.org>
11282 L:      linux-kernel@vger.kernel.org
11283 S:      Maintained
11284 F:      include/linux/umh.h
11285 F:      kernel/umh.c
11286
11287 KERNEL VIRTUAL MACHINE (KVM)
11288 M:      Paolo Bonzini <pbonzini@redhat.com>
11289 L:      kvm@vger.kernel.org
11290 S:      Supported
11291 W:      http://www.linux-kvm.org
11292 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11293 F:      Documentation/virt/kvm/
11294 F:      include/asm-generic/kvm*
11295 F:      include/kvm/iodev.h
11296 F:      include/linux/kvm*
11297 F:      include/trace/events/kvm.h
11298 F:      include/uapi/asm-generic/kvm*
11299 F:      include/uapi/linux/kvm*
11300 F:      tools/kvm/
11301 F:      tools/testing/selftests/kvm/
11302 F:      virt/kvm/*
11303
11304 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11305 M:      Marc Zyngier <maz@kernel.org>
11306 M:      Oliver Upton <oliver.upton@linux.dev>
11307 R:      James Morse <james.morse@arm.com>
11308 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11309 R:      Zenghui Yu <yuzenghui@huawei.com>
11310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11311 L:      kvmarm@lists.linux.dev
11312 S:      Maintained
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11314 F:      arch/arm64/include/asm/kvm*
11315 F:      arch/arm64/include/uapi/asm/kvm*
11316 F:      arch/arm64/kvm/
11317 F:      include/kvm/arm_*
11318 F:      tools/testing/selftests/kvm/*/aarch64/
11319 F:      tools/testing/selftests/kvm/aarch64/
11320
11321 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11322 M:      Huacai Chen <chenhuacai@kernel.org>
11323 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11324 L:      linux-mips@vger.kernel.org
11325 L:      kvm@vger.kernel.org
11326 S:      Maintained
11327 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11328 F:      arch/mips/include/asm/kvm*
11329 F:      arch/mips/include/uapi/asm/kvm*
11330 F:      arch/mips/kvm/
11331
11332 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11333 L:      linuxppc-dev@lists.ozlabs.org
11334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11335 F:      arch/powerpc/include/asm/kvm*
11336 F:      arch/powerpc/include/uapi/asm/kvm*
11337 F:      arch/powerpc/kernel/kvm*
11338 F:      arch/powerpc/kvm/
11339
11340 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11341 M:      Anup Patel <anup@brainfault.org>
11342 R:      Atish Patra <atishp@atishpatra.org>
11343 L:      kvm@vger.kernel.org
11344 L:      kvm-riscv@lists.infradead.org
11345 L:      linux-riscv@lists.infradead.org
11346 S:      Maintained
11347 T:      git https://github.com/kvm-riscv/linux.git
11348 F:      arch/riscv/include/asm/kvm*
11349 F:      arch/riscv/include/uapi/asm/kvm*
11350 F:      arch/riscv/kvm/
11351 F:      tools/testing/selftests/kvm/*/riscv/
11352
11353 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11354 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11355 M:      Janosch Frank <frankja@linux.ibm.com>
11356 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11357 R:      David Hildenbrand <david@redhat.com>
11358 L:      kvm@vger.kernel.org
11359 S:      Supported
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11361 F:      Documentation/virt/kvm/s390*
11362 F:      arch/s390/include/asm/gmap.h
11363 F:      arch/s390/include/asm/kvm*
11364 F:      arch/s390/include/uapi/asm/kvm*
11365 F:      arch/s390/include/uapi/asm/uvdevice.h
11366 F:      arch/s390/kernel/uv.c
11367 F:      arch/s390/kvm/
11368 F:      arch/s390/mm/gmap.c
11369 F:      drivers/s390/char/uvdevice.c
11370 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11371 F:      tools/testing/selftests/kvm/*/s390x/
11372 F:      tools/testing/selftests/kvm/s390x/
11373
11374 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11375 M:      Sean Christopherson <seanjc@google.com>
11376 M:      Paolo Bonzini <pbonzini@redhat.com>
11377 L:      kvm@vger.kernel.org
11378 S:      Supported
11379 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11380 F:      arch/x86/include/asm/kvm*
11381 F:      arch/x86/include/asm/svm.h
11382 F:      arch/x86/include/asm/vmx*.h
11383 F:      arch/x86/include/uapi/asm/kvm*
11384 F:      arch/x86/include/uapi/asm/svm.h
11385 F:      arch/x86/include/uapi/asm/vmx.h
11386 F:      arch/x86/kvm/
11387 F:      arch/x86/kvm/*/
11388
11389 KVM PARAVIRT (KVM/paravirt)
11390 M:      Paolo Bonzini <pbonzini@redhat.com>
11391 R:      Wanpeng Li <wanpengli@tencent.com>
11392 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11393 L:      kvm@vger.kernel.org
11394 S:      Supported
11395 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11396 F:      arch/x86/kernel/kvm.c
11397 F:      arch/x86/kernel/kvmclock.c
11398 F:      arch/x86/include/asm/pvclock-abi.h
11399 F:      include/linux/kvm_para.h
11400 F:      include/uapi/linux/kvm_para.h
11401 F:      include/uapi/asm-generic/kvm_para.h
11402 F:      include/asm-generic/kvm_para.h
11403 F:      arch/um/include/asm/kvm_para.h
11404 F:      arch/x86/include/asm/kvm_para.h
11405 F:      arch/x86/include/uapi/asm/kvm_para.h
11406
11407 KVM X86 HYPER-V (KVM/hyper-v)
11408 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11409 M:      Sean Christopherson <seanjc@google.com>
11410 M:      Paolo Bonzini <pbonzini@redhat.com>
11411 L:      kvm@vger.kernel.org
11412 S:      Supported
11413 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11414 F:      arch/x86/kvm/hyperv.*
11415 F:      arch/x86/kvm/kvm_onhyperv.*
11416 F:      arch/x86/kvm/svm/hyperv.*
11417 F:      arch/x86/kvm/svm/svm_onhyperv.*
11418 F:      arch/x86/kvm/vmx/hyperv.*
11419
11420 KVM X86 Xen (KVM/Xen)
11421 M:      David Woodhouse <dwmw2@infradead.org>
11422 M:      Paul Durrant <paul@xen.org>
11423 M:      Sean Christopherson <seanjc@google.com>
11424 M:      Paolo Bonzini <pbonzini@redhat.com>
11425 L:      kvm@vger.kernel.org
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11428 F:      arch/x86/kvm/xen.*
11429
11430 KERNFS
11431 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11432 M:      Tejun Heo <tj@kernel.org>
11433 S:      Supported
11434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11435 F:      fs/kernfs/
11436 F:      include/linux/kernfs.h
11437
11438 KEXEC
11439 M:      Eric Biederman <ebiederm@xmission.com>
11440 L:      kexec@lists.infradead.org
11441 S:      Maintained
11442 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11443 F:      include/linux/kexec.h
11444 F:      include/uapi/linux/kexec.h
11445 F:      kernel/kexec*
11446
11447 KEYS-ENCRYPTED
11448 M:      Mimi Zohar <zohar@linux.ibm.com>
11449 L:      linux-integrity@vger.kernel.org
11450 L:      keyrings@vger.kernel.org
11451 S:      Supported
11452 F:      Documentation/security/keys/trusted-encrypted.rst
11453 F:      include/keys/encrypted-type.h
11454 F:      security/keys/encrypted-keys/
11455
11456 KEYS-TRUSTED
11457 M:      James Bottomley <jejb@linux.ibm.com>
11458 M:      Jarkko Sakkinen <jarkko@kernel.org>
11459 M:      Mimi Zohar <zohar@linux.ibm.com>
11460 L:      linux-integrity@vger.kernel.org
11461 L:      keyrings@vger.kernel.org
11462 S:      Supported
11463 F:      Documentation/security/keys/trusted-encrypted.rst
11464 F:      include/keys/trusted-type.h
11465 F:      include/keys/trusted_tpm.h
11466 F:      security/keys/trusted-keys/
11467
11468 KEYS-TRUSTED-TEE
11469 M:      Sumit Garg <sumit.garg@linaro.org>
11470 L:      linux-integrity@vger.kernel.org
11471 L:      keyrings@vger.kernel.org
11472 S:      Supported
11473 F:      include/keys/trusted_tee.h
11474 F:      security/keys/trusted-keys/trusted_tee.c
11475
11476 KEYS-TRUSTED-CAAM
11477 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11478 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11479 L:      linux-integrity@vger.kernel.org
11480 L:      keyrings@vger.kernel.org
11481 S:      Maintained
11482 F:      include/keys/trusted_caam.h
11483 F:      security/keys/trusted-keys/trusted_caam.c
11484
11485 KEYS/KEYRINGS
11486 M:      David Howells <dhowells@redhat.com>
11487 M:      Jarkko Sakkinen <jarkko@kernel.org>
11488 L:      keyrings@vger.kernel.org
11489 S:      Maintained
11490 F:      Documentation/security/keys/core.rst
11491 F:      include/keys/
11492 F:      include/linux/key-type.h
11493 F:      include/linux/key.h
11494 F:      include/linux/keyctl.h
11495 F:      include/uapi/linux/keyctl.h
11496 F:      security/keys/
11497
11498 KEYS/KEYRINGS_INTEGRITY
11499 M:      Jarkko Sakkinen <jarkko@kernel.org>
11500 M:      Mimi Zohar <zohar@linux.ibm.com>
11501 L:      linux-integrity@vger.kernel.org
11502 L:      keyrings@vger.kernel.org
11503 S:      Supported
11504 F:      security/integrity/platform_certs
11505
11506 KFENCE
11507 M:      Alexander Potapenko <glider@google.com>
11508 M:      Marco Elver <elver@google.com>
11509 R:      Dmitry Vyukov <dvyukov@google.com>
11510 L:      kasan-dev@googlegroups.com
11511 S:      Maintained
11512 F:      Documentation/dev-tools/kfence.rst
11513 F:      arch/*/include/asm/kfence.h
11514 F:      include/linux/kfence.h
11515 F:      lib/Kconfig.kfence
11516 F:      mm/kfence/
11517
11518 KFIFO
11519 M:      Stefani Seibold <stefani@seibold.net>
11520 S:      Maintained
11521 F:      include/linux/kfifo.h
11522 F:      lib/kfifo.c
11523 F:      samples/kfifo/
11524
11525 KGDB / KDB /debug_core
11526 M:      Jason Wessel <jason.wessel@windriver.com>
11527 M:      Daniel Thompson <daniel.thompson@linaro.org>
11528 R:      Douglas Anderson <dianders@chromium.org>
11529 L:      kgdb-bugreport@lists.sourceforge.net
11530 S:      Maintained
11531 W:      http://kgdb.wiki.kernel.org/
11532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11533 F:      Documentation/dev-tools/kgdb.rst
11534 F:      drivers/misc/kgdbts.c
11535 F:      drivers/tty/serial/kgdboc.c
11536 F:      include/linux/kdb.h
11537 F:      include/linux/kgdb.h
11538 F:      kernel/debug/
11539 F:      kernel/module/kdb.c
11540
11541 KHADAS MCU MFD DRIVER
11542 M:      Neil Armstrong <neil.armstrong@linaro.org>
11543 L:      linux-amlogic@lists.infradead.org
11544 S:      Maintained
11545 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11546 F:      drivers/mfd/khadas-mcu.c
11547 F:      include/linux/mfd/khadas-mcu.h
11548 F:      drivers/thermal/khadas_mcu_fan.c
11549
11550 KIONIX/ROHM KX022A ACCELEROMETER
11551 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11552 L:      linux-iio@vger.kernel.org
11553 S:      Supported
11554 F:      drivers/iio/accel/kionix-kx022a*
11555
11556 KMEMLEAK
11557 M:      Catalin Marinas <catalin.marinas@arm.com>
11558 S:      Maintained
11559 F:      Documentation/dev-tools/kmemleak.rst
11560 F:      include/linux/kmemleak.h
11561 F:      mm/kmemleak.c
11562 F:      samples/kmemleak/kmemleak-test.c
11563
11564 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11565 M:      Luis Chamberlain <mcgrof@kernel.org>
11566 L:      linux-kernel@vger.kernel.org
11567 L:      linux-modules@vger.kernel.org
11568 S:      Maintained
11569 F:      include/linux/kmod.h
11570 F:      kernel/kmod.c
11571 F:      lib/test_kmod.c
11572 F:      tools/testing/selftests/kmod/
11573
11574 KMSAN
11575 M:      Alexander Potapenko <glider@google.com>
11576 R:      Marco Elver <elver@google.com>
11577 R:      Dmitry Vyukov <dvyukov@google.com>
11578 L:      kasan-dev@googlegroups.com
11579 S:      Maintained
11580 F:      Documentation/dev-tools/kmsan.rst
11581 F:      arch/*/include/asm/kmsan.h
11582 F:      arch/*/mm/kmsan_*
11583 F:      include/linux/kmsan*.h
11584 F:      lib/Kconfig.kmsan
11585 F:      mm/kmsan/
11586 F:      scripts/Makefile.kmsan
11587
11588 KPROBES
11589 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11590 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11591 M:      "David S. Miller" <davem@davemloft.net>
11592 M:      Masami Hiramatsu <mhiramat@kernel.org>
11593 L:      linux-kernel@vger.kernel.org
11594 L:      linux-trace-kernel@vger.kernel.org
11595 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11596 S:      Maintained
11597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11598 F:      Documentation/trace/kprobes.rst
11599 F:      include/asm-generic/kprobes.h
11600 F:      include/linux/kprobes.h
11601 F:      kernel/kprobes.c
11602 F:      lib/test_kprobes.c
11603 F:      samples/kprobes
11604
11605 KS0108 LCD CONTROLLER DRIVER
11606 M:      Miguel Ojeda <ojeda@kernel.org>
11607 S:      Maintained
11608 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11609 F:      drivers/auxdisplay/ks0108.c
11610 F:      include/linux/ks0108.h
11611
11612 KTD253 BACKLIGHT DRIVER
11613 M:      Linus Walleij <linus.walleij@linaro.org>
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11616 F:      drivers/video/backlight/ktd253-backlight.c
11617
11618 KTEST
11619 M:      Steven Rostedt <rostedt@goodmis.org>
11620 M:      John Hawley <warthog9@eaglescrag.net>
11621 S:      Maintained
11622 F:      tools/testing/ktest
11623
11624 KTZ8866 BACKLIGHT DRIVER
11625 M:      Jianhua Lu <lujianhua000@gmail.com>
11626 S:      Maintained
11627 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
11628 F:      drivers/video/backlight/ktz8866.c
11629
11630 L3MDEV
11631 M:      David Ahern <dsahern@kernel.org>
11632 L:      netdev@vger.kernel.org
11633 S:      Maintained
11634 F:      include/net/l3mdev.h
11635 F:      net/l3mdev
11636
11637 LANDLOCK SECURITY MODULE
11638 M:      Mickaël Salaün <mic@digikod.net>
11639 L:      linux-security-module@vger.kernel.org
11640 S:      Supported
11641 W:      https://landlock.io
11642 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
11643 F:      Documentation/security/landlock.rst
11644 F:      Documentation/userspace-api/landlock.rst
11645 F:      include/uapi/linux/landlock.h
11646 F:      samples/landlock/
11647 F:      security/landlock/
11648 F:      tools/testing/selftests/landlock/
11649 K:      landlock
11650 K:      LANDLOCK
11651
11652 LANTIQ / INTEL Ethernet drivers
11653 M:      Hauke Mehrtens <hauke@hauke-m.de>
11654 L:      netdev@vger.kernel.org
11655 S:      Maintained
11656 F:      drivers/net/dsa/lantiq_gswip.c
11657 F:      drivers/net/dsa/lantiq_pce.h
11658 F:      drivers/net/ethernet/lantiq_xrx200.c
11659 F:      net/dsa/tag_gswip.c
11660
11661 LANTIQ MIPS ARCHITECTURE
11662 M:      John Crispin <john@phrozen.org>
11663 L:      linux-mips@vger.kernel.org
11664 S:      Maintained
11665 F:      arch/mips/lantiq
11666 F:      drivers/soc/lantiq
11667
11668 LASI 53c700 driver for PARISC
11669 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11670 L:      linux-scsi@vger.kernel.org
11671 S:      Maintained
11672 F:      Documentation/scsi/53c700.rst
11673 F:      drivers/scsi/53c700*
11674
11675 LEAKING_ADDRESSES
11676 M:      Tobin C. Harding <me@tobin.cc>
11677 M:      Tycho Andersen <tycho@tycho.pizza>
11678 L:      linux-hardening@vger.kernel.org
11679 S:      Maintained
11680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11681 F:      scripts/leaking_addresses.pl
11682
11683 LED SUBSYSTEM
11684 M:      Pavel Machek <pavel@ucw.cz>
11685 M:      Lee Jones <lee@kernel.org>
11686 L:      linux-leds@vger.kernel.org
11687 S:      Maintained
11688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11689 F:      Documentation/devicetree/bindings/leds/
11690 F:      drivers/leds/
11691 F:      include/dt-bindings/leds/
11692 F:      include/linux/leds.h
11693
11694 LEGACY EEPROM DRIVER
11695 M:      Jean Delvare <jdelvare@suse.com>
11696 S:      Maintained
11697 F:      Documentation/misc-devices/eeprom.rst
11698 F:      drivers/misc/eeprom/eeprom.c
11699
11700 LEGO MINDSTORMS EV3
11701 R:      David Lechner <david@lechnology.com>
11702 S:      Maintained
11703 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11704 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11705 F:      drivers/power/supply/lego_ev3_battery.c
11706
11707 LEGO USB Tower driver
11708 M:      Juergen Stuber <starblue@users.sourceforge.net>
11709 L:      legousb-devel@lists.sourceforge.net
11710 S:      Maintained
11711 W:      http://legousb.sourceforge.net/
11712 F:      drivers/usb/misc/legousbtower.c
11713
11714 LETSKETCH HID TABLET DRIVER
11715 M:      Hans de Goede <hdegoede@redhat.com>
11716 L:      linux-input@vger.kernel.org
11717 S:      Maintained
11718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11719 F:      drivers/hid/hid-letsketch.c
11720
11721 LG LAPTOP EXTRAS
11722 M:      Matan Ziv-Av <matan@svgalib.org>
11723 L:      platform-driver-x86@vger.kernel.org
11724 S:      Maintained
11725 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11726 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11727 F:      drivers/platform/x86/lg-laptop.c
11728
11729 LG2160 MEDIA DRIVER
11730 M:      Michael Krufky <mkrufky@linuxtv.org>
11731 L:      linux-media@vger.kernel.org
11732 S:      Maintained
11733 W:      https://linuxtv.org
11734 W:      http://github.com/mkrufky
11735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11736 T:      git git://linuxtv.org/mkrufky/tuners.git
11737 F:      drivers/media/dvb-frontends/lg2160.*
11738
11739 LGDT3305 MEDIA DRIVER
11740 M:      Michael Krufky <mkrufky@linuxtv.org>
11741 L:      linux-media@vger.kernel.org
11742 S:      Maintained
11743 W:      https://linuxtv.org
11744 W:      http://github.com/mkrufky
11745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11746 T:      git git://linuxtv.org/mkrufky/tuners.git
11747 F:      drivers/media/dvb-frontends/lgdt3305.*
11748
11749 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11750 M:      Viresh Kumar <vireshk@kernel.org>
11751 L:      linux-ide@vger.kernel.org
11752 S:      Maintained
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11754 F:      drivers/ata/pata_arasan_cf.c
11755 F:      include/linux/pata_arasan_cf_data.h
11756
11757 LIBATA PATA DRIVERS
11758 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11759 L:      linux-ide@vger.kernel.org
11760 F:      drivers/ata/ata_*.c
11761 F:      drivers/ata/pata_*.c
11762
11763 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11764 M:      Linus Walleij <linus.walleij@linaro.org>
11765 L:      linux-ide@vger.kernel.org
11766 S:      Maintained
11767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11768 F:      drivers/ata/pata_ftide010.c
11769 F:      drivers/ata/sata_gemini.c
11770 F:      drivers/ata/sata_gemini.h
11771
11772 LIBATA SATA AHCI PLATFORM devices support
11773 M:      Hans de Goede <hdegoede@redhat.com>
11774 M:      Jens Axboe <axboe@kernel.dk>
11775 L:      linux-ide@vger.kernel.org
11776 S:      Maintained
11777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11778 F:      drivers/ata/ahci_platform.c
11779 F:      drivers/ata/libahci_platform.c
11780 F:      include/linux/ahci_platform.h
11781
11782 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11783 M:      Serge Semin <fancer.lancer@gmail.com>
11784 L:      linux-ide@vger.kernel.org
11785 S:      Maintained
11786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11787 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11788 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11789 F:      drivers/ata/ahci_dwc.c
11790
11791 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11792 M:      Mikael Pettersson <mikpelinux@gmail.com>
11793 L:      linux-ide@vger.kernel.org
11794 S:      Maintained
11795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11796 F:      drivers/ata/sata_promise.*
11797
11798 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11799 M:      Damien Le Moal <dlemoal@kernel.org>
11800 L:      linux-ide@vger.kernel.org
11801 S:      Maintained
11802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11803 F:      Documentation/ABI/testing/sysfs-ata
11804 F:      Documentation/devicetree/bindings/ata/
11805 F:      drivers/ata/
11806 F:      include/linux/ata.h
11807 F:      include/linux/libata.h
11808
11809 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11810 M:      Vishal Verma <vishal.l.verma@intel.com>
11811 M:      Dan Williams <dan.j.williams@intel.com>
11812 M:      Dave Jiang <dave.jiang@intel.com>
11813 L:      nvdimm@lists.linux.dev
11814 S:      Supported
11815 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11816 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11817 F:      drivers/nvdimm/btt*
11818
11819 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11820 M:      Dan Williams <dan.j.williams@intel.com>
11821 M:      Vishal Verma <vishal.l.verma@intel.com>
11822 M:      Dave Jiang <dave.jiang@intel.com>
11823 L:      nvdimm@lists.linux.dev
11824 S:      Supported
11825 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11826 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11827 F:      drivers/nvdimm/pmem*
11828
11829 LIBNVDIMM: DEVICETREE BINDINGS
11830 M:      Oliver O'Halloran <oohall@gmail.com>
11831 L:      nvdimm@lists.linux.dev
11832 S:      Supported
11833 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11834 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11835 F:      drivers/nvdimm/of_pmem.c
11836
11837 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11838 M:      Dan Williams <dan.j.williams@intel.com>
11839 M:      Vishal Verma <vishal.l.verma@intel.com>
11840 M:      Dave Jiang <dave.jiang@intel.com>
11841 M:      Ira Weiny <ira.weiny@intel.com>
11842 L:      nvdimm@lists.linux.dev
11843 S:      Supported
11844 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11845 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11847 F:      drivers/acpi/nfit/*
11848 F:      drivers/nvdimm/*
11849 F:      include/linux/libnvdimm.h
11850 F:      include/linux/nd.h
11851 F:      include/uapi/linux/ndctl.h
11852 F:      tools/testing/nvdimm/
11853
11854 LICENSES and SPDX stuff
11855 M:      Thomas Gleixner <tglx@linutronix.de>
11856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11857 L:      linux-spdx@vger.kernel.org
11858 S:      Maintained
11859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11860 F:      COPYING
11861 F:      Documentation/process/license-rules.rst
11862 F:      LICENSES/
11863 F:      scripts/spdxcheck-test.sh
11864 F:      scripts/spdxcheck.py
11865 F:      scripts/spdxexclude
11866
11867 LINEAR RANGES HELPERS
11868 M:      Mark Brown <broonie@kernel.org>
11869 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11870 F:      lib/linear_ranges.c
11871 F:      lib/test_linear_ranges.c
11872 F:      include/linux/linear_range.h
11873
11874 LINUX FOR POWER MACINTOSH
11875 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11876 L:      linuxppc-dev@lists.ozlabs.org
11877 S:      Odd Fixes
11878 F:      arch/powerpc/platforms/powermac/
11879 F:      drivers/macintosh/
11880
11881 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11882 M:      Michael Ellerman <mpe@ellerman.id.au>
11883 R:      Nicholas Piggin <npiggin@gmail.com>
11884 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11885 L:      linuxppc-dev@lists.ozlabs.org
11886 S:      Supported
11887 W:      https://github.com/linuxppc/wiki/wiki
11888 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11890 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11891 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11892 F:      Documentation/devicetree/bindings/powerpc/
11893 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11894 F:      Documentation/powerpc/
11895 F:      arch/powerpc/
11896 F:      drivers/*/*/*pasemi*
11897 F:      drivers/*/*pasemi*
11898 F:      drivers/char/tpm/tpm_ibmvtpm*
11899 F:      drivers/crypto/nx/
11900 F:      drivers/crypto/vmx/
11901 F:      drivers/i2c/busses/i2c-opal.c
11902 F:      drivers/net/ethernet/ibm/ibmveth.*
11903 F:      drivers/net/ethernet/ibm/ibmvnic.*
11904 F:      drivers/pci/hotplug/pnv_php.c
11905 F:      drivers/pci/hotplug/rpa*
11906 F:      drivers/rtc/rtc-opal.c
11907 F:      drivers/scsi/ibmvscsi/
11908 F:      drivers/tty/hvc/hvc_opal.c
11909 F:      drivers/watchdog/wdrtas.c
11910 F:      tools/testing/selftests/powerpc
11911 N:      /pmac
11912 N:      powermac
11913 N:      powernv
11914 N:      [^a-z0-9]ps3
11915 N:      pseries
11916
11917 LINUX FOR POWERPC EMBEDDED MPC5XXX
11918 M:      Anatolij Gustschin <agust@denx.de>
11919 L:      linuxppc-dev@lists.ozlabs.org
11920 S:      Odd Fixes
11921 F:      arch/powerpc/platforms/512x/
11922 F:      arch/powerpc/platforms/52xx/
11923
11924 LINUX FOR POWERPC EMBEDDED PPC4XX
11925 L:      linuxppc-dev@lists.ozlabs.org
11926 S:      Orphan
11927 F:      arch/powerpc/platforms/40x/
11928 F:      arch/powerpc/platforms/44x/
11929
11930 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11931 M:      Scott Wood <oss@buserror.net>
11932 L:      linuxppc-dev@lists.ozlabs.org
11933 S:      Odd fixes
11934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11935 F:      Documentation/devicetree/bindings/cache/freescale-l2cache.txt
11936 F:      Documentation/devicetree/bindings/powerpc/fsl/
11937 F:      arch/powerpc/platforms/83xx/
11938 F:      arch/powerpc/platforms/85xx/
11939
11940 LINUX FOR POWERPC EMBEDDED PPC8XX
11941 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11942 L:      linuxppc-dev@lists.ozlabs.org
11943 S:      Maintained
11944 F:      arch/powerpc/platforms/8xx/
11945
11946 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11947 M:      Kees Cook <keescook@chromium.org>
11948 S:      Maintained
11949 F:      drivers/misc/lkdtm/*
11950 F:      tools/testing/selftests/lkdtm/*
11951
11952 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11953 M:      Alan Stern <stern@rowland.harvard.edu>
11954 M:      Andrea Parri <parri.andrea@gmail.com>
11955 M:      Will Deacon <will@kernel.org>
11956 M:      Peter Zijlstra <peterz@infradead.org>
11957 M:      Boqun Feng <boqun.feng@gmail.com>
11958 M:      Nicholas Piggin <npiggin@gmail.com>
11959 M:      David Howells <dhowells@redhat.com>
11960 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11961 M:      Luc Maranget <luc.maranget@inria.fr>
11962 M:      "Paul E. McKenney" <paulmck@kernel.org>
11963 R:      Akira Yokosawa <akiyks@gmail.com>
11964 R:      Daniel Lustig <dlustig@nvidia.com>
11965 R:      Joel Fernandes <joel@joelfernandes.org>
11966 L:      linux-kernel@vger.kernel.org
11967 L:      linux-arch@vger.kernel.org
11968 S:      Supported
11969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11970 F:      Documentation/atomic_bitops.txt
11971 F:      Documentation/atomic_t.txt
11972 F:      Documentation/core-api/refcount-vs-atomic.rst
11973 F:      Documentation/litmus-tests/
11974 F:      Documentation/memory-barriers.txt
11975 F:      tools/memory-model/
11976
11977 LIS3LV02D ACCELEROMETER DRIVER
11978 M:      Eric Piel <eric.piel@tremplin-utc.net>
11979 S:      Maintained
11980 F:      Documentation/misc-devices/lis3lv02d.rst
11981 F:      drivers/misc/lis3lv02d/
11982 F:      drivers/platform/x86/hp/hp_accel.c
11983
11984 LIST KUNIT TEST
11985 M:      David Gow <davidgow@google.com>
11986 L:      linux-kselftest@vger.kernel.org
11987 L:      kunit-dev@googlegroups.com
11988 S:      Maintained
11989 F:      lib/list-test.c
11990
11991 LITEX PLATFORM
11992 M:      Karol Gugala <kgugala@antmicro.com>
11993 M:      Mateusz Holenko <mholenko@antmicro.com>
11994 M:      Gabriel Somlo <gsomlo@gmail.com>
11995 M:      Joel Stanley <joel@jms.id.au>
11996 S:      Maintained
11997 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11998 F:      arch/openrisc/boot/dts/or1klitex.dts
11999 F:      include/linux/litex.h
12000 F:      drivers/tty/serial/liteuart.c
12001 F:      drivers/soc/litex/*
12002 F:      drivers/net/ethernet/litex/*
12003 F:      drivers/mmc/host/litex_mmc.c
12004 N:      litex
12005
12006 LIVE PATCHING
12007 M:      Josh Poimboeuf <jpoimboe@kernel.org>
12008 M:      Jiri Kosina <jikos@kernel.org>
12009 M:      Miroslav Benes <mbenes@suse.cz>
12010 M:      Petr Mladek <pmladek@suse.com>
12011 R:      Joe Lawrence <joe.lawrence@redhat.com>
12012 L:      live-patching@vger.kernel.org
12013 S:      Maintained
12014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
12015 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
12016 F:      Documentation/livepatch/
12017 F:      arch/powerpc/include/asm/livepatch.h
12018 F:      include/linux/livepatch.h
12019 F:      kernel/livepatch/
12020 F:      kernel/module/livepatch.c
12021 F:      lib/livepatch/
12022 F:      samples/livepatch/
12023 F:      tools/testing/selftests/livepatch/
12024
12025 LLC (802.2)
12026 L:      netdev@vger.kernel.org
12027 S:      Odd fixes
12028 F:      include/linux/llc.h
12029 F:      include/net/llc*
12030 F:      include/uapi/linux/llc.h
12031 F:      net/llc/
12032
12033 LM73 HARDWARE MONITOR DRIVER
12034 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
12035 L:      linux-hwmon@vger.kernel.org
12036 S:      Maintained
12037 F:      drivers/hwmon/lm73.c
12038
12039 LM78 HARDWARE MONITOR DRIVER
12040 M:      Jean Delvare <jdelvare@suse.com>
12041 L:      linux-hwmon@vger.kernel.org
12042 S:      Maintained
12043 F:      Documentation/hwmon/lm78.rst
12044 F:      drivers/hwmon/lm78.c
12045
12046 LM83 HARDWARE MONITOR DRIVER
12047 M:      Jean Delvare <jdelvare@suse.com>
12048 L:      linux-hwmon@vger.kernel.org
12049 S:      Maintained
12050 F:      Documentation/hwmon/lm83.rst
12051 F:      drivers/hwmon/lm83.c
12052
12053 LM90 HARDWARE MONITOR DRIVER
12054 M:      Jean Delvare <jdelvare@suse.com>
12055 L:      linux-hwmon@vger.kernel.org
12056 S:      Maintained
12057 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12058 F:      Documentation/hwmon/lm90.rst
12059 F:      drivers/hwmon/lm90.c
12060 F:      include/dt-bindings/thermal/lm90.h
12061
12062 LM95234 HARDWARE MONITOR DRIVER
12063 M:      Guenter Roeck <linux@roeck-us.net>
12064 L:      linux-hwmon@vger.kernel.org
12065 S:      Maintained
12066 F:      Documentation/hwmon/lm95234.rst
12067 F:      drivers/hwmon/lm95234.c
12068
12069 LME2510 MEDIA DRIVER
12070 M:      Malcolm Priestley <tvboxspy@gmail.com>
12071 L:      linux-media@vger.kernel.org
12072 S:      Maintained
12073 W:      https://linuxtv.org
12074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12075 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12076
12077 LOADPIN SECURITY MODULE
12078 M:      Kees Cook <keescook@chromium.org>
12079 S:      Supported
12080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12081 F:      Documentation/admin-guide/LSM/LoadPin.rst
12082 F:      security/loadpin/
12083
12084 LOCKING PRIMITIVES
12085 M:      Peter Zijlstra <peterz@infradead.org>
12086 M:      Ingo Molnar <mingo@redhat.com>
12087 M:      Will Deacon <will@kernel.org>
12088 R:      Waiman Long <longman@redhat.com>
12089 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12090 L:      linux-kernel@vger.kernel.org
12091 S:      Maintained
12092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12093 F:      Documentation/locking/
12094 F:      arch/*/include/asm/spinlock*.h
12095 F:      include/linux/lockdep.h
12096 F:      include/linux/mutex*.h
12097 F:      include/linux/rwlock*.h
12098 F:      include/linux/rwsem*.h
12099 F:      include/linux/seqlock.h
12100 F:      include/linux/spinlock*.h
12101 F:      kernel/locking/
12102 F:      lib/locking*.[ch]
12103 X:      kernel/locking/locktorture.c
12104
12105 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12106 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12107 L:      linux-ntfs-dev@lists.sourceforge.net
12108 S:      Maintained
12109 W:      http://www.linux-ntfs.org/content/view/19/37/
12110 F:      Documentation/admin-guide/ldm.rst
12111 F:      block/partitions/ldm.*
12112
12113 LOGITECH HID GAMING KEYBOARDS
12114 M:      Hans de Goede <hdegoede@redhat.com>
12115 L:      linux-input@vger.kernel.org
12116 S:      Maintained
12117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12118 F:      drivers/hid/hid-lg-g15.c
12119
12120 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12121 M:      Adrien Grassein <adrien.grassein@gmail.com>
12122 S:      Maintained
12123 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12124 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12125
12126 LOONGARCH
12127 M:      Huacai Chen <chenhuacai@kernel.org>
12128 R:      WANG Xuerui <kernel@xen0n.name>
12129 L:      loongarch@lists.linux.dev
12130 S:      Maintained
12131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12132 F:      arch/loongarch/
12133 F:      drivers/*/*loongarch*
12134 F:      Documentation/loongarch/
12135 F:      Documentation/translations/zh_CN/loongarch/
12136
12137 LOONGSON LS2X I2C DRIVER
12138 M:      Binbin Zhou <zhoubinbin@loongson.cn>
12139 L:      linux-i2c@vger.kernel.org
12140 S:      Maintained
12141 F:      Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
12142 F:      drivers/i2c/busses/i2c-ls2x.c
12143
12144 LOONGSON-2 SOC SERIES GUTS DRIVER
12145 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12146 L:      loongarch@lists.linux.dev
12147 S:      Maintained
12148 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12149 F:      drivers/soc/loongson/loongson2_guts.c
12150
12151 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12152 M:      zhanghongchen <zhanghongchen@loongson.cn>
12153 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12154 L:      linux-gpio@vger.kernel.org
12155 S:      Maintained
12156 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12157 F:      drivers/pinctrl/pinctrl-loongson2.c
12158
12159 LOONGSON GPIO DRIVER
12160 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12161 L:      linux-gpio@vger.kernel.org
12162 S:      Maintained
12163 F:      Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
12164 F:      drivers/gpio/gpio-loongson-64bit.c
12165
12166 LOONGSON-2 SOC SERIES CLOCK DRIVER
12167 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12168 L:      linux-clk@vger.kernel.org
12169 S:      Maintained
12170 F:      Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
12171 F:      include/dt-bindings/clock/loongson,ls2k-clk.h
12172
12173 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12174 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12175 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12176 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12177 L:      MPT-FusionLinux.pdl@broadcom.com
12178 L:      linux-scsi@vger.kernel.org
12179 S:      Supported
12180 W:      http://www.avagotech.com/support/
12181 F:      drivers/message/fusion/
12182 F:      drivers/scsi/mpt3sas/
12183
12184 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12185 M:      Matthew Wilcox <willy@infradead.org>
12186 L:      linux-scsi@vger.kernel.org
12187 S:      Maintained
12188 F:      drivers/scsi/sym53c8xx_2/
12189
12190 LTC1660 DAC DRIVER
12191 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12192 L:      linux-iio@vger.kernel.org
12193 S:      Maintained
12194 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12195 F:      drivers/iio/dac/ltc1660.c
12196
12197 LTC2688 IIO DAC DRIVER
12198 M:      Nuno Sá <nuno.sa@analog.com>
12199 L:      linux-iio@vger.kernel.org
12200 S:      Supported
12201 W:      https://ez.analog.com/linux-software-drivers
12202 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12203 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12204 F:      drivers/iio/dac/ltc2688.c
12205
12206 LTC2947 HARDWARE MONITOR DRIVER
12207 M:      Nuno Sá <nuno.sa@analog.com>
12208 L:      linux-hwmon@vger.kernel.org
12209 S:      Supported
12210 W:      https://ez.analog.com/linux-software-drivers
12211 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12212 F:      drivers/hwmon/ltc2947-core.c
12213 F:      drivers/hwmon/ltc2947-i2c.c
12214 F:      drivers/hwmon/ltc2947-spi.c
12215 F:      drivers/hwmon/ltc2947.h
12216
12217 LTC2983 IIO TEMPERATURE DRIVER
12218 M:      Nuno Sá <nuno.sa@analog.com>
12219 L:      linux-iio@vger.kernel.org
12220 S:      Supported
12221 W:      https://ez.analog.com/linux-software-drivers
12222 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12223 F:      drivers/iio/temperature/ltc2983.c
12224
12225 LTC4261 HARDWARE MONITOR DRIVER
12226 M:      Guenter Roeck <linux@roeck-us.net>
12227 L:      linux-hwmon@vger.kernel.org
12228 S:      Maintained
12229 F:      Documentation/hwmon/ltc4261.rst
12230 F:      drivers/hwmon/ltc4261.c
12231
12232 LTC4306 I2C MULTIPLEXER DRIVER
12233 M:      Michael Hennerich <michael.hennerich@analog.com>
12234 L:      linux-i2c@vger.kernel.org
12235 S:      Supported
12236 W:      https://ez.analog.com/linux-software-drivers
12237 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12238 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12239
12240 LTP (Linux Test Project)
12241 M:      Mike Frysinger <vapier@gentoo.org>
12242 M:      Cyril Hrubis <chrubis@suse.cz>
12243 M:      Wanlong Gao <wanlong.gao@gmail.com>
12244 M:      Jan Stancek <jstancek@redhat.com>
12245 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12246 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12247 L:      ltp@lists.linux.it (subscribers-only)
12248 S:      Maintained
12249 W:      http://linux-test-project.github.io/
12250 T:      git https://github.com/linux-test-project/ltp.git
12251
12252 LYNX 28G SERDES PHY DRIVER
12253 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12254 L:      netdev@vger.kernel.org
12255 S:      Supported
12256 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12257 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12258
12259 LYNX PCS MODULE
12260 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12261 L:      netdev@vger.kernel.org
12262 S:      Supported
12263 F:      drivers/net/pcs/pcs-lynx.c
12264 F:      include/linux/pcs-lynx.h
12265
12266 M68K ARCHITECTURE
12267 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12268 L:      linux-m68k@lists.linux-m68k.org
12269 S:      Maintained
12270 W:      http://www.linux-m68k.org/
12271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12272 F:      arch/m68k/
12273 F:      drivers/zorro/
12274
12275 M68K ON APPLE MACINTOSH
12276 M:      Joshua Thompson <funaho@jurai.org>
12277 L:      linux-m68k@lists.linux-m68k.org
12278 S:      Maintained
12279 W:      http://www.mac.linux-m68k.org/
12280 F:      arch/m68k/mac/
12281 F:      drivers/macintosh/adb-iop.c
12282 F:      drivers/macintosh/via-macii.c
12283
12284 M68K ON HP9000/300
12285 M:      Philip Blundell <philb@gnu.org>
12286 S:      Maintained
12287 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12288 F:      arch/m68k/hp300/
12289
12290 M88DS3103 MEDIA DRIVER
12291 M:      Antti Palosaari <crope@iki.fi>
12292 L:      linux-media@vger.kernel.org
12293 S:      Maintained
12294 W:      https://linuxtv.org
12295 W:      http://palosaari.fi/linux/
12296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12297 T:      git git://linuxtv.org/anttip/media_tree.git
12298 F:      drivers/media/dvb-frontends/m88ds3103*
12299
12300 M88RS2000 MEDIA DRIVER
12301 M:      Malcolm Priestley <tvboxspy@gmail.com>
12302 L:      linux-media@vger.kernel.org
12303 S:      Maintained
12304 W:      https://linuxtv.org
12305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12306 F:      drivers/media/dvb-frontends/m88rs2000*
12307
12308 MA901 MASTERKIT USB FM RADIO DRIVER
12309 M:      Alexey Klimov <klimov.linux@gmail.com>
12310 L:      linux-media@vger.kernel.org
12311 S:      Maintained
12312 T:      git git://linuxtv.org/media_tree.git
12313 F:      drivers/media/radio/radio-ma901.c
12314
12315 MAC80211
12316 M:      Johannes Berg <johannes@sipsolutions.net>
12317 L:      linux-wireless@vger.kernel.org
12318 S:      Maintained
12319 W:      https://wireless.wiki.kernel.org/
12320 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12323 F:      Documentation/networking/mac80211-injection.rst
12324 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12325 F:      drivers/net/wireless/virtual/mac80211_hwsim.[ch]
12326 F:      include/net/mac80211.h
12327 F:      net/mac80211/
12328
12329 MAILBOX API
12330 M:      Jassi Brar <jassisinghbrar@gmail.com>
12331 L:      linux-kernel@vger.kernel.org
12332 S:      Maintained
12333 F:      drivers/mailbox/
12334 F:      include/linux/mailbox_client.h
12335 F:      include/linux/mailbox_controller.h
12336 F:      include/dt-bindings/mailbox/
12337 F:      Documentation/devicetree/bindings/mailbox/
12338
12339 MAILBOX ARM MHUv2
12340 M:      Viresh Kumar <viresh.kumar@linaro.org>
12341 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12342 L:      linux-kernel@vger.kernel.org
12343 S:      Maintained
12344 F:      drivers/mailbox/arm_mhuv2.c
12345 F:      include/linux/mailbox/arm_mhuv2_message.h
12346 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12347
12348 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12349 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12350 M:      Matt Johnston <matt@codeconstruct.com.au>
12351 L:      netdev@vger.kernel.org
12352 S:      Maintained
12353 F:      Documentation/networking/mctp.rst
12354 F:      drivers/net/mctp/
12355 F:      include/net/mctp.h
12356 F:      include/net/mctpdevice.h
12357 F:      include/net/netns/mctp.h
12358 F:      net/mctp/
12359
12360 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12361 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12362 L:      linux-man@vger.kernel.org
12363 S:      Maintained
12364 W:      http://www.kernel.org/doc/man-pages
12365
12366 MAPLE TREE
12367 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12368 L:      linux-mm@kvack.org
12369 S:      Supported
12370 F:      Documentation/core-api/maple_tree.rst
12371 F:      include/linux/maple_tree.h
12372 F:      include/trace/events/maple_tree.h
12373 F:      lib/maple_tree.c
12374 F:      lib/test_maple_tree.c
12375 F:      tools/testing/radix-tree/linux/maple_tree.h
12376 F:      tools/testing/radix-tree/maple.c
12377
12378 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12379 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12380 L:      linux-mips@vger.kernel.org
12381 S:      Maintained
12382 F:      arch/mips/boot/dts/img/pistachio*
12383
12384 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12385 M:      Andrew Lunn <andrew@lunn.ch>
12386 L:      netdev@vger.kernel.org
12387 S:      Maintained
12388 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12389 F:      Documentation/networking/devlink/mv88e6xxx.rst
12390 F:      drivers/net/dsa/mv88e6xxx/
12391 F:      include/linux/dsa/mv88e6xxx.h
12392 F:      include/linux/platform_data/mv88e6xxx.h
12393
12394 MARVELL ARMADA 3700 PHY DRIVERS
12395 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12396 S:      Maintained
12397 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12398 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12399 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12400 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12401
12402 MARVELL ARMADA 3700 SERIAL DRIVER
12403 M:      Pali Rohár <pali@kernel.org>
12404 S:      Maintained
12405 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12406 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12407 F:      drivers/tty/serial/mvebu-uart.c
12408
12409 MARVELL ARMADA DRM SUPPORT
12410 M:      Russell King <linux@armlinux.org.uk>
12411 S:      Maintained
12412 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12413 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12414 F:      Documentation/devicetree/bindings/display/armada/
12415 F:      drivers/gpu/drm/armada/
12416 F:      include/uapi/drm/armada_drm.h
12417
12418 MARVELL CRYPTO DRIVER
12419 M:      Boris Brezillon <bbrezillon@kernel.org>
12420 M:      Arnaud Ebalard <arno@natisbad.org>
12421 M:      Srujana Challa <schalla@marvell.com>
12422 L:      linux-crypto@vger.kernel.org
12423 S:      Maintained
12424 F:      drivers/crypto/marvell/
12425 F:      include/linux/soc/marvell/octeontx2/
12426
12427 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12428 M:      Mirko Lindner <mlindner@marvell.com>
12429 M:      Stephen Hemminger <stephen@networkplumber.org>
12430 L:      netdev@vger.kernel.org
12431 S:      Maintained
12432 F:      drivers/net/ethernet/marvell/sk*
12433
12434 MARVELL LIBERTAS WIRELESS DRIVER
12435 L:      libertas-dev@lists.infradead.org
12436 S:      Orphan
12437 F:      drivers/net/wireless/marvell/libertas/
12438
12439 MARVELL MACCHIATOBIN SUPPORT
12440 M:      Russell King <linux@armlinux.org.uk>
12441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12442 S:      Maintained
12443 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12444
12445 MARVELL MV643XX ETHERNET DRIVER
12446 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12447 L:      netdev@vger.kernel.org
12448 S:      Maintained
12449 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12450 F:      include/linux/mv643xx.h
12451
12452 MARVELL MV88X3310 PHY DRIVER
12453 M:      Russell King <linux@armlinux.org.uk>
12454 M:      Marek Behún <kabel@kernel.org>
12455 L:      netdev@vger.kernel.org
12456 S:      Maintained
12457 F:      drivers/net/phy/marvell10g.c
12458
12459 MARVELL MVEBU THERMAL DRIVER
12460 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12461 S:      Maintained
12462 F:      drivers/thermal/armada_thermal.c
12463
12464 MARVELL MVNETA ETHERNET DRIVER
12465 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12466 L:      netdev@vger.kernel.org
12467 S:      Maintained
12468 F:      drivers/net/ethernet/marvell/mvneta.*
12469
12470 MARVELL MVPP2 ETHERNET DRIVER
12471 M:      Marcin Wojtas <mw@semihalf.com>
12472 M:      Russell King <linux@armlinux.org.uk>
12473 L:      netdev@vger.kernel.org
12474 S:      Maintained
12475 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12476 F:      drivers/net/ethernet/marvell/mvpp2/
12477
12478 MARVELL MWIFIEX WIRELESS DRIVER
12479 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12480 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12481 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12482 M:      Xinming Hu <huxinming820@gmail.com>
12483 L:      linux-wireless@vger.kernel.org
12484 S:      Maintained
12485 F:      drivers/net/wireless/marvell/mwifiex/
12486
12487 MARVELL MWL8K WIRELESS DRIVER
12488 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12489 L:      linux-wireless@vger.kernel.org
12490 S:      Odd Fixes
12491 F:      drivers/net/wireless/marvell/mwl8k.c
12492
12493 MARVELL NAND CONTROLLER DRIVER
12494 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12495 L:      linux-mtd@lists.infradead.org
12496 S:      Maintained
12497 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12498 F:      drivers/mtd/nand/raw/marvell_nand.c
12499
12500 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12501 M:      Sunil Goutham <sgoutham@marvell.com>
12502 M:      Geetha sowjanya <gakula@marvell.com>
12503 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12504 M:      hariprasad <hkelam@marvell.com>
12505 L:      netdev@vger.kernel.org
12506 S:      Supported
12507 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12508 F:      include/linux/soc/marvell/octeontx2/
12509
12510 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12511 M:      Sunil Goutham <sgoutham@marvell.com>
12512 M:      Linu Cherian <lcherian@marvell.com>
12513 M:      Geetha sowjanya <gakula@marvell.com>
12514 M:      Jerin Jacob <jerinj@marvell.com>
12515 M:      hariprasad <hkelam@marvell.com>
12516 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12517 L:      netdev@vger.kernel.org
12518 S:      Supported
12519 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12520 F:      drivers/net/ethernet/marvell/octeontx2/af/
12521
12522 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12523 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12524 S:      Supported
12525 W:      https://github.com/Marvell-switching/switchdev-prestera
12526 F:      drivers/net/ethernet/marvell/prestera/
12527
12528 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12529 M:      Nicolas Pitre <nico@fluxnic.net>
12530 S:      Odd Fixes
12531 F:      drivers/mmc/host/mvsdio.*
12532
12533 MARVELL USB MDIO CONTROLLER DRIVER
12534 M:      Tobias Waldekranz <tobias@waldekranz.com>
12535 L:      netdev@vger.kernel.org
12536 S:      Maintained
12537 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12538 F:      drivers/net/mdio/mdio-mvusb.c
12539
12540 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12541 M:      Hu Ziji <huziji@marvell.com>
12542 L:      linux-mmc@vger.kernel.org
12543 S:      Supported
12544 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12545 F:      drivers/mmc/host/sdhci-xenon*
12546
12547 MARVELL OCTEON ENDPOINT DRIVER
12548 M:      Veerasenareddy Burru <vburru@marvell.com>
12549 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12550 L:      netdev@vger.kernel.org
12551 S:      Supported
12552 F:      drivers/net/ethernet/marvell/octeon_ep
12553
12554 MATROX FRAMEBUFFER DRIVER
12555 L:      linux-fbdev@vger.kernel.org
12556 S:      Orphan
12557 F:      drivers/video/fbdev/matrox/matroxfb_*
12558 F:      include/uapi/linux/matroxfb.h
12559
12560 MAX15301 DRIVER
12561 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12562 L:      linux-hwmon@vger.kernel.org
12563 S:      Maintained
12564 F:      Documentation/hwmon/max15301.rst
12565 F:      drivers/hwmon/pmbus/max15301.c
12566
12567 MAX16065 HARDWARE MONITOR DRIVER
12568 M:      Guenter Roeck <linux@roeck-us.net>
12569 L:      linux-hwmon@vger.kernel.org
12570 S:      Maintained
12571 F:      Documentation/hwmon/max16065.rst
12572 F:      drivers/hwmon/max16065.c
12573
12574 MAX2175 SDR TUNER DRIVER
12575 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12576 L:      linux-media@vger.kernel.org
12577 S:      Maintained
12578 T:      git git://linuxtv.org/media_tree.git
12579 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12580 F:      Documentation/userspace-api/media/drivers/max2175.rst
12581 F:      drivers/media/i2c/max2175*
12582 F:      include/uapi/linux/max2175.h
12583
12584 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12585 L:      linux-hwmon@vger.kernel.org
12586 S:      Orphan
12587 F:      Documentation/hwmon/max6650.rst
12588 F:      drivers/hwmon/max6650.c
12589
12590 MAX6697 HARDWARE MONITOR DRIVER
12591 M:      Guenter Roeck <linux@roeck-us.net>
12592 L:      linux-hwmon@vger.kernel.org
12593 S:      Maintained
12594 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12595 F:      Documentation/hwmon/max6697.rst
12596 F:      drivers/hwmon/max6697.c
12597 F:      include/linux/platform_data/max6697.h
12598
12599 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12600 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12601 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12602 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12603 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12604 L:      linux-media@vger.kernel.org
12605 S:      Maintained
12606 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12607 F:      drivers/media/i2c/max9286.c
12608
12609 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12610 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12611 L:      linux-media@vger.kernel.org
12612 S:      Maintained
12613 F:      drivers/staging/media/max96712/max96712.c
12614
12615 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12616 M:      Peter Rosin <peda@axentia.se>
12617 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12618 S:      Maintained
12619 F:      Documentation/devicetree/bindings/sound/max9860.txt
12620 F:      sound/soc/codecs/max9860.*
12621
12622 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12623 M:      Andreas Klinger <ak@it-klinger.de>
12624 L:      linux-iio@vger.kernel.org
12625 S:      Maintained
12626 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12627 F:      drivers/iio/proximity/mb1232.c
12628
12629 MAXIM MAX11205 DRIVER
12630 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12631 L:      linux-iio@vger.kernel.org
12632 S:      Supported
12633 W:      https://ez.analog.com/linux-software-drivers
12634 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12635 F:      drivers/iio/adc/max11205.c
12636
12637 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12638 R:      Iskren Chernev <iskren.chernev@gmail.com>
12639 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12640 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12641 R:      Matheus Castello <matheus@castello.eng.br>
12642 L:      linux-pm@vger.kernel.org
12643 S:      Maintained
12644 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12645 F:      drivers/power/supply/max17040_battery.c
12646
12647 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12648 R:      Hans de Goede <hdegoede@redhat.com>
12649 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12650 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12651 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12652 R:      Purism Kernel Team <kernel@puri.sm>
12653 L:      linux-pm@vger.kernel.org
12654 S:      Maintained
12655 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12656 F:      drivers/power/supply/max17042_battery.c
12657
12658 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12659 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12660 L:      linux-kernel@vger.kernel.org
12661 S:      Maintained
12662 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12663 F:      drivers/regulator/max20086-regulator.c
12664
12665 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12666 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12667 L:      linux-iio@vger.kernel.org
12668 S:      Maintained
12669 F:      drivers/iio/temperature/max30208.c
12670
12671 MAXIM MAX77650 PMIC MFD DRIVER
12672 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12673 L:      linux-kernel@vger.kernel.org
12674 S:      Maintained
12675 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12676 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12677 F:      drivers/gpio/gpio-max77650.c
12678 F:      drivers/input/misc/max77650-onkey.c
12679 F:      drivers/leds/leds-max77650.c
12680 F:      drivers/mfd/max77650.c
12681 F:      drivers/power/supply/max77650-charger.c
12682 F:      drivers/regulator/max77650-regulator.c
12683 F:      include/linux/mfd/max77650.h
12684
12685 MAXIM MAX77714 PMIC MFD DRIVER
12686 M:      Luca Ceresoli <luca@lucaceresoli.net>
12687 S:      Maintained
12688 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12689 F:      drivers/mfd/max77714.c
12690 F:      include/linux/mfd/max77714.h
12691
12692 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12693 M:      Javier Martinez Canillas <javier@dowhile0.org>
12694 L:      linux-kernel@vger.kernel.org
12695 S:      Supported
12696 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12697 F:      drivers/regulator/max77802-regulator.c
12698 F:      include/dt-bindings/*/*max77802.h
12699
12700 MAXIM MAX77976 BATTERY CHARGER
12701 M:      Luca Ceresoli <luca@lucaceresoli.net>
12702 S:      Supported
12703 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12704 F:      drivers/power/supply/max77976_charger.c
12705
12706 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12707 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12708 L:      linux-pm@vger.kernel.org
12709 S:      Supported
12710 B:      mailto:linux-samsung-soc@vger.kernel.org
12711 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12712 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12713 F:      drivers/power/supply/max14577_charger.c
12714 F:      drivers/power/supply/max77693_charger.c
12715
12716 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12717 M:      Chanwoo Choi <cw00.choi@samsung.com>
12718 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12719 L:      linux-kernel@vger.kernel.org
12720 S:      Supported
12721 B:      mailto:linux-samsung-soc@vger.kernel.org
12722 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12723 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12724 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12725 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12726 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12727 F:      drivers/*/*max77843.c
12728 F:      drivers/*/max14577*.c
12729 F:      drivers/*/max77686*.c
12730 F:      drivers/*/max77693*.c
12731 F:      drivers/clk/clk-max77686.c
12732 F:      drivers/extcon/extcon-max14577.c
12733 F:      drivers/extcon/extcon-max77693.c
12734 F:      drivers/rtc/rtc-max77686.c
12735 F:      include/linux/mfd/max14577*.h
12736 F:      include/linux/mfd/max77686*.h
12737 F:      include/linux/mfd/max77693*.h
12738
12739 MAXIRADIO FM RADIO RECEIVER DRIVER
12740 M:      Hans Verkuil <hverkuil@xs4all.nl>
12741 L:      linux-media@vger.kernel.org
12742 S:      Maintained
12743 W:      https://linuxtv.org
12744 T:      git git://linuxtv.org/media_tree.git
12745 F:      drivers/media/radio/radio-maxiradio*
12746
12747 MAXLINEAR ETHERNET PHY DRIVER
12748 M:      Xu Liang <lxu@maxlinear.com>
12749 L:      netdev@vger.kernel.org
12750 S:      Supported
12751 F:      drivers/net/phy/mxl-gpy.c
12752
12753 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12754 R:      Yasushi SHOJI <yashi@spacecubics.com>
12755 L:      linux-can@vger.kernel.org
12756 S:      Maintained
12757 F:      drivers/net/can/usb/mcba_usb.c
12758
12759 MCAN MMIO DEVICE DRIVER
12760 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12761 L:      linux-can@vger.kernel.org
12762 S:      Maintained
12763 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12764 F:      drivers/net/can/m_can/m_can.c
12765 F:      drivers/net/can/m_can/m_can.h
12766 F:      drivers/net/can/m_can/m_can_platform.c
12767
12768 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12769 M:      Rishi Gupta <gupt21@gmail.com>
12770 L:      linux-i2c@vger.kernel.org
12771 L:      linux-input@vger.kernel.org
12772 S:      Maintained
12773 F:      drivers/hid/hid-mcp2221.c
12774
12775 MCP251XFD SPI-CAN NETWORK DRIVER
12776 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12777 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12778 R:      Thomas Kopp <thomas.kopp@microchip.com>
12779 L:      linux-can@vger.kernel.org
12780 S:      Maintained
12781 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12782 F:      drivers/net/can/spi/mcp251xfd/
12783
12784 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12785 M:      Peter Rosin <peda@axentia.se>
12786 L:      linux-iio@vger.kernel.org
12787 S:      Maintained
12788 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12789 F:      drivers/iio/potentiometer/mcp4018.c
12790 F:      drivers/iio/potentiometer/mcp4531.c
12791
12792 MCR20A IEEE-802.15.4 RADIO DRIVER
12793 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12794 L:      linux-wpan@vger.kernel.org
12795 S:      Odd Fixes
12796 W:      https://github.com/xueliu/mcr20a-linux
12797 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12798 F:      drivers/net/ieee802154/mcr20a.c
12799 F:      drivers/net/ieee802154/mcr20a.h
12800
12801 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12802 M:      William Breathitt Gray <william.gray@linaro.org>
12803 L:      linux-iio@vger.kernel.org
12804 S:      Maintained
12805 F:      drivers/iio/dac/cio-dac.c
12806
12807 MEDIA CONTROLLER FRAMEWORK
12808 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12809 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12810 L:      linux-media@vger.kernel.org
12811 S:      Supported
12812 W:      https://www.linuxtv.org
12813 T:      git git://linuxtv.org/media_tree.git
12814 F:      drivers/media/mc/
12815 F:      include/media/media-*.h
12816 F:      include/uapi/linux/media.h
12817
12818 MEDIA DRIVER FOR FREESCALE IMX PXP
12819 M:      Philipp Zabel <p.zabel@pengutronix.de>
12820 L:      linux-media@vger.kernel.org
12821 S:      Maintained
12822 T:      git git://linuxtv.org/media_tree.git
12823 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12824
12825 MEDIA DRIVERS FOR ASCOT2E
12826 M:      Sergey Kozlov <serjk@netup.ru>
12827 M:      Abylay Ospan <aospan@netup.ru>
12828 L:      linux-media@vger.kernel.org
12829 S:      Supported
12830 W:      https://linuxtv.org
12831 W:      http://netup.tv/
12832 T:      git git://linuxtv.org/media_tree.git
12833 F:      drivers/media/dvb-frontends/ascot2e*
12834
12835 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12836 M:      Jasmin Jessich <jasmin@anw.at>
12837 L:      linux-media@vger.kernel.org
12838 S:      Maintained
12839 W:      https://linuxtv.org
12840 T:      git git://linuxtv.org/media_tree.git
12841 F:      drivers/media/dvb-frontends/cxd2099*
12842
12843 MEDIA DRIVERS FOR CXD2841ER
12844 M:      Sergey Kozlov <serjk@netup.ru>
12845 M:      Abylay Ospan <aospan@netup.ru>
12846 L:      linux-media@vger.kernel.org
12847 S:      Supported
12848 W:      https://linuxtv.org
12849 W:      http://netup.tv/
12850 T:      git git://linuxtv.org/media_tree.git
12851 F:      drivers/media/dvb-frontends/cxd2841er*
12852
12853 MEDIA DRIVERS FOR CXD2880
12854 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12855 L:      linux-media@vger.kernel.org
12856 S:      Supported
12857 W:      http://linuxtv.org/
12858 T:      git git://linuxtv.org/media_tree.git
12859 F:      drivers/media/dvb-frontends/cxd2880/*
12860 F:      drivers/media/spi/cxd2880*
12861
12862 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12863 L:      linux-media@vger.kernel.org
12864 S:      Orphan
12865 W:      https://linuxtv.org
12866 T:      git git://linuxtv.org/media_tree.git
12867 F:      drivers/media/pci/ddbridge/*
12868
12869 MEDIA DRIVERS FOR FREESCALE IMX
12870 M:      Steve Longerbeam <slongerbeam@gmail.com>
12871 M:      Philipp Zabel <p.zabel@pengutronix.de>
12872 L:      linux-media@vger.kernel.org
12873 S:      Maintained
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      Documentation/admin-guide/media/imx.rst
12876 F:      Documentation/devicetree/bindings/media/imx.txt
12877 F:      drivers/staging/media/imx/
12878 F:      include/linux/imx-media.h
12879 F:      include/media/imx.h
12880
12881 MEDIA DRIVERS FOR FREESCALE IMX7
12882 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12883 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12884 L:      linux-media@vger.kernel.org
12885 S:      Maintained
12886 T:      git git://linuxtv.org/media_tree.git
12887 F:      Documentation/admin-guide/media/imx7.rst
12888 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12889 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12890 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12891 F:      drivers/media/platform/nxp/imx7-media-csi.c
12892
12893 MEDIA DRIVERS FOR HELENE
12894 M:      Abylay Ospan <aospan@netup.ru>
12895 L:      linux-media@vger.kernel.org
12896 S:      Supported
12897 W:      https://linuxtv.org
12898 W:      http://netup.tv/
12899 T:      git git://linuxtv.org/media_tree.git
12900 F:      drivers/media/dvb-frontends/helene*
12901
12902 MEDIA DRIVERS FOR HORUS3A
12903 M:      Sergey Kozlov <serjk@netup.ru>
12904 M:      Abylay Ospan <aospan@netup.ru>
12905 L:      linux-media@vger.kernel.org
12906 S:      Supported
12907 W:      https://linuxtv.org
12908 W:      http://netup.tv/
12909 T:      git git://linuxtv.org/media_tree.git
12910 F:      drivers/media/dvb-frontends/horus3a*
12911
12912 MEDIA DRIVERS FOR LNBH25
12913 M:      Sergey Kozlov <serjk@netup.ru>
12914 M:      Abylay Ospan <aospan@netup.ru>
12915 L:      linux-media@vger.kernel.org
12916 S:      Supported
12917 W:      https://linuxtv.org
12918 W:      http://netup.tv/
12919 T:      git git://linuxtv.org/media_tree.git
12920 F:      drivers/media/dvb-frontends/lnbh25*
12921
12922 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12923 L:      linux-media@vger.kernel.org
12924 S:      Orphan
12925 W:      https://linuxtv.org
12926 T:      git git://linuxtv.org/media_tree.git
12927 F:      drivers/media/dvb-frontends/mxl5xx*
12928
12929 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12930 M:      Sergey Kozlov <serjk@netup.ru>
12931 M:      Abylay Ospan <aospan@netup.ru>
12932 L:      linux-media@vger.kernel.org
12933 S:      Supported
12934 W:      https://linuxtv.org
12935 W:      http://netup.tv/
12936 T:      git git://linuxtv.org/media_tree.git
12937 F:      drivers/media/pci/netup_unidvb/*
12938
12939 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12940 M:      Dmitry Osipenko <digetx@gmail.com>
12941 L:      linux-media@vger.kernel.org
12942 L:      linux-tegra@vger.kernel.org
12943 S:      Maintained
12944 T:      git git://linuxtv.org/media_tree.git
12945 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12946 F:      drivers/media/platform/nvidia/tegra-vde/
12947
12948 MEDIA DRIVERS FOR RENESAS - CEU
12949 M:      Jacopo Mondi <jacopo@jmondi.org>
12950 L:      linux-media@vger.kernel.org
12951 L:      linux-renesas-soc@vger.kernel.org
12952 S:      Supported
12953 T:      git git://linuxtv.org/media_tree.git
12954 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12955 F:      drivers/media/platform/renesas/renesas-ceu.c
12956 F:      include/media/drv-intf/renesas-ceu.h
12957
12958 MEDIA DRIVERS FOR RENESAS - DRIF
12959 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12960 L:      linux-media@vger.kernel.org
12961 L:      linux-renesas-soc@vger.kernel.org
12962 S:      Supported
12963 T:      git git://linuxtv.org/media_tree.git
12964 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12965 F:      drivers/media/platform/renesas/rcar_drif.c
12966
12967 MEDIA DRIVERS FOR RENESAS - FCP
12968 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12969 L:      linux-media@vger.kernel.org
12970 L:      linux-renesas-soc@vger.kernel.org
12971 S:      Supported
12972 T:      git git://linuxtv.org/media_tree.git
12973 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12974 F:      drivers/media/platform/renesas/rcar-fcp.c
12975 F:      include/media/rcar-fcp.h
12976
12977 MEDIA DRIVERS FOR RENESAS - FDP1
12978 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12979 L:      linux-media@vger.kernel.org
12980 L:      linux-renesas-soc@vger.kernel.org
12981 S:      Supported
12982 T:      git git://linuxtv.org/media_tree.git
12983 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12984 F:      drivers/media/platform/renesas/rcar_fdp1.c
12985
12986 MEDIA DRIVERS FOR RENESAS - VIN
12987 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12988 L:      linux-media@vger.kernel.org
12989 L:      linux-renesas-soc@vger.kernel.org
12990 S:      Supported
12991 T:      git git://linuxtv.org/media_tree.git
12992 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12993 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12994 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12995 F:      drivers/media/platform/renesas/rcar-isp.c
12996 F:      drivers/media/platform/renesas/rcar-vin/
12997
12998 MEDIA DRIVERS FOR RENESAS - VSP1
12999 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13000 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13001 L:      linux-media@vger.kernel.org
13002 L:      linux-renesas-soc@vger.kernel.org
13003 S:      Supported
13004 T:      git git://linuxtv.org/media_tree.git
13005 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
13006 F:      drivers/media/platform/renesas/vsp1/
13007
13008 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
13009 L:      linux-media@vger.kernel.org
13010 S:      Orphan
13011 W:      https://linuxtv.org
13012 T:      git git://linuxtv.org/media_tree.git
13013 F:      drivers/media/dvb-frontends/stv0910*
13014
13015 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
13016 L:      linux-media@vger.kernel.org
13017 S:      Orphan
13018 W:      https://linuxtv.org
13019 T:      git git://linuxtv.org/media_tree.git
13020 F:      drivers/media/dvb-frontends/stv6111*
13021
13022 MEDIA DRIVERS FOR STM32 - DCMI
13023 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
13024 L:      linux-media@vger.kernel.org
13025 S:      Supported
13026 T:      git git://linuxtv.org/media_tree.git
13027 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
13028 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
13029
13030 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
13031 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13032 L:      linux-media@vger.kernel.org
13033 S:      Maintained
13034 W:      https://linuxtv.org
13035 Q:      http://patchwork.kernel.org/project/linux-media/list/
13036 T:      git git://linuxtv.org/media_tree.git
13037 F:      Documentation/admin-guide/media/
13038 F:      Documentation/devicetree/bindings/media/
13039 F:      Documentation/driver-api/media/
13040 F:      Documentation/userspace-api/media/
13041 F:      drivers/media/
13042 F:      drivers/staging/media/
13043 F:      include/dt-bindings/media/
13044 F:      include/linux/platform_data/media/
13045 F:      include/media/
13046 F:      include/uapi/linux/dvb/
13047 F:      include/uapi/linux/ivtv*
13048 F:      include/uapi/linux/media.h
13049 F:      include/uapi/linux/uvcvideo.h
13050 F:      include/uapi/linux/v4l2-*
13051 F:      include/uapi/linux/videodev2.h
13052
13053 MEDIATEK BLUETOOTH DRIVER
13054 M:      Sean Wang <sean.wang@mediatek.com>
13055 L:      linux-bluetooth@vger.kernel.org
13056 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13057 S:      Maintained
13058 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
13059 F:      drivers/bluetooth/btmtkuart.c
13060
13061 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13062 M:      Sean Wang <sean.wang@mediatek.com>
13063 L:      linux-pm@vger.kernel.org
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13066 F:      drivers/power/reset/mt6323-poweroff.c
13067
13068 MEDIATEK CIR DRIVER
13069 M:      Sean Wang <sean.wang@mediatek.com>
13070 S:      Maintained
13071 F:      drivers/media/rc/mtk-cir.c
13072
13073 MEDIATEK DMA DRIVER
13074 M:      Sean Wang <sean.wang@mediatek.com>
13075 L:      dmaengine@vger.kernel.org
13076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13077 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/dma/mtk-*
13080 F:      drivers/dma/mediatek/
13081
13082 MEDIATEK ETHERNET DRIVER
13083 M:      Felix Fietkau <nbd@nbd.name>
13084 M:      John Crispin <john@phrozen.org>
13085 M:      Sean Wang <sean.wang@mediatek.com>
13086 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
13087 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13088 L:      netdev@vger.kernel.org
13089 S:      Maintained
13090 F:      drivers/net/ethernet/mediatek/
13091
13092 MEDIATEK ETHERNET PCS DRIVER
13093 M:      Alexander Couzens <lynxis@fe80.eu>
13094 M:      Daniel Golle <daniel@makrotopia.org>
13095 L:      netdev@vger.kernel.org
13096 S:      Maintained
13097 F:      drivers/net/pcs/pcs-mtk-lynxi.c
13098 F:      include/linux/pcs/pcs-mtk-lynxi.h
13099
13100 MEDIATEK I2C CONTROLLER DRIVER
13101 M:      Qii Wang <qii.wang@mediatek.com>
13102 L:      linux-i2c@vger.kernel.org
13103 S:      Maintained
13104 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13105 F:      drivers/i2c/busses/i2c-mt65xx.c
13106
13107 MEDIATEK IOMMU DRIVER
13108 M:      Yong Wu <yong.wu@mediatek.com>
13109 L:      iommu@lists.linux.dev
13110 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13111 S:      Supported
13112 F:      Documentation/devicetree/bindings/iommu/mediatek*
13113 F:      drivers/iommu/mtk_iommu*
13114 F:      include/dt-bindings/memory/mt*-port.h
13115
13116 MEDIATEK JPEG DRIVER
13117 M:      Bin Liu <bin.liu@mediatek.com>
13118 S:      Supported
13119 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13120 F:      drivers/media/platform/mediatek/jpeg/
13121
13122 MEDIATEK KEYPAD DRIVER
13123 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13124 S:      Supported
13125 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13126 F:      drivers/input/keyboard/mt6779-keypad.c
13127
13128 MEDIATEK MDP DRIVER
13129 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13130 M:      Houlong Wei <houlong.wei@mediatek.com>
13131 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13132 S:      Supported
13133 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13134 F:      drivers/media/platform/mediatek/mdp/
13135 F:      drivers/media/platform/mediatek/vpu/
13136
13137 MEDIATEK MEDIA DRIVER
13138 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13139 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13140 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13141 S:      Supported
13142 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13143 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13144 F:      drivers/media/platform/mediatek/vcodec/
13145 F:      drivers/media/platform/mediatek/vpu/
13146
13147 MEDIATEK MMC/SD/SDIO DRIVER
13148 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13149 S:      Maintained
13150 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13151 F:      drivers/mmc/host/mtk-sd.c
13152
13153 MEDIATEK MT76 WIRELESS LAN DRIVER
13154 M:      Felix Fietkau <nbd@nbd.name>
13155 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13156 M:      Ryder Lee <ryder.lee@mediatek.com>
13157 R:      Shayne Chen <shayne.chen@mediatek.com>
13158 R:      Sean Wang <sean.wang@mediatek.com>
13159 L:      linux-wireless@vger.kernel.org
13160 S:      Maintained
13161 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13162 F:      drivers/net/wireless/mediatek/mt76/
13163
13164 MEDIATEK MT7601U WIRELESS LAN DRIVER
13165 M:      Jakub Kicinski <kuba@kernel.org>
13166 L:      linux-wireless@vger.kernel.org
13167 S:      Maintained
13168 F:      drivers/net/wireless/mediatek/mt7601u/
13169
13170 MEDIATEK MT7621 CLOCK DRIVER
13171 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13172 S:      Maintained
13173 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13174 F:      drivers/clk/ralink/clk-mt7621.c
13175
13176 MEDIATEK MT7621/28/88 I2C DRIVER
13177 M:      Stefan Roese <sr@denx.de>
13178 L:      linux-i2c@vger.kernel.org
13179 S:      Maintained
13180 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13181 F:      drivers/i2c/busses/i2c-mt7621.c
13182
13183 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13184 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13185 S:      Maintained
13186 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13187 F:      drivers/pci/controller/pcie-mt7621.c
13188
13189 MEDIATEK MT7621 PHY PCI DRIVER
13190 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13191 S:      Maintained
13192 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13193 F:      drivers/phy/ralink/phy-mt7621-pci.c
13194
13195 MEDIATEK NAND CONTROLLER DRIVER
13196 L:      linux-mtd@lists.infradead.org
13197 S:      Orphan
13198 F:      Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
13199 F:      drivers/mtd/nand/raw/mtk_*
13200
13201 MEDIATEK PMIC LED DRIVER
13202 M:      Sean Wang <sean.wang@mediatek.com>
13203 S:      Maintained
13204 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13205 F:      drivers/leds/leds-mt6323.c
13206
13207 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13208 M:      Sean Wang <sean.wang@mediatek.com>
13209 S:      Maintained
13210 F:      drivers/char/hw_random/mtk-rng.c
13211
13212 MEDIATEK SMI DRIVER
13213 M:      Yong Wu <yong.wu@mediatek.com>
13214 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13215 S:      Supported
13216 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13217 F:      drivers/memory/mtk-smi.c
13218 F:      include/soc/mediatek/smi.h
13219
13220 MEDIATEK SWITCH DRIVER
13221 M:      Sean Wang <sean.wang@mediatek.com>
13222 M:      Landen Chao <Landen.Chao@mediatek.com>
13223 M:      DENG Qingfang <dqfext@gmail.com>
13224 M:      Daniel Golle <daniel@makrotopia.org>
13225 L:      netdev@vger.kernel.org
13226 S:      Maintained
13227 F:      drivers/net/dsa/mt7530-mdio.c
13228 F:      drivers/net/dsa/mt7530-mmio.c
13229 F:      drivers/net/dsa/mt7530.*
13230 F:      net/dsa/tag_mtk.c
13231
13232 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13233 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13234 M:      Intel Corporation <linuxwwan@intel.com>
13235 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13236 R:      Liu Haijun <haijun.liu@mediatek.com>
13237 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13238 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13239 L:      netdev@vger.kernel.org
13240 S:      Supported
13241 F:      drivers/net/wwan/t7xx/
13242
13243 MEDIATEK USB3 DRD IP DRIVER
13244 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13245 L:      linux-usb@vger.kernel.org
13246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13247 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13248 S:      Maintained
13249 F:      Documentation/devicetree/bindings/usb/mediatek,*
13250 F:      drivers/usb/host/xhci-mtk*
13251 F:      drivers/usb/mtu3/
13252
13253 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13254 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13255 M:      Martin Donnelly <martin.donnelly@ge.com>
13256 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13257 S:      Maintained
13258 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13259 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13260
13261 MEGARAID SCSI/SAS DRIVERS
13262 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13263 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13264 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13265 L:      megaraidlinux.pdl@broadcom.com
13266 L:      linux-scsi@vger.kernel.org
13267 S:      Maintained
13268 W:      http://www.avagotech.com/support/
13269 F:      Documentation/scsi/megaraid.rst
13270 F:      drivers/scsi/megaraid.*
13271 F:      drivers/scsi/megaraid/
13272
13273 MELEXIS MLX90614 DRIVER
13274 M:      Crt Mori <cmo@melexis.com>
13275 L:      linux-iio@vger.kernel.org
13276 S:      Supported
13277 W:      http://www.melexis.com
13278 F:      drivers/iio/temperature/mlx90614.c
13279
13280 MELEXIS MLX90632 DRIVER
13281 M:      Crt Mori <cmo@melexis.com>
13282 L:      linux-iio@vger.kernel.org
13283 S:      Supported
13284 W:      http://www.melexis.com
13285 F:      drivers/iio/temperature/mlx90632.c
13286
13287 MELFAS MIP4 TOUCHSCREEN DRIVER
13288 M:      Sangwon Jee <jeesw@melfas.com>
13289 S:      Supported
13290 W:      http://www.melfas.com
13291 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13292 F:      drivers/input/touchscreen/melfas_mip4.c
13293
13294 MELLANOX BLUEFIELD I2C DRIVER
13295 M:      Khalil Blaiech <kblaiech@nvidia.com>
13296 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13297 L:      linux-i2c@vger.kernel.org
13298 S:      Supported
13299 F:      drivers/i2c/busses/i2c-mlxbf.c
13300
13301 MELLANOX ETHERNET DRIVER (mlx4_en)
13302 M:      Tariq Toukan <tariqt@nvidia.com>
13303 L:      netdev@vger.kernel.org
13304 S:      Supported
13305 W:      http://www.mellanox.com
13306 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13307 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13308
13309 MELLANOX ETHERNET DRIVER (mlx5e)
13310 M:      Saeed Mahameed <saeedm@nvidia.com>
13311 L:      netdev@vger.kernel.org
13312 S:      Supported
13313 W:      http://www.mellanox.com
13314 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13315 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13316
13317 MELLANOX ETHERNET INNOVA DRIVERS
13318 R:      Boris Pismenny <borisp@nvidia.com>
13319 L:      netdev@vger.kernel.org
13320 S:      Supported
13321 W:      http://www.mellanox.com
13322 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13323 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13324 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13325 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13326
13327 MELLANOX ETHERNET SWITCH DRIVERS
13328 M:      Ido Schimmel <idosch@nvidia.com>
13329 M:      Petr Machata <petrm@nvidia.com>
13330 L:      netdev@vger.kernel.org
13331 S:      Supported
13332 W:      http://www.mellanox.com
13333 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13334 F:      drivers/net/ethernet/mellanox/mlxsw/
13335 F:      tools/testing/selftests/drivers/net/mlxsw/
13336
13337 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13338 M:      mlxsw@nvidia.com
13339 L:      netdev@vger.kernel.org
13340 S:      Supported
13341 W:      http://www.mellanox.com
13342 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13343 F:      drivers/net/ethernet/mellanox/mlxfw/
13344
13345 MELLANOX HARDWARE PLATFORM SUPPORT
13346 M:      Hans de Goede <hdegoede@redhat.com>
13347 M:      Mark Gross <markgross@kernel.org>
13348 M:      Vadim Pasternak <vadimp@nvidia.com>
13349 L:      platform-driver-x86@vger.kernel.org
13350 S:      Supported
13351 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13352 F:      drivers/platform/mellanox/
13353 F:      include/linux/platform_data/mlxreg.h
13354
13355 MELLANOX MLX4 core VPI driver
13356 M:      Tariq Toukan <tariqt@nvidia.com>
13357 L:      netdev@vger.kernel.org
13358 L:      linux-rdma@vger.kernel.org
13359 S:      Supported
13360 W:      http://www.mellanox.com
13361 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13362 F:      drivers/net/ethernet/mellanox/mlx4/
13363 F:      include/linux/mlx4/
13364
13365 MELLANOX MLX4 IB driver
13366 M:      Yishai Hadas <yishaih@nvidia.com>
13367 L:      linux-rdma@vger.kernel.org
13368 S:      Supported
13369 W:      http://www.mellanox.com
13370 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13371 F:      drivers/infiniband/hw/mlx4/
13372 F:      include/linux/mlx4/
13373 F:      include/uapi/rdma/mlx4-abi.h
13374
13375 MELLANOX MLX5 core VPI driver
13376 M:      Saeed Mahameed <saeedm@nvidia.com>
13377 M:      Leon Romanovsky <leonro@nvidia.com>
13378 L:      netdev@vger.kernel.org
13379 L:      linux-rdma@vger.kernel.org
13380 S:      Supported
13381 W:      http://www.mellanox.com
13382 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13383 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13384 F:      drivers/net/ethernet/mellanox/mlx5/core/
13385 F:      include/linux/mlx5/
13386
13387 MELLANOX MLX5 IB driver
13388 M:      Leon Romanovsky <leonro@nvidia.com>
13389 L:      linux-rdma@vger.kernel.org
13390 S:      Supported
13391 W:      http://www.mellanox.com
13392 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13393 F:      drivers/infiniband/hw/mlx5/
13394 F:      include/linux/mlx5/
13395 F:      include/uapi/rdma/mlx5-abi.h
13396
13397 MELLANOX MLXCPLD I2C AND MUX DRIVER
13398 M:      Vadim Pasternak <vadimp@nvidia.com>
13399 M:      Michael Shych <michaelsh@nvidia.com>
13400 L:      linux-i2c@vger.kernel.org
13401 S:      Supported
13402 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13403 F:      drivers/i2c/busses/i2c-mlxcpld.c
13404 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13405
13406 MELLANOX MLXCPLD LED DRIVER
13407 M:      Vadim Pasternak <vadimp@nvidia.com>
13408 L:      linux-leds@vger.kernel.org
13409 S:      Supported
13410 F:      Documentation/leds/leds-mlxcpld.rst
13411 F:      drivers/leds/leds-mlxcpld.c
13412 F:      drivers/leds/leds-mlxreg.c
13413
13414 MELLANOX PLATFORM DRIVER
13415 M:      Vadim Pasternak <vadimp@nvidia.com>
13416 L:      platform-driver-x86@vger.kernel.org
13417 S:      Supported
13418 F:      drivers/platform/x86/mlx-platform.c
13419
13420 MEMBARRIER SUPPORT
13421 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13422 M:      "Paul E. McKenney" <paulmck@kernel.org>
13423 L:      linux-kernel@vger.kernel.org
13424 S:      Supported
13425 F:      arch/powerpc/include/asm/membarrier.h
13426 F:      include/uapi/linux/membarrier.h
13427 F:      kernel/sched/membarrier.c
13428
13429 MEMBLOCK
13430 M:      Mike Rapoport <rppt@kernel.org>
13431 L:      linux-mm@kvack.org
13432 S:      Maintained
13433 F:      Documentation/core-api/boot-time-mm.rst
13434 F:      include/linux/memblock.h
13435 F:      mm/memblock.c
13436 F:      tools/testing/memblock/
13437
13438 MEMORY CONTROLLER DRIVERS
13439 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13440 L:      linux-kernel@vger.kernel.org
13441 S:      Maintained
13442 B:      mailto:krzysztof.kozlowski@linaro.org
13443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13444 F:      Documentation/devicetree/bindings/memory-controllers/
13445 F:      drivers/memory/
13446 F:      include/dt-bindings/memory/
13447 F:      include/memory/
13448
13449 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13450 M:      Dmitry Osipenko <digetx@gmail.com>
13451 L:      linux-pm@vger.kernel.org
13452 L:      linux-tegra@vger.kernel.org
13453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13454 S:      Maintained
13455 F:      drivers/devfreq/tegra30-devfreq.c
13456
13457 MEMORY MANAGEMENT
13458 M:      Andrew Morton <akpm@linux-foundation.org>
13459 L:      linux-mm@kvack.org
13460 S:      Maintained
13461 W:      http://www.linux-mm.org
13462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13463 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13464 F:      include/linux/gfp.h
13465 F:      include/linux/gfp_types.h
13466 F:      include/linux/memory_hotplug.h
13467 F:      include/linux/mm.h
13468 F:      include/linux/mmzone.h
13469 F:      include/linux/pagewalk.h
13470 F:      mm/
13471 F:      tools/mm/
13472 F:      tools/testing/selftests/mm/
13473
13474 VMALLOC
13475 M:      Andrew Morton <akpm@linux-foundation.org>
13476 R:      Uladzislau Rezki <urezki@gmail.com>
13477 R:      Christoph Hellwig <hch@infradead.org>
13478 L:      linux-mm@kvack.org
13479 S:      Maintained
13480 W:      http://www.linux-mm.org
13481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13482 F:      include/linux/vmalloc.h
13483 F:      mm/vmalloc.c
13484
13485 MEMORY HOT(UN)PLUG
13486 M:      David Hildenbrand <david@redhat.com>
13487 M:      Oscar Salvador <osalvador@suse.de>
13488 L:      linux-mm@kvack.org
13489 S:      Maintained
13490 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13491 F:      Documentation/core-api/memory-hotplug.rst
13492 F:      drivers/base/memory.c
13493 F:      include/linux/memory_hotplug.h
13494 F:      mm/memory_hotplug.c
13495 F:      tools/testing/selftests/memory-hotplug/
13496
13497 MEMORY TECHNOLOGY DEVICES (MTD)
13498 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13499 M:      Richard Weinberger <richard@nod.at>
13500 M:      Vignesh Raghavendra <vigneshr@ti.com>
13501 L:      linux-mtd@lists.infradead.org
13502 S:      Maintained
13503 W:      http://www.linux-mtd.infradead.org/
13504 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13505 C:      irc://irc.oftc.net/mtd
13506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13508 F:      Documentation/devicetree/bindings/mtd/
13509 F:      drivers/mtd/
13510 F:      include/linux/mtd/
13511 F:      include/uapi/mtd/
13512
13513 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13514 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13515 L:      linux-iio@vger.kernel.org
13516 S:      Maintained
13517 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13518 F:      drivers/iio/accel/msa311.c
13519
13520 MEN A21 WATCHDOG DRIVER
13521 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13522 L:      linux-watchdog@vger.kernel.org
13523 S:      Maintained
13524 F:      drivers/watchdog/mena21_wdt.c
13525
13526 MEN CHAMELEON BUS (mcb)
13527 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13528 S:      Maintained
13529 F:      Documentation/driver-api/men-chameleon-bus.rst
13530 F:      drivers/mcb/
13531 F:      include/linux/mcb.h
13532
13533 MEN F21BMC (Board Management Controller)
13534 M:      Andreas Werner <andreas.werner@men.de>
13535 S:      Supported
13536 F:      Documentation/hwmon/menf21bmc.rst
13537 F:      drivers/hwmon/menf21bmc_hwmon.c
13538 F:      drivers/leds/leds-menf21bmc.c
13539 F:      drivers/mfd/menf21bmc.c
13540 F:      drivers/watchdog/menf21bmc_wdt.c
13541
13542 MEN Z069 WATCHDOG DRIVER
13543 M:      Johannes Thumshirn <jth@kernel.org>
13544 L:      linux-watchdog@vger.kernel.org
13545 S:      Maintained
13546 F:      drivers/watchdog/menz69_wdt.c
13547
13548 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13549 M:      Neil Armstrong <neil.armstrong@linaro.org>
13550 L:      linux-media@vger.kernel.org
13551 L:      linux-amlogic@lists.infradead.org
13552 S:      Supported
13553 W:      http://linux-meson.com/
13554 T:      git git://linuxtv.org/media_tree.git
13555 F:      Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
13556 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13557 F:      drivers/media/cec/platform/meson/ao-cec.c
13558
13559 MESON GE2D DRIVER FOR AMLOGIC SOCS
13560 M:      Neil Armstrong <neil.armstrong@linaro.org>
13561 L:      linux-media@vger.kernel.org
13562 L:      linux-amlogic@lists.infradead.org
13563 S:      Supported
13564 T:      git git://linuxtv.org/media_tree.git
13565 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13566 F:      drivers/media/platform/amlogic/meson-ge2d/
13567
13568 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13569 M:      Liang Yang <liang.yang@amlogic.com>
13570 L:      linux-mtd@lists.infradead.org
13571 S:      Maintained
13572 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13573 F:      drivers/mtd/nand/raw/meson_*
13574
13575 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13576 M:      Neil Armstrong <neil.armstrong@linaro.org>
13577 L:      linux-media@vger.kernel.org
13578 L:      linux-amlogic@lists.infradead.org
13579 S:      Supported
13580 T:      git git://linuxtv.org/media_tree.git
13581 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13582 F:      drivers/staging/media/meson/vdec/
13583
13584 METHODE UDPU SUPPORT
13585 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13586 S:      Maintained
13587 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13588
13589 MHI BUS
13590 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13591 L:      mhi@lists.linux.dev
13592 L:      linux-arm-msm@vger.kernel.org
13593 S:      Maintained
13594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13595 F:      Documentation/ABI/stable/sysfs-bus-mhi
13596 F:      Documentation/mhi/
13597 F:      drivers/bus/mhi/
13598 F:      include/linux/mhi.h
13599
13600 MICROBLAZE ARCHITECTURE
13601 M:      Michal Simek <monstr@monstr.eu>
13602 S:      Supported
13603 W:      http://www.monstr.eu/fdt/
13604 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13605 F:      arch/microblaze/
13606
13607 MICROBLAZE TMR MANAGER
13608 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13609 S:      Supported
13610 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13611 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13612 F:      drivers/misc/xilinx_tmr_manager.c
13613
13614 MICROBLAZE TMR INJECT
13615 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13616 S:      Supported
13617 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13618 F:      drivers/misc/xilinx_tmr_inject.c
13619
13620 MICROCHIP AT91 DMA DRIVERS
13621 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13622 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13624 L:      dmaengine@vger.kernel.org
13625 S:      Supported
13626 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13627 F:      drivers/dma/at_hdmac.c
13628 F:      drivers/dma/at_xdmac.c
13629 F:      include/dt-bindings/dma/at91.h
13630
13631 MICROCHIP AT91 SERIAL DRIVER
13632 M:      Richard Genoud <richard.genoud@gmail.com>
13633 S:      Maintained
13634 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13635 F:      drivers/tty/serial/atmel_serial.c
13636 F:      drivers/tty/serial/atmel_serial.h
13637
13638 MICROCHIP AT91 USART MFD DRIVER
13639 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13640 L:      linux-kernel@vger.kernel.org
13641 S:      Supported
13642 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13643 F:      drivers/mfd/at91-usart.c
13644 F:      include/dt-bindings/mfd/at91-usart.h
13645
13646 MICROCHIP AT91 USART SPI DRIVER
13647 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13648 L:      linux-spi@vger.kernel.org
13649 S:      Supported
13650 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13651 F:      drivers/spi/spi-at91-usart.c
13652
13653 MICROCHIP AUDIO ASOC DRIVERS
13654 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13655 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13656 S:      Supported
13657 F:      sound/soc/atmel
13658
13659 MICROCHIP CSI2DC DRIVER
13660 M:      Eugen Hristev <eugen.hristev@microchip.com>
13661 L:      linux-media@vger.kernel.org
13662 S:      Supported
13663 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13664 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13665
13666 MICROCHIP ECC DRIVER
13667 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13668 L:      linux-crypto@vger.kernel.org
13669 S:      Maintained
13670 F:      drivers/crypto/atmel-ecc.*
13671
13672 MICROCHIP EIC 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:      drivers/irqchip/irq-mchp-eic.c
13677
13678 MICROCHIP I2C DRIVER
13679 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13680 L:      linux-i2c@vger.kernel.org
13681 S:      Supported
13682 F:      drivers/i2c/busses/i2c-at91-*.c
13683 F:      drivers/i2c/busses/i2c-at91.h
13684
13685 MICROCHIP ISC DRIVER
13686 M:      Eugen Hristev <eugen.hristev@microchip.com>
13687 L:      linux-media@vger.kernel.org
13688 S:      Supported
13689 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13690 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13691 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13692 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13693 F:      drivers/media/platform/microchip/microchip-isc*
13694 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13695 F:      include/linux/atmel-isc-media.h
13696
13697 MICROCHIP ISI DRIVER
13698 M:      Eugen Hristev <eugen.hristev@microchip.com>
13699 L:      linux-media@vger.kernel.org
13700 S:      Supported
13701 F:      drivers/media/platform/atmel/atmel-isi.c
13702 F:      drivers/media/platform/atmel/atmel-isi.h
13703
13704 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13705 M:      Woojung Huh <woojung.huh@microchip.com>
13706 M:      UNGLinuxDriver@microchip.com
13707 L:      netdev@vger.kernel.org
13708 S:      Maintained
13709 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13710 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13711 F:      drivers/net/dsa/microchip/*
13712 F:      include/linux/dsa/ksz_common.h
13713 F:      include/linux/platform_data/microchip-ksz.h
13714 F:      net/dsa/tag_ksz.c
13715
13716 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13717 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13718 R:      UNGLinuxDriver@microchip.com
13719 L:      netdev@vger.kernel.org
13720 S:      Maintained
13721 F:      drivers/net/phy/microchip_t1.c
13722
13723 MICROCHIP LAN743X ETHERNET DRIVER
13724 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13725 M:      UNGLinuxDriver@microchip.com
13726 L:      netdev@vger.kernel.org
13727 S:      Maintained
13728 F:      drivers/net/ethernet/microchip/lan743x_*
13729
13730 MICROCHIP LAN966X ETHERNET DRIVER
13731 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13732 M:      UNGLinuxDriver@microchip.com
13733 L:      netdev@vger.kernel.org
13734 S:      Maintained
13735 F:      drivers/net/ethernet/microchip/lan966x/*
13736
13737 MICROCHIP LCDFB DRIVER
13738 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13739 L:      linux-fbdev@vger.kernel.org
13740 S:      Maintained
13741 F:      drivers/video/fbdev/atmel_lcdfb.c
13742 F:      include/video/atmel_lcdc.h
13743
13744 MICROCHIP MCP16502 PMIC DRIVER
13745 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13747 S:      Supported
13748 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13749 F:      drivers/regulator/mcp16502.c
13750
13751 MICROCHIP MCP3911 ADC DRIVER
13752 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13753 M:      Kent Gustavsson <kent@minoris.se>
13754 L:      linux-iio@vger.kernel.org
13755 S:      Maintained
13756 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13757 F:      drivers/iio/adc/mcp3911.c
13758
13759 MICROCHIP MMC/SD/SDIO MCI DRIVER
13760 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13761 S:      Maintained
13762 F:      drivers/mmc/host/atmel-mci.c
13763
13764 MICROCHIP NAND DRIVER
13765 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13766 L:      linux-mtd@lists.infradead.org
13767 S:      Supported
13768 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13769 F:      drivers/mtd/nand/raw/atmel/*
13770
13771 MICROCHIP PCI1XXXX GP DRIVER
13772 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13773 L:      linux-gpio@vger.kernel.org
13774 S:      Supported
13775 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13776 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13777 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13778
13779 MICROCHIP OTPC DRIVER
13780 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13782 S:      Supported
13783 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13784 F:      drivers/nvmem/microchip-otpc.c
13785 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13786
13787 MICROCHIP PCI1XXXX I2C DRIVER
13788 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13789 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13790 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13791 L:      linux-i2c@vger.kernel.org
13792 S:      Maintained
13793 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13794
13795 MICROCHIP PCIe UART DRIVER
13796 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13797 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13798 L:      linux-serial@vger.kernel.org
13799 S:      Maintained
13800 F:      drivers/tty/serial/8250/8250_pci1xxxx.c
13801
13802 MICROCHIP PWM DRIVER
13803 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13805 L:      linux-pwm@vger.kernel.org
13806 S:      Supported
13807 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13808 F:      drivers/pwm/pwm-atmel.c
13809
13810 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13811 M:      Eugen Hristev <eugen.hristev@microchip.com>
13812 L:      linux-iio@vger.kernel.org
13813 S:      Supported
13814 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13815 F:      drivers/iio/adc/at91-sama5d2_adc.c
13816 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13817
13818 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13819 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13820 S:      Supported
13821 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13822
13823 MICROCHIP SPI DRIVER
13824 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13825 S:      Supported
13826 F:      drivers/spi/spi-atmel.*
13827
13828 MICROCHIP SSC DRIVER
13829 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13831 S:      Supported
13832 F:      drivers/misc/atmel-ssc.c
13833 F:      include/linux/atmel-ssc.h
13834
13835 MICROCHIP SOC DRIVERS
13836 M:      Conor Dooley <conor@kernel.org>
13837 S:      Supported
13838 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13839 F:      drivers/soc/microchip/
13840
13841 MICROCHIP USB251XB DRIVER
13842 M:      Richard Leitner <richard.leitner@skidata.com>
13843 L:      linux-usb@vger.kernel.org
13844 S:      Maintained
13845 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13846 F:      drivers/usb/misc/usb251xb.c
13847
13848 MICROCHIP USBA UDC DRIVER
13849 M:      Cristian Birsan <cristian.birsan@microchip.com>
13850 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13851 S:      Supported
13852 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13853
13854 MICROCHIP WILC1000 WIFI DRIVER
13855 M:      Ajay Singh <ajay.kathat@microchip.com>
13856 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13857 L:      linux-wireless@vger.kernel.org
13858 S:      Supported
13859 F:      drivers/net/wireless/microchip/wilc1000/
13860
13861 MICROSEMI MIPS SOCS
13862 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13863 M:      UNGLinuxDriver@microchip.com
13864 L:      linux-mips@vger.kernel.org
13865 S:      Supported
13866 F:      Documentation/devicetree/bindings/mips/mscc.txt
13867 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13868 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13869 F:      arch/mips/boot/dts/mscc/
13870 F:      arch/mips/configs/generic/board-ocelot.config
13871 F:      arch/mips/generic/board-ocelot.c
13872
13873 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13874 M:      Don Brace <don.brace@microchip.com>
13875 L:      storagedev@microchip.com
13876 L:      linux-scsi@vger.kernel.org
13877 S:      Supported
13878 F:      Documentation/scsi/smartpqi.rst
13879 F:      drivers/scsi/smartpqi/Kconfig
13880 F:      drivers/scsi/smartpqi/Makefile
13881 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13882 F:      include/linux/cciss*.h
13883 F:      include/uapi/linux/cciss*.h
13884
13885 MICROSOFT MANA RDMA DRIVER
13886 M:      Long Li <longli@microsoft.com>
13887 M:      Ajay Sharma <sharmaajay@microsoft.com>
13888 L:      linux-rdma@vger.kernel.org
13889 S:      Supported
13890 F:      drivers/infiniband/hw/mana/
13891 F:      include/net/mana
13892 F:      include/uapi/rdma/mana-abi.h
13893
13894 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13895 M:      Maximilian Luz <luzmaximilian@gmail.com>
13896 L:      platform-driver-x86@vger.kernel.org
13897 S:      Maintained
13898 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13899
13900 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13901 M:      Maximilian Luz <luzmaximilian@gmail.com>
13902 L:      linux-pm@vger.kernel.org
13903 L:      platform-driver-x86@vger.kernel.org
13904 S:      Maintained
13905 F:      drivers/power/supply/surface_battery.c
13906 F:      drivers/power/supply/surface_charger.c
13907
13908 MICROSOFT SURFACE DTX DRIVER
13909 M:      Maximilian Luz <luzmaximilian@gmail.com>
13910 L:      platform-driver-x86@vger.kernel.org
13911 S:      Maintained
13912 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13913 F:      drivers/platform/surface/surface_dtx.c
13914 F:      include/uapi/linux/surface_aggregator/dtx.h
13915
13916 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13917 M:      Maximilian Luz <luzmaximilian@gmail.com>
13918 L:      platform-driver-x86@vger.kernel.org
13919 S:      Maintained
13920 F:      drivers/platform/surface/surface_gpe.c
13921
13922 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13923 M:      Hans de Goede <hdegoede@redhat.com>
13924 M:      Mark Gross <markgross@kernel.org>
13925 M:      Maximilian Luz <luzmaximilian@gmail.com>
13926 L:      platform-driver-x86@vger.kernel.org
13927 S:      Maintained
13928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13929 F:      drivers/platform/surface/
13930
13931 MICROSOFT SURFACE HID TRANSPORT DRIVER
13932 M:      Maximilian Luz <luzmaximilian@gmail.com>
13933 L:      linux-input@vger.kernel.org
13934 L:      platform-driver-x86@vger.kernel.org
13935 S:      Maintained
13936 F:      drivers/hid/surface-hid/
13937
13938 MICROSOFT SURFACE HOT-PLUG DRIVER
13939 M:      Maximilian Luz <luzmaximilian@gmail.com>
13940 L:      platform-driver-x86@vger.kernel.org
13941 S:      Maintained
13942 F:      drivers/platform/surface/surface_hotplug.c
13943
13944 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13945 M:      Maximilian Luz <luzmaximilian@gmail.com>
13946 L:      platform-driver-x86@vger.kernel.org
13947 S:      Maintained
13948 F:      drivers/platform/surface/surface_platform_profile.c
13949
13950 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13951 M:      Chen Yu <yu.c.chen@intel.com>
13952 L:      platform-driver-x86@vger.kernel.org
13953 S:      Supported
13954 F:      drivers/platform/surface/surfacepro3_button.c
13955
13956 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13957 M:      Maximilian Luz <luzmaximilian@gmail.com>
13958 L:      platform-driver-x86@vger.kernel.org
13959 S:      Maintained
13960 W:      https://github.com/linux-surface/surface-aggregator-module
13961 C:      irc://irc.libera.chat/linux-surface
13962 F:      Documentation/driver-api/surface_aggregator/
13963 F:      drivers/platform/surface/aggregator/
13964 F:      drivers/platform/surface/surface_acpi_notify.c
13965 F:      drivers/platform/surface/surface_aggregator_cdev.c
13966 F:      drivers/platform/surface/surface_aggregator_registry.c
13967 F:      include/linux/surface_acpi_notify.h
13968 F:      include/linux/surface_aggregator/
13969 F:      include/uapi/linux/surface_aggregator/
13970
13971 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13972 M:      Maximilian Luz <luzmaximilian@gmail.com>
13973 L:      platform-driver-x86@vger.kernel.org
13974 S:      Maintained
13975 F:      drivers/platform/surface/surface_aggregator_hub.c
13976
13977 MICROTEK X6 SCANNER
13978 M:      Oliver Neukum <oliver@neukum.org>
13979 S:      Maintained
13980 F:      drivers/usb/image/microtek.*
13981
13982 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13983 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13984 M:      Luka Perkov <luka.perkov@sartura.hr>
13985 S:      Maintained
13986 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13987 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13988 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13989 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13990 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13991 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13992
13993 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13994 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13995 L:      linux-media@vger.kernel.org
13996 S:      Maintained
13997 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13998 F:      Documentation/driver-api/media/drivers/ccs/
13999 F:      Documentation/userspace-api/media/drivers/ccs.rst
14000 F:      drivers/media/i2c/ccs-pll.c
14001 F:      drivers/media/i2c/ccs-pll.h
14002 F:      drivers/media/i2c/ccs/
14003 F:      include/uapi/linux/ccs.h
14004 F:      include/uapi/linux/smiapp.h
14005
14006 MIPS
14007 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14008 L:      linux-mips@vger.kernel.org
14009 S:      Maintained
14010 W:      http://www.linux-mips.org/
14011 Q:      https://patchwork.kernel.org/project/linux-mips/list/
14012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
14013 F:      Documentation/devicetree/bindings/mips/
14014 F:      Documentation/mips/
14015 F:      arch/mips/
14016 F:      drivers/platform/mips/
14017 F:      include/dt-bindings/mips/
14018
14019 MIPS BOSTON DEVELOPMENT BOARD
14020 M:      Paul Burton <paulburton@kernel.org>
14021 L:      linux-mips@vger.kernel.org
14022 S:      Maintained
14023 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
14024 F:      arch/mips/boot/dts/img/boston.dts
14025 F:      arch/mips/configs/generic/board-boston.config
14026 F:      drivers/clk/imgtec/clk-boston.c
14027 F:      include/dt-bindings/clock/boston-clock.h
14028
14029 MIPS CORE DRIVERS
14030 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14031 M:      Serge Semin <fancer.lancer@gmail.com>
14032 L:      linux-mips@vger.kernel.org
14033 S:      Supported
14034 F:      drivers/bus/mips_cdmm.c
14035 F:      drivers/clocksource/mips-gic-timer.c
14036 F:      drivers/cpuidle/cpuidle-cps.c
14037 F:      drivers/irqchip/irq-mips-cpu.c
14038 F:      drivers/irqchip/irq-mips-gic.c
14039
14040 MIPS GENERIC PLATFORM
14041 M:      Paul Burton <paulburton@kernel.org>
14042 L:      linux-mips@vger.kernel.org
14043 S:      Supported
14044 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
14045 F:      arch/mips/generic/
14046 F:      arch/mips/tools/generic-board-config.sh
14047
14048 MIPS RINT INSTRUCTION EMULATION
14049 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
14050 L:      linux-mips@vger.kernel.org
14051 S:      Supported
14052 F:      arch/mips/math-emu/dp_rint.c
14053 F:      arch/mips/math-emu/sp_rint.c
14054
14055 MIPS/LOONGSON1 ARCHITECTURE
14056 M:      Keguang Zhang <keguang.zhang@gmail.com>
14057 L:      linux-mips@vger.kernel.org
14058 S:      Maintained
14059 F:      arch/mips/include/asm/mach-loongson32/
14060 F:      arch/mips/loongson32/
14061 F:      drivers/*/*/*loongson1*
14062 F:      drivers/*/*loongson1*
14063
14064 MIPS/LOONGSON2EF ARCHITECTURE
14065 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14066 L:      linux-mips@vger.kernel.org
14067 S:      Maintained
14068 F:      arch/mips/include/asm/mach-loongson2ef/
14069 F:      arch/mips/loongson2ef/
14070 F:      drivers/cpufreq/loongson2_cpufreq.c
14071
14072 MIPS/LOONGSON64 ARCHITECTURE
14073 M:      Huacai Chen <chenhuacai@kernel.org>
14074 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14075 L:      linux-mips@vger.kernel.org
14076 S:      Maintained
14077 F:      arch/mips/include/asm/mach-loongson64/
14078 F:      arch/mips/loongson64/
14079 F:      drivers/irqchip/irq-loongson*
14080 F:      drivers/platform/mips/cpu_hwmon.c
14081
14082 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14083 M:      Hans Verkuil <hverkuil@xs4all.nl>
14084 L:      linux-media@vger.kernel.org
14085 S:      Odd Fixes
14086 W:      https://linuxtv.org
14087 T:      git git://linuxtv.org/media_tree.git
14088 F:      drivers/media/radio/radio-miropcm20*
14089
14090 MMP SUPPORT
14091 R:      Lubomir Rintel <lkundrak@v3.sk>
14092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14093 S:      Odd Fixes
14094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14095 F:      arch/arm/boot/dts/mmp*
14096 F:      arch/arm/mach-mmp/
14097 F:      include/linux/soc/mmp/
14098
14099 MMP USB PHY DRIVERS
14100 R:      Lubomir Rintel <lkundrak@v3.sk>
14101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14102 S:      Maintained
14103 F:      drivers/phy/marvell/phy-mmp3-usb.c
14104 F:      drivers/phy/marvell/phy-pxa-usb.c
14105
14106 MMU GATHER AND TLB INVALIDATION
14107 M:      Will Deacon <will@kernel.org>
14108 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14109 M:      Andrew Morton <akpm@linux-foundation.org>
14110 M:      Nick Piggin <npiggin@gmail.com>
14111 M:      Peter Zijlstra <peterz@infradead.org>
14112 L:      linux-arch@vger.kernel.org
14113 L:      linux-mm@kvack.org
14114 S:      Maintained
14115 F:      arch/*/include/asm/tlb.h
14116 F:      include/asm-generic/tlb.h
14117 F:      mm/mmu_gather.c
14118
14119 MN88472 MEDIA DRIVER
14120 M:      Antti Palosaari <crope@iki.fi>
14121 L:      linux-media@vger.kernel.org
14122 S:      Maintained
14123 W:      https://linuxtv.org
14124 W:      http://palosaari.fi/linux/
14125 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14126 F:      drivers/media/dvb-frontends/mn88472*
14127
14128 MN88473 MEDIA DRIVER
14129 M:      Antti Palosaari <crope@iki.fi>
14130 L:      linux-media@vger.kernel.org
14131 S:      Maintained
14132 W:      https://linuxtv.org
14133 W:      http://palosaari.fi/linux/
14134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14135 F:      drivers/media/dvb-frontends/mn88473*
14136
14137 MODULE SUPPORT
14138 M:      Luis Chamberlain <mcgrof@kernel.org>
14139 L:      linux-modules@vger.kernel.org
14140 L:      linux-kernel@vger.kernel.org
14141 S:      Maintained
14142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14143 F:      include/linux/module.h
14144 F:      kernel/module/
14145 F:      scripts/module*
14146
14147 MONOLITHIC POWER SYSTEM PMIC DRIVER
14148 M:      Saravanan Sekar <sravanhome@gmail.com>
14149 S:      Maintained
14150 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14151 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14152 F:      drivers/hwmon/pmbus/mpq7932.c
14153 F:      drivers/iio/adc/mp2629_adc.c
14154 F:      drivers/mfd/mp2629.c
14155 F:      drivers/power/supply/mp2629_charger.c
14156 F:      drivers/regulator/mp5416.c
14157 F:      drivers/regulator/mpq7920.c
14158 F:      drivers/regulator/mpq7920.h
14159 F:      include/linux/mfd/mp2629.h
14160
14161 MOST(R) TECHNOLOGY DRIVER
14162 M:      Parthiban Veerasooran <parthiban.veerasooran@microchip.com>
14163 M:      Christian Gromm <christian.gromm@microchip.com>
14164 S:      Maintained
14165 F:      Documentation/ABI/testing/configfs-most
14166 F:      Documentation/ABI/testing/sysfs-bus-most
14167 F:      drivers/most/
14168 F:      drivers/staging/most/
14169 F:      include/linux/most.h
14170
14171 MOTORCOMM PHY DRIVER
14172 M:      Peter Geis <pgwipeout@gmail.com>
14173 M:      Frank <Frank.Sae@motor-comm.com>
14174 L:      netdev@vger.kernel.org
14175 S:      Maintained
14176 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14177 F:      drivers/net/phy/motorcomm.c
14178
14179 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14180 M:      Jiri Slaby <jirislaby@kernel.org>
14181 S:      Maintained
14182 F:      Documentation/driver-api/tty/moxa-smartio.rst
14183 F:      drivers/tty/mxser.*
14184
14185 MR800 AVERMEDIA USB FM RADIO DRIVER
14186 M:      Alexey Klimov <klimov.linux@gmail.com>
14187 L:      linux-media@vger.kernel.org
14188 S:      Maintained
14189 T:      git git://linuxtv.org/media_tree.git
14190 F:      drivers/media/radio/radio-mr800.c
14191
14192 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14193 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14194 L:      linux-wpan@vger.kernel.org
14195 S:      Odd Fixes
14196 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14197 F:      drivers/net/ieee802154/mrf24j40.c
14198
14199 MSI EC DRIVER
14200 M:      Nikita Kravets <teackot@gmail.com>
14201 L:      platform-driver-x86@vger.kernel.org
14202 S:      Maintained
14203 W:      https://github.com/BeardOverflow/msi-ec
14204 F:      drivers/platform/x86/msi-ec.*
14205
14206 MSI LAPTOP SUPPORT
14207 M:      "Lee, Chun-Yi" <jlee@suse.com>
14208 L:      platform-driver-x86@vger.kernel.org
14209 S:      Maintained
14210 F:      drivers/platform/x86/msi-laptop.c
14211
14212 MSI WMI SUPPORT
14213 L:      platform-driver-x86@vger.kernel.org
14214 S:      Orphan
14215 F:      drivers/platform/x86/msi-wmi.c
14216
14217 MSI001 MEDIA DRIVER
14218 M:      Antti Palosaari <crope@iki.fi>
14219 L:      linux-media@vger.kernel.org
14220 S:      Maintained
14221 W:      https://linuxtv.org
14222 W:      http://palosaari.fi/linux/
14223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14224 T:      git git://linuxtv.org/anttip/media_tree.git
14225 F:      drivers/media/tuners/msi001*
14226
14227 MSI2500 MEDIA DRIVER
14228 M:      Antti Palosaari <crope@iki.fi>
14229 L:      linux-media@vger.kernel.org
14230 S:      Maintained
14231 W:      https://linuxtv.org
14232 W:      http://palosaari.fi/linux/
14233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14234 T:      git git://linuxtv.org/anttip/media_tree.git
14235 F:      drivers/media/usb/msi2500/
14236
14237 MSTAR INTERRUPT CONTROLLER DRIVER
14238 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14239 M:      Daniel Palmer <daniel@thingy.jp>
14240 S:      Maintained
14241 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14242 F:      drivers/irqchip/irq-mst-intc.c
14243
14244 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14245 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14246 L:      linux-mtd@lists.infradead.org
14247 S:      Maintained
14248 F:      drivers/mtd/devices/docg3*
14249
14250 MT9P031 APTINA CAMERA SENSOR
14251 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14252 L:      linux-media@vger.kernel.org
14253 S:      Maintained
14254 T:      git git://linuxtv.org/media_tree.git
14255 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14256 F:      drivers/media/i2c/mt9p031.c
14257 F:      include/media/i2c/mt9p031.h
14258
14259 MT9T112 APTINA CAMERA SENSOR
14260 M:      Jacopo Mondi <jacopo@jmondi.org>
14261 L:      linux-media@vger.kernel.org
14262 S:      Odd Fixes
14263 T:      git git://linuxtv.org/media_tree.git
14264 F:      drivers/media/i2c/mt9t112.c
14265 F:      include/media/i2c/mt9t112.h
14266
14267 MT9V032 APTINA CAMERA SENSOR
14268 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14269 L:      linux-media@vger.kernel.org
14270 S:      Maintained
14271 T:      git git://linuxtv.org/media_tree.git
14272 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14273 F:      drivers/media/i2c/mt9v032.c
14274 F:      include/media/i2c/mt9v032.h
14275
14276 MT9V111 APTINA CAMERA SENSOR
14277 M:      Jacopo Mondi <jacopo@jmondi.org>
14278 L:      linux-media@vger.kernel.org
14279 S:      Maintained
14280 T:      git git://linuxtv.org/media_tree.git
14281 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14282 F:      drivers/media/i2c/mt9v111.c
14283
14284 MULTIFUNCTION DEVICES (MFD)
14285 M:      Lee Jones <lee@kernel.org>
14286 S:      Maintained
14287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14288 F:      Documentation/devicetree/bindings/mfd/
14289 F:      drivers/mfd/
14290 F:      include/dt-bindings/mfd/
14291 F:      include/linux/mfd/
14292
14293 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14294 S:      Orphan
14295 F:      drivers/mmc/host/mmc_spi.c
14296 F:      include/linux/spi/mmc_spi.h
14297
14298 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14299 M:      Ulf Hansson <ulf.hansson@linaro.org>
14300 L:      linux-mmc@vger.kernel.org
14301 S:      Maintained
14302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14303 F:      Documentation/devicetree/bindings/mmc/
14304 F:      drivers/mmc/
14305 F:      include/linux/mmc/
14306 F:      include/uapi/linux/mmc/
14307
14308 MULTIPLEXER SUBSYSTEM
14309 M:      Peter Rosin <peda@axentia.se>
14310 S:      Maintained
14311 F:      Documentation/ABI/testing/sysfs-class-mux*
14312 F:      Documentation/devicetree/bindings/mux/
14313 F:      drivers/mux/
14314 F:      include/dt-bindings/mux/
14315 F:      include/linux/mux/
14316
14317 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14318 M:      Bin Liu <b-liu@ti.com>
14319 L:      linux-usb@vger.kernel.org
14320 S:      Maintained
14321 F:      drivers/usb/musb/
14322
14323 MXL301RF MEDIA DRIVER
14324 M:      Akihiro Tsukada <tskd08@gmail.com>
14325 L:      linux-media@vger.kernel.org
14326 S:      Odd Fixes
14327 F:      drivers/media/tuners/mxl301rf*
14328
14329 MXL5007T MEDIA DRIVER
14330 M:      Michael Krufky <mkrufky@linuxtv.org>
14331 L:      linux-media@vger.kernel.org
14332 S:      Maintained
14333 W:      https://linuxtv.org
14334 W:      http://github.com/mkrufky
14335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14336 T:      git git://linuxtv.org/mkrufky/tuners.git
14337 F:      drivers/media/tuners/mxl5007t.*
14338
14339 MXSFB DRM DRIVER
14340 M:      Marek Vasut <marex@denx.de>
14341 M:      Stefan Agner <stefan@agner.ch>
14342 L:      dri-devel@lists.freedesktop.org
14343 S:      Supported
14344 T:      git git://anongit.freedesktop.org/drm/drm-misc
14345 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14346 F:      drivers/gpu/drm/mxsfb/
14347
14348 MYLEX DAC960 PCI RAID Controller
14349 M:      Hannes Reinecke <hare@kernel.org>
14350 L:      linux-scsi@vger.kernel.org
14351 S:      Supported
14352 F:      drivers/scsi/myrb.*
14353 F:      drivers/scsi/myrs.*
14354
14355 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14356 M:      Chris Lee <christopher.lee@cspi.com>
14357 L:      netdev@vger.kernel.org
14358 S:      Supported
14359 W:      https://www.cspi.com/ethernet-products/support/downloads/
14360 F:      drivers/net/ethernet/myricom/myri10ge/
14361
14362 NAND FLASH SUBSYSTEM
14363 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14364 R:      Richard Weinberger <richard@nod.at>
14365 L:      linux-mtd@lists.infradead.org
14366 S:      Maintained
14367 W:      http://www.linux-mtd.infradead.org/
14368 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14369 C:      irc://irc.oftc.net/mtd
14370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14371 F:      drivers/mtd/nand/
14372 F:      include/linux/mtd/*nand*.h
14373
14374 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14375 M:      Daniel Mack <zonque@gmail.com>
14376 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14377 S:      Maintained
14378 W:      http://www.native-instruments.com
14379 F:      sound/usb/caiaq/
14380
14381 NATSEMI ETHERNET DRIVER (DP8381x)
14382 S:      Orphan
14383 F:      drivers/net/ethernet/natsemi/natsemi.c
14384
14385 NCR 5380 SCSI DRIVERS
14386 M:      Finn Thain <fthain@linux-m68k.org>
14387 M:      Michael Schmitz <schmitzmic@gmail.com>
14388 L:      linux-scsi@vger.kernel.org
14389 S:      Maintained
14390 F:      Documentation/scsi/g_NCR5380.rst
14391 F:      drivers/scsi/NCR5380.*
14392 F:      drivers/scsi/arm/cumana_1.c
14393 F:      drivers/scsi/arm/oak.c
14394 F:      drivers/scsi/atari_scsi.*
14395 F:      drivers/scsi/dmx3191d.c
14396 F:      drivers/scsi/g_NCR5380.*
14397 F:      drivers/scsi/mac_scsi.*
14398 F:      drivers/scsi/sun3_scsi.*
14399 F:      drivers/scsi/sun3_scsi_vme.c
14400
14401 NCSI LIBRARY
14402 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14403 S:      Maintained
14404 F:      net/ncsi/
14405
14406 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14407 M:      Guenter Roeck <linux@roeck-us.net>
14408 L:      linux-hwmon@vger.kernel.org
14409 S:      Maintained
14410 F:      Documentation/hwmon/nct6775.rst
14411 F:      drivers/hwmon/nct6775-core.c
14412 F:      drivers/hwmon/nct6775-platform.c
14413 F:      drivers/hwmon/nct6775.h
14414
14415 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14416 M:      Zev Weiss <zev@bewilderbeest.net>
14417 L:      linux-hwmon@vger.kernel.org
14418 S:      Maintained
14419 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14420 F:      drivers/hwmon/nct6775-i2c.c
14421
14422 NETDEVSIM
14423 M:      Jakub Kicinski <kuba@kernel.org>
14424 S:      Maintained
14425 F:      drivers/net/netdevsim/*
14426
14427 NETEM NETWORK EMULATOR
14428 M:      Stephen Hemminger <stephen@networkplumber.org>
14429 L:      netdev@vger.kernel.org
14430 S:      Maintained
14431 F:      net/sched/sch_netem.c
14432
14433 NETERION 10GbE DRIVERS (s2io)
14434 M:      Jon Mason <jdmason@kudzu.us>
14435 L:      netdev@vger.kernel.org
14436 S:      Supported
14437 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14438 F:      drivers/net/ethernet/neterion/
14439
14440 NETFILTER
14441 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14442 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14443 M:      Florian Westphal <fw@strlen.de>
14444 L:      netfilter-devel@vger.kernel.org
14445 L:      coreteam@netfilter.org
14446 S:      Maintained
14447 W:      http://www.netfilter.org/
14448 W:      http://www.iptables.org/
14449 W:      http://www.nftables.org/
14450 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14451 C:      irc://irc.libera.chat/netfilter
14452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14454 F:      include/linux/netfilter*
14455 F:      include/linux/netfilter/
14456 F:      include/net/netfilter/
14457 F:      include/uapi/linux/netfilter*
14458 F:      include/uapi/linux/netfilter/
14459 F:      net/*/netfilter.c
14460 F:      net/*/netfilter/
14461 F:      net/bridge/br_netfilter*.c
14462 F:      net/netfilter/
14463
14464 NETROM NETWORK LAYER
14465 M:      Ralf Baechle <ralf@linux-mips.org>
14466 L:      linux-hams@vger.kernel.org
14467 S:      Maintained
14468 W:      http://www.linux-ax25.org/
14469 F:      include/net/netrom.h
14470 F:      include/uapi/linux/netrom.h
14471 F:      net/netrom/
14472
14473 NETRONIX EMBEDDED CONTROLLER
14474 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14475 S:      Maintained
14476 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14477 F:      drivers/mfd/ntxec.c
14478 F:      drivers/pwm/pwm-ntxec.c
14479 F:      drivers/rtc/rtc-ntxec.c
14480 F:      include/linux/mfd/ntxec.h
14481
14482 NETRONOME ETHERNET DRIVERS
14483 M:      Simon Horman <simon.horman@corigine.com>
14484 R:      Jakub Kicinski <kuba@kernel.org>
14485 L:      oss-drivers@corigine.com
14486 S:      Maintained
14487 F:      drivers/net/ethernet/netronome/
14488
14489 NETWORK BLOCK DEVICE (NBD)
14490 M:      Josef Bacik <josef@toxicpanda.com>
14491 L:      linux-block@vger.kernel.org
14492 L:      nbd@other.debian.org
14493 S:      Maintained
14494 F:      Documentation/admin-guide/blockdev/nbd.rst
14495 F:      drivers/block/nbd.c
14496 F:      include/trace/events/nbd.h
14497 F:      include/uapi/linux/nbd.h
14498
14499 NETWORK DROP MONITOR
14500 M:      Neil Horman <nhorman@tuxdriver.com>
14501 L:      netdev@vger.kernel.org
14502 S:      Maintained
14503 W:      https://fedorahosted.org/dropwatch/
14504 F:      include/uapi/linux/net_dropmon.h
14505 F:      net/core/drop_monitor.c
14506
14507 NETWORKING DRIVERS
14508 M:      "David S. Miller" <davem@davemloft.net>
14509 M:      Eric Dumazet <edumazet@google.com>
14510 M:      Jakub Kicinski <kuba@kernel.org>
14511 M:      Paolo Abeni <pabeni@redhat.com>
14512 L:      netdev@vger.kernel.org
14513 S:      Maintained
14514 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14517 F:      Documentation/devicetree/bindings/net/
14518 F:      drivers/connector/
14519 F:      drivers/net/
14520 F:      include/dt-bindings/net/
14521 F:      include/linux/etherdevice.h
14522 F:      include/linux/fcdevice.h
14523 F:      include/linux/fddidevice.h
14524 F:      include/linux/hippidevice.h
14525 F:      include/linux/if_*
14526 F:      include/linux/inetdevice.h
14527 F:      include/linux/netdevice.h
14528 F:      include/uapi/linux/if_*
14529 F:      include/uapi/linux/netdevice.h
14530
14531 NETWORKING DRIVERS (WIRELESS)
14532 M:      Kalle Valo <kvalo@kernel.org>
14533 L:      linux-wireless@vger.kernel.org
14534 S:      Maintained
14535 W:      https://wireless.wiki.kernel.org/
14536 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14539 F:      Documentation/devicetree/bindings/net/wireless/
14540 F:      drivers/net/wireless/
14541
14542 NETWORKING [DSA]
14543 M:      Andrew Lunn <andrew@lunn.ch>
14544 M:      Florian Fainelli <f.fainelli@gmail.com>
14545 M:      Vladimir Oltean <olteanv@gmail.com>
14546 S:      Maintained
14547 F:      Documentation/devicetree/bindings/net/dsa/
14548 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14549 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14550 F:      drivers/net/dsa/
14551 F:      include/linux/dsa/
14552 F:      include/linux/platform_data/dsa.h
14553 F:      include/net/dsa.h
14554 F:      net/dsa/
14555 F:      tools/testing/selftests/drivers/net/dsa/
14556
14557 NETWORKING [GENERAL]
14558 M:      "David S. Miller" <davem@davemloft.net>
14559 M:      Eric Dumazet <edumazet@google.com>
14560 M:      Jakub Kicinski <kuba@kernel.org>
14561 M:      Paolo Abeni <pabeni@redhat.com>
14562 L:      netdev@vger.kernel.org
14563 S:      Maintained
14564 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14565 B:      mailto:netdev@vger.kernel.org
14566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14568 F:      Documentation/core-api/netlink.rst
14569 F:      Documentation/networking/
14570 F:      Documentation/process/maintainer-netdev.rst
14571 F:      Documentation/userspace-api/netlink/
14572 F:      include/linux/in.h
14573 F:      include/linux/net.h
14574 F:      include/linux/netdevice.h
14575 F:      include/net/
14576 F:      include/uapi/linux/in.h
14577 F:      include/uapi/linux/net.h
14578 F:      include/uapi/linux/net_namespace.h
14579 F:      include/uapi/linux/netdevice.h
14580 F:      lib/net_utils.c
14581 F:      lib/random32.c
14582 F:      net/
14583 F:      tools/net/
14584 F:      tools/testing/selftests/net/
14585
14586 NETWORKING [IPSEC]
14587 M:      Steffen Klassert <steffen.klassert@secunet.com>
14588 M:      Herbert Xu <herbert@gondor.apana.org.au>
14589 M:      "David S. Miller" <davem@davemloft.net>
14590 L:      netdev@vger.kernel.org
14591 S:      Maintained
14592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14594 F:      include/net/xfrm.h
14595 F:      include/uapi/linux/xfrm.h
14596 F:      net/ipv4/ah4.c
14597 F:      net/ipv4/esp4*
14598 F:      net/ipv4/ip_vti.c
14599 F:      net/ipv4/ipcomp.c
14600 F:      net/ipv4/xfrm*
14601 F:      net/ipv6/ah6.c
14602 F:      net/ipv6/esp6*
14603 F:      net/ipv6/ip6_vti.c
14604 F:      net/ipv6/ipcomp6.c
14605 F:      net/ipv6/xfrm*
14606 F:      net/key/
14607 F:      net/xfrm/
14608 F:      tools/testing/selftests/net/ipsec.c
14609
14610 NETWORKING [IPv4/IPv6]
14611 M:      "David S. Miller" <davem@davemloft.net>
14612 M:      David Ahern <dsahern@kernel.org>
14613 L:      netdev@vger.kernel.org
14614 S:      Maintained
14615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14616 F:      arch/x86/net/*
14617 F:      include/linux/ip.h
14618 F:      include/linux/ipv6*
14619 F:      include/net/fib*
14620 F:      include/net/ip*
14621 F:      include/net/route.h
14622 F:      net/ipv4/
14623 F:      net/ipv6/
14624
14625 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14626 M:      Paul Moore <paul@paul-moore.com>
14627 L:      netdev@vger.kernel.org
14628 L:      linux-security-module@vger.kernel.org
14629 S:      Maintained
14630 W:      https://github.com/netlabel
14631 F:      Documentation/netlabel/
14632 F:      include/net/calipso.h
14633 F:      include/net/cipso_ipv4.h
14634 F:      include/net/netlabel.h
14635 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14636 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14637 F:      net/ipv4/cipso_ipv4.c
14638 F:      net/ipv6/calipso.c
14639 F:      net/netfilter/xt_CONNSECMARK.c
14640 F:      net/netfilter/xt_SECMARK.c
14641 F:      net/netlabel/
14642
14643 NETWORKING [MPTCP]
14644 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14645 M:      Mat Martineau <martineau@kernel.org>
14646 L:      netdev@vger.kernel.org
14647 L:      mptcp@lists.linux.dev
14648 S:      Maintained
14649 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14650 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14651 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export-net
14652 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export
14653 F:      Documentation/networking/mptcp-sysctl.rst
14654 F:      include/net/mptcp.h
14655 F:      include/trace/events/mptcp.h
14656 F:      include/uapi/linux/mptcp.h
14657 F:      net/mptcp/
14658 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14659 F:      tools/testing/selftests/net/mptcp/
14660
14661 NETWORKING [TCP]
14662 M:      Eric Dumazet <edumazet@google.com>
14663 L:      netdev@vger.kernel.org
14664 S:      Maintained
14665 F:      include/linux/tcp.h
14666 F:      include/net/tcp.h
14667 F:      include/trace/events/tcp.h
14668 F:      include/uapi/linux/tcp.h
14669 F:      net/ipv4/syncookies.c
14670 F:      net/ipv4/tcp*.c
14671 F:      net/ipv6/syncookies.c
14672 F:      net/ipv6/tcp*.c
14673
14674 NETWORKING [TLS]
14675 M:      Boris Pismenny <borisp@nvidia.com>
14676 M:      John Fastabend <john.fastabend@gmail.com>
14677 M:      Jakub Kicinski <kuba@kernel.org>
14678 L:      netdev@vger.kernel.org
14679 S:      Maintained
14680 F:      include/net/tls.h
14681 F:      include/uapi/linux/tls.h
14682 F:      net/tls/*
14683
14684 NETXEN (1/10) GbE SUPPORT
14685 M:      Manish Chopra <manishc@marvell.com>
14686 M:      Rahul Verma <rahulv@marvell.com>
14687 M:      GR-Linux-NIC-Dev@marvell.com
14688 L:      netdev@vger.kernel.org
14689 S:      Supported
14690 F:      drivers/net/ethernet/qlogic/netxen/
14691
14692 NET_FAILOVER MODULE
14693 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14694 L:      netdev@vger.kernel.org
14695 S:      Supported
14696 F:      Documentation/networking/net_failover.rst
14697 F:      drivers/net/net_failover.c
14698 F:      include/net/net_failover.h
14699
14700 NEXTHOP
14701 M:      David Ahern <dsahern@kernel.org>
14702 L:      netdev@vger.kernel.org
14703 S:      Maintained
14704 F:      include/net/netns/nexthop.h
14705 F:      include/net/nexthop.h
14706 F:      include/uapi/linux/nexthop.h
14707 F:      net/ipv4/nexthop.c
14708
14709 NFC SUBSYSTEM
14710 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14711 L:      netdev@vger.kernel.org
14712 S:      Maintained
14713 F:      Documentation/devicetree/bindings/net/nfc/
14714 F:      drivers/nfc/
14715 F:      include/net/nfc/
14716 F:      include/uapi/linux/nfc.h
14717 F:      net/nfc/
14718
14719 NFC VIRTUAL NCI DEVICE DRIVER
14720 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14721 L:      netdev@vger.kernel.org
14722 S:      Supported
14723 F:      drivers/nfc/virtual_ncidev.c
14724 F:      tools/testing/selftests/nci/
14725
14726 NFS, SUNRPC, AND LOCKD CLIENTS
14727 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14728 M:      Anna Schumaker <anna@kernel.org>
14729 L:      linux-nfs@vger.kernel.org
14730 S:      Maintained
14731 W:      http://client.linux-nfs.org
14732 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14733 F:      fs/lockd/
14734 F:      fs/nfs/
14735 F:      fs/nfs_common/
14736 F:      include/linux/lockd/
14737 F:      include/linux/nfs*
14738 F:      include/linux/sunrpc/
14739 F:      include/uapi/linux/nfs*
14740 F:      include/uapi/linux/sunrpc/
14741 F:      net/sunrpc/
14742 F:      Documentation/filesystems/nfs/
14743
14744 NILFS2 FILESYSTEM
14745 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14746 L:      linux-nilfs@vger.kernel.org
14747 S:      Supported
14748 W:      https://nilfs.sourceforge.io/
14749 W:      https://nilfs.osdn.jp/
14750 T:      git https://github.com/konis/nilfs2.git
14751 F:      Documentation/filesystems/nilfs2.rst
14752 F:      fs/nilfs2/
14753 F:      include/trace/events/nilfs2.h
14754 F:      include/uapi/linux/nilfs2_api.h
14755 F:      include/uapi/linux/nilfs2_ondisk.h
14756
14757 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14758 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14759 S:      Maintained
14760 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14761 F:      Documentation/scsi/NinjaSCSI.rst
14762 F:      drivers/scsi/pcmcia/nsp_*
14763
14764 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14765 M:      GOTO Masanori <gotom@debian.or.jp>
14766 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14767 S:      Maintained
14768 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14769 F:      Documentation/scsi/NinjaSCSI.rst
14770 F:      drivers/scsi/nsp32*
14771
14772 NINTENDO HID DRIVER
14773 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14774 L:      linux-input@vger.kernel.org
14775 S:      Maintained
14776 F:      drivers/hid/hid-nintendo*
14777
14778 NIOS2 ARCHITECTURE
14779 M:      Dinh Nguyen <dinguyen@kernel.org>
14780 S:      Maintained
14781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14782 F:      arch/nios2/
14783
14784 NITRO ENCLAVES (NE)
14785 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14786 L:      linux-kernel@vger.kernel.org
14787 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14788 S:      Supported
14789 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14790 F:      Documentation/virt/ne_overview.rst
14791 F:      drivers/virt/nitro_enclaves/
14792 F:      include/linux/nitro_enclaves.h
14793 F:      include/uapi/linux/nitro_enclaves.h
14794 F:      samples/nitro_enclaves/
14795
14796 NOHZ, DYNTICKS SUPPORT
14797 M:      Frederic Weisbecker <frederic@kernel.org>
14798 M:      Thomas Gleixner <tglx@linutronix.de>
14799 M:      Ingo Molnar <mingo@kernel.org>
14800 L:      linux-kernel@vger.kernel.org
14801 S:      Maintained
14802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14803 F:      include/linux/sched/nohz.h
14804 F:      include/linux/tick.h
14805 F:      kernel/time/tick*.*
14806
14807 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14808 M:      Pavel Machek <pavel@ucw.cz>
14809 M:      Sakari Ailus <sakari.ailus@iki.fi>
14810 L:      linux-media@vger.kernel.org
14811 S:      Maintained
14812 F:      drivers/media/i2c/ad5820.c
14813 F:      drivers/media/i2c/et8ek8
14814
14815 NOKIA N900 POWER SUPPLY DRIVERS
14816 R:      Pali Rohár <pali@kernel.org>
14817 F:      drivers/power/supply/bq2415x_charger.c
14818 F:      drivers/power/supply/bq27xxx_battery.c
14819 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14820 F:      drivers/power/supply/isp1704_charger.c
14821 F:      drivers/power/supply/rx51_battery.c
14822 F:      include/linux/power/bq2415x_charger.h
14823 F:      include/linux/power/bq27xxx_battery.h
14824
14825 NOLIBC HEADER FILE
14826 M:      Willy Tarreau <w@1wt.eu>
14827 S:      Maintained
14828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14829 F:      tools/include/nolibc/
14830 F:      tools/testing/selftests/nolibc/
14831
14832 NSDEPS
14833 M:      Matthias Maennich <maennich@google.com>
14834 S:      Maintained
14835 F:      Documentation/core-api/symbol-namespaces.rst
14836 F:      scripts/nsdeps
14837
14838 NTB AMD DRIVER
14839 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14840 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14841 L:      ntb@lists.linux.dev
14842 S:      Supported
14843 F:      drivers/ntb/hw/amd/
14844
14845 NTB DRIVER CORE
14846 M:      Jon Mason <jdmason@kudzu.us>
14847 M:      Dave Jiang <dave.jiang@intel.com>
14848 M:      Allen Hubbe <allenbh@gmail.com>
14849 L:      ntb@lists.linux.dev
14850 S:      Supported
14851 W:      https://github.com/jonmason/ntb/wiki
14852 T:      git git://github.com/jonmason/ntb.git
14853 F:      drivers/net/ntb_netdev.c
14854 F:      drivers/ntb/
14855 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14856 F:      include/linux/ntb.h
14857 F:      include/linux/ntb_transport.h
14858 F:      tools/testing/selftests/ntb/
14859
14860 NTB IDT DRIVER
14861 M:      Serge Semin <fancer.lancer@gmail.com>
14862 L:      ntb@lists.linux.dev
14863 S:      Supported
14864 F:      drivers/ntb/hw/idt/
14865
14866 NTB INTEL DRIVER
14867 M:      Dave Jiang <dave.jiang@intel.com>
14868 L:      ntb@lists.linux.dev
14869 S:      Supported
14870 W:      https://github.com/davejiang/linux/wiki
14871 T:      git https://github.com/davejiang/linux.git
14872 F:      drivers/ntb/hw/intel/
14873
14874 NTFS FILESYSTEM
14875 M:      Anton Altaparmakov <anton@tuxera.com>
14876 L:      linux-ntfs-dev@lists.sourceforge.net
14877 S:      Supported
14878 W:      http://www.tuxera.com/
14879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14880 F:      Documentation/filesystems/ntfs.rst
14881 F:      fs/ntfs/
14882
14883 NTFS3 FILESYSTEM
14884 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14885 L:      ntfs3@lists.linux.dev
14886 S:      Supported
14887 W:      http://www.paragon-software.com/
14888 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14889 F:      Documentation/filesystems/ntfs3.rst
14890 F:      fs/ntfs3/
14891
14892 NUBUS SUBSYSTEM
14893 M:      Finn Thain <fthain@linux-m68k.org>
14894 L:      linux-m68k@lists.linux-m68k.org
14895 S:      Maintained
14896 F:      arch/*/include/asm/nubus.h
14897 F:      drivers/nubus/
14898 F:      include/linux/nubus.h
14899 F:      include/uapi/linux/nubus.h
14900
14901 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14902 M:      Antonino Daplas <adaplas@gmail.com>
14903 L:      linux-fbdev@vger.kernel.org
14904 S:      Maintained
14905 F:      drivers/video/fbdev/nvidia/
14906 F:      drivers/video/fbdev/riva/
14907
14908 NVIDIA WMI EC BACKLIGHT DRIVER
14909 M:      Daniel Dadap <ddadap@nvidia.com>
14910 L:      platform-driver-x86@vger.kernel.org
14911 S:      Supported
14912 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14913 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14914
14915 NVM EXPRESS DRIVER
14916 M:      Keith Busch <kbusch@kernel.org>
14917 M:      Jens Axboe <axboe@fb.com>
14918 M:      Christoph Hellwig <hch@lst.de>
14919 M:      Sagi Grimberg <sagi@grimberg.me>
14920 L:      linux-nvme@lists.infradead.org
14921 S:      Supported
14922 W:      http://git.infradead.org/nvme.git
14923 T:      git git://git.infradead.org/nvme.git
14924 F:      Documentation/nvme/
14925 F:      drivers/nvme/common/
14926 F:      drivers/nvme/host/
14927 F:      include/linux/nvme-*.h
14928 F:      include/linux/nvme.h
14929 F:      include/uapi/linux/nvme_ioctl.h
14930
14931 NVM EXPRESS FABRICS AUTHENTICATION
14932 M:      Hannes Reinecke <hare@suse.de>
14933 L:      linux-nvme@lists.infradead.org
14934 S:      Supported
14935 F:      drivers/nvme/host/auth.c
14936 F:      drivers/nvme/target/auth.c
14937 F:      drivers/nvme/target/fabrics-cmd-auth.c
14938 F:      include/linux/nvme-auth.h
14939
14940 NVM EXPRESS HARDWARE MONITORING SUPPORT
14941 M:      Guenter Roeck <linux@roeck-us.net>
14942 L:      linux-nvme@lists.infradead.org
14943 S:      Supported
14944 F:      drivers/nvme/host/hwmon.c
14945
14946 NVM EXPRESS FC TRANSPORT DRIVERS
14947 M:      James Smart <james.smart@broadcom.com>
14948 L:      linux-nvme@lists.infradead.org
14949 S:      Supported
14950 F:      drivers/nvme/host/fc.c
14951 F:      drivers/nvme/target/fc.c
14952 F:      drivers/nvme/target/fcloop.c
14953 F:      include/linux/nvme-fc-driver.h
14954 F:      include/linux/nvme-fc.h
14955
14956 NVM EXPRESS TARGET DRIVER
14957 M:      Christoph Hellwig <hch@lst.de>
14958 M:      Sagi Grimberg <sagi@grimberg.me>
14959 M:      Chaitanya Kulkarni <kch@nvidia.com>
14960 L:      linux-nvme@lists.infradead.org
14961 S:      Supported
14962 W:      http://git.infradead.org/nvme.git
14963 T:      git git://git.infradead.org/nvme.git
14964 F:      drivers/nvme/target/
14965
14966 NVMEM FRAMEWORK
14967 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14968 S:      Maintained
14969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14970 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14971 F:      Documentation/devicetree/bindings/nvmem/
14972 F:      drivers/nvmem/
14973 F:      include/linux/nvmem-consumer.h
14974 F:      include/linux/nvmem-provider.h
14975
14976 NXP C45 TJA11XX PHY DRIVER
14977 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14978 L:      netdev@vger.kernel.org
14979 S:      Maintained
14980 F:      drivers/net/phy/nxp-c45-tja11xx.c
14981
14982 NXP FSPI DRIVER
14983 M:      Han Xu <han.xu@nxp.com>
14984 M:      Haibo Chen <haibo.chen@nxp.com>
14985 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14986 L:      linux-spi@vger.kernel.org
14987 S:      Maintained
14988 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14989 F:      drivers/spi/spi-nxp-fspi.c
14990
14991 NXP FXAS21002C DRIVER
14992 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14993 L:      linux-iio@vger.kernel.org
14994 S:      Maintained
14995 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14996 F:      drivers/iio/gyro/fxas21002c.h
14997 F:      drivers/iio/gyro/fxas21002c_core.c
14998 F:      drivers/iio/gyro/fxas21002c_i2c.c
14999 F:      drivers/iio/gyro/fxas21002c_spi.c
15000
15001 NXP i.MX CLOCK DRIVERS
15002 M:      Abel Vesa <abelvesa@kernel.org>
15003 R:      Peng Fan <peng.fan@nxp.com>
15004 L:      linux-clk@vger.kernel.org
15005 L:      linux-imx@nxp.com
15006 S:      Maintained
15007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
15008 F:      Documentation/devicetree/bindings/clock/imx*
15009 F:      drivers/clk/imx/
15010 F:      include/dt-bindings/clock/imx*
15011
15012 NXP i.MX 8M ISI DRIVER
15013 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15014 L:      linux-media@vger.kernel.org
15015 S:      Maintained
15016 F:      Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
15017 F:      drivers/media/platform/nxp/imx8-isi/
15018
15019 NXP i.MX 8MQ DCSS DRIVER
15020 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
15021 R:      Lucas Stach <l.stach@pengutronix.de>
15022 L:      dri-devel@lists.freedesktop.org
15023 S:      Maintained
15024 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
15025 F:      drivers/gpu/drm/imx/dcss/
15026
15027 NXP i.MX 8QXP ADC DRIVER
15028 M:      Cai Huoqing <cai.huoqing@linux.dev>
15029 M:      Haibo Chen <haibo.chen@nxp.com>
15030 L:      linux-imx@nxp.com
15031 L:      linux-iio@vger.kernel.org
15032 S:      Maintained
15033 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
15034 F:      drivers/iio/adc/imx8qxp-adc.c
15035
15036 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
15037 M:      Haibo Chen <haibo.chen@nxp.com>
15038 L:      linux-iio@vger.kernel.org
15039 L:      linux-imx@nxp.com
15040 S:      Maintained
15041 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
15042 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
15043 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
15044 F:      drivers/iio/adc/imx7d_adc.c
15045 F:      drivers/iio/adc/imx93_adc.c
15046 F:      drivers/iio/adc/vf610_adc.c
15047
15048 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
15049 M:      Jagan Teki <jagan@amarulasolutions.com>
15050 S:      Maintained
15051 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
15052 F:      drivers/regulator/pf8x00-regulator.c
15053
15054 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
15055 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15056 L:      linux-kernel@vger.kernel.org
15057 S:      Maintained
15058 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
15059 F:      drivers/extcon/extcon-ptn5150.c
15060
15061 NXP SGTL5000 DRIVER
15062 M:      Fabio Estevam <festevam@gmail.com>
15063 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15064 S:      Maintained
15065 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
15066 F:      sound/soc/codecs/sgtl5000*
15067
15068 NXP SJA1105 ETHERNET SWITCH DRIVER
15069 M:      Vladimir Oltean <olteanv@gmail.com>
15070 L:      linux-kernel@vger.kernel.org
15071 S:      Maintained
15072 F:      drivers/net/dsa/sja1105
15073 F:      drivers/net/pcs/pcs-xpcs-nxp.c
15074
15075 NXP TDA998X DRM DRIVER
15076 M:      Russell King <linux@armlinux.org.uk>
15077 S:      Maintained
15078 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15079 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15080 F:      drivers/gpu/drm/i2c/tda998x_drv.c
15081 F:      include/drm/i2c/tda998x.h
15082 F:      include/dt-bindings/display/tda998x.h
15083 K:      "nxp,tda998x"
15084
15085 NXP TFA9879 DRIVER
15086 M:      Peter Rosin <peda@axentia.se>
15087 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15088 S:      Maintained
15089 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
15090 F:      sound/soc/codecs/tfa9879*
15091
15092 NXP/Goodix TFA989X (TFA1) DRIVER
15093 M:      Stephan Gerhold <stephan@gerhold.net>
15094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15095 S:      Maintained
15096 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15097 F:      sound/soc/codecs/tfa989x.c
15098
15099 NXP-NCI NFC DRIVER
15100 S:      Orphan
15101 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15102 F:      drivers/nfc/nxp-nci
15103
15104 NXP i.MX 8MP DW100 V4L2 DRIVER
15105 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15106 L:      linux-media@vger.kernel.org
15107 S:      Maintained
15108 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15109 F:      Documentation/userspace-api/media/drivers/dw100.rst
15110 F:      drivers/media/platform/nxp/dw100/
15111 F:      include/uapi/linux/dw100.h
15112
15113 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15114 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
15115 R:      NXP Linux Team <linux-imx@nxp.com>
15116 L:      linux-media@vger.kernel.org
15117 S:      Maintained
15118 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15119 F:      drivers/media/platform/nxp/imx-jpeg
15120
15121 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15122 M:      Jonas Malaco <jonas@protocubo.io>
15123 L:      linux-hwmon@vger.kernel.org
15124 S:      Maintained
15125 F:      Documentation/hwmon/nzxt-kraken2.rst
15126 F:      drivers/hwmon/nzxt-kraken2.c
15127
15128 NZXT-SMART2 HARDWARE MONITORING DRIVER
15129 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15130 L:      linux-hwmon@vger.kernel.org
15131 S:      Maintained
15132 F:      Documentation/hwmon/nzxt-smart2.rst
15133 F:      drivers/hwmon/nzxt-smart2.c
15134
15135 OBJAGG
15136 M:      Jiri Pirko <jiri@resnulli.us>
15137 L:      netdev@vger.kernel.org
15138 S:      Supported
15139 F:      include/linux/objagg.h
15140 F:      lib/objagg.c
15141 F:      lib/test_objagg.c
15142
15143 OBJTOOL
15144 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15145 M:      Peter Zijlstra <peterz@infradead.org>
15146 S:      Supported
15147 F:      tools/objtool/
15148 F:      include/linux/objtool.h
15149
15150 OCELOT ETHERNET SWITCH DRIVER
15151 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15152 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15153 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15154 M:      UNGLinuxDriver@microchip.com
15155 L:      netdev@vger.kernel.org
15156 S:      Supported
15157 F:      drivers/net/dsa/ocelot/*
15158 F:      drivers/net/ethernet/mscc/
15159 F:      include/soc/mscc/ocelot*
15160 F:      net/dsa/tag_ocelot.c
15161 F:      net/dsa/tag_ocelot_8021q.c
15162 F:      tools/testing/selftests/drivers/net/ocelot/*
15163
15164 OCELOT EXTERNAL SWITCH CONTROL
15165 M:      Colin Foster <colin.foster@in-advantage.com>
15166 S:      Supported
15167 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15168 F:      drivers/mfd/ocelot*
15169 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15170 F:      include/linux/mfd/ocelot.h
15171
15172 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15173 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15174 M:      Andrew Donnellan <ajd@linux.ibm.com>
15175 L:      linuxppc-dev@lists.ozlabs.org
15176 S:      Supported
15177 F:      Documentation/userspace-api/accelerators/ocxl.rst
15178 F:      arch/powerpc/include/asm/pnv-ocxl.h
15179 F:      arch/powerpc/platforms/powernv/ocxl.c
15180 F:      drivers/misc/ocxl/
15181 F:      include/misc/ocxl*
15182 F:      include/uapi/misc/ocxl.h
15183
15184 OMAP AUDIO SUPPORT
15185 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15186 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15187 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15188 L:      linux-omap@vger.kernel.org
15189 S:      Maintained
15190 F:      sound/soc/ti/n810.c
15191 F:      sound/soc/ti/omap*
15192 F:      sound/soc/ti/rx51.c
15193 F:      sound/soc/ti/sdma-pcm.*
15194
15195 OMAP CLOCK FRAMEWORK SUPPORT
15196 M:      Paul Walmsley <paul@pwsan.com>
15197 L:      linux-omap@vger.kernel.org
15198 S:      Maintained
15199 F:      arch/arm/*omap*/*clock*
15200
15201 OMAP DEVICE TREE SUPPORT
15202 M:      Benoît Cousson <bcousson@baylibre.com>
15203 M:      Tony Lindgren <tony@atomide.com>
15204 L:      linux-omap@vger.kernel.org
15205 L:      devicetree@vger.kernel.org
15206 S:      Maintained
15207 F:      arch/arm/boot/dts/*am3*
15208 F:      arch/arm/boot/dts/*am4*
15209 F:      arch/arm/boot/dts/*am5*
15210 F:      arch/arm/boot/dts/*dra7*
15211 F:      arch/arm/boot/dts/*omap*
15212 F:      arch/arm/boot/dts/logicpd-som-lv*
15213 F:      arch/arm/boot/dts/logicpd-torpedo*
15214
15215 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15216 L:      linux-omap@vger.kernel.org
15217 L:      linux-fbdev@vger.kernel.org
15218 S:      Orphan
15219 F:      Documentation/arm/omap/dss.rst
15220 F:      drivers/video/fbdev/omap2/
15221
15222 OMAP FRAMEBUFFER SUPPORT
15223 L:      linux-fbdev@vger.kernel.org
15224 L:      linux-omap@vger.kernel.org
15225 S:      Orphan
15226 F:      drivers/video/fbdev/omap/
15227
15228 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15229 M:      Roger Quadros <rogerq@kernel.org>
15230 M:      Tony Lindgren <tony@atomide.com>
15231 L:      linux-omap@vger.kernel.org
15232 S:      Maintained
15233 F:      arch/arm/mach-omap2/*gpmc*
15234 F:      drivers/memory/omap-gpmc.c
15235
15236 OMAP GPIO DRIVER
15237 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15238 M:      Santosh Shilimkar <ssantosh@kernel.org>
15239 M:      Kevin Hilman <khilman@kernel.org>
15240 L:      linux-omap@vger.kernel.org
15241 S:      Maintained
15242 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15243 F:      drivers/gpio/gpio-omap.c
15244
15245 OMAP HARDWARE SPINLOCK SUPPORT
15246 M:      Ohad Ben-Cohen <ohad@wizery.com>
15247 L:      linux-omap@vger.kernel.org
15248 S:      Maintained
15249 F:      drivers/hwspinlock/omap_hwspinlock.c
15250
15251 OMAP HS MMC SUPPORT
15252 L:      linux-mmc@vger.kernel.org
15253 L:      linux-omap@vger.kernel.org
15254 S:      Orphan
15255 F:      drivers/mmc/host/omap_hsmmc.c
15256
15257 OMAP HWMOD DATA
15258 M:      Paul Walmsley <paul@pwsan.com>
15259 L:      linux-omap@vger.kernel.org
15260 S:      Maintained
15261 F:      arch/arm/mach-omap2/omap_hwmod*data*
15262
15263 OMAP HWMOD SUPPORT
15264 M:      Benoît Cousson <bcousson@baylibre.com>
15265 M:      Paul Walmsley <paul@pwsan.com>
15266 L:      linux-omap@vger.kernel.org
15267 S:      Maintained
15268 F:      arch/arm/mach-omap2/omap_hwmod.*
15269
15270 OMAP I2C DRIVER
15271 M:      Vignesh R <vigneshr@ti.com>
15272 L:      linux-omap@vger.kernel.org
15273 L:      linux-i2c@vger.kernel.org
15274 S:      Maintained
15275 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15276 F:      drivers/i2c/busses/i2c-omap.c
15277
15278 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15279 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15280 L:      linux-media@vger.kernel.org
15281 S:      Maintained
15282 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15283 F:      drivers/media/platform/ti/omap3isp/
15284 F:      drivers/staging/media/omap4iss/
15285
15286 OMAP MMC SUPPORT
15287 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15288 L:      linux-omap@vger.kernel.org
15289 S:      Odd Fixes
15290 F:      drivers/mmc/host/omap.c
15291
15292 OMAP POWER MANAGEMENT SUPPORT
15293 M:      Kevin Hilman <khilman@kernel.org>
15294 L:      linux-omap@vger.kernel.org
15295 S:      Maintained
15296 F:      arch/arm/*omap*/*pm*
15297 F:      drivers/cpufreq/omap-cpufreq.c
15298
15299 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15300 M:      Paul Walmsley <paul@pwsan.com>
15301 L:      linux-omap@vger.kernel.org
15302 S:      Maintained
15303 F:      arch/arm/mach-omap2/prm*
15304
15305 OMAP RANDOM NUMBER GENERATOR SUPPORT
15306 M:      Deepak Saxena <dsaxena@plexity.net>
15307 S:      Maintained
15308 F:      drivers/char/hw_random/omap-rng.c
15309
15310 OMAP USB SUPPORT
15311 L:      linux-usb@vger.kernel.org
15312 L:      linux-omap@vger.kernel.org
15313 S:      Orphan
15314 F:      arch/arm/*omap*/usb*
15315 F:      drivers/usb/*/*omap*
15316
15317 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15318 M:      Mark Jackson <mpfj@newflow.co.uk>
15319 L:      linux-omap@vger.kernel.org
15320 S:      Maintained
15321 F:      arch/arm/boot/dts/am335x-nano.dts
15322
15323 OMAP1 SUPPORT
15324 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15325 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15326 M:      Tony Lindgren <tony@atomide.com>
15327 L:      linux-omap@vger.kernel.org
15328 S:      Maintained
15329 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15331 F:      arch/arm/configs/omap1_defconfig
15332 F:      arch/arm/mach-omap1/
15333 F:      drivers/i2c/busses/i2c-omap.c
15334 F:      include/linux/platform_data/ams-delta-fiq.h
15335 F:      include/linux/platform_data/i2c-omap.h
15336
15337 OMAP2+ SUPPORT
15338 M:      Tony Lindgren <tony@atomide.com>
15339 L:      linux-omap@vger.kernel.org
15340 S:      Maintained
15341 W:      http://www.muru.com/linux/omap/
15342 W:      http://linux.omap.com/
15343 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15345 F:      arch/arm/configs/omap2plus_defconfig
15346 F:      arch/arm/mach-omap2/
15347 F:      drivers/bus/ti-sysc.c
15348 F:      drivers/i2c/busses/i2c-omap.c
15349 F:      drivers/irqchip/irq-omap-intc.c
15350 F:      drivers/mfd/*omap*.c
15351 F:      drivers/mfd/menelaus.c
15352 F:      drivers/mfd/palmas.c
15353 F:      drivers/mfd/tps65217.c
15354 F:      drivers/mfd/tps65218.c
15355 F:      drivers/mfd/tps65219.c
15356 F:      drivers/mfd/tps65910.c
15357 F:      drivers/mfd/twl-core.[ch]
15358 F:      drivers/mfd/twl4030*.c
15359 F:      drivers/mfd/twl6030*.c
15360 F:      drivers/mfd/twl6040*.c
15361 F:      drivers/regulator/palmas-regulator*.c
15362 F:      drivers/regulator/pbias-regulator.c
15363 F:      drivers/regulator/tps65217-regulator.c
15364 F:      drivers/regulator/tps65218-regulator.c
15365 F:      drivers/regulator/tps65219-regulator.c
15366 F:      drivers/regulator/tps65910-regulator.c
15367 F:      drivers/regulator/twl-regulator.c
15368 F:      drivers/regulator/twl6030-regulator.c
15369 F:      include/linux/platform_data/i2c-omap.h
15370 F:      include/linux/platform_data/ti-sysc.h
15371
15372 OMFS FILESYSTEM
15373 M:      Bob Copeland <me@bobcopeland.com>
15374 L:      linux-karma-devel@lists.sourceforge.net
15375 S:      Maintained
15376 F:      Documentation/filesystems/omfs.rst
15377 F:      fs/omfs/
15378
15379 OMNIKEY CARDMAN 4000 DRIVER
15380 M:      Harald Welte <laforge@gnumonks.org>
15381 S:      Maintained
15382 F:      drivers/char/pcmcia/cm4000_cs.c
15383 F:      include/linux/cm4000_cs.h
15384 F:      include/uapi/linux/cm4000_cs.h
15385
15386 OMNIKEY CARDMAN 4040 DRIVER
15387 M:      Harald Welte <laforge@gnumonks.org>
15388 S:      Maintained
15389 F:      drivers/char/pcmcia/cm4040_cs.*
15390
15391 OMNIVISION OG01A1B SENSOR DRIVER
15392 M:      Shawn Tu <shawnx.tu@intel.com>
15393 L:      linux-media@vger.kernel.org
15394 S:      Maintained
15395 F:      drivers/media/i2c/og01a1b.c
15396
15397 OMNIVISION OV02A10 SENSOR DRIVER
15398 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15399 L:      linux-media@vger.kernel.org
15400 S:      Maintained
15401 T:      git git://linuxtv.org/media_tree.git
15402 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15403 F:      drivers/media/i2c/ov02a10.c
15404
15405 OMNIVISION OV08D10 SENSOR DRIVER
15406 M:      Jimmy Su <jimmy.su@intel.com>
15407 L:      linux-media@vger.kernel.org
15408 S:      Maintained
15409 T:      git git://linuxtv.org/media_tree.git
15410 F:      drivers/media/i2c/ov08d10.c
15411
15412 OMNIVISION OV08X40 SENSOR DRIVER
15413 M:      Jason Chen <jason.z.chen@intel.com>
15414 L:      linux-media@vger.kernel.org
15415 S:      Maintained
15416 T:      git git://linuxtv.org/media_tree.git
15417 F:      drivers/media/i2c/ov08x40.c
15418
15419 OMNIVISION OV13858 SENSOR DRIVER
15420 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15421 L:      linux-media@vger.kernel.org
15422 S:      Maintained
15423 T:      git git://linuxtv.org/media_tree.git
15424 F:      drivers/media/i2c/ov13858.c
15425
15426 OMNIVISION OV13B10 SENSOR DRIVER
15427 M:      Arec Kao <arec.kao@intel.com>
15428 L:      linux-media@vger.kernel.org
15429 S:      Maintained
15430 T:      git git://linuxtv.org/media_tree.git
15431 F:      drivers/media/i2c/ov13b10.c
15432
15433 OMNIVISION OV2680 SENSOR DRIVER
15434 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15435 L:      linux-media@vger.kernel.org
15436 S:      Maintained
15437 T:      git git://linuxtv.org/media_tree.git
15438 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15439 F:      drivers/media/i2c/ov2680.c
15440
15441 OMNIVISION OV2685 SENSOR DRIVER
15442 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15443 L:      linux-media@vger.kernel.org
15444 S:      Maintained
15445 T:      git git://linuxtv.org/media_tree.git
15446 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
15447 F:      drivers/media/i2c/ov2685.c
15448
15449 OMNIVISION OV2740 SENSOR DRIVER
15450 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15451 R:      Shawn Tu <shawnx.tu@intel.com>
15452 R:      Bingbu Cao <bingbu.cao@intel.com>
15453 L:      linux-media@vger.kernel.org
15454 S:      Maintained
15455 T:      git git://linuxtv.org/media_tree.git
15456 F:      drivers/media/i2c/ov2740.c
15457
15458 OMNIVISION OV4689 SENSOR DRIVER
15459 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15460 L:      linux-media@vger.kernel.org
15461 S:      Maintained
15462 T:      git git://linuxtv.org/media_tree.git
15463 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15464 F:      drivers/media/i2c/ov5647.c
15465
15466 OMNIVISION OV5640 SENSOR DRIVER
15467 M:      Steve Longerbeam <slongerbeam@gmail.com>
15468 L:      linux-media@vger.kernel.org
15469 S:      Maintained
15470 T:      git git://linuxtv.org/media_tree.git
15471 F:      drivers/media/i2c/ov5640.c
15472
15473 OMNIVISION OV5647 SENSOR DRIVER
15474 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15475 M:      Jacopo Mondi <jacopo@jmondi.org>
15476 L:      linux-media@vger.kernel.org
15477 S:      Maintained
15478 T:      git git://linuxtv.org/media_tree.git
15479 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15480 F:      drivers/media/i2c/ov5647.c
15481
15482 OMNIVISION OV5670 SENSOR DRIVER
15483 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15484 L:      linux-media@vger.kernel.org
15485 S:      Maintained
15486 T:      git git://linuxtv.org/media_tree.git
15487 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
15488 F:      drivers/media/i2c/ov5670.c
15489
15490 OMNIVISION OV5675 SENSOR DRIVER
15491 M:      Shawn Tu <shawnx.tu@intel.com>
15492 L:      linux-media@vger.kernel.org
15493 S:      Maintained
15494 T:      git git://linuxtv.org/media_tree.git
15495 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
15496 F:      drivers/media/i2c/ov5675.c
15497
15498 OMNIVISION OV5693 SENSOR DRIVER
15499 M:      Daniel Scally <djrscally@gmail.com>
15500 L:      linux-media@vger.kernel.org
15501 S:      Maintained
15502 T:      git git://linuxtv.org/media_tree.git
15503 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15504 F:      drivers/media/i2c/ov5693.c
15505
15506 OMNIVISION OV5695 SENSOR DRIVER
15507 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15508 L:      linux-media@vger.kernel.org
15509 S:      Maintained
15510 T:      git git://linuxtv.org/media_tree.git
15511 F:      drivers/media/i2c/ov5695.c
15512
15513 OMNIVISION OV7670 SENSOR DRIVER
15514 L:      linux-media@vger.kernel.org
15515 S:      Orphan
15516 T:      git git://linuxtv.org/media_tree.git
15517 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15518 F:      drivers/media/i2c/ov7670.c
15519
15520 OMNIVISION OV772x SENSOR DRIVER
15521 M:      Jacopo Mondi <jacopo@jmondi.org>
15522 L:      linux-media@vger.kernel.org
15523 S:      Odd fixes
15524 T:      git git://linuxtv.org/media_tree.git
15525 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15526 F:      drivers/media/i2c/ov772x.c
15527 F:      include/media/i2c/ov772x.h
15528
15529 OMNIVISION OV7740 SENSOR DRIVER
15530 M:      Wenyou Yang <wenyou.yang@microchip.com>
15531 L:      linux-media@vger.kernel.org
15532 S:      Maintained
15533 T:      git git://linuxtv.org/media_tree.git
15534 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15535 F:      drivers/media/i2c/ov7740.c
15536
15537 OMNIVISION OV8856 SENSOR DRIVER
15538 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15539 L:      linux-media@vger.kernel.org
15540 S:      Maintained
15541 T:      git git://linuxtv.org/media_tree.git
15542 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15543 F:      drivers/media/i2c/ov8856.c
15544
15545 OMNIVISION OV8858 SENSOR DRIVER
15546 M:      Jacopo Mondi <jacopo.mondi@ideasonboard.com>
15547 M:      Nicholas Roth <nicholas@rothemail.net>
15548 L:      linux-media@vger.kernel.org
15549 S:      Maintained
15550 T:      git git://linuxtv.org/media_tree.git
15551 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
15552 F:      drivers/media/i2c/ov8858.c
15553
15554 OMNIVISION OV9282 SENSOR DRIVER
15555 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15556 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15557 L:      linux-media@vger.kernel.org
15558 S:      Maintained
15559 T:      git git://linuxtv.org/media_tree.git
15560 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15561 F:      drivers/media/i2c/ov9282.c
15562
15563 OMNIVISION OV9640 SENSOR DRIVER
15564 M:      Petr Cvek <petrcvekcz@gmail.com>
15565 L:      linux-media@vger.kernel.org
15566 S:      Maintained
15567 F:      drivers/media/i2c/ov9640.*
15568
15569 OMNIVISION OV9650 SENSOR DRIVER
15570 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15571 R:      Akinobu Mita <akinobu.mita@gmail.com>
15572 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15573 L:      linux-media@vger.kernel.org
15574 S:      Maintained
15575 T:      git git://linuxtv.org/media_tree.git
15576 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15577 F:      drivers/media/i2c/ov9650.c
15578
15579 OMNIVISION OV9734 SENSOR DRIVER
15580 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15581 R:      Bingbu Cao <bingbu.cao@intel.com>
15582 L:      linux-media@vger.kernel.org
15583 S:      Maintained
15584 T:      git git://linuxtv.org/media_tree.git
15585 F:      drivers/media/i2c/ov9734.c
15586
15587 ONBOARD USB HUB DRIVER
15588 M:      Matthias Kaehlcke <mka@chromium.org>
15589 L:      linux-usb@vger.kernel.org
15590 S:      Maintained
15591 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15592 F:      drivers/usb/misc/onboard_usb_hub.c
15593
15594 ONENAND FLASH DRIVER
15595 M:      Kyungmin Park <kyungmin.park@samsung.com>
15596 L:      linux-mtd@lists.infradead.org
15597 S:      Maintained
15598 F:      drivers/mtd/nand/onenand/
15599 F:      include/linux/mtd/onenand*.h
15600
15601 ONEXPLAYER FAN DRIVER
15602 M:      Derek John Clark <derekjohn.clark@gmail.com>
15603 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15604 L:      linux-hwmon@vger.kernel.org
15605 S:      Maintained
15606 F:      drivers/hwmon/oxp-sensors.c
15607
15608 ONION OMEGA2+ BOARD
15609 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15610 L:      linux-mips@vger.kernel.org
15611 S:      Maintained
15612 F:      arch/mips/boot/dts/ralink/omega2p.dts
15613
15614 ONSEMI ETHERNET PHY DRIVERS
15615 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15616 L:      netdev@vger.kernel.org
15617 S:      Supported
15618 W:      http://www.onsemi.com
15619 F:      drivers/net/phy/ncn*
15620
15621 OP-TEE DRIVER
15622 M:      Jens Wiklander <jens.wiklander@linaro.org>
15623 L:      op-tee@lists.trustedfirmware.org
15624 S:      Maintained
15625 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15626 F:      drivers/tee/optee/
15627
15628 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15629 M:      Sumit Garg <sumit.garg@linaro.org>
15630 L:      op-tee@lists.trustedfirmware.org
15631 S:      Maintained
15632 F:      drivers/char/hw_random/optee-rng.c
15633
15634 OP-TEE RTC DRIVER
15635 M:      Clément Léger <clement.leger@bootlin.com>
15636 L:      linux-rtc@vger.kernel.org
15637 S:      Maintained
15638 F:      drivers/rtc/rtc-optee.c
15639
15640 OPA-VNIC DRIVER
15641 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15642 L:      linux-rdma@vger.kernel.org
15643 S:      Supported
15644 F:      drivers/infiniband/ulp/opa_vnic
15645
15646 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15647 M:      Rob Herring <robh+dt@kernel.org>
15648 M:      Frank Rowand <frowand.list@gmail.com>
15649 L:      devicetree@vger.kernel.org
15650 S:      Maintained
15651 C:      irc://irc.libera.chat/devicetree
15652 W:      http://www.devicetree.org/
15653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15654 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15655 F:      drivers/of/
15656 F:      include/linux/of*.h
15657 F:      scripts/dtc/
15658 K:      of_overlay_notifier_
15659 K:      of_overlay_fdt_apply
15660 K:      of_overlay_remove
15661
15662 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15663 M:      Rob Herring <robh+dt@kernel.org>
15664 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15665 L:      devicetree@vger.kernel.org
15666 S:      Maintained
15667 C:      irc://irc.libera.chat/devicetree
15668 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15670 F:      Documentation/devicetree/
15671 F:      arch/*/boot/dts/
15672 F:      include/dt-bindings/
15673
15674 OPENCOMPUTE PTP CLOCK DRIVER
15675 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15676 M:      Vadim Fedorenko <vadfed@fb.com>
15677 L:      netdev@vger.kernel.org
15678 S:      Maintained
15679 F:      drivers/ptp/ptp_ocp.c
15680
15681 INTEL PTP DFL ToD DRIVER
15682 M:      Tianfei Zhang <tianfei.zhang@intel.com>
15683 L:      linux-fpga@vger.kernel.org
15684 L:      netdev@vger.kernel.org
15685 S:      Maintained
15686 F:      drivers/ptp/ptp_dfl_tod.c
15687
15688 OPENCORES I2C BUS DRIVER
15689 M:      Peter Korsgaard <peter@korsgaard.com>
15690 M:      Andrew Lunn <andrew@lunn.ch>
15691 L:      linux-i2c@vger.kernel.org
15692 S:      Maintained
15693 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15694 F:      Documentation/i2c/busses/i2c-ocores.rst
15695 F:      drivers/i2c/busses/i2c-ocores.c
15696 F:      include/linux/platform_data/i2c-ocores.h
15697
15698 OPENRISC ARCHITECTURE
15699 M:      Jonas Bonn <jonas@southpole.se>
15700 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15701 M:      Stafford Horne <shorne@gmail.com>
15702 L:      linux-openrisc@vger.kernel.org
15703 S:      Maintained
15704 W:      http://openrisc.io
15705 T:      git https://github.com/openrisc/linux.git
15706 F:      Documentation/devicetree/bindings/openrisc/
15707 F:      Documentation/arch/openrisc/
15708 F:      arch/openrisc/
15709 F:      drivers/irqchip/irq-ompic.c
15710 F:      drivers/irqchip/irq-or1k-*
15711
15712 OPENVSWITCH
15713 M:      Pravin B Shelar <pshelar@ovn.org>
15714 L:      netdev@vger.kernel.org
15715 L:      dev@openvswitch.org
15716 S:      Maintained
15717 W:      http://openvswitch.org
15718 F:      include/uapi/linux/openvswitch.h
15719 F:      net/openvswitch/
15720 F:      tools/testing/selftests/net/openvswitch/
15721
15722 OPERATING PERFORMANCE POINTS (OPP)
15723 M:      Viresh Kumar <vireshk@kernel.org>
15724 M:      Nishanth Menon <nm@ti.com>
15725 M:      Stephen Boyd <sboyd@kernel.org>
15726 L:      linux-pm@vger.kernel.org
15727 S:      Maintained
15728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15729 F:      Documentation/devicetree/bindings/opp/
15730 F:      Documentation/power/opp.rst
15731 F:      drivers/opp/
15732 F:      include/linux/pm_opp.h
15733
15734 OPL4 DRIVER
15735 M:      Clemens Ladisch <clemens@ladisch.de>
15736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15737 S:      Maintained
15738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15739 F:      sound/drivers/opl4/
15740
15741 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15742 M:      Mark Fasheh <mark@fasheh.com>
15743 M:      Joel Becker <jlbec@evilplan.org>
15744 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15745 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15746 S:      Supported
15747 W:      http://ocfs2.wiki.kernel.org
15748 F:      Documentation/filesystems/dlmfs.rst
15749 F:      Documentation/filesystems/ocfs2.rst
15750 F:      fs/ocfs2/
15751
15752 ORANGEFS FILESYSTEM
15753 M:      Mike Marshall <hubcap@omnibond.com>
15754 R:      Martin Brandenburg <martin@omnibond.com>
15755 L:      devel@lists.orangefs.org
15756 S:      Supported
15757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15758 F:      Documentation/filesystems/orangefs.rst
15759 F:      fs/orangefs/
15760
15761 ORINOCO DRIVER
15762 L:      linux-wireless@vger.kernel.org
15763 S:      Orphan
15764 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15765 W:      http://www.nongnu.org/orinoco/
15766 F:      drivers/net/wireless/intersil/orinoco/
15767
15768 OV2659 OMNIVISION SENSOR DRIVER
15769 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15770 L:      linux-media@vger.kernel.org
15771 S:      Maintained
15772 W:      https://linuxtv.org
15773 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15774 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15775 F:      drivers/media/i2c/ov2659.c
15776 F:      include/media/i2c/ov2659.h
15777
15778 OVERLAY FILESYSTEM
15779 M:      Miklos Szeredi <miklos@szeredi.hu>
15780 L:      linux-unionfs@vger.kernel.org
15781 S:      Supported
15782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15783 F:      Documentation/filesystems/overlayfs.rst
15784 F:      fs/overlayfs/
15785
15786 P54 WIRELESS DRIVER
15787 M:      Christian Lamparter <chunkeey@googlemail.com>
15788 L:      linux-wireless@vger.kernel.org
15789 S:      Maintained
15790 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15791 F:      drivers/net/wireless/intersil/p54/
15792
15793 PACKET SOCKETS
15794 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15795 S:      Maintained
15796 F:      include/uapi/linux/if_packet.h
15797 F:      net/packet/af_packet.c
15798
15799 PACKING
15800 M:      Vladimir Oltean <olteanv@gmail.com>
15801 L:      netdev@vger.kernel.org
15802 S:      Supported
15803 F:      Documentation/core-api/packing.rst
15804 F:      include/linux/packing.h
15805 F:      lib/packing.c
15806
15807 PADATA PARALLEL EXECUTION MECHANISM
15808 M:      Steffen Klassert <steffen.klassert@secunet.com>
15809 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15810 L:      linux-crypto@vger.kernel.org
15811 L:      linux-kernel@vger.kernel.org
15812 S:      Maintained
15813 F:      Documentation/core-api/padata.rst
15814 F:      include/linux/padata.h
15815 F:      kernel/padata.c
15816
15817 PAGE CACHE
15818 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15819 L:      linux-fsdevel@vger.kernel.org
15820 S:      Supported
15821 T:      git git://git.infradead.org/users/willy/pagecache.git
15822 F:      Documentation/filesystems/locking.rst
15823 F:      Documentation/filesystems/vfs.rst
15824 F:      include/linux/pagemap.h
15825 F:      mm/filemap.c
15826 F:      mm/page-writeback.c
15827 F:      mm/readahead.c
15828 F:      mm/truncate.c
15829
15830 PAGE POOL
15831 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15832 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15833 L:      netdev@vger.kernel.org
15834 S:      Supported
15835 F:      Documentation/networking/page_pool.rst
15836 F:      include/net/page_pool.h
15837 F:      include/trace/events/page_pool.h
15838 F:      net/core/page_pool.c
15839
15840 PAGE TABLE CHECK
15841 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15842 M:      Andrew Morton <akpm@linux-foundation.org>
15843 L:      linux-mm@kvack.org
15844 S:      Maintained
15845 F:      Documentation/mm/page_table_check.rst
15846 F:      include/linux/page_table_check.h
15847 F:      mm/page_table_check.c
15848
15849 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15850 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15851 L:      platform-driver-x86@vger.kernel.org
15852 S:      Maintained
15853 F:      drivers/platform/x86/panasonic-laptop.c
15854
15855 PARALLAX PING IIO SENSOR DRIVER
15856 M:      Andreas Klinger <ak@it-klinger.de>
15857 L:      linux-iio@vger.kernel.org
15858 S:      Maintained
15859 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15860 F:      drivers/iio/proximity/ping.c
15861
15862 PARALLEL LCD/KEYPAD PANEL DRIVER
15863 M:      Willy Tarreau <willy@haproxy.com>
15864 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15865 S:      Odd Fixes
15866 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15867 F:      drivers/auxdisplay/panel.c
15868
15869 PARALLEL PORT SUBSYSTEM
15870 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15871 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15872 L:      linux-parport@lists.infradead.org (subscribers-only)
15873 S:      Maintained
15874 F:      Documentation/driver-api/parport*.rst
15875 F:      drivers/char/ppdev.c
15876 F:      drivers/parport/
15877 F:      include/linux/parport*.h
15878 F:      include/uapi/linux/ppdev.h
15879
15880 PARAVIRT_OPS INTERFACE
15881 M:      Juergen Gross <jgross@suse.com>
15882 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15883 R:      Alexey Makhalov <amakhalov@vmware.com>
15884 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15885 L:      virtualization@lists.linux-foundation.org
15886 L:      x86@kernel.org
15887 S:      Supported
15888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15889 F:      Documentation/virt/paravirt_ops.rst
15890 F:      arch/*/include/asm/paravirt*.h
15891 F:      arch/*/kernel/paravirt*
15892 F:      include/linux/hypervisor.h
15893
15894 PARISC ARCHITECTURE
15895 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15896 M:      Helge Deller <deller@gmx.de>
15897 L:      linux-parisc@vger.kernel.org
15898 S:      Maintained
15899 W:      https://parisc.wiki.kernel.org
15900 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15903 F:      Documentation/arch/parisc/
15904 F:      arch/parisc/
15905 F:      drivers/char/agp/parisc-agp.c
15906 F:      drivers/input/misc/hp_sdc_rtc.c
15907 F:      drivers/input/serio/gscps2.c
15908 F:      drivers/input/serio/hp_sdc*
15909 F:      drivers/parisc/
15910 F:      drivers/parport/parport_gsc.*
15911 F:      drivers/tty/serial/8250/8250_parisc.c
15912 F:      drivers/video/console/sti*
15913 F:      drivers/video/fbdev/sti*
15914 F:      drivers/video/logo/logo_parisc*
15915 F:      include/linux/hp_sdc.h
15916
15917 PARMAN
15918 M:      Jiri Pirko <jiri@resnulli.us>
15919 L:      netdev@vger.kernel.org
15920 S:      Supported
15921 F:      include/linux/parman.h
15922 F:      lib/parman.c
15923 F:      lib/test_parman.c
15924
15925 PC ENGINES APU BOARD DRIVER
15926 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15927 S:      Maintained
15928 F:      drivers/platform/x86/pcengines-apuv2.c
15929
15930 PC87360 HARDWARE MONITORING DRIVER
15931 M:      Jim Cromie <jim.cromie@gmail.com>
15932 L:      linux-hwmon@vger.kernel.org
15933 S:      Maintained
15934 F:      Documentation/hwmon/pc87360.rst
15935 F:      drivers/hwmon/pc87360.c
15936
15937 PC8736x GPIO DRIVER
15938 M:      Jim Cromie <jim.cromie@gmail.com>
15939 S:      Maintained
15940 F:      drivers/char/pc8736x_gpio.c
15941
15942 PC87427 HARDWARE MONITORING DRIVER
15943 M:      Jean Delvare <jdelvare@suse.com>
15944 L:      linux-hwmon@vger.kernel.org
15945 S:      Maintained
15946 F:      Documentation/hwmon/pc87427.rst
15947 F:      drivers/hwmon/pc87427.c
15948
15949 PCA9532 LED DRIVER
15950 M:      Riku Voipio <riku.voipio@iki.fi>
15951 S:      Maintained
15952 F:      drivers/leds/leds-pca9532.c
15953 F:      include/linux/leds-pca9532.h
15954
15955 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15956 M:      Guenter Roeck <linux@roeck-us.net>
15957 L:      linux-i2c@vger.kernel.org
15958 S:      Maintained
15959 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15960
15961 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15962 M:      Khalid Aziz <khalid@gonehiking.org>
15963 S:      Maintained
15964 F:      drivers/firmware/pcdp.*
15965
15966 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15967 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15968 M:      Pali Rohár <pali@kernel.org>
15969 L:      linux-pci@vger.kernel.org
15970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15971 S:      Maintained
15972 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15973 F:      drivers/pci/controller/pci-aardvark.c
15974
15975 PCI DRIVER FOR ALTERA PCIE IP
15976 M:      Joyce Ooi <joyce.ooi@intel.com>
15977 L:      linux-pci@vger.kernel.org
15978 S:      Supported
15979 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15980 F:      drivers/pci/controller/pcie-altera.c
15981
15982 PCI DRIVER FOR APPLIEDMICRO XGENE
15983 M:      Toan Le <toan@os.amperecomputing.com>
15984 L:      linux-pci@vger.kernel.org
15985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15986 S:      Maintained
15987 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15988 F:      drivers/pci/controller/pci-xgene.c
15989
15990 PCI DRIVER FOR ARM VERSATILE PLATFORM
15991 M:      Rob Herring <robh@kernel.org>
15992 L:      linux-pci@vger.kernel.org
15993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15994 S:      Maintained
15995 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15996 F:      drivers/pci/controller/pci-versatile.c
15997
15998 PCI DRIVER FOR ARMADA 8K
15999 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16000 L:      linux-pci@vger.kernel.org
16001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16002 S:      Maintained
16003 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
16004 F:      drivers/pci/controller/dwc/pcie-armada8k.c
16005
16006 PCI DRIVER FOR CADENCE PCIE IP
16007 M:      Tom Joseph <tjoseph@cadence.com>
16008 L:      linux-pci@vger.kernel.org
16009 S:      Maintained
16010 F:      Documentation/devicetree/bindings/pci/cdns,*
16011 F:      drivers/pci/controller/cadence/
16012
16013 PCI DRIVER FOR FREESCALE LAYERSCAPE
16014 M:      Minghuan Lian <minghuan.Lian@nxp.com>
16015 M:      Mingkai Hu <mingkai.hu@nxp.com>
16016 M:      Roy Zang <roy.zang@nxp.com>
16017 L:      linuxppc-dev@lists.ozlabs.org
16018 L:      linux-pci@vger.kernel.org
16019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16020 S:      Maintained
16021 F:      drivers/pci/controller/dwc/*layerscape*
16022
16023 PCI DRIVER FOR GENERIC OF HOSTS
16024 M:      Will Deacon <will@kernel.org>
16025 L:      linux-pci@vger.kernel.org
16026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16027 S:      Maintained
16028 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
16029 F:      drivers/pci/controller/pci-host-common.c
16030 F:      drivers/pci/controller/pci-host-generic.c
16031
16032 PCI DRIVER FOR IMX6
16033 M:      Richard Zhu <hongxing.zhu@nxp.com>
16034 M:      Lucas Stach <l.stach@pengutronix.de>
16035 L:      linux-pci@vger.kernel.org
16036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16037 S:      Maintained
16038 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-common.yaml
16039 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie-ep.yaml
16040 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
16041 F:      drivers/pci/controller/dwc/*imx6*
16042
16043 PCI DRIVER FOR FU740
16044 M:      Paul Walmsley <paul.walmsley@sifive.com>
16045 M:      Greentime Hu <greentime.hu@sifive.com>
16046 L:      linux-pci@vger.kernel.org
16047 S:      Maintained
16048 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
16049 F:      drivers/pci/controller/dwc/pcie-fu740.c
16050
16051 PCI DRIVER FOR INTEL IXP4XX
16052 M:      Linus Walleij <linus.walleij@linaro.org>
16053 S:      Maintained
16054 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
16055 F:      drivers/pci/controller/pci-ixp4xx.c
16056
16057 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
16058 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
16059 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
16060 L:      linux-pci@vger.kernel.org
16061 S:      Supported
16062 F:      drivers/pci/controller/vmd.c
16063
16064 PCI DRIVER FOR MICROSEMI SWITCHTEC
16065 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
16066 M:      Logan Gunthorpe <logang@deltatee.com>
16067 L:      linux-pci@vger.kernel.org
16068 S:      Maintained
16069 F:      Documentation/ABI/testing/sysfs-class-switchtec
16070 F:      Documentation/driver-api/switchtec.rst
16071 F:      drivers/ntb/hw/mscc/
16072 F:      drivers/pci/switch/switchtec*
16073 F:      include/linux/switchtec.h
16074 F:      include/uapi/linux/switchtec_ioctl.h
16075
16076 PCI DRIVER FOR MOBIVEIL PCIE IP
16077 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
16078 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16079 L:      linux-pci@vger.kernel.org
16080 S:      Supported
16081 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
16082 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
16083
16084 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16085 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16086 M:      Pali Rohár <pali@kernel.org>
16087 L:      linux-pci@vger.kernel.org
16088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16089 S:      Maintained
16090 F:      drivers/pci/controller/*mvebu*
16091
16092 PCI DRIVER FOR NVIDIA TEGRA
16093 M:      Thierry Reding <thierry.reding@gmail.com>
16094 L:      linux-tegra@vger.kernel.org
16095 L:      linux-pci@vger.kernel.org
16096 S:      Supported
16097 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16098 F:      drivers/pci/controller/pci-tegra.c
16099
16100 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16101 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16102 L:      linux-pci@vger.kernel.org
16103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16104 S:      Maintained
16105 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16106 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16107
16108 PCI DRIVER FOR RENESAS R-CAR
16109 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16110 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16111 L:      linux-pci@vger.kernel.org
16112 L:      linux-renesas-soc@vger.kernel.org
16113 S:      Maintained
16114 F:      Documentation/devicetree/bindings/pci/*rcar*
16115 F:      drivers/pci/controller/*rcar*
16116
16117 PCI DRIVER FOR SAMSUNG EXYNOS
16118 M:      Jingoo Han <jingoohan1@gmail.com>
16119 L:      linux-pci@vger.kernel.org
16120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16121 L:      linux-samsung-soc@vger.kernel.org
16122 S:      Maintained
16123 F:      drivers/pci/controller/dwc/pci-exynos.c
16124
16125 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16126 M:      Jingoo Han <jingoohan1@gmail.com>
16127 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16128 L:      linux-pci@vger.kernel.org
16129 S:      Maintained
16130 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16131 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16132 F:      drivers/pci/controller/dwc/*designware*
16133
16134 PCI DRIVER FOR TI DRA7XX/J721E
16135 M:      Vignesh Raghavendra <vigneshr@ti.com>
16136 L:      linux-omap@vger.kernel.org
16137 L:      linux-pci@vger.kernel.org
16138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16139 S:      Supported
16140 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16141 F:      drivers/pci/controller/cadence/pci-j721e.c
16142 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16143
16144 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16145 M:      Linus Walleij <linus.walleij@linaro.org>
16146 L:      linux-pci@vger.kernel.org
16147 S:      Maintained
16148 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16149 F:      drivers/pci/controller/pci-v3-semi.c
16150
16151 PCI ENDPOINT SUBSYSTEM
16152 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16153 M:      Krzysztof Wilczyński <kw@linux.com>
16154 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16155 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16156 L:      linux-pci@vger.kernel.org
16157 S:      Supported
16158 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16159 B:      https://bugzilla.kernel.org
16160 C:      irc://irc.oftc.net/linux-pci
16161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16162 F:      Documentation/PCI/endpoint/*
16163 F:      Documentation/misc-devices/pci-endpoint-test.rst
16164 F:      drivers/misc/pci_endpoint_test.c
16165 F:      drivers/pci/endpoint/
16166 F:      tools/pci/
16167
16168 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16169 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16170 R:      Oliver O'Halloran <oohall@gmail.com>
16171 L:      linuxppc-dev@lists.ozlabs.org
16172 S:      Supported
16173 F:      Documentation/PCI/pci-error-recovery.rst
16174 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16175 F:      arch/powerpc/include/*/eeh*.h
16176 F:      arch/powerpc/kernel/eeh*.c
16177 F:      arch/powerpc/platforms/*/eeh*.c
16178 F:      drivers/pci/pcie/aer.c
16179 F:      drivers/pci/pcie/dpc.c
16180 F:      drivers/pci/pcie/err.c
16181
16182 PCI ERROR RECOVERY
16183 M:      Linas Vepstas <linasvepstas@gmail.com>
16184 L:      linux-pci@vger.kernel.org
16185 S:      Supported
16186 F:      Documentation/PCI/pci-error-recovery.rst
16187
16188 PCI PEER-TO-PEER DMA (P2PDMA)
16189 M:      Bjorn Helgaas <bhelgaas@google.com>
16190 M:      Logan Gunthorpe <logang@deltatee.com>
16191 L:      linux-pci@vger.kernel.org
16192 S:      Supported
16193 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16194 B:      https://bugzilla.kernel.org
16195 C:      irc://irc.oftc.net/linux-pci
16196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16197 F:      Documentation/driver-api/pci/p2pdma.rst
16198 F:      drivers/pci/p2pdma.c
16199 F:      include/linux/pci-p2pdma.h
16200
16201 PCI MSI DRIVER FOR ALTERA MSI IP
16202 M:      Joyce Ooi <joyce.ooi@intel.com>
16203 L:      linux-pci@vger.kernel.org
16204 S:      Supported
16205 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16206 F:      drivers/pci/controller/pcie-altera-msi.c
16207
16208 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16209 M:      Toan Le <toan@os.amperecomputing.com>
16210 L:      linux-pci@vger.kernel.org
16211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16212 S:      Maintained
16213 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16214 F:      drivers/pci/controller/pci-xgene-msi.c
16215
16216 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16217 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16218 M:      Krzysztof Wilczyński <kw@linux.com>
16219 R:      Rob Herring <robh@kernel.org>
16220 L:      linux-pci@vger.kernel.org
16221 S:      Supported
16222 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16223 B:      https://bugzilla.kernel.org
16224 C:      irc://irc.oftc.net/linux-pci
16225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16226 F:      Documentation/devicetree/bindings/pci/
16227 F:      drivers/pci/controller/
16228 F:      drivers/pci/pci-bridge-emul.c
16229 F:      drivers/pci/pci-bridge-emul.h
16230
16231 PCI SUBSYSTEM
16232 M:      Bjorn Helgaas <bhelgaas@google.com>
16233 L:      linux-pci@vger.kernel.org
16234 S:      Supported
16235 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16236 B:      https://bugzilla.kernel.org
16237 C:      irc://irc.oftc.net/linux-pci
16238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16239 F:      Documentation/PCI/
16240 F:      Documentation/devicetree/bindings/pci/
16241 F:      arch/x86/kernel/early-quirks.c
16242 F:      arch/x86/kernel/quirks.c
16243 F:      arch/x86/pci/
16244 F:      drivers/acpi/pci*
16245 F:      drivers/pci/
16246 F:      include/asm-generic/pci*
16247 F:      include/linux/of_pci.h
16248 F:      include/linux/pci*
16249 F:      include/uapi/linux/pci*
16250 F:      lib/pci*
16251
16252 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16253 M:      Jonathan Chocron <jonnyc@amazon.com>
16254 L:      linux-pci@vger.kernel.org
16255 S:      Maintained
16256 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16257 F:      drivers/pci/controller/dwc/pcie-al.c
16258
16259 PCIE DRIVER FOR AMLOGIC MESON
16260 M:      Yue Wang <yue.wang@Amlogic.com>
16261 L:      linux-pci@vger.kernel.org
16262 L:      linux-amlogic@lists.infradead.org
16263 S:      Maintained
16264 F:      drivers/pci/controller/dwc/pci-meson.c
16265
16266 PCIE DRIVER FOR AXIS ARTPEC
16267 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16268 L:      linux-arm-kernel@axis.com
16269 L:      linux-pci@vger.kernel.org
16270 S:      Maintained
16271 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16272 F:      drivers/pci/controller/dwc/*artpec*
16273
16274 PCIE DRIVER FOR CAVIUM THUNDERX
16275 M:      Robert Richter <rric@kernel.org>
16276 L:      linux-pci@vger.kernel.org
16277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16278 S:      Odd Fixes
16279 F:      drivers/pci/controller/pci-thunder-*
16280
16281 PCIE DRIVER FOR HISILICON
16282 M:      Zhou Wang <wangzhou1@hisilicon.com>
16283 L:      linux-pci@vger.kernel.org
16284 S:      Maintained
16285 F:      drivers/pci/controller/dwc/pcie-hisi.c
16286
16287 PCIE DRIVER FOR HISILICON KIRIN
16288 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16289 M:      Binghui Wang <wangbinghui@hisilicon.com>
16290 L:      linux-pci@vger.kernel.org
16291 S:      Maintained
16292 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16293 F:      drivers/pci/controller/dwc/pcie-kirin.c
16294
16295 PCIE DRIVER FOR HISILICON STB
16296 M:      Shawn Guo <shawn.guo@linaro.org>
16297 L:      linux-pci@vger.kernel.org
16298 S:      Maintained
16299 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16300 F:      drivers/pci/controller/dwc/pcie-histb.c
16301
16302 PCIE DRIVER FOR INTEL KEEM BAY
16303 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16304 L:      linux-pci@vger.kernel.org
16305 S:      Supported
16306 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16307 F:      drivers/pci/controller/dwc/pcie-keembay.c
16308
16309 PCIE DRIVER FOR INTEL LGM GW SOC
16310 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16311 L:      linux-pci@vger.kernel.org
16312 S:      Maintained
16313 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16314 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16315
16316 PCIE DRIVER FOR MEDIATEK
16317 M:      Ryder Lee <ryder.lee@mediatek.com>
16318 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16319 L:      linux-pci@vger.kernel.org
16320 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16321 S:      Supported
16322 F:      Documentation/devicetree/bindings/pci/mediatek*
16323 F:      drivers/pci/controller/*mediatek*
16324
16325 PCIE DRIVER FOR MICROCHIP
16326 M:      Daire McNamara <daire.mcnamara@microchip.com>
16327 L:      linux-pci@vger.kernel.org
16328 S:      Supported
16329 F:      Documentation/devicetree/bindings/pci/microchip*
16330 F:      drivers/pci/controller/*microchip*
16331
16332 PCIE DRIVER FOR QUALCOMM MSM
16333 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16334 L:      linux-pci@vger.kernel.org
16335 L:      linux-arm-msm@vger.kernel.org
16336 S:      Maintained
16337 F:      drivers/pci/controller/dwc/pcie-qcom.c
16338
16339 PCIE ENDPOINT DRIVER FOR QUALCOMM
16340 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16341 L:      linux-pci@vger.kernel.org
16342 L:      linux-arm-msm@vger.kernel.org
16343 S:      Maintained
16344 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16345 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16346
16347 PCIE DRIVER FOR ROCKCHIP
16348 M:      Shawn Lin <shawn.lin@rock-chips.com>
16349 L:      linux-pci@vger.kernel.org
16350 L:      linux-rockchip@lists.infradead.org
16351 S:      Maintained
16352 F:      Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
16353 F:      drivers/pci/controller/pcie-rockchip*
16354
16355 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16356 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16357 L:      linux-pci@vger.kernel.org
16358 S:      Maintained
16359 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16360 F:      drivers/pci/controller/dwc/pcie-uniphier*
16361
16362 PCIE DRIVER FOR ST SPEAR13XX
16363 M:      Pratyush Anand <pratyush.anand@gmail.com>
16364 L:      linux-pci@vger.kernel.org
16365 S:      Maintained
16366 F:      drivers/pci/controller/dwc/*spear*
16367
16368 PCI DRIVER FOR XILINX VERSAL CPM
16369 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16370 M:      Michal Simek <michal.simek@amd.com>
16371 L:      linux-pci@vger.kernel.org
16372 S:      Maintained
16373 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16374 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16375
16376 PCMCIA SUBSYSTEM
16377 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16378 S:      Odd Fixes
16379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16380 F:      Documentation/pcmcia/
16381 F:      drivers/pcmcia/
16382 F:      include/pcmcia/
16383 F:      tools/pcmcia/
16384
16385 PCNET32 NETWORK DRIVER
16386 M:      Don Fry <pcnet32@frontier.com>
16387 L:      netdev@vger.kernel.org
16388 S:      Maintained
16389 F:      drivers/net/ethernet/amd/pcnet32.c
16390
16391 PCRYPT PARALLEL CRYPTO ENGINE
16392 M:      Steffen Klassert <steffen.klassert@secunet.com>
16393 L:      linux-crypto@vger.kernel.org
16394 S:      Maintained
16395 F:      crypto/pcrypt.c
16396 F:      include/crypto/pcrypt.h
16397
16398 PECI HARDWARE MONITORING DRIVERS
16399 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16400 L:      linux-hwmon@vger.kernel.org
16401 S:      Supported
16402 F:      Documentation/hwmon/peci-cputemp.rst
16403 F:      Documentation/hwmon/peci-dimmtemp.rst
16404 F:      drivers/hwmon/peci/
16405
16406 PECI SUBSYSTEM
16407 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16408 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16409 S:      Supported
16410 F:      Documentation/devicetree/bindings/peci/
16411 F:      Documentation/peci/
16412 F:      drivers/peci/
16413 F:      include/linux/peci-cpu.h
16414 F:      include/linux/peci.h
16415
16416 PENSANDO ETHERNET DRIVERS
16417 M:      Shannon Nelson <shannon.nelson@amd.com>
16418 M:      Brett Creeley <brett.creeley@amd.com>
16419 M:      drivers@pensando.io
16420 L:      netdev@vger.kernel.org
16421 S:      Supported
16422 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16423 F:      drivers/net/ethernet/pensando/
16424
16425 PER-CPU MEMORY ALLOCATOR
16426 M:      Dennis Zhou <dennis@kernel.org>
16427 M:      Tejun Heo <tj@kernel.org>
16428 M:      Christoph Lameter <cl@linux.com>
16429 L:      linux-mm@kvack.org
16430 S:      Maintained
16431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16432 F:      arch/*/include/asm/percpu.h
16433 F:      include/linux/percpu*.h
16434 F:      lib/percpu*.c
16435 F:      mm/percpu*.c
16436
16437 PER-TASK DELAY ACCOUNTING
16438 M:      Balbir Singh <bsingharora@gmail.com>
16439 S:      Maintained
16440 F:      include/linux/delayacct.h
16441 F:      kernel/delayacct.c
16442
16443 PERFORMANCE EVENTS SUBSYSTEM
16444 M:      Peter Zijlstra <peterz@infradead.org>
16445 M:      Ingo Molnar <mingo@redhat.com>
16446 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16447 R:      Mark Rutland <mark.rutland@arm.com>
16448 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16449 R:      Jiri Olsa <jolsa@kernel.org>
16450 R:      Namhyung Kim <namhyung@kernel.org>
16451 R:      Ian Rogers <irogers@google.com>
16452 R:      Adrian Hunter <adrian.hunter@intel.com>
16453 L:      linux-perf-users@vger.kernel.org
16454 L:      linux-kernel@vger.kernel.org
16455 S:      Supported
16456 W:      https://perf.wiki.kernel.org/
16457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16458 F:      arch/*/events/*
16459 F:      arch/*/events/*/*
16460 F:      arch/*/include/asm/perf_event.h
16461 F:      arch/*/kernel/*/*/perf_event*.c
16462 F:      arch/*/kernel/*/perf_event*.c
16463 F:      arch/*/kernel/perf_callchain.c
16464 F:      arch/*/kernel/perf_event*.c
16465 F:      include/linux/perf_event.h
16466 F:      include/uapi/linux/perf_event.h
16467 F:      kernel/events/*
16468 F:      tools/lib/perf/
16469 F:      tools/perf/
16470
16471 PERFORMANCE EVENTS TOOLING ARM64
16472 R:      John Garry <john.g.garry@oracle.com>
16473 R:      Will Deacon <will@kernel.org>
16474 R:      James Clark <james.clark@arm.com>
16475 R:      Mike Leach <mike.leach@linaro.org>
16476 R:      Leo Yan <leo.yan@linaro.org>
16477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16478 S:      Supported
16479 F:      tools/build/feature/test-libopencsd.c
16480 F:      tools/perf/arch/arm*/
16481 F:      tools/perf/pmu-events/arch/arm64/
16482 F:      tools/perf/util/arm-spe*
16483 F:      tools/perf/util/cs-etm*
16484
16485 PERSONALITY HANDLING
16486 M:      Christoph Hellwig <hch@infradead.org>
16487 L:      linux-abi-devel@lists.sourceforge.net
16488 S:      Maintained
16489 F:      include/linux/personality.h
16490 F:      include/uapi/linux/personality.h
16491
16492 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16493 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16494 L:      linux-input@vger.kernel.org
16495 S:      Maintained
16496 F:      Documentation/input/devices/pxrc.rst
16497 F:      drivers/input/joystick/pxrc.c
16498
16499 PHONET PROTOCOL
16500 M:      Remi Denis-Courmont <courmisch@gmail.com>
16501 S:      Supported
16502 F:      Documentation/networking/phonet.rst
16503 F:      include/linux/phonet.h
16504 F:      include/net/phonet/
16505 F:      include/uapi/linux/phonet.h
16506 F:      net/phonet/
16507
16508 PHRAM MTD DRIVER
16509 M:      Joern Engel <joern@lazybastard.org>
16510 L:      linux-mtd@lists.infradead.org
16511 S:      Maintained
16512 F:      drivers/mtd/devices/phram.c
16513
16514 PICOLCD HID DRIVER
16515 M:      Bruno Prémont <bonbons@linux-vserver.org>
16516 L:      linux-input@vger.kernel.org
16517 S:      Maintained
16518 F:      drivers/hid/hid-picolcd*
16519
16520 PIDFD API
16521 M:      Christian Brauner <christian@brauner.io>
16522 L:      linux-kernel@vger.kernel.org
16523 S:      Maintained
16524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16525 F:      samples/pidfd/
16526 F:      tools/testing/selftests/clone3/
16527 F:      tools/testing/selftests/pid_namespace/
16528 F:      tools/testing/selftests/pidfd/
16529 K:      (?i)pidfd
16530 K:      (?i)clone3
16531 K:      \b(clone_args|kernel_clone_args)\b
16532
16533 PIN CONTROL SUBSYSTEM
16534 M:      Linus Walleij <linus.walleij@linaro.org>
16535 L:      linux-gpio@vger.kernel.org
16536 S:      Maintained
16537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16538 F:      Documentation/devicetree/bindings/pinctrl/
16539 F:      Documentation/driver-api/pin-control.rst
16540 F:      drivers/pinctrl/
16541 F:      include/dt-bindings/pinctrl/
16542 F:      include/linux/pinctrl/
16543
16544 PIN CONTROLLER - AMD
16545 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16546 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16547 S:      Maintained
16548 F:      drivers/pinctrl/pinctrl-amd.c
16549
16550 PIN CONTROLLER - FREESCALE
16551 M:      Dong Aisheng <aisheng.dong@nxp.com>
16552 M:      Fabio Estevam <festevam@gmail.com>
16553 M:      Shawn Guo <shawnguo@kernel.org>
16554 M:      Jacky Bai <ping.bai@nxp.com>
16555 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16556 L:      linux-gpio@vger.kernel.org
16557 S:      Maintained
16558 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16559 F:      drivers/pinctrl/freescale/
16560
16561 PIN CONTROLLER - INTEL
16562 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16563 M:      Andy Shevchenko <andy@kernel.org>
16564 S:      Supported
16565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16566 F:      drivers/pinctrl/intel/
16567
16568 PIN CONTROLLER - KEEMBAY
16569 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16570 S:      Supported
16571 F:      drivers/pinctrl/pinctrl-keembay*
16572
16573 PIN CONTROLLER - MEDIATEK
16574 M:      Sean Wang <sean.wang@kernel.org>
16575 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16576 S:      Maintained
16577 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16578 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16579 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16580 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16581 F:      drivers/pinctrl/mediatek/
16582
16583 PIN CONTROLLER - MICROCHIP AT91
16584 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16586 L:      linux-gpio@vger.kernel.org
16587 S:      Supported
16588 F:      drivers/gpio/gpio-sama5d2-piobu.c
16589 F:      drivers/pinctrl/pinctrl-at91*
16590
16591 PIN CONTROLLER - QUALCOMM
16592 M:      Bjorn Andersson <andersson@kernel.org>
16593 L:      linux-arm-msm@vger.kernel.org
16594 S:      Maintained
16595 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16596 F:      drivers/pinctrl/qcom/
16597
16598 PIN CONTROLLER - RENESAS
16599 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16600 L:      linux-renesas-soc@vger.kernel.org
16601 S:      Supported
16602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16603 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16604 F:      drivers/pinctrl/renesas/
16605
16606 PIN CONTROLLER - SAMSUNG
16607 M:      Tomasz Figa <tomasz.figa@gmail.com>
16608 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16609 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16610 R:      Alim Akhtar <alim.akhtar@samsung.com>
16611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16612 L:      linux-samsung-soc@vger.kernel.org
16613 S:      Maintained
16614 C:      irc://irc.libera.chat/linux-exynos
16615 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16616 B:      mailto:linux-samsung-soc@vger.kernel.org
16617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16618 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16619 F:      drivers/pinctrl/samsung/
16620 F:      include/dt-bindings/pinctrl/samsung.h
16621
16622 PIN CONTROLLER - SINGLE
16623 M:      Tony Lindgren <tony@atomide.com>
16624 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16626 L:      linux-omap@vger.kernel.org
16627 S:      Maintained
16628 F:      drivers/pinctrl/pinctrl-single.c
16629
16630 PIN CONTROLLER - THUNDERBAY
16631 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16632 S:      Supported
16633 F:      drivers/pinctrl/pinctrl-thunderbay.c
16634
16635 PIN CONTROLLER - SUNPLUS / TIBBO
16636 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16637 M:      Wells Lu <wellslutw@gmail.com>
16638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16639 S:      Maintained
16640 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16641 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16642 F:      drivers/pinctrl/sunplus/
16643 F:      include/dt-bindings/pinctrl/sppctl*.h
16644
16645 PINE64 PINEPHONE KEYBOARD DRIVER
16646 M:      Samuel Holland <samuel@sholland.org>
16647 S:      Supported
16648 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16649 F:      drivers/input/keyboard/pinephone-keyboard.c
16650
16651 PKTCDVD DRIVER
16652 M:      linux-block@vger.kernel.org
16653 S:      Orphan
16654 F:      drivers/block/pktcdvd.c
16655 F:      include/linux/pktcdvd.h
16656 F:      include/uapi/linux/pktcdvd.h
16657
16658 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16659 M:      Tomasz Duszynski <tduszyns@gmail.com>
16660 S:      Maintained
16661 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16662 F:      drivers/iio/chemical/pms7003.c
16663
16664 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16665 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16666 L:      netdev@vger.kernel.org
16667 S:      Maintained
16668 F:      drivers/net/phy/mdio-open-alliance.h
16669 F:      net/ethtool/plca.c
16670
16671 PLDMFW LIBRARY
16672 M:      Jacob Keller <jacob.e.keller@intel.com>
16673 S:      Maintained
16674 F:      Documentation/driver-api/pldmfw/
16675 F:      include/linux/pldmfw.h
16676 F:      lib/pldmfw/
16677
16678 PLX DMA DRIVER
16679 M:      Logan Gunthorpe <logang@deltatee.com>
16680 S:      Maintained
16681 F:      drivers/dma/plx_dma.c
16682
16683 PM6764TR DRIVER
16684 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16685 L:      linux-hwmon@vger.kernel.org
16686 S:      Maintained
16687 F:      Documentation/hwmon/pm6764tr.rst
16688 F:      drivers/hwmon/pmbus/pm6764tr.c
16689
16690 PM-GRAPH UTILITY
16691 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16692 L:      linux-pm@vger.kernel.org
16693 S:      Supported
16694 W:      https://01.org/pm-graph
16695 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16696 T:      git git://github.com/intel/pm-graph
16697 F:      tools/power/pm-graph
16698
16699 PMBUS HARDWARE MONITORING DRIVERS
16700 M:      Guenter Roeck <linux@roeck-us.net>
16701 L:      linux-hwmon@vger.kernel.org
16702 S:      Maintained
16703 W:      http://hwmon.wiki.kernel.org/
16704 W:      http://www.roeck-us.net/linux/drivers/
16705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16706 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16707 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16708 F:      Documentation/hwmon/adm1275.rst
16709 F:      Documentation/hwmon/ibm-cffps.rst
16710 F:      Documentation/hwmon/ir35221.rst
16711 F:      Documentation/hwmon/lm25066.rst
16712 F:      Documentation/hwmon/ltc2978.rst
16713 F:      Documentation/hwmon/ltc3815.rst
16714 F:      Documentation/hwmon/max16064.rst
16715 F:      Documentation/hwmon/max20751.rst
16716 F:      Documentation/hwmon/max31785.rst
16717 F:      Documentation/hwmon/max34440.rst
16718 F:      Documentation/hwmon/max8688.rst
16719 F:      Documentation/hwmon/pmbus-core.rst
16720 F:      Documentation/hwmon/pmbus.rst
16721 F:      Documentation/hwmon/tps40422.rst
16722 F:      Documentation/hwmon/ucd9000.rst
16723 F:      Documentation/hwmon/ucd9200.rst
16724 F:      Documentation/hwmon/zl6100.rst
16725 F:      drivers/hwmon/pmbus/
16726 F:      include/linux/pmbus.h
16727
16728 PMC SIERRA MaxRAID DRIVER
16729 L:      linux-scsi@vger.kernel.org
16730 S:      Orphan
16731 W:      http://www.pmc-sierra.com/
16732 F:      drivers/scsi/pmcraid.*
16733
16734 PMC SIERRA PM8001 DRIVER
16735 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16736 L:      linux-scsi@vger.kernel.org
16737 S:      Supported
16738 F:      drivers/scsi/pm8001/
16739
16740 PNI RM3100 IIO DRIVER
16741 M:      Song Qiang <songqiang1304521@gmail.com>
16742 L:      linux-iio@vger.kernel.org
16743 S:      Maintained
16744 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16745 F:      drivers/iio/magnetometer/rm3100*
16746
16747 PNP SUPPORT
16748 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16749 L:      linux-acpi@vger.kernel.org
16750 S:      Maintained
16751 F:      drivers/pnp/
16752 F:      include/linux/pnp.h
16753
16754 POSIX CLOCKS and TIMERS
16755 M:      Thomas Gleixner <tglx@linutronix.de>
16756 L:      linux-kernel@vger.kernel.org
16757 S:      Maintained
16758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16759 F:      fs/timerfd.c
16760 F:      include/linux/time_namespace.h
16761 F:      include/linux/timer*
16762 F:      kernel/time/*timer*
16763 F:      kernel/time/namespace.c
16764
16765 POWER MANAGEMENT CORE
16766 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16767 L:      linux-pm@vger.kernel.org
16768 S:      Supported
16769 B:      https://bugzilla.kernel.org
16770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16771 F:      drivers/base/power/
16772 F:      drivers/powercap/
16773 F:      include/linux/intel_rapl.h
16774 F:      include/linux/pm.h
16775 F:      include/linux/pm_*
16776 F:      include/linux/powercap.h
16777 F:      kernel/configs/nopm.config
16778
16779 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16780 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16781 L:      linux-pm@vger.kernel.org
16782 S:      Supported
16783 B:      https://bugzilla.kernel.org
16784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16785 F:      drivers/powercap/dtpm*
16786 F:      include/linux/dtpm.h
16787
16788 POWER STATE COORDINATION INTERFACE (PSCI)
16789 M:      Mark Rutland <mark.rutland@arm.com>
16790 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16792 S:      Maintained
16793 F:      drivers/firmware/psci/
16794 F:      include/linux/psci.h
16795 F:      include/uapi/linux/psci.h
16796
16797 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16798 M:      Sebastian Reichel <sre@kernel.org>
16799 L:      linux-pm@vger.kernel.org
16800 S:      Maintained
16801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16802 F:      Documentation/ABI/testing/sysfs-class-power
16803 F:      Documentation/devicetree/bindings/power/supply/
16804 F:      drivers/power/supply/
16805 F:      include/linux/power/
16806 F:      include/linux/power_supply.h
16807
16808 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16809 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16810 L:      linuxppc-dev@lists.ozlabs.org
16811 S:      Maintained
16812 F:      drivers/char/powernv-op-panel.c
16813
16814 PPP OVER ATM (RFC 2364)
16815 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16816 S:      Maintained
16817 F:      include/uapi/linux/atmppp.h
16818 F:      net/atm/pppoatm.c
16819
16820 PPP OVER ETHERNET
16821 M:      Michal Ostrowski <mostrows@earthlink.net>
16822 S:      Maintained
16823 F:      drivers/net/ppp/pppoe.c
16824 F:      drivers/net/ppp/pppox.c
16825
16826 PPP OVER L2TP
16827 M:      James Chapman <jchapman@katalix.com>
16828 S:      Maintained
16829 F:      include/linux/if_pppol2tp.h
16830 F:      include/uapi/linux/if_pppol2tp.h
16831 F:      net/l2tp/l2tp_ppp.c
16832
16833 PPP PROTOCOL DRIVERS AND COMPRESSORS
16834 L:      linux-ppp@vger.kernel.org
16835 S:      Orphan
16836 F:      drivers/net/ppp/ppp_*
16837
16838 PPS SUPPORT
16839 M:      Rodolfo Giometti <giometti@enneenne.com>
16840 L:      linuxpps@ml.enneenne.com (subscribers-only)
16841 S:      Maintained
16842 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16843 F:      Documentation/ABI/testing/sysfs-pps
16844 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16845 F:      Documentation/driver-api/pps.rst
16846 F:      drivers/pps/
16847 F:      include/linux/pps*.h
16848 F:      include/uapi/linux/pps.h
16849
16850 PPTP DRIVER
16851 M:      Dmitry Kozlov <xeb@mail.ru>
16852 L:      netdev@vger.kernel.org
16853 S:      Maintained
16854 W:      http://sourceforge.net/projects/accel-pptp
16855 F:      drivers/net/ppp/pptp.c
16856
16857 PRESSURE STALL INFORMATION (PSI)
16858 M:      Johannes Weiner <hannes@cmpxchg.org>
16859 M:      Suren Baghdasaryan <surenb@google.com>
16860 S:      Maintained
16861 F:      include/linux/psi*
16862 F:      kernel/sched/psi.c
16863
16864 PRINTK
16865 M:      Petr Mladek <pmladek@suse.com>
16866 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16867 R:      Steven Rostedt <rostedt@goodmis.org>
16868 R:      John Ogness <john.ogness@linutronix.de>
16869 S:      Maintained
16870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16871 F:      include/linux/printk.h
16872 F:      kernel/printk/
16873
16874 PRINTK INDEXING
16875 R:      Chris Down <chris@chrisdown.name>
16876 S:      Maintained
16877 F:      Documentation/core-api/printk-index.rst
16878 F:      kernel/printk/index.c
16879 K:      printk_index
16880
16881 PROC FILESYSTEM
16882 L:      linux-kernel@vger.kernel.org
16883 L:      linux-fsdevel@vger.kernel.org
16884 S:      Maintained
16885 F:      Documentation/filesystems/proc.rst
16886 F:      fs/proc/
16887 F:      include/linux/proc_fs.h
16888 F:      tools/testing/selftests/proc/
16889
16890 PROC SYSCTL
16891 M:      Luis Chamberlain <mcgrof@kernel.org>
16892 M:      Kees Cook <keescook@chromium.org>
16893 M:      Iurii Zaikin <yzaikin@google.com>
16894 L:      linux-kernel@vger.kernel.org
16895 L:      linux-fsdevel@vger.kernel.org
16896 S:      Maintained
16897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16898 F:      fs/proc/proc_sysctl.c
16899 F:      include/linux/sysctl.h
16900 F:      kernel/sysctl-test.c
16901 F:      kernel/sysctl.c
16902 F:      tools/testing/selftests/sysctl/
16903
16904 PS3 NETWORK SUPPORT
16905 M:      Geoff Levand <geoff@infradead.org>
16906 L:      netdev@vger.kernel.org
16907 L:      linuxppc-dev@lists.ozlabs.org
16908 S:      Maintained
16909 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16910
16911 PS3 PLATFORM SUPPORT
16912 M:      Geoff Levand <geoff@infradead.org>
16913 L:      linuxppc-dev@lists.ozlabs.org
16914 S:      Maintained
16915 F:      arch/powerpc/boot/ps3*
16916 F:      arch/powerpc/include/asm/lv1call.h
16917 F:      arch/powerpc/include/asm/ps3*.h
16918 F:      arch/powerpc/platforms/ps3/
16919 F:      drivers/*/ps3*
16920 F:      drivers/ps3/
16921 F:      drivers/rtc/rtc-ps3.c
16922 F:      drivers/usb/host/*ps3.c
16923 F:      sound/ppc/snd_ps3*
16924
16925 PS3VRAM DRIVER
16926 M:      Jim Paris <jim@jtan.com>
16927 M:      Geoff Levand <geoff@infradead.org>
16928 L:      linuxppc-dev@lists.ozlabs.org
16929 S:      Maintained
16930 F:      drivers/block/ps3vram.c
16931
16932 PSAMPLE PACKET SAMPLING SUPPORT
16933 M:      Yotam Gigi <yotam.gi@gmail.com>
16934 S:      Maintained
16935 F:      include/net/psample.h
16936 F:      include/uapi/linux/psample.h
16937 F:      net/psample
16938
16939 PSTORE FILESYSTEM
16940 M:      Kees Cook <keescook@chromium.org>
16941 R:      Tony Luck <tony.luck@intel.com>
16942 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16943 L:      linux-hardening@vger.kernel.org
16944 S:      Supported
16945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16946 F:      Documentation/admin-guide/ramoops.rst
16947 F:      Documentation/admin-guide/pstore-blk.rst
16948 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16949 F:      drivers/acpi/apei/erst.c
16950 F:      drivers/firmware/efi/efi-pstore.c
16951 F:      fs/pstore/
16952 F:      include/linux/pstore*
16953 K:      \b(pstore|ramoops)
16954
16955 PTP HARDWARE CLOCK SUPPORT
16956 M:      Richard Cochran <richardcochran@gmail.com>
16957 L:      netdev@vger.kernel.org
16958 S:      Maintained
16959 W:      http://linuxptp.sourceforge.net/
16960 F:      Documentation/ABI/testing/sysfs-ptp
16961 F:      Documentation/driver-api/ptp.rst
16962 F:      drivers/net/phy/dp83640*
16963 F:      drivers/ptp/*
16964 F:      include/linux/ptp_cl*
16965 K:      (?:\b|_)ptp(?:\b|_)
16966
16967 PTP VIRTUAL CLOCK SUPPORT
16968 M:      Yangbo Lu <yangbo.lu@nxp.com>
16969 L:      netdev@vger.kernel.org
16970 S:      Maintained
16971 F:      drivers/ptp/ptp_vclock.c
16972 F:      net/ethtool/phc_vclocks.c
16973
16974 PTRACE SUPPORT
16975 M:      Oleg Nesterov <oleg@redhat.com>
16976 S:      Maintained
16977 F:      arch/*/*/ptrace*.c
16978 F:      arch/*/include/asm/ptrace*.h
16979 F:      arch/*/ptrace*.c
16980 F:      include/asm-generic/syscall.h
16981 F:      include/linux/ptrace.h
16982 F:      include/linux/regset.h
16983 F:      include/uapi/linux/ptrace.h
16984 F:      kernel/ptrace.c
16985
16986 PULSE8-CEC DRIVER
16987 M:      Hans Verkuil <hverkuil@xs4all.nl>
16988 L:      linux-media@vger.kernel.org
16989 S:      Maintained
16990 T:      git git://linuxtv.org/media_tree.git
16991 F:      drivers/media/cec/usb/pulse8/
16992
16993 PURELIFI PLFXLC DRIVER
16994 M:      Srinivasan Raju <srini.raju@purelifi.com>
16995 L:      linux-wireless@vger.kernel.org
16996 S:      Supported
16997 F:      drivers/net/wireless/purelifi/plfxlc/
16998
16999 PVRUSB2 VIDEO4LINUX DRIVER
17000 M:      Mike Isely <isely@pobox.com>
17001 L:      pvrusb2@isely.net       (subscribers-only)
17002 L:      linux-media@vger.kernel.org
17003 S:      Maintained
17004 W:      http://www.isely.net/pvrusb2/
17005 T:      git git://linuxtv.org/media_tree.git
17006 F:      Documentation/driver-api/media/drivers/pvrusb2*
17007 F:      drivers/media/usb/pvrusb2/
17008
17009 PWC WEBCAM DRIVER
17010 M:      Hans Verkuil <hverkuil@xs4all.nl>
17011 L:      linux-media@vger.kernel.org
17012 S:      Odd Fixes
17013 T:      git git://linuxtv.org/media_tree.git
17014 F:      drivers/media/usb/pwc/*
17015 F:      include/trace/events/pwc.h
17016
17017 PWM IR Transmitter
17018 M:      Sean Young <sean@mess.org>
17019 L:      linux-media@vger.kernel.org
17020 S:      Maintained
17021 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
17022 F:      drivers/media/rc/pwm-ir-tx.c
17023
17024 PWM SUBSYSTEM
17025 M:      Thierry Reding <thierry.reding@gmail.com>
17026 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17027 L:      linux-pwm@vger.kernel.org
17028 S:      Maintained
17029 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
17030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
17031 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
17032 F:      Documentation/devicetree/bindings/pwm/
17033 F:      Documentation/driver-api/pwm.rst
17034 F:      drivers/gpio/gpio-mvebu.c
17035 F:      drivers/pwm/
17036 F:      drivers/video/backlight/pwm_bl.c
17037 F:      include/dt-bindings/pwm/
17038 F:      include/linux/pwm.h
17039 F:      include/linux/pwm_backlight.h
17040 K:      pwm_(config|apply_state|ops)
17041
17042 PXA GPIO DRIVER
17043 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17044 L:      linux-gpio@vger.kernel.org
17045 S:      Maintained
17046 F:      drivers/gpio/gpio-pxa.c
17047
17048 PXA MMCI DRIVER
17049 S:      Orphan
17050
17051 PXA RTC DRIVER
17052 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17053 L:      linux-rtc@vger.kernel.org
17054 S:      Maintained
17055
17056 PXA2xx/PXA3xx SUPPORT
17057 M:      Daniel Mack <daniel@zonque.org>
17058 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
17059 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17061 S:      Maintained
17062 T:      git git://github.com/hzhuang1/linux.git
17063 T:      git git://github.com/rjarzmik/linux.git
17064 F:      arch/arm/boot/dts/pxa*
17065 F:      arch/arm/mach-pxa/
17066 F:      drivers/dma/pxa*
17067 F:      drivers/pcmcia/pxa2xx*
17068 F:      drivers/pinctrl/pxa/
17069 F:      drivers/spi/spi-pxa2xx*
17070 F:      drivers/usb/gadget/udc/pxa2*
17071 F:      include/sound/pxa2xx-lib.h
17072 F:      sound/arm/pxa*
17073 F:      sound/soc/pxa/
17074
17075 QAT DRIVER
17076 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
17077 L:      qat-linux@intel.com
17078 S:      Supported
17079 F:      drivers/crypto/intel/qat/
17080
17081 QCOM AUDIO (ASoC) DRIVERS
17082 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17083 M:      Banajit Goswami <bgoswami@quicinc.com>
17084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17085 S:      Supported
17086 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17087 F:      Documentation/devicetree/bindings/sound/qcom,*
17088 F:      drivers/soc/qcom/apr.c
17089 F:      include/dt-bindings/sound/qcom,wcd9335.h
17090 F:      sound/soc/codecs/lpass-rx-macro.*
17091 F:      sound/soc/codecs/lpass-tx-macro.*
17092 F:      sound/soc/codecs/lpass-va-macro.c
17093 F:      sound/soc/codecs/lpass-wsa-macro.*
17094 F:      sound/soc/codecs/msm8916-wcd-analog.c
17095 F:      sound/soc/codecs/msm8916-wcd-digital.c
17096 F:      sound/soc/codecs/wcd9335.*
17097 F:      sound/soc/codecs/wcd934x.c
17098 F:      sound/soc/codecs/wcd-clsh-v2.*
17099 F:      sound/soc/codecs/wcd-mbhc-v2.*
17100 F:      sound/soc/codecs/wsa881x.c
17101 F:      sound/soc/codecs/wsa883x.c
17102 F:      sound/soc/qcom/
17103
17104 QCOM EMBEDDED USB DEBUGGER (EUD)
17105 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
17106 L:      linux-arm-msm@vger.kernel.org
17107 S:      Maintained
17108 F:      Documentation/ABI/testing/sysfs-driver-eud
17109 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17110 F:      drivers/usb/misc/qcom_eud.c
17111
17112 QCOM IPA DRIVER
17113 M:      Alex Elder <elder@kernel.org>
17114 L:      netdev@vger.kernel.org
17115 S:      Supported
17116 F:      drivers/net/ipa/
17117
17118 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17119 M:      Gabriel Somlo <somlo@cmu.edu>
17120 M:      "Michael S. Tsirkin" <mst@redhat.com>
17121 L:      qemu-devel@nongnu.org
17122 S:      Maintained
17123 F:      drivers/firmware/qemu_fw_cfg.c
17124 F:      include/uapi/linux/qemu_fw_cfg.h
17125
17126 QIB DRIVER
17127 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17128 L:      linux-rdma@vger.kernel.org
17129 S:      Supported
17130 F:      drivers/infiniband/hw/qib/
17131
17132 QLOGIC QL41xxx FCOE DRIVER
17133 M:      Saurav Kashyap <skashyap@marvell.com>
17134 M:      Javed Hasan <jhasan@marvell.com>
17135 M:      GR-QLogic-Storage-Upstream@marvell.com
17136 L:      linux-scsi@vger.kernel.org
17137 S:      Supported
17138 F:      drivers/scsi/qedf/
17139
17140 QLOGIC QL41xxx ISCSI DRIVER
17141 M:      Nilesh Javali <njavali@marvell.com>
17142 M:      Manish Rangankar <mrangankar@marvell.com>
17143 M:      GR-QLogic-Storage-Upstream@marvell.com
17144 L:      linux-scsi@vger.kernel.org
17145 S:      Supported
17146 F:      drivers/scsi/qedi/
17147
17148 QLOGIC QL4xxx ETHERNET DRIVER
17149 M:      Ariel Elior <aelior@marvell.com>
17150 M:      Manish Chopra <manishc@marvell.com>
17151 L:      netdev@vger.kernel.org
17152 S:      Supported
17153 F:      drivers/net/ethernet/qlogic/qed/
17154 F:      drivers/net/ethernet/qlogic/qede/
17155 F:      include/linux/qed/
17156
17157 QLOGIC QL4xxx RDMA DRIVER
17158 M:      Michal Kalderon <mkalderon@marvell.com>
17159 M:      Ariel Elior <aelior@marvell.com>
17160 L:      linux-rdma@vger.kernel.org
17161 S:      Supported
17162 F:      drivers/infiniband/hw/qedr/
17163 F:      include/uapi/rdma/qedr-abi.h
17164
17165 QLOGIC QLA1280 SCSI DRIVER
17166 M:      Michael Reed <mdr@sgi.com>
17167 L:      linux-scsi@vger.kernel.org
17168 S:      Maintained
17169 F:      drivers/scsi/qla1280.[ch]
17170
17171 QLOGIC QLA2XXX FC-SCSI DRIVER
17172 M:      Nilesh Javali <njavali@marvell.com>
17173 M:      GR-QLogic-Storage-Upstream@marvell.com
17174 L:      linux-scsi@vger.kernel.org
17175 S:      Supported
17176 F:      drivers/scsi/qla2xxx/
17177
17178 QLOGIC QLA3XXX NETWORK DRIVER
17179 M:      GR-Linux-NIC-Dev@marvell.com
17180 L:      netdev@vger.kernel.org
17181 S:      Supported
17182 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17183
17184 QLOGIC QLA4XXX iSCSI DRIVER
17185 M:      Nilesh Javali <njavali@marvell.com>
17186 M:      Manish Rangankar <mrangankar@marvell.com>
17187 M:      GR-QLogic-Storage-Upstream@marvell.com
17188 L:      linux-scsi@vger.kernel.org
17189 S:      Supported
17190 F:      drivers/scsi/qla4xxx/
17191
17192 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17193 M:      Shahed Shaikh <shshaikh@marvell.com>
17194 M:      Manish Chopra <manishc@marvell.com>
17195 M:      GR-Linux-NIC-Dev@marvell.com
17196 L:      netdev@vger.kernel.org
17197 S:      Supported
17198 F:      drivers/net/ethernet/qlogic/qlcnic/
17199
17200 QLOGIC QLGE 10Gb ETHERNET DRIVER
17201 M:      Manish Chopra <manishc@marvell.com>
17202 M:      GR-Linux-NIC-Dev@marvell.com
17203 M:      Coiby Xu <coiby.xu@gmail.com>
17204 L:      netdev@vger.kernel.org
17205 S:      Supported
17206 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17207 F:      drivers/staging/qlge/
17208
17209 QM1D1B0004 MEDIA DRIVER
17210 M:      Akihiro Tsukada <tskd08@gmail.com>
17211 L:      linux-media@vger.kernel.org
17212 S:      Odd Fixes
17213 F:      drivers/media/tuners/qm1d1b0004*
17214
17215 QM1D1C0042 MEDIA DRIVER
17216 M:      Akihiro Tsukada <tskd08@gmail.com>
17217 L:      linux-media@vger.kernel.org
17218 S:      Odd Fixes
17219 F:      drivers/media/tuners/qm1d1c0042*
17220
17221 QNX4 FILESYSTEM
17222 M:      Anders Larsen <al@alarsen.net>
17223 S:      Maintained
17224 W:      http://www.alarsen.net/linux/qnx4fs/
17225 F:      fs/qnx4/
17226 F:      include/uapi/linux/qnx4_fs.h
17227 F:      include/uapi/linux/qnxtypes.h
17228
17229 QNX6 FILESYSTEM
17230 S:      Orphan
17231 F:      Documentation/filesystems/qnx6.rst
17232 F:      fs/qnx6/
17233 F:      include/linux/qnx6_fs.h
17234
17235 QORIQ DPAA2 FSL-MC BUS DRIVER
17236 M:      Stuart Yoder <stuyoder@gmail.com>
17237 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17238 L:      linux-kernel@vger.kernel.org
17239 S:      Maintained
17240 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17241 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17242 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17243 F:      drivers/bus/fsl-mc/
17244 F:      include/uapi/linux/fsl_mc.h
17245
17246 QT1010 MEDIA DRIVER
17247 M:      Antti Palosaari <crope@iki.fi>
17248 L:      linux-media@vger.kernel.org
17249 S:      Maintained
17250 W:      https://linuxtv.org
17251 W:      http://palosaari.fi/linux/
17252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17253 T:      git git://linuxtv.org/anttip/media_tree.git
17254 F:      drivers/media/tuners/qt1010*
17255
17256 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17257 M:      Kalle Valo <kvalo@kernel.org>
17258 L:      ath10k@lists.infradead.org
17259 S:      Supported
17260 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17262 F:      drivers/net/wireless/ath/ath10k/
17263 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.yaml
17264
17265 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17266 M:      Kalle Valo <kvalo@kernel.org>
17267 L:      ath11k@lists.infradead.org
17268 S:      Supported
17269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17270 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17271 F:      drivers/net/wireless/ath/ath11k/
17272
17273 QUALCOMM ATH12K WIRELESS DRIVER
17274 M:      Kalle Valo <kvalo@kernel.org>
17275 L:      ath12k@lists.infradead.org
17276 S:      Supported
17277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17278 F:      drivers/net/wireless/ath/ath12k/
17279
17280 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17281 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17282 L:      linux-wireless@vger.kernel.org
17283 S:      Maintained
17284 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17285 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17286 F:      drivers/net/wireless/ath/ath9k/
17287
17288 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17289 M:      Stephan Gerhold <stephan@gerhold.net>
17290 L:      netdev@vger.kernel.org
17291 L:      linux-arm-msm@vger.kernel.org
17292 S:      Maintained
17293 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17294 F:      drivers/net/wwan/qcom_bam_dmux.c
17295
17296 QUALCOMM CAMERA SUBSYSTEM DRIVER
17297 M:      Robert Foss <rfoss@kernel.org>
17298 M:      Todor Tomov <todor.too@gmail.com>
17299 M:      Bryan O'Donoghue <bryan.odonoghue@linaro.org>
17300 L:      linux-media@vger.kernel.org
17301 S:      Maintained
17302 F:      Documentation/admin-guide/media/qcom_camss.rst
17303 F:      Documentation/devicetree/bindings/media/*camss*
17304 F:      drivers/media/platform/qcom/camss/
17305
17306 QUALCOMM CLOCK DRIVERS
17307 M:      Bjorn Andersson <andersson@kernel.org>
17308 L:      linux-arm-msm@vger.kernel.org
17309 S:      Supported
17310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17311 F:      Documentation/devicetree/bindings/clock/qcom,*
17312 F:      drivers/clk/qcom/
17313 F:      include/dt-bindings/clock/qcom,*
17314
17315 QUALCOMM CLOUD AI (QAIC) DRIVER
17316 M:      Jeffrey Hugo <quic_jhugo@quicinc.com>
17317 L:      linux-arm-msm@vger.kernel.org
17318 L:      dri-devel@lists.freedesktop.org
17319 S:      Supported
17320 T:      git git://anongit.freedesktop.org/drm/drm-misc
17321 F:      Documentation/accel/qaic/
17322 F:      drivers/accel/qaic/
17323 F:      include/uapi/drm/qaic_accel.h
17324
17325 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17326 M:      Bjorn Andersson <andersson@kernel.org>
17327 M:      Konrad Dybcio <konrad.dybcio@linaro.org>
17328 L:      linux-pm@vger.kernel.org
17329 L:      linux-arm-msm@vger.kernel.org
17330 S:      Maintained
17331 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17332 F:      drivers/soc/qcom/cpr.c
17333
17334 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17335 M:      Ilia Lin <ilia.lin@kernel.org>
17336 L:      linux-pm@vger.kernel.org
17337 S:      Maintained
17338 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17339 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17340 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17341
17342 QUALCOMM CRYPTO DRIVERS
17343 M:      Thara Gopinath <thara.gopinath@gmail.com>
17344 L:      linux-crypto@vger.kernel.org
17345 L:      linux-arm-msm@vger.kernel.org
17346 S:      Maintained
17347 F:      Documentation/devicetree/bindings/crypto/qcom-qce.yaml
17348 F:      drivers/crypto/qce/
17349
17350 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17351 M:      Timur Tabi <timur@kernel.org>
17352 L:      netdev@vger.kernel.org
17353 S:      Maintained
17354 F:      drivers/net/ethernet/qualcomm/emac/
17355
17356 QUALCOMM ETHQOS ETHERNET DRIVER
17357 M:      Vinod Koul <vkoul@kernel.org>
17358 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17359 L:      netdev@vger.kernel.org
17360 S:      Maintained
17361 F:      Documentation/devicetree/bindings/net/qcom,ethqos.yaml
17362 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17363
17364 QUALCOMM FASTRPC DRIVER
17365 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17366 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17367 L:      linux-arm-msm@vger.kernel.org
17368 S:      Maintained
17369 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17370 F:      drivers/misc/fastrpc.c
17371 F:      include/uapi/misc/fastrpc.h
17372
17373 QUALCOMM HEXAGON ARCHITECTURE
17374 M:      Brian Cain <bcain@quicinc.com>
17375 L:      linux-hexagon@vger.kernel.org
17376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17377 S:      Supported
17378 F:      arch/hexagon/
17379
17380 QUALCOMM HIDMA DRIVER
17381 M:      Sinan Kaya <okaya@kernel.org>
17382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17383 L:      linux-arm-msm@vger.kernel.org
17384 L:      dmaengine@vger.kernel.org
17385 S:      Supported
17386 F:      drivers/dma/qcom/hidma*
17387
17388 QUALCOMM I2C CCI DRIVER
17389 M:      Loic Poulain <loic.poulain@linaro.org>
17390 M:      Robert Foss <rfoss@kernel.org>
17391 L:      linux-i2c@vger.kernel.org
17392 L:      linux-arm-msm@vger.kernel.org
17393 S:      Maintained
17394 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17395 F:      drivers/i2c/busses/i2c-qcom-cci.c
17396
17397 QUALCOMM INTERCONNECT BWMON DRIVER
17398 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17399 L:      linux-arm-msm@vger.kernel.org
17400 S:      Maintained
17401 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17402 F:      drivers/soc/qcom/icc-bwmon.c
17403
17404 QUALCOMM IOMMU
17405 M:      Rob Clark <robdclark@gmail.com>
17406 L:      iommu@lists.linux.dev
17407 L:      linux-arm-msm@vger.kernel.org
17408 S:      Maintained
17409 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17410
17411 QUALCOMM IPC ROUTER (QRTR) DRIVER
17412 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17413 L:      linux-arm-msm@vger.kernel.org
17414 S:      Maintained
17415 F:      include/trace/events/qrtr.h
17416 F:      include/uapi/linux/qrtr.h
17417 F:      net/qrtr/
17418
17419 QUALCOMM IPCC MAILBOX DRIVER
17420 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17421 L:      linux-arm-msm@vger.kernel.org
17422 S:      Supported
17423 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17424 F:      drivers/mailbox/qcom-ipcc.c
17425 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17426
17427 QUALCOMM IPQ4019 USB PHY DRIVER
17428 M:      Robert Marko <robert.marko@sartura.hr>
17429 M:      Luka Perkov <luka.perkov@sartura.hr>
17430 L:      linux-arm-msm@vger.kernel.org
17431 S:      Maintained
17432 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17433 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17434
17435 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17436 M:      Robert Marko <robert.marko@sartura.hr>
17437 M:      Luka Perkov <luka.perkov@sartura.hr>
17438 L:      linux-arm-msm@vger.kernel.org
17439 S:      Maintained
17440 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17441 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17442
17443 QUALCOMM NAND CONTROLLER DRIVER
17444 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17445 L:      linux-mtd@lists.infradead.org
17446 L:      linux-arm-msm@vger.kernel.org
17447 S:      Maintained
17448 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17449 F:      drivers/mtd/nand/raw/qcom_nandc.c
17450
17451 QUALCOMM RMNET DRIVER
17452 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17453 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17454 L:      netdev@vger.kernel.org
17455 S:      Maintained
17456 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17457 F:      drivers/net/ethernet/qualcomm/rmnet/
17458 F:      include/linux/if_rmnet.h
17459
17460 QUALCOMM TSENS THERMAL DRIVER
17461 M:      Amit Kucheria <amitk@kernel.org>
17462 M:      Thara Gopinath <thara.gopinath@gmail.com>
17463 L:      linux-pm@vger.kernel.org
17464 L:      linux-arm-msm@vger.kernel.org
17465 S:      Maintained
17466 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17467 F:      drivers/thermal/qcom/
17468
17469 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17470 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17471 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17472 L:      linux-media@vger.kernel.org
17473 L:      linux-arm-msm@vger.kernel.org
17474 S:      Maintained
17475 T:      git git://linuxtv.org/media_tree.git
17476 F:      Documentation/devicetree/bindings/media/*venus*
17477 F:      drivers/media/platform/qcom/venus/
17478
17479 QUALCOMM WCN36XX WIRELESS DRIVER
17480 M:      Loic Poulain <loic.poulain@linaro.org>
17481 L:      wcn36xx@lists.infradead.org
17482 S:      Supported
17483 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17484 F:      drivers/net/wireless/ath/wcn36xx/
17485
17486 QUANTENNA QTNFMAC WIRELESS DRIVER
17487 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17488 R:      Sergey Matyukevich <geomatsi@gmail.com>
17489 L:      linux-wireless@vger.kernel.org
17490 S:      Maintained
17491 F:      drivers/net/wireless/quantenna
17492
17493 RADEON and AMDGPU DRM DRIVERS
17494 M:      Alex Deucher <alexander.deucher@amd.com>
17495 M:      Christian König <christian.koenig@amd.com>
17496 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17497 L:      amd-gfx@lists.freedesktop.org
17498 S:      Supported
17499 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17500 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17501 C:      irc://irc.oftc.net/radeon
17502 F:      Documentation/gpu/amdgpu/
17503 F:      drivers/gpu/drm/amd/
17504 F:      drivers/gpu/drm/radeon/
17505 F:      include/uapi/drm/amdgpu_drm.h
17506 F:      include/uapi/drm/radeon_drm.h
17507
17508 RADEON FRAMEBUFFER DISPLAY DRIVER
17509 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17510 L:      linux-fbdev@vger.kernel.org
17511 S:      Maintained
17512 F:      drivers/video/fbdev/aty/radeon*
17513 F:      include/uapi/linux/radeonfb.h
17514
17515 RADIOSHARK RADIO DRIVER
17516 M:      Hans Verkuil <hverkuil@xs4all.nl>
17517 L:      linux-media@vger.kernel.org
17518 S:      Maintained
17519 T:      git git://linuxtv.org/media_tree.git
17520 F:      drivers/media/radio/radio-shark.c
17521
17522 RADIOSHARK2 RADIO DRIVER
17523 M:      Hans Verkuil <hverkuil@xs4all.nl>
17524 L:      linux-media@vger.kernel.org
17525 S:      Maintained
17526 T:      git git://linuxtv.org/media_tree.git
17527 F:      drivers/media/radio/radio-shark2.c
17528 F:      drivers/media/radio/radio-tea5777.c
17529
17530 RADOS BLOCK DEVICE (RBD)
17531 M:      Ilya Dryomov <idryomov@gmail.com>
17532 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17533 L:      ceph-devel@vger.kernel.org
17534 S:      Supported
17535 W:      http://ceph.com/
17536 T:      git https://github.com/ceph/ceph-client.git
17537 F:      Documentation/ABI/testing/sysfs-bus-rbd
17538 F:      drivers/block/rbd.c
17539 F:      drivers/block/rbd_types.h
17540
17541 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17542 M:      Paul Mackerras <paulus@samba.org>
17543 L:      linux-fbdev@vger.kernel.org
17544 S:      Maintained
17545 F:      drivers/video/fbdev/aty/aty128fb.c
17546
17547 RAINSHADOW-CEC DRIVER
17548 M:      Hans Verkuil <hverkuil@xs4all.nl>
17549 L:      linux-media@vger.kernel.org
17550 S:      Maintained
17551 T:      git git://linuxtv.org/media_tree.git
17552 F:      drivers/media/cec/usb/rainshadow/
17553
17554 RALINK MIPS ARCHITECTURE
17555 M:      John Crispin <john@phrozen.org>
17556 L:      linux-mips@vger.kernel.org
17557 S:      Maintained
17558 F:      arch/mips/ralink
17559
17560 RALINK MT7621 MIPS ARCHITECTURE
17561 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17562 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17563 L:      linux-mips@vger.kernel.org
17564 S:      Maintained
17565 F:      arch/mips/boot/dts/ralink/mt7621*
17566
17567 RALINK PINCTRL DRIVER
17568 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17569 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17570 L:      linux-mips@vger.kernel.org
17571 S:      Maintained
17572 F:      drivers/pinctrl/ralink/
17573
17574 RALINK RT2X00 WIRELESS LAN DRIVER
17575 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17576 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17577 L:      linux-wireless@vger.kernel.org
17578 S:      Maintained
17579 F:      drivers/net/wireless/ralink/rt2x00/
17580
17581 RAMDISK RAM BLOCK DEVICE DRIVER
17582 M:      Jens Axboe <axboe@kernel.dk>
17583 S:      Maintained
17584 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17585 F:      drivers/block/brd.c
17586
17587 RANCHU VIRTUAL BOARD FOR MIPS
17588 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17589 L:      linux-mips@vger.kernel.org
17590 S:      Supported
17591 F:      arch/mips/configs/generic/board-ranchu.config
17592 F:      arch/mips/generic/board-ranchu.c
17593
17594 RANDOM NUMBER DRIVER
17595 M:      "Theodore Ts'o" <tytso@mit.edu>
17596 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17597 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17598 S:      Maintained
17599 F:      drivers/char/random.c
17600 F:      drivers/virt/vmgenid.c
17601
17602 RAPIDIO SUBSYSTEM
17603 M:      Matt Porter <mporter@kernel.crashing.org>
17604 M:      Alexandre Bounine <alex.bou9@gmail.com>
17605 S:      Maintained
17606 F:      drivers/rapidio/
17607
17608 RAS INFRASTRUCTURE
17609 M:      Tony Luck <tony.luck@intel.com>
17610 M:      Borislav Petkov <bp@alien8.de>
17611 L:      linux-edac@vger.kernel.org
17612 S:      Maintained
17613 F:      Documentation/admin-guide/ras.rst
17614 F:      drivers/ras/
17615 F:      include/linux/ras.h
17616 F:      include/ras/ras_event.h
17617
17618 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17619 L:      linux-wireless@vger.kernel.org
17620 S:      Orphan
17621 F:      drivers/net/wireless/legacy/ray*
17622
17623 RC-CORE / LIRC FRAMEWORK
17624 M:      Sean Young <sean@mess.org>
17625 L:      linux-media@vger.kernel.org
17626 S:      Maintained
17627 W:      http://linuxtv.org
17628 T:      git git://linuxtv.org/media_tree.git
17629 F:      Documentation/driver-api/media/rc-core.rst
17630 F:      Documentation/userspace-api/media/rc/
17631 F:      drivers/media/rc/
17632 F:      include/media/rc-map.h
17633 F:      include/media/rc-core.h
17634 F:      include/uapi/linux/lirc.h
17635
17636 RCMM REMOTE CONTROLS DECODER
17637 M:      Patrick Lerda <patrick9876@free.fr>
17638 S:      Maintained
17639 F:      drivers/media/rc/ir-rcmm-decoder.c
17640
17641 RCUTORTURE TEST FRAMEWORK
17642 M:      "Paul E. McKenney" <paulmck@kernel.org>
17643 M:      Josh Triplett <josh@joshtriplett.org>
17644 R:      Steven Rostedt <rostedt@goodmis.org>
17645 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17646 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17647 L:      rcu@vger.kernel.org
17648 S:      Supported
17649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17650 F:      tools/testing/selftests/rcutorture
17651
17652 RDACM20 Camera Sensor
17653 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17654 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17655 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17656 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17657 L:      linux-media@vger.kernel.org
17658 S:      Maintained
17659 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17660 F:      drivers/media/i2c/max9271.c
17661 F:      drivers/media/i2c/max9271.h
17662 F:      drivers/media/i2c/rdacm20.c
17663
17664 RDACM21 Camera Sensor
17665 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17666 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17667 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17668 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17669 L:      linux-media@vger.kernel.org
17670 S:      Maintained
17671 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17672 F:      drivers/media/i2c/max9271.c
17673 F:      drivers/media/i2c/max9271.h
17674 F:      drivers/media/i2c/rdacm21.c
17675
17676 RDC R-321X SoC
17677 M:      Florian Fainelli <florian@openwrt.org>
17678 S:      Maintained
17679
17680 RDC R6040 FAST ETHERNET DRIVER
17681 M:      Florian Fainelli <f.fainelli@gmail.com>
17682 L:      netdev@vger.kernel.org
17683 S:      Maintained
17684 F:      drivers/net/ethernet/rdc/r6040.c
17685
17686 RDMAVT - RDMA verbs software
17687 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17688 L:      linux-rdma@vger.kernel.org
17689 S:      Supported
17690 F:      drivers/infiniband/sw/rdmavt
17691
17692 RDS - RELIABLE DATAGRAM SOCKETS
17693 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17694 L:      netdev@vger.kernel.org
17695 L:      linux-rdma@vger.kernel.org
17696 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17697 S:      Supported
17698 W:      https://oss.oracle.com/projects/rds/
17699 F:      Documentation/networking/rds.rst
17700 F:      net/rds/
17701
17702 RDT - RESOURCE ALLOCATION
17703 M:      Fenghua Yu <fenghua.yu@intel.com>
17704 M:      Reinette Chatre <reinette.chatre@intel.com>
17705 L:      linux-kernel@vger.kernel.org
17706 S:      Supported
17707 F:      Documentation/arch/x86/resctrl*
17708 F:      arch/x86/include/asm/resctrl.h
17709 F:      arch/x86/kernel/cpu/resctrl/
17710 F:      tools/testing/selftests/resctrl/
17711
17712 READ-COPY UPDATE (RCU)
17713 M:      "Paul E. McKenney" <paulmck@kernel.org>
17714 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17715 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17716 M:      Joel Fernandes <joel@joelfernandes.org>
17717 M:      Josh Triplett <josh@joshtriplett.org>
17718 M:      Boqun Feng <boqun.feng@gmail.com>
17719 R:      Steven Rostedt <rostedt@goodmis.org>
17720 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17721 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17722 R:      Zqiang <qiang1.zhang@intel.com>
17723 L:      rcu@vger.kernel.org
17724 S:      Supported
17725 W:      http://www.rdrop.com/users/paulmck/RCU/
17726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17727 F:      Documentation/RCU/
17728 F:      include/linux/rcu*
17729 F:      kernel/rcu/
17730 X:      Documentation/RCU/torture.rst
17731 X:      include/linux/srcu*.h
17732 X:      kernel/rcu/srcu*.c
17733
17734 REAL TIME CLOCK (RTC) SUBSYSTEM
17735 M:      Alessandro Zummo <a.zummo@towertech.it>
17736 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17737 L:      linux-rtc@vger.kernel.org
17738 S:      Maintained
17739 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17741 F:      Documentation/admin-guide/rtc.rst
17742 F:      Documentation/devicetree/bindings/rtc/
17743 F:      drivers/rtc/
17744 F:      include/linux/platform_data/rtc-*
17745 F:      include/linux/rtc.h
17746 F:      include/linux/rtc/
17747 F:      include/uapi/linux/rtc.h
17748 F:      tools/testing/selftests/rtc/
17749
17750 REALTEK AUDIO CODECS
17751 M:      Oder Chiou <oder_chiou@realtek.com>
17752 S:      Maintained
17753 F:      include/sound/rt*.h
17754 F:      sound/soc/codecs/rt*
17755
17756 REALTEK OTTO WATCHDOG
17757 M:      Sander Vanheule <sander@svanheule.net>
17758 L:      linux-watchdog@vger.kernel.org
17759 S:      Maintained
17760 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17761 F:      drivers/watchdog/realtek_otto_wdt.c
17762
17763 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17764 M:      Linus Walleij <linus.walleij@linaro.org>
17765 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17766 S:      Maintained
17767 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17768 F:      drivers/net/dsa/realtek/*
17769
17770 REALTEK WIRELESS DRIVER (rtlwifi family)
17771 M:      Ping-Ke Shih <pkshih@realtek.com>
17772 L:      linux-wireless@vger.kernel.org
17773 S:      Maintained
17774 W:      https://wireless.wiki.kernel.org/
17775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17776 F:      drivers/net/wireless/realtek/rtlwifi/
17777
17778 REALTEK WIRELESS DRIVER (rtw88)
17779 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17780 L:      linux-wireless@vger.kernel.org
17781 S:      Maintained
17782 F:      drivers/net/wireless/realtek/rtw88/
17783
17784 REALTEK WIRELESS DRIVER (rtw89)
17785 M:      Ping-Ke Shih <pkshih@realtek.com>
17786 L:      linux-wireless@vger.kernel.org
17787 S:      Maintained
17788 F:      drivers/net/wireless/realtek/rtw89/
17789
17790 REDPINE WIRELESS DRIVER
17791 L:      linux-wireless@vger.kernel.org
17792 S:      Orphan
17793 F:      drivers/net/wireless/rsi/
17794
17795 REGISTER MAP ABSTRACTION
17796 M:      Mark Brown <broonie@kernel.org>
17797 L:      linux-kernel@vger.kernel.org
17798 S:      Supported
17799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17800 F:      Documentation/devicetree/bindings/regmap/
17801 F:      drivers/base/regmap/
17802 F:      include/linux/regmap.h
17803
17804 REISERFS FILE SYSTEM
17805 L:      reiserfs-devel@vger.kernel.org
17806 S:      Supported
17807 F:      fs/reiserfs/
17808
17809 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17810 M:      Bjorn Andersson <andersson@kernel.org>
17811 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17812 L:      linux-remoteproc@vger.kernel.org
17813 S:      Maintained
17814 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17815 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17816 F:      Documentation/devicetree/bindings/remoteproc/
17817 F:      Documentation/staging/remoteproc.rst
17818 F:      drivers/remoteproc/
17819 F:      include/linux/remoteproc.h
17820 F:      include/linux/remoteproc/
17821
17822 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17823 M:      Bjorn Andersson <andersson@kernel.org>
17824 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17825 L:      linux-remoteproc@vger.kernel.org
17826 S:      Maintained
17827 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17828 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17829 F:      Documentation/staging/rpmsg.rst
17830 F:      drivers/rpmsg/
17831 F:      include/linux/rpmsg.h
17832 F:      include/linux/rpmsg/
17833 F:      include/uapi/linux/rpmsg.h
17834 F:      samples/rpmsg/
17835
17836 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17837 M:      Stephan Gerhold <stephan@gerhold.net>
17838 L:      netdev@vger.kernel.org
17839 L:      linux-remoteproc@vger.kernel.org
17840 S:      Maintained
17841 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17842
17843 RENESAS CLOCK DRIVERS
17844 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17845 L:      linux-renesas-soc@vger.kernel.org
17846 S:      Supported
17847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17848 F:      Documentation/devicetree/bindings/clock/renesas,*
17849 F:      drivers/clk/renesas/
17850
17851 RENESAS EMEV2 I2C DRIVER
17852 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17853 L:      linux-renesas-soc@vger.kernel.org
17854 S:      Supported
17855 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17856 F:      drivers/i2c/busses/i2c-emev2.c
17857
17858 RENESAS ETHERNET DRIVERS
17859 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17860 L:      netdev@vger.kernel.org
17861 L:      linux-renesas-soc@vger.kernel.org
17862 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17863 F:      drivers/net/ethernet/renesas/
17864 F:      include/linux/sh_eth.h
17865
17866 RENESAS IDT821034 ASoC CODEC
17867 M:      Herve Codina <herve.codina@bootlin.com>
17868 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17869 S:      Maintained
17870 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17871 F:      sound/soc/codecs/idt821034.c
17872
17873 RENESAS R-CAR GYROADC DRIVER
17874 M:      Marek Vasut <marek.vasut@gmail.com>
17875 L:      linux-iio@vger.kernel.org
17876 S:      Supported
17877 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17878 F:      drivers/iio/adc/rcar-gyroadc.c
17879
17880 RENESAS R-CAR I2C DRIVERS
17881 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17882 L:      linux-renesas-soc@vger.kernel.org
17883 S:      Supported
17884 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17885 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17886 F:      drivers/i2c/busses/i2c-rcar.c
17887 F:      drivers/i2c/busses/i2c-sh_mobile.c
17888
17889 RENESAS R-CAR SATA DRIVER
17890 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17891 S:      Supported
17892 L:      linux-ide@vger.kernel.org
17893 L:      linux-renesas-soc@vger.kernel.org
17894 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17895 F:      drivers/ata/sata_rcar.c
17896
17897 RENESAS R-CAR THERMAL DRIVERS
17898 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17899 L:      linux-renesas-soc@vger.kernel.org
17900 S:      Supported
17901 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17902 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17903 F:      drivers/thermal/rcar_gen3_thermal.c
17904 F:      drivers/thermal/rcar_thermal.c
17905
17906 RENESAS RIIC DRIVER
17907 M:      Chris Brandt <chris.brandt@renesas.com>
17908 L:      linux-renesas-soc@vger.kernel.org
17909 S:      Supported
17910 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17911 F:      drivers/i2c/busses/i2c-riic.c
17912
17913 RENESAS USB PHY DRIVER
17914 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17915 L:      linux-renesas-soc@vger.kernel.org
17916 S:      Maintained
17917 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17918
17919 RENESAS RZ/G2L A/D DRIVER
17920 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17921 L:      linux-iio@vger.kernel.org
17922 L:      linux-renesas-soc@vger.kernel.org
17923 S:      Supported
17924 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17925 F:      drivers/iio/adc/rzg2l_adc.c
17926
17927 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17928 M:      Clément Léger <clement.leger@bootlin.com>
17929 L:      linux-renesas-soc@vger.kernel.org
17930 L:      netdev@vger.kernel.org
17931 S:      Maintained
17932 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17933 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17934 F:      drivers/net/dsa/rzn1_a5psw*
17935 F:      drivers/net/pcs/pcs-rzn1-miic.c
17936 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17937 F:      include/linux/pcs-rzn1-miic.h
17938 F:      net/dsa/tag_rzn1_a5psw.c
17939
17940 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17941 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17942 L:      linux-rtc@vger.kernel.org
17943 L:      linux-renesas-soc@vger.kernel.org
17944 S:      Maintained
17945 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17946 F:      drivers/rtc/rtc-rzn1.c
17947
17948 RENESAS RZ/N1 USBF CONTROLLER DRIVER
17949 M:      Herve Codina <herve.codina@bootlin.com>
17950 L:      linux-renesas-soc@vger.kernel.org
17951 L:      linux-usb@vger.kernel.org
17952 S:      Maintained
17953 F:      Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
17954 F:      drivers/usb/gadget/udc/renesas_usbf.c
17955
17956 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17957 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17958 L:      linux-mtd@lists.infradead.org
17959 L:      linux-renesas-soc@vger.kernel.org
17960 S:      Maintained
17961 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17962 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17963
17964 RENESAS VERSACLOCK 7 CLOCK DRIVER
17965 M:      Alex Helms <alexander.helms.jy@renesas.com>
17966 S:      Maintained
17967 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17968 F:      drivers/clk/clk-versaclock7.c
17969
17970 RESET CONTROLLER FRAMEWORK
17971 M:      Philipp Zabel <p.zabel@pengutronix.de>
17972 S:      Maintained
17973 T:      git git://git.pengutronix.de/git/pza/linux
17974 F:      Documentation/devicetree/bindings/reset/
17975 F:      Documentation/driver-api/reset.rst
17976 F:      drivers/reset/
17977 F:      include/dt-bindings/reset/
17978 F:      include/linux/reset-controller.h
17979 F:      include/linux/reset.h
17980 F:      include/linux/reset/
17981 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17982
17983 RESTARTABLE SEQUENCES SUPPORT
17984 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17985 M:      Peter Zijlstra <peterz@infradead.org>
17986 M:      "Paul E. McKenney" <paulmck@kernel.org>
17987 M:      Boqun Feng <boqun.feng@gmail.com>
17988 L:      linux-kernel@vger.kernel.org
17989 S:      Supported
17990 F:      include/trace/events/rseq.h
17991 F:      include/uapi/linux/rseq.h
17992 F:      kernel/rseq.c
17993 F:      tools/testing/selftests/rseq/
17994
17995 RFKILL
17996 M:      Johannes Berg <johannes@sipsolutions.net>
17997 L:      linux-wireless@vger.kernel.org
17998 S:      Maintained
17999 W:      https://wireless.wiki.kernel.org/
18000 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
18001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
18002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
18003 F:      Documentation/ABI/stable/sysfs-class-rfkill
18004 F:      Documentation/driver-api/rfkill.rst
18005 F:      include/linux/rfkill.h
18006 F:      include/uapi/linux/rfkill.h
18007 F:      net/rfkill/
18008
18009 RHASHTABLE
18010 M:      Thomas Graf <tgraf@suug.ch>
18011 M:      Herbert Xu <herbert@gondor.apana.org.au>
18012 L:      netdev@vger.kernel.org
18013 S:      Maintained
18014 F:      include/linux/rhashtable-types.h
18015 F:      include/linux/rhashtable.h
18016 F:      lib/rhashtable.c
18017 F:      lib/test_rhashtable.c
18018
18019 RICOH R5C592 MEMORYSTICK DRIVER
18020 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18021 S:      Maintained
18022 F:      drivers/memstick/host/r592.*
18023
18024 RICOH SMARTMEDIA/XD DRIVER
18025 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18026 S:      Maintained
18027 F:      drivers/mtd/nand/raw/r852.c
18028 F:      drivers/mtd/nand/raw/r852.h
18029
18030 RISC-V PMU DRIVERS
18031 M:      Atish Patra <atishp@atishpatra.org>
18032 R:      Anup Patel <anup@brainfault.org>
18033 L:      linux-riscv@lists.infradead.org
18034 S:      Supported
18035 F:      drivers/perf/riscv_pmu.c
18036 F:      drivers/perf/riscv_pmu_legacy.c
18037 F:      drivers/perf/riscv_pmu_sbi.c
18038
18039 RISC-V ARCHITECTURE
18040 M:      Paul Walmsley <paul.walmsley@sifive.com>
18041 M:      Palmer Dabbelt <palmer@dabbelt.com>
18042 M:      Albert Ou <aou@eecs.berkeley.edu>
18043 L:      linux-riscv@lists.infradead.org
18044 S:      Supported
18045 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18046 C:      irc://irc.libera.chat/riscv
18047 P:      Documentation/riscv/patch-acceptance.rst
18048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
18049 F:      arch/riscv/
18050 N:      riscv
18051 K:      riscv
18052
18053 RISC-V MICROCHIP FPGA SUPPORT
18054 M:      Conor Dooley <conor.dooley@microchip.com>
18055 M:      Daire McNamara <daire.mcnamara@microchip.com>
18056 L:      linux-riscv@lists.infradead.org
18057 S:      Supported
18058 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
18059 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
18060 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
18061 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
18062 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
18063 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
18064 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
18065 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
18066 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
18067 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
18068 F:      arch/riscv/boot/dts/microchip/
18069 F:      drivers/char/hw_random/mpfs-rng.c
18070 F:      drivers/clk/microchip/clk-mpfs*.c
18071 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
18072 F:      drivers/mailbox/mailbox-mpfs.c
18073 F:      drivers/pci/controller/pcie-microchip-host.c
18074 F:      drivers/reset/reset-mpfs.c
18075 F:      drivers/rtc/rtc-mpfs.c
18076 F:      drivers/soc/microchip/mpfs-sys-controller.c
18077 F:      drivers/spi/spi-microchip-core-qspi.c
18078 F:      drivers/spi/spi-microchip-core.c
18079 F:      drivers/usb/musb/mpfs.c
18080 F:      include/soc/microchip/mpfs.h
18081
18082 RISC-V MISC SOC SUPPORT
18083 M:      Conor Dooley <conor@kernel.org>
18084 L:      linux-riscv@lists.infradead.org
18085 S:      Maintained
18086 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18087 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18088 F:      Documentation/devicetree/bindings/riscv/
18089 F:      arch/riscv/boot/dts/
18090
18091 RNBD BLOCK DRIVERS
18092 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18093 M:      Jack Wang <jinpu.wang@ionos.com>
18094 L:      linux-block@vger.kernel.org
18095 S:      Maintained
18096 F:      drivers/block/rnbd/
18097
18098 ROCCAT DRIVERS
18099 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
18100 S:      Maintained
18101 W:      http://sourceforge.net/projects/roccat/
18102 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
18103 F:      drivers/hid/hid-roccat*
18104 F:      include/linux/hid-roccat*
18105
18106 ROCKCHIP CRYPTO DRIVERS
18107 M:      Corentin Labbe <clabbe@baylibre.com>
18108 L:      linux-crypto@vger.kernel.org
18109 S:      Maintained
18110 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18111 F:      drivers/crypto/rockchip/
18112
18113 ROCKCHIP I2S TDM DRIVER
18114 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
18115 L:      linux-rockchip@lists.infradead.org
18116 S:      Maintained
18117 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18118 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
18119
18120 ROCKCHIP ISP V1 DRIVER
18121 M:      Dafna Hirschfeld <dafna@fastmail.com>
18122 L:      linux-media@vger.kernel.org
18123 L:      linux-rockchip@lists.infradead.org
18124 S:      Maintained
18125 F:      Documentation/admin-guide/media/rkisp1.rst
18126 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18127 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18128 F:      drivers/media/platform/rockchip/rkisp1
18129 F:      include/uapi/linux/rkisp1-config.h
18130
18131 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18132 M:      Jacob Chen <jacob-chen@iotwrt.com>
18133 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18134 L:      linux-media@vger.kernel.org
18135 L:      linux-rockchip@lists.infradead.org
18136 S:      Maintained
18137 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
18138 F:      drivers/media/platform/rockchip/rga/
18139
18140 ROCKCHIP VIDEO DECODER DRIVER
18141 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18142 L:      linux-media@vger.kernel.org
18143 L:      linux-rockchip@lists.infradead.org
18144 S:      Maintained
18145 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18146 F:      drivers/staging/media/rkvdec/
18147
18148 ROCKER DRIVER
18149 M:      Jiri Pirko <jiri@resnulli.us>
18150 L:      netdev@vger.kernel.org
18151 S:      Supported
18152 F:      drivers/net/ethernet/rocker/
18153
18154 ROCKETPORT EXPRESS/INFINITY DRIVER
18155 M:      Kevin Cernekee <cernekee@gmail.com>
18156 L:      linux-serial@vger.kernel.org
18157 S:      Odd Fixes
18158 F:      drivers/tty/serial/rp2.*
18159
18160 ROHM BD99954 CHARGER IC
18161 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18162 S:      Supported
18163 F:      drivers/power/supply/bd99954-charger.c
18164 F:      drivers/power/supply/bd99954-charger.h
18165
18166 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18167 M:      Tomasz Duszynski <tduszyns@gmail.com>
18168 S:      Maintained
18169 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18170 F:      drivers/iio/light/bh1750.c
18171
18172 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18173 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18174 L:      linux-kernel@vger.kernel.org
18175 L:      linux-renesas-soc@vger.kernel.org
18176 S:      Supported
18177 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18178 F:      drivers/gpio/gpio-bd9571mwv.c
18179 F:      drivers/mfd/bd9571mwv.c
18180 F:      drivers/regulator/bd9571mwv-regulator.c
18181 F:      include/linux/mfd/bd9571mwv.h
18182
18183 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18184 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18185 S:      Supported
18186 F:      drivers/clk/clk-bd718x7.c
18187 F:      drivers/gpio/gpio-bd71815.c
18188 F:      drivers/gpio/gpio-bd71828.c
18189 F:      drivers/mfd/rohm-bd71828.c
18190 F:      drivers/mfd/rohm-bd718x7.c
18191 F:      drivers/mfd/rohm-bd9576.c
18192 F:      drivers/regulator/bd71815-regulator.c
18193 F:      drivers/regulator/bd71828-regulator.c
18194 F:      drivers/regulator/bd718x7-regulator.c
18195 F:      drivers/regulator/bd9576-regulator.c
18196 F:      drivers/regulator/rohm-regulator.c
18197 F:      drivers/rtc/rtc-bd70528.c
18198 F:      drivers/watchdog/bd9576_wdt.c
18199 F:      include/linux/mfd/rohm-bd71815.h
18200 F:      include/linux/mfd/rohm-bd71828.h
18201 F:      include/linux/mfd/rohm-bd718x7.h
18202 F:      include/linux/mfd/rohm-bd957x.h
18203 F:      include/linux/mfd/rohm-generic.h
18204 F:      include/linux/mfd/rohm-shared.h
18205
18206 ROSE NETWORK LAYER
18207 M:      Ralf Baechle <ralf@linux-mips.org>
18208 L:      linux-hams@vger.kernel.org
18209 S:      Maintained
18210 W:      http://www.linux-ax25.org/
18211 F:      include/net/rose.h
18212 F:      include/uapi/linux/rose.h
18213 F:      net/rose/
18214
18215 ROTATION DRIVER FOR ALLWINNER A83T
18216 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18217 L:      linux-media@vger.kernel.org
18218 S:      Maintained
18219 T:      git git://linuxtv.org/media_tree.git
18220 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18221 F:      drivers/media/platform/sunxi/sun8i-rotate/
18222
18223 RPMSG TTY DRIVER
18224 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18225 L:      linux-remoteproc@vger.kernel.org
18226 S:      Maintained
18227 F:      drivers/tty/rpmsg_tty.c
18228
18229 RTL2830 MEDIA DRIVER
18230 M:      Antti Palosaari <crope@iki.fi>
18231 L:      linux-media@vger.kernel.org
18232 S:      Maintained
18233 W:      https://linuxtv.org
18234 W:      http://palosaari.fi/linux/
18235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18236 T:      git git://linuxtv.org/anttip/media_tree.git
18237 F:      drivers/media/dvb-frontends/rtl2830*
18238
18239 RTL2832 MEDIA DRIVER
18240 M:      Antti Palosaari <crope@iki.fi>
18241 L:      linux-media@vger.kernel.org
18242 S:      Maintained
18243 W:      https://linuxtv.org
18244 W:      http://palosaari.fi/linux/
18245 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18246 T:      git git://linuxtv.org/anttip/media_tree.git
18247 F:      drivers/media/dvb-frontends/rtl2832*
18248
18249 RTL2832_SDR MEDIA DRIVER
18250 M:      Antti Palosaari <crope@iki.fi>
18251 L:      linux-media@vger.kernel.org
18252 S:      Maintained
18253 W:      https://linuxtv.org
18254 W:      http://palosaari.fi/linux/
18255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18256 T:      git git://linuxtv.org/anttip/media_tree.git
18257 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18258
18259 RTL8180 WIRELESS DRIVER
18260 L:      linux-wireless@vger.kernel.org
18261 S:      Orphan
18262 W:      https://wireless.wiki.kernel.org/
18263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18264 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18265
18266 RTL8187 WIRELESS DRIVER
18267 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18268 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18269 M:      Larry Finger <Larry.Finger@lwfinger.net>
18270 L:      linux-wireless@vger.kernel.org
18271 S:      Maintained
18272 W:      https://wireless.wiki.kernel.org/
18273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18274 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18275
18276 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18277 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18278 L:      linux-wireless@vger.kernel.org
18279 S:      Maintained
18280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18281 F:      drivers/net/wireless/realtek/rtl8xxxu/
18282
18283 RTRS TRANSPORT DRIVERS
18284 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18285 M:      Jack Wang <jinpu.wang@ionos.com>
18286 L:      linux-rdma@vger.kernel.org
18287 S:      Maintained
18288 F:      drivers/infiniband/ulp/rtrs/
18289
18290 RUNTIME VERIFICATION (RV)
18291 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18292 M:      Steven Rostedt <rostedt@goodmis.org>
18293 L:      linux-trace-devel@vger.kernel.org
18294 S:      Maintained
18295 F:      Documentation/trace/rv/
18296 F:      include/linux/rv.h
18297 F:      include/rv/
18298 F:      kernel/trace/rv/
18299 F:      tools/verification/
18300
18301 RUST
18302 M:      Miguel Ojeda <ojeda@kernel.org>
18303 M:      Alex Gaynor <alex.gaynor@gmail.com>
18304 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18305 R:      Boqun Feng <boqun.feng@gmail.com>
18306 R:      Gary Guo <gary@garyguo.net>
18307 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18308 L:      rust-for-linux@vger.kernel.org
18309 S:      Supported
18310 W:      https://github.com/Rust-for-Linux/linux
18311 B:      https://github.com/Rust-for-Linux/linux/issues
18312 C:      zulip://rust-for-linux.zulipchat.com
18313 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18314 F:      Documentation/rust/
18315 F:      rust/
18316 F:      samples/rust/
18317 F:      scripts/*rust*
18318 K:      \b(?i:rust)\b
18319
18320 RXRPC SOCKETS (AF_RXRPC)
18321 M:      David Howells <dhowells@redhat.com>
18322 M:      Marc Dionne <marc.dionne@auristor.com>
18323 L:      linux-afs@lists.infradead.org
18324 S:      Supported
18325 W:      https://www.infradead.org/~dhowells/kafs/
18326 F:      Documentation/networking/rxrpc.rst
18327 F:      include/keys/rxrpc-type.h
18328 F:      include/net/af_rxrpc.h
18329 F:      include/trace/events/rxrpc.h
18330 F:      include/uapi/linux/rxrpc.h
18331 F:      net/rxrpc/
18332
18333 S3 SAVAGE FRAMEBUFFER DRIVER
18334 M:      Antonino Daplas <adaplas@gmail.com>
18335 L:      linux-fbdev@vger.kernel.org
18336 S:      Maintained
18337 F:      drivers/video/fbdev/savage/
18338
18339 S390 ARCHITECTURE
18340 M:      Heiko Carstens <hca@linux.ibm.com>
18341 M:      Vasily Gorbik <gor@linux.ibm.com>
18342 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18343 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18344 R:      Sven Schnelle <svens@linux.ibm.com>
18345 L:      linux-s390@vger.kernel.org
18346 S:      Supported
18347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18348 F:      Documentation/driver-api/s390-drivers.rst
18349 F:      Documentation/s390/
18350 F:      arch/s390/
18351 F:      drivers/s390/
18352 F:      drivers/watchdog/diag288_wdt.c
18353
18354 S390 COMMON I/O LAYER
18355 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18356 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18357 L:      linux-s390@vger.kernel.org
18358 S:      Supported
18359 F:      drivers/s390/cio/
18360
18361 S390 DASD DRIVER
18362 M:      Stefan Haberland <sth@linux.ibm.com>
18363 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18364 L:      linux-s390@vger.kernel.org
18365 S:      Supported
18366 F:      block/partitions/ibm.c
18367 F:      drivers/s390/block/dasd*
18368 F:      include/linux/dasd_mod.h
18369
18370 S390 IOMMU (PCI)
18371 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18372 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18373 R:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18374 L:      linux-s390@vger.kernel.org
18375 S:      Supported
18376 F:      drivers/iommu/s390-iommu.c
18377
18378 S390 IUCV NETWORK LAYER
18379 M:      Alexandra Winter <wintera@linux.ibm.com>
18380 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18381 L:      linux-s390@vger.kernel.org
18382 L:      netdev@vger.kernel.org
18383 S:      Supported
18384 F:      drivers/s390/net/*iucv*
18385 F:      include/net/iucv/
18386 F:      net/iucv/
18387
18388 S390 NETWORK DRIVERS
18389 M:      Alexandra Winter <wintera@linux.ibm.com>
18390 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18391 L:      linux-s390@vger.kernel.org
18392 L:      netdev@vger.kernel.org
18393 S:      Supported
18394 F:      drivers/s390/net/
18395
18396 S390 MM
18397 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18398 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18399 L:      linux-s390@vger.kernel.org
18400 S:      Supported
18401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18402 F:      arch/s390/include/asm/pgtable.h
18403 F:      arch/s390/mm
18404
18405 S390 PCI SUBSYSTEM
18406 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18407 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18408 L:      linux-s390@vger.kernel.org
18409 S:      Supported
18410 F:      arch/s390/pci/
18411 F:      drivers/pci/hotplug/s390_pci_hpc.c
18412 F:      Documentation/s390/pci.rst
18413
18414 S390 SCM DRIVER
18415 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18416 L:      linux-s390@vger.kernel.org
18417 S:      Supported
18418 F:      drivers/s390/block/scm*
18419 F:      drivers/s390/cio/scm.c
18420
18421 S390 VFIO AP DRIVER
18422 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18423 M:      Halil Pasic <pasic@linux.ibm.com>
18424 M:      Jason Herne <jjherne@linux.ibm.com>
18425 L:      linux-s390@vger.kernel.org
18426 S:      Supported
18427 F:      Documentation/s390/vfio-ap*
18428 F:      drivers/s390/crypto/vfio_ap*
18429
18430 S390 VFIO-CCW DRIVER
18431 M:      Eric Farman <farman@linux.ibm.com>
18432 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18433 R:      Halil Pasic <pasic@linux.ibm.com>
18434 L:      linux-s390@vger.kernel.org
18435 L:      kvm@vger.kernel.org
18436 S:      Supported
18437 F:      Documentation/s390/vfio-ccw.rst
18438 F:      drivers/s390/cio/vfio_ccw*
18439 F:      include/uapi/linux/vfio_ccw.h
18440
18441 S390 VFIO-PCI DRIVER
18442 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18443 M:      Eric Farman <farman@linux.ibm.com>
18444 L:      linux-s390@vger.kernel.org
18445 L:      kvm@vger.kernel.org
18446 S:      Supported
18447 F:      arch/s390/kvm/pci*
18448 F:      drivers/vfio/pci/vfio_pci_zdev.c
18449 F:      include/uapi/linux/vfio_zdev.h
18450
18451 S390 ZCRYPT DRIVER
18452 M:      Harald Freudenberger <freude@linux.ibm.com>
18453 L:      linux-s390@vger.kernel.org
18454 S:      Supported
18455 F:      drivers/s390/crypto/
18456
18457 S390 ZFCP DRIVER
18458 M:      Steffen Maier <maier@linux.ibm.com>
18459 M:      Benjamin Block <bblock@linux.ibm.com>
18460 L:      linux-s390@vger.kernel.org
18461 S:      Supported
18462 F:      drivers/s390/scsi/zfcp_*
18463
18464 SAA6588 RDS RECEIVER DRIVER
18465 M:      Hans Verkuil <hverkuil@xs4all.nl>
18466 L:      linux-media@vger.kernel.org
18467 S:      Odd Fixes
18468 W:      https://linuxtv.org
18469 T:      git git://linuxtv.org/media_tree.git
18470 F:      drivers/media/i2c/saa6588*
18471
18472 SAA7134 VIDEO4LINUX DRIVER
18473 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18474 L:      linux-media@vger.kernel.org
18475 S:      Odd fixes
18476 W:      https://linuxtv.org
18477 T:      git git://linuxtv.org/media_tree.git
18478 F:      Documentation/driver-api/media/drivers/saa7134*
18479 F:      drivers/media/pci/saa7134/
18480
18481 SAA7146 VIDEO4LINUX-2 DRIVER
18482 M:      Hans Verkuil <hverkuil@xs4all.nl>
18483 L:      linux-media@vger.kernel.org
18484 S:      Maintained
18485 T:      git git://linuxtv.org/media_tree.git
18486 F:      drivers/media/common/saa7146/
18487 F:      drivers/media/pci/saa7146/
18488 F:      include/media/drv-intf/saa7146*
18489
18490 SAFESETID SECURITY MODULE
18491 M:      Micah Morton <mortonm@chromium.org>
18492 S:      Supported
18493 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18494 F:      security/safesetid/
18495
18496 SAMSUNG AUDIO (ASoC) DRIVERS
18497 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18498 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18499 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18500 S:      Supported
18501 B:      mailto:linux-samsung-soc@vger.kernel.org
18502 F:      Documentation/devicetree/bindings/sound/samsung*
18503 F:      sound/soc/samsung/
18504
18505 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18506 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18507 L:      linux-crypto@vger.kernel.org
18508 L:      linux-samsung-soc@vger.kernel.org
18509 S:      Maintained
18510 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18511 F:      drivers/crypto/exynos-rng.c
18512
18513 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18514 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18515 L:      linux-samsung-soc@vger.kernel.org
18516 S:      Maintained
18517 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18518 F:      drivers/char/hw_random/exynos-trng.c
18519
18520 SAMSUNG FRAMEBUFFER DRIVER
18521 M:      Jingoo Han <jingoohan1@gmail.com>
18522 L:      linux-fbdev@vger.kernel.org
18523 S:      Maintained
18524 F:      drivers/video/fbdev/s3c-fb.c
18525
18526 SAMSUNG INTERCONNECT DRIVERS
18527 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18528 M:      Artur Świgoń <a.swigon@samsung.com>
18529 L:      linux-pm@vger.kernel.org
18530 L:      linux-samsung-soc@vger.kernel.org
18531 S:      Supported
18532 F:      drivers/interconnect/samsung/
18533
18534 SAMSUNG LAPTOP DRIVER
18535 M:      Corentin Chary <corentin.chary@gmail.com>
18536 L:      platform-driver-x86@vger.kernel.org
18537 S:      Maintained
18538 F:      drivers/platform/x86/samsung-laptop.c
18539
18540 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18541 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18542 L:      linux-kernel@vger.kernel.org
18543 L:      linux-samsung-soc@vger.kernel.org
18544 S:      Supported
18545 B:      mailto:linux-samsung-soc@vger.kernel.org
18546 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18547 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18548 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18549 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18550 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18551 F:      drivers/clk/clk-s2mps11.c
18552 F:      drivers/mfd/sec*.c
18553 F:      drivers/regulator/s2m*.c
18554 F:      drivers/regulator/s5m*.c
18555 F:      drivers/rtc/rtc-s5m.c
18556 F:      include/linux/mfd/samsung/
18557
18558 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18559 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18560 L:      linux-media@vger.kernel.org
18561 L:      linux-samsung-soc@vger.kernel.org
18562 S:      Maintained
18563 F:      drivers/media/platform/samsung/s3c-camif/
18564 F:      include/media/drv-intf/s3c_camif.h
18565
18566 SAMSUNG S3FWRN5 NFC DRIVER
18567 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18568 S:      Maintained
18569 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18570 F:      drivers/nfc/s3fwrn5
18571
18572 SAMSUNG S5C73M3 CAMERA DRIVER
18573 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18574 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18575 L:      linux-media@vger.kernel.org
18576 S:      Supported
18577 F:      Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
18578 F:      drivers/media/i2c/s5c73m3/*
18579
18580 SAMSUNG S5K5BAF CAMERA DRIVER
18581 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18582 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18583 L:      linux-media@vger.kernel.org
18584 S:      Supported
18585 F:      drivers/media/i2c/s5k5baf.c
18586
18587 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18588 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18589 M:      Vladimir Zapolskiy <vz@mleia.com>
18590 L:      linux-crypto@vger.kernel.org
18591 L:      linux-samsung-soc@vger.kernel.org
18592 S:      Maintained
18593 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18594 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18595 F:      drivers/crypto/s5p-sss.c
18596
18597 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18598 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18599 L:      linux-media@vger.kernel.org
18600 S:      Supported
18601 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18602 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
18603 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
18604 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
18605 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
18606 F:      Documentation/devicetree/bindings/media/samsung,fimc.yaml
18607 F:      drivers/media/platform/samsung/exynos4-is/
18608
18609 SAMSUNG SOC CLOCK DRIVERS
18610 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18611 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18612 M:      Tomasz Figa <tomasz.figa@gmail.com>
18613 M:      Chanwoo Choi <cw00.choi@samsung.com>
18614 R:      Alim Akhtar <alim.akhtar@samsung.com>
18615 L:      linux-samsung-soc@vger.kernel.org
18616 S:      Supported
18617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18619 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18620 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18621 F:      drivers/clk/samsung/
18622 F:      include/dt-bindings/clock/exynos*.h
18623 F:      include/dt-bindings/clock/s5p*.h
18624 F:      include/dt-bindings/clock/samsung,*.h
18625 F:      include/linux/clk/samsung.h
18626
18627 SAMSUNG SPI DRIVERS
18628 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18629 M:      Andi Shyti <andi@etezian.org>
18630 L:      linux-spi@vger.kernel.org
18631 L:      linux-samsung-soc@vger.kernel.org
18632 S:      Maintained
18633 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18634 F:      drivers/spi/spi-s3c*
18635 F:      include/linux/platform_data/spi-s3c64xx.h
18636
18637 SAMSUNG SXGBE DRIVERS
18638 M:      Byungho An <bh74.an@samsung.com>
18639 L:      netdev@vger.kernel.org
18640 S:      Supported
18641 F:      drivers/net/ethernet/samsung/sxgbe/
18642
18643 SAMSUNG THERMAL DRIVER
18644 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18645 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18646 L:      linux-pm@vger.kernel.org
18647 L:      linux-samsung-soc@vger.kernel.org
18648 S:      Maintained
18649 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18650 F:      drivers/thermal/samsung/
18651
18652 SAMSUNG USB2 PHY DRIVER
18653 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18654 L:      linux-kernel@vger.kernel.org
18655 S:      Supported
18656 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18657 F:      Documentation/driver-api/phy/samsung-usb2.rst
18658 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18659 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18660 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18661 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18662 F:      drivers/phy/samsung/phy-samsung-usb2.c
18663 F:      drivers/phy/samsung/phy-samsung-usb2.h
18664
18665 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18666 M:      Paul Barker <paul.barker@sancloud.com>
18667 R:      Marc Murphy <marc.murphy@sancloud.com>
18668 S:      Supported
18669 F:      arch/arm/boot/dts/am335x-sancloud*
18670
18671 SC1200 WDT DRIVER
18672 M:      Zwane Mwaikambo <zwanem@gmail.com>
18673 S:      Maintained
18674 F:      drivers/watchdog/sc1200wdt.c
18675
18676 SCHEDULER
18677 M:      Ingo Molnar <mingo@redhat.com>
18678 M:      Peter Zijlstra <peterz@infradead.org>
18679 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18680 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18681 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18682 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18683 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18684 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18685 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18686 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18687 L:      linux-kernel@vger.kernel.org
18688 S:      Maintained
18689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18690 F:      include/linux/preempt.h
18691 F:      include/linux/sched.h
18692 F:      include/linux/wait.h
18693 F:      include/uapi/linux/sched.h
18694 F:      kernel/sched/
18695
18696 SCR24X CHIP CARD INTERFACE DRIVER
18697 M:      Lubomir Rintel <lkundrak@v3.sk>
18698 S:      Supported
18699 F:      drivers/char/pcmcia/scr24x_cs.c
18700
18701 SCSI RDMA PROTOCOL (SRP) INITIATOR
18702 M:      Bart Van Assche <bvanassche@acm.org>
18703 L:      linux-rdma@vger.kernel.org
18704 S:      Supported
18705 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18706 F:      drivers/infiniband/ulp/srp/
18707 F:      include/scsi/srp.h
18708
18709 SCSI RDMA PROTOCOL (SRP) TARGET
18710 M:      Bart Van Assche <bvanassche@acm.org>
18711 L:      linux-rdma@vger.kernel.org
18712 L:      target-devel@vger.kernel.org
18713 S:      Supported
18714 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18715 F:      drivers/infiniband/ulp/srpt/
18716
18717 SCSI SG DRIVER
18718 M:      Doug Gilbert <dgilbert@interlog.com>
18719 L:      linux-scsi@vger.kernel.org
18720 S:      Maintained
18721 W:      http://sg.danny.cz/sg
18722 F:      Documentation/scsi/scsi-generic.rst
18723 F:      drivers/scsi/sg.c
18724 F:      include/scsi/sg.h
18725
18726 SCSI SUBSYSTEM
18727 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18728 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18729 L:      linux-scsi@vger.kernel.org
18730 S:      Maintained
18731 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18734 F:      Documentation/devicetree/bindings/scsi/
18735 F:      drivers/scsi/
18736 F:      drivers/ufs/
18737 F:      include/scsi/
18738
18739 SCSI TAPE DRIVER
18740 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18741 L:      linux-scsi@vger.kernel.org
18742 S:      Maintained
18743 F:      Documentation/scsi/st.rst
18744 F:      drivers/scsi/st.*
18745 F:      drivers/scsi/st_*.h
18746
18747 SCSI TARGET CORE USER DRIVER
18748 M:      Bodo Stroesser <bostroesser@gmail.com>
18749 L:      linux-scsi@vger.kernel.org
18750 L:      target-devel@vger.kernel.org
18751 S:      Supported
18752 F:      Documentation/target/tcmu-design.rst
18753 F:      drivers/target/target_core_user.c
18754 F:      include/uapi/linux/target_core_user.h
18755
18756 SCSI TARGET SUBSYSTEM
18757 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18758 L:      linux-scsi@vger.kernel.org
18759 L:      target-devel@vger.kernel.org
18760 S:      Supported
18761 W:      http://www.linux-iscsi.org
18762 Q:      https://patchwork.kernel.org/project/target-devel/list/
18763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18764 F:      Documentation/target/
18765 F:      drivers/target/
18766 F:      include/target/
18767
18768 SCTP PROTOCOL
18769 M:      Neil Horman <nhorman@tuxdriver.com>
18770 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18771 M:      Xin Long <lucien.xin@gmail.com>
18772 L:      linux-sctp@vger.kernel.org
18773 S:      Maintained
18774 W:      http://lksctp.sourceforge.net
18775 F:      Documentation/networking/sctp.rst
18776 F:      include/linux/sctp.h
18777 F:      include/net/sctp/
18778 F:      include/uapi/linux/sctp.h
18779 F:      net/sctp/
18780
18781 SCx200 CPU SUPPORT
18782 M:      Jim Cromie <jim.cromie@gmail.com>
18783 S:      Odd Fixes
18784 F:      Documentation/i2c/busses/scx200_acb.rst
18785 F:      arch/x86/platform/scx200/
18786 F:      drivers/i2c/busses/scx200*
18787 F:      drivers/mtd/maps/scx200_docflash.c
18788 F:      drivers/watchdog/scx200_wdt.c
18789 F:      include/linux/scx200.h
18790
18791 SCx200 GPIO DRIVER
18792 M:      Jim Cromie <jim.cromie@gmail.com>
18793 S:      Maintained
18794 F:      drivers/char/scx200_gpio.c
18795 F:      include/linux/scx200_gpio.h
18796
18797 SCx200 HRT CLOCKSOURCE DRIVER
18798 M:      Jim Cromie <jim.cromie@gmail.com>
18799 S:      Maintained
18800 F:      drivers/clocksource/scx200_hrt.c
18801
18802 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18803 M:      Sascha Sommer <saschasommer@freenet.de>
18804 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18805 S:      Maintained
18806 F:      drivers/mmc/host/sdricoh_cs.c
18807
18808 SECO BOARDS CEC DRIVER
18809 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18810 S:      Maintained
18811 F:      drivers/media/cec/platform/seco/seco-cec.c
18812 F:      drivers/media/cec/platform/seco/seco-cec.h
18813
18814 SECURE COMPUTING
18815 M:      Kees Cook <keescook@chromium.org>
18816 R:      Andy Lutomirski <luto@amacapital.net>
18817 R:      Will Drewry <wad@chromium.org>
18818 S:      Supported
18819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18820 F:      Documentation/userspace-api/seccomp_filter.rst
18821 F:      include/linux/seccomp.h
18822 F:      include/uapi/linux/seccomp.h
18823 F:      kernel/seccomp.c
18824 F:      tools/testing/selftests/kselftest_harness.h
18825 F:      tools/testing/selftests/seccomp/*
18826 K:      \bsecure_computing
18827 K:      \bTIF_SECCOMP\b
18828
18829 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18830 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18831 M:      Al Cooper <alcooperx@gmail.com>
18832 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18833 L:      linux-mmc@vger.kernel.org
18834 S:      Maintained
18835 F:      drivers/mmc/host/sdhci-brcmstb*
18836
18837 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18838 M:      Adrian Hunter <adrian.hunter@intel.com>
18839 L:      linux-mmc@vger.kernel.org
18840 S:      Supported
18841 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18842 F:      drivers/mmc/host/sdhci*
18843
18844 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18845 M:      Eugen Hristev <eugen.hristev@microchip.com>
18846 L:      linux-mmc@vger.kernel.org
18847 S:      Supported
18848 F:      drivers/mmc/host/sdhci-of-at91.c
18849
18850 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18851 M:      Ben Dooks <ben-linux@fluff.org>
18852 M:      Jaehoon Chung <jh80.chung@samsung.com>
18853 L:      linux-mmc@vger.kernel.org
18854 S:      Maintained
18855 F:      drivers/mmc/host/sdhci-s3c*
18856
18857 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18858 M:      Viresh Kumar <vireshk@kernel.org>
18859 L:      linux-mmc@vger.kernel.org
18860 S:      Maintained
18861 F:      drivers/mmc/host/sdhci-spear.c
18862
18863 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18864 M:      Vignesh Raghavendra <vigneshr@ti.com>
18865 L:      linux-mmc@vger.kernel.org
18866 S:      Maintained
18867 F:      drivers/mmc/host/sdhci-omap.c
18868
18869 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18870 M:      Haibo Chen <haibo.chen@nxp.com>
18871 L:      linux-imx@nxp.com
18872 L:      linux-mmc@vger.kernel.org
18873 S:      Maintained
18874 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18875
18876 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18877 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18878 L:      linux-block@vger.kernel.org
18879 S:      Supported
18880 F:      block/opal_proto.h
18881 F:      block/sed*
18882 F:      include/linux/sed*
18883 F:      include/uapi/linux/sed*
18884
18885 SECURITY CONTACT
18886 M:      Security Officers <security@kernel.org>
18887 S:      Supported
18888 F:      Documentation/process/security-bugs.rst
18889
18890 SECURITY SUBSYSTEM
18891 M:      Paul Moore <paul@paul-moore.com>
18892 M:      James Morris <jmorris@namei.org>
18893 M:      "Serge E. Hallyn" <serge@hallyn.com>
18894 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18895 S:      Supported
18896 W:      http://kernsec.org/
18897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18898 F:      security/
18899 X:      security/selinux/
18900
18901 SELINUX SECURITY MODULE
18902 M:      Paul Moore <paul@paul-moore.com>
18903 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18904 M:      Eric Paris <eparis@parisplace.org>
18905 L:      selinux@vger.kernel.org
18906 S:      Supported
18907 W:      https://selinuxproject.org
18908 W:      https://github.com/SELinuxProject
18909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18910 F:      Documentation/ABI/removed/sysfs-selinux-checkreqprot
18911 F:      Documentation/ABI/removed/sysfs-selinux-disable
18912 F:      Documentation/admin-guide/LSM/SELinux.rst
18913 F:      include/trace/events/avc.h
18914 F:      include/uapi/linux/selinux_netlink.h
18915 F:      scripts/selinux/
18916 F:      security/selinux/
18917
18918 SENSABLE PHANTOM
18919 M:      Jiri Slaby <jirislaby@kernel.org>
18920 S:      Maintained
18921 F:      drivers/misc/phantom.c
18922 F:      include/uapi/linux/phantom.h
18923
18924 SENSEAIR SUNRISE 006-0-0007
18925 M:      Jacopo Mondi <jacopo@jmondi.org>
18926 S:      Maintained
18927 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18928 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18929 F:      drivers/iio/chemical/sunrise_co2.c
18930
18931 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18932 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18933 S:      Maintained
18934 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18935 F:      drivers/iio/chemical/scd30.h
18936 F:      drivers/iio/chemical/scd30_core.c
18937 F:      drivers/iio/chemical/scd30_i2c.c
18938 F:      drivers/iio/chemical/scd30_serial.c
18939
18940 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18941 M:      Roan van Dijk <roan@protonic.nl>
18942 S:      Maintained
18943 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18944 F:      drivers/iio/chemical/scd4x.c
18945
18946 SENSIRION SGP40 GAS SENSOR DRIVER
18947 M:      Andreas Klinger <ak@it-klinger.de>
18948 S:      Maintained
18949 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18950 F:      drivers/iio/chemical/sgp40.c
18951
18952 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18953 M:      Tomasz Duszynski <tduszyns@gmail.com>
18954 S:      Maintained
18955 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18956 F:      drivers/iio/chemical/sps30.c
18957 F:      drivers/iio/chemical/sps30_i2c.c
18958 F:      drivers/iio/chemical/sps30_serial.c
18959
18960 SERIAL DEVICE BUS
18961 M:      Rob Herring <robh@kernel.org>
18962 L:      linux-serial@vger.kernel.org
18963 S:      Maintained
18964 F:      Documentation/devicetree/bindings/serial/serial.yaml
18965 F:      drivers/tty/serdev/
18966 F:      include/linux/serdev.h
18967
18968 SERIAL DRIVERS
18969 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18970 L:      linux-serial@vger.kernel.org
18971 S:      Maintained
18972 F:      Documentation/devicetree/bindings/serial/
18973 F:      drivers/tty/serial/
18974
18975 SERIAL IR RECEIVER
18976 M:      Sean Young <sean@mess.org>
18977 L:      linux-media@vger.kernel.org
18978 S:      Maintained
18979 F:      drivers/media/rc/serial_ir.c
18980
18981 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18982 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18983 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18984 S:      Maintained
18985 F:      Documentation/devicetree/bindings/slimbus/
18986 F:      drivers/slimbus/
18987 F:      include/linux/slimbus.h
18988
18989 SFC NETWORK DRIVER
18990 M:      Edward Cree <ecree.xilinx@gmail.com>
18991 M:      Martin Habets <habetsm.xilinx@gmail.com>
18992 L:      netdev@vger.kernel.org
18993 S:      Supported
18994 F:      Documentation/networking/devlink/sfc.rst
18995 F:      drivers/net/ethernet/sfc/
18996
18997 SFCTEMP HWMON DRIVER
18998 M:      Emil Renner Berthing <kernel@esmil.dk>
18999 L:      linux-hwmon@vger.kernel.org
19000 S:      Maintained
19001 F:      Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
19002 F:      Documentation/hwmon/sfctemp.rst
19003 F:      drivers/hwmon/sfctemp.c
19004
19005 SFF/SFP/SFP+ MODULE SUPPORT
19006 M:      Russell King <linux@armlinux.org.uk>
19007 L:      netdev@vger.kernel.org
19008 S:      Maintained
19009 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
19010 F:      drivers/net/phy/phylink.c
19011 F:      drivers/net/phy/sfp*
19012 F:      include/linux/mdio/mdio-i2c.h
19013 F:      include/linux/phylink.h
19014 F:      include/linux/sfp.h
19015 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)
19016
19017 SGI GRU DRIVER
19018 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19019 S:      Maintained
19020 F:      drivers/misc/sgi-gru/
19021
19022 SGI XP/XPC/XPNET DRIVER
19023 M:      Robin Holt <robinmholt@gmail.com>
19024 M:      Steve Wahl <steve.wahl@hpe.com>
19025 R:      Mike Travis <mike.travis@hpe.com>
19026 S:      Maintained
19027 F:      drivers/misc/sgi-xp/
19028
19029 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
19030 M:      Karsten Graul <kgraul@linux.ibm.com>
19031 M:      Wenjia Zhang <wenjia@linux.ibm.com>
19032 M:      Jan Karcher <jaka@linux.ibm.com>
19033 L:      linux-s390@vger.kernel.org
19034 S:      Supported
19035 F:      net/smc/
19036
19037 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
19038 M:      Linus Walleij <linus.walleij@linaro.org>
19039 L:      linux-iio@vger.kernel.org
19040 S:      Maintained
19041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
19042 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
19043 F:      drivers/iio/light/gp2ap002.c
19044
19045 SHARP RJ54N1CB0C SENSOR DRIVER
19046 M:      Jacopo Mondi <jacopo@jmondi.org>
19047 L:      linux-media@vger.kernel.org
19048 S:      Odd fixes
19049 T:      git git://linuxtv.org/media_tree.git
19050 F:      drivers/media/i2c/rj54n1cb0c.c
19051 F:      include/media/i2c/rj54n1cb0c.h
19052
19053 SH_VOU V4L2 OUTPUT DRIVER
19054 L:      linux-media@vger.kernel.org
19055 S:      Orphan
19056 F:      drivers/media/platform/renesas/sh_vou.c
19057 F:      include/media/drv-intf/sh_vou.h
19058
19059 SI2157 MEDIA DRIVER
19060 M:      Antti Palosaari <crope@iki.fi>
19061 L:      linux-media@vger.kernel.org
19062 S:      Maintained
19063 W:      https://linuxtv.org
19064 W:      http://palosaari.fi/linux/
19065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19066 T:      git git://linuxtv.org/anttip/media_tree.git
19067 F:      drivers/media/tuners/si2157*
19068
19069 SI2165 MEDIA DRIVER
19070 M:      Matthias Schwarzott <zzam@gentoo.org>
19071 L:      linux-media@vger.kernel.org
19072 S:      Maintained
19073 W:      https://linuxtv.org
19074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19075 F:      drivers/media/dvb-frontends/si2165*
19076
19077 SI2168 MEDIA DRIVER
19078 M:      Antti Palosaari <crope@iki.fi>
19079 L:      linux-media@vger.kernel.org
19080 S:      Maintained
19081 W:      https://linuxtv.org
19082 W:      http://palosaari.fi/linux/
19083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19084 T:      git git://linuxtv.org/anttip/media_tree.git
19085 F:      drivers/media/dvb-frontends/si2168*
19086
19087 SI470X FM RADIO RECEIVER I2C DRIVER
19088 M:      Hans Verkuil <hverkuil@xs4all.nl>
19089 L:      linux-media@vger.kernel.org
19090 S:      Odd Fixes
19091 W:      https://linuxtv.org
19092 T:      git git://linuxtv.org/media_tree.git
19093 F:      Documentation/devicetree/bindings/media/silabs,si470x.yaml
19094 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
19095
19096 SI470X FM RADIO RECEIVER USB DRIVER
19097 M:      Hans Verkuil <hverkuil@xs4all.nl>
19098 L:      linux-media@vger.kernel.org
19099 S:      Maintained
19100 W:      https://linuxtv.org
19101 T:      git git://linuxtv.org/media_tree.git
19102 F:      drivers/media/radio/si470x/radio-si470x-common.c
19103 F:      drivers/media/radio/si470x/radio-si470x-usb.c
19104 F:      drivers/media/radio/si470x/radio-si470x.h
19105
19106 SI4713 FM RADIO TRANSMITTER I2C DRIVER
19107 M:      Eduardo Valentin <edubezval@gmail.com>
19108 L:      linux-media@vger.kernel.org
19109 S:      Odd Fixes
19110 W:      https://linuxtv.org
19111 T:      git git://linuxtv.org/media_tree.git
19112 F:      drivers/media/radio/si4713/si4713.?
19113
19114 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19115 M:      Eduardo Valentin <edubezval@gmail.com>
19116 L:      linux-media@vger.kernel.org
19117 S:      Odd Fixes
19118 W:      https://linuxtv.org
19119 T:      git git://linuxtv.org/media_tree.git
19120 F:      drivers/media/radio/si4713/radio-platform-si4713.c
19121
19122 SI4713 FM RADIO TRANSMITTER USB DRIVER
19123 M:      Hans Verkuil <hverkuil@xs4all.nl>
19124 L:      linux-media@vger.kernel.org
19125 S:      Maintained
19126 W:      https://linuxtv.org
19127 T:      git git://linuxtv.org/media_tree.git
19128 F:      drivers/media/radio/si4713/radio-usb-si4713.c
19129
19130 SIANO DVB DRIVER
19131 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19132 L:      linux-media@vger.kernel.org
19133 S:      Odd fixes
19134 W:      https://linuxtv.org
19135 T:      git git://linuxtv.org/media_tree.git
19136 F:      drivers/media/common/siano/
19137 F:      drivers/media/mmc/siano/
19138 F:      drivers/media/usb/siano/
19139 F:      drivers/media/usb/siano/
19140
19141 SIFIVE DRIVERS
19142 M:      Palmer Dabbelt <palmer@dabbelt.com>
19143 M:      Paul Walmsley <paul.walmsley@sifive.com>
19144 L:      linux-riscv@lists.infradead.org
19145 S:      Supported
19146 N:      sifive
19147 K:      [^@]sifive
19148
19149 SIFIVE FU540 SYSTEM-ON-CHIP
19150 M:      Paul Walmsley <paul.walmsley@sifive.com>
19151 M:      Palmer Dabbelt <palmer@dabbelt.com>
19152 L:      linux-riscv@lists.infradead.org
19153 S:      Supported
19154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19155 N:      fu540
19156 K:      fu540
19157
19158 SIFIVE PDMA DRIVER
19159 M:      Green Wan <green.wan@sifive.com>
19160 S:      Maintained
19161 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19162 F:      drivers/dma/sf-pdma/
19163
19164 SIFIVE SOC DRIVERS
19165 M:      Conor Dooley <conor@kernel.org>
19166 L:      linux-riscv@lists.infradead.org
19167 S:      Maintained
19168 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19169 F:      Documentation/devicetree/bindings/cache/sifive,ccache0.yaml
19170 F:      drivers/soc/sifive/
19171
19172 SILEAD TOUCHSCREEN DRIVER
19173 M:      Hans de Goede <hdegoede@redhat.com>
19174 L:      linux-input@vger.kernel.org
19175 L:      platform-driver-x86@vger.kernel.org
19176 S:      Maintained
19177 F:      drivers/input/touchscreen/silead.c
19178 F:      drivers/platform/x86/touchscreen_dmi.c
19179
19180 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19181 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
19182 S:      Supported
19183 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19184 F:      drivers/net/wireless/silabs/wfx/
19185
19186 SILICON MOTION SM712 FRAME BUFFER DRIVER
19187 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19188 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19189 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19190 L:      linux-fbdev@vger.kernel.org
19191 S:      Maintained
19192 F:      Documentation/fb/sm712fb.rst
19193 F:      drivers/video/fbdev/sm712*
19194
19195 SILVACO I3C DUAL-ROLE MASTER
19196 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19197 M:      Conor Culhane <conor.culhane@silvaco.com>
19198 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19199 S:      Maintained
19200 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19201 F:      drivers/i3c/master/svc-i3c-master.c
19202
19203 SIMPLEFB FB DRIVER
19204 M:      Hans de Goede <hdegoede@redhat.com>
19205 L:      linux-fbdev@vger.kernel.org
19206 S:      Maintained
19207 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19208 F:      drivers/video/fbdev/simplefb.c
19209 F:      include/linux/platform_data/simplefb.h
19210
19211 SIMTEC EB110ATX (Chalice CATS)
19212 M:      Simtec Linux Team <linux@simtec.co.uk>
19213 S:      Supported
19214 W:      http://www.simtec.co.uk/products/EB110ATX/
19215
19216 SIOX
19217 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19218 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19219 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19220 S:      Supported
19221 F:      drivers/gpio/gpio-siox.c
19222 F:      drivers/siox/*
19223 F:      include/trace/events/siox.h
19224
19225 SIPHASH PRF ROUTINES
19226 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19227 S:      Maintained
19228 F:      include/linux/siphash.h
19229 F:      lib/siphash.c
19230 F:      lib/siphash_kunit.c
19231
19232 SIS 190 ETHERNET DRIVER
19233 M:      Francois Romieu <romieu@fr.zoreil.com>
19234 L:      netdev@vger.kernel.org
19235 S:      Maintained
19236 F:      drivers/net/ethernet/sis/sis190.c
19237
19238 SIS 900/7016 FAST ETHERNET DRIVER
19239 M:      Daniele Venzano <venza@brownhat.org>
19240 L:      netdev@vger.kernel.org
19241 S:      Maintained
19242 W:      http://www.brownhat.org/sis900.html
19243 F:      drivers/net/ethernet/sis/sis900.*
19244
19245 SIS FRAMEBUFFER DRIVER
19246 S:      Orphan
19247 F:      Documentation/fb/sisfb.rst
19248 F:      drivers/video/fbdev/sis/
19249 F:      include/video/sisfb.h
19250
19251 SIS I2C TOUCHSCREEN DRIVER
19252 M:      Mika Penttilä <mpenttil@redhat.com>
19253 L:      linux-input@vger.kernel.org
19254 S:      Maintained
19255 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19256 F:      drivers/input/touchscreen/sis_i2c.c
19257
19258 SIS USB2VGA DRIVER
19259 M:      Thomas Winischhofer <thomas@winischhofer.net>
19260 S:      Maintained
19261 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19262 F:      drivers/usb/misc/sisusbvga/
19263
19264 SL28 CPLD MFD DRIVER
19265 M:      Michael Walle <michael@walle.cc>
19266 S:      Maintained
19267 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19268 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19269 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19270 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19271 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19272 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19273 F:      drivers/gpio/gpio-sl28cpld.c
19274 F:      drivers/hwmon/sl28cpld-hwmon.c
19275 F:      drivers/irqchip/irq-sl28cpld.c
19276 F:      drivers/pwm/pwm-sl28cpld.c
19277 F:      drivers/watchdog/sl28cpld_wdt.c
19278
19279 SLAB ALLOCATOR
19280 M:      Christoph Lameter <cl@linux.com>
19281 M:      Pekka Enberg <penberg@kernel.org>
19282 M:      David Rientjes <rientjes@google.com>
19283 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19284 M:      Andrew Morton <akpm@linux-foundation.org>
19285 M:      Vlastimil Babka <vbabka@suse.cz>
19286 R:      Roman Gushchin <roman.gushchin@linux.dev>
19287 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19288 L:      linux-mm@kvack.org
19289 S:      Maintained
19290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19291 F:      include/linux/sl?b*.h
19292 F:      mm/sl?b*
19293
19294 SLCAN CAN NETWORK DRIVER
19295 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19296 L:      linux-can@vger.kernel.org
19297 S:      Maintained
19298 F:      drivers/net/can/slcan/
19299
19300 SLEEPABLE READ-COPY UPDATE (SRCU)
19301 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19302 M:      "Paul E. McKenney" <paulmck@kernel.org>
19303 M:      Josh Triplett <josh@joshtriplett.org>
19304 R:      Steven Rostedt <rostedt@goodmis.org>
19305 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19306 L:      rcu@vger.kernel.org
19307 S:      Supported
19308 W:      http://www.rdrop.com/users/paulmck/RCU/
19309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19310 F:      include/linux/srcu*.h
19311 F:      kernel/rcu/srcu*.c
19312
19313 SMACK SECURITY MODULE
19314 M:      Casey Schaufler <casey@schaufler-ca.com>
19315 L:      linux-security-module@vger.kernel.org
19316 S:      Maintained
19317 W:      http://schaufler-ca.com
19318 T:      git git://github.com/cschaufler/smack-next
19319 F:      Documentation/admin-guide/LSM/Smack.rst
19320 F:      security/smack/
19321
19322 SMC91x ETHERNET DRIVER
19323 M:      Nicolas Pitre <nico@fluxnic.net>
19324 S:      Odd Fixes
19325 F:      drivers/net/ethernet/smsc/smc91x.*
19326
19327 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19328 M:      Mark Rutland <mark.rutland@arm.com>
19329 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19330 M:      Sudeep Holla <sudeep.holla@arm.com>
19331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19332 S:      Maintained
19333 F:      drivers/firmware/smccc/
19334 F:      include/linux/arm-smccc.h
19335
19336 SMM665 HARDWARE MONITOR DRIVER
19337 M:      Guenter Roeck <linux@roeck-us.net>
19338 L:      linux-hwmon@vger.kernel.org
19339 S:      Maintained
19340 F:      Documentation/hwmon/smm665.rst
19341 F:      drivers/hwmon/smm665.c
19342
19343 SMSC EMC2103 HARDWARE MONITOR DRIVER
19344 M:      Steve Glendinning <steve.glendinning@shawell.net>
19345 L:      linux-hwmon@vger.kernel.org
19346 S:      Maintained
19347 F:      Documentation/hwmon/emc2103.rst
19348 F:      drivers/hwmon/emc2103.c
19349
19350 SMSC SCH5627 HARDWARE MONITOR DRIVER
19351 M:      Hans de Goede <hdegoede@redhat.com>
19352 L:      linux-hwmon@vger.kernel.org
19353 S:      Supported
19354 F:      Documentation/hwmon/sch5627.rst
19355 F:      drivers/hwmon/sch5627.c
19356
19357 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19358 M:      Steve Glendinning <steve.glendinning@shawell.net>
19359 L:      linux-fbdev@vger.kernel.org
19360 S:      Maintained
19361 F:      drivers/video/fbdev/smscufx.c
19362
19363 SMSC47B397 HARDWARE MONITOR DRIVER
19364 M:      Jean Delvare <jdelvare@suse.com>
19365 L:      linux-hwmon@vger.kernel.org
19366 S:      Maintained
19367 F:      Documentation/hwmon/smsc47b397.rst
19368 F:      drivers/hwmon/smsc47b397.c
19369
19370 SMSC911x ETHERNET DRIVER
19371 M:      Steve Glendinning <steve.glendinning@shawell.net>
19372 L:      netdev@vger.kernel.org
19373 S:      Maintained
19374 F:      drivers/net/ethernet/smsc/smsc911x.*
19375 F:      include/linux/smsc911x.h
19376
19377 SMSC9420 PCI ETHERNET DRIVER
19378 M:      Steve Glendinning <steve.glendinning@shawell.net>
19379 L:      netdev@vger.kernel.org
19380 S:      Maintained
19381 F:      drivers/net/ethernet/smsc/smsc9420.*
19382
19383 SOCIONEXT (SNI) AVE NETWORK DRIVER
19384 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19385 L:      netdev@vger.kernel.org
19386 S:      Maintained
19387 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19388 F:      drivers/net/ethernet/socionext/sni_ave.c
19389
19390 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19391 M:      Jassi Brar <jaswinder.singh@linaro.org>
19392 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19393 L:      netdev@vger.kernel.org
19394 S:      Maintained
19395 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19396 F:      drivers/net/ethernet/socionext/netsec.c
19397
19398 SOCIONEXT (SNI) Synquacer SPI DRIVER
19399 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19400 M:      Jassi Brar <jaswinder.singh@linaro.org>
19401 L:      linux-spi@vger.kernel.org
19402 S:      Maintained
19403 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19404 F:      drivers/spi/spi-synquacer.c
19405
19406 SOCIONEXT SYNQUACER I2C DRIVER
19407 M:      Ard Biesheuvel <ardb@kernel.org>
19408 L:      linux-i2c@vger.kernel.org
19409 S:      Maintained
19410 F:      Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
19411 F:      drivers/i2c/busses/i2c-synquacer.c
19412
19413 SOCIONEXT UNIPHIER SOUND DRIVER
19414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19415 S:      Orphan
19416 F:      sound/soc/uniphier/
19417
19418 SOCKET TIMESTAMPING
19419 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19420 S:      Maintained
19421 F:      Documentation/networking/timestamping.rst
19422 F:      include/uapi/linux/net_tstamp.h
19423 F:      tools/testing/selftests/net/so_txtime.c
19424
19425 SOEKRIS NET48XX LED SUPPORT
19426 M:      Chris Boot <bootc@bootc.net>
19427 S:      Maintained
19428 F:      drivers/leds/leds-net48xx.c
19429
19430 SOFT-IWARP DRIVER (siw)
19431 M:      Bernard Metzler <bmt@zurich.ibm.com>
19432 L:      linux-rdma@vger.kernel.org
19433 S:      Supported
19434 F:      drivers/infiniband/sw/siw/
19435 F:      include/uapi/rdma/siw-abi.h
19436
19437 SOFT-ROCE DRIVER (rxe)
19438 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19439 L:      linux-rdma@vger.kernel.org
19440 S:      Supported
19441 F:      drivers/infiniband/sw/rxe/
19442 F:      include/uapi/rdma/rdma_user_rxe.h
19443
19444 SOFTLOGIC 6x10 MPEG CODEC
19445 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19446 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19447 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19448 M:      Ismael Luceno <ismael@iodev.co.uk>
19449 L:      linux-media@vger.kernel.org
19450 S:      Supported
19451 F:      drivers/media/pci/solo6x10/
19452
19453 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19454 M:      James Morse <james.morse@arm.com>
19455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19456 S:      Maintained
19457 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19458 F:      drivers/firmware/arm_sdei.c
19459 F:      include/linux/arm_sdei.h
19460 F:      include/uapi/linux/arm_sdei.h
19461
19462 SOFTWARE NODES AND DEVICE PROPERTIES
19463 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19464 R:      Daniel Scally <djrscally@gmail.com>
19465 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19466 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19467 L:      linux-acpi@vger.kernel.org
19468 S:      Maintained
19469 F:      drivers/base/property.c
19470 F:      drivers/base/swnode.c
19471 F:      include/linux/fwnode.h
19472 F:      include/linux/property.h
19473
19474 SOFTWARE RAID (Multiple Disks) SUPPORT
19475 M:      Song Liu <song@kernel.org>
19476 L:      linux-raid@vger.kernel.org
19477 S:      Supported
19478 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19480 F:      drivers/md/Kconfig
19481 F:      drivers/md/Makefile
19482 F:      drivers/md/md*
19483 F:      drivers/md/raid*
19484 F:      include/linux/raid/
19485 F:      include/uapi/linux/raid/
19486
19487 SOLIDRUN CLEARFOG SUPPORT
19488 M:      Russell King <linux@armlinux.org.uk>
19489 S:      Maintained
19490 F:      arch/arm/boot/dts/armada-388-clearfog*
19491 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19492
19493 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19494 M:      Russell King <linux@armlinux.org.uk>
19495 S:      Maintained
19496 F:      arch/arm/boot/dts/imx6*-cubox-i*
19497 F:      arch/arm/boot/dts/imx6*-hummingboard*
19498 F:      arch/arm/boot/dts/imx6*-sr-*
19499
19500 SONIC NETWORK DRIVER
19501 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19502 L:      netdev@vger.kernel.org
19503 S:      Maintained
19504 F:      drivers/net/ethernet/natsemi/sonic.*
19505
19506 SONICS SILICON BACKPLANE DRIVER (SSB)
19507 M:      Michael Buesch <m@bues.ch>
19508 L:      linux-wireless@vger.kernel.org
19509 S:      Maintained
19510 F:      drivers/ssb/
19511 F:      include/linux/ssb/
19512
19513 SONY IMX208 SENSOR DRIVER
19514 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19515 L:      linux-media@vger.kernel.org
19516 S:      Maintained
19517 T:      git git://linuxtv.org/media_tree.git
19518 F:      drivers/media/i2c/imx208.c
19519
19520 SONY IMX214 SENSOR DRIVER
19521 M:      Ricardo Ribalda <ribalda@kernel.org>
19522 L:      linux-media@vger.kernel.org
19523 S:      Maintained
19524 T:      git git://linuxtv.org/media_tree.git
19525 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19526 F:      drivers/media/i2c/imx214.c
19527
19528 SONY IMX219 SENSOR DRIVER
19529 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19530 L:      linux-media@vger.kernel.org
19531 S:      Maintained
19532 T:      git git://linuxtv.org/media_tree.git
19533 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19534 F:      drivers/media/i2c/imx219.c
19535
19536 SONY IMX258 SENSOR DRIVER
19537 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19538 L:      linux-media@vger.kernel.org
19539 S:      Maintained
19540 T:      git git://linuxtv.org/media_tree.git
19541 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19542 F:      drivers/media/i2c/imx258.c
19543
19544 SONY IMX274 SENSOR DRIVER
19545 M:      Leon Luo <leonl@leopardimaging.com>
19546 L:      linux-media@vger.kernel.org
19547 S:      Maintained
19548 T:      git git://linuxtv.org/media_tree.git
19549 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19550 F:      drivers/media/i2c/imx274.c
19551
19552 SONY IMX290 SENSOR DRIVER
19553 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19554 L:      linux-media@vger.kernel.org
19555 S:      Maintained
19556 T:      git git://linuxtv.org/media_tree.git
19557 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19558 F:      drivers/media/i2c/imx290.c
19559
19560 SONY IMX296 SENSOR DRIVER
19561 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19562 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19563 L:      linux-media@vger.kernel.org
19564 S:      Maintained
19565 T:      git git://linuxtv.org/media_tree.git
19566 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
19567 F:      drivers/media/i2c/imx296.c
19568
19569 SONY IMX319 SENSOR DRIVER
19570 M:      Bingbu Cao <bingbu.cao@intel.com>
19571 L:      linux-media@vger.kernel.org
19572 S:      Maintained
19573 T:      git git://linuxtv.org/media_tree.git
19574 F:      drivers/media/i2c/imx319.c
19575
19576 SONY IMX334 SENSOR DRIVER
19577 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19578 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19579 L:      linux-media@vger.kernel.org
19580 S:      Maintained
19581 T:      git git://linuxtv.org/media_tree.git
19582 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19583 F:      drivers/media/i2c/imx334.c
19584
19585 SONY IMX335 SENSOR DRIVER
19586 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19587 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19588 L:      linux-media@vger.kernel.org
19589 S:      Maintained
19590 T:      git git://linuxtv.org/media_tree.git
19591 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19592 F:      drivers/media/i2c/imx335.c
19593
19594 SONY IMX355 SENSOR DRIVER
19595 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19596 L:      linux-media@vger.kernel.org
19597 S:      Maintained
19598 T:      git git://linuxtv.org/media_tree.git
19599 F:      drivers/media/i2c/imx355.c
19600
19601 SONY IMX412 SENSOR DRIVER
19602 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19603 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19604 L:      linux-media@vger.kernel.org
19605 S:      Maintained
19606 T:      git git://linuxtv.org/media_tree.git
19607 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19608 F:      drivers/media/i2c/imx412.c
19609
19610 SONY IMX415 SENSOR DRIVER
19611 M:      Michael Riesch <michael.riesch@wolfvision.net>
19612 L:      linux-media@vger.kernel.org
19613 S:      Maintained
19614 T:      git git://linuxtv.org/media_tree.git
19615 F:      Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
19616 F:      drivers/media/i2c/imx415.c
19617
19618 SONY MEMORYSTICK SUBSYSTEM
19619 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19620 M:      Alex Dubov <oakad@yahoo.com>
19621 M:      Ulf Hansson <ulf.hansson@linaro.org>
19622 L:      linux-mmc@vger.kernel.org
19623 S:      Maintained
19624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19625 F:      drivers/memstick/
19626 F:      include/linux/memstick.h
19627
19628 SONY VAIO CONTROL DEVICE DRIVER
19629 M:      Mattia Dongili <malattia@linux.it>
19630 L:      platform-driver-x86@vger.kernel.org
19631 S:      Maintained
19632 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19633 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19634 F:      drivers/char/sonypi.c
19635 F:      drivers/platform/x86/sony-laptop.c
19636 F:      include/linux/sony-laptop.h
19637
19638 SOUND
19639 M:      Jaroslav Kysela <perex@perex.cz>
19640 M:      Takashi Iwai <tiwai@suse.com>
19641 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19642 S:      Maintained
19643 W:      http://www.alsa-project.org/
19644 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19646 F:      Documentation/sound/
19647 F:      include/sound/
19648 F:      include/uapi/sound/
19649 F:      sound/
19650 F:      tools/testing/selftests/alsa
19651
19652 SOUND - COMPRESSED AUDIO
19653 M:      Vinod Koul <vkoul@kernel.org>
19654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19655 S:      Supported
19656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19657 F:      Documentation/sound/designs/compress-offload.rst
19658 F:      include/sound/compress_driver.h
19659 F:      include/uapi/sound/compress_*
19660 F:      sound/core/compress_offload.c
19661 F:      sound/soc/soc-compress.c
19662
19663 SOUND - DMAENGINE HELPERS
19664 M:      Lars-Peter Clausen <lars@metafoo.de>
19665 S:      Supported
19666 F:      include/sound/dmaengine_pcm.h
19667 F:      sound/core/pcm_dmaengine.c
19668 F:      sound/soc/soc-generic-dmaengine-pcm.c
19669
19670 SOUND - ALSA SELFTESTS
19671 M:      Mark Brown <broonie@kernel.org>
19672 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19673 L:      linux-kselftest@vger.kernel.org
19674 S:      Supported
19675 F:      tools/testing/selftests/alsa
19676
19677 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19678 M:      Liam Girdwood <lgirdwood@gmail.com>
19679 M:      Mark Brown <broonie@kernel.org>
19680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19681 S:      Supported
19682 W:      http://alsa-project.org/main/index.php/ASoC
19683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19684 F:      Documentation/devicetree/bindings/sound/
19685 F:      Documentation/sound/soc/
19686 F:      include/dt-bindings/sound/
19687 F:      include/sound/soc*
19688 F:      sound/soc/
19689
19690 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19691 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19692 M:      Liam Girdwood <lgirdwood@gmail.com>
19693 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19694 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19695 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19696 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19697 M:      Daniel Baluta <daniel.baluta@nxp.com>
19698 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19699 S:      Supported
19700 W:      https://github.com/thesofproject/linux/
19701 F:      sound/soc/sof/
19702
19703 SOUNDWIRE SUBSYSTEM
19704 M:      Vinod Koul <vkoul@kernel.org>
19705 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19706 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19707 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19709 S:      Supported
19710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19711 F:      Documentation/driver-api/soundwire/
19712 F:      drivers/soundwire/
19713 F:      include/linux/soundwire/
19714
19715 SP2 MEDIA DRIVER
19716 M:      Olli Salonen <olli.salonen@iki.fi>
19717 L:      linux-media@vger.kernel.org
19718 S:      Maintained
19719 W:      https://linuxtv.org
19720 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19721 F:      drivers/media/dvb-frontends/sp2*
19722
19723 SPANISH DOCUMENTATION
19724 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19725 S:      Maintained
19726 F:      Documentation/translations/sp_SP/
19727
19728 SPARC + UltraSPARC (sparc/sparc64)
19729 M:      "David S. Miller" <davem@davemloft.net>
19730 L:      sparclinux@vger.kernel.org
19731 S:      Maintained
19732 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19735 F:      arch/sparc/
19736 F:      drivers/sbus/
19737
19738 SPARC SERIAL DRIVERS
19739 M:      "David S. Miller" <davem@davemloft.net>
19740 L:      sparclinux@vger.kernel.org
19741 S:      Maintained
19742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19744 F:      drivers/tty/serial/suncore.c
19745 F:      drivers/tty/serial/sunhv.c
19746 F:      drivers/tty/serial/sunsab.c
19747 F:      drivers/tty/serial/sunsab.h
19748 F:      drivers/tty/serial/sunsu.c
19749 F:      drivers/tty/serial/sunzilog.c
19750 F:      drivers/tty/serial/sunzilog.h
19751 F:      drivers/tty/vcc.c
19752 F:      include/linux/sunserialcore.h
19753
19754 SPARSE CHECKER
19755 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19756 L:      linux-sparse@vger.kernel.org
19757 S:      Maintained
19758 W:      https://sparse.docs.kernel.org/
19759 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19760 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19761 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19762 F:      include/linux/compiler.h
19763
19764 SPEAKUP CONSOLE SPEECH DRIVER
19765 M:      William Hubbs <w.d.hubbs@gmail.com>
19766 M:      Chris Brannon <chris@the-brannons.com>
19767 M:      Kirk Reiser <kirk@reisers.ca>
19768 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19769 L:      speakup@linux-speakup.org
19770 S:      Odd Fixes
19771 W:      http://www.linux-speakup.org/
19772 W:      https://github.com/linux-speakup/speakup
19773 B:      https://github.com/linux-speakup/speakup/issues
19774 F:      drivers/accessibility/speakup/
19775
19776 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19777 M:      Viresh Kumar <vireshk@kernel.org>
19778 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19779 M:      soc@kernel.org
19780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19781 S:      Maintained
19782 W:      http://www.st.com/spear
19783 F:      arch/arm/boot/dts/spear*
19784 F:      arch/arm/mach-spear/
19785 F:      drivers/clk/spear/
19786 F:      drivers/pinctrl/spear/
19787
19788 SPI NOR SUBSYSTEM
19789 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19790 M:      Pratyush Yadav <pratyush@kernel.org>
19791 R:      Michael Walle <michael@walle.cc>
19792 L:      linux-mtd@lists.infradead.org
19793 S:      Maintained
19794 W:      http://www.linux-mtd.infradead.org/
19795 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19796 C:      irc://irc.oftc.net/mtd
19797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19798 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19799 F:      drivers/mtd/spi-nor/
19800 F:      include/linux/mtd/spi-nor.h
19801
19802 SPI SUBSYSTEM
19803 M:      Mark Brown <broonie@kernel.org>
19804 L:      linux-spi@vger.kernel.org
19805 S:      Maintained
19806 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19808 F:      Documentation/devicetree/bindings/spi/
19809 F:      Documentation/spi/
19810 F:      drivers/spi/
19811 F:      include/linux/spi/
19812 F:      include/uapi/linux/spi/
19813 F:      tools/spi/
19814
19815 SPIDERNET NETWORK DRIVER for CELL
19816 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19817 M:      Geoff Levand <geoff@infradead.org>
19818 L:      netdev@vger.kernel.org
19819 L:      linuxppc-dev@lists.ozlabs.org
19820 S:      Maintained
19821 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19822 F:      drivers/net/ethernet/toshiba/spider_net*
19823
19824 SPMI SUBSYSTEM
19825 M:      Stephen Boyd <sboyd@kernel.org>
19826 L:      linux-kernel@vger.kernel.org
19827 S:      Maintained
19828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19829 F:      Documentation/devicetree/bindings/spmi/
19830 F:      drivers/spmi/
19831 F:      include/dt-bindings/spmi/spmi.h
19832 F:      include/linux/spmi.h
19833 F:      include/trace/events/spmi.h
19834
19835 SPU FILE SYSTEM
19836 M:      Jeremy Kerr <jk@ozlabs.org>
19837 L:      linuxppc-dev@lists.ozlabs.org
19838 S:      Supported
19839 W:      http://www.ibm.com/developerworks/power/cell/
19840 F:      Documentation/filesystems/spufs/spufs.rst
19841 F:      arch/powerpc/platforms/cell/spufs/
19842
19843 SQUASHFS FILE SYSTEM
19844 M:      Phillip Lougher <phillip@squashfs.org.uk>
19845 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19846 S:      Maintained
19847 W:      http://squashfs.org.uk
19848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19849 F:      Documentation/filesystems/squashfs.rst
19850 F:      fs/squashfs/
19851
19852 SRM (Alpha) environment access
19853 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19854 S:      Maintained
19855 F:      arch/alpha/kernel/srm_env.c
19856
19857 ST LSM6DSx IMU IIO DRIVER
19858 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19859 L:      linux-iio@vger.kernel.org
19860 S:      Maintained
19861 W:      http://www.st.com/
19862 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19863 F:      drivers/iio/imu/st_lsm6dsx/
19864
19865 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19866 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19867 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19868 L:      linux-media@vger.kernel.org
19869 S:      Maintained
19870 T:      git git://linuxtv.org/media_tree.git
19871 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19872 F:      drivers/media/i2c/st-mipid02.c
19873
19874 ST STM32 I2C/SMBUS DRIVER
19875 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19876 M:      Alain Volmat <alain.volmat@foss.st.com>
19877 L:      linux-i2c@vger.kernel.org
19878 S:      Maintained
19879 F:      drivers/i2c/busses/i2c-stm32*
19880
19881 ST STM32 SPI DRIVER
19882 M:      Alain Volmat <alain.volmat@foss.st.com>
19883 L:      linux-spi@vger.kernel.org
19884 S:      Maintained
19885 F:      drivers/spi/spi-stm32.c
19886
19887 ST STPDDC60 DRIVER
19888 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19889 L:      linux-hwmon@vger.kernel.org
19890 S:      Maintained
19891 F:      Documentation/hwmon/stpddc60.rst
19892 F:      drivers/hwmon/pmbus/stpddc60.c
19893
19894 ST VGXY61 DRIVER
19895 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19896 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19897 L:      linux-media@vger.kernel.org
19898 S:      Maintained
19899 T:      git git://linuxtv.org/media_tree.git
19900 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19901 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19902 F:      drivers/media/i2c/st-vgxy61.c
19903
19904 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19905 M:      Song Qiang <songqiang1304521@gmail.com>
19906 L:      linux-iio@vger.kernel.org
19907 S:      Maintained
19908 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19909 F:      drivers/iio/proximity/vl53l0x-i2c.c
19910
19911 STABLE BRANCH
19912 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19913 M:      Sasha Levin <sashal@kernel.org>
19914 L:      stable@vger.kernel.org
19915 S:      Supported
19916 F:      Documentation/process/stable-kernel-rules.rst
19917
19918 STAGING - ATOMISP DRIVER
19919 M:      Hans de Goede <hdegoede@redhat.com>
19920 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19921 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19922 L:      linux-media@vger.kernel.org
19923 S:      Maintained
19924 F:      drivers/staging/media/atomisp/
19925
19926 STAGING - FIELDBUS SUBSYSTEM
19927 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19928 S:      Maintained
19929 F:      drivers/staging/fieldbus/*
19930 F:      drivers/staging/fieldbus/Documentation/
19931
19932 STAGING - HMS ANYBUS-S BUS
19933 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19934 S:      Maintained
19935 F:      drivers/staging/fieldbus/anybuss/
19936
19937 STAGING - INDUSTRIAL IO
19938 M:      Jonathan Cameron <jic23@kernel.org>
19939 L:      linux-iio@vger.kernel.org
19940 S:      Odd Fixes
19941 F:      Documentation/devicetree/bindings/staging/iio/
19942 F:      drivers/staging/iio/
19943
19944 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19945 M:      Marc Dietrich <marvin24@gmx.de>
19946 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19947 L:      linux-tegra@vger.kernel.org
19948 S:      Maintained
19949 F:      drivers/staging/nvec/
19950
19951 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19952 M:      Jens Frederich <jfrederich@gmail.com>
19953 M:      Jon Nettleton <jon.nettleton@gmail.com>
19954 S:      Maintained
19955 W:      http://wiki.laptop.org/go/DCON
19956 F:      drivers/staging/olpc_dcon/
19957
19958 STAGING - REALTEK RTL8712U DRIVERS
19959 M:      Larry Finger <Larry.Finger@lwfinger.net>
19960 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19961 S:      Odd Fixes
19962 F:      drivers/staging/rtl8712/
19963
19964 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19965 M:      Michael Hennerich <michael.hennerich@analog.com>
19966 L:      linux-fbdev@vger.kernel.org
19967 S:      Supported
19968 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19969 F:      drivers/staging/fbtft/fb_seps525.c
19970
19971 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19972 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19973 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19974 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19975 L:      linux-fbdev@vger.kernel.org
19976 S:      Maintained
19977 F:      drivers/staging/sm750fb/
19978
19979 STAGING - VIA VT665X DRIVERS
19980 M:      Forest Bond <forest@alittletooquiet.net>
19981 S:      Odd Fixes
19982 F:      drivers/staging/vt665?/
19983
19984 STAGING SUBSYSTEM
19985 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19986 L:      linux-staging@lists.linux.dev
19987 S:      Supported
19988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19989 F:      drivers/staging/
19990
19991 STARFIRE/DURALAN NETWORK DRIVER
19992 M:      Ion Badulescu <ionut@badula.org>
19993 S:      Odd Fixes
19994 F:      drivers/net/ethernet/adaptec/starfire*
19995
19996 STARFIVE DEVICETREES
19997 M:      Emil Renner Berthing <kernel@esmil.dk>
19998 S:      Maintained
19999 F:      arch/riscv/boot/dts/starfive/
20000
20001 STARFIVE DWMAC GLUE LAYER
20002 M:      Emil Renner Berthing <kernel@esmil.dk>
20003 M:      Samin Guo <samin.guo@starfivetech.com>
20004 S:      Maintained
20005 F:      Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
20006 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
20007
20008 STARFIVE JH7100 CLOCK DRIVERS
20009 M:      Emil Renner Berthing <kernel@esmil.dk>
20010 S:      Maintained
20011 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
20012 F:      drivers/clk/starfive/clk-starfive-jh7100*
20013 F:      include/dt-bindings/clock/starfive-jh7100*.h
20014
20015 STARFIVE JH7110 MMC/SD/SDIO DRIVER
20016 M:      William Qiu <william.qiu@starfivetech.com>
20017 S:      Supported
20018 F:      Documentation/devicetree/bindings/mmc/starfive*
20019 F:      drivers/mmc/host/dw_mmc-starfive.c
20020
20021 STARFIVE JH71X0 PINCTRL DRIVERS
20022 M:      Emil Renner Berthing <kernel@esmil.dk>
20023 M:      Jianlong Huang <jianlong.huang@starfivetech.com>
20024 L:      linux-gpio@vger.kernel.org
20025 S:      Maintained
20026 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
20027 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
20028 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
20029 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
20030
20031 STARFIVE JH7100 RESET CONTROLLER DRIVER
20032 M:      Emil Renner Berthing <kernel@esmil.dk>
20033 S:      Maintained
20034 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
20035 F:      drivers/reset/reset-starfive-jh7100.c
20036 F:      include/dt-bindings/reset/starfive-jh7100.h
20037
20038 STARFIVE JH71XX PMU CONTROLLER DRIVER
20039 M:      Walker Chen <walker.chen@starfivetech.com>
20040 S:      Supported
20041 F:      Documentation/devicetree/bindings/power/starfive*
20042 F:      drivers/soc/starfive/jh71xx_pmu.c
20043 F:      include/dt-bindings/power/starfive,jh7110-pmu.h
20044
20045 STARFIVE SOC DRIVERS
20046 M:      Conor Dooley <conor@kernel.org>
20047 S:      Maintained
20048 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
20049 F:      drivers/soc/starfive/
20050
20051 STARFIVE TRNG DRIVER
20052 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
20053 S:      Supported
20054 F:      Documentation/devicetree/bindings/rng/starfive*
20055 F:      drivers/char/hw_random/jh7110-trng.c
20056
20057 STATIC BRANCH/CALL
20058 M:      Peter Zijlstra <peterz@infradead.org>
20059 M:      Josh Poimboeuf <jpoimboe@kernel.org>
20060 M:      Jason Baron <jbaron@akamai.com>
20061 R:      Steven Rostedt <rostedt@goodmis.org>
20062 R:      Ard Biesheuvel <ardb@kernel.org>
20063 S:      Supported
20064 F:      arch/*/include/asm/jump_label*.h
20065 F:      arch/*/include/asm/static_call*.h
20066 F:      arch/*/kernel/jump_label.c
20067 F:      arch/*/kernel/static_call.c
20068 F:      include/linux/jump_label*.h
20069 F:      include/linux/static_call*.h
20070 F:      kernel/jump_label.c
20071 F:      kernel/static_call.c
20072
20073 STI AUDIO (ASoC) DRIVERS
20074 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20075 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20076 S:      Maintained
20077 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
20078 F:      sound/soc/sti/
20079
20080 STI CEC DRIVER
20081 M:      Alain Volmat <alain.volmat@foss.st.com>
20082 S:      Maintained
20083 F:      Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
20084 F:      drivers/media/cec/platform/sti/
20085
20086 STK1160 USB VIDEO CAPTURE DRIVER
20087 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20088 L:      linux-media@vger.kernel.org
20089 S:      Maintained
20090 T:      git git://linuxtv.org/media_tree.git
20091 F:      drivers/media/usb/stk1160/
20092
20093 STM32 AUDIO (ASoC) DRIVERS
20094 M:      Olivier Moysan <olivier.moysan@foss.st.com>
20095 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20096 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20097 S:      Maintained
20098 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
20099 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
20100 F:      sound/soc/stm/
20101
20102 STM32 TIMER/LPTIMER DRIVERS
20103 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
20104 S:      Maintained
20105 F:      Documentation/ABI/testing/*timer-stm32
20106 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
20107 F:      drivers/*/stm32-*timer*
20108 F:      drivers/pwm/pwm-stm32*
20109 F:      include/linux/*/stm32-*tim*
20110
20111 STMMAC ETHERNET DRIVER
20112 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
20113 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
20114 M:      Jose Abreu <joabreu@synopsys.com>
20115 L:      netdev@vger.kernel.org
20116 S:      Supported
20117 W:      http://www.stlinux.com
20118 F:      Documentation/networking/device_drivers/ethernet/stmicro/
20119 F:      drivers/net/ethernet/stmicro/stmmac/
20120
20121 SUN3/3X
20122 M:      Sam Creasey <sammy@sammy.net>
20123 S:      Maintained
20124 W:      http://sammy.net/sun3/
20125 F:      arch/m68k/include/asm/sun3*
20126 F:      arch/m68k/kernel/*sun3*
20127 F:      arch/m68k/sun3*/
20128 F:      drivers/net/ethernet/i825xx/sun3*
20129
20130 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20131 M:      Hans de Goede <hdegoede@redhat.com>
20132 L:      linux-input@vger.kernel.org
20133 S:      Maintained
20134 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20135 F:      drivers/input/keyboard/sun4i-lradc-keys.c
20136
20137 SUNDANCE NETWORK DRIVER
20138 M:      Denis Kirjanov <kda@linux-powerpc.org>
20139 L:      netdev@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/net/ethernet/dlink/sundance.c
20142
20143 SUN HAPPY MEAL ETHERNET DRIVER
20144 M:      Sean Anderson <seanga2@gmail.com>
20145 S:      Maintained
20146 F:      drivers/net/ethernet/sun/sunhme.*
20147
20148 SUNPLUS ETHERNET DRIVER
20149 M:      Wells Lu <wellslutw@gmail.com>
20150 L:      netdev@vger.kernel.org
20151 S:      Maintained
20152 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
20153 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20154 F:      drivers/net/ethernet/sunplus/
20155
20156 SUNPLUS MMC DRIVER
20157 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
20158 M:      Li-hao Kuo <lhjeff911@gmail.com>
20159 S:      Maintained
20160 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20161 F:      drivers/mmc/host/sunplus-mmc.c
20162
20163 SUNPLUS OCOTP DRIVER
20164 M:      Vincent Shih <vincent.sunplus@gmail.com>
20165 S:      Maintained
20166 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20167 F:      drivers/nvmem/sunplus-ocotp.c
20168
20169 SUNPLUS USB2 PHY DRIVER
20170 M:      Vincent Shih <vincent.sunplus@gmail.com>
20171 L:      linux-usb@vger.kernel.org
20172 S:      Maintained
20173 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20174 F:      drivers/phy/sunplus/Kconfig
20175 F:      drivers/phy/sunplus/Makefile
20176 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
20177
20178 SUNPLUS PWM DRIVER
20179 M:      Hammer Hsieh <hammerh0314@gmail.com>
20180 S:      Maintained
20181 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20182 F:      drivers/pwm/pwm-sunplus.c
20183
20184 SUNPLUS RTC DRIVER
20185 M:      Vincent Shih <vincent.sunplus@gmail.com>
20186 L:      linux-rtc@vger.kernel.org
20187 S:      Maintained
20188 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20189 F:      drivers/rtc/rtc-sunplus.c
20190
20191 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20192 M:      Li-hao Kuo <lhjeff911@gmail.com>
20193 L:      linux-spi@vger.kernel.org
20194 S:      Maintained
20195 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20196 F:      drivers/spi/spi-sunplus-sp7021.c
20197
20198 SUNPLUS UART DRIVER
20199 M:      Hammer Hsieh <hammerh0314@gmail.com>
20200 S:      Maintained
20201 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20202 F:      drivers/tty/serial/sunplus-uart.c
20203
20204 SUNPLUS WATCHDOG DRIVER
20205 M:      Xiantao Hu <xt.hu@cqplus1.com>
20206 L:      linux-watchdog@vger.kernel.org
20207 S:      Maintained
20208 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20209 F:      drivers/watchdog/sunplus_wdt.c
20210
20211 SUPERH
20212 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
20213 M:      Rich Felker <dalias@libc.org>
20214 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
20215 L:      linux-sh@vger.kernel.org
20216 S:      Maintained
20217 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20218 F:      Documentation/arch/sh/
20219 F:      arch/sh/
20220 F:      drivers/sh/
20221
20222 SUSPEND TO RAM
20223 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20224 M:      Len Brown <len.brown@intel.com>
20225 M:      Pavel Machek <pavel@ucw.cz>
20226 L:      linux-pm@vger.kernel.org
20227 S:      Supported
20228 B:      https://bugzilla.kernel.org
20229 F:      Documentation/power/
20230 F:      arch/x86/kernel/acpi/sleep*
20231 F:      arch/x86/kernel/acpi/wakeup*
20232 F:      drivers/base/power/
20233 F:      include/linux/freezer.h
20234 F:      include/linux/pm.h
20235 F:      include/linux/suspend.h
20236 F:      kernel/power/
20237
20238 SVGA HANDLING
20239 M:      Martin Mares <mj@ucw.cz>
20240 L:      linux-video@atrey.karlin.mff.cuni.cz
20241 S:      Maintained
20242 F:      Documentation/admin-guide/svga.rst
20243 F:      arch/x86/boot/video*
20244
20245 SWITCHDEV
20246 M:      Jiri Pirko <jiri@resnulli.us>
20247 M:      Ivan Vecera <ivecera@redhat.com>
20248 L:      netdev@vger.kernel.org
20249 S:      Supported
20250 F:      include/net/switchdev.h
20251 F:      net/switchdev/
20252
20253 SY8106A REGULATOR DRIVER
20254 M:      Icenowy Zheng <icenowy@aosc.io>
20255 S:      Maintained
20256 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20257 F:      drivers/regulator/sy8106a-regulator.c
20258
20259 SYNC FILE FRAMEWORK
20260 M:      Sumit Semwal <sumit.semwal@linaro.org>
20261 R:      Gustavo Padovan <gustavo@padovan.org>
20262 L:      linux-media@vger.kernel.org
20263 L:      dri-devel@lists.freedesktop.org
20264 S:      Maintained
20265 T:      git git://anongit.freedesktop.org/drm/drm-misc
20266 F:      Documentation/driver-api/sync_file.rst
20267 F:      drivers/dma-buf/dma-fence*
20268 F:      drivers/dma-buf/sw_sync.c
20269 F:      drivers/dma-buf/sync_*
20270 F:      include/linux/sync_file.h
20271 F:      include/uapi/linux/sync_file.h
20272
20273 SYNOPSYS ARC ARCHITECTURE
20274 M:      Vineet Gupta <vgupta@kernel.org>
20275 L:      linux-snps-arc@lists.infradead.org
20276 S:      Supported
20277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20278 F:      Documentation/arch/arc
20279 F:      Documentation/devicetree/bindings/arc/*
20280 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20281 F:      arch/arc/
20282 F:      drivers/clocksource/arc_timer.c
20283 F:      drivers/tty/serial/arc_uart.c
20284
20285 SYNOPSYS ARC HSDK SDP pll clock driver
20286 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20287 S:      Supported
20288 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20289 F:      drivers/clk/clk-hsdk-pll.c
20290
20291 SYNOPSYS ARC SDP clock driver
20292 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20293 S:      Supported
20294 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20295 F:      drivers/clk/axs10x/*
20296
20297 SYNOPSYS ARC SDP platform support
20298 M:      Alexey Brodkin <abrodkin@synopsys.com>
20299 S:      Supported
20300 F:      Documentation/devicetree/bindings/arc/axs10*
20301 F:      arch/arc/boot/dts/ax*
20302 F:      arch/arc/plat-axs10x
20303
20304 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20305 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20306 S:      Supported
20307 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20308 F:      drivers/reset/reset-axs10x.c
20309
20310 SYNOPSYS CREG GPIO DRIVER
20311 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20312 S:      Maintained
20313 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20314 F:      drivers/gpio/gpio-creg-snps.c
20315
20316 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20317 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20318 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20319 S:      Supported
20320 F:      drivers/tty/serial/8250/8250_dw.c
20321 F:      drivers/tty/serial/8250/8250_dwlib.*
20322 F:      drivers/tty/serial/8250/8250_lpss.c
20323
20324 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20325 M:      Hoan Tran <hoan@os.amperecomputing.com>
20326 M:      Serge Semin <fancer.lancer@gmail.com>
20327 L:      linux-gpio@vger.kernel.org
20328 S:      Maintained
20329 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20330 F:      drivers/gpio/gpio-dwapb.c
20331
20332 SYNOPSYS DESIGNWARE APB SSI DRIVER
20333 M:      Serge Semin <fancer.lancer@gmail.com>
20334 L:      linux-spi@vger.kernel.org
20335 S:      Supported
20336 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20337 F:      drivers/spi/spi-dw*
20338
20339 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20340 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20341 S:      Maintained
20342 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20343 F:      drivers/dma/dw-axi-dmac/
20344
20345 SYNOPSYS DESIGNWARE DMAC DRIVER
20346 M:      Viresh Kumar <vireshk@kernel.org>
20347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20348 S:      Maintained
20349 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20350 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20351 F:      drivers/dma/dw/
20352 F:      include/dt-bindings/dma/dw-dmac.h
20353 F:      include/linux/dma/dw.h
20354 F:      include/linux/platform_data/dma-dw.h
20355
20356 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20357 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20358 L:      netdev@vger.kernel.org
20359 S:      Supported
20360 F:      drivers/net/ethernet/synopsys/
20361
20362 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20363 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20364 L:      netdev@vger.kernel.org
20365 S:      Supported
20366 F:      drivers/net/pcs/pcs-xpcs.c
20367 F:      drivers/net/pcs/pcs-xpcs.h
20368 F:      include/linux/pcs/pcs-xpcs.h
20369
20370 SYNOPSYS DESIGNWARE I2C DRIVER
20371 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20372 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20373 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20374 R:      Jan Dabros <jsd@semihalf.com>
20375 L:      linux-i2c@vger.kernel.org
20376 S:      Supported
20377 F:      drivers/i2c/busses/i2c-designware-*
20378
20379 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20380 M:      Jaehoon Chung <jh80.chung@samsung.com>
20381 L:      linux-mmc@vger.kernel.org
20382 S:      Maintained
20383 F:      drivers/mmc/host/dw_mmc*
20384
20385 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20386 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20387 S:      Supported
20388 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20389 F:      drivers/reset/reset-hsdk.c
20390 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20391
20392 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20393 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20394 M:      Manjunath M B <manjumb@synopsys.com>
20395 L:      linux-mmc@vger.kernel.org
20396 S:      Maintained
20397 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20398
20399 SYSTEM CONFIGURATION (SYSCON)
20400 M:      Lee Jones <lee@kernel.org>
20401 M:      Arnd Bergmann <arnd@arndb.de>
20402 S:      Supported
20403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20404 F:      drivers/mfd/syscon.c
20405
20406 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20407 M:      Sudeep Holla <sudeep.holla@arm.com>
20408 R:      Cristian Marussi <cristian.marussi@arm.com>
20409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20410 S:      Maintained
20411 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20412 F:      drivers/clk/clk-sc[mp]i.c
20413 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20414 F:      drivers/firmware/arm_scmi/
20415 F:      drivers/firmware/arm_scpi.c
20416 F:      drivers/powercap/arm_scmi_powercap.c
20417 F:      drivers/regulator/scmi-regulator.c
20418 F:      drivers/reset/reset-scmi.c
20419 F:      include/linux/sc[mp]i_protocol.h
20420 F:      include/trace/events/scmi.h
20421 F:      include/uapi/linux/virtio_scmi.h
20422
20423 SYSTEM RESET/SHUTDOWN DRIVERS
20424 M:      Sebastian Reichel <sre@kernel.org>
20425 L:      linux-pm@vger.kernel.org
20426 S:      Maintained
20427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20428 F:      Documentation/devicetree/bindings/power/reset/
20429 F:      drivers/power/reset/
20430
20431 SYSTEM TRACE MODULE CLASS
20432 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20433 S:      Maintained
20434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20435 F:      Documentation/trace/stm.rst
20436 F:      drivers/hwtracing/stm/
20437 F:      include/linux/stm.h
20438 F:      include/uapi/linux/stm.h
20439
20440 SYSTEM76 ACPI DRIVER
20441 M:      Jeremy Soller <jeremy@system76.com>
20442 M:      System76 Product Development <productdev@system76.com>
20443 L:      platform-driver-x86@vger.kernel.org
20444 S:      Maintained
20445 F:      drivers/platform/x86/system76_acpi.c
20446
20447 SYSV FILESYSTEM
20448 S:      Orphan
20449 F:      Documentation/filesystems/sysv-fs.rst
20450 F:      fs/sysv/
20451 F:      include/linux/sysv_fs.h
20452
20453 TASKSTATS STATISTICS INTERFACE
20454 M:      Balbir Singh <bsingharora@gmail.com>
20455 S:      Maintained
20456 F:      Documentation/accounting/taskstats*
20457 F:      include/linux/taskstats*
20458 F:      kernel/taskstats.c
20459
20460 TC subsystem
20461 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20462 M:      Cong Wang <xiyou.wangcong@gmail.com>
20463 M:      Jiri Pirko <jiri@resnulli.us>
20464 L:      netdev@vger.kernel.org
20465 S:      Maintained
20466 F:      include/net/pkt_cls.h
20467 F:      include/net/pkt_sched.h
20468 F:      include/net/tc_act/
20469 F:      include/uapi/linux/pkt_cls.h
20470 F:      include/uapi/linux/pkt_sched.h
20471 F:      include/uapi/linux/tc_act/
20472 F:      include/uapi/linux/tc_ematch/
20473 F:      net/sched/
20474 F:      tools/testing/selftests/tc-testing
20475
20476 TC90522 MEDIA DRIVER
20477 M:      Akihiro Tsukada <tskd08@gmail.com>
20478 L:      linux-media@vger.kernel.org
20479 S:      Odd Fixes
20480 F:      drivers/media/dvb-frontends/tc90522*
20481
20482 TCP LOW PRIORITY MODULE
20483 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20484 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20485 S:      Maintained
20486 W:      http://tcp-lp-mod.sourceforge.net/
20487 F:      net/ipv4/tcp_lp.c
20488
20489 TDA10071 MEDIA DRIVER
20490 M:      Antti Palosaari <crope@iki.fi>
20491 L:      linux-media@vger.kernel.org
20492 S:      Maintained
20493 W:      https://linuxtv.org
20494 W:      http://palosaari.fi/linux/
20495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20496 T:      git git://linuxtv.org/anttip/media_tree.git
20497 F:      drivers/media/dvb-frontends/tda10071*
20498
20499 TDA18212 MEDIA DRIVER
20500 M:      Antti Palosaari <crope@iki.fi>
20501 L:      linux-media@vger.kernel.org
20502 S:      Maintained
20503 W:      https://linuxtv.org
20504 W:      http://palosaari.fi/linux/
20505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20506 T:      git git://linuxtv.org/anttip/media_tree.git
20507 F:      drivers/media/tuners/tda18212*
20508
20509 TDA18218 MEDIA DRIVER
20510 M:      Antti Palosaari <crope@iki.fi>
20511 L:      linux-media@vger.kernel.org
20512 S:      Maintained
20513 W:      https://linuxtv.org
20514 W:      http://palosaari.fi/linux/
20515 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20516 T:      git git://linuxtv.org/anttip/media_tree.git
20517 F:      drivers/media/tuners/tda18218*
20518
20519 TDA18250 MEDIA DRIVER
20520 M:      Olli Salonen <olli.salonen@iki.fi>
20521 L:      linux-media@vger.kernel.org
20522 S:      Maintained
20523 W:      https://linuxtv.org
20524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20525 T:      git git://linuxtv.org/media_tree.git
20526 F:      drivers/media/tuners/tda18250*
20527
20528 TDA18271 MEDIA DRIVER
20529 M:      Michael Krufky <mkrufky@linuxtv.org>
20530 L:      linux-media@vger.kernel.org
20531 S:      Maintained
20532 W:      https://linuxtv.org
20533 W:      http://github.com/mkrufky
20534 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20535 T:      git git://linuxtv.org/mkrufky/tuners.git
20536 F:      drivers/media/tuners/tda18271*
20537
20538 TDA1997x MEDIA DRIVER
20539 M:      Tim Harvey <tharvey@gateworks.com>
20540 L:      linux-media@vger.kernel.org
20541 S:      Maintained
20542 W:      https://linuxtv.org
20543 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20544 F:      drivers/media/i2c/tda1997x.*
20545
20546 TDA827x MEDIA DRIVER
20547 M:      Michael Krufky <mkrufky@linuxtv.org>
20548 L:      linux-media@vger.kernel.org
20549 S:      Maintained
20550 W:      https://linuxtv.org
20551 W:      http://github.com/mkrufky
20552 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20553 T:      git git://linuxtv.org/mkrufky/tuners.git
20554 F:      drivers/media/tuners/tda8290.*
20555
20556 TDA8290 MEDIA DRIVER
20557 M:      Michael Krufky <mkrufky@linuxtv.org>
20558 L:      linux-media@vger.kernel.org
20559 S:      Maintained
20560 W:      https://linuxtv.org
20561 W:      http://github.com/mkrufky
20562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20563 T:      git git://linuxtv.org/mkrufky/tuners.git
20564 F:      drivers/media/tuners/tda8290.*
20565
20566 TDA9840 MEDIA DRIVER
20567 M:      Hans Verkuil <hverkuil@xs4all.nl>
20568 L:      linux-media@vger.kernel.org
20569 S:      Maintained
20570 W:      https://linuxtv.org
20571 T:      git git://linuxtv.org/media_tree.git
20572 F:      drivers/media/i2c/tda9840*
20573
20574 TEA5761 TUNER DRIVER
20575 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20576 L:      linux-media@vger.kernel.org
20577 S:      Odd fixes
20578 W:      https://linuxtv.org
20579 T:      git git://linuxtv.org/media_tree.git
20580 F:      drivers/media/tuners/tea5761.*
20581
20582 TEA5767 TUNER DRIVER
20583 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20584 L:      linux-media@vger.kernel.org
20585 S:      Maintained
20586 W:      https://linuxtv.org
20587 T:      git git://linuxtv.org/media_tree.git
20588 F:      drivers/media/tuners/tea5767.*
20589
20590 TEA6415C MEDIA DRIVER
20591 M:      Hans Verkuil <hverkuil@xs4all.nl>
20592 L:      linux-media@vger.kernel.org
20593 S:      Maintained
20594 W:      https://linuxtv.org
20595 T:      git git://linuxtv.org/media_tree.git
20596 F:      drivers/media/i2c/tea6415c*
20597
20598 TEA6420 MEDIA DRIVER
20599 M:      Hans Verkuil <hverkuil@xs4all.nl>
20600 L:      linux-media@vger.kernel.org
20601 S:      Maintained
20602 W:      https://linuxtv.org
20603 T:      git git://linuxtv.org/media_tree.git
20604 F:      drivers/media/i2c/tea6420*
20605
20606 TEAM DRIVER
20607 M:      Jiri Pirko <jiri@resnulli.us>
20608 L:      netdev@vger.kernel.org
20609 S:      Supported
20610 F:      drivers/net/team/
20611 F:      include/linux/if_team.h
20612 F:      include/uapi/linux/if_team.h
20613 F:      tools/testing/selftests/drivers/net/team/
20614
20615 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20616 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20617 S:      Maintained
20618 F:      arch/x86/platform/ts5500/
20619
20620 TECHNOTREND USB IR RECEIVER
20621 M:      Sean Young <sean@mess.org>
20622 L:      linux-media@vger.kernel.org
20623 S:      Maintained
20624 F:      drivers/media/rc/ttusbir.c
20625
20626 TECHWELL TW9910 VIDEO DECODER
20627 L:      linux-media@vger.kernel.org
20628 S:      Orphan
20629 F:      drivers/media/i2c/tw9910.c
20630 F:      include/media/i2c/tw9910.h
20631
20632 TEE SUBSYSTEM
20633 M:      Jens Wiklander <jens.wiklander@linaro.org>
20634 R:      Sumit Garg <sumit.garg@linaro.org>
20635 L:      op-tee@lists.trustedfirmware.org
20636 S:      Maintained
20637 F:      Documentation/staging/tee.rst
20638 F:      drivers/tee/
20639 F:      include/linux/tee_drv.h
20640 F:      include/uapi/linux/tee.h
20641
20642 TEGRA ARCHITECTURE SUPPORT
20643 M:      Thierry Reding <thierry.reding@gmail.com>
20644 M:      Jonathan Hunter <jonathanh@nvidia.com>
20645 L:      linux-tegra@vger.kernel.org
20646 S:      Supported
20647 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20649 N:      [^a-z]tegra
20650
20651 TEGRA CLOCK DRIVER
20652 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20653 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20654 S:      Supported
20655 F:      drivers/clk/tegra/
20656
20657 TEGRA DMA DRIVERS
20658 M:      Laxman Dewangan <ldewangan@nvidia.com>
20659 M:      Jon Hunter <jonathanh@nvidia.com>
20660 S:      Supported
20661 F:      drivers/dma/tegra*
20662
20663 TEGRA I2C DRIVER
20664 M:      Laxman Dewangan <ldewangan@nvidia.com>
20665 R:      Dmitry Osipenko <digetx@gmail.com>
20666 S:      Supported
20667 F:      drivers/i2c/busses/i2c-tegra.c
20668
20669 TEGRA IOMMU DRIVERS
20670 M:      Thierry Reding <thierry.reding@gmail.com>
20671 R:      Krishna Reddy <vdumpa@nvidia.com>
20672 L:      linux-tegra@vger.kernel.org
20673 S:      Supported
20674 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20675 F:      drivers/iommu/tegra*
20676
20677 TEGRA KBC DRIVER
20678 M:      Laxman Dewangan <ldewangan@nvidia.com>
20679 S:      Supported
20680 F:      drivers/input/keyboard/tegra-kbc.c
20681
20682 TEGRA NAND DRIVER
20683 M:      Stefan Agner <stefan@agner.ch>
20684 M:      Lucas Stach <dev@lynxeye.de>
20685 S:      Maintained
20686 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20687 F:      drivers/mtd/nand/raw/tegra_nand.c
20688
20689 TEGRA PWM DRIVER
20690 M:      Thierry Reding <thierry.reding@gmail.com>
20691 S:      Supported
20692 F:      drivers/pwm/pwm-tegra.c
20693
20694 TEGRA SERIAL DRIVER
20695 M:      Laxman Dewangan <ldewangan@nvidia.com>
20696 S:      Supported
20697 F:      drivers/tty/serial/serial-tegra.c
20698
20699 TEGRA SPI DRIVER
20700 M:      Laxman Dewangan <ldewangan@nvidia.com>
20701 S:      Supported
20702 F:      drivers/spi/spi-tegra*
20703
20704 TEGRA QUAD SPI DRIVER
20705 M:      Thierry Reding <thierry.reding@gmail.com>
20706 M:      Jonathan Hunter <jonathanh@nvidia.com>
20707 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20708 L:      linux-tegra@vger.kernel.org
20709 S:      Maintained
20710 F:      drivers/spi/spi-tegra210-quad.c
20711
20712 TEGRA VIDEO DRIVER
20713 M:      Thierry Reding <thierry.reding@gmail.com>
20714 M:      Jonathan Hunter <jonathanh@nvidia.com>
20715 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20716 L:      linux-media@vger.kernel.org
20717 L:      linux-tegra@vger.kernel.org
20718 S:      Maintained
20719 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20720 F:      drivers/staging/media/tegra-video/
20721
20722 TEGRA XUSB PADCTL DRIVER
20723 M:      JC Kuo <jckuo@nvidia.com>
20724 S:      Supported
20725 F:      drivers/phy/tegra/xusb*
20726
20727 TEHUTI ETHERNET DRIVER
20728 M:      Andy Gospodarek <andy@greyhouse.net>
20729 L:      netdev@vger.kernel.org
20730 S:      Supported
20731 F:      drivers/net/ethernet/tehuti/*
20732
20733 TELECOM CLOCK DRIVER FOR MCPL0010
20734 M:      Mark Gross <markgross@kernel.org>
20735 S:      Supported
20736 F:      drivers/char/tlclk.c
20737
20738 TEMPO SEMICONDUCTOR DRIVERS
20739 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20740 S:      Maintained
20741 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20742 F:      sound/soc/codecs/tscs*.c
20743 F:      sound/soc/codecs/tscs*.h
20744
20745 TENSILICA XTENSA PORT (xtensa)
20746 M:      Chris Zankel <chris@zankel.net>
20747 M:      Max Filippov <jcmvbkbc@gmail.com>
20748 S:      Maintained
20749 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20750 F:      arch/xtensa/
20751 F:      drivers/irqchip/irq-xtensa-*
20752
20753 TEXAS INSTRUMENTS ASoC DRIVERS
20754 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20755 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20756 S:      Maintained
20757 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20758 F:      sound/soc/ti/
20759
20760 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20761 M:      Ricardo Ribalda <ribalda@kernel.org>
20762 L:      linux-iio@vger.kernel.org
20763 S:      Supported
20764 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20765 F:      drivers/iio/dac/ti-dac7612.c
20766
20767 TEXAS INSTRUMENTS DMA DRIVERS
20768 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20769 L:      dmaengine@vger.kernel.org
20770 S:      Maintained
20771 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20772 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20773 F:      Documentation/devicetree/bindings/dma/ti/
20774 F:      drivers/dma/ti/
20775 X:      drivers/dma/ti/cppi41.c
20776 F:      include/linux/dma/k3-udma-glue.h
20777 F:      include/linux/dma/ti-cppi5.h
20778 F:      include/linux/dma/k3-psil.h
20779
20780 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20781 M:      Nishanth Menon <nm@ti.com>
20782 M:      Tero Kristo <kristo@kernel.org>
20783 M:      Santosh Shilimkar <ssantosh@kernel.org>
20784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20785 S:      Maintained
20786 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20787 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20788 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20789 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20790 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20791 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20792 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20793 F:      drivers/clk/keystone/sci-clk.c
20794 F:      drivers/firmware/ti_sci*
20795 F:      drivers/irqchip/irq-ti-sci-inta.c
20796 F:      drivers/irqchip/irq-ti-sci-intr.c
20797 F:      drivers/reset/reset-ti-sci.c
20798 F:      drivers/soc/ti/ti_sci_inta_msi.c
20799 F:      drivers/soc/ti/ti_sci_pm_domains.c
20800 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20801 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20802 F:      include/linux/soc/ti/ti_sci_protocol.h
20803
20804 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20805 M:      Robert Marko <robert.marko@sartura.hr>
20806 M:      Luka Perkov <luka.perkov@sartura.hr>
20807 L:      linux-hwmon@vger.kernel.org
20808 S:      Maintained
20809 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20810 F:      Documentation/hwmon/tps23861.rst
20811 F:      drivers/hwmon/tps23861.c
20812
20813 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20814 M:      Puranjay Mohan <puranjay12@gmail.com>
20815 L:      linux-iio@vger.kernel.org
20816 S:      Supported
20817 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20818 F:      drivers/iio/temperature/tmp117.c
20819
20820 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20821 M:      Hans Verkuil <hverkuil@xs4all.nl>
20822 L:      linux-media@vger.kernel.org
20823 S:      Maintained
20824 W:      https://linuxtv.org
20825 T:      git git://linuxtv.org/media_tree.git
20826 F:      drivers/media/radio/radio-raremono.c
20827
20828 THERMAL
20829 M:      Rafael J. Wysocki <rafael@kernel.org>
20830 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20831 R:      Amit Kucheria <amitk@kernel.org>
20832 R:      Zhang Rui <rui.zhang@intel.com>
20833 L:      linux-pm@vger.kernel.org
20834 S:      Supported
20835 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20837 F:      Documentation/ABI/testing/sysfs-class-thermal
20838 F:      Documentation/admin-guide/thermal/
20839 F:      Documentation/devicetree/bindings/thermal/
20840 F:      Documentation/driver-api/thermal/
20841 F:      drivers/thermal/
20842 F:      include/dt-bindings/thermal/
20843 F:      include/linux/cpu_cooling.h
20844 F:      include/linux/thermal.h
20845 F:      include/uapi/linux/thermal.h
20846 F:      tools/lib/thermal/
20847 F:      tools/thermal/
20848
20849 THERMAL DRIVER FOR AMLOGIC SOCS
20850 M:      Guillaume La Roque <glaroque@baylibre.com>
20851 L:      linux-pm@vger.kernel.org
20852 L:      linux-amlogic@lists.infradead.org
20853 S:      Supported
20854 W:      http://linux-meson.com/
20855 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20856 F:      drivers/thermal/amlogic_thermal.c
20857
20858 THERMAL/CPU_COOLING
20859 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20860 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20861 M:      Viresh Kumar <viresh.kumar@linaro.org>
20862 R:      Lukasz Luba <lukasz.luba@arm.com>
20863 L:      linux-pm@vger.kernel.org
20864 S:      Supported
20865 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20866 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20867 F:      drivers/thermal/cpufreq_cooling.c
20868 F:      drivers/thermal/cpuidle_cooling.c
20869 F:      include/linux/cpu_cooling.h
20870
20871 THERMAL/POWER_ALLOCATOR
20872 M:      Lukasz Luba <lukasz.luba@arm.com>
20873 L:      linux-pm@vger.kernel.org
20874 S:      Maintained
20875 F:      Documentation/driver-api/thermal/power_allocator.rst
20876 F:      drivers/thermal/gov_power_allocator.c
20877 F:      drivers/thermal/thermal_trace_ipa.h
20878
20879 THINKPAD ACPI EXTRAS DRIVER
20880 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20881 L:      ibm-acpi-devel@lists.sourceforge.net
20882 L:      platform-driver-x86@vger.kernel.org
20883 S:      Maintained
20884 W:      http://ibm-acpi.sourceforge.net
20885 W:      http://thinkwiki.org/wiki/Ibm-acpi
20886 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20887 F:      drivers/platform/x86/thinkpad_acpi.c
20888
20889 THINKPAD LMI DRIVER
20890 M:      Mark Pearson <markpearson@lenovo.com>
20891 L:      platform-driver-x86@vger.kernel.org
20892 S:      Maintained
20893 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20894 F:      drivers/platform/x86/think-lmi.?
20895
20896 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20897 M:      Isaac Hazan <isaac.hazan@intel.com>
20898 L:      linux-usb@vger.kernel.org
20899 S:      Maintained
20900 F:      drivers/thunderbolt/dma_test.c
20901
20902 THUNDERBOLT DRIVER
20903 M:      Andreas Noever <andreas.noever@gmail.com>
20904 M:      Michael Jamet <michael.jamet@intel.com>
20905 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20906 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20907 L:      linux-usb@vger.kernel.org
20908 S:      Maintained
20909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20910 F:      Documentation/admin-guide/thunderbolt.rst
20911 F:      drivers/thunderbolt/
20912 F:      include/linux/thunderbolt.h
20913
20914 THUNDERBOLT NETWORK DRIVER
20915 M:      Michael Jamet <michael.jamet@intel.com>
20916 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20917 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20918 L:      netdev@vger.kernel.org
20919 S:      Maintained
20920 F:      drivers/net/thunderbolt/
20921
20922 THUNDERX GPIO DRIVER
20923 M:      Robert Richter <rric@kernel.org>
20924 S:      Odd Fixes
20925 F:      drivers/gpio/gpio-thunderx.c
20926
20927 TI ADS7924 ADC DRIVER
20928 M:      Hugo Villeneuve <hvilleneuve@dimonoff.com>
20929 L:      linux-iio@vger.kernel.org
20930 S:      Supported
20931 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
20932 F:      drivers/iio/adc/ti-ads7924.c
20933
20934 TI AM437X VPFE DRIVER
20935 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20936 L:      linux-media@vger.kernel.org
20937 S:      Maintained
20938 W:      https://linuxtv.org
20939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20940 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20941 F:      drivers/media/platform/ti/am437x/
20942
20943 TI BANDGAP AND THERMAL DRIVER
20944 M:      Eduardo Valentin <edubezval@gmail.com>
20945 M:      Keerthy <j-keerthy@ti.com>
20946 L:      linux-pm@vger.kernel.org
20947 L:      linux-omap@vger.kernel.org
20948 S:      Maintained
20949 F:      drivers/thermal/ti-soc-thermal/
20950
20951 TI BQ27XXX POWER SUPPLY DRIVER
20952 F:      drivers/power/supply/bq27xxx_battery.c
20953 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20954 F:      include/linux/power/bq27xxx_battery.h
20955
20956 TI CDCE706 CLOCK DRIVER
20957 M:      Max Filippov <jcmvbkbc@gmail.com>
20958 S:      Maintained
20959 F:      drivers/clk/clk-cdce706.c
20960
20961 TI CLOCK DRIVER
20962 M:      Tero Kristo <kristo@kernel.org>
20963 L:      linux-omap@vger.kernel.org
20964 S:      Odd Fixes
20965 F:      drivers/clk/ti/
20966 F:      include/linux/clk/ti.h
20967
20968 TI DAVINCI MACHINE SUPPORT
20969 M:      Bartosz Golaszewski <brgl@bgdev.pl>
20970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20971 S:      Maintained
20972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
20973 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20974 F:      arch/arm/boot/dts/da850*
20975 F:      arch/arm/mach-davinci/
20976 F:      drivers/i2c/busses/i2c-davinci.c
20977
20978 TI DAVINCI SERIES CLOCK DRIVER
20979 M:      David Lechner <david@lechnology.com>
20980 R:      Sekhar Nori <nsekhar@ti.com>
20981 S:      Maintained
20982 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20983 F:      drivers/clk/davinci/
20984 F:      include/linux/clk/davinci.h
20985
20986 TI DAVINCI SERIES GPIO DRIVER
20987 M:      Keerthy <j-keerthy@ti.com>
20988 L:      linux-gpio@vger.kernel.org
20989 S:      Maintained
20990 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20991 F:      drivers/gpio/gpio-davinci.c
20992
20993 TI DAVINCI SERIES MEDIA DRIVER
20994 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20995 L:      linux-media@vger.kernel.org
20996 S:      Maintained
20997 W:      https://linuxtv.org
20998 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20999 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
21000 F:      drivers/media/platform/ti/davinci/
21001 F:      include/media/davinci/
21002
21003 TI ENHANCED CAPTURE (eCAP) DRIVER
21004 M:      Vignesh Raghavendra <vigneshr@ti.com>
21005 R:      Julien Panis <jpanis@baylibre.com>
21006 L:      linux-iio@vger.kernel.org
21007 L:      linux-omap@vger.kernel.org
21008 S:      Maintained
21009 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
21010 F:      drivers/counter/ti-ecap-capture.c
21011
21012 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
21013 R:      David Lechner <david@lechnology.com>
21014 L:      linux-iio@vger.kernel.org
21015 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
21016 F:      drivers/counter/ti-eqep.c
21017
21018 TI ETHERNET SWITCH DRIVER (CPSW)
21019 R:      Grygorii Strashko <grygorii.strashko@ti.com>
21020 L:      linux-omap@vger.kernel.org
21021 L:      netdev@vger.kernel.org
21022 S:      Maintained
21023 F:      drivers/net/ethernet/ti/cpsw*
21024 F:      drivers/net/ethernet/ti/davinci*
21025
21026 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
21027 M:      Alex Dubov <oakad@yahoo.com>
21028 S:      Maintained
21029 W:      http://tifmxx.berlios.de/
21030 F:      drivers/memstick/host/tifm_ms.c
21031 F:      drivers/misc/tifm*
21032 F:      drivers/mmc/host/tifm_sd.c
21033 F:      include/linux/tifm.h
21034
21035 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
21036 M:      Nishanth Menon <nm@ti.com>
21037 M:      Santosh Shilimkar <ssantosh@kernel.org>
21038 L:      linux-kernel@vger.kernel.org
21039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21040 S:      Maintained
21041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
21042 F:      drivers/soc/ti/*
21043
21044 TI LM49xxx FAMILY ASoC CODEC DRIVERS
21045 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
21046 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
21047 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21048 S:      Maintained
21049 F:      sound/soc/codecs/isabelle*
21050 F:      sound/soc/codecs/lm49453*
21051
21052 TI LMP92064 ADC DRIVER
21053 M:      Leonard Göhrs <l.goehrs@pengutronix.de>
21054 R:      kernel@pengutronix.de
21055 L:      linux-iio@vger.kernel.org
21056 S:      Maintained
21057 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
21058 F:      drivers/iio/adc/ti-lmp92064.c
21059
21060 TI PCM3060 ASoC CODEC DRIVER
21061 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
21062 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21063 S:      Maintained
21064 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
21065 F:      sound/soc/codecs/pcm3060*
21066
21067 TI TAS571X FAMILY ASoC CODEC DRIVER
21068 M:      Kevin Cernekee <cernekee@chromium.org>
21069 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21070 S:      Odd Fixes
21071 F:      sound/soc/codecs/tas571x*
21072
21073 TI TMAG5273 MAGNETOMETER DRIVER
21074 M:      Gerald Loacker <gerald.loacker@wolfvision.net>
21075 L:      linux-iio@vger.kernel.org
21076 S:      Maintained
21077 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
21078 F:      drivers/iio/magnetometer/tmag5273.c
21079
21080 TI TRF7970A NFC DRIVER
21081 M:      Mark Greer <mgreer@animalcreek.com>
21082 L:      linux-wireless@vger.kernel.org
21083 S:      Supported
21084 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
21085 F:      drivers/nfc/trf7970a.c
21086
21087 TI TSC2046 ADC DRIVER
21088 M:      Oleksij Rempel <o.rempel@pengutronix.de>
21089 R:      kernel@pengutronix.de
21090 L:      linux-iio@vger.kernel.org
21091 S:      Maintained
21092 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
21093 F:      drivers/iio/adc/ti-tsc2046.c
21094
21095 TI TWL4030 SERIES SOC CODEC DRIVER
21096 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
21097 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21098 S:      Maintained
21099 F:      sound/soc/codecs/twl4030*
21100
21101 TI VPE/CAL DRIVERS
21102 M:      Benoit Parrot <bparrot@ti.com>
21103 L:      linux-media@vger.kernel.org
21104 S:      Maintained
21105 W:      http://linuxtv.org/
21106 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21107 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
21108 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
21109 F:      drivers/media/platform/ti/cal/
21110 F:      drivers/media/platform/ti/vpe/
21111
21112 TI WILINK WIRELESS DRIVERS
21113 L:      linux-wireless@vger.kernel.org
21114 S:      Orphan
21115 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21116 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21118 F:      drivers/net/wireless/ti/
21119
21120 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21121 M:      John Stultz <jstultz@google.com>
21122 M:      Thomas Gleixner <tglx@linutronix.de>
21123 R:      Stephen Boyd <sboyd@kernel.org>
21124 L:      linux-kernel@vger.kernel.org
21125 S:      Supported
21126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21127 F:      include/linux/clocksource.h
21128 F:      include/linux/time.h
21129 F:      include/linux/timex.h
21130 F:      include/uapi/linux/time.h
21131 F:      include/uapi/linux/timex.h
21132 F:      kernel/time/alarmtimer.c
21133 F:      kernel/time/clocksource.c
21134 F:      kernel/time/ntp.c
21135 F:      kernel/time/time*.c
21136 F:      tools/testing/selftests/timers/
21137
21138 TIPC NETWORK LAYER
21139 M:      Jon Maloy <jmaloy@redhat.com>
21140 M:      Ying Xue <ying.xue@windriver.com>
21141 L:      netdev@vger.kernel.org (core kernel code)
21142 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
21143 S:      Maintained
21144 W:      http://tipc.sourceforge.net/
21145 F:      include/uapi/linux/tipc*.h
21146 F:      net/tipc/
21147
21148 TLAN NETWORK DRIVER
21149 M:      Samuel Chessman <chessman@tux.org>
21150 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
21151 S:      Maintained
21152 W:      http://sourceforge.net/projects/tlan/
21153 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21154 F:      drivers/net/ethernet/ti/tlan.*
21155
21156 TMIO/SDHI MMC DRIVER
21157 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
21158 L:      linux-mmc@vger.kernel.org
21159 L:      linux-renesas-soc@vger.kernel.org
21160 S:      Supported
21161 F:      drivers/mmc/host/renesas_sdhi*
21162 F:      drivers/mmc/host/tmio_mmc*
21163 F:      include/linux/mfd/tmio.h
21164
21165 TMP401 HARDWARE MONITOR DRIVER
21166 M:      Guenter Roeck <linux@roeck-us.net>
21167 L:      linux-hwmon@vger.kernel.org
21168 S:      Maintained
21169 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21170 F:      Documentation/hwmon/tmp401.rst
21171 F:      drivers/hwmon/tmp401.c
21172
21173 TMP464 HARDWARE MONITOR DRIVER
21174 M:      Guenter Roeck <linux@roeck-us.net>
21175 L:      linux-hwmon@vger.kernel.org
21176 S:      Maintained
21177 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21178 F:      Documentation/hwmon/tmp464.rst
21179 F:      drivers/hwmon/tmp464.c
21180
21181 TMP513 HARDWARE MONITOR DRIVER
21182 M:      Eric Tremblay <etremblay@distech-controls.com>
21183 L:      linux-hwmon@vger.kernel.org
21184 S:      Maintained
21185 F:      Documentation/hwmon/tmp513.rst
21186 F:      drivers/hwmon/tmp513.c
21187
21188 TMPFS (SHMEM FILESYSTEM)
21189 M:      Hugh Dickins <hughd@google.com>
21190 L:      linux-mm@kvack.org
21191 S:      Maintained
21192 F:      include/linux/shmem_fs.h
21193 F:      mm/shmem.c
21194
21195 TOMOYO SECURITY MODULE
21196 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
21197 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
21198 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
21199 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
21200 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
21201 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
21202 S:      Maintained
21203 W:      https://tomoyo.osdn.jp/
21204 F:      security/tomoyo/
21205
21206 TOPSTAR LAPTOP EXTRAS DRIVER
21207 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
21208 L:      platform-driver-x86@vger.kernel.org
21209 S:      Maintained
21210 F:      drivers/platform/x86/topstar-laptop.c
21211
21212 TORTURE-TEST MODULES
21213 M:      Davidlohr Bueso <dave@stgolabs.net>
21214 M:      "Paul E. McKenney" <paulmck@kernel.org>
21215 M:      Josh Triplett <josh@joshtriplett.org>
21216 L:      linux-kernel@vger.kernel.org
21217 S:      Supported
21218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21219 F:      Documentation/RCU/torture.rst
21220 F:      kernel/locking/locktorture.c
21221 F:      kernel/rcu/rcuscale.c
21222 F:      kernel/rcu/rcutorture.c
21223 F:      kernel/rcu/refscale.c
21224 F:      kernel/torture.c
21225
21226 TOSHIBA ACPI EXTRAS DRIVER
21227 M:      Azael Avalos <coproscefalo@gmail.com>
21228 L:      platform-driver-x86@vger.kernel.org
21229 S:      Maintained
21230 F:      drivers/platform/x86/toshiba_acpi.c
21231
21232 TOSHIBA BLUETOOTH DRIVER
21233 M:      Azael Avalos <coproscefalo@gmail.com>
21234 L:      platform-driver-x86@vger.kernel.org
21235 S:      Maintained
21236 F:      drivers/platform/x86/toshiba_bluetooth.c
21237
21238 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21239 M:      Azael Avalos <coproscefalo@gmail.com>
21240 L:      platform-driver-x86@vger.kernel.org
21241 S:      Maintained
21242 F:      drivers/platform/x86/toshiba_haps.c
21243
21244 TOSHIBA SMM DRIVER
21245 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21246 S:      Maintained
21247 W:      http://www.buzzard.org.uk/toshiba/
21248 F:      drivers/char/toshiba.c
21249 F:      include/linux/toshiba.h
21250 F:      include/uapi/linux/toshiba.h
21251
21252 TOSHIBA TC358743 DRIVER
21253 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21254 L:      linux-media@vger.kernel.org
21255 S:      Maintained
21256 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21257 F:      drivers/media/i2c/tc358743*
21258 F:      include/media/i2c/tc358743.h
21259
21260 TOSHIBA WMI HOTKEYS DRIVER
21261 M:      Azael Avalos <coproscefalo@gmail.com>
21262 L:      platform-driver-x86@vger.kernel.org
21263 S:      Maintained
21264 F:      drivers/platform/x86/toshiba-wmi.c
21265
21266 TPM DEVICE DRIVER
21267 M:      Peter Huewe <peterhuewe@gmx.de>
21268 M:      Jarkko Sakkinen <jarkko@kernel.org>
21269 R:      Jason Gunthorpe <jgg@ziepe.ca>
21270 L:      linux-integrity@vger.kernel.org
21271 S:      Maintained
21272 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21273 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21275 F:      drivers/char/tpm/
21276
21277 TPS546D24 DRIVER
21278 M:      Duke Du <dukedu83@gmail.com>
21279 L:      linux-hwmon@vger.kernel.org
21280 S:      Maintained
21281 F:      Documentation/hwmon/tps546d24.rst
21282 F:      drivers/hwmon/pmbus/tps546d24.c
21283
21284 TRACING
21285 M:      Steven Rostedt <rostedt@goodmis.org>
21286 M:      Masami Hiramatsu <mhiramat@kernel.org>
21287 L:      linux-kernel@vger.kernel.org
21288 L:      linux-trace-kernel@vger.kernel.org
21289 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21290 S:      Maintained
21291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21292 F:      Documentation/trace/*
21293 F:      fs/tracefs/
21294 F:      include/linux/trace*.h
21295 F:      include/trace/
21296 F:      kernel/trace/
21297 F:      scripts/tracing/
21298 F:      tools/testing/selftests/ftrace/
21299
21300 TRACING MMIO ACCESSES (MMIOTRACE)
21301 M:      Steven Rostedt <rostedt@goodmis.org>
21302 M:      Masami Hiramatsu <mhiramat@kernel.org>
21303 R:      Karol Herbst <karolherbst@gmail.com>
21304 R:      Pekka Paalanen <ppaalanen@gmail.com>
21305 L:      linux-kernel@vger.kernel.org
21306 L:      nouveau@lists.freedesktop.org
21307 S:      Maintained
21308 F:      arch/x86/mm/kmmio.c
21309 F:      arch/x86/mm/mmio-mod.c
21310 F:      arch/x86/mm/testmmiotrace.c
21311 F:      include/linux/mmiotrace.h
21312 F:      kernel/trace/trace_mmiotrace.c
21313
21314 TRACING OS NOISE / LATENCY TRACERS
21315 M:      Steven Rostedt <rostedt@goodmis.org>
21316 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21317 S:      Maintained
21318 F:      kernel/trace/trace_osnoise.c
21319 F:      include/trace/events/osnoise.h
21320 F:      kernel/trace/trace_hwlat.c
21321 F:      kernel/trace/trace_irqsoff.c
21322 F:      kernel/trace/trace_sched_wakeup.c
21323 F:      Documentation/trace/osnoise-tracer.rst
21324 F:      Documentation/trace/timerlat-tracer.rst
21325 F:      Documentation/trace/hwlat_detector.rst
21326 F:      arch/*/kernel/trace.c
21327
21328 Real-time Linux Analysis (RTLA) tools
21329 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21330 M:      Steven Rostedt <rostedt@goodmis.org>
21331 L:      linux-trace-devel@vger.kernel.org
21332 S:      Maintained
21333 F:      Documentation/tools/rtla/
21334 F:      tools/tracing/rtla/
21335
21336 TECHNICAL ADVISORY BOARD PROCESS DOCS
21337 M:      "Theodore Ts'o" <tytso@mit.edu>
21338 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21339 L:      tech-board-discuss@lists.linux-foundation.org
21340 S:      Maintained
21341 F:      Documentation/process/researcher-guidelines.rst
21342 F:      Documentation/process/contribution-maturity-model.rst
21343
21344 TRADITIONAL CHINESE DOCUMENTATION
21345 M:      Hu Haowen <src.res@email.cn>
21346 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21347 S:      Maintained
21348 W:      https://github.com/srcres258/linux-doc
21349 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21350 F:      Documentation/translations/zh_TW/
21351
21352 TTY LAYER
21353 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21354 M:      Jiri Slaby <jirislaby@kernel.org>
21355 S:      Supported
21356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21357 F:      Documentation/driver-api/serial/
21358 F:      drivers/tty/
21359 F:      drivers/tty/serial/serial_core.c
21360 F:      include/linux/selection.h
21361 F:      include/linux/serial.h
21362 F:      include/linux/serial_core.h
21363 F:      include/linux/sysrq.h
21364 F:      include/linux/tty*.h
21365 F:      include/linux/vt.h
21366 F:      include/linux/vt_*.h
21367 F:      include/uapi/linux/serial.h
21368 F:      include/uapi/linux/serial_core.h
21369 F:      include/uapi/linux/tty.h
21370
21371 TUA9001 MEDIA DRIVER
21372 M:      Antti Palosaari <crope@iki.fi>
21373 L:      linux-media@vger.kernel.org
21374 S:      Maintained
21375 W:      https://linuxtv.org
21376 W:      http://palosaari.fi/linux/
21377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21378 T:      git git://linuxtv.org/anttip/media_tree.git
21379 F:      drivers/media/tuners/tua9001*
21380
21381 TULIP NETWORK DRIVERS
21382 L:      netdev@vger.kernel.org
21383 L:      linux-parisc@vger.kernel.org
21384 S:      Orphan
21385 F:      drivers/net/ethernet/dec/tulip/
21386
21387 TUN/TAP driver
21388 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21389 S:      Maintained
21390 W:      http://vtun.sourceforge.net/tun
21391 F:      Documentation/networking/tuntap.rst
21392 F:      arch/um/os-Linux/drivers/
21393
21394 TURBOCHANNEL SUBSYSTEM
21395 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21396 M:      Ralf Baechle <ralf@linux-mips.org>
21397 L:      linux-mips@vger.kernel.org
21398 S:      Maintained
21399 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21400 F:      drivers/tc/
21401 F:      include/linux/tc.h
21402
21403 TURBOSTAT UTILITY
21404 M:      "Len Brown" <lenb@kernel.org>
21405 L:      linux-pm@vger.kernel.org
21406 S:      Supported
21407 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21408 B:      https://bugzilla.kernel.org
21409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21410 F:      tools/power/x86/turbostat/
21411
21412 TW5864 VIDEO4LINUX DRIVER
21413 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21414 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21415 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21416 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21417 L:      linux-media@vger.kernel.org
21418 S:      Supported
21419 F:      drivers/media/pci/tw5864/
21420
21421 TW68 VIDEO4LINUX DRIVER
21422 M:      Hans Verkuil <hverkuil@xs4all.nl>
21423 L:      linux-media@vger.kernel.org
21424 S:      Odd Fixes
21425 W:      https://linuxtv.org
21426 T:      git git://linuxtv.org/media_tree.git
21427 F:      drivers/media/pci/tw68/
21428
21429 TW686X VIDEO4LINUX DRIVER
21430 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21431 L:      linux-media@vger.kernel.org
21432 S:      Maintained
21433 W:      http://linuxtv.org
21434 T:      git git://linuxtv.org/media_tree.git
21435 F:      drivers/media/pci/tw686x/
21436
21437 U-BOOT ENVIRONMENT VARIABLES
21438 M:      Rafał Miłecki <rafal@milecki.pl>
21439 S:      Maintained
21440 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21441 F:      drivers/nvmem/u-boot-env.c
21442
21443 UACCE ACCELERATOR FRAMEWORK
21444 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21445 M:      Zhou Wang <wangzhou1@hisilicon.com>
21446 L:      linux-accelerators@lists.ozlabs.org
21447 L:      linux-kernel@vger.kernel.org
21448 S:      Maintained
21449 F:      Documentation/ABI/testing/sysfs-driver-uacce
21450 F:      Documentation/misc-devices/uacce.rst
21451 F:      drivers/misc/uacce/
21452 F:      include/linux/uacce.h
21453 F:      include/uapi/misc/uacce/
21454
21455 UBI FILE SYSTEM (UBIFS)
21456 M:      Richard Weinberger <richard@nod.at>
21457 L:      linux-mtd@lists.infradead.org
21458 S:      Supported
21459 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21462 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21463 F:      Documentation/filesystems/ubifs-authentication.rst
21464 F:      Documentation/filesystems/ubifs.rst
21465 F:      fs/ubifs/
21466
21467 UBLK USERSPACE BLOCK DRIVER
21468 M:      Ming Lei <ming.lei@redhat.com>
21469 L:      linux-block@vger.kernel.org
21470 S:      Maintained
21471 F:      Documentation/block/ublk.rst
21472 F:      drivers/block/ublk_drv.c
21473 F:      include/uapi/linux/ublk_cmd.h
21474
21475 UCLINUX (M68KNOMMU AND COLDFIRE)
21476 M:      Greg Ungerer <gerg@linux-m68k.org>
21477 L:      linux-m68k@lists.linux-m68k.org
21478 L:      uclinux-dev@uclinux.org  (subscribers-only)
21479 S:      Maintained
21480 W:      http://www.linux-m68k.org/
21481 W:      http://www.uclinux.org/
21482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21483 F:      arch/m68k/*/*_no.*
21484 F:      arch/m68k/68*/
21485 F:      arch/m68k/coldfire/
21486 F:      arch/m68k/include/asm/*_no.*
21487
21488 UDF FILESYSTEM
21489 M:      Jan Kara <jack@suse.com>
21490 S:      Maintained
21491 F:      Documentation/filesystems/udf.rst
21492 F:      fs/udf/
21493
21494 UDRAW TABLET
21495 M:      Bastien Nocera <hadess@hadess.net>
21496 L:      linux-input@vger.kernel.org
21497 S:      Maintained
21498 F:      drivers/hid/hid-udraw-ps3.c
21499
21500 UFS FILESYSTEM
21501 M:      Evgeniy Dushistov <dushistov@mail.ru>
21502 S:      Maintained
21503 F:      Documentation/admin-guide/ufs.rst
21504 F:      fs/ufs/
21505
21506 UHID USERSPACE HID IO DRIVER
21507 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21508 L:      linux-input@vger.kernel.org
21509 S:      Maintained
21510 F:      drivers/hid/uhid.c
21511 F:      include/uapi/linux/uhid.h
21512
21513 ULPI BUS
21514 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21515 L:      linux-usb@vger.kernel.org
21516 S:      Maintained
21517 F:      drivers/usb/common/ulpi.c
21518 F:      include/linux/ulpi/
21519
21520 UNICODE SUBSYSTEM
21521 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21522 L:      linux-fsdevel@vger.kernel.org
21523 S:      Supported
21524 F:      fs/unicode/
21525
21526 UNIFDEF
21527 M:      Tony Finch <dot@dotat.at>
21528 S:      Maintained
21529 W:      http://dotat.at/prog/unifdef
21530 F:      scripts/unifdef.c
21531
21532 UNIFORM CDROM DRIVER
21533 M:      Phillip Potter <phil@philpotter.co.uk>
21534 S:      Maintained
21535 F:      Documentation/cdrom/
21536 F:      drivers/cdrom/cdrom.c
21537 F:      include/linux/cdrom.h
21538 F:      include/uapi/linux/cdrom.h
21539
21540 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21541 R:      Alim Akhtar <alim.akhtar@samsung.com>
21542 R:      Avri Altman <avri.altman@wdc.com>
21543 R:      Bart Van Assche <bvanassche@acm.org>
21544 L:      linux-scsi@vger.kernel.org
21545 S:      Supported
21546 F:      Documentation/devicetree/bindings/ufs/
21547 F:      Documentation/scsi/ufs.rst
21548 F:      drivers/ufs/core/
21549
21550 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21551 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21552 L:      linux-scsi@vger.kernel.org
21553 S:      Supported
21554 F:      drivers/ufs/host/*dwc*
21555
21556 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
21557 M:      Alim Akhtar <alim.akhtar@samsung.com>
21558 L:      linux-scsi@vger.kernel.org
21559 S:      Maintained
21560 F:      drivers/ufs/host/ufs-exynos*
21561
21562 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21563 M:      Stanley Chu <stanley.chu@mediatek.com>
21564 L:      linux-scsi@vger.kernel.org
21565 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21566 S:      Maintained
21567 F:      drivers/ufs/host/ufs-mediatek*
21568
21569 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
21570 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
21571 L:      linux-arm-msm@vger.kernel.org
21572 L:      linux-scsi@vger.kernel.org
21573 S:      Maintained
21574 F:      Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
21575 F:      drivers/ufs/host/ufs-qcom*
21576
21577 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21578 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21579 L:      linux-renesas-soc@vger.kernel.org
21580 L:      linux-scsi@vger.kernel.org
21581 S:      Maintained
21582 F:      drivers/ufs/host/ufs-renesas.c
21583
21584 UNSORTED BLOCK IMAGES (UBI)
21585 M:      Richard Weinberger <richard@nod.at>
21586 L:      linux-mtd@lists.infradead.org
21587 S:      Supported
21588 W:      http://www.linux-mtd.infradead.org/
21589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21591 F:      drivers/mtd/ubi/
21592 F:      include/linux/mtd/ubi.h
21593 F:      include/uapi/mtd/ubi-user.h
21594
21595 USB "USBNET" DRIVER FRAMEWORK
21596 M:      Oliver Neukum <oneukum@suse.com>
21597 L:      netdev@vger.kernel.org
21598 S:      Maintained
21599 W:      http://www.linux-usb.org/usbnet
21600 F:      drivers/net/usb/usbnet.c
21601 F:      include/linux/usb/usbnet.h
21602
21603 USB ACM DRIVER
21604 M:      Oliver Neukum <oneukum@suse.com>
21605 L:      linux-usb@vger.kernel.org
21606 S:      Maintained
21607 F:      Documentation/usb/acm.rst
21608 F:      drivers/usb/class/cdc-acm.*
21609
21610 USB APPLE MFI FASTCHARGE DRIVER
21611 M:      Bastien Nocera <hadess@hadess.net>
21612 L:      linux-usb@vger.kernel.org
21613 S:      Maintained
21614 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21615
21616 USB AR5523 WIRELESS DRIVER
21617 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21618 L:      linux-wireless@vger.kernel.org
21619 S:      Maintained
21620 F:      drivers/net/wireless/ath/ar5523/
21621
21622 USB ATTACHED SCSI
21623 M:      Oliver Neukum <oneukum@suse.com>
21624 L:      linux-usb@vger.kernel.org
21625 L:      linux-scsi@vger.kernel.org
21626 S:      Maintained
21627 F:      drivers/usb/storage/uas.c
21628
21629 USB CDC ETHERNET DRIVER
21630 M:      Oliver Neukum <oliver@neukum.org>
21631 L:      linux-usb@vger.kernel.org
21632 S:      Maintained
21633 F:      drivers/net/usb/cdc_*.c
21634 F:      include/uapi/linux/usb/cdc.h
21635
21636 USB CHAOSKEY DRIVER
21637 M:      Keith Packard <keithp@keithp.com>
21638 L:      linux-usb@vger.kernel.org
21639 S:      Maintained
21640 F:      drivers/usb/misc/chaoskey.c
21641
21642 USB CYPRESS C67X00 DRIVER
21643 L:      linux-usb@vger.kernel.org
21644 S:      Orphan
21645 F:      drivers/usb/c67x00/
21646
21647 USB DAVICOM DM9601 DRIVER
21648 M:      Peter Korsgaard <peter@korsgaard.com>
21649 L:      netdev@vger.kernel.org
21650 S:      Maintained
21651 W:      http://www.linux-usb.org/usbnet
21652 F:      drivers/net/usb/dm9601.c
21653
21654 USB EHCI DRIVER
21655 M:      Alan Stern <stern@rowland.harvard.edu>
21656 L:      linux-usb@vger.kernel.org
21657 S:      Maintained
21658 F:      Documentation/usb/ehci.rst
21659 F:      drivers/usb/host/ehci*
21660
21661 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21662 M:      Jiri Kosina <jikos@kernel.org>
21663 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21664 L:      linux-usb@vger.kernel.org
21665 S:      Maintained
21666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21667 F:      Documentation/hid/hiddev.rst
21668 F:      drivers/hid/usbhid/
21669
21670 USB INTEL XHCI ROLE MUX DRIVER
21671 M:      Hans de Goede <hdegoede@redhat.com>
21672 L:      linux-usb@vger.kernel.org
21673 S:      Maintained
21674 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21675
21676 USB IP DRIVER FOR HISILICON KIRIN 960
21677 M:      Yu Chen <chenyu56@huawei.com>
21678 M:      Binghui Wang <wangbinghui@hisilicon.com>
21679 L:      linux-usb@vger.kernel.org
21680 S:      Maintained
21681 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21682 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21683
21684 USB IP DRIVER FOR HISILICON KIRIN 970
21685 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21686 L:      linux-usb@vger.kernel.org
21687 S:      Maintained
21688 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21689 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21690
21691 USB ISP116X DRIVER
21692 M:      Olav Kongas <ok@artecdesign.ee>
21693 L:      linux-usb@vger.kernel.org
21694 S:      Maintained
21695 F:      drivers/usb/host/isp116x*
21696 F:      include/linux/usb/isp116x.h
21697
21698 USB ISP1760 DRIVER
21699 M:      Rui Miguel Silva <rui.silva@linaro.org>
21700 L:      linux-usb@vger.kernel.org
21701 S:      Maintained
21702 F:      drivers/usb/isp1760/*
21703 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21704
21705 USB LAN78XX ETHERNET DRIVER
21706 M:      Woojung Huh <woojung.huh@microchip.com>
21707 M:      UNGLinuxDriver@microchip.com
21708 L:      netdev@vger.kernel.org
21709 S:      Maintained
21710 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21711 F:      drivers/net/usb/lan78xx.*
21712 F:      include/dt-bindings/net/microchip-lan78xx.h
21713
21714 USB MASS STORAGE DRIVER
21715 M:      Alan Stern <stern@rowland.harvard.edu>
21716 L:      linux-usb@vger.kernel.org
21717 L:      usb-storage@lists.one-eyed-alien.net
21718 S:      Maintained
21719 F:      drivers/usb/storage/
21720
21721 USB MIDI DRIVER
21722 M:      Clemens Ladisch <clemens@ladisch.de>
21723 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21724 S:      Maintained
21725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21726 F:      sound/usb/midi.*
21727
21728 USB NETWORKING DRIVERS
21729 L:      linux-usb@vger.kernel.org
21730 S:      Odd Fixes
21731 F:      drivers/net/usb/
21732
21733 USB OHCI DRIVER
21734 M:      Alan Stern <stern@rowland.harvard.edu>
21735 L:      linux-usb@vger.kernel.org
21736 S:      Maintained
21737 F:      Documentation/usb/ohci.rst
21738 F:      drivers/usb/host/ohci*
21739
21740 USB OTG FSM (Finite State Machine)
21741 M:      Peter Chen <peter.chen@kernel.org>
21742 L:      linux-usb@vger.kernel.org
21743 S:      Maintained
21744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21745 F:      drivers/usb/common/usb-otg-fsm.c
21746
21747 USB OVER IP DRIVER
21748 M:      Valentina Manea <valentina.manea.m@gmail.com>
21749 M:      Shuah Khan <shuah@kernel.org>
21750 M:      Shuah Khan <skhan@linuxfoundation.org>
21751 R:      Hongren Zheng <i@zenithal.me>
21752 L:      linux-usb@vger.kernel.org
21753 S:      Maintained
21754 F:      Documentation/usb/usbip_protocol.rst
21755 F:      drivers/usb/usbip/
21756 F:      tools/testing/selftests/drivers/usb/usbip/
21757 F:      tools/usb/usbip/
21758
21759 USB PEGASUS DRIVER
21760 M:      Petko Manolov <petkan@nucleusys.com>
21761 L:      linux-usb@vger.kernel.org
21762 L:      netdev@vger.kernel.org
21763 S:      Maintained
21764 W:      https://github.com/petkan/pegasus
21765 T:      git https://github.com/petkan/pegasus.git
21766 F:      drivers/net/usb/pegasus.*
21767
21768 USB PRINTER DRIVER (usblp)
21769 M:      Pete Zaitcev <zaitcev@redhat.com>
21770 L:      linux-usb@vger.kernel.org
21771 S:      Supported
21772 F:      drivers/usb/class/usblp.c
21773
21774 USB RAW GADGET DRIVER
21775 R:      Andrey Konovalov <andreyknvl@gmail.com>
21776 L:      linux-usb@vger.kernel.org
21777 S:      Maintained
21778 F:      Documentation/usb/raw-gadget.rst
21779 F:      drivers/usb/gadget/legacy/raw_gadget.c
21780 F:      include/uapi/linux/usb/raw_gadget.h
21781
21782 USB QMI WWAN NETWORK DRIVER
21783 M:      Bjørn Mork <bjorn@mork.no>
21784 L:      netdev@vger.kernel.org
21785 S:      Maintained
21786 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21787 F:      drivers/net/usb/qmi_wwan.c
21788
21789 USB RTL8150 DRIVER
21790 M:      Petko Manolov <petkan@nucleusys.com>
21791 L:      linux-usb@vger.kernel.org
21792 L:      netdev@vger.kernel.org
21793 S:      Maintained
21794 W:      https://github.com/petkan/rtl8150
21795 T:      git https://github.com/petkan/rtl8150.git
21796 F:      drivers/net/usb/rtl8150.c
21797
21798 USB SERIAL SUBSYSTEM
21799 M:      Johan Hovold <johan@kernel.org>
21800 L:      linux-usb@vger.kernel.org
21801 S:      Maintained
21802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21803 F:      Documentation/usb/usb-serial.rst
21804 F:      drivers/usb/serial/
21805 F:      include/linux/usb/serial.h
21806
21807 USB SMSC75XX ETHERNET DRIVER
21808 M:      Steve Glendinning <steve.glendinning@shawell.net>
21809 L:      netdev@vger.kernel.org
21810 S:      Maintained
21811 F:      drivers/net/usb/smsc75xx.*
21812
21813 USB SMSC95XX ETHERNET DRIVER
21814 M:      Steve Glendinning <steve.glendinning@shawell.net>
21815 M:      UNGLinuxDriver@microchip.com
21816 L:      netdev@vger.kernel.org
21817 S:      Maintained
21818 F:      drivers/net/usb/smsc95xx.*
21819
21820 USB SUBSYSTEM
21821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21822 L:      linux-usb@vger.kernel.org
21823 S:      Supported
21824 W:      http://www.linux-usb.org
21825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21826 F:      Documentation/devicetree/bindings/usb/
21827 F:      Documentation/usb/
21828 F:      drivers/usb/
21829 F:      include/dt-bindings/usb/
21830 F:      include/linux/usb.h
21831 F:      include/linux/usb/
21832
21833 USB TYPEC BUS FOR ALTERNATE MODES
21834 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21835 L:      linux-usb@vger.kernel.org
21836 S:      Maintained
21837 F:      Documentation/ABI/testing/sysfs-bus-typec
21838 F:      Documentation/driver-api/usb/typec_bus.rst
21839 F:      drivers/usb/typec/altmodes/
21840 F:      include/linux/usb/typec_altmode.h
21841
21842 USB TYPEC CLASS
21843 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21844 L:      linux-usb@vger.kernel.org
21845 S:      Maintained
21846 F:      Documentation/ABI/testing/sysfs-class-typec
21847 F:      Documentation/driver-api/usb/typec.rst
21848 F:      drivers/usb/typec/
21849 F:      include/linux/usb/typec.h
21850
21851 USB TYPEC INTEL PMC MUX DRIVER
21852 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21853 L:      linux-usb@vger.kernel.org
21854 S:      Maintained
21855 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21856 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21857
21858 USB TYPEC PI3USB30532 MUX DRIVER
21859 M:      Hans de Goede <hdegoede@redhat.com>
21860 L:      linux-usb@vger.kernel.org
21861 S:      Maintained
21862 F:      drivers/usb/typec/mux/pi3usb30532.c
21863
21864 USB TYPEC PORT CONTROLLER DRIVERS
21865 M:      Guenter Roeck <linux@roeck-us.net>
21866 L:      linux-usb@vger.kernel.org
21867 S:      Maintained
21868 F:      drivers/usb/typec/tcpm/
21869
21870 USB UHCI DRIVER
21871 M:      Alan Stern <stern@rowland.harvard.edu>
21872 L:      linux-usb@vger.kernel.org
21873 S:      Maintained
21874 F:      drivers/usb/host/uhci*
21875
21876 USB VIDEO CLASS
21877 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21878 L:      linux-media@vger.kernel.org
21879 S:      Maintained
21880 W:      http://www.ideasonboard.org/uvc/
21881 T:      git git://linuxtv.org/media_tree.git
21882 F:      drivers/media/usb/uvc/
21883 F:      include/uapi/linux/uvcvideo.h
21884
21885 USB WEBCAM GADGET
21886 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21887 M:      Daniel Scally <dan.scally@ideasonboard.com>
21888 L:      linux-usb@vger.kernel.org
21889 S:      Maintained
21890 F:      drivers/usb/gadget/function/*uvc*
21891 F:      drivers/usb/gadget/legacy/webcam.c
21892 F:      include/uapi/linux/usb/g_uvc.h
21893
21894 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21895 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21896 L:      linux-wireless@vger.kernel.org
21897 S:      Maintained
21898 F:      drivers/net/wireless/legacy/rndis_wlan.c
21899
21900 USB XHCI DRIVER
21901 M:      Mathias Nyman <mathias.nyman@intel.com>
21902 L:      linux-usb@vger.kernel.org
21903 S:      Supported
21904 F:      drivers/usb/host/pci-quirks*
21905 F:      drivers/usb/host/xhci*
21906
21907 USB ZD1201 DRIVER
21908 L:      linux-wireless@vger.kernel.org
21909 S:      Orphan
21910 W:      http://linux-lc100020.sourceforge.net
21911 F:      drivers/net/wireless/zydas/zd1201.*
21912
21913 USER DATAGRAM PROTOCOL (UDP)
21914 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21915 S:      Maintained
21916 F:      include/linux/udp.h
21917 F:      net/ipv4/udp.c
21918 F:      net/ipv6/udp.c
21919
21920 USER-MODE LINUX (UML)
21921 M:      Richard Weinberger <richard@nod.at>
21922 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21923 M:      Johannes Berg <johannes@sipsolutions.net>
21924 L:      linux-um@lists.infradead.org
21925 S:      Maintained
21926 W:      http://user-mode-linux.sourceforge.net
21927 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21930 F:      Documentation/virt/uml/
21931 F:      arch/um/
21932 F:      arch/x86/um/
21933 F:      fs/hostfs/
21934
21935 USERSPACE COPYIN/COPYOUT (UIOVEC)
21936 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21937 S:      Maintained
21938 F:      include/linux/uio.h
21939 F:      lib/iov_iter.c
21940
21941 USERSPACE DMA BUFFER DRIVER
21942 M:      Gerd Hoffmann <kraxel@redhat.com>
21943 L:      dri-devel@lists.freedesktop.org
21944 S:      Maintained
21945 T:      git git://anongit.freedesktop.org/drm/drm-misc
21946 F:      drivers/dma-buf/udmabuf.c
21947 F:      include/uapi/linux/udmabuf.h
21948
21949 USERSPACE I/O (UIO)
21950 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21951 S:      Maintained
21952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21953 F:      Documentation/driver-api/uio-howto.rst
21954 F:      drivers/uio/
21955 F:      include/linux/uio_driver.h
21956
21957 UTIL-LINUX PACKAGE
21958 M:      Karel Zak <kzak@redhat.com>
21959 L:      util-linux@vger.kernel.org
21960 S:      Maintained
21961 W:      http://en.wikipedia.org/wiki/Util-linux
21962 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21963
21964 UUID HELPERS
21965 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21966 L:      linux-kernel@vger.kernel.org
21967 S:      Maintained
21968 F:      include/linux/uuid.h
21969 F:      lib/test_uuid.c
21970 F:      lib/uuid.c
21971
21972 UV SYSFS DRIVER
21973 M:      Justin Ernst <justin.ernst@hpe.com>
21974 L:      platform-driver-x86@vger.kernel.org
21975 S:      Maintained
21976 F:      drivers/platform/x86/uv_sysfs.c
21977
21978 UVESAFB DRIVER
21979 M:      Michal Januszewski <spock@gentoo.org>
21980 L:      linux-fbdev@vger.kernel.org
21981 S:      Maintained
21982 W:      https://github.com/mjanusz/v86d
21983 F:      Documentation/fb/uvesafb.rst
21984 F:      drivers/video/fbdev/uvesafb.*
21985
21986 Ux500 CLOCK DRIVERS
21987 M:      Ulf Hansson <ulf.hansson@linaro.org>
21988 L:      linux-clk@vger.kernel.org
21989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21990 S:      Maintained
21991 F:      drivers/clk/ux500/
21992
21993 VF610 NAND DRIVER
21994 M:      Stefan Agner <stefan@agner.ch>
21995 L:      linux-mtd@lists.infradead.org
21996 S:      Supported
21997 F:      drivers/mtd/nand/raw/vf610_nfc.c
21998
21999 VFAT/FAT/MSDOS FILESYSTEM
22000 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
22001 S:      Maintained
22002 F:      Documentation/filesystems/vfat.rst
22003 F:      fs/fat/
22004 F:      tools/testing/selftests/filesystems/fat/
22005
22006 VFIO DRIVER
22007 M:      Alex Williamson <alex.williamson@redhat.com>
22008 L:      kvm@vger.kernel.org
22009 S:      Maintained
22010 T:      git https://github.com/awilliam/linux-vfio.git
22011 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
22012 F:      Documentation/driver-api/vfio.rst
22013 F:      drivers/vfio/
22014 F:      include/linux/vfio.h
22015 F:      include/linux/vfio_pci_core.h
22016 F:      include/uapi/linux/vfio.h
22017
22018 VFIO FSL-MC DRIVER
22019 M:      Diana Craciun <diana.craciun@oss.nxp.com>
22020 L:      kvm@vger.kernel.org
22021 S:      Maintained
22022 F:      drivers/vfio/fsl-mc/
22023
22024 VFIO HISILICON PCI DRIVER
22025 M:      Longfang Liu <liulongfang@huawei.com>
22026 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22027 L:      kvm@vger.kernel.org
22028 S:      Maintained
22029 F:      drivers/vfio/pci/hisilicon/
22030
22031 VFIO MEDIATED DEVICE DRIVERS
22032 M:      Kirti Wankhede <kwankhede@nvidia.com>
22033 L:      kvm@vger.kernel.org
22034 S:      Maintained
22035 F:      Documentation/driver-api/vfio-mediated-device.rst
22036 F:      drivers/vfio/mdev/
22037 F:      include/linux/mdev.h
22038 F:      samples/vfio-mdev/
22039
22040 VFIO PCI DEVICE SPECIFIC DRIVERS
22041 R:      Jason Gunthorpe <jgg@nvidia.com>
22042 R:      Yishai Hadas <yishaih@nvidia.com>
22043 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22044 R:      Kevin Tian <kevin.tian@intel.com>
22045 L:      kvm@vger.kernel.org
22046 S:      Maintained
22047 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
22048 F:      drivers/vfio/pci/*/
22049
22050 VFIO PLATFORM DRIVER
22051 M:      Eric Auger <eric.auger@redhat.com>
22052 L:      kvm@vger.kernel.org
22053 S:      Maintained
22054 F:      drivers/vfio/platform/
22055
22056 VFIO MLX5 PCI DRIVER
22057 M:      Yishai Hadas <yishaih@nvidia.com>
22058 L:      kvm@vger.kernel.org
22059 S:      Maintained
22060 F:      drivers/vfio/pci/mlx5/
22061
22062 VGA_SWITCHEROO
22063 R:      Lukas Wunner <lukas@wunner.de>
22064 S:      Maintained
22065 T:      git git://anongit.freedesktop.org/drm/drm-misc
22066 F:      Documentation/gpu/vga-switcheroo.rst
22067 F:      drivers/gpu/vga/vga_switcheroo.c
22068 F:      include/linux/vga_switcheroo.h
22069
22070 VIA RHINE NETWORK DRIVER
22071 S:      Maintained
22072 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
22073 F:      drivers/net/ethernet/via/via-rhine.c
22074
22075 VIA SD/MMC CARD CONTROLLER DRIVER
22076 M:      Bruce Chang <brucechang@via.com.tw>
22077 M:      Harald Welte <HaraldWelte@viatech.com>
22078 S:      Maintained
22079 F:      drivers/mmc/host/via-sdmmc.c
22080
22081 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
22082 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
22083 L:      linux-fbdev@vger.kernel.org
22084 S:      Maintained
22085 F:      drivers/video/fbdev/via/
22086 F:      include/linux/via-core.h
22087 F:      include/linux/via-gpio.h
22088 F:      include/linux/via_i2c.h
22089
22090 VIA VELOCITY NETWORK DRIVER
22091 M:      Francois Romieu <romieu@fr.zoreil.com>
22092 L:      netdev@vger.kernel.org
22093 S:      Maintained
22094 F:      drivers/net/ethernet/via/via-velocity.*
22095
22096 VICODEC VIRTUAL CODEC DRIVER
22097 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
22098 L:      linux-media@vger.kernel.org
22099 S:      Maintained
22100 W:      https://linuxtv.org
22101 T:      git git://linuxtv.org/media_tree.git
22102 F:      drivers/media/test-drivers/vicodec/*
22103
22104 VIDEO I2C POLLING DRIVER
22105 M:      Matt Ranostay <matt.ranostay@konsulko.com>
22106 L:      linux-media@vger.kernel.org
22107 S:      Maintained
22108 F:      drivers/media/i2c/video-i2c.c
22109
22110 VIDEO MULTIPLEXER DRIVER
22111 M:      Philipp Zabel <p.zabel@pengutronix.de>
22112 L:      linux-media@vger.kernel.org
22113 S:      Maintained
22114 F:      drivers/media/platform/video-mux.c
22115
22116 VIDEOBUF2 FRAMEWORK
22117 M:      Tomasz Figa <tfiga@chromium.org>
22118 M:      Marek Szyprowski <m.szyprowski@samsung.com>
22119 L:      linux-media@vger.kernel.org
22120 S:      Maintained
22121 F:      drivers/media/common/videobuf2/*
22122 F:      include/media/videobuf2-*
22123
22124 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22125 M:      Shuah Khan <skhan@linuxfoundation.org>
22126 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
22127 L:      linux-media@vger.kernel.org
22128 S:      Maintained
22129 W:      https://linuxtv.org
22130 T:      git git://linuxtv.org/media_tree.git
22131 F:      drivers/media/test-drivers/vimc/*
22132
22133 VIRT LIB
22134 M:      Alex Williamson <alex.williamson@redhat.com>
22135 M:      Paolo Bonzini <pbonzini@redhat.com>
22136 L:      kvm@vger.kernel.org
22137 S:      Supported
22138 F:      virt/lib/
22139
22140 VIRTIO AND VHOST VSOCK DRIVER
22141 M:      Stefan Hajnoczi <stefanha@redhat.com>
22142 M:      Stefano Garzarella <sgarzare@redhat.com>
22143 L:      kvm@vger.kernel.org
22144 L:      virtualization@lists.linux-foundation.org
22145 L:      netdev@vger.kernel.org
22146 S:      Maintained
22147 F:      drivers/vhost/vsock.c
22148 F:      include/linux/virtio_vsock.h
22149 F:      include/uapi/linux/virtio_vsock.h
22150 F:      net/vmw_vsock/virtio_transport.c
22151 F:      net/vmw_vsock/virtio_transport_common.c
22152
22153 VIRTIO BLOCK AND SCSI DRIVERS
22154 M:      "Michael S. Tsirkin" <mst@redhat.com>
22155 M:      Jason Wang <jasowang@redhat.com>
22156 R:      Paolo Bonzini <pbonzini@redhat.com>
22157 R:      Stefan Hajnoczi <stefanha@redhat.com>
22158 L:      virtualization@lists.linux-foundation.org
22159 S:      Maintained
22160 F:      drivers/block/virtio_blk.c
22161 F:      drivers/scsi/virtio_scsi.c
22162 F:      drivers/vhost/scsi.c
22163 F:      include/uapi/linux/virtio_blk.h
22164 F:      include/uapi/linux/virtio_scsi.h
22165
22166 VIRTIO CONSOLE DRIVER
22167 M:      Amit Shah <amit@kernel.org>
22168 L:      virtualization@lists.linux-foundation.org
22169 S:      Maintained
22170 F:      drivers/char/virtio_console.c
22171 F:      include/linux/virtio_console.h
22172 F:      include/uapi/linux/virtio_console.h
22173
22174 VIRTIO CORE AND NET DRIVERS
22175 M:      "Michael S. Tsirkin" <mst@redhat.com>
22176 M:      Jason Wang <jasowang@redhat.com>
22177 L:      virtualization@lists.linux-foundation.org
22178 S:      Maintained
22179 F:      Documentation/ABI/testing/sysfs-bus-vdpa
22180 F:      Documentation/ABI/testing/sysfs-class-vduse
22181 F:      Documentation/devicetree/bindings/virtio/
22182 F:      Documentation/driver-api/virtio/
22183 F:      drivers/block/virtio_blk.c
22184 F:      drivers/crypto/virtio/
22185 F:      drivers/net/virtio_net.c
22186 F:      drivers/vdpa/
22187 F:      drivers/virtio/
22188 F:      include/linux/vdpa.h
22189 F:      include/linux/virtio*.h
22190 F:      include/uapi/linux/virtio_*.h
22191 F:      tools/virtio/
22192
22193 VISL VIRTUAL STATELESS DECODER DRIVER
22194 M:      Daniel Almeida <daniel.almeida@collabora.com>
22195 L:      linux-media@vger.kernel.org
22196 S:      Supported
22197 F:      drivers/media/test-drivers/visl
22198
22199 IFCVF VIRTIO DATA PATH ACCELERATOR
22200 R:      Zhu Lingshan <lingshan.zhu@intel.com>
22201 F:      drivers/vdpa/ifcvf/
22202
22203 SNET DPU VIRTIO DATA PATH ACCELERATOR
22204 R:      Alvaro Karsz <alvaro.karsz@solid-run.com>
22205 F:      drivers/vdpa/solidrun/
22206
22207 VIRTIO BALLOON
22208 M:      "Michael S. Tsirkin" <mst@redhat.com>
22209 M:      David Hildenbrand <david@redhat.com>
22210 L:      virtualization@lists.linux-foundation.org
22211 S:      Maintained
22212 F:      drivers/virtio/virtio_balloon.c
22213 F:      include/uapi/linux/virtio_balloon.h
22214 F:      include/linux/balloon_compaction.h
22215 F:      mm/balloon_compaction.c
22216
22217 VIRTIO CRYPTO DRIVER
22218 M:      Gonglei <arei.gonglei@huawei.com>
22219 L:      virtualization@lists.linux-foundation.org
22220 L:      linux-crypto@vger.kernel.org
22221 S:      Maintained
22222 F:      drivers/crypto/virtio/
22223 F:      include/uapi/linux/virtio_crypto.h
22224
22225 VIRTIO DRIVERS FOR S390
22226 M:      Cornelia Huck <cohuck@redhat.com>
22227 M:      Halil Pasic <pasic@linux.ibm.com>
22228 M:      Eric Farman <farman@linux.ibm.com>
22229 L:      linux-s390@vger.kernel.org
22230 L:      virtualization@lists.linux-foundation.org
22231 L:      kvm@vger.kernel.org
22232 S:      Supported
22233 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22234 F:      drivers/s390/virtio/
22235
22236 VIRTIO FILE SYSTEM
22237 M:      Vivek Goyal <vgoyal@redhat.com>
22238 M:      Stefan Hajnoczi <stefanha@redhat.com>
22239 M:      Miklos Szeredi <miklos@szeredi.hu>
22240 L:      virtualization@lists.linux-foundation.org
22241 L:      linux-fsdevel@vger.kernel.org
22242 S:      Supported
22243 W:      https://virtio-fs.gitlab.io/
22244 F:      Documentation/filesystems/virtiofs.rst
22245 F:      fs/fuse/virtio_fs.c
22246 F:      include/uapi/linux/virtio_fs.h
22247
22248 VIRTIO GPIO DRIVER
22249 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22250 M:      Viresh Kumar <vireshk@kernel.org>
22251 L:      linux-gpio@vger.kernel.org
22252 L:      virtualization@lists.linux-foundation.org
22253 S:      Maintained
22254 F:      drivers/gpio/gpio-virtio.c
22255 F:      include/uapi/linux/virtio_gpio.h
22256
22257 VIRTIO GPU DRIVER
22258 M:      David Airlie <airlied@redhat.com>
22259 M:      Gerd Hoffmann <kraxel@redhat.com>
22260 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22261 R:      Chia-I Wu <olvaffe@gmail.com>
22262 L:      dri-devel@lists.freedesktop.org
22263 L:      virtualization@lists.linux-foundation.org
22264 S:      Maintained
22265 T:      git git://anongit.freedesktop.org/drm/drm-misc
22266 F:      drivers/gpu/drm/virtio/
22267 F:      include/uapi/linux/virtio_gpu.h
22268
22269 VIRTIO HOST (VHOST)
22270 M:      "Michael S. Tsirkin" <mst@redhat.com>
22271 M:      Jason Wang <jasowang@redhat.com>
22272 L:      kvm@vger.kernel.org
22273 L:      virtualization@lists.linux-foundation.org
22274 L:      netdev@vger.kernel.org
22275 S:      Maintained
22276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22277 F:      kernel/vhost_task.c
22278 F:      drivers/vhost/
22279 F:      include/linux/sched/vhost_task.h
22280 F:      include/linux/vhost_iotlb.h
22281 F:      include/uapi/linux/vhost.h
22282
22283 VIRTIO INPUT DRIVER
22284 M:      Gerd Hoffmann <kraxel@redhat.com>
22285 S:      Maintained
22286 F:      drivers/virtio/virtio_input.c
22287 F:      include/uapi/linux/virtio_input.h
22288
22289 VIRTIO IOMMU DRIVER
22290 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22291 L:      virtualization@lists.linux-foundation.org
22292 S:      Maintained
22293 F:      drivers/iommu/virtio-iommu.c
22294 F:      include/uapi/linux/virtio_iommu.h
22295
22296 VIRTIO MEM DRIVER
22297 M:      David Hildenbrand <david@redhat.com>
22298 L:      virtualization@lists.linux-foundation.org
22299 S:      Maintained
22300 W:      https://virtio-mem.gitlab.io/
22301 F:      drivers/virtio/virtio_mem.c
22302 F:      include/uapi/linux/virtio_mem.h
22303
22304 VIRTIO SOUND DRIVER
22305 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22306 M:      "Michael S. Tsirkin" <mst@redhat.com>
22307 L:      virtualization@lists.linux-foundation.org
22308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22309 S:      Maintained
22310 F:      include/uapi/linux/virtio_snd.h
22311 F:      sound/virtio/*
22312
22313 VIRTIO I2C DRIVER
22314 M:      Conghui Chen <conghui.chen@intel.com>
22315 M:      Viresh Kumar <viresh.kumar@linaro.org>
22316 L:      linux-i2c@vger.kernel.org
22317 L:      virtualization@lists.linux-foundation.org
22318 S:      Maintained
22319 F:      drivers/i2c/busses/i2c-virtio.c
22320 F:      include/uapi/linux/virtio_i2c.h
22321
22322 VIRTIO PMEM DRIVER
22323 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22324 L:      virtualization@lists.linux-foundation.org
22325 S:      Maintained
22326 F:      drivers/nvdimm/virtio_pmem.c
22327 F:      drivers/nvdimm/nd_virtio.c
22328
22329 VIRTUAL BOX GUEST DEVICE DRIVER
22330 M:      Hans de Goede <hdegoede@redhat.com>
22331 M:      Arnd Bergmann <arnd@arndb.de>
22332 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22333 S:      Maintained
22334 F:      drivers/virt/vboxguest/
22335 F:      include/linux/vbox_utils.h
22336 F:      include/uapi/linux/vbox*.h
22337
22338 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22339 M:      Hans de Goede <hdegoede@redhat.com>
22340 L:      linux-fsdevel@vger.kernel.org
22341 S:      Maintained
22342 F:      fs/vboxsf/*
22343
22344 VIRTUAL SERIO DEVICE DRIVER
22345 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22346 S:      Maintained
22347 F:      drivers/input/serio/userio.c
22348 F:      include/uapi/linux/userio.h
22349
22350 VIVID VIRTUAL VIDEO DRIVER
22351 M:      Hans Verkuil <hverkuil@xs4all.nl>
22352 L:      linux-media@vger.kernel.org
22353 S:      Maintained
22354 W:      https://linuxtv.org
22355 T:      git git://linuxtv.org/media_tree.git
22356 F:      drivers/media/test-drivers/vivid/*
22357
22358 VIDTV VIRTUAL DIGITAL TV DRIVER
22359 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22360 L:      linux-media@vger.kernel.org
22361 S:      Maintained
22362 W:      https://linuxtv.org
22363 T:      git git://linuxtv.org/media_tree.git
22364 F:      drivers/media/test-drivers/vidtv/*
22365
22366 VLYNQ BUS
22367 M:      Florian Fainelli <f.fainelli@gmail.com>
22368 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22369 S:      Maintained
22370 F:      drivers/vlynq/vlynq.c
22371 F:      include/linux/vlynq.h
22372
22373 VME SUBSYSTEM
22374 M:      Martyn Welch <martyn@welchs.me.uk>
22375 M:      Manohar Vanga <manohar.vanga@gmail.com>
22376 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22377 L:      linux-kernel@vger.kernel.org
22378 S:      Odd fixes
22379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22380 F:      Documentation/driver-api/vme.rst
22381 F:      drivers/staging/vme_user/
22382
22383 VM SOCKETS (AF_VSOCK)
22384 M:      Stefano Garzarella <sgarzare@redhat.com>
22385 L:      virtualization@lists.linux-foundation.org
22386 L:      netdev@vger.kernel.org
22387 S:      Maintained
22388 F:      drivers/net/vsockmon.c
22389 F:      include/net/af_vsock.h
22390 F:      include/uapi/linux/vm_sockets.h
22391 F:      include/uapi/linux/vm_sockets_diag.h
22392 F:      include/uapi/linux/vsockmon.h
22393 F:      net/vmw_vsock/
22394 F:      tools/testing/vsock/
22395
22396 VMWARE BALLOON DRIVER
22397 M:      Nadav Amit <namit@vmware.com>
22398 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22399 L:      linux-kernel@vger.kernel.org
22400 S:      Supported
22401 F:      drivers/misc/vmw_balloon.c
22402
22403 VMWARE HYPERVISOR INTERFACE
22404 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22405 M:      Alexey Makhalov <amakhalov@vmware.com>
22406 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22407 L:      virtualization@lists.linux-foundation.org
22408 L:      x86@kernel.org
22409 S:      Supported
22410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22411 F:      arch/x86/include/asm/vmware.h
22412 F:      arch/x86/kernel/cpu/vmware.c
22413
22414 VMWARE PVRDMA DRIVER
22415 M:      Bryan Tan <bryantan@vmware.com>
22416 M:      Vishnu Dasa <vdasa@vmware.com>
22417 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22418 L:      linux-rdma@vger.kernel.org
22419 S:      Supported
22420 F:      drivers/infiniband/hw/vmw_pvrdma/
22421
22422 VMWARE PVSCSI DRIVER
22423 M:      Vishal Bhakta <vbhakta@vmware.com>
22424 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22425 L:      linux-scsi@vger.kernel.org
22426 S:      Supported
22427 F:      drivers/scsi/vmw_pvscsi.c
22428 F:      drivers/scsi/vmw_pvscsi.h
22429
22430 VMWARE VIRTUAL PTP CLOCK DRIVER
22431 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22432 M:      Deep Shah <sdeep@vmware.com>
22433 R:      Alexey Makhalov <amakhalov@vmware.com>
22434 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22435 L:      netdev@vger.kernel.org
22436 S:      Supported
22437 F:      drivers/ptp/ptp_vmw.c
22438
22439 VMWARE VMCI DRIVER
22440 M:      Bryan Tan <bryantan@vmware.com>
22441 M:      Vishnu Dasa <vdasa@vmware.com>
22442 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22443 L:      linux-kernel@vger.kernel.org
22444 S:      Supported
22445 F:      drivers/misc/vmw_vmci/
22446 F:      include/linux/vmw_vmci*
22447
22448 VMWARE VMMOUSE SUBDRIVER
22449 M:      Zack Rusin <zackr@vmware.com>
22450 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22451 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22452 L:      linux-input@vger.kernel.org
22453 S:      Supported
22454 F:      drivers/input/mouse/vmmouse.c
22455 F:      drivers/input/mouse/vmmouse.h
22456
22457 VMWARE VMXNET3 ETHERNET DRIVER
22458 M:      Ronak Doshi <doshir@vmware.com>
22459 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22460 L:      netdev@vger.kernel.org
22461 S:      Supported
22462 F:      drivers/net/vmxnet3/
22463
22464 VMWARE VSOCK VMCI TRANSPORT DRIVER
22465 M:      Bryan Tan <bryantan@vmware.com>
22466 M:      Vishnu Dasa <vdasa@vmware.com>
22467 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22468 L:      linux-kernel@vger.kernel.org
22469 S:      Supported
22470 F:      net/vmw_vsock/vmci_transport*
22471
22472 VOCORE VOCORE2 BOARD
22473 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22474 L:      linux-mips@vger.kernel.org
22475 S:      Maintained
22476 F:      arch/mips/boot/dts/ralink/vocore2.dts
22477
22478 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22479 M:      Liam Girdwood <lgirdwood@gmail.com>
22480 M:      Mark Brown <broonie@kernel.org>
22481 L:      linux-kernel@vger.kernel.org
22482 S:      Supported
22483 W:      http://www.slimlogic.co.uk/?p=48
22484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22485 F:      Documentation/devicetree/bindings/regulator/
22486 F:      Documentation/power/regulator/
22487 F:      drivers/regulator/
22488 F:      include/dt-bindings/regulator/
22489 F:      include/linux/regulator/
22490 K:      regulator_get_optional
22491
22492 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22493 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22494 F:      drivers/regulator/irq_helpers.c
22495
22496 VRF
22497 M:      David Ahern <dsahern@kernel.org>
22498 L:      netdev@vger.kernel.org
22499 S:      Maintained
22500 F:      Documentation/networking/vrf.rst
22501 F:      drivers/net/vrf.c
22502
22503 VSPRINTF
22504 M:      Petr Mladek <pmladek@suse.com>
22505 M:      Steven Rostedt <rostedt@goodmis.org>
22506 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22507 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22508 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22509 S:      Maintained
22510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22511 F:      Documentation/core-api/printk-formats.rst
22512 F:      lib/test_printf.c
22513 F:      lib/test_scanf.c
22514 F:      lib/vsprintf.c
22515
22516 VT1211 HARDWARE MONITOR DRIVER
22517 M:      Juerg Haefliger <juergh@proton.me>
22518 L:      linux-hwmon@vger.kernel.org
22519 S:      Maintained
22520 F:      Documentation/hwmon/vt1211.rst
22521 F:      drivers/hwmon/vt1211.c
22522
22523 VT8231 HARDWARE MONITOR DRIVER
22524 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22525 L:      linux-hwmon@vger.kernel.org
22526 S:      Maintained
22527 F:      drivers/hwmon/vt8231.c
22528
22529 VUB300 USB to SDIO/SD/MMC bridge chip
22530 L:      linux-mmc@vger.kernel.org
22531 S:      Orphan
22532 F:      drivers/mmc/host/vub300.c
22533
22534 W1 DALLAS'S 1-WIRE BUS
22535 M:      Evgeniy Polyakov <zbr@ioremap.net>
22536 S:      Maintained
22537 F:      Documentation/devicetree/bindings/w1/
22538 F:      Documentation/w1/
22539 F:      drivers/w1/
22540 F:      include/linux/w1.h
22541
22542 W83791D HARDWARE MONITORING DRIVER
22543 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22544 L:      linux-hwmon@vger.kernel.org
22545 S:      Maintained
22546 F:      Documentation/hwmon/w83791d.rst
22547 F:      drivers/hwmon/w83791d.c
22548
22549 W83793 HARDWARE MONITORING DRIVER
22550 M:      Rudolf Marek <r.marek@assembler.cz>
22551 L:      linux-hwmon@vger.kernel.org
22552 S:      Maintained
22553 F:      Documentation/hwmon/w83793.rst
22554 F:      drivers/hwmon/w83793.c
22555
22556 W83795 HARDWARE MONITORING DRIVER
22557 M:      Jean Delvare <jdelvare@suse.com>
22558 L:      linux-hwmon@vger.kernel.org
22559 S:      Maintained
22560 F:      drivers/hwmon/w83795.c
22561
22562 W83L51xD SD/MMC CARD INTERFACE DRIVER
22563 M:      Pierre Ossman <pierre@ossman.eu>
22564 S:      Maintained
22565 F:      drivers/mmc/host/wbsd.*
22566
22567 WACOM PROTOCOL 4 SERIAL TABLETS
22568 M:      Julian Squires <julian@cipht.net>
22569 M:      Hans de Goede <hdegoede@redhat.com>
22570 L:      linux-input@vger.kernel.org
22571 S:      Maintained
22572 F:      drivers/input/tablet/wacom_serial4.c
22573
22574 WANGXUN ETHERNET DRIVER
22575 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22576 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22577 W:      https://www.net-swift.com
22578 L:      netdev@vger.kernel.org
22579 S:      Maintained
22580 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22581 F:      drivers/net/ethernet/wangxun/
22582
22583 WATCHDOG DEVICE DRIVERS
22584 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22585 M:      Guenter Roeck <linux@roeck-us.net>
22586 L:      linux-watchdog@vger.kernel.org
22587 S:      Maintained
22588 W:      http://www.linux-watchdog.org/
22589 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22590 F:      Documentation/devicetree/bindings/watchdog/
22591 F:      Documentation/watchdog/
22592 F:      drivers/watchdog/
22593 F:      include/linux/watchdog.h
22594 F:      include/uapi/linux/watchdog.h
22595 F:      include/trace/events/watchdog.h
22596
22597 WHISKEYCOVE PMIC GPIO DRIVER
22598 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22599 L:      linux-gpio@vger.kernel.org
22600 S:      Maintained
22601 F:      drivers/gpio/gpio-wcove.c
22602
22603 WHWAVE RTC DRIVER
22604 M:      Dianlong Li <long17.cool@163.com>
22605 L:      linux-rtc@vger.kernel.org
22606 S:      Maintained
22607 F:      drivers/rtc/rtc-sd3078.c
22608
22609 WIIMOTE HID DRIVER
22610 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22611 L:      linux-input@vger.kernel.org
22612 S:      Maintained
22613 F:      drivers/hid/hid-wiimote*
22614
22615 WILOCITY WIL6210 WIRELESS DRIVER
22616 L:      linux-wireless@vger.kernel.org
22617 S:      Orphan
22618 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22619 F:      drivers/net/wireless/ath/wil6210/
22620
22621 WINBOND CIR DRIVER
22622 M:      David Härdeman <david@hardeman.nu>
22623 S:      Maintained
22624 F:      drivers/media/rc/winbond-cir.c
22625
22626 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22627 M:      William Breathitt Gray <william.gray@linaro.org>
22628 L:      linux-watchdog@vger.kernel.org
22629 S:      Maintained
22630 F:      drivers/watchdog/ebc-c384_wdt.c
22631
22632 WINSYSTEMS WS16C48 GPIO DRIVER
22633 M:      William Breathitt Gray <william.gray@linaro.org>
22634 L:      linux-gpio@vger.kernel.org
22635 S:      Maintained
22636 F:      drivers/gpio/gpio-ws16c48.c
22637
22638 WIREGUARD SECURE NETWORK TUNNEL
22639 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22640 L:      wireguard@lists.zx2c4.com
22641 L:      netdev@vger.kernel.org
22642 S:      Maintained
22643 F:      drivers/net/wireguard/
22644 F:      tools/testing/selftests/wireguard/
22645
22646 WISTRON LAPTOP BUTTON DRIVER
22647 M:      Miloslav Trmac <mitr@volny.cz>
22648 S:      Maintained
22649 F:      drivers/input/misc/wistron_btns.c
22650
22651 WL3501 WIRELESS PCMCIA CARD DRIVER
22652 L:      linux-wireless@vger.kernel.org
22653 S:      Odd fixes
22654 F:      drivers/net/wireless/legacy/wl3501*
22655
22656 WOLFSON MICROELECTRONICS DRIVERS
22657 L:      patches@opensource.cirrus.com
22658 S:      Supported
22659 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22660 T:      git https://github.com/CirrusLogic/linux-drivers.git
22661 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22662 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22663 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22664 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22665 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22666 F:      Documentation/devicetree/bindings/sound/wm*
22667 F:      Documentation/hwmon/wm83??.rst
22668 F:      arch/arm/mach-s3c/mach-crag6410*
22669 F:      drivers/clk/clk-wm83*.c
22670 F:      drivers/gpio/gpio-*wm*.c
22671 F:      drivers/gpio/gpio-arizona.c
22672 F:      drivers/hwmon/wm83??-hwmon.c
22673 F:      drivers/input/misc/wm831x-on.c
22674 F:      drivers/input/touchscreen/wm831x-ts.c
22675 F:      drivers/input/touchscreen/wm97*.c
22676 F:      drivers/leds/leds-wm83*.c
22677 F:      drivers/mfd/arizona*
22678 F:      drivers/mfd/cs47l24*
22679 F:      drivers/mfd/wm*.c
22680 F:      drivers/power/supply/wm83*.c
22681 F:      drivers/regulator/arizona*
22682 F:      drivers/regulator/wm8*.c
22683 F:      drivers/rtc/rtc-wm83*.c
22684 F:      drivers/video/backlight/wm83*_bl.c
22685 F:      drivers/watchdog/wm83*_wdt.c
22686 F:      include/linux/mfd/arizona/
22687 F:      include/linux/mfd/wm831x/
22688 F:      include/linux/mfd/wm8350/
22689 F:      include/linux/mfd/wm8400*
22690 F:      include/linux/regulator/arizona*
22691 F:      include/linux/wm97xx.h
22692 F:      include/sound/wm????.h
22693 F:      sound/soc/codecs/arizona*
22694 F:      sound/soc/codecs/cs47l24*
22695 F:      sound/soc/codecs/wm*
22696
22697 WORKQUEUE
22698 M:      Tejun Heo <tj@kernel.org>
22699 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22700 S:      Maintained
22701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22702 F:      Documentation/core-api/workqueue.rst
22703 F:      include/linux/workqueue.h
22704 F:      kernel/workqueue.c
22705
22706 WWAN DRIVERS
22707 M:      Loic Poulain <loic.poulain@linaro.org>
22708 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22709 R:      Johannes Berg <johannes@sipsolutions.net>
22710 L:      netdev@vger.kernel.org
22711 S:      Maintained
22712 F:      drivers/net/wwan/
22713 F:      include/linux/wwan.h
22714 F:      include/uapi/linux/wwan.h
22715
22716 X-POWERS AXP288 PMIC DRIVERS
22717 M:      Hans de Goede <hdegoede@redhat.com>
22718 S:      Maintained
22719 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22720 N:      axp288
22721
22722 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22723 M:      Chen-Yu Tsai <wens@csie.org>
22724 L:      linux-kernel@vger.kernel.org
22725 S:      Maintained
22726 N:      axp[128]
22727
22728 X.25 STACK
22729 M:      Martin Schiller <ms@dev.tdt.de>
22730 L:      linux-x25@vger.kernel.org
22731 S:      Maintained
22732 F:      Documentation/networking/lapb-module.rst
22733 F:      Documentation/networking/x25*
22734 F:      drivers/net/wan/hdlc_x25.c
22735 F:      drivers/net/wan/lapbether.c
22736 F:      include/*/lapb.h
22737 F:      include/net/x25*
22738 F:      include/uapi/linux/x25.h
22739 F:      net/lapb/
22740 F:      net/x25/
22741
22742 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22743 M:      Thomas Gleixner <tglx@linutronix.de>
22744 M:      Ingo Molnar <mingo@redhat.com>
22745 M:      Borislav Petkov <bp@alien8.de>
22746 M:      Dave Hansen <dave.hansen@linux.intel.com>
22747 M:      x86@kernel.org
22748 R:      "H. Peter Anvin" <hpa@zytor.com>
22749 L:      linux-kernel@vger.kernel.org
22750 S:      Maintained
22751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22752 F:      Documentation/devicetree/bindings/x86/
22753 F:      Documentation/arch/x86/
22754 F:      arch/x86/
22755
22756 X86 ENTRY CODE
22757 M:      Andy Lutomirski <luto@kernel.org>
22758 L:      linux-kernel@vger.kernel.org
22759 S:      Maintained
22760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22761 F:      arch/x86/entry/
22762
22763 X86 HARDWARE VULNERABILITIES
22764 M:      Thomas Gleixner <tglx@linutronix.de>
22765 M:      Borislav Petkov <bp@alien8.de>
22766 M:      Peter Zijlstra <peterz@infradead.org>
22767 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22768 R:      Pawan Gupta <pawan.kumar.gupta@linux.intel.com>
22769 S:      Maintained
22770 F:      Documentation/admin-guide/hw-vuln/
22771 F:      arch/x86/include/asm/nospec-branch.h
22772 F:      arch/x86/kernel/cpu/bugs.c
22773
22774 X86 MCE INFRASTRUCTURE
22775 M:      Tony Luck <tony.luck@intel.com>
22776 M:      Borislav Petkov <bp@alien8.de>
22777 L:      linux-edac@vger.kernel.org
22778 S:      Maintained
22779 F:      Documentation/ABI/testing/sysfs-mce
22780 F:      Documentation/arch/x86/x86_64/machinecheck.rst
22781 F:      arch/x86/kernel/cpu/mce/*
22782
22783 X86 MICROCODE UPDATE SUPPORT
22784 M:      Borislav Petkov <bp@alien8.de>
22785 S:      Maintained
22786 F:      arch/x86/kernel/cpu/microcode/*
22787
22788 X86 MM
22789 M:      Dave Hansen <dave.hansen@linux.intel.com>
22790 M:      Andy Lutomirski <luto@kernel.org>
22791 M:      Peter Zijlstra <peterz@infradead.org>
22792 L:      linux-kernel@vger.kernel.org
22793 S:      Maintained
22794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22795 F:      arch/x86/mm/
22796
22797 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22798 M:      Hans de Goede <hdegoede@redhat.com>
22799 L:      platform-driver-x86@vger.kernel.org
22800 S:      Maintained
22801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22802 F:      drivers/platform/x86/x86-android-tablets/
22803
22804 X86 PLATFORM DRIVERS
22805 M:      Hans de Goede <hdegoede@redhat.com>
22806 M:      Mark Gross <markgross@kernel.org>
22807 L:      platform-driver-x86@vger.kernel.org
22808 S:      Maintained
22809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22810 F:      drivers/platform/olpc/
22811 F:      drivers/platform/x86/
22812 F:      include/linux/platform_data/x86/
22813
22814 X86 PLATFORM DRIVERS - ARCH
22815 R:      Darren Hart <dvhart@infradead.org>
22816 R:      Andy Shevchenko <andy@infradead.org>
22817 L:      platform-driver-x86@vger.kernel.org
22818 L:      x86@kernel.org
22819 S:      Maintained
22820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22821 F:      arch/x86/platform
22822
22823 X86 PLATFORM UV HPE SUPERDOME FLEX
22824 M:      Steve Wahl <steve.wahl@hpe.com>
22825 R:      Mike Travis <mike.travis@hpe.com>
22826 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22827 R:      Russ Anderson <russ.anderson@hpe.com>
22828 S:      Supported
22829 F:      arch/x86/include/asm/uv/
22830 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22831 F:      arch/x86/platform/uv/
22832
22833 X86 STACK UNWINDING
22834 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22835 M:      Peter Zijlstra <peterz@infradead.org>
22836 S:      Supported
22837 F:      arch/x86/include/asm/unwind*.h
22838 F:      arch/x86/kernel/dumpstack.c
22839 F:      arch/x86/kernel/stacktrace.c
22840 F:      arch/x86/kernel/unwind_*.c
22841
22842 X86 VDSO
22843 M:      Andy Lutomirski <luto@kernel.org>
22844 L:      linux-kernel@vger.kernel.org
22845 S:      Maintained
22846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22847 F:      arch/x86/entry/vdso/
22848
22849 XARRAY
22850 M:      Matthew Wilcox <willy@infradead.org>
22851 L:      linux-fsdevel@vger.kernel.org
22852 S:      Supported
22853 F:      Documentation/core-api/xarray.rst
22854 F:      include/linux/idr.h
22855 F:      include/linux/xarray.h
22856 F:      lib/idr.c
22857 F:      lib/xarray.c
22858 F:      tools/testing/radix-tree
22859
22860 XBOX DVD IR REMOTE
22861 M:      Benjamin Valentin <benpicco@googlemail.com>
22862 S:      Maintained
22863 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22864 F:      drivers/media/rc/xbox_remote.c
22865
22866 XC2028/3028 TUNER DRIVER
22867 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22868 L:      linux-media@vger.kernel.org
22869 S:      Maintained
22870 W:      https://linuxtv.org
22871 T:      git git://linuxtv.org/media_tree.git
22872 F:      drivers/media/tuners/xc2028.*
22873
22874 XDP (eXpress Data Path)
22875 M:      Alexei Starovoitov <ast@kernel.org>
22876 M:      Daniel Borkmann <daniel@iogearbox.net>
22877 M:      David S. Miller <davem@davemloft.net>
22878 M:      Jakub Kicinski <kuba@kernel.org>
22879 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22880 M:      John Fastabend <john.fastabend@gmail.com>
22881 L:      netdev@vger.kernel.org
22882 L:      bpf@vger.kernel.org
22883 S:      Supported
22884 F:      include/net/xdp.h
22885 F:      include/net/xdp_priv.h
22886 F:      include/trace/events/xdp.h
22887 F:      kernel/bpf/cpumap.c
22888 F:      kernel/bpf/devmap.c
22889 F:      net/core/xdp.c
22890 F:      samples/bpf/xdp*
22891 F:      tools/testing/selftests/bpf/*xdp*
22892 F:      tools/testing/selftests/bpf/*/*xdp*
22893 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22894 F:      drivers/net/ethernet/*/*/*xdp*
22895 K:      (?:\b|_)xdp(?:\b|_)
22896
22897 XDP SOCKETS (AF_XDP)
22898 M:      Björn Töpel <bjorn@kernel.org>
22899 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22900 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22901 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22902 L:      netdev@vger.kernel.org
22903 L:      bpf@vger.kernel.org
22904 S:      Maintained
22905 F:      Documentation/networking/af_xdp.rst
22906 F:      include/net/xdp_sock*
22907 F:      include/net/xsk_buff_pool.h
22908 F:      include/uapi/linux/if_xdp.h
22909 F:      include/uapi/linux/xdp_diag.h
22910 F:      include/net/netns/xdp.h
22911 F:      net/xdp/
22912 F:      tools/testing/selftests/bpf/*xsk*
22913
22914 XEN BLOCK SUBSYSTEM
22915 M:      Roger Pau Monné <roger.pau@citrix.com>
22916 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22917 S:      Supported
22918 F:      drivers/block/xen*
22919 F:      drivers/block/xen-blkback/*
22920
22921 XEN HYPERVISOR ARM
22922 M:      Stefano Stabellini <sstabellini@kernel.org>
22923 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22924 S:      Maintained
22925 F:      arch/arm/include/asm/xen/
22926 F:      arch/arm/xen/
22927
22928 XEN HYPERVISOR ARM64
22929 M:      Stefano Stabellini <sstabellini@kernel.org>
22930 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22931 S:      Maintained
22932 F:      arch/arm64/include/asm/xen/
22933 F:      arch/arm64/xen/
22934
22935 XEN HYPERVISOR INTERFACE
22936 M:      Juergen Gross <jgross@suse.com>
22937 M:      Stefano Stabellini <sstabellini@kernel.org>
22938 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22939 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22940 S:      Supported
22941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22942 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22943 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22944 F:      drivers/*/xen-*front.c
22945 F:      drivers/xen/
22946 F:      include/uapi/xen/
22947 F:      include/xen/
22948 F:      kernel/configs/xen.config
22949
22950 XEN HYPERVISOR X86
22951 M:      Juergen Gross <jgross@suse.com>
22952 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22953 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22954 S:      Supported
22955 F:      arch/x86/configs/xen.config
22956 F:      arch/x86/include/asm/pvclock-abi.h
22957 F:      arch/x86/include/asm/xen/
22958 F:      arch/x86/platform/pvh/
22959 F:      arch/x86/xen/
22960
22961 XEN NETWORK BACKEND DRIVER
22962 M:      Wei Liu <wei.liu@kernel.org>
22963 M:      Paul Durrant <paul@xen.org>
22964 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22965 L:      netdev@vger.kernel.org
22966 S:      Supported
22967 F:      drivers/net/xen-netback/*
22968
22969 XEN PCI SUBSYSTEM
22970 M:      Juergen Gross <jgross@suse.com>
22971 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22972 S:      Supported
22973 F:      arch/x86/pci/*xen*
22974 F:      drivers/pci/*xen*
22975
22976 XEN PVSCSI DRIVERS
22977 M:      Juergen Gross <jgross@suse.com>
22978 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22979 L:      linux-scsi@vger.kernel.org
22980 S:      Supported
22981 F:      drivers/scsi/xen-scsifront.c
22982 F:      drivers/xen/xen-scsiback.c
22983 F:      include/xen/interface/io/vscsiif.h
22984
22985 XEN PVUSB DRIVER
22986 M:      Juergen Gross <jgross@suse.com>
22987 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22988 L:      linux-usb@vger.kernel.org
22989 S:      Supported
22990 F:      drivers/usb/host/xen*
22991 F:      include/xen/interface/io/usbif.h
22992
22993 XEN SOUND FRONTEND DRIVER
22994 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22995 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22996 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22997 S:      Supported
22998 F:      sound/xen/*
22999
23000 XEN SWIOTLB SUBSYSTEM
23001 M:      Juergen Gross <jgross@suse.com>
23002 M:      Stefano Stabellini <sstabellini@kernel.org>
23003 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
23004 L:      iommu@lists.linux.dev
23005 S:      Supported
23006 F:      arch/*/include/asm/xen/swiotlb-xen.h
23007 F:      drivers/xen/swiotlb-xen.c
23008 F:      include/xen/arm/swiotlb-xen.h
23009 F:      include/xen/swiotlb-xen.h
23010
23011 XFS FILESYSTEM
23012 C:      irc://irc.oftc.net/xfs
23013 M:      Darrick J. Wong <djwong@kernel.org>
23014 L:      linux-xfs@vger.kernel.org
23015 S:      Supported
23016 W:      http://xfs.org/
23017 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
23018 F:      Documentation/ABI/testing/sysfs-fs-xfs
23019 F:      Documentation/admin-guide/xfs.rst
23020 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
23021 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
23022 F:      fs/xfs/
23023 F:      include/uapi/linux/dqblk_xfs.h
23024 F:      include/uapi/linux/fsmap.h
23025
23026 XILINX AMS DRIVER
23027 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
23028 L:      linux-iio@vger.kernel.org
23029 S:      Maintained
23030 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
23031 F:      drivers/iio/adc/xilinx-ams.c
23032
23033 XILINX AXI ETHERNET DRIVER
23034 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
23035 S:      Maintained
23036 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
23037
23038 XILINX CAN DRIVER
23039 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
23040 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
23041 L:      linux-can@vger.kernel.org
23042 S:      Maintained
23043 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
23044 F:      drivers/net/can/xilinx_can.c
23045
23046 XILINX GPIO DRIVER
23047 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
23048 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
23049 R:      Michal Simek <michal.simek@xilinx.com>
23050 S:      Maintained
23051 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
23052 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
23053 F:      drivers/gpio/gpio-xilinx.c
23054 F:      drivers/gpio/gpio-zynq.c
23055
23056 XILINX SD-FEC IP CORES
23057 M:      Derek Kiernan <derek.kiernan@xilinx.com>
23058 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
23059 S:      Maintained
23060 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
23061 F:      Documentation/misc-devices/xilinx_sdfec.rst
23062 F:      drivers/misc/Kconfig
23063 F:      drivers/misc/Makefile
23064 F:      drivers/misc/xilinx_sdfec.c
23065 F:      include/uapi/misc/xilinx_sdfec.h
23066
23067 XILINX PWM DRIVER
23068 M:      Sean Anderson <sean.anderson@seco.com>
23069 S:      Maintained
23070 F:      drivers/pwm/pwm-xilinx.c
23071 F:      include/clocksource/timer-xilinx.h
23072
23073 XILINX UARTLITE SERIAL DRIVER
23074 M:      Peter Korsgaard <jacmet@sunsite.dk>
23075 L:      linux-serial@vger.kernel.org
23076 S:      Maintained
23077 F:      drivers/tty/serial/uartlite.c
23078
23079 XILINX VIDEO IP CORES
23080 M:      Hyun Kwon <hyun.kwon@xilinx.com>
23081 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23082 L:      linux-media@vger.kernel.org
23083 S:      Supported
23084 T:      git git://linuxtv.org/media_tree.git
23085 F:      Documentation/devicetree/bindings/media/xilinx/
23086 F:      drivers/media/platform/xilinx/
23087 F:      include/uapi/linux/xilinx-v4l2-controls.h
23088
23089 XILINX XDMA DRIVER
23090 M:      Lizhi Hou <lizhi.hou@amd.com>
23091 M:      Brian Xu <brian.xu@amd.com>
23092 M:      Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>
23093 L:      dmaengine@vger.kernel.org
23094 S:      Supported
23095 F:      drivers/dma/xilinx/xdma-regs.h
23096 F:      drivers/dma/xilinx/xdma.c
23097 F:      include/linux/dma/amd_xdma.h
23098 F:      include/linux/platform_data/amd_xdma.h
23099
23100 XILINX ZYNQMP DPDMA DRIVER
23101 M:      Hyun Kwon <hyun.kwon@xilinx.com>
23102 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23103 L:      dmaengine@vger.kernel.org
23104 S:      Supported
23105 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
23106 F:      drivers/dma/xilinx/xilinx_dpdma.c
23107 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
23108
23109 XILINX ZYNQMP OCM EDAC DRIVER
23110 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
23111 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
23112 S:      Maintained
23113 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
23114 F:      drivers/edac/zynqmp_edac.c
23115
23116 XILINX ZYNQMP PSGTR PHY DRIVER
23117 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
23118 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23119 L:      linux-kernel@vger.kernel.org
23120 S:      Supported
23121 T:      git https://github.com/Xilinx/linux-xlnx.git
23122 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
23123 F:      drivers/phy/xilinx/phy-zynqmp.c
23124
23125 XILINX ZYNQMP SHA3 DRIVER
23126 M:      Harsha <harsha.harsha@xilinx.com>
23127 S:      Maintained
23128 F:      drivers/crypto/xilinx/zynqmp-sha.c
23129
23130 XILINX EVENT MANAGEMENT DRIVER
23131 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
23132 S:      Maintained
23133 F:      drivers/soc/xilinx/xlnx_event_manager.c
23134 F:      include/linux/firmware/xlnx-event-manager.h
23135
23136 XILLYBUS DRIVER
23137 M:      Eli Billauer <eli.billauer@gmail.com>
23138 L:      linux-kernel@vger.kernel.org
23139 S:      Supported
23140 F:      drivers/char/xillybus/
23141
23142 XLP9XX I2C DRIVER
23143 M:      George Cherian <gcherian@marvell.com>
23144 L:      linux-i2c@vger.kernel.org
23145 S:      Supported
23146 W:      http://www.marvell.com
23147 F:      drivers/i2c/busses/i2c-xlp9xx.c
23148
23149 XRA1403 GPIO EXPANDER
23150 M:      Nandor Han <nandor.han@ge.com>
23151 L:      linux-gpio@vger.kernel.org
23152 S:      Maintained
23153 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23154 F:      drivers/gpio/gpio-xra1403.c
23155
23156 XTENSA XTFPGA PLATFORM SUPPORT
23157 M:      Max Filippov <jcmvbkbc@gmail.com>
23158 S:      Maintained
23159 F:      drivers/spi/spi-xtensa-xtfpga.c
23160 F:      sound/soc/xtensa/xtfpga-i2s.c
23161
23162 YAM DRIVER FOR AX.25
23163 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
23164 L:      linux-hams@vger.kernel.org
23165 S:      Maintained
23166 F:      drivers/net/hamradio/yam*
23167 F:      include/linux/yam.h
23168
23169 YAMA SECURITY MODULE
23170 M:      Kees Cook <keescook@chromium.org>
23171 S:      Supported
23172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23173 F:      Documentation/admin-guide/LSM/Yama.rst
23174 F:      security/yama/
23175
23176 YEALINK PHONE DRIVER
23177 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
23178 L:      usbb2k-api-dev@nongnu.org
23179 S:      Maintained
23180 F:      Documentation/input/devices/yealink.rst
23181 F:      drivers/input/misc/yealink.*
23182
23183 Z8530 DRIVER FOR AX.25
23184 M:      Joerg Reuter <jreuter@yaina.de>
23185 L:      linux-hams@vger.kernel.org
23186 S:      Maintained
23187 W:      http://yaina.de/jreuter/
23188 W:      http://www.qsl.net/dl1bke/
23189 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
23190 F:      drivers/net/hamradio/*scc.c
23191 F:      drivers/net/hamradio/z8530.h
23192
23193 ZBUD COMPRESSED PAGE ALLOCATOR
23194 M:      Seth Jennings <sjenning@redhat.com>
23195 M:      Dan Streetman <ddstreet@ieee.org>
23196 L:      linux-mm@kvack.org
23197 S:      Maintained
23198 F:      mm/zbud.c
23199
23200 Z3FOLD COMPRESSED PAGE ALLOCATOR
23201 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23202 R:      Miaohe Lin <linmiaohe@huawei.com>
23203 L:      linux-mm@kvack.org
23204 S:      Maintained
23205 F:      mm/z3fold.c
23206
23207 ZD1211RW WIRELESS DRIVER
23208 M:      Ulrich Kunitz <kune@deine-taler.de>
23209 L:      linux-wireless@vger.kernel.org
23210 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
23211 S:      Maintained
23212 W:      http://zd1211.ath.cx/wiki/DriverRewrite
23213 F:      drivers/net/wireless/zydas/zd1211rw/
23214
23215 ZD1301 MEDIA DRIVER
23216 M:      Antti Palosaari <crope@iki.fi>
23217 L:      linux-media@vger.kernel.org
23218 S:      Maintained
23219 W:      https://linuxtv.org/
23220 W:      http://palosaari.fi/linux/
23221 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23222 F:      drivers/media/usb/dvb-usb-v2/zd1301*
23223
23224 ZD1301_DEMOD MEDIA DRIVER
23225 M:      Antti Palosaari <crope@iki.fi>
23226 L:      linux-media@vger.kernel.org
23227 S:      Maintained
23228 W:      https://linuxtv.org/
23229 W:      http://palosaari.fi/linux/
23230 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23231 F:      drivers/media/dvb-frontends/zd1301_demod*
23232
23233 ZHAOXIN PROCESSOR SUPPORT
23234 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
23235 L:      linux-kernel@vger.kernel.org
23236 S:      Maintained
23237 F:      arch/x86/kernel/cpu/zhaoxin.c
23238
23239 ZONEFS FILESYSTEM
23240 M:      Damien Le Moal <dlemoal@kernel.org>
23241 M:      Naohiro Aota <naohiro.aota@wdc.com>
23242 R:      Johannes Thumshirn <jth@kernel.org>
23243 L:      linux-fsdevel@vger.kernel.org
23244 S:      Maintained
23245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23246 F:      Documentation/filesystems/zonefs.rst
23247 F:      fs/zonefs/
23248
23249 ZPOOL COMPRESSED PAGE STORAGE API
23250 M:      Dan Streetman <ddstreet@ieee.org>
23251 L:      linux-mm@kvack.org
23252 S:      Maintained
23253 F:      include/linux/zpool.h
23254 F:      mm/zpool.c
23255
23256 ZR36067 VIDEO FOR LINUX DRIVER
23257 M:      Corentin Labbe <clabbe@baylibre.com>
23258 L:      mjpeg-users@lists.sourceforge.net
23259 L:      linux-media@vger.kernel.org
23260 S:      Maintained
23261 W:      http://mjpeg.sourceforge.net/driver-zoran/
23262 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23263 F:      Documentation/driver-api/media/drivers/zoran.rst
23264 F:      drivers/media/pci/zoran/
23265
23266 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23267 M:      Minchan Kim <minchan@kernel.org>
23268 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23269 L:      linux-kernel@vger.kernel.org
23270 S:      Maintained
23271 F:      Documentation/admin-guide/blockdev/zram.rst
23272 F:      drivers/block/zram/
23273
23274 ZS DECSTATION Z85C30 SERIAL DRIVER
23275 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23276 S:      Maintained
23277 F:      drivers/tty/serial/zs.*
23278
23279 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23280 M:      Minchan Kim <minchan@kernel.org>
23281 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23282 L:      linux-mm@kvack.org
23283 S:      Maintained
23284 F:      Documentation/mm/zsmalloc.rst
23285 F:      include/linux/zsmalloc.h
23286 F:      mm/zsmalloc.c
23287
23288 ZSTD
23289 M:      Nick Terrell <terrelln@fb.com>
23290 S:      Maintained
23291 B:      https://github.com/facebook/zstd/issues
23292 T:      git https://github.com/terrelln/linux.git
23293 F:      include/linux/zstd*
23294 F:      lib/zstd/
23295 F:      lib/decompress_unzstd.c
23296 F:      crypto/zstd.c
23297 N:      zstd
23298 K:      zstd
23299
23300 ZSWAP COMPRESSED SWAP CACHING
23301 M:      Seth Jennings <sjenning@redhat.com>
23302 M:      Dan Streetman <ddstreet@ieee.org>
23303 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23304 L:      linux-mm@kvack.org
23305 S:      Maintained
23306 F:      mm/zswap.c
23307
23308 NXP BLUETOOTH WIRELESS DRIVERS
23309 M:      Amitkumar Karwar <amitkumar.karwar@nxp.com>
23310 M:      Neeraj Kale <neeraj.sanjaykale@nxp.com>
23311 S:      Maintained
23312 F:      Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
23313 F:      drivers/bluetooth/btnxpuart.c
23314
23315 THE REST
23316 M:      Linus Torvalds <torvalds@linux-foundation.org>
23317 L:      linux-kernel@vger.kernel.org
23318 S:      Buried alive in reporters
23319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23320 F:      *
23321 F:      */