Merge tag 'gnss-6.1-rc1' of https://git.kernel.org/pub/scm/linux/kernel/git/johan...
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES PCI-IDIO-16 GPIO DRIVER
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-pci-idio-16.c
320
321 ACCES PCIe-IDIO-24 GPIO DRIVER
322 M:      William Breathitt Gray <william.gray@linaro.org>
323 L:      linux-gpio@vger.kernel.org
324 S:      Maintained
325 F:      drivers/gpio/gpio-pcie-idio-24.c
326
327 ACENIC DRIVER
328 M:      Jes Sorensen <jes@trained-monkey.org>
329 L:      linux-acenic@sunsite.dk
330 S:      Maintained
331 F:      drivers/net/ethernet/alteon/acenic*
332
333 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
334 M:      Peter Kaestle <peter@piie.net>
335 L:      platform-driver-x86@vger.kernel.org
336 S:      Maintained
337 W:      http://piie.net/?section=acerhdf
338 F:      drivers/platform/x86/acerhdf.c
339
340 ACER WMI LAPTOP EXTRAS
341 M:      "Lee, Chun-Yi" <jlee@suse.com>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 F:      drivers/platform/x86/acer-wmi.c
345
346 ACPI
347 M:      "Rafael J. Wysocki" <rafael@kernel.org>
348 R:      Len Brown <lenb@kernel.org>
349 L:      linux-acpi@vger.kernel.org
350 S:      Supported
351 W:      https://01.org/linux-acpi
352 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
353 B:      https://bugzilla.kernel.org
354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
355 F:      Documentation/ABI/testing/configfs-acpi
356 F:      Documentation/ABI/testing/sysfs-bus-acpi
357 F:      Documentation/firmware-guide/acpi/
358 F:      drivers/acpi/
359 F:      drivers/pci/*/*acpi*
360 F:      drivers/pci/*acpi*
361 F:      drivers/pnp/pnpacpi/
362 F:      include/acpi/
363 F:      include/linux/acpi.h
364 F:      include/linux/fwnode.h
365 F:      tools/power/acpi/
366
367 ACPI APEI
368 M:      "Rafael J. Wysocki" <rafael@kernel.org>
369 R:      Len Brown <lenb@kernel.org>
370 R:      James Morse <james.morse@arm.com>
371 R:      Tony Luck <tony.luck@intel.com>
372 R:      Borislav Petkov <bp@alien8.de>
373 L:      linux-acpi@vger.kernel.org
374 F:      drivers/acpi/apei/
375
376 ACPI COMPONENT ARCHITECTURE (ACPICA)
377 M:      Robert Moore <robert.moore@intel.com>
378 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
379 L:      linux-acpi@vger.kernel.org
380 L:      devel@acpica.org
381 S:      Supported
382 W:      https://acpica.org/
383 W:      https://github.com/acpica/acpica/
384 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
385 B:      https://bugzilla.kernel.org
386 B:      https://bugs.acpica.org
387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
388 F:      drivers/acpi/acpica/
389 F:      include/acpi/
390 F:      tools/power/acpi/
391
392 ACPI FOR ARM64 (ACPI/arm64)
393 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
394 M:      Hanjun Guo <guohanjun@huawei.com>
395 M:      Sudeep Holla <sudeep.holla@arm.com>
396 L:      linux-acpi@vger.kernel.org
397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
398 S:      Maintained
399 F:      drivers/acpi/arm64
400
401 ACPI SERIAL MULTI INSTANTIATE DRIVER
402 M:      Hans de Goede <hdegoede@redhat.com>
403 L:      platform-driver-x86@vger.kernel.org
404 S:      Maintained
405 F:      drivers/platform/x86/serial-multi-instantiate.c
406
407 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
408 M:      Sudeep Holla <sudeep.holla@arm.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 F:      drivers/mailbox/pcc.c
412
413 ACPI PMIC DRIVERS
414 M:      "Rafael J. Wysocki" <rafael@kernel.org>
415 M:      Len Brown <lenb@kernel.org>
416 R:      Andy Shevchenko <andy@kernel.org>
417 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
418 L:      linux-acpi@vger.kernel.org
419 S:      Supported
420 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
421 B:      https://bugzilla.kernel.org
422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
423 F:      drivers/acpi/pmic/
424
425 ACPI THERMAL DRIVER
426 M:      Rafael J. Wysocki <rafael@kernel.org>
427 R:      Zhang Rui <rui.zhang@intel.com>
428 L:      linux-acpi@vger.kernel.org
429 S:      Supported
430 W:      https://01.org/linux-acpi
431 B:      https://bugzilla.kernel.org
432 F:      drivers/acpi/*thermal*
433
434 ACPI VIOT DRIVER
435 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
436 L:      linux-acpi@vger.kernel.org
437 L:      iommu@lists.linux.dev
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Fei Li <fei1.li@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
465 L:      linux-iio@vger.kernel.org
466 S:      Supported
467 F:      drivers/iio/potentiometer/ad5110.c
468
469 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5254
473 W:      https://ez.analog.com/linux-software-drivers
474 F:      drivers/misc/ad525x_dpot.c
475
476 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5398
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/regulator/ad5398.c
482
483 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7142
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/input/misc/ad714x.c
489
490 AD7877 TOUCHSCREEN DRIVER
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7877
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/touchscreen/ad7877.c
496
497 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7879
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7879.c
503
504 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
505 M:      Jiri Kosina <jikos@kernel.org>
506 S:      Maintained
507
508 ADF7242 IEEE 802.15.4 RADIO DRIVER
509 M:      Michael Hennerich <michael.hennerich@analog.com>
510 L:      linux-wpan@vger.kernel.org
511 S:      Supported
512 W:      https://wiki.analog.com/ADF7242
513 W:      https://ez.analog.com/linux-software-drivers
514 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
515 F:      drivers/net/ieee802154/adf7242.c
516
517 ADM1025 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adm1025.rst
522 F:      drivers/hwmon/adm1025.c
523
524 ADM1029 HARDWARE MONITOR DRIVER
525 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      drivers/hwmon/adm1029.c
529
530 ADM8211 WIRELESS DRIVER
531 L:      linux-wireless@vger.kernel.org
532 S:      Orphan
533 W:      https://wireless.wiki.kernel.org/
534 F:      drivers/net/wireless/admtek/adm8211.*
535
536 ADP1653 FLASH CONTROLLER DRIVER
537 M:      Sakari Ailus <sakari.ailus@iki.fi>
538 L:      linux-media@vger.kernel.org
539 S:      Maintained
540 F:      drivers/media/i2c/adp1653.c
541 F:      include/media/i2c/adp1653.h
542
543 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5520
547 W:      https://ez.analog.com/linux-software-drivers
548 F:      drivers/gpio/gpio-adp5520.c
549 F:      drivers/input/keyboard/adp5520-keys.c
550 F:      drivers/leds/leds-adp5520.c
551 F:      drivers/mfd/adp5520.c
552 F:      drivers/video/backlight/adp5520_bl.c
553
554 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP5588
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/gpio/gpio-adp5588.c
560 F:      drivers/input/keyboard/adp5588-keys.c
561
562 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
563 M:      Michael Hennerich <michael.hennerich@analog.com>
564 S:      Supported
565 W:      http://wiki.analog.com/ADP8860
566 W:      https://ez.analog.com/linux-software-drivers
567 F:      drivers/video/backlight/adp8860_bl.c
568
569 ADT746X FAN DRIVER
570 M:      Colin Leroy <colin@colino.net>
571 S:      Maintained
572 F:      drivers/macintosh/therm_adt746x.c
573
574 ADT7475 HARDWARE MONITOR DRIVER
575 M:      Jean Delvare <jdelvare@suse.com>
576 L:      linux-hwmon@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/hwmon/adt7475.rst
579 F:      drivers/hwmon/adt7475.c
580
581 ADVANSYS SCSI DRIVER
582 M:      Matthew Wilcox <willy@infradead.org>
583 M:      Hannes Reinecke <hare@suse.com>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      Documentation/scsi/advansys.rst
587 F:      drivers/scsi/advansys.c
588
589 ADVANTECH SWBTN DRIVER
590 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
591 L:      platform-driver-x86@vger.kernel.org
592 S:      Maintained
593 F:      drivers/platform/x86/adv_swbutton.c
594
595 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
596 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
597 S:      Supported
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
599 F:      drivers/iio/accel/adxl313*
600
601 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
602 M:      Michael Hennerich <michael.hennerich@analog.com>
603 S:      Supported
604 W:      http://wiki.analog.com/ADXL345
605 W:      https://ez.analog.com/linux-software-drivers
606 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
607 F:      drivers/input/misc/adxl34x.c
608
609 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
610 M:      Puranjay Mohan <puranjay12@gmail.com>
611 L:      linux-iio@vger.kernel.org
612 S:      Supported
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
614 F:      drivers/iio/accel/adxl355.h
615 F:      drivers/iio/accel/adxl355_core.c
616 F:      drivers/iio/accel/adxl355_i2c.c
617 F:      drivers/iio/accel/adxl355_spi.c
618
619 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
621 L:      linux-iio@vger.kernel.org
622 S:      Supported
623 W:      https://ez.analog.com/linux-software-drivers
624 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
625 F:      drivers/iio/accel/adxl367*
626
627 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
628 M:      Michael Hennerich <michael.hennerich@analog.com>
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
632 F:      drivers/iio/accel/adxl372.c
633 F:      drivers/iio/accel/adxl372_i2c.c
634 F:      drivers/iio/accel/adxl372_spi.c
635
636 AF9013 MEDIA DRIVER
637 M:      Antti Palosaari <crope@iki.fi>
638 L:      linux-media@vger.kernel.org
639 S:      Maintained
640 W:      https://linuxtv.org
641 W:      http://palosaari.fi/linux/
642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
643 T:      git git://linuxtv.org/anttip/media_tree.git
644 F:      drivers/media/dvb-frontends/af9013*
645
646 AF9033 MEDIA DRIVER
647 M:      Antti Palosaari <crope@iki.fi>
648 L:      linux-media@vger.kernel.org
649 S:      Maintained
650 W:      https://linuxtv.org
651 W:      http://palosaari.fi/linux/
652 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
653 T:      git git://linuxtv.org/anttip/media_tree.git
654 F:      drivers/media/dvb-frontends/af9033*
655
656 AFFS FILE SYSTEM
657 M:      David Sterba <dsterba@suse.com>
658 L:      linux-fsdevel@vger.kernel.org
659 S:      Odd Fixes
660 F:      Documentation/filesystems/affs.rst
661 F:      fs/affs/
662
663 AFS FILESYSTEM
664 M:      David Howells <dhowells@redhat.com>
665 M:      Marc Dionne <marc.dionne@auristor.com>
666 L:      linux-afs@lists.infradead.org
667 S:      Supported
668 W:      https://www.infradead.org/~dhowells/kafs/
669 F:      Documentation/filesystems/afs.rst
670 F:      fs/afs/
671 F:      include/trace/events/afs.h
672
673 AGPGART DRIVER
674 M:      David Airlie <airlied@linux.ie>
675 S:      Maintained
676 T:      git git://anongit.freedesktop.org/drm/drm
677 F:      drivers/char/agp/
678 F:      include/linux/agp*
679 F:      include/uapi/linux/agp*
680
681 AHA152X SCSI DRIVER
682 M:      "Juergen E. Fischer" <fischer@norbit.de>
683 L:      linux-scsi@vger.kernel.org
684 S:      Maintained
685 F:      drivers/scsi/aha152x*
686 F:      drivers/scsi/pcmcia/aha152x*
687
688 AIC7XXX / AIC79XX SCSI DRIVER
689 M:      Hannes Reinecke <hare@suse.com>
690 L:      linux-scsi@vger.kernel.org
691 S:      Maintained
692 F:      drivers/scsi/aic7xxx/
693
694 AIMSLAB FM RADIO RECEIVER DRIVER
695 M:      Hans Verkuil <hverkuil@xs4all.nl>
696 L:      linux-media@vger.kernel.org
697 S:      Maintained
698 W:      https://linuxtv.org
699 T:      git git://linuxtv.org/media_tree.git
700 F:      drivers/media/radio/radio-aimslab*
701
702 AIO
703 M:      Benjamin LaHaise <bcrl@kvack.org>
704 L:      linux-aio@kvack.org
705 S:      Supported
706 F:      fs/aio.c
707 F:      include/linux/*aio*.h
708
709 AIRSPY MEDIA DRIVER
710 M:      Antti Palosaari <crope@iki.fi>
711 L:      linux-media@vger.kernel.org
712 S:      Maintained
713 W:      https://linuxtv.org
714 W:      http://palosaari.fi/linux/
715 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
716 T:      git git://linuxtv.org/anttip/media_tree.git
717 F:      drivers/media/usb/airspy/
718
719 ALACRITECH GIGABIT ETHERNET DRIVER
720 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
721 S:      Maintained
722 F:      drivers/net/ethernet/alacritech/*
723
724 ALCATEL SPEEDTOUCH USB DRIVER
725 M:      Duncan Sands <duncan.sands@free.fr>
726 L:      linux-usb@vger.kernel.org
727 S:      Maintained
728 W:      http://www.linux-usb.org/SpeedTouch/
729 F:      drivers/usb/atm/speedtch.c
730 F:      drivers/usb/atm/usbatm.c
731
732 ALCHEMY AU1XX0 MMC DRIVER
733 M:      Manuel Lauss <manuel.lauss@gmail.com>
734 S:      Maintained
735 F:      drivers/mmc/host/au1xmmc.c
736
737 ALI1563 I2C DRIVER
738 M:      Rudolf Marek <r.marek@assembler.cz>
739 L:      linux-i2c@vger.kernel.org
740 S:      Maintained
741 F:      Documentation/i2c/busses/i2c-ali1563.rst
742 F:      drivers/i2c/busses/i2c-ali1563.c
743
744 ALIBABA ELASTIC RDMA DRIVER
745 M:      Cheng Xu <chengyou@linux.alibaba.com>
746 M:      Kai Shen <kaishen@linux.alibaba.com>
747 L:      linux-rdma@vger.kernel.org
748 S:      Supported
749 F:      drivers/infiniband/hw/erdma
750 F:      include/uapi/rdma/erdma-abi.h
751
752 ALIENWARE WMI DRIVER
753 L:      Dell.Client.Kernel@dell.com
754 S:      Maintained
755 F:      drivers/platform/x86/dell/alienware-wmi.c
756
757 ALLEGRO DVT VIDEO IP CORE DRIVER
758 M:      Michael Tretter <m.tretter@pengutronix.de>
759 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
760 L:      linux-media@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
763 F:      drivers/media/platform/allegro-dvt/
764
765 ALLWINNER A10 CSI DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 T:      git git://linuxtv.org/media_tree.git
770 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
771 F:      drivers/media/platform/sunxi/sun4i-csi/
772
773 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
774 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
775 L:      linux-media@vger.kernel.org
776 S:      Maintained
777 T:      git git://linuxtv.org/media_tree.git
778 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
779 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
780
781 ALLWINNER CPUFREQ DRIVER
782 M:      Yangtao Li <tiny.windzz@gmail.com>
783 L:      linux-pm@vger.kernel.org
784 S:      Maintained
785 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
786 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
787
788 ALLWINNER CRYPTO DRIVERS
789 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
790 L:      linux-crypto@vger.kernel.org
791 S:      Maintained
792 F:      drivers/crypto/allwinner/
793
794 ALLWINNER HARDWARE SPINLOCK SUPPORT
795 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
796 S:      Maintained
797 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
798 F:      drivers/hwspinlock/sun6i_hwspinlock.c
799
800 ALLWINNER THERMAL DRIVER
801 M:      Vasily Khoruzhick <anarsoul@gmail.com>
802 M:      Yangtao Li <tiny.windzz@gmail.com>
803 L:      linux-pm@vger.kernel.org
804 S:      Maintained
805 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
806 F:      drivers/thermal/sun8i_thermal.c
807
808 ALLWINNER VPU DRIVER
809 M:      Maxime Ripard <mripard@kernel.org>
810 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
811 L:      linux-media@vger.kernel.org
812 S:      Maintained
813 F:      drivers/staging/media/sunxi/cedrus/
814
815 ALPHA PORT
816 M:      Richard Henderson <richard.henderson@linaro.org>
817 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
818 M:      Matt Turner <mattst88@gmail.com>
819 L:      linux-alpha@vger.kernel.org
820 S:      Odd Fixes
821 F:      arch/alpha/
822
823 ALPS PS/2 TOUCHPAD DRIVER
824 R:      Pali Rohár <pali@kernel.org>
825 F:      drivers/input/mouse/alps.*
826
827 ALTERA I2C CONTROLLER DRIVER
828 M:      Thor Thayer <thor.thayer@linux.intel.com>
829 S:      Maintained
830 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
831 F:      drivers/i2c/busses/i2c-altera.c
832
833 ALTERA MAILBOX DRIVER
834 M:      Mun Yew Tham <mun.yew.tham@intel.com>
835 S:      Maintained
836 F:      drivers/mailbox/mailbox-altera.c
837
838 ALTERA MSGDMA IP CORE DRIVER
839 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
840 R:      Stefan Roese <sr@denx.de>
841 L:      dmaengine@vger.kernel.org
842 S:      Odd Fixes
843 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
844 F:      drivers/dma/altera-msgdma.c
845
846 ALTERA PIO DRIVER
847 M:      Mun Yew Tham <mun.yew.tham@intel.com>
848 L:      linux-gpio@vger.kernel.org
849 S:      Maintained
850 F:      drivers/gpio/gpio-altera.c
851
852 ALTERA SYSTEM MANAGER DRIVER
853 M:      Thor Thayer <thor.thayer@linux.intel.com>
854 S:      Maintained
855 F:      drivers/mfd/altera-sysmgr.c
856 F:      include/linux/mfd/altera-sysmgr.h
857
858 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
859 M:      Thor Thayer <thor.thayer@linux.intel.com>
860 S:      Maintained
861 F:      drivers/gpio/gpio-altera-a10sr.c
862 F:      drivers/mfd/altera-a10sr.c
863 F:      drivers/reset/reset-a10sr.c
864 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
865 F:      include/linux/mfd/altera-a10sr.h
866
867 ALTERA TRIPLE SPEED ETHERNET DRIVER
868 M:      Joyce Ooi <joyce.ooi@intel.com>
869 L:      netdev@vger.kernel.org
870 S:      Maintained
871 F:      drivers/net/ethernet/altera/
872
873 ALTERA UART/JTAG UART SERIAL DRIVERS
874 M:      Tobias Klauser <tklauser@distanz.ch>
875 L:      linux-serial@vger.kernel.org
876 S:      Maintained
877 F:      drivers/tty/serial/altera_jtaguart.c
878 F:      drivers/tty/serial/altera_uart.c
879 F:      include/linux/altera_jtaguart.h
880 F:      include/linux/altera_uart.h
881
882 AMAZON ANNAPURNA LABS FIC DRIVER
883 M:      Talel Shenhar <talel@amazon.com>
884 S:      Maintained
885 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
886 F:      drivers/irqchip/irq-al-fic.c
887
888 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
889 M:      Talel Shenhar <talel@amazon.com>
890 M:      Talel Shenhar <talelshenhar@gmail.com>
891 S:      Maintained
892 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
893 F:      drivers/edac/al_mc_edac.c
894
895 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
896 M:      Talel Shenhar <talel@amazon.com>
897 S:      Maintained
898 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
899 F:      drivers/thermal/thermal_mmio.c
900
901 AMAZON ETHERNET DRIVERS
902 M:      Shay Agroskin <shayagr@amazon.com>
903 M:      Arthur Kiyanovski <akiyano@amazon.com>
904 R:      David Arinzon <darinzon@amazon.com>
905 R:      Noam Dagan <ndagan@amazon.com>
906 R:      Saeed Bishara <saeedb@amazon.com>
907 L:      netdev@vger.kernel.org
908 S:      Supported
909 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
910 F:      drivers/net/ethernet/amazon/
911
912 AMAZON RDMA EFA DRIVER
913 M:      Gal Pressman <galpress@amazon.com>
914 R:      Yossi Leybovich <sleybo@amazon.com>
915 L:      linux-rdma@vger.kernel.org
916 S:      Supported
917 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
918 F:      drivers/infiniband/hw/efa/
919 F:      include/uapi/rdma/efa-abi.h
920
921 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
922 M:      Tom Lendacky <thomas.lendacky@amd.com>
923 M:      John Allen <john.allen@amd.com>
924 L:      linux-crypto@vger.kernel.org
925 S:      Supported
926 F:      drivers/crypto/ccp/
927 F:      include/linux/ccp.h
928
929 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
930 M:      Brijesh Singh <brijesh.singh@amd.com>
931 M:      Tom Lendacky <thomas.lendacky@amd.com>
932 L:      linux-crypto@vger.kernel.org
933 S:      Supported
934 F:      drivers/crypto/ccp/sev*
935 F:      include/uapi/linux/psp-sev.h
936
937 AMD DISPLAY CORE
938 M:      Harry Wentland <harry.wentland@amd.com>
939 M:      Leo Li <sunpeng.li@amd.com>
940 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
941 L:      amd-gfx@lists.freedesktop.org
942 S:      Supported
943 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
944 F:      drivers/gpu/drm/amd/display/
945
946 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
947 M:      Huang Rui <ray.huang@amd.com>
948 L:      linux-hwmon@vger.kernel.org
949 S:      Supported
950 F:      Documentation/hwmon/fam15h_power.rst
951 F:      drivers/hwmon/fam15h_power.c
952
953 AMD FCH GPIO DRIVER
954 M:      Enrico Weigelt, metux IT consult <info@metux.net>
955 L:      linux-gpio@vger.kernel.org
956 S:      Maintained
957 F:      drivers/gpio/gpio-amd-fch.c
958 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
959
960 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
961 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
962 S:      Orphan
963 F:      drivers/usb/gadget/udc/amd5536udc.*
964
965 AMD GEODE PROCESSOR/CHIPSET SUPPORT
966 M:      Andres Salomon <dilinger@queued.net>
967 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
968 S:      Supported
969 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
970 F:      arch/x86/include/asm/geode.h
971 F:      drivers/char/hw_random/geode-rng.c
972 F:      drivers/crypto/geode*
973 F:      drivers/video/fbdev/geode/
974
975 AMD IOMMU (AMD-VI)
976 M:      Joerg Roedel <joro@8bytes.org>
977 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
978 L:      iommu@lists.linux.dev
979 S:      Maintained
980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
981 F:      drivers/iommu/amd/
982 F:      include/linux/amd-iommu.h
983
984 AMD KFD
985 M:      Felix Kuehling <Felix.Kuehling@amd.com>
986 L:      amd-gfx@lists.freedesktop.org
987 S:      Supported
988 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
989 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
990 F:      drivers/gpu/drm/amd/amdkfd/
991 F:      drivers/gpu/drm/amd/include/cik_structs.h
992 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
993 F:      drivers/gpu/drm/amd/include/v9_structs.h
994 F:      drivers/gpu/drm/amd/include/vi_structs.h
995 F:      include/uapi/linux/kfd_ioctl.h
996 F:      include/uapi/linux/kfd_sysfs.h
997
998 AMD SPI DRIVER
999 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1000 S:      Maintained
1001 F:      drivers/spi/spi-amd.c
1002
1003 AMD MP2 I2C DRIVER
1004 M:      Elie Morisse <syniurge@gmail.com>
1005 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1006 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1007 L:      linux-i2c@vger.kernel.org
1008 S:      Maintained
1009 F:      drivers/i2c/busses/i2c-amd-mp2*
1010
1011 AMD PMC DRIVER
1012 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1013 L:      platform-driver-x86@vger.kernel.org
1014 S:      Maintained
1015 F:      drivers/platform/x86/amd/pmc.c
1016
1017 AMD HSMP DRIVER
1018 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1019 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1020 L:      platform-driver-x86@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/x86/amd_hsmp.rst
1023 F:      arch/x86/include/asm/amd_hsmp.h
1024 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1025 F:      drivers/platform/x86/amd/hsmp.c
1026
1027 AMD POWERPLAY AND SWSMU
1028 M:      Evan Quan <evan.quan@amd.com>
1029 L:      amd-gfx@lists.freedesktop.org
1030 S:      Supported
1031 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1032 F:      drivers/gpu/drm/amd/pm/
1033
1034 AMD PSTATE DRIVER
1035 M:      Huang Rui <ray.huang@amd.com>
1036 L:      linux-pm@vger.kernel.org
1037 S:      Supported
1038 F:      Documentation/admin-guide/pm/amd-pstate.rst
1039 F:      drivers/cpufreq/amd-pstate*
1040 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1041
1042 AMD PTDMA DRIVER
1043 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1044 L:      dmaengine@vger.kernel.org
1045 S:      Maintained
1046 F:      drivers/dma/ptdma/
1047
1048 AMD SEATTLE DEVICE TREE SUPPORT
1049 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1050 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1051 M:      Tom Lendacky <thomas.lendacky@amd.com>
1052 S:      Supported
1053 F:      arch/arm64/boot/dts/amd/
1054
1055 AMD XGBE DRIVER
1056 M:      Tom Lendacky <thomas.lendacky@amd.com>
1057 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1058 L:      netdev@vger.kernel.org
1059 S:      Supported
1060 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1061 F:      drivers/net/ethernet/amd/xgbe/
1062
1063 AMD SENSOR FUSION HUB DRIVER
1064 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1065 L:      linux-input@vger.kernel.org
1066 S:      Maintained
1067 F:      Documentation/hid/amd-sfh*
1068 F:      drivers/hid/amd-sfh-hid/
1069
1070 AMPHION VPU CODEC V4L2 DRIVER
1071 M:      Ming Qian <ming.qian@nxp.com>
1072 M:      Shijie Qin <shijie.qin@nxp.com>
1073 M:      Zhou Peng <eagle.zhou@nxp.com>
1074 L:      linux-media@vger.kernel.org
1075 S:      Maintained
1076 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1077 F:      drivers/media/platform/amphion/
1078
1079 AMS AS73211 DRIVER
1080 M:      Christian Eggers <ceggers@arri.de>
1081 L:      linux-iio@vger.kernel.org
1082 S:      Maintained
1083 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1084 F:      drivers/iio/light/as73211.c
1085
1086 AMT (Automatic Multicast Tunneling)
1087 M:      Taehee Yoo <ap420073@gmail.com>
1088 L:      netdev@vger.kernel.org
1089 S:      Maintained
1090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1092 F:      drivers/net/amt.c
1093
1094 ANALOG DEVICES INC AD7192 DRIVER
1095 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1096 L:      linux-iio@vger.kernel.org
1097 S:      Supported
1098 W:      https://ez.analog.com/linux-software-drivers
1099 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1100 F:      drivers/iio/adc/ad7192.c
1101
1102 ANALOG DEVICES INC AD7292 DRIVER
1103 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1104 L:      linux-iio@vger.kernel.org
1105 S:      Supported
1106 W:      https://ez.analog.com/linux-software-drivers
1107 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1108 F:      drivers/iio/adc/ad7292.c
1109
1110 ANALOG DEVICES INC AD3552R DRIVER
1111 M:      Nuno Sá <nuno.sa@analog.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1116 F:      drivers/iio/dac/ad3552r.c
1117
1118 ANALOG DEVICES INC AD7293 DRIVER
1119 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      https://ez.analog.com/linux-software-drivers
1123 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1124 F:      drivers/iio/dac/ad7293.c
1125
1126 ANALOG DEVICES INC AD7768-1 DRIVER
1127 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1128 L:      linux-iio@vger.kernel.org
1129 S:      Supported
1130 W:      https://ez.analog.com/linux-software-drivers
1131 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1132 F:      drivers/iio/adc/ad7768-1.c
1133
1134 ANALOG DEVICES INC AD7780 DRIVER
1135 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1136 M:      Renato Lui Geh <renatogeh@gmail.com>
1137 L:      linux-iio@vger.kernel.org
1138 S:      Supported
1139 W:      https://ez.analog.com/linux-software-drivers
1140 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1141 F:      drivers/iio/adc/ad7780.c
1142
1143 ANALOG DEVICES INC AD74413R DRIVER
1144 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1145 L:      linux-iio@vger.kernel.org
1146 S:      Supported
1147 W:      https://ez.analog.com/linux-software-drivers
1148 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1149 F:      drivers/iio/addac/ad74413r.c
1150 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1151
1152 ANALOG DEVICES INC AD9389B DRIVER
1153 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1154 L:      linux-media@vger.kernel.org
1155 S:      Maintained
1156 F:      drivers/media/i2c/ad9389b*
1157
1158 ANALOG DEVICES INC ADA4250 DRIVER
1159 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1160 L:      linux-iio@vger.kernel.org
1161 S:      Supported
1162 W:      https://ez.analog.com/linux-software-drivers
1163 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1164 F:      drivers/iio/amplifiers/ada4250.c
1165
1166 ANALOG DEVICES INC ADGS1408 DRIVER
1167 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1168 S:      Supported
1169 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1170 F:      drivers/mux/adgs1408.c
1171
1172 ANALOG DEVICES INC ADIN DRIVER
1173 M:      Michael Hennerich <michael.hennerich@analog.com>
1174 L:      netdev@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1178 F:      drivers/net/phy/adin.c
1179
1180 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1181 M:      Nuno Sa <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 S:      Supported
1184 F:      drivers/iio/imu/adis.c
1185 F:      drivers/iio/imu/adis_buffer.c
1186 F:      drivers/iio/imu/adis_trigger.c
1187 F:      include/linux/iio/imu/adis.h
1188
1189 ANALOG DEVICES INC ADIS16460 DRIVER
1190 M:      Dragos Bogdan <dragos.bogdan@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/imu/adi,adis16460.yaml
1195 F:      drivers/iio/imu/adis16460.c
1196
1197 ANALOG DEVICES INC ADIS16475 DRIVER
1198 M:      Nuno Sa <nuno.sa@analog.com>
1199 L:      linux-iio@vger.kernel.org
1200 W:      https://ez.analog.com/linux-software-drivers
1201 S:      Supported
1202 F:      drivers/iio/imu/adis16475.c
1203 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1204
1205 ANALOG DEVICES INC ADM1177 DRIVER
1206 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1207 L:      linux-hwmon@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1211 F:      drivers/hwmon/adm1177.c
1212
1213 ANALOG DEVICES INC ADMV1013 DRIVER
1214 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1215 L:      linux-iio@vger.kernel.org
1216 S:      Supported
1217 W:      https://ez.analog.com/linux-software-drivers
1218 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1219 F:      drivers/iio/frequency/admv1013.c
1220
1221 ANALOG DEVICES INC ADMV8818 DRIVER
1222 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1223 L:      linux-iio@vger.kernel.org
1224 S:      Supported
1225 W:      https://ez.analog.com/linux-software-drivers
1226 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1227 F:      drivers/iio/filter/admv8818.c
1228
1229 ANALOG DEVICES INC ADMV1014 DRIVER
1230 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1231 L:      linux-iio@vger.kernel.org
1232 S:      Supported
1233 W:      https://ez.analog.com/linux-software-drivers
1234 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1235 F:      drivers/iio/frequency/admv1014.c
1236
1237 ANALOG DEVICES INC ADP5061 DRIVER
1238 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1239 L:      linux-pm@vger.kernel.org
1240 S:      Supported
1241 W:      https://ez.analog.com/linux-software-drivers
1242 F:      drivers/power/supply/adp5061.c
1243
1244 ANALOG DEVICES INC ADRF6780 DRIVER
1245 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1246 L:      linux-iio@vger.kernel.org
1247 S:      Supported
1248 W:      https://ez.analog.com/linux-software-drivers
1249 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1250 F:      drivers/iio/frequency/adrf6780.c
1251
1252 ANALOG DEVICES INC ADV7180 DRIVER
1253 M:      Lars-Peter Clausen <lars@metafoo.de>
1254 L:      linux-media@vger.kernel.org
1255 S:      Supported
1256 W:      https://ez.analog.com/linux-software-drivers
1257 F:      drivers/media/i2c/adv7180.c
1258 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1259
1260 ANALOG DEVICES INC ADV748X DRIVER
1261 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1262 L:      linux-media@vger.kernel.org
1263 S:      Maintained
1264 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1265 F:      drivers/media/i2c/adv748x/*
1266
1267 ANALOG DEVICES INC ADV7511 DRIVER
1268 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1269 L:      linux-media@vger.kernel.org
1270 S:      Maintained
1271 F:      drivers/media/i2c/adv7511*
1272
1273 ANALOG DEVICES INC ADV7604 DRIVER
1274 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1275 L:      linux-media@vger.kernel.org
1276 S:      Maintained
1277 F:      drivers/media/i2c/adv7604*
1278 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1279
1280 ANALOG DEVICES INC ADV7842 DRIVER
1281 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1282 L:      linux-media@vger.kernel.org
1283 S:      Maintained
1284 F:      drivers/media/i2c/adv7842*
1285
1286 ANALOG DEVICES INC ADXRS290 DRIVER
1287 M:      Nishant Malpani <nish.malpani25@gmail.com>
1288 L:      linux-iio@vger.kernel.org
1289 S:      Supported
1290 F:      drivers/iio/gyro/adxrs290.c
1291 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1292
1293 ANALOG DEVICES INC ASOC CODEC DRIVERS
1294 M:      Lars-Peter Clausen <lars@metafoo.de>
1295 M:      Nuno Sá <nuno.sa@analog.com>
1296 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1297 S:      Supported
1298 W:      http://wiki.analog.com/
1299 W:      https://ez.analog.com/linux-software-drivers
1300 F:      sound/soc/codecs/ad1*
1301 F:      sound/soc/codecs/ad7*
1302 F:      sound/soc/codecs/adau*
1303 F:      sound/soc/codecs/adav*
1304 F:      sound/soc/codecs/sigmadsp.*
1305 F:      sound/soc/codecs/ssm*
1306
1307 ANALOG DEVICES INC DMA DRIVERS
1308 M:      Lars-Peter Clausen <lars@metafoo.de>
1309 S:      Supported
1310 W:      https://ez.analog.com/linux-software-drivers
1311 F:      drivers/dma/dma-axi-dmac.c
1312
1313 ANALOG DEVICES INC IIO DRIVERS
1314 M:      Lars-Peter Clausen <lars@metafoo.de>
1315 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1316 S:      Supported
1317 W:      http://wiki.analog.com/
1318 W:      https://ez.analog.com/linux-software-drivers
1319 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1320 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1321 F:      Documentation/devicetree/bindings/iio/*/adi,*
1322 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1323 F:      drivers/iio/*/ad*
1324 F:      drivers/iio/adc/ltc249*
1325 F:      drivers/iio/amplifiers/hmc425a.c
1326 F:      drivers/staging/iio/*/ad*
1327 X:      drivers/iio/*/adjd*
1328
1329 ANALOGBITS PLL LIBRARIES
1330 M:      Paul Walmsley <paul.walmsley@sifive.com>
1331 S:      Supported
1332 F:      drivers/clk/analogbits/*
1333 F:      include/linux/clk/analogbits*
1334
1335 ANDROID CONFIG FRAGMENTS
1336 M:      Rob Herring <robh@kernel.org>
1337 S:      Supported
1338 F:      kernel/configs/android*
1339
1340 ANDROID DRIVERS
1341 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1342 M:      Arve Hjønnevåg <arve@android.com>
1343 M:      Todd Kjos <tkjos@android.com>
1344 M:      Martijn Coenen <maco@android.com>
1345 M:      Joel Fernandes <joel@joelfernandes.org>
1346 M:      Christian Brauner <christian@brauner.io>
1347 M:      Carlos Llamas <cmllamas@google.com>
1348 M:      Suren Baghdasaryan <surenb@google.com>
1349 L:      linux-kernel@vger.kernel.org
1350 S:      Supported
1351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1352 F:      drivers/android/
1353
1354 ANDROID GOLDFISH PIC DRIVER
1355 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1356 S:      Supported
1357 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1358 F:      drivers/irqchip/irq-goldfish-pic.c
1359
1360 ANDROID GOLDFISH RTC DRIVER
1361 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1362 S:      Supported
1363 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1364 F:      drivers/rtc/rtc-goldfish.c
1365
1366 AOA (Apple Onboard Audio) ALSA DRIVER
1367 M:      Johannes Berg <johannes@sipsolutions.net>
1368 L:      linuxppc-dev@lists.ozlabs.org
1369 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      sound/aoa/
1372
1373 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1374 M:      William Breathitt Gray <william.gray@linaro.org>
1375 L:      linux-iio@vger.kernel.org
1376 S:      Maintained
1377 F:      drivers/iio/addac/stx104.c
1378
1379 APM DRIVER
1380 M:      Jiri Kosina <jikos@kernel.org>
1381 S:      Odd fixes
1382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1383 F:      arch/x86/kernel/apm_32.c
1384 F:      drivers/char/apm-emulation.c
1385 F:      include/linux/apm_bios.h
1386 F:      include/uapi/linux/apm_bios.h
1387
1388 APPARMOR SECURITY MODULE
1389 M:      John Johansen <john.johansen@canonical.com>
1390 M:      John Johansen <john@apparmor.net>
1391 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1392 S:      Supported
1393 W:      apparmor.net
1394 B:      https://gitlab.com/apparmor/apparmor-kernel
1395 C:      irc://irc.oftc.net/apparmor
1396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1397 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1398 F:      Documentation/admin-guide/LSM/apparmor.rst
1399 F:      security/apparmor/
1400
1401 APPLE BCM5974 MULTITOUCH DRIVER
1402 M:      Henrik Rydberg <rydberg@bitmath.org>
1403 L:      linux-input@vger.kernel.org
1404 S:      Odd fixes
1405 F:      drivers/input/mouse/bcm5974.c
1406
1407 APPLE PCIE CONTROLLER DRIVER
1408 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1409 M:      Marc Zyngier <maz@kernel.org>
1410 L:      linux-pci@vger.kernel.org
1411 S:      Maintained
1412 F:      drivers/pci/controller/pcie-apple.c
1413
1414 APPLE SMC DRIVER
1415 M:      Henrik Rydberg <rydberg@bitmath.org>
1416 L:      linux-hwmon@vger.kernel.org
1417 S:      Odd fixes
1418 F:      drivers/hwmon/applesmc.c
1419
1420 APPLETALK NETWORK LAYER
1421 L:      netdev@vger.kernel.org
1422 S:      Odd fixes
1423 F:      drivers/net/appletalk/
1424 F:      include/linux/atalk.h
1425 F:      include/uapi/linux/atalk.h
1426 F:      net/appletalk/
1427
1428 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1429 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1430 S:      Supported
1431 F:      arch/arm64/boot/dts/apm/
1432
1433 APPLIED MICRO (APM) X-GENE SOC EDAC
1434 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1435 S:      Supported
1436 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1437 F:      drivers/edac/xgene_edac.c
1438
1439 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1440 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1441 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1442 S:      Supported
1443 F:      drivers/net/ethernet/apm/xgene-v2/
1444
1445 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1446 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1447 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1448 M:      Quan Nguyen <quan@os.amperecomputing.com>
1449 S:      Supported
1450 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1451 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1452 F:      drivers/net/ethernet/apm/xgene/
1453 F:      drivers/net/mdio/mdio-xgene.c
1454
1455 APPLIED MICRO (APM) X-GENE SOC PMU
1456 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1457 S:      Supported
1458 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1459 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1460 F:      drivers/perf/xgene_pmu.c
1461
1462 APTINA CAMERA SENSOR PLL
1463 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1464 L:      linux-media@vger.kernel.org
1465 S:      Maintained
1466 F:      drivers/media/i2c/aptina-pll.*
1467
1468 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1469 M:      Aleksa Savic <savicaleksa83@gmail.com>
1470 M:      Jack Doan <me@jackdoan.com>
1471 L:      linux-hwmon@vger.kernel.org
1472 S:      Maintained
1473 F:      Documentation/hwmon/aquacomputer_d5next.rst
1474 F:      drivers/hwmon/aquacomputer_d5next.c
1475
1476 AQUANTIA ETHERNET DRIVER (atlantic)
1477 M:      Igor Russkikh <irusskikh@marvell.com>
1478 L:      netdev@vger.kernel.org
1479 S:      Supported
1480 W:      https://www.marvell.com/
1481 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1482 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1483 F:      drivers/net/ethernet/aquantia/atlantic/
1484
1485 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1486 M:      Egor Pomozov <epomozov@marvell.com>
1487 L:      netdev@vger.kernel.org
1488 S:      Supported
1489 W:      http://www.aquantia.com
1490 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1491
1492 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1493 M:      Krzysztof Hałasa <khalasa@piap.pl>
1494 L:      linux-media@vger.kernel.org
1495 S:      Maintained
1496 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1497 F:      drivers/media/i2c/ar0521.c
1498
1499 ARASAN NAND CONTROLLER DRIVER
1500 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1501 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1502 L:      linux-mtd@lists.infradead.org
1503 S:      Maintained
1504 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1505 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1506
1507 ARC FRAMEBUFFER DRIVER
1508 M:      Jaya Kumar <jayalk@intworks.biz>
1509 S:      Maintained
1510 F:      drivers/video/fbdev/arcfb.c
1511 F:      drivers/video/fbdev/core/fb_defio.c
1512
1513 ARC PGU DRM DRIVER
1514 M:      Alexey Brodkin <abrodkin@synopsys.com>
1515 S:      Supported
1516 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1517 F:      drivers/gpu/drm/tiny/arcpgu.c
1518
1519 ARCNET NETWORK LAYER
1520 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1521 L:      netdev@vger.kernel.org
1522 S:      Maintained
1523 F:      drivers/net/arcnet/
1524 F:      include/uapi/linux/if_arcnet.h
1525
1526 ARM ARCHITECTED TIMER DRIVER
1527 M:      Mark Rutland <mark.rutland@arm.com>
1528 M:      Marc Zyngier <maz@kernel.org>
1529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1530 S:      Maintained
1531 F:      arch/arm/include/asm/arch_timer.h
1532 F:      arch/arm64/include/asm/arch_timer.h
1533 F:      drivers/clocksource/arm_arch_timer.c
1534
1535 ARM HDLCD DRM DRIVER
1536 M:      Liviu Dudau <liviu.dudau@arm.com>
1537 S:      Supported
1538 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1539 F:      drivers/gpu/drm/arm/hdlcd_*
1540
1541 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1542 M:      Linus Walleij <linus.walleij@linaro.org>
1543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1544 S:      Maintained
1545 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1546 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1547 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1548 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1549 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1550 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1551 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1552 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1553 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1554 F:      arch/arm/boot/dts/arm-realview-*
1555 F:      arch/arm/boot/dts/integrator*
1556 F:      arch/arm/boot/dts/versatile*
1557 F:      arch/arm/mach-versatile/
1558 F:      drivers/bus/arm-integrator-lm.c
1559 F:      drivers/clk/versatile/
1560 F:      drivers/i2c/busses/i2c-versatile.c
1561 F:      drivers/irqchip/irq-versatile-fpga.c
1562 F:      drivers/mtd/maps/physmap-versatile.*
1563 F:      drivers/power/reset/arm-versatile-reboot.c
1564 F:      drivers/soc/versatile/
1565
1566 ARM KOMEDA DRM-KMS DRIVER
1567 M:      James (Qian) Wang <james.qian.wang@arm.com>
1568 M:      Liviu Dudau <liviu.dudau@arm.com>
1569 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1570 L:      Mali DP Maintainers <malidp@foss.arm.com>
1571 S:      Supported
1572 T:      git git://anongit.freedesktop.org/drm/drm-misc
1573 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1574 F:      Documentation/gpu/komeda-kms.rst
1575 F:      drivers/gpu/drm/arm/display/include/
1576 F:      drivers/gpu/drm/arm/display/komeda/
1577
1578 ARM MALI PANFROST DRM DRIVER
1579 M:      Rob Herring <robh@kernel.org>
1580 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1581 R:      Steven Price <steven.price@arm.com>
1582 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1583 L:      dri-devel@lists.freedesktop.org
1584 S:      Supported
1585 T:      git git://anongit.freedesktop.org/drm/drm-misc
1586 F:      drivers/gpu/drm/panfrost/
1587 F:      include/uapi/drm/panfrost_drm.h
1588
1589 ARM MALI-DP DRM DRIVER
1590 M:      Liviu Dudau <liviu.dudau@arm.com>
1591 M:      Brian Starkey <brian.starkey@arm.com>
1592 L:      Mali DP Maintainers <malidp@foss.arm.com>
1593 S:      Supported
1594 T:      git git://anongit.freedesktop.org/drm/drm-misc
1595 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1596 F:      Documentation/gpu/afbc.rst
1597 F:      drivers/gpu/drm/arm/
1598
1599 ARM MFM AND FLOPPY DRIVERS
1600 M:      Ian Molton <spyro@f2s.com>
1601 S:      Maintained
1602 F:      arch/arm/include/asm/floppy.h
1603 F:      arch/arm/mach-rpc/floppydma.S
1604
1605 ARM PMU PROFILING AND DEBUGGING
1606 M:      Will Deacon <will@kernel.org>
1607 M:      Mark Rutland <mark.rutland@arm.com>
1608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1609 S:      Maintained
1610 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1611 F:      Documentation/devicetree/bindings/perf/
1612 F:      arch/arm*/include/asm/hw_breakpoint.h
1613 F:      arch/arm*/include/asm/perf_event.h
1614 F:      arch/arm*/kernel/hw_breakpoint.c
1615 F:      arch/arm*/kernel/perf_*
1616 F:      drivers/perf/
1617 F:      include/linux/perf/arm_pmu.h
1618
1619 ARM PORT
1620 M:      Russell King <linux@armlinux.org.uk>
1621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1622 S:      Odd Fixes
1623 W:      http://www.armlinux.org.uk/
1624 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1625 F:      arch/arm/
1626 X:      arch/arm/boot/dts/
1627
1628 ARM PRIMECELL AACI PL041 DRIVER
1629 M:      Russell King <linux@armlinux.org.uk>
1630 S:      Odd Fixes
1631 F:      sound/arm/aaci.*
1632
1633 ARM PRIMECELL BUS SUPPORT
1634 M:      Russell King <linux@armlinux.org.uk>
1635 S:      Odd Fixes
1636 F:      drivers/amba/
1637 F:      include/linux/amba/bus.h
1638
1639 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1640 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1641 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1642 L:      linux-mtd@lists.infradead.org
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1645 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1646
1647 ARM PRIMECELL PL35X SMC DRIVER
1648 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1649 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 S:      Maintained
1652 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1653 F:      drivers/memory/pl353-smc.c
1654
1655 ARM PRIMECELL CLCD PL110 DRIVER
1656 M:      Russell King <linux@armlinux.org.uk>
1657 S:      Odd Fixes
1658 F:      drivers/video/fbdev/amba-clcd.*
1659
1660 ARM PRIMECELL KMI PL050 DRIVER
1661 M:      Russell King <linux@armlinux.org.uk>
1662 S:      Odd Fixes
1663 F:      drivers/input/serio/ambakmi.*
1664 F:      include/linux/amba/kmi.h
1665
1666 ARM PRIMECELL MMCI PL180/1 DRIVER
1667 M:      Russell King <linux@armlinux.org.uk>
1668 S:      Odd Fixes
1669 F:      drivers/mmc/host/mmci.*
1670 F:      include/linux/amba/mmci.h
1671
1672 ARM PRIMECELL SSP PL022 SPI DRIVER
1673 M:      Linus Walleij <linus.walleij@linaro.org>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1677 F:      drivers/spi/spi-pl022.c
1678
1679 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1680 M:      Russell King <linux@armlinux.org.uk>
1681 S:      Odd Fixes
1682 F:      drivers/tty/serial/amba-pl01*.c
1683 F:      include/linux/amba/serial.h
1684
1685 ARM PRIMECELL VIC PL190/PL192 DRIVER
1686 M:      Linus Walleij <linus.walleij@linaro.org>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1690 F:      drivers/irqchip/irq-vic.c
1691
1692 ARM SMC WATCHDOG DRIVER
1693 M:      Julius Werner <jwerner@chromium.org>
1694 R:      Evan Benn <evanbenn@chromium.org>
1695 S:      Maintained
1696 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1697 F:      drivers/watchdog/arm_smc_wdt.c
1698
1699 ARM SMMU DRIVERS
1700 M:      Will Deacon <will@kernel.org>
1701 R:      Robin Murphy <robin.murphy@arm.com>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 S:      Maintained
1704 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1705 F:      drivers/iommu/arm/
1706 F:      drivers/iommu/io-pgtable-arm*
1707
1708 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1709 M:      Arnd Bergmann <arnd@arndb.de>
1710 M:      Olof Johansson <olof@lixom.net>
1711 M:      soc@kernel.org
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 C:      irc://irc.libera.chat/armlinux
1715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1716 F:      arch/arm/boot/dts/Makefile
1717 F:      arch/arm64/boot/dts/Makefile
1718
1719 ARM SUB-ARCHITECTURES
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 C:      irc://irc.libera.chat/armlinux
1723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1724 F:      arch/arm/mach-*/
1725 F:      arch/arm/plat-*/
1726
1727 ARM/ACTIONS SEMI ARCHITECTURE
1728 M:      Andreas Färber <afaerber@suse.de>
1729 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1731 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1732 S:      Maintained
1733 F:      Documentation/devicetree/bindings/arm/actions.yaml
1734 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1735 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1736 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1737 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1738 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1739 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1740 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1741 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1742 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1743 F:      arch/arm/boot/dts/owl-*
1744 F:      arch/arm/mach-actions/
1745 F:      arch/arm64/boot/dts/actions/
1746 F:      drivers/clk/actions/
1747 F:      drivers/clocksource/timer-owl*
1748 F:      drivers/dma/owl-dma.c
1749 F:      drivers/i2c/busses/i2c-owl.c
1750 F:      drivers/irqchip/irq-owl-sirq.c
1751 F:      drivers/mmc/host/owl-mmc.c
1752 F:      drivers/net/ethernet/actions/
1753 F:      drivers/pinctrl/actions/*
1754 F:      drivers/soc/actions/
1755 F:      include/dt-bindings/power/owl-*
1756 F:      include/dt-bindings/reset/actions,*
1757 F:      include/linux/soc/actions/
1758 N:      owl
1759
1760 ARM/ADS SPHERE MACHINE SUPPORT
1761 M:      Lennert Buytenhek <kernel@wantstofly.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764
1765 ARM/AFEB9260 MACHINE SUPPORT
1766 M:      Sergey Lapin <slapin@ossfans.org>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769
1770 ARM/AJECO 1ARM MACHINE SUPPORT
1771 M:      Lennert Buytenhek <kernel@wantstofly.org>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 S:      Maintained
1774
1775 ARM/Allwinner SoC Clock Support
1776 M:      Emilio López <emilio@elopez.com.ar>
1777 S:      Maintained
1778 F:      drivers/clk/sunxi/
1779
1780 ARM/Allwinner sunXi SoC support
1781 M:      Chen-Yu Tsai <wens@csie.org>
1782 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1783 M:      Samuel Holland <samuel@sholland.org>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1787 L:      linux-sunxi@lists.linux.dev
1788 F:      arch/arm/mach-sunxi/
1789 F:      arch/arm64/boot/dts/allwinner/
1790 F:      drivers/clk/sunxi-ng/
1791 F:      drivers/pinctrl/sunxi/
1792 F:      drivers/soc/sunxi/
1793 N:      allwinner
1794 N:      sun[x456789]i
1795 N:      sun50i
1796
1797 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1798 M:      Neil Armstrong <narmstrong@baylibre.com>
1799 M:      Jerome Brunet <jbrunet@baylibre.com>
1800 L:      linux-amlogic@lists.infradead.org
1801 S:      Maintained
1802 F:      Documentation/devicetree/bindings/clock/amlogic*
1803 F:      drivers/clk/meson/
1804 F:      include/dt-bindings/clock/gxbb*
1805 F:      include/dt-bindings/clock/meson*
1806
1807 ARM/Amlogic Meson SoC Crypto Drivers
1808 M:      Corentin Labbe <clabbe@baylibre.com>
1809 L:      linux-crypto@vger.kernel.org
1810 L:      linux-amlogic@lists.infradead.org
1811 S:      Maintained
1812 F:      Documentation/devicetree/bindings/crypto/amlogic*
1813 F:      drivers/crypto/amlogic/
1814
1815 ARM/Amlogic Meson SoC Sound Drivers
1816 M:      Jerome Brunet <jbrunet@baylibre.com>
1817 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1818 S:      Maintained
1819 F:      Documentation/devicetree/bindings/sound/amlogic*
1820 F:      sound/soc/meson/
1821
1822 ARM/Amlogic Meson SoC support
1823 M:      Neil Armstrong <narmstrong@baylibre.com>
1824 M:      Kevin Hilman <khilman@baylibre.com>
1825 R:      Jerome Brunet <jbrunet@baylibre.com>
1826 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 L:      linux-amlogic@lists.infradead.org
1829 S:      Maintained
1830 W:      http://linux-meson.com/
1831 F:      arch/arm/boot/dts/meson*
1832 F:      arch/arm/mach-meson/
1833 F:      arch/arm64/boot/dts/amlogic/
1834 F:      drivers/mmc/host/meson*
1835 F:      drivers/pinctrl/meson/
1836 F:      drivers/rtc/rtc-meson*
1837 F:      drivers/soc/amlogic/
1838 N:      meson
1839
1840 ARM/Annapurna Labs ALPINE ARCHITECTURE
1841 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1842 M:      Antoine Tenart <atenart@kernel.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845 F:      arch/arm/boot/dts/alpine*
1846 F:      arch/arm/mach-alpine/
1847 F:      arch/arm64/boot/dts/amazon/
1848 F:      drivers/*/*alpine*
1849
1850 ARM/APPLE MACHINE SUPPORT
1851 M:      Hector Martin <marcan@marcan.st>
1852 M:      Sven Peter <sven@svenpeter.dev>
1853 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1854 L:      asahi@lists.linux.dev
1855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1856 S:      Maintained
1857 W:      https://asahilinux.org
1858 B:      https://github.com/AsahiLinux/linux/issues
1859 C:      irc://irc.oftc.net/asahi-dev
1860 T:      git https://github.com/AsahiLinux/linux.git
1861 F:      Documentation/devicetree/bindings/arm/apple.yaml
1862 F:      Documentation/devicetree/bindings/arm/apple/*
1863 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1864 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1865 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1866 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1867 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1868 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1869 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1870 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1871 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1872 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1873 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1874 F:      Documentation/devicetree/bindings/power/apple*
1875 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1876 F:      arch/arm64/boot/dts/apple/
1877 F:      drivers/clk/clk-apple-nco.c
1878 F:      drivers/dma/apple-admac.c
1879 F:      drivers/i2c/busses/i2c-pasemi-core.c
1880 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1881 F:      drivers/iommu/apple-dart.c
1882 F:      drivers/irqchip/irq-apple-aic.c
1883 F:      drivers/mailbox/apple-mailbox.c
1884 F:      drivers/nvme/host/apple.c
1885 F:      drivers/nvmem/apple-efuses.c
1886 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1887 F:      drivers/soc/apple/*
1888 F:      drivers/watchdog/apple_wdt.c
1889 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1890 F:      include/dt-bindings/pinctrl/apple.h
1891 F:      include/linux/apple-mailbox.h
1892 F:      include/linux/soc/apple/*
1893
1894 ARM/ARTPEC MACHINE SUPPORT
1895 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1896 M:      Lars Persson <lars.persson@axis.com>
1897 L:      linux-arm-kernel@axis.com
1898 S:      Maintained
1899 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1900 F:      arch/arm/boot/dts/artpec6*
1901 F:      arch/arm/mach-artpec
1902 F:      drivers/clk/axis
1903 F:      drivers/crypto/axis
1904 F:      drivers/mmc/host/usdhi6rol0.c
1905 F:      drivers/pinctrl/pinctrl-artpec*
1906
1907 ARM/ASPEED I2C DRIVER
1908 M:      Brendan Higgins <brendanhiggins@google.com>
1909 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1910 R:      Joel Stanley <joel@jms.id.au>
1911 L:      linux-i2c@vger.kernel.org
1912 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1913 S:      Maintained
1914 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1915 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1916 F:      drivers/i2c/busses/i2c-aspeed.c
1917 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1918
1919 ARM/ASPEED MACHINE SUPPORT
1920 M:      Joel Stanley <joel@jms.id.au>
1921 R:      Andrew Jeffery <andrew@aj.id.au>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1924 S:      Supported
1925 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1927 F:      Documentation/devicetree/bindings/arm/aspeed/
1928 F:      arch/arm/boot/dts/aspeed-*
1929 F:      arch/arm/mach-aspeed/
1930 N:      aspeed
1931
1932 ARM/BITMAIN ARCHITECTURE
1933 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1937 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1938 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1939 F:      arch/arm64/boot/dts/bitmain/
1940 F:      drivers/clk/clk-bm1880.c
1941 F:      drivers/pinctrl/pinctrl-bm1880.c
1942
1943 ARM/CALXEDA HIGHBANK ARCHITECTURE
1944 M:      Andre Przywara <andre.przywara@arm.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      arch/arm/boot/dts/ecx-*.dts*
1948 F:      arch/arm/boot/dts/highbank.dts
1949 F:      arch/arm/mach-highbank/
1950
1951 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1952 M:      Krzysztof Halasa <khalasa@piap.pl>
1953 S:      Maintained
1954 F:      arch/arm/mach-cns3xxx/
1955
1956 ARM/CAVIUM THUNDER NETWORK DRIVER
1957 M:      Sunil Goutham <sgoutham@marvell.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Supported
1960 F:      drivers/net/ethernet/cavium/thunder/
1961
1962 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1963 M:      Lukasz Majewski <lukma@denx.de>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 F:      arch/arm/mach-ep93xx/ts72xx.c
1967
1968 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1969 M:      Alexander Shiyan <shc_work@mail.ru>
1970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1971 S:      Odd Fixes
1972 N:      clps711x
1973
1974 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1975 M:      Lennert Buytenhek <kernel@wantstofly.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1980 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1981 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      arch/arm/mach-ep93xx/
1985 F:      arch/arm/mach-ep93xx/include/mach/
1986
1987 ARM/CLKDEV SUPPORT
1988 M:      Russell King <linux@armlinux.org.uk>
1989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1990 S:      Maintained
1991 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1992 F:      drivers/clk/clkdev.c
1993
1994 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1995 M:      Baruch Siach <baruch@tkos.co.il>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998 F:      arch/arm/boot/dts/cx92755*
1999 N:      digicolor
2000
2001 ARM/CONTEC MICRO9 MACHINE SUPPORT
2002 M:      Hubert Feurstein <hubert.feurstein@contec.at>
2003 S:      Maintained
2004 F:      arch/arm/mach-ep93xx/micro9.c
2005
2006 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2007 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2008 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2009 R:      Mike Leach <mike.leach@linaro.org>
2010 R:      Leo Yan <leo.yan@linaro.org>
2011 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 S:      Maintained
2014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2015 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2016 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2017 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2018 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2019 F:      Documentation/trace/coresight/*
2020 F:      drivers/hwtracing/coresight/*
2021 F:      include/dt-bindings/arm/coresight-cti-dt.h
2022 F:      include/linux/coresight*
2023 F:      samples/coresight/*
2024 F:      tools/perf/arch/arm/util/auxtrace.c
2025 F:      tools/perf/arch/arm/util/cs-etm.c
2026 F:      tools/perf/arch/arm/util/cs-etm.h
2027 F:      tools/perf/arch/arm/util/pmu.c
2028 F:      tools/perf/util/cs-etm-decoder/*
2029 F:      tools/perf/util/cs-etm.*
2030
2031 ARM/CORGI MACHINE SUPPORT
2032 M:      Richard Purdie <rpurdie@rpsys.net>
2033 S:      Maintained
2034
2035 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2036 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2037 M:      Linus Walleij <linus.walleij@linaro.org>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Maintained
2040 T:      git git://github.com/ulli-kroll/linux.git
2041 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2042 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2043 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2044 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2045 F:      arch/arm/boot/dts/gemini*
2046 F:      arch/arm/mach-gemini/
2047 F:      drivers/crypto/gemini/
2048 F:      drivers/net/ethernet/cortina/
2049 F:      drivers/pinctrl/pinctrl-gemini.c
2050 F:      drivers/rtc/rtc-ftrtc010.c
2051
2052 ARM/CZ.NIC TURRIS SUPPORT
2053 M:      Marek Behún <kabel@kernel.org>
2054 S:      Maintained
2055 W:      https://www.turris.cz/
2056 F:      Documentation/ABI/testing/debugfs-moxtet
2057 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2058 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2059 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2060 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2061 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2062 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2063 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2064 F:      drivers/bus/moxtet.c
2065 F:      drivers/firmware/turris-mox-rwtm.c
2066 F:      drivers/leds/leds-turris-omnia.c
2067 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2068 F:      drivers/gpio/gpio-moxtet.c
2069 F:      drivers/watchdog/armada_37xx_wdt.c
2070 F:      include/dt-bindings/bus/moxtet.h
2071 F:      include/linux/armada-37xx-rwtm-mailbox.h
2072 F:      include/linux/moxtet.h
2073
2074 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2075 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 F:      arch/arm/mach-pxa/ezx.c
2079
2080 ARM/FARADAY FA526 PORT
2081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2083 S:      Maintained
2084 T:      git git://git.berlios.de/gemini-board
2085 F:      arch/arm/mm/*-fa*
2086
2087 ARM/FOOTBRIDGE ARCHITECTURE
2088 M:      Russell King <linux@armlinux.org.uk>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 W:      http://www.armlinux.org.uk/
2092 F:      arch/arm/include/asm/hardware/dec21285.h
2093 F:      arch/arm/mach-footbridge/
2094
2095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2096 M:      Shawn Guo <shawnguo@kernel.org>
2097 M:      Sascha Hauer <s.hauer@pengutronix.de>
2098 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2099 R:      Fabio Estevam <festevam@gmail.com>
2100 R:      NXP Linux Team <linux-imx@nxp.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2104 X:      drivers/media/i2c/
2105 N:      imx
2106 N:      mxs
2107
2108 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2109 M:      Shawn Guo <shawnguo@kernel.org>
2110 M:      Li Yang <leoyang.li@nxp.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2114 F:      arch/arm/boot/dts/ls1021a*
2115 F:      arch/arm64/boot/dts/freescale/fsl-*
2116 F:      arch/arm64/boot/dts/freescale/qoriq-*
2117
2118 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2119 M:      Shawn Guo <shawnguo@kernel.org>
2120 M:      Sascha Hauer <s.hauer@pengutronix.de>
2121 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2122 R:      Stefan Agner <stefan@agner.ch>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2126 F:      arch/arm/boot/dts/vf*
2127 F:      arch/arm/mach-imx/*vf610*
2128
2129 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2130 M:      Lennert Buytenhek <kernel@wantstofly.org>
2131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2132 S:      Maintained
2133
2134 ARM/GUMSTIX MACHINE SUPPORT
2135 M:      Steve Sakoman <sakoman@gmail.com>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Maintained
2138
2139 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2140 M:      Philipp Zabel <philipp.zabel@gmail.com>
2141 M:      Paul Parsons <lost.distance@yahoo.com>
2142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2143 S:      Maintained
2144 F:      arch/arm/mach-pxa/hx4700.c
2145 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2146 F:      sound/soc/pxa/hx4700.c
2147
2148 ARM/HISILICON SOC SUPPORT
2149 M:      Wei Xu <xuwei5@hisilicon.com>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Supported
2152 W:      http://www.hisilicon.com
2153 T:      git git://github.com/hisilicon/linux-hisi.git
2154 F:      arch/arm/boot/dts/hi3*
2155 F:      arch/arm/boot/dts/hip*
2156 F:      arch/arm/boot/dts/hisi*
2157 F:      arch/arm/mach-hisi/
2158 F:      arch/arm64/boot/dts/hisilicon/
2159
2160 ARM/HP JORNADA 7XX MACHINE SUPPORT
2161 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2162 S:      Maintained
2163 W:      www.jlime.com
2164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2165 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2166 F:      arch/arm/mach-sa1100/jornada720.c
2167
2168 ARM/HPE GXP ARCHITECTURE
2169 M:      Jean-Marie Verdun <verdun@hpe.com>
2170 M:      Nick Hawkins <nick.hawkins@hpe.com>
2171 S:      Maintained
2172 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2173 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2174 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2175 F:      arch/arm/boot/dts/hpe-bmc*
2176 F:      arch/arm/boot/dts/hpe-gxp*
2177 F:      arch/arm/mach-hpe/
2178 F:      drivers/clocksource/timer-gxp.c
2179 F:      drivers/spi/spi-gxp.c
2180 F:      drivers/watchdog/gxp-wdt.c
2181
2182 ARM/IGEP MACHINE SUPPORT
2183 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2184 M:      Javier Martinez Canillas <javier@dowhile0.org>
2185 L:      linux-omap@vger.kernel.org
2186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2187 S:      Maintained
2188 F:      arch/arm/boot/dts/omap3-igep*
2189
2190 ARM/INCOME PXA270 SUPPORT
2191 M:      Marek Vasut <marek.vasut@gmail.com>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2195
2196 ARM/INTEL IOP32X ARM ARCHITECTURE
2197 M:      Lennert Buytenhek <kernel@wantstofly.org>
2198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2199 S:      Maintained
2200
2201 ARM/INTEL IQ81342EX MACHINE SUPPORT
2202 M:      Lennert Buytenhek <kernel@wantstofly.org>
2203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2204 S:      Maintained
2205
2206 ARM/INTEL IXDP2850 MACHINE SUPPORT
2207 M:      Lennert Buytenhek <kernel@wantstofly.org>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210
2211 ARM/INTEL IXP4XX ARM ARCHITECTURE
2212 M:      Linus Walleij <linusw@kernel.org>
2213 M:      Imre Kaloz <kaloz@openwrt.org>
2214 M:      Krzysztof Halasa <khalasa@piap.pl>
2215 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2216 S:      Maintained
2217 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2218 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2219 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2220 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2221 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2222 F:      arch/arm/mach-ixp4xx/
2223 F:      drivers/bus/intel-ixp4xx-eb.c
2224 F:      drivers/clocksource/timer-ixp4xx.c
2225 F:      drivers/crypto/ixp4xx_crypto.c
2226 F:      drivers/gpio/gpio-ixp4xx.c
2227 F:      drivers/irqchip/irq-ixp4xx.c
2228 F:      include/linux/irqchip/irq-ixp4xx.h
2229 F:      include/linux/platform_data/timer-ixp4xx.h
2230
2231 ARM/INTEL KEEMBAY ARCHITECTURE
2232 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2233 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2234 S:      Maintained
2235 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2236 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2237 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2238
2239 ARM/INTEL XSC3 (MANZANO) ARM CORE
2240 M:      Lennert Buytenhek <kernel@wantstofly.org>
2241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2242 S:      Maintained
2243
2244 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2245 M:      Lennert Buytenhek <kernel@wantstofly.org>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248
2249 ARM/LG1K ARCHITECTURE
2250 M:      Chanho Min <chanho.min@lge.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 F:      arch/arm64/boot/dts/lg/
2254
2255 ARM/LOGICPD PXA270 MACHINE SUPPORT
2256 M:      Lennert Buytenhek <kernel@wantstofly.org>
2257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2258 S:      Maintained
2259
2260 ARM/LPC18XX ARCHITECTURE
2261 M:      Vladimir Zapolskiy <vz@mleia.com>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2265 F:      arch/arm/boot/dts/lpc43*
2266 F:      drivers/i2c/busses/i2c-lpc2k.c
2267 F:      drivers/memory/pl172.c
2268 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2269 F:      drivers/rtc/rtc-lpc24xx.c
2270 N:      lpc18xx
2271
2272 ARM/LPC32XX SOC SUPPORT
2273 M:      Vladimir Zapolskiy <vz@mleia.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S:      Maintained
2276 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2277 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2278 F:      arch/arm/boot/dts/lpc32*
2279 F:      arch/arm/mach-lpc32xx/
2280 F:      drivers/i2c/busses/i2c-pnx.c
2281 F:      drivers/net/ethernet/nxp/lpc_eth.c
2282 F:      drivers/usb/host/ohci-nxp.c
2283 F:      drivers/watchdog/pnx4008_wdt.c
2284 N:      lpc32xx
2285
2286 ARM/MAGICIAN MACHINE SUPPORT
2287 M:      Philipp Zabel <philipp.zabel@gmail.com>
2288 S:      Maintained
2289
2290 ARM/Marvell Dove/MV78xx0/Orion SOC support
2291 M:      Andrew Lunn <andrew@lunn.ch>
2292 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2293 M:      Gregory Clement <gregory.clement@bootlin.com>
2294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2295 S:      Maintained
2296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2297 F:      Documentation/devicetree/bindings/soc/dove/
2298 F:      arch/arm/boot/dts/dove*
2299 F:      arch/arm/boot/dts/orion5x*
2300 F:      arch/arm/mach-dove/
2301 F:      arch/arm/mach-mv78xx0/
2302 F:      arch/arm/mach-orion5x/
2303 F:      arch/arm/plat-orion/
2304 F:      drivers/soc/dove/
2305
2306 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2307 M:      Andrew Lunn <andrew@lunn.ch>
2308 M:      Gregory Clement <gregory.clement@bootlin.com>
2309 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2313 F:      arch/arm/boot/dts/armada*
2314 F:      arch/arm/boot/dts/kirkwood*
2315 F:      arch/arm/configs/mvebu_*_defconfig
2316 F:      arch/arm/mach-mvebu/
2317 F:      arch/arm64/boot/dts/marvell/armada*
2318 F:      arch/arm64/boot/dts/marvell/cn913*
2319 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2320 F:      drivers/cpufreq/armada-8k-cpufreq.c
2321 F:      drivers/cpufreq/mvebu-cpufreq.c
2322 F:      drivers/irqchip/irq-armada-370-xp.c
2323 F:      drivers/irqchip/irq-mvebu-*
2324 F:      drivers/pinctrl/mvebu/
2325 F:      drivers/rtc/rtc-armada38x.c
2326
2327 ARM/Mediatek RTC DRIVER
2328 M:      Eddie Huang <eddie.huang@mediatek.com>
2329 M:      Sean Wang <sean.wang@mediatek.com>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2334 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2335 F:      drivers/rtc/rtc-mt2712.c
2336 F:      drivers/rtc/rtc-mt6397.c
2337 F:      drivers/rtc/rtc-mt7622.c
2338
2339 ARM/Mediatek SoC support
2340 M:      Matthias Brugger <matthias.bgg@gmail.com>
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 W:      https://mtk.wiki.kernel.org/
2345 C:      irc://chat.freenode.net/linux-mediatek
2346 F:      arch/arm/boot/dts/mt6*
2347 F:      arch/arm/boot/dts/mt7*
2348 F:      arch/arm/boot/dts/mt8*
2349 F:      arch/arm/mach-mediatek/
2350 F:      arch/arm64/boot/dts/mediatek/
2351 F:      drivers/soc/mediatek/
2352 N:      mtk
2353 N:      mt[678]
2354 K:      mediatek
2355
2356 ARM/Mediatek USB3 PHY DRIVER
2357 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 F:      Documentation/devicetree/bindings/phy/mediatek,*
2362 F:      drivers/phy/mediatek/
2363
2364 ARM/Microchip (AT91) SoC support
2365 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2366 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2367 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2369 S:      Supported
2370 W:      http://www.linux4sam.org
2371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2372 F:      arch/arm/boot/dts/at91*.dts
2373 F:      arch/arm/boot/dts/at91*.dtsi
2374 F:      arch/arm/boot/dts/sama*.dts
2375 F:      arch/arm/boot/dts/sama*.dtsi
2376 F:      arch/arm/include/debug/at91.S
2377 F:      arch/arm/mach-at91/
2378 F:      drivers/memory/atmel*
2379 F:      drivers/watchdog/sama5d4_wdt.c
2380 F:      include/soc/at91/
2381 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2382 X:      drivers/net/wireless/atmel/
2383 N:      at91
2384 N:      atmel
2385
2386 ARM/Microchip Sparx5 SoC support
2387 M:      Lars Povlsen <lars.povlsen@microchip.com>
2388 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2389 M:      UNGLinuxDriver@microchip.com
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 S:      Supported
2392 T:      git git://github.com/microchip-ung/linux-upstream.git
2393 F:      arch/arm64/boot/dts/microchip/
2394 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2395 N:      sparx5
2396
2397 Microchip Timer Counter Block (TCB) Capture Driver
2398 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2400 L:      linux-iio@vger.kernel.org
2401 S:      Maintained
2402 F:      drivers/counter/microchip-tcb-capture.c
2403
2404 ARM/MILBEAUT ARCHITECTURE
2405 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2406 M:      Takao Orito <orito.takao@socionext.com>
2407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2408 S:      Maintained
2409 F:      arch/arm/boot/dts/milbeaut*
2410 F:      arch/arm/mach-milbeaut/
2411 N:      milbeaut
2412
2413 ARM/MIOA701 MACHINE SUPPORT
2414 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2416 S:      Maintained
2417 F:      arch/arm/mach-pxa/mioa701.c
2418
2419 ARM/MStar/Sigmastar Armv7 SoC support
2420 M:      Daniel Palmer <daniel@thingy.jp>
2421 M:      Romain Perier <romain.perier@gmail.com>
2422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2423 S:      Maintained
2424 W:      http://linux-chenxing.org/
2425 T:      git git://github.com/linux-chenxing/linux.git
2426 F:      Documentation/devicetree/bindings/arm/mstar/*
2427 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2428 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2429 F:      arch/arm/boot/dts/mstar-*
2430 F:      arch/arm/mach-mstar/
2431 F:      drivers/clk/mstar/
2432 F:      drivers/clocksource/timer-msc313e.c
2433 F:      drivers/gpio/gpio-msc313.c
2434 F:      drivers/rtc/rtc-msc313.c
2435 F:      drivers/watchdog/msc313e_wdt.c
2436 F:      include/dt-bindings/clock/mstar-*
2437 F:      include/dt-bindings/gpio/msc313-gpio.h
2438
2439 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2440 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2441 S:      Maintained
2442
2443 ARM/NOMADIK/Ux500 ARCHITECTURES
2444 M:      Linus Walleij <linus.walleij@linaro.org>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2448 F:      Documentation/devicetree/bindings/arm/ste-*
2449 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2450 F:      Documentation/devicetree/bindings/arm/ux500/
2451 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2452 F:      arch/arm/boot/dts/ste-*
2453 F:      arch/arm/mach-nomadik/
2454 F:      arch/arm/mach-ux500/
2455 F:      drivers/clk/clk-nomadik.c
2456 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2457 F:      drivers/dma/ste_dma40*
2458 F:      drivers/hwspinlock/u8500_hsem.c
2459 F:      drivers/i2c/busses/i2c-nomadik.c
2460 F:      drivers/iio/adc/ab8500-gpadc.c
2461 F:      drivers/mfd/ab8500*
2462 F:      drivers/mfd/abx500*
2463 F:      drivers/mfd/db8500*
2464 F:      drivers/pinctrl/nomadik/
2465 F:      drivers/rtc/rtc-ab8500.c
2466 F:      drivers/rtc/rtc-pl031.c
2467 F:      drivers/soc/ux500/
2468
2469 ARM/NUVOTON NPCM ARCHITECTURE
2470 M:      Avi Fishman <avifishman70@gmail.com>
2471 M:      Tomer Maimon <tmaimon77@gmail.com>
2472 M:      Tali Perry <tali.perry1@gmail.com>
2473 R:      Patrick Venture <venture@google.com>
2474 R:      Nancy Yuen <yuenn@google.com>
2475 R:      Benjamin Fair <benjaminfair@google.com>
2476 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2477 S:      Supported
2478 F:      Documentation/devicetree/bindings/*/*/*npcm*
2479 F:      Documentation/devicetree/bindings/*/*npcm*
2480 F:      Documentation/devicetree/bindings/arm/npcm/*
2481 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2482 F:      arch/arm/boot/dts/nuvoton-npcm*
2483 F:      arch/arm/mach-npcm/
2484 F:      arch/arm64/boot/dts/nuvoton/
2485 F:      drivers/*/*npcm*
2486 F:      drivers/*/*/*npcm*
2487 F:      drivers/rtc/rtc-nct3018y.c
2488 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2489 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2490
2491 ARM/NUVOTON WPCM450 ARCHITECTURE
2492 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2493 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2494 S:      Maintained
2495 W:      https://github.com/neuschaefer/wpcm450/wiki
2496 F:      Documentation/devicetree/bindings/*/*wpcm*
2497 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2498 F:      arch/arm/mach-npcm/wpcm450.c
2499 F:      drivers/*/*/*wpcm*
2500 F:      drivers/*/*wpcm*
2501
2502 ARM/NXP S32G ARCHITECTURE
2503 M:      Chester Lin <clin@suse.com>
2504 R:      Andreas Färber <afaerber@suse.de>
2505 R:      Matthias Brugger <mbrugger@suse.com>
2506 R:      NXP S32 Linux Team <s32@nxp.com>
2507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2508 S:      Maintained
2509 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2510
2511 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2512 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2513 S:      Orphan
2514 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2515 F:      arch/arm/mach-s3c/gta02.h
2516 F:      arch/arm/mach-s3c/mach-gta02.c
2517
2518 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2519 M:      Alexander Clouter <alex@digriz.org.uk>
2520 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2521 S:      Maintained
2522 W:      http://www.digriz.org.uk/ts78xx/kernel
2523 F:      arch/arm/mach-orion5x/ts78xx-*
2524
2525 ARM/OXNAS platform support
2526 M:      Neil Armstrong <narmstrong@baylibre.com>
2527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2528 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2529 S:      Maintained
2530 F:      arch/arm/boot/dts/ox8*.dts*
2531 F:      arch/arm/mach-oxnas/
2532 F:      drivers/power/reset/oxnas-restart.c
2533 N:      oxnas
2534
2535 ARM/PALM TREO SUPPORT
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Orphan
2538 F:      arch/arm/mach-pxa/palmtreo.*
2539
2540 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2541 M:      Marek Vasut <marek.vasut@gmail.com>
2542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2543 S:      Maintained
2544 W:      http://hackndev.com
2545 F:      arch/arm/mach-pxa/include/mach/palmld.h
2546 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2547 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2548 F:      arch/arm/mach-pxa/palmld.c
2549 F:      arch/arm/mach-pxa/palmt5.*
2550 F:      arch/arm/mach-pxa/palmtc.c
2551 F:      arch/arm/mach-pxa/palmte2.*
2552 F:      arch/arm/mach-pxa/palmtx.c
2553
2554 ARM/PALMZ72 SUPPORT
2555 M:      Sergey Lapin <slapin@ossfans.org>
2556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2557 S:      Maintained
2558 W:      http://hackndev.com
2559 F:      arch/arm/mach-pxa/palmz72.*
2560
2561 ARM/PLEB SUPPORT
2562 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2563 S:      Maintained
2564 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2565
2566 ARM/PT DIGITAL BOARD PORT
2567 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 S:      Maintained
2570 W:      http://www.armlinux.org.uk/
2571
2572 ARM/QUALCOMM SUPPORT
2573 M:      Andy Gross <agross@kernel.org>
2574 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2575 R:      Konrad Dybcio <konrad.dybcio@somainline.org>
2576 L:      linux-arm-msm@vger.kernel.org
2577 S:      Maintained
2578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2579 F:      Documentation/devicetree/bindings/*/qcom*
2580 F:      Documentation/devicetree/bindings/soc/qcom/
2581 F:      arch/arm/boot/dts/qcom-*.dts
2582 F:      arch/arm/boot/dts/qcom-*.dtsi
2583 F:      arch/arm/mach-qcom/
2584 F:      arch/arm64/boot/dts/qcom/
2585 F:      drivers/*/*/qcom*
2586 F:      drivers/*/*/qcom/
2587 F:      drivers/*/pm8???-*
2588 F:      drivers/*/qcom*
2589 F:      drivers/*/qcom/
2590 F:      drivers/bluetooth/btqcomsmd.c
2591 F:      drivers/clocksource/timer-qcom.c
2592 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2593 F:      drivers/extcon/extcon-qcom*
2594 F:      drivers/i2c/busses/i2c-qcom-geni.c
2595 F:      drivers/i2c/busses/i2c-qup.c
2596 F:      drivers/iommu/msm*
2597 F:      drivers/mfd/ssbi.c
2598 F:      drivers/mmc/host/mmci_qcom*
2599 F:      drivers/mmc/host/sdhci-msm.c
2600 F:      drivers/pci/controller/dwc/pcie-qcom.c
2601 F:      drivers/phy/qualcomm/
2602 F:      drivers/power/*/msm*
2603 F:      drivers/reset/reset-qcom-*
2604 F:      drivers/ufs/host/ufs-qcom*
2605 F:      drivers/spi/spi-geni-qcom.c
2606 F:      drivers/spi/spi-qcom-qspi.c
2607 F:      drivers/spi/spi-qup.c
2608 F:      drivers/tty/serial/msm_serial.c
2609 F:      drivers/usb/dwc3/dwc3-qcom.c
2610 F:      include/dt-bindings/*/qcom*
2611 F:      include/linux/*/qcom*
2612 F:      include/linux/soc/qcom/
2613
2614 ARM/RADISYS ENP2611 MACHINE SUPPORT
2615 M:      Lennert Buytenhek <kernel@wantstofly.org>
2616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2617 S:      Maintained
2618
2619 ARM/RDA MICRO ARCHITECTURE
2620 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2622 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2623 S:      Maintained
2624 F:      Documentation/devicetree/bindings/arm/rda.yaml
2625 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2626 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2627 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2628 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2629 F:      arch/arm/boot/dts/rda8810pl-*
2630 F:      drivers/clocksource/timer-rda.c
2631 F:      drivers/gpio/gpio-rda.c
2632 F:      drivers/irqchip/irq-rda-intc.c
2633 F:      drivers/tty/serial/rda-uart.c
2634
2635 ARM/REALTEK ARCHITECTURE
2636 M:      Andreas Färber <afaerber@suse.de>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2639 S:      Maintained
2640 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2641 F:      arch/arm/boot/dts/rtd*
2642 F:      arch/arm/mach-realtek/
2643 F:      arch/arm64/boot/dts/realtek/
2644
2645 ARM/RENESAS ARM64 ARCHITECTURE
2646 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2647 M:      Magnus Damm <magnus.damm@gmail.com>
2648 L:      linux-renesas-soc@vger.kernel.org
2649 S:      Supported
2650 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2651 C:      irc://irc.libera.chat/renesas-soc
2652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2653 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2654 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2655 F:      Documentation/devicetree/bindings/soc/renesas/
2656 F:      arch/arm64/boot/dts/renesas/
2657 F:      drivers/soc/renesas/
2658 F:      include/linux/soc/renesas/
2659
2660 ARM/RISCPC ARCHITECTURE
2661 M:      Russell King <linux@armlinux.org.uk>
2662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2663 S:      Maintained
2664 W:      http://www.armlinux.org.uk/
2665 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2666 F:      arch/arm/include/asm/hardware/ioc.h
2667 F:      arch/arm/include/asm/hardware/iomd.h
2668 F:      arch/arm/include/asm/hardware/memc.h
2669 F:      arch/arm/mach-rpc/
2670 F:      drivers/net/ethernet/8390/etherh.c
2671 F:      drivers/net/ethernet/i825xx/ether1*
2672 F:      drivers/net/ethernet/seeq/ether3*
2673 F:      drivers/scsi/arm/
2674
2675 ARM/Rockchip SoC support
2676 M:      Heiko Stuebner <heiko@sntech.de>
2677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2678 L:      linux-rockchip@lists.infradead.org
2679 S:      Maintained
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2681 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2682 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2683 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2684 F:      arch/arm/boot/dts/rk3*
2685 F:      arch/arm/boot/dts/rv1108*
2686 F:      arch/arm/mach-rockchip/
2687 F:      drivers/*/*/*rockchip*
2688 F:      drivers/*/*rockchip*
2689 F:      drivers/clk/rockchip/
2690 F:      drivers/i2c/busses/i2c-rk3x.c
2691 F:      sound/soc/rockchip/
2692 N:      rockchip
2693
2694 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2695 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2696 R:      Alim Akhtar <alim.akhtar@samsung.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 L:      linux-samsung-soc@vger.kernel.org
2699 S:      Maintained
2700 C:      irc://irc.libera.chat/linux-exynos
2701 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2702 B:      mailto:linux-samsung-soc@vger.kernel.org
2703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2704 F:      Documentation/arm/samsung/
2705 F:      Documentation/devicetree/bindings/arm/samsung/
2706 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2707 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2708 F:      Documentation/devicetree/bindings/soc/samsung/
2709 F:      arch/arm/boot/dts/exynos*
2710 F:      arch/arm/boot/dts/s3c*
2711 F:      arch/arm/boot/dts/s5p*
2712 F:      arch/arm/mach-exynos*/
2713 F:      arch/arm/mach-s3c/
2714 F:      arch/arm/mach-s5p*/
2715 F:      arch/arm64/boot/dts/exynos/
2716 F:      drivers/*/*/*s3c24*
2717 F:      drivers/*/*s3c24*
2718 F:      drivers/*/*s3c64xx*
2719 F:      drivers/*/*s5pv210*
2720 F:      drivers/clocksource/samsung_pwm_timer.c
2721 F:      drivers/memory/samsung/
2722 F:      drivers/pwm/pwm-samsung.c
2723 F:      drivers/soc/samsung/
2724 F:      drivers/tty/serial/samsung*
2725 F:      include/clocksource/samsung_pwm.h
2726 F:      include/linux/platform_data/*s3c*
2727 F:      include/linux/serial_s3c.h
2728 F:      include/linux/soc/samsung/
2729 N:      exynos
2730 N:      s3c2410
2731 N:      s3c64xx
2732 N:      s5pv210
2733
2734 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2735 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2737 L:      linux-media@vger.kernel.org
2738 S:      Maintained
2739 F:      drivers/media/platform/samsung/s5p-g2d/
2740
2741 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2742 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2743 L:      linux-samsung-soc@vger.kernel.org
2744 L:      linux-media@vger.kernel.org
2745 S:      Maintained
2746 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2747 F:      drivers/media/cec/platform/s5p/
2748
2749 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2750 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2751 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2752 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 L:      linux-media@vger.kernel.org
2755 S:      Maintained
2756 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2757 F:      drivers/media/platform/samsung/s5p-jpeg/
2758
2759 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2760 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2761 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 L:      linux-media@vger.kernel.org
2764 S:      Maintained
2765 F:      drivers/media/platform/samsung/s5p-mfc/
2766
2767 ARM/SHMOBILE ARM ARCHITECTURE
2768 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2769 M:      Magnus Damm <magnus.damm@gmail.com>
2770 L:      linux-renesas-soc@vger.kernel.org
2771 S:      Supported
2772 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2773 C:      irc://irc.libera.chat/renesas-soc
2774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2775 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2776 F:      Documentation/devicetree/bindings/soc/renesas/
2777 F:      arch/arm/boot/dts/emev2*
2778 F:      arch/arm/boot/dts/gr-peach*
2779 F:      arch/arm/boot/dts/iwg20d-q7*
2780 F:      arch/arm/boot/dts/r7s*
2781 F:      arch/arm/boot/dts/r8a*
2782 F:      arch/arm/boot/dts/r9a*
2783 F:      arch/arm/boot/dts/sh*
2784 F:      arch/arm/configs/shmobile_defconfig
2785 F:      arch/arm/include/debug/renesas-scif.S
2786 F:      arch/arm/mach-shmobile/
2787 F:      drivers/soc/renesas/
2788 F:      include/linux/soc/renesas/
2789
2790 ARM/SOCFPGA ARCHITECTURE
2791 M:      Dinh Nguyen <dinguyen@kernel.org>
2792 S:      Maintained
2793 W:      http://www.rocketboards.org
2794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2795 F:      arch/arm/boot/dts/socfpga*
2796 F:      arch/arm/configs/socfpga_defconfig
2797 F:      arch/arm/mach-socfpga/
2798 F:      arch/arm64/boot/dts/altera/
2799 F:      arch/arm64/boot/dts/intel/
2800
2801 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2802 M:      Dinh Nguyen <dinguyen@kernel.org>
2803 S:      Maintained
2804 F:      drivers/clk/socfpga/
2805
2806 ARM/SOCFPGA EDAC SUPPORT
2807 M:      Dinh Nguyen <dinguyen@kernel.org>
2808 S:      Maintained
2809 F:      drivers/edac/altera_edac.[ch]
2810
2811 ARM/SPREADTRUM SoC SUPPORT
2812 M:      Orson Zhai <orsonzhai@gmail.com>
2813 M:      Baolin Wang <baolin.wang7@gmail.com>
2814 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2815 S:      Maintained
2816 F:      arch/arm64/boot/dts/sprd
2817 N:      sprd
2818 N:      sc27xx
2819 N:      sc2731
2820
2821 ARM/STI ARCHITECTURE
2822 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2824 S:      Maintained
2825 W:      http://www.stlinux.com
2826 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2827 F:      arch/arm/boot/dts/sti*
2828 F:      arch/arm/mach-sti/
2829 F:      drivers/ata/ahci_st.c
2830 F:      drivers/char/hw_random/st-rng.c
2831 F:      drivers/clocksource/arm_global_timer.c
2832 F:      drivers/clocksource/clksrc_st_lpc.c
2833 F:      drivers/cpufreq/sti-cpufreq.c
2834 F:      drivers/dma/st_fdma*
2835 F:      drivers/i2c/busses/i2c-st.c
2836 F:      drivers/media/platform/st/sti/c8sectpfe/
2837 F:      drivers/media/rc/st_rc.c
2838 F:      drivers/mmc/host/sdhci-st.c
2839 F:      drivers/phy/st/phy-miphy28lp.c
2840 F:      drivers/phy/st/phy-stih407-usb.c
2841 F:      drivers/pinctrl/pinctrl-st.c
2842 F:      drivers/remoteproc/st_remoteproc.c
2843 F:      drivers/remoteproc/st_slim_rproc.c
2844 F:      drivers/reset/sti/
2845 F:      drivers/rtc/rtc-st-lpc.c
2846 F:      drivers/tty/serial/st-asc.c
2847 F:      drivers/usb/dwc3/dwc3-st.c
2848 F:      drivers/usb/host/ehci-st.c
2849 F:      drivers/usb/host/ohci-st.c
2850 F:      drivers/watchdog/st_lpc_wdt.c
2851 F:      include/linux/remoteproc/st_slim_rproc.h
2852
2853 ARM/STM32 ARCHITECTURE
2854 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2855 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2856 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2858 S:      Maintained
2859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2860 F:      arch/arm/boot/dts/stm32*
2861 F:      arch/arm/mach-stm32/
2862 F:      drivers/clocksource/armv7m_systick.c
2863 N:      stm32
2864 N:      stm
2865
2866 ARM/SUNPLUS SP7021 SOC SUPPORT
2867 M:      Qin Jian <qinjian@cqplus1.com>
2868 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2869 S:      Maintained
2870 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2871 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2872 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2873 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2874 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2875 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2876 F:      arch/arm/configs/sp7021_*defconfig
2877 F:      arch/arm/mach-sunplus/
2878 F:      drivers/irqchip/irq-sp7021-intc.c
2879 F:      drivers/reset/reset-sunplus.c
2880 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2881 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2882
2883 ARM/Synaptics SoC support
2884 M:      Jisheng Zhang <jszhang@kernel.org>
2885 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2887 S:      Maintained
2888 F:      arch/arm/boot/dts/berlin*
2889 F:      arch/arm/mach-berlin/
2890 F:      arch/arm64/boot/dts/synaptics/
2891
2892 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2893 M:      Lennert Buytenhek <kernel@wantstofly.org>
2894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2895 S:      Maintained
2896
2897 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2898 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2899 L:      linux-tegra@vger.kernel.org
2900 L:      linux-media@vger.kernel.org
2901 S:      Maintained
2902 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2903 F:      drivers/media/cec/platform/tegra/
2904
2905 ARM/TESLA FSD SoC SUPPORT
2906 M:      Alim Akhtar <alim.akhtar@samsung.com>
2907 M:      linux-fsd@tesla.com
2908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2909 L:      linux-samsung-soc@vger.kernel.org
2910 S:      Maintained
2911 F:      arch/arm64/boot/dts/tesla*
2912
2913 ARM/TETON BGA MACHINE SUPPORT
2914 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2916 S:      Maintained
2917
2918 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2919 M:      Santosh Shilimkar <ssantosh@kernel.org>
2920 L:      linux-kernel@vger.kernel.org
2921 S:      Maintained
2922 F:      drivers/memory/*emif*
2923
2924 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2925 M:      Nishanth Menon <nm@ti.com>
2926 M:      Santosh Shilimkar <ssantosh@kernel.org>
2927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2928 S:      Maintained
2929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2930 F:      arch/arm/boot/dts/keystone-*
2931 F:      arch/arm/mach-keystone/
2932
2933 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2934 M:      Santosh Shilimkar <ssantosh@kernel.org>
2935 L:      linux-kernel@vger.kernel.org
2936 S:      Maintained
2937 F:      drivers/clk/keystone/
2938
2939 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2940 M:      Santosh Shilimkar <ssantosh@kernel.org>
2941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2942 L:      linux-kernel@vger.kernel.org
2943 S:      Maintained
2944 F:      drivers/clocksource/timer-keystone.c
2945
2946 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2947 M:      Santosh Shilimkar <ssantosh@kernel.org>
2948 L:      linux-kernel@vger.kernel.org
2949 S:      Maintained
2950 F:      drivers/power/reset/keystone-reset.c
2951
2952 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2953 M:      Nishanth Menon <nm@ti.com>
2954 M:      Vignesh Raghavendra <vigneshr@ti.com>
2955 M:      Tero Kristo <kristo@kernel.org>
2956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2957 S:      Supported
2958 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2959 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2960 F:      arch/arm64/boot/dts/ti/Makefile
2961 F:      arch/arm64/boot/dts/ti/k3-*
2962 F:      include/dt-bindings/pinctrl/k3.h
2963
2964 ARM/THECUS N2100 MACHINE SUPPORT
2965 M:      Lennert Buytenhek <kernel@wantstofly.org>
2966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2967 S:      Maintained
2968
2969 ARM/TOSA MACHINE SUPPORT
2970 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2971 M:      Dirk Opfer <dirk@opfer-online.de>
2972 S:      Maintained
2973
2974 ARM/TOSHIBA VISCONTI ARCHITECTURE
2975 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2977 S:      Supported
2978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2979 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2980 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2981 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2982 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2983 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2984 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2985 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2986 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2987 F:      arch/arm64/boot/dts/toshiba/
2988 F:      drivers/clk/visconti/
2989 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2990 F:      drivers/gpio/gpio-visconti.c
2991 F:      drivers/pci/controller/dwc/pcie-visconti.c
2992 F:      drivers/pinctrl/visconti/
2993 F:      drivers/watchdog/visconti_wdt.c
2994 N:      visconti
2995
2996 ARM/UNIPHIER ARCHITECTURE
2997 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2998 M:      Masami Hiramatsu <mhiramat@kernel.org>
2999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3000 S:      Maintained
3001 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
3002 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
3003 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
3004 F:      arch/arm/boot/dts/uniphier*
3005 F:      arch/arm/include/asm/hardware/cache-uniphier.h
3006 F:      arch/arm/mach-uniphier/
3007 F:      arch/arm/mm/cache-uniphier.c
3008 F:      arch/arm64/boot/dts/socionext/uniphier*
3009 F:      drivers/bus/uniphier-system-bus.c
3010 F:      drivers/clk/uniphier/
3011 F:      drivers/dma/uniphier-mdmac.c
3012 F:      drivers/gpio/gpio-uniphier.c
3013 F:      drivers/i2c/busses/i2c-uniphier*
3014 F:      drivers/irqchip/irq-uniphier-aidet.c
3015 F:      drivers/mmc/host/uniphier-sd.c
3016 F:      drivers/pinctrl/uniphier/
3017 F:      drivers/reset/reset-uniphier.c
3018 F:      drivers/tty/serial/8250/8250_uniphier.c
3019 N:      uniphier
3020
3021 ARM/VERSATILE EXPRESS PLATFORM
3022 M:      Liviu Dudau <liviu.dudau@arm.com>
3023 M:      Sudeep Holla <sudeep.holla@arm.com>
3024 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3026 S:      Maintained
3027 F:      */*/*/vexpress*
3028 F:      */*/vexpress*
3029 F:      arch/arm/boot/dts/vexpress*
3030 F:      arch/arm/mach-vexpress/
3031 F:      arch/arm64/boot/dts/arm/
3032 F:      drivers/clk/versatile/clk-vexpress-osc.c
3033 F:      drivers/clocksource/timer-versatile.c
3034 N:      mps2
3035
3036 ARM/VFP SUPPORT
3037 M:      Russell King <linux@armlinux.org.uk>
3038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3039 S:      Maintained
3040 W:      http://www.armlinux.org.uk/
3041 F:      arch/arm/vfp/
3042
3043 ARM/VOIPAC PXA270 SUPPORT
3044 M:      Marek Vasut <marek.vasut@gmail.com>
3045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3046 S:      Maintained
3047 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3048 F:      arch/arm/mach-pxa/vpac270.c
3049
3050 ARM/VT8500 ARM ARCHITECTURE
3051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3052 S:      Orphan
3053 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3054 F:      arch/arm/mach-vt8500/
3055 F:      drivers/clocksource/timer-vt8500.c
3056 F:      drivers/i2c/busses/i2c-wmt.c
3057 F:      drivers/mmc/host/wmt-sdmmc.c
3058 F:      drivers/pwm/pwm-vt8500.c
3059 F:      drivers/rtc/rtc-vt8500.c
3060 F:      drivers/tty/serial/vt8500_serial.c
3061 F:      drivers/usb/host/ehci-platform.c
3062 F:      drivers/usb/host/uhci-platform.c
3063 F:      drivers/video/fbdev/vt8500lcdfb.*
3064 F:      drivers/video/fbdev/wm8505fb*
3065 F:      drivers/video/fbdev/wmt_ge_rops.*
3066
3067 ARM/ZIPIT Z2 SUPPORT
3068 M:      Marek Vasut <marek.vasut@gmail.com>
3069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3070 S:      Maintained
3071 F:      arch/arm/mach-pxa/include/mach/z2.h
3072 F:      arch/arm/mach-pxa/z2.c
3073
3074 ARM/ZYNQ ARCHITECTURE
3075 M:      Michal Simek <michal.simek@xilinx.com>
3076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3077 S:      Supported
3078 W:      http://wiki.xilinx.com
3079 T:      git https://github.com/Xilinx/linux-xlnx.git
3080 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3081 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3082 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3083 F:      arch/arm/mach-zynq/
3084 F:      drivers/clocksource/timer-cadence-ttc.c
3085 F:      drivers/cpuidle/cpuidle-zynq.c
3086 F:      drivers/edac/synopsys_edac.c
3087 F:      drivers/i2c/busses/i2c-cadence.c
3088 F:      drivers/i2c/busses/i2c-xiic.c
3089 F:      drivers/mmc/host/sdhci-of-arasan.c
3090 N:      zynq
3091 N:      xilinx
3092
3093 ARM64 PORT (AARCH64 ARCHITECTURE)
3094 M:      Catalin Marinas <catalin.marinas@arm.com>
3095 M:      Will Deacon <will@kernel.org>
3096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3097 S:      Maintained
3098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3099 F:      Documentation/arm64/
3100 F:      arch/arm64/
3101 F:      tools/testing/selftests/arm64/
3102 X:      arch/arm64/boot/dts/
3103
3104 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3105 M:      George McCollister <george.mccollister@gmail.com>
3106 L:      netdev@vger.kernel.org
3107 S:      Maintained
3108 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3109 F:      drivers/net/dsa/xrs700x/*
3110 F:      net/dsa/tag_xrs700x.c
3111
3112 AS3645A LED FLASH CONTROLLER DRIVER
3113 M:      Sakari Ailus <sakari.ailus@iki.fi>
3114 L:      linux-leds@vger.kernel.org
3115 S:      Maintained
3116 F:      drivers/leds/flash/leds-as3645a.c
3117
3118 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3119 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3120 L:      linux-media@vger.kernel.org
3121 S:      Maintained
3122 T:      git git://linuxtv.org/media_tree.git
3123 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3124 F:      drivers/media/i2c/ak7375.c
3125
3126 ASAHI KASEI AK8974 DRIVER
3127 M:      Linus Walleij <linus.walleij@linaro.org>
3128 L:      linux-iio@vger.kernel.org
3129 S:      Supported
3130 W:      http://www.akm.com/
3131 F:      drivers/iio/magnetometer/ak8974.c
3132
3133 ASC7621 HARDWARE MONITOR DRIVER
3134 M:      George Joseph <george.joseph@fairview5.com>
3135 L:      linux-hwmon@vger.kernel.org
3136 S:      Maintained
3137 F:      Documentation/hwmon/asc7621.rst
3138 F:      drivers/hwmon/asc7621.c
3139
3140 ASIX AX88796C SPI ETHERNET ADAPTER
3141 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3142 S:      Maintained
3143 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3144 F:      drivers/net/ethernet/asix/ax88796c_*
3145
3146 ASPEED PECI CONTROLLER
3147 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3148 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3149 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3150 S:      Supported
3151 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3152 F:      drivers/peci/controller/peci-aspeed.c
3153
3154 ASPEED PINCTRL DRIVERS
3155 M:      Andrew Jeffery <andrew@aj.id.au>
3156 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3157 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3158 L:      linux-gpio@vger.kernel.org
3159 S:      Maintained
3160 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3161 F:      drivers/pinctrl/aspeed/
3162
3163 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3164 M:      Eddie James <eajames@linux.ibm.com>
3165 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3166 S:      Maintained
3167 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3168 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3169 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3170
3171 ASPEED SD/MMC DRIVER
3172 M:      Andrew Jeffery <andrew@aj.id.au>
3173 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3174 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3175 L:      linux-mmc@vger.kernel.org
3176 S:      Maintained
3177 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3178 F:      drivers/mmc/host/sdhci-of-aspeed*
3179
3180 ASPEED SMC SPI DRIVER
3181 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3182 M:      Cédric Le Goater <clg@kaod.org>
3183 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3184 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3185 L:      linux-spi@vger.kernel.org
3186 S:      Maintained
3187 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3188 F:      drivers/spi/spi-aspeed-smc.c
3189
3190 ASPEED VIDEO ENGINE DRIVER
3191 M:      Eddie James <eajames@linux.ibm.com>
3192 L:      linux-media@vger.kernel.org
3193 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3194 S:      Maintained
3195 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3196 F:      drivers/media/platform/aspeed/
3197
3198 ASPEED USB UDC DRIVER
3199 M:      Neal Liu <neal_liu@aspeedtech.com>
3200 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3203 F:      drivers/usb/gadget/udc/aspeed_udc.c
3204
3205 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3206 M:      Corentin Chary <corentin.chary@gmail.com>
3207 L:      acpi4asus-user@lists.sourceforge.net
3208 L:      platform-driver-x86@vger.kernel.org
3209 S:      Maintained
3210 W:      http://acpi4asus.sf.net
3211 F:      drivers/platform/x86/asus*.c
3212 F:      drivers/platform/x86/eeepc*.c
3213
3214 ASUS TF103C DOCK DRIVER
3215 M:      Hans de Goede <hdegoede@redhat.com>
3216 L:      platform-driver-x86@vger.kernel.org
3217 S:      Maintained
3218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3219 F:      drivers/platform/x86/asus-tf103c-dock.c
3220
3221 ASUS WMI HARDWARE MONITOR DRIVER
3222 M:      Ed Brindley <kernel@maidavale.org>
3223 M:      Denis Pauk <pauk.denis@gmail.com>
3224 L:      linux-hwmon@vger.kernel.org
3225 S:      Maintained
3226 F:      drivers/hwmon/asus_wmi_sensors.c
3227
3228 ASUS WMI EC HARDWARE MONITOR DRIVER
3229 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3230 M:      Denis Pauk <pauk.denis@gmail.com>
3231 L:      linux-hwmon@vger.kernel.org
3232 S:      Maintained
3233 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3234
3235 ASUS EC HARDWARE MONITOR DRIVER
3236 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3237 L:      linux-hwmon@vger.kernel.org
3238 S:      Maintained
3239 F:      drivers/hwmon/asus-ec-sensors.c
3240
3241 ASUS WIRELESS RADIO CONTROL DRIVER
3242 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3243 L:      platform-driver-x86@vger.kernel.org
3244 S:      Maintained
3245 F:      drivers/platform/x86/asus-wireless.c
3246
3247 ASYMMETRIC KEYS
3248 M:      David Howells <dhowells@redhat.com>
3249 L:      keyrings@vger.kernel.org
3250 S:      Maintained
3251 F:      Documentation/crypto/asymmetric-keys.rst
3252 F:      crypto/asymmetric_keys/
3253 F:      include/crypto/pkcs7.h
3254 F:      include/crypto/public_key.h
3255 F:      include/linux/verification.h
3256
3257 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3258 R:      Dan Williams <dan.j.williams@intel.com>
3259 S:      Odd fixes
3260 W:      http://sourceforge.net/projects/xscaleiop
3261 F:      Documentation/crypto/async-tx-api.rst
3262 F:      crypto/async_tx/
3263 F:      include/linux/async_tx.h
3264
3265 AT24 EEPROM DRIVER
3266 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3267 L:      linux-i2c@vger.kernel.org
3268 S:      Maintained
3269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3270 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3271 F:      drivers/misc/eeprom/at24.c
3272
3273 ATA OVER ETHERNET (AOE) DRIVER
3274 M:      "Justin Sanders" <justin@coraid.com>
3275 S:      Supported
3276 W:      http://www.openaoe.org/
3277 F:      Documentation/admin-guide/aoe/
3278 F:      drivers/block/aoe/
3279
3280 ATC260X PMIC MFD DRIVER
3281 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3282 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3283 L:      linux-actions@lists.infradead.org
3284 S:      Maintained
3285 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3286 F:      drivers/input/misc/atc260x-onkey.c
3287 F:      drivers/mfd/atc260*
3288 F:      drivers/power/reset/atc260x-poweroff.c
3289 F:      drivers/regulator/atc260x-regulator.c
3290 F:      include/linux/mfd/atc260x/*
3291
3292 ATHEROS 71XX/9XXX GPIO DRIVER
3293 M:      Alban Bedel <albeu@free.fr>
3294 S:      Maintained
3295 W:      https://github.com/AlbanBedel/linux
3296 T:      git git://github.com/AlbanBedel/linux
3297 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3298 F:      drivers/gpio/gpio-ath79.c
3299
3300 ATHEROS 71XX/9XXX USB PHY DRIVER
3301 M:      Alban Bedel <albeu@free.fr>
3302 S:      Maintained
3303 W:      https://github.com/AlbanBedel/linux
3304 T:      git git://github.com/AlbanBedel/linux
3305 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3306 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3307
3308 ATHEROS ATH GENERIC UTILITIES
3309 M:      Kalle Valo <kvalo@kernel.org>
3310 L:      linux-wireless@vger.kernel.org
3311 S:      Supported
3312 F:      drivers/net/wireless/ath/*
3313
3314 ATHEROS ATH5K WIRELESS DRIVER
3315 M:      Jiri Slaby <jirislaby@kernel.org>
3316 M:      Nick Kossifidis <mickflemm@gmail.com>
3317 M:      Luis Chamberlain <mcgrof@kernel.org>
3318 L:      linux-wireless@vger.kernel.org
3319 S:      Maintained
3320 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3321 F:      drivers/net/wireless/ath/ath5k/
3322
3323 ATHEROS ATH6KL WIRELESS DRIVER
3324 L:      linux-wireless@vger.kernel.org
3325 S:      Orphan
3326 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3327 F:      drivers/net/wireless/ath/ath6kl/
3328
3329 ATI_REMOTE2 DRIVER
3330 M:      Ville Syrjala <syrjala@sci.fi>
3331 S:      Maintained
3332 F:      drivers/input/misc/ati_remote2.c
3333
3334 ATK0110 HWMON DRIVER
3335 M:      Luca Tettamanti <kronos.it@gmail.com>
3336 L:      linux-hwmon@vger.kernel.org
3337 S:      Maintained
3338 F:      drivers/hwmon/asus_atk0110.c
3339
3340 ATLX ETHERNET DRIVERS
3341 M:      Chris Snook <chris.snook@gmail.com>
3342 L:      netdev@vger.kernel.org
3343 S:      Maintained
3344 W:      http://sourceforge.net/projects/atl1
3345 W:      http://atl1.sourceforge.net
3346 F:      drivers/net/ethernet/atheros/
3347
3348 ATM
3349 M:      Chas Williams <3chas3@gmail.com>
3350 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3351 L:      netdev@vger.kernel.org
3352 S:      Maintained
3353 W:      http://linux-atm.sourceforge.net
3354 F:      drivers/atm/
3355 F:      include/linux/atm*
3356 F:      include/uapi/linux/atm*
3357
3358 ATMEL MACB ETHERNET DRIVER
3359 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3360 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3361 S:      Supported
3362 F:      drivers/net/ethernet/cadence/
3363
3364 ATMEL MAXTOUCH DRIVER
3365 M:      Nick Dyer <nick@shmanahar.org>
3366 S:      Maintained
3367 T:      git git://github.com/ndyer/linux.git
3368 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3369 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3370
3371 ATMEL WIRELESS DRIVER
3372 M:      Simon Kelley <simon@thekelleys.org.uk>
3373 L:      linux-wireless@vger.kernel.org
3374 S:      Maintained
3375 W:      http://www.thekelleys.org.uk/atmel
3376 W:      http://atmelwlandriver.sourceforge.net/
3377 F:      drivers/net/wireless/atmel/atmel*
3378
3379 ATOMIC INFRASTRUCTURE
3380 M:      Will Deacon <will@kernel.org>
3381 M:      Peter Zijlstra <peterz@infradead.org>
3382 R:      Boqun Feng <boqun.feng@gmail.com>
3383 R:      Mark Rutland <mark.rutland@arm.com>
3384 L:      linux-kernel@vger.kernel.org
3385 S:      Maintained
3386 F:      arch/*/include/asm/atomic*.h
3387 F:      include/*/atomic*.h
3388 F:      include/linux/refcount.h
3389 F:      Documentation/atomic_*.txt
3390 F:      scripts/atomic/
3391
3392 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3393 M:      Bradley Grove <linuxdrivers@attotech.com>
3394 L:      linux-scsi@vger.kernel.org
3395 S:      Supported
3396 W:      http://www.attotech.com
3397 F:      drivers/scsi/esas2r
3398
3399 ATUSB IEEE 802.15.4 RADIO DRIVER
3400 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3401 L:      linux-wpan@vger.kernel.org
3402 S:      Maintained
3403 F:      drivers/net/ieee802154/at86rf230.h
3404 F:      drivers/net/ieee802154/atusb.c
3405 F:      drivers/net/ieee802154/atusb.h
3406
3407 AUDIT SUBSYSTEM
3408 M:      Paul Moore <paul@paul-moore.com>
3409 M:      Eric Paris <eparis@redhat.com>
3410 L:      linux-audit@redhat.com (moderated for non-subscribers)
3411 S:      Supported
3412 W:      https://github.com/linux-audit
3413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3414 F:      include/asm-generic/audit_*.h
3415 F:      include/linux/audit.h
3416 F:      include/linux/audit_arch.h
3417 F:      include/uapi/linux/audit.h
3418 F:      kernel/audit*
3419 F:      lib/*audit.c
3420
3421 AUXILIARY DISPLAY DRIVERS
3422 M:      Miguel Ojeda <ojeda@kernel.org>
3423 S:      Maintained
3424 F:      Documentation/devicetree/bindings/auxdisplay/
3425 F:      drivers/auxdisplay/
3426 F:      include/linux/cfag12864b.h
3427
3428 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3429 M:      Andreas Klinger <ak@it-klinger.de>
3430 L:      linux-iio@vger.kernel.org
3431 S:      Maintained
3432 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3433 F:      drivers/iio/adc/hx711.c
3434
3435 AX.25 NETWORK LAYER
3436 M:      Ralf Baechle <ralf@linux-mips.org>
3437 L:      linux-hams@vger.kernel.org
3438 S:      Maintained
3439 W:      http://www.linux-ax25.org/
3440 F:      include/net/ax25.h
3441 F:      include/uapi/linux/ax25.h
3442 F:      net/ax25/
3443
3444 AXENTIA ARM DEVICES
3445 M:      Peter Rosin <peda@axentia.se>
3446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3447 S:      Maintained
3448 F:      arch/arm/boot/dts/at91-linea.dtsi
3449 F:      arch/arm/boot/dts/at91-natte.dtsi
3450 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3451 F:      arch/arm/boot/dts/at91-tse850-3.dts
3452
3453 AXENTIA ASOC DRIVERS
3454 M:      Peter Rosin <peda@axentia.se>
3455 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3456 S:      Maintained
3457 F:      Documentation/devicetree/bindings/sound/axentia,*
3458 F:      sound/soc/atmel/tse850-pcm5142.c
3459
3460 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3461 M:      Nuno Sá <nuno.sa@analog.com>
3462 L:      linux-hwmon@vger.kernel.org
3463 S:      Supported
3464 W:      https://ez.analog.com/linux-software-drivers
3465 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3466 F:      drivers/hwmon/axi-fan-control.c
3467
3468 AXXIA I2C CONTROLLER
3469 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3470 L:      linux-i2c@vger.kernel.org
3471 S:      Maintained
3472 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3473 F:      drivers/i2c/busses/i2c-axxia.c
3474
3475 AZ6007 DVB DRIVER
3476 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3477 L:      linux-media@vger.kernel.org
3478 S:      Maintained
3479 W:      https://linuxtv.org
3480 T:      git git://linuxtv.org/media_tree.git
3481 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3482
3483 AZTECH FM RADIO RECEIVER DRIVER
3484 M:      Hans Verkuil <hverkuil@xs4all.nl>
3485 L:      linux-media@vger.kernel.org
3486 S:      Maintained
3487 W:      https://linuxtv.org
3488 T:      git git://linuxtv.org/media_tree.git
3489 F:      drivers/media/radio/radio-aztech*
3490
3491 B43 WIRELESS DRIVER
3492 L:      linux-wireless@vger.kernel.org
3493 L:      b43-dev@lists.infradead.org
3494 S:      Odd Fixes
3495 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3496 F:      drivers/net/wireless/broadcom/b43/
3497
3498 B43LEGACY WIRELESS DRIVER
3499 M:      Larry Finger <Larry.Finger@lwfinger.net>
3500 L:      linux-wireless@vger.kernel.org
3501 L:      b43-dev@lists.infradead.org
3502 S:      Maintained
3503 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3504 F:      drivers/net/wireless/broadcom/b43legacy/
3505
3506 BACKLIGHT CLASS/SUBSYSTEM
3507 M:      Lee Jones <lee@kernel.org>
3508 M:      Daniel Thompson <daniel.thompson@linaro.org>
3509 M:      Jingoo Han <jingoohan1@gmail.com>
3510 L:      dri-devel@lists.freedesktop.org
3511 S:      Maintained
3512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3513 F:      Documentation/ABI/stable/sysfs-class-backlight
3514 F:      Documentation/ABI/testing/sysfs-class-backlight
3515 F:      Documentation/devicetree/bindings/leds/backlight
3516 F:      drivers/video/backlight/
3517 F:      include/linux/backlight.h
3518 F:      include/linux/pwm_backlight.h
3519
3520 BARCO P50 GPIO DRIVER
3521 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3522 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3523 S:      Maintained
3524 F:      drivers/platform/x86/barco-p50-gpio.c
3525
3526 BATMAN ADVANCED
3527 M:      Marek Lindner <mareklindner@neomailbox.ch>
3528 M:      Simon Wunderlich <sw@simonwunderlich.de>
3529 M:      Antonio Quartulli <a@unstable.cc>
3530 M:      Sven Eckelmann <sven@narfation.org>
3531 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3532 S:      Maintained
3533 W:      https://www.open-mesh.org/
3534 Q:      https://patchwork.open-mesh.org/project/batman/list/
3535 B:      https://www.open-mesh.org/projects/batman-adv/issues
3536 C:      ircs://irc.hackint.org/batadv
3537 T:      git https://git.open-mesh.org/linux-merge.git
3538 F:      Documentation/networking/batman-adv.rst
3539 F:      include/uapi/linux/batadv_packet.h
3540 F:      include/uapi/linux/batman_adv.h
3541 F:      net/batman-adv/
3542
3543 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3544 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3545 L:      linux-hams@vger.kernel.org
3546 S:      Maintained
3547 W:      http://www.baycom.org/~tom/ham/ham.html
3548 F:      drivers/net/hamradio/baycom*
3549
3550 BCACHE (BLOCK LAYER CACHE)
3551 M:      Coly Li <colyli@suse.de>
3552 M:      Kent Overstreet <kent.overstreet@gmail.com>
3553 L:      linux-bcache@vger.kernel.org
3554 S:      Maintained
3555 W:      http://bcache.evilpiepirate.org
3556 C:      irc://irc.oftc.net/bcache
3557 F:      drivers/md/bcache/
3558
3559 BDISP ST MEDIA DRIVER
3560 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3561 L:      linux-media@vger.kernel.org
3562 S:      Supported
3563 W:      https://linuxtv.org
3564 T:      git git://linuxtv.org/media_tree.git
3565 F:      drivers/media/platform/st/sti/bdisp
3566
3567 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3568 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3569 L:      netdev@vger.kernel.org
3570 S:      Maintained
3571 F:      drivers/net/ethernet/ec_bhf.c
3572
3573 BEFS FILE SYSTEM
3574 M:      Luis de Bethencourt <luisbg@kernel.org>
3575 M:      Salah Triki <salah.triki@gmail.com>
3576 S:      Maintained
3577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3578 F:      Documentation/filesystems/befs.rst
3579 F:      fs/befs/
3580
3581 BFQ I/O SCHEDULER
3582 M:      Paolo Valente <paolo.valente@linaro.org>
3583 M:      Jens Axboe <axboe@kernel.dk>
3584 L:      linux-block@vger.kernel.org
3585 S:      Maintained
3586 F:      Documentation/block/bfq-iosched.rst
3587 F:      block/bfq-*
3588
3589 BFS FILE SYSTEM
3590 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3591 S:      Maintained
3592 F:      Documentation/filesystems/bfs.rst
3593 F:      fs/bfs/
3594 F:      include/uapi/linux/bfs_fs.h
3595
3596 BITMAP API
3597 M:      Yury Norov <yury.norov@gmail.com>
3598 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3599 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3600 S:      Maintained
3601 F:      include/linux/bitmap.h
3602 F:      include/linux/cpumask.h
3603 F:      include/linux/find.h
3604 F:      include/linux/nodemask.h
3605 F:      lib/bitmap.c
3606 F:      lib/cpumask.c
3607 F:      lib/cpumask_kunit.c
3608 F:      lib/find_bit.c
3609 F:      lib/find_bit_benchmark.c
3610 F:      lib/test_bitmap.c
3611 F:      tools/include/linux/bitmap.h
3612 F:      tools/include/linux/find.h
3613 F:      tools/lib/bitmap.c
3614 F:      tools/lib/find_bit.c
3615
3616 BLINKM RGB LED DRIVER
3617 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3618 S:      Maintained
3619 F:      drivers/leds/leds-blinkm.c
3620
3621 BLOCK LAYER
3622 M:      Jens Axboe <axboe@kernel.dk>
3623 L:      linux-block@vger.kernel.org
3624 S:      Maintained
3625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3626 F:      Documentation/ABI/stable/sysfs-block
3627 F:      Documentation/block/
3628 F:      block/
3629 F:      drivers/block/
3630 F:      include/linux/bio.h
3631 F:      include/linux/blk*
3632 F:      kernel/trace/blktrace.c
3633 F:      lib/sbitmap.c
3634
3635 BLOCK2MTD DRIVER
3636 M:      Joern Engel <joern@lazybastard.org>
3637 L:      linux-mtd@lists.infradead.org
3638 S:      Maintained
3639 F:      drivers/mtd/devices/block2mtd.c
3640
3641 BLUETOOTH DRIVERS
3642 M:      Marcel Holtmann <marcel@holtmann.org>
3643 M:      Johan Hedberg <johan.hedberg@gmail.com>
3644 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3645 L:      linux-bluetooth@vger.kernel.org
3646 S:      Supported
3647 W:      http://www.bluez.org/
3648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3650 F:      drivers/bluetooth/
3651
3652 BLUETOOTH SUBSYSTEM
3653 M:      Marcel Holtmann <marcel@holtmann.org>
3654 M:      Johan Hedberg <johan.hedberg@gmail.com>
3655 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3656 L:      linux-bluetooth@vger.kernel.org
3657 S:      Supported
3658 W:      http://www.bluez.org/
3659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3661 F:      include/net/bluetooth/
3662 F:      net/bluetooth/
3663
3664 BONDING DRIVER
3665 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3666 M:      Veaceslav Falico <vfalico@gmail.com>
3667 M:      Andy Gospodarek <andy@greyhouse.net>
3668 L:      netdev@vger.kernel.org
3669 S:      Supported
3670 W:      http://sourceforge.net/projects/bonding/
3671 F:      Documentation/networking/bonding.rst
3672 F:      drivers/net/bonding/
3673 F:      include/net/bond*
3674 F:      include/uapi/linux/if_bonding.h
3675 F:      tools/testing/selftests/drivers/net/bonding/
3676
3677 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3678 M:      Dan Robertson <dan@dlrobertson.com>
3679 L:      linux-iio@vger.kernel.org
3680 S:      Maintained
3681 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3682 F:      drivers/iio/accel/bma400*
3683
3684 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3685 M:      Alexei Starovoitov <ast@kernel.org>
3686 M:      Daniel Borkmann <daniel@iogearbox.net>
3687 M:      Andrii Nakryiko <andrii@kernel.org>
3688 R:      Martin KaFai Lau <martin.lau@linux.dev>
3689 R:      Song Liu <song@kernel.org>
3690 R:      Yonghong Song <yhs@fb.com>
3691 R:      John Fastabend <john.fastabend@gmail.com>
3692 R:      KP Singh <kpsingh@kernel.org>
3693 R:      Stanislav Fomichev <sdf@google.com>
3694 R:      Hao Luo <haoluo@google.com>
3695 R:      Jiri Olsa <jolsa@kernel.org>
3696 L:      bpf@vger.kernel.org
3697 S:      Supported
3698 W:      https://bpf.io/
3699 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3702 F:      Documentation/bpf/
3703 F:      Documentation/networking/filter.rst
3704 F:      Documentation/userspace-api/ebpf/
3705 F:      arch/*/net/*
3706 F:      include/linux/bpf*
3707 F:      include/linux/btf*
3708 F:      include/linux/filter.h
3709 F:      include/trace/events/xdp.h
3710 F:      include/uapi/linux/bpf*
3711 F:      include/uapi/linux/btf*
3712 F:      include/uapi/linux/filter.h
3713 F:      kernel/bpf/
3714 F:      kernel/trace/bpf_trace.c
3715 F:      lib/test_bpf.c
3716 F:      net/bpf/
3717 F:      net/core/filter.c
3718 F:      net/sched/act_bpf.c
3719 F:      net/sched/cls_bpf.c
3720 F:      samples/bpf/
3721 F:      scripts/bpf_doc.py
3722 F:      scripts/pahole-flags.sh
3723 F:      scripts/pahole-version.sh
3724 F:      tools/bpf/
3725 F:      tools/lib/bpf/
3726 F:      tools/testing/selftests/bpf/
3727
3728 BPF JIT for ARM
3729 M:      Shubham Bansal <illusionist.neo@gmail.com>
3730 L:      bpf@vger.kernel.org
3731 S:      Odd Fixes
3732 F:      arch/arm/net/
3733
3734 BPF JIT for ARM64
3735 M:      Daniel Borkmann <daniel@iogearbox.net>
3736 M:      Alexei Starovoitov <ast@kernel.org>
3737 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3738 L:      bpf@vger.kernel.org
3739 S:      Supported
3740 F:      arch/arm64/net/
3741
3742 BPF JIT for MIPS (32-BIT AND 64-BIT)
3743 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3744 M:      Paul Burton <paulburton@kernel.org>
3745 L:      bpf@vger.kernel.org
3746 S:      Maintained
3747 F:      arch/mips/net/
3748
3749 BPF JIT for NFP NICs
3750 M:      Jakub Kicinski <kuba@kernel.org>
3751 L:      bpf@vger.kernel.org
3752 S:      Odd Fixes
3753 F:      drivers/net/ethernet/netronome/nfp/bpf/
3754
3755 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3756 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3757 M:      Michael Ellerman <mpe@ellerman.id.au>
3758 L:      bpf@vger.kernel.org
3759 S:      Supported
3760 F:      arch/powerpc/net/
3761
3762 BPF JIT for RISC-V (32-bit)
3763 M:      Luke Nelson <luke.r.nels@gmail.com>
3764 M:      Xi Wang <xi.wang@gmail.com>
3765 L:      bpf@vger.kernel.org
3766 S:      Maintained
3767 F:      arch/riscv/net/
3768 X:      arch/riscv/net/bpf_jit_comp64.c
3769
3770 BPF JIT for RISC-V (64-bit)
3771 M:      Björn Töpel <bjorn@kernel.org>
3772 L:      bpf@vger.kernel.org
3773 S:      Maintained
3774 F:      arch/riscv/net/
3775 X:      arch/riscv/net/bpf_jit_comp32.c
3776
3777 BPF JIT for S390
3778 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3779 M:      Heiko Carstens <hca@linux.ibm.com>
3780 M:      Vasily Gorbik <gor@linux.ibm.com>
3781 L:      bpf@vger.kernel.org
3782 S:      Supported
3783 F:      arch/s390/net/
3784 X:      arch/s390/net/pnet.c
3785
3786 BPF JIT for SPARC (32-BIT AND 64-BIT)
3787 M:      David S. Miller <davem@davemloft.net>
3788 L:      bpf@vger.kernel.org
3789 S:      Odd Fixes
3790 F:      arch/sparc/net/
3791
3792 BPF JIT for X86 32-BIT
3793 M:      Wang YanQing <udknight@gmail.com>
3794 L:      bpf@vger.kernel.org
3795 S:      Odd Fixes
3796 F:      arch/x86/net/bpf_jit_comp32.c
3797
3798 BPF JIT for X86 64-BIT
3799 M:      Alexei Starovoitov <ast@kernel.org>
3800 M:      Daniel Borkmann <daniel@iogearbox.net>
3801 L:      bpf@vger.kernel.org
3802 S:      Supported
3803 F:      arch/x86/net/
3804 X:      arch/x86/net/bpf_jit_comp32.c
3805
3806 BPF [CORE]
3807 M:      Alexei Starovoitov <ast@kernel.org>
3808 M:      Daniel Borkmann <daniel@iogearbox.net>
3809 R:      John Fastabend <john.fastabend@gmail.com>
3810 L:      bpf@vger.kernel.org
3811 S:      Maintained
3812 F:      kernel/bpf/verifier.c
3813 F:      kernel/bpf/tnum.c
3814 F:      kernel/bpf/core.c
3815 F:      kernel/bpf/syscall.c
3816 F:      kernel/bpf/dispatcher.c
3817 F:      kernel/bpf/trampoline.c
3818 F:      include/linux/bpf*
3819 F:      include/linux/filter.h
3820
3821 BPF [BTF]
3822 M:      Martin KaFai Lau <martin.lau@linux.dev>
3823 L:      bpf@vger.kernel.org
3824 S:      Maintained
3825 F:      kernel/bpf/btf.c
3826 F:      include/linux/btf*
3827
3828 BPF [TRACING]
3829 M:      Song Liu <song@kernel.org>
3830 R:      Jiri Olsa <jolsa@kernel.org>
3831 L:      bpf@vger.kernel.org
3832 S:      Maintained
3833 F:      kernel/trace/bpf_trace.c
3834 F:      kernel/bpf/stackmap.c
3835
3836 BPF [NETWORKING] (tc BPF, sock_addr)
3837 M:      Martin KaFai Lau <martin.lau@linux.dev>
3838 M:      Daniel Borkmann <daniel@iogearbox.net>
3839 R:      John Fastabend <john.fastabend@gmail.com>
3840 L:      bpf@vger.kernel.org
3841 L:      netdev@vger.kernel.org
3842 S:      Maintained
3843 F:      net/core/filter.c
3844 F:      net/sched/act_bpf.c
3845 F:      net/sched/cls_bpf.c
3846
3847 BPF [NETWORKING] (struct_ops, reuseport)
3848 M:      Martin KaFai Lau <martin.lau@linux.dev>
3849 L:      bpf@vger.kernel.org
3850 L:      netdev@vger.kernel.org
3851 S:      Maintained
3852 F:      kernel/bpf/bpf_struct*
3853
3854 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3855 M:      KP Singh <kpsingh@kernel.org>
3856 R:      Florent Revest <revest@chromium.org>
3857 R:      Brendan Jackman <jackmanb@chromium.org>
3858 L:      bpf@vger.kernel.org
3859 S:      Maintained
3860 F:      Documentation/bpf/prog_lsm.rst
3861 F:      include/linux/bpf_lsm.h
3862 F:      kernel/bpf/bpf_lsm.c
3863 F:      security/bpf/
3864
3865 BPF [STORAGE & CGROUPS]
3866 M:      Martin KaFai Lau <martin.lau@linux.dev>
3867 L:      bpf@vger.kernel.org
3868 S:      Maintained
3869 F:      kernel/bpf/cgroup.c
3870 F:      kernel/bpf/*storage.c
3871 F:      kernel/bpf/bpf_lru*
3872
3873 BPF [RINGBUF]
3874 M:      Andrii Nakryiko <andrii@kernel.org>
3875 L:      bpf@vger.kernel.org
3876 S:      Maintained
3877 F:      kernel/bpf/ringbuf.c
3878
3879 BPF [ITERATOR]
3880 M:      Yonghong Song <yhs@fb.com>
3881 L:      bpf@vger.kernel.org
3882 S:      Maintained
3883 F:      kernel/bpf/*iter.c
3884
3885 BPF [L7 FRAMEWORK] (sockmap)
3886 M:      John Fastabend <john.fastabend@gmail.com>
3887 M:      Jakub Sitnicki <jakub@cloudflare.com>
3888 L:      netdev@vger.kernel.org
3889 L:      bpf@vger.kernel.org
3890 S:      Maintained
3891 F:      include/linux/skmsg.h
3892 F:      net/core/skmsg.c
3893 F:      net/core/sock_map.c
3894 F:      net/ipv4/tcp_bpf.c
3895 F:      net/ipv4/udp_bpf.c
3896 F:      net/unix/unix_bpf.c
3897
3898 BPF [LIBRARY] (libbpf)
3899 M:      Andrii Nakryiko <andrii@kernel.org>
3900 L:      bpf@vger.kernel.org
3901 S:      Maintained
3902 F:      tools/lib/bpf/
3903
3904 BPF [TOOLING] (bpftool)
3905 M:      Quentin Monnet <quentin@isovalent.com>
3906 L:      bpf@vger.kernel.org
3907 S:      Maintained
3908 F:      kernel/bpf/disasm.*
3909 F:      tools/bpf/bpftool/
3910
3911 BPF [SELFTESTS] (Test Runners & Infrastructure)
3912 M:      Andrii Nakryiko <andrii@kernel.org>
3913 R:      Mykola Lysenko <mykolal@fb.com>
3914 L:      bpf@vger.kernel.org
3915 S:      Maintained
3916 F:      tools/testing/selftests/bpf/
3917
3918 BPF [MISC]
3919 L:      bpf@vger.kernel.org
3920 S:      Odd Fixes
3921 K:      (?:\b|_)bpf(?:\b|_)
3922
3923 BROADCOM B44 10/100 ETHERNET DRIVER
3924 M:      Michael Chan <michael.chan@broadcom.com>
3925 L:      netdev@vger.kernel.org
3926 S:      Supported
3927 F:      drivers/net/ethernet/broadcom/b44.*
3928
3929 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3930 M:      Florian Fainelli <f.fainelli@gmail.com>
3931 L:      netdev@vger.kernel.org
3932 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3933 S:      Supported
3934 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3935 F:      drivers/net/dsa/b53/*
3936 F:      drivers/net/dsa/bcm_sf2*
3937 F:      include/linux/dsa/brcm.h
3938 F:      include/linux/platform_data/b53.h
3939
3940 BROADCOM BCMBCA ARM ARCHITECTURE
3941 M:      William Zhang <william.zhang@broadcom.com>
3942 M:      Anand Gore <anand.gore@broadcom.com>
3943 M:      Kursad Oney <kursad.oney@broadcom.com>
3944 M:      Florian Fainelli <f.fainelli@gmail.com>
3945 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3947 S:      Maintained
3948 T:      git git://github.com/broadcom/stblinux.git
3949 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3950 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3951 N:      bcmbca
3952 N:      bcm[9]?47622
3953 N:      bcm[9]?4912
3954 N:      bcm[9]?63138
3955 N:      bcm[9]?63146
3956 N:      bcm[9]?63148
3957 N:      bcm[9]?63158
3958 N:      bcm[9]?63178
3959 N:      bcm[9]?6756
3960 N:      bcm[9]?6813
3961 N:      bcm[9]?6846
3962 N:      bcm[9]?6855
3963 N:      bcm[9]?6856
3964 N:      bcm[9]?6858
3965 N:      bcm[9]?6878
3966
3967 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3968 M:      Florian Fainelli <f.fainelli@gmail.com>
3969 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3970 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3972 S:      Maintained
3973 T:      git git://github.com/broadcom/stblinux.git
3974 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3975 F:      drivers/pci/controller/pcie-brcmstb.c
3976 F:      drivers/staging/vc04_services
3977 N:      bcm2711
3978 N:      bcm283*
3979 N:      raspberrypi
3980
3981 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3982 M:      Florian Fainelli <f.fainelli@gmail.com>
3983 M:      Ray Jui <rjui@broadcom.com>
3984 M:      Scott Branden <sbranden@broadcom.com>
3985 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3986 S:      Maintained
3987 T:      git git://github.com/broadcom/mach-bcm
3988 F:      arch/arm/mach-bcm/
3989 N:      bcm281*
3990 N:      bcm113*
3991 N:      bcm216*
3992 N:      kona
3993
3994 BROADCOM BCM47XX MIPS ARCHITECTURE
3995 M:      Hauke Mehrtens <hauke@hauke-m.de>
3996 M:      Rafał Miłecki <zajec5@gmail.com>
3997 L:      linux-mips@vger.kernel.org
3998 S:      Maintained
3999 F:      Documentation/devicetree/bindings/mips/brcm/
4000 F:      arch/mips/bcm47xx/*
4001 F:      arch/mips/include/asm/mach-bcm47xx/*
4002
4003 BROADCOM BCM4908 ETHERNET DRIVER
4004 M:      Rafał Miłecki <rafal@milecki.pl>
4005 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4006 L:      netdev@vger.kernel.org
4007 S:      Maintained
4008 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
4009 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
4010 F:      drivers/net/ethernet/broadcom/unimac.h
4011
4012 BROADCOM BCM4908 PINMUX DRIVER
4013 M:      Rafał Miłecki <rafal@milecki.pl>
4014 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4015 L:      linux-gpio@vger.kernel.org
4016 S:      Maintained
4017 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
4018 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
4019
4020 BROADCOM BCM5301X ARM ARCHITECTURE
4021 M:      Florian Fainelli <f.fainelli@gmail.com>
4022 M:      Hauke Mehrtens <hauke@hauke-m.de>
4023 M:      Rafał Miłecki <zajec5@gmail.com>
4024 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4026 S:      Maintained
4027 F:      arch/arm/boot/dts/bcm470*
4028 F:      arch/arm/boot/dts/bcm5301*
4029 F:      arch/arm/boot/dts/bcm953012*
4030 F:      arch/arm/mach-bcm/bcm_5301x.c
4031
4032 BROADCOM BCM53573 ARM ARCHITECTURE
4033 M:      Florian Fainelli <f.fainelli@gmail.com>
4034 M:      Rafał Miłecki <rafal@milecki.pl>
4035 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4037 S:      Maintained
4038 F:      arch/arm/boot/dts/bcm47189*
4039 F:      arch/arm/boot/dts/bcm53573*
4040
4041 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4042 M:      Kevin Cernekee <cernekee@gmail.com>
4043 L:      linux-usb@vger.kernel.org
4044 S:      Maintained
4045 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4046
4047 BROADCOM BCM7XXX ARM ARCHITECTURE
4048 M:      Florian Fainelli <f.fainelli@gmail.com>
4049 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4051 S:      Maintained
4052 T:      git git://github.com/broadcom/stblinux.git
4053 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4054 F:      arch/arm/boot/dts/bcm7*.dts*
4055 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4056 F:      arch/arm/mach-bcm/*brcmstb*
4057 F:      arch/arm/mm/cache-b15-rac.c
4058 F:      drivers/bus/brcmstb_gisb.c
4059 F:      drivers/pci/controller/pcie-brcmstb.c
4060 N:      brcmstb
4061 N:      bcm7038
4062 N:      bcm7120
4063
4064 BROADCOM BDC DRIVER
4065 M:      Al Cooper <alcooperx@gmail.com>
4066 L:      linux-usb@vger.kernel.org
4067 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4068 S:      Maintained
4069 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4070 F:      drivers/usb/gadget/udc/bdc/
4071
4072 BROADCOM BMIPS CPUFREQ DRIVER
4073 M:      Markus Mayer <mmayer@broadcom.com>
4074 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4075 L:      linux-pm@vger.kernel.org
4076 S:      Maintained
4077 F:      drivers/cpufreq/bmips-cpufreq.c
4078
4079 BROADCOM BMIPS MIPS ARCHITECTURE
4080 M:      Florian Fainelli <f.fainelli@gmail.com>
4081 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4082 L:      linux-mips@vger.kernel.org
4083 S:      Maintained
4084 T:      git git://github.com/broadcom/stblinux.git
4085 F:      arch/mips/bmips/*
4086 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4087 F:      arch/mips/include/asm/mach-bmips/*
4088 F:      arch/mips/kernel/*bmips*
4089 F:      drivers/soc/bcm/bcm63xx
4090 F:      drivers/irqchip/irq-bcm63*
4091 F:      drivers/irqchip/irq-bcm7*
4092 F:      drivers/irqchip/irq-brcmstb*
4093 F:      include/linux/bcm963xx_nvram.h
4094 F:      include/linux/bcm963xx_tag.h
4095
4096 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4097 M:      Rasesh Mody <rmody@marvell.com>
4098 M:      GR-Linux-NIC-Dev@marvell.com
4099 L:      netdev@vger.kernel.org
4100 S:      Supported
4101 F:      drivers/net/ethernet/broadcom/bnx2.*
4102 F:      drivers/net/ethernet/broadcom/bnx2_*
4103
4104 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4105 M:      Saurav Kashyap <skashyap@marvell.com>
4106 M:      Javed Hasan <jhasan@marvell.com>
4107 M:      GR-QLogic-Storage-Upstream@marvell.com
4108 L:      linux-scsi@vger.kernel.org
4109 S:      Supported
4110 F:      drivers/scsi/bnx2fc/
4111
4112 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4113 M:      Nilesh Javali <njavali@marvell.com>
4114 M:      Manish Rangankar <mrangankar@marvell.com>
4115 M:      GR-QLogic-Storage-Upstream@marvell.com
4116 L:      linux-scsi@vger.kernel.org
4117 S:      Supported
4118 F:      drivers/scsi/bnx2i/
4119
4120 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4121 M:      Ariel Elior <aelior@marvell.com>
4122 M:      Sudarsana Kalluru <skalluru@marvell.com>
4123 M:      Manish Chopra <manishc@marvell.com>
4124 L:      netdev@vger.kernel.org
4125 S:      Supported
4126 F:      drivers/net/ethernet/broadcom/bnx2x/
4127
4128 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4129 M:      Michael Chan <michael.chan@broadcom.com>
4130 L:      netdev@vger.kernel.org
4131 S:      Supported
4132 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4133 F:      drivers/net/ethernet/broadcom/bnxt/
4134 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4135
4136 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4137 M:      Arend van Spriel <aspriel@gmail.com>
4138 M:      Franky Lin <franky.lin@broadcom.com>
4139 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4140 L:      linux-wireless@vger.kernel.org
4141 L:      brcm80211-dev-list.pdl@broadcom.com
4142 L:      SHA-cyfmac-dev-list@infineon.com
4143 S:      Supported
4144 F:      drivers/net/wireless/broadcom/brcm80211/
4145
4146 BROADCOM BRCMSTB GPIO DRIVER
4147 M:      Doug Berger <opendmb@gmail.com>
4148 M:      Florian Fainelli <f.fainelli@gmail.com>
4149 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4150 S:      Supported
4151 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4152 F:      drivers/gpio/gpio-brcmstb.c
4153
4154 BROADCOM BRCMSTB I2C DRIVER
4155 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4156 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4157 L:      linux-i2c@vger.kernel.org
4158 S:      Supported
4159 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4160 F:      drivers/i2c/busses/i2c-brcmstb.c
4161
4162 BROADCOM BRCMSTB UART DRIVER
4163 M:      Al Cooper <alcooperx@gmail.com>
4164 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4165 L:      linux-serial@vger.kernel.org
4166 S:      Maintained
4167 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4168 F:      drivers/tty/serial/8250/8250_bcm7271.c
4169
4170 BROADCOM BRCMSTB USB EHCI DRIVER
4171 M:      Al Cooper <alcooperx@gmail.com>
4172 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4173 L:      linux-usb@vger.kernel.org
4174 S:      Maintained
4175 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4176 F:      drivers/usb/host/ehci-brcm.*
4177
4178 BROADCOM BRCMSTB USB PIN MAP DRIVER
4179 M:      Al Cooper <alcooperx@gmail.com>
4180 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4181 L:      linux-usb@vger.kernel.org
4182 S:      Maintained
4183 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4184 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4185
4186 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4187 M:      Al Cooper <alcooperx@gmail.com>
4188 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4189 L:      linux-kernel@vger.kernel.org
4190 S:      Maintained
4191 F:      drivers/phy/broadcom/phy-brcm-usb*
4192
4193 BROADCOM ETHERNET PHY DRIVERS
4194 M:      Florian Fainelli <f.fainelli@gmail.com>
4195 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4196 L:      netdev@vger.kernel.org
4197 S:      Supported
4198 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4199 F:      drivers/net/phy/bcm*.[ch]
4200 F:      drivers/net/phy/broadcom.c
4201 F:      include/linux/brcmphy.h
4202
4203 BROADCOM GENET ETHERNET DRIVER
4204 M:      Doug Berger <opendmb@gmail.com>
4205 M:      Florian Fainelli <f.fainelli@gmail.com>
4206 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4207 L:      netdev@vger.kernel.org
4208 S:      Supported
4209 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4210 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4211 F:      drivers/net/ethernet/broadcom/genet/
4212 F:      drivers/net/ethernet/broadcom/unimac.h
4213 F:      drivers/net/mdio/mdio-bcm-unimac.c
4214 F:      include/linux/platform_data/bcmgenet.h
4215 F:      include/linux/platform_data/mdio-bcm-unimac.h
4216
4217 BROADCOM IPROC ARM ARCHITECTURE
4218 M:      Ray Jui <rjui@broadcom.com>
4219 M:      Scott Branden <sbranden@broadcom.com>
4220 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4222 S:      Maintained
4223 T:      git git://github.com/broadcom/stblinux.git
4224 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4225 F:      arch/arm64/boot/dts/broadcom/stingray/*
4226 F:      drivers/clk/bcm/clk-ns*
4227 F:      drivers/clk/bcm/clk-sr*
4228 F:      drivers/pinctrl/bcm/pinctrl-ns*
4229 F:      include/dt-bindings/clock/bcm-sr*
4230 N:      iproc
4231 N:      cygnus
4232 N:      bcm[-_]nsp
4233 N:      bcm9113*
4234 N:      bcm9583*
4235 N:      bcm9585*
4236 N:      bcm9586*
4237 N:      bcm988312
4238 N:      bcm113*
4239 N:      bcm583*
4240 N:      bcm585*
4241 N:      bcm586*
4242 N:      bcm88312
4243 N:      hr2
4244 N:      stingray
4245
4246 BROADCOM IPROC GBIT ETHERNET DRIVER
4247 M:      Rafał Miłecki <rafal@milecki.pl>
4248 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4249 L:      netdev@vger.kernel.org
4250 S:      Maintained
4251 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4252 F:      drivers/net/ethernet/broadcom/bgmac*
4253 F:      drivers/net/ethernet/broadcom/unimac.h
4254
4255 BROADCOM KONA GPIO DRIVER
4256 M:      Ray Jui <rjui@broadcom.com>
4257 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4258 S:      Supported
4259 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4260 F:      drivers/gpio/gpio-bcm-kona.c
4261
4262 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4263 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4264 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4265 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4266 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4267 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4268 L:      linux-scsi@vger.kernel.org
4269 S:      Supported
4270 W:      https://www.broadcom.com/support/storage
4271 F:      drivers/scsi/mpi3mr/
4272
4273 BROADCOM NETXTREME-E ROCE DRIVER
4274 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4275 L:      linux-rdma@vger.kernel.org
4276 S:      Supported
4277 W:      http://www.broadcom.com
4278 F:      drivers/infiniband/hw/bnxt_re/
4279 F:      include/uapi/rdma/bnxt_re-abi.h
4280
4281 BROADCOM NVRAM DRIVER
4282 M:      Rafał Miłecki <zajec5@gmail.com>
4283 L:      linux-mips@vger.kernel.org
4284 S:      Maintained
4285 F:      drivers/firmware/broadcom/*
4286
4287 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4288 M:      Rafał Miłecki <rafal@milecki.pl>
4289 M:      Florian Fainelli <f.fainelli@gmail.com>
4290 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4291 L:      linux-pm@vger.kernel.org
4292 S:      Maintained
4293 T:      git git://github.com/broadcom/stblinux.git
4294 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4295 F:      include/dt-bindings/soc/bcm-pmb.h
4296
4297 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4298 M:      Rafał Miłecki <zajec5@gmail.com>
4299 L:      linux-wireless@vger.kernel.org
4300 S:      Maintained
4301 F:      drivers/bcma/
4302 F:      include/linux/bcma/
4303
4304 BROADCOM SPI DRIVER
4305 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4306 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4307 S:      Maintained
4308 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4309 F:      drivers/spi/spi-bcm-qspi.*
4310 F:      drivers/spi/spi-brcmstb-qspi.c
4311 F:      drivers/spi/spi-iproc-qspi.c
4312
4313 BROADCOM STB AVS CPUFREQ DRIVER
4314 M:      Markus Mayer <mmayer@broadcom.com>
4315 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4316 L:      linux-pm@vger.kernel.org
4317 S:      Maintained
4318 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4319 F:      drivers/cpufreq/brcmstb*
4320
4321 BROADCOM STB AVS TMON DRIVER
4322 M:      Markus Mayer <mmayer@broadcom.com>
4323 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4324 L:      linux-pm@vger.kernel.org
4325 S:      Maintained
4326 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4327 F:      drivers/thermal/broadcom/brcmstb*
4328
4329 BROADCOM STB DPFE DRIVER
4330 M:      Markus Mayer <mmayer@broadcom.com>
4331 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4333 S:      Maintained
4334 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4335 F:      drivers/memory/brcmstb_dpfe.c
4336
4337 BROADCOM STB NAND FLASH DRIVER
4338 M:      Brian Norris <computersforpeace@gmail.com>
4339 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4340 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4341 L:      linux-mtd@lists.infradead.org
4342 S:      Maintained
4343 F:      drivers/mtd/nand/raw/brcmnand/
4344 F:      include/linux/platform_data/brcmnand.h
4345
4346 BROADCOM STB PCIE DRIVER
4347 M:      Jim Quinlan <jim2101024@gmail.com>
4348 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4349 M:      Florian Fainelli <f.fainelli@gmail.com>
4350 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4351 L:      linux-pci@vger.kernel.org
4352 S:      Maintained
4353 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4354 F:      drivers/pci/controller/pcie-brcmstb.c
4355
4356 BROADCOM SYSTEMPORT ETHERNET DRIVER
4357 M:      Florian Fainelli <f.fainelli@gmail.com>
4358 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4359 L:      netdev@vger.kernel.org
4360 S:      Supported
4361 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4362 F:      drivers/net/ethernet/broadcom/unimac.h
4363 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4364
4365 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4366 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4367 M:      Prashant Sreedharan <prashant@broadcom.com>
4368 M:      Michael Chan <mchan@broadcom.com>
4369 L:      netdev@vger.kernel.org
4370 S:      Supported
4371 F:      drivers/net/ethernet/broadcom/tg3.*
4372
4373 BROADCOM VK DRIVER
4374 M:      Scott Branden <scott.branden@broadcom.com>
4375 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4376 S:      Supported
4377 F:      drivers/misc/bcm-vk/
4378 F:      include/uapi/linux/misc/bcm_vk.h
4379
4380 BROCADE BFA FC SCSI DRIVER
4381 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4382 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4383 L:      linux-scsi@vger.kernel.org
4384 S:      Supported
4385 F:      drivers/scsi/bfa/
4386
4387 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4388 M:      Rasesh Mody <rmody@marvell.com>
4389 M:      Sudarsana Kalluru <skalluru@marvell.com>
4390 M:      GR-Linux-NIC-Dev@marvell.com
4391 L:      netdev@vger.kernel.org
4392 S:      Supported
4393 F:      drivers/net/ethernet/brocade/bna/
4394
4395 BSG (block layer generic sg v4 driver)
4396 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4397 L:      linux-scsi@vger.kernel.org
4398 S:      Supported
4399 F:      block/bsg.c
4400 F:      include/linux/bsg.h
4401 F:      include/uapi/linux/bsg.h
4402
4403 BT87X AUDIO DRIVER
4404 M:      Clemens Ladisch <clemens@ladisch.de>
4405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4406 S:      Maintained
4407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4408 F:      Documentation/sound/cards/bt87x.rst
4409 F:      sound/pci/bt87x.c
4410
4411 BT8XXGPIO DRIVER
4412 M:      Michael Buesch <m@bues.ch>
4413 S:      Maintained
4414 W:      http://bu3sch.de/btgpio.php
4415 F:      drivers/gpio/gpio-bt8xx.c
4416
4417 BTRFS FILE SYSTEM
4418 M:      Chris Mason <clm@fb.com>
4419 M:      Josef Bacik <josef@toxicpanda.com>
4420 M:      David Sterba <dsterba@suse.com>
4421 L:      linux-btrfs@vger.kernel.org
4422 S:      Maintained
4423 W:      http://btrfs.wiki.kernel.org/
4424 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4425 C:      irc://irc.libera.chat/btrfs
4426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4427 F:      Documentation/filesystems/btrfs.rst
4428 F:      fs/btrfs/
4429 F:      include/linux/btrfs*
4430 F:      include/uapi/linux/btrfs*
4431
4432 BTTV VIDEO4LINUX DRIVER
4433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4434 L:      linux-media@vger.kernel.org
4435 S:      Odd fixes
4436 W:      https://linuxtv.org
4437 T:      git git://linuxtv.org/media_tree.git
4438 F:      Documentation/driver-api/media/drivers/bttv*
4439 F:      drivers/media/pci/bt8xx/bttv*
4440
4441 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4442 M:      Chanwoo Choi <cw00.choi@samsung.com>
4443 L:      linux-pm@vger.kernel.org
4444 L:      linux-samsung-soc@vger.kernel.org
4445 S:      Maintained
4446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4447 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4448 F:      drivers/devfreq/exynos-bus.c
4449
4450 BUSLOGIC SCSI DRIVER
4451 M:      Khalid Aziz <khalid@gonehiking.org>
4452 L:      linux-scsi@vger.kernel.org
4453 S:      Maintained
4454 F:      drivers/scsi/BusLogic.*
4455 F:      drivers/scsi/FlashPoint.*
4456
4457 C-MEDIA CMI8788 DRIVER
4458 M:      Clemens Ladisch <clemens@ladisch.de>
4459 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4460 S:      Maintained
4461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4462 F:      sound/pci/oxygen/
4463
4464 C-SKY ARCHITECTURE
4465 M:      Guo Ren <guoren@kernel.org>
4466 L:      linux-csky@vger.kernel.org
4467 S:      Supported
4468 T:      git https://github.com/c-sky/csky-linux.git
4469 F:      Documentation/devicetree/bindings/csky/
4470 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4471 F:      Documentation/devicetree/bindings/timer/csky,*
4472 F:      arch/csky/
4473 F:      drivers/clocksource/timer-gx6605s.c
4474 F:      drivers/clocksource/timer-mp-csky.c
4475 F:      drivers/irqchip/irq-csky-*
4476 N:      csky
4477 K:      csky
4478
4479 CA8210 IEEE-802.15.4 RADIO DRIVER
4480 L:      linux-wpan@vger.kernel.org
4481 S:      Orphan
4482 W:      https://github.com/Cascoda/ca8210-linux.git
4483 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4484 F:      drivers/net/ieee802154/ca8210.c
4485
4486 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4487 M:      Damien Le Moal <damien.lemoal@wdc.com>
4488 L:      linux-riscv@lists.infradead.org
4489 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4490 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4491 F:      drivers/pinctrl/pinctrl-k210.c
4492
4493 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4494 M:      Damien Le Moal <damien.lemoal@wdc.com>
4495 L:      linux-kernel@vger.kernel.org
4496 L:      linux-riscv@lists.infradead.org
4497 S:      Maintained
4498 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4499 F:      drivers/reset/reset-k210.c
4500
4501 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4502 M:      Damien Le Moal <damien.lemoal@wdc.com>
4503 L:      linux-riscv@lists.infradead.org
4504 S:      Maintained
4505 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4506 F:      drivers/soc/canaan/
4507 F:      include/soc/canaan/
4508
4509 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4510 M:      David Howells <dhowells@redhat.com>
4511 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4512 S:      Supported
4513 F:      Documentation/filesystems/caching/cachefiles.rst
4514 F:      fs/cachefiles/
4515
4516 CADENCE MIPI-CSI2 BRIDGES
4517 M:      Maxime Ripard <mripard@kernel.org>
4518 L:      linux-media@vger.kernel.org
4519 S:      Maintained
4520 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4521 F:      drivers/media/platform/cadence/cdns-csi2*
4522
4523 CADENCE NAND DRIVER
4524 L:      linux-mtd@lists.infradead.org
4525 S:      Orphan
4526 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4527 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4528
4529 CADENCE USB3 DRD IP DRIVER
4530 M:      Peter Chen <peter.chen@kernel.org>
4531 M:      Pawel Laszczak <pawell@cadence.com>
4532 R:      Roger Quadros <rogerq@kernel.org>
4533 R:      Aswath Govindraju <a-govindraju@ti.com>
4534 L:      linux-usb@vger.kernel.org
4535 S:      Maintained
4536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4537 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4538 F:      drivers/usb/cdns3/
4539 X:      drivers/usb/cdns3/cdnsp*
4540
4541 CADENCE USBSSP DRD IP DRIVER
4542 M:      Pawel Laszczak <pawell@cadence.com>
4543 L:      linux-usb@vger.kernel.org
4544 S:      Maintained
4545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4546 F:      drivers/usb/cdns3/
4547 X:      drivers/usb/cdns3/cdns3*
4548
4549 CADET FM/AM RADIO RECEIVER DRIVER
4550 M:      Hans Verkuil <hverkuil@xs4all.nl>
4551 L:      linux-media@vger.kernel.org
4552 S:      Maintained
4553 W:      https://linuxtv.org
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      drivers/media/radio/radio-cadet*
4556
4557 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4558 L:      linux-media@vger.kernel.org
4559 S:      Orphan
4560 T:      git git://linuxtv.org/media_tree.git
4561 F:      Documentation/admin-guide/media/cafe_ccic*
4562 F:      drivers/media/platform/marvell/
4563
4564 CAIF NETWORK LAYER
4565 L:      netdev@vger.kernel.org
4566 S:      Orphan
4567 F:      Documentation/networking/caif/
4568 F:      drivers/net/caif/
4569 F:      include/net/caif/
4570 F:      include/uapi/linux/caif/
4571 F:      net/caif/
4572
4573 CAKE QDISC
4574 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4575 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4576 S:      Maintained
4577 F:      net/sched/sch_cake.c
4578
4579 CAN NETWORK DRIVERS
4580 M:      Wolfgang Grandegger <wg@grandegger.com>
4581 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4582 L:      linux-can@vger.kernel.org
4583 S:      Maintained
4584 W:      https://github.com/linux-can
4585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4587 F:      Documentation/devicetree/bindings/net/can/
4588 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4589 F:      drivers/net/can/
4590 F:      drivers/phy/phy-can-transceiver.c
4591 F:      include/linux/can/bittiming.h
4592 F:      include/linux/can/dev.h
4593 F:      include/linux/can/length.h
4594 F:      include/linux/can/platform/
4595 F:      include/linux/can/rx-offload.h
4596 F:      include/uapi/linux/can/error.h
4597 F:      include/uapi/linux/can/netlink.h
4598 F:      include/uapi/linux/can/vxcan.h
4599
4600 CAN NETWORK LAYER
4601 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4602 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4603 L:      linux-can@vger.kernel.org
4604 S:      Maintained
4605 W:      https://github.com/linux-can
4606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4608 F:      Documentation/networking/can.rst
4609 F:      include/linux/can/can-ml.h
4610 F:      include/linux/can/core.h
4611 F:      include/linux/can/skb.h
4612 F:      include/net/netns/can.h
4613 F:      include/uapi/linux/can.h
4614 F:      include/uapi/linux/can/bcm.h
4615 F:      include/uapi/linux/can/gw.h
4616 F:      include/uapi/linux/can/isotp.h
4617 F:      include/uapi/linux/can/raw.h
4618 F:      net/can/
4619
4620 CAN-J1939 NETWORK LAYER
4621 M:      Robin van der Gracht <robin@protonic.nl>
4622 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4623 R:      kernel@pengutronix.de
4624 L:      linux-can@vger.kernel.org
4625 S:      Maintained
4626 F:      Documentation/networking/j1939.rst
4627 F:      include/uapi/linux/can/j1939.h
4628 F:      net/can/j1939/
4629
4630 CAPABILITIES
4631 M:      Serge Hallyn <serge@hallyn.com>
4632 L:      linux-security-module@vger.kernel.org
4633 S:      Supported
4634 F:      include/linux/capability.h
4635 F:      include/uapi/linux/capability.h
4636 F:      kernel/capability.c
4637 F:      security/commoncap.c
4638
4639 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4640 M:      Kevin Tsai <ktsai@capellamicro.com>
4641 S:      Maintained
4642 F:      drivers/iio/light/cm*
4643
4644 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4645 M:      Christian Lamparter <chunkeey@googlemail.com>
4646 L:      linux-wireless@vger.kernel.org
4647 S:      Maintained
4648 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4649 F:      drivers/net/wireless/ath/carl9170/
4650
4651 CAVIUM I2C DRIVER
4652 M:      Robert Richter <rric@kernel.org>
4653 S:      Odd Fixes
4654 W:      http://www.marvell.com
4655 F:      drivers/i2c/busses/i2c-octeon*
4656 F:      drivers/i2c/busses/i2c-thunderx*
4657
4658 CAVIUM LIQUIDIO NETWORK DRIVER
4659 M:      Derek Chickles <dchickles@marvell.com>
4660 M:      Satanand Burla <sburla@marvell.com>
4661 M:      Felix Manlunas <fmanlunas@marvell.com>
4662 L:      netdev@vger.kernel.org
4663 S:      Supported
4664 W:      http://www.marvell.com
4665 F:      drivers/net/ethernet/cavium/liquidio/
4666
4667 CAVIUM MMC DRIVER
4668 M:      Robert Richter <rric@kernel.org>
4669 S:      Odd Fixes
4670 W:      http://www.marvell.com
4671 F:      drivers/mmc/host/cavium*
4672
4673 CAVIUM OCTEON-TX CRYPTO DRIVER
4674 M:      George Cherian <gcherian@marvell.com>
4675 L:      linux-crypto@vger.kernel.org
4676 S:      Supported
4677 W:      http://www.marvell.com
4678 F:      drivers/crypto/cavium/cpt/
4679
4680 CAVIUM THUNDERX2 ARM64 SOC
4681 M:      Robert Richter <rric@kernel.org>
4682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4683 S:      Odd Fixes
4684 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4685 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4686
4687 CBS/ETF/TAPRIO QDISCS
4688 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4689 S:      Maintained
4690 L:      netdev@vger.kernel.org
4691 F:      net/sched/sch_cbs.c
4692 F:      net/sched/sch_etf.c
4693 F:      net/sched/sch_taprio.c
4694
4695 CC2520 IEEE-802.15.4 RADIO DRIVER
4696 M:      Varka Bhadram <varkabhadram@gmail.com>
4697 L:      linux-wpan@vger.kernel.org
4698 S:      Maintained
4699 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4700 F:      drivers/net/ieee802154/cc2520.c
4701 F:      include/linux/spi/cc2520.h
4702
4703 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4704 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4705 L:      linux-crypto@vger.kernel.org
4706 S:      Supported
4707 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4708 F:      drivers/crypto/ccree/
4709
4710 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4711 M:      Hadar Gat <hadar.gat@arm.com>
4712 L:      linux-crypto@vger.kernel.org
4713 S:      Supported
4714 F:      drivers/char/hw_random/cctrng.c
4715 F:      drivers/char/hw_random/cctrng.h
4716 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4717 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4718
4719 CEC FRAMEWORK
4720 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4721 L:      linux-media@vger.kernel.org
4722 S:      Supported
4723 W:      http://linuxtv.org
4724 T:      git git://linuxtv.org/media_tree.git
4725 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4726 F:      Documentation/devicetree/bindings/media/cec.txt
4727 F:      Documentation/driver-api/media/cec-core.rst
4728 F:      Documentation/userspace-api/media/cec
4729 F:      drivers/media/cec/
4730 F:      drivers/media/rc/keymaps/rc-cec.c
4731 F:      include/media/cec-notifier.h
4732 F:      include/media/cec.h
4733 F:      include/uapi/linux/cec-funcs.h
4734 F:      include/uapi/linux/cec.h
4735
4736 CEC GPIO DRIVER
4737 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4738 L:      linux-media@vger.kernel.org
4739 S:      Supported
4740 W:      http://linuxtv.org
4741 T:      git git://linuxtv.org/media_tree.git
4742 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4743 F:      drivers/media/cec/platform/cec-gpio/
4744
4745 CELL BROADBAND ENGINE ARCHITECTURE
4746 M:      Arnd Bergmann <arnd@arndb.de>
4747 L:      linuxppc-dev@lists.ozlabs.org
4748 S:      Supported
4749 W:      http://www.ibm.com/developerworks/power/cell/
4750 F:      arch/powerpc/include/asm/cell*.h
4751 F:      arch/powerpc/include/asm/spu*.h
4752 F:      arch/powerpc/include/uapi/asm/spu*.h
4753 F:      arch/powerpc/platforms/cell/
4754
4755 CELLWISE CW2015 BATTERY DRIVER
4756 M:      Tobias Schrammm <t.schramm@manjaro.org>
4757 S:      Maintained
4758 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4759 F:      drivers/power/supply/cw2015_battery.c
4760
4761 CEPH COMMON CODE (LIBCEPH)
4762 M:      Ilya Dryomov <idryomov@gmail.com>
4763 M:      Xiubo Li <xiubli@redhat.com>
4764 R:      Jeff Layton <jlayton@kernel.org>
4765 L:      ceph-devel@vger.kernel.org
4766 S:      Supported
4767 W:      http://ceph.com/
4768 T:      git git://github.com/ceph/ceph-client.git
4769 F:      include/linux/ceph/
4770 F:      include/linux/crush/
4771 F:      net/ceph/
4772
4773 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4774 M:      Xiubo Li <xiubli@redhat.com>
4775 M:      Ilya Dryomov <idryomov@gmail.com>
4776 R:      Jeff Layton <jlayton@kernel.org>
4777 L:      ceph-devel@vger.kernel.org
4778 S:      Supported
4779 W:      http://ceph.com/
4780 T:      git git://github.com/ceph/ceph-client.git
4781 F:      Documentation/filesystems/ceph.rst
4782 F:      fs/ceph/
4783
4784 CERTIFICATE HANDLING
4785 M:      David Howells <dhowells@redhat.com>
4786 M:      David Woodhouse <dwmw2@infradead.org>
4787 L:      keyrings@vger.kernel.org
4788 S:      Maintained
4789 F:      Documentation/admin-guide/module-signing.rst
4790 F:      certs/
4791 F:      scripts/sign-file.c
4792 F:      tools/certs/
4793
4794 CFAG12864B LCD DRIVER
4795 M:      Miguel Ojeda <ojeda@kernel.org>
4796 S:      Maintained
4797 F:      drivers/auxdisplay/cfag12864b.c
4798 F:      include/linux/cfag12864b.h
4799
4800 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4801 M:      Miguel Ojeda <ojeda@kernel.org>
4802 S:      Maintained
4803 F:      drivers/auxdisplay/cfag12864bfb.c
4804 F:      include/linux/cfag12864b.h
4805
4806 CHAR and MISC DRIVERS
4807 M:      Arnd Bergmann <arnd@arndb.de>
4808 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4809 S:      Supported
4810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4811 F:      drivers/char/
4812 F:      drivers/misc/
4813 F:      include/linux/miscdevice.h
4814 X:      drivers/char/agp/
4815 X:      drivers/char/hw_random/
4816 X:      drivers/char/ipmi/
4817 X:      drivers/char/random.c
4818 X:      drivers/char/tpm/
4819
4820 CHECKPATCH
4821 M:      Andy Whitcroft <apw@canonical.com>
4822 M:      Joe Perches <joe@perches.com>
4823 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4824 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4825 S:      Maintained
4826 F:      scripts/checkpatch.pl
4827
4828 CHECKPATCH DOCUMENTATION
4829 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4830 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4831 R:      Joe Perches <joe@perches.com>
4832 S:      Maintained
4833 F:      Documentation/dev-tools/checkpatch.rst
4834
4835 CHINESE DOCUMENTATION
4836 M:      Alex Shi <alexs@kernel.org>
4837 M:      Yanteng Si <siyanteng@loongson.cn>
4838 S:      Maintained
4839 F:      Documentation/translations/zh_CN/
4840
4841 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4842 M:      Peter Chen <peter.chen@kernel.org>
4843 L:      linux-usb@vger.kernel.org
4844 S:      Maintained
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4846 F:      drivers/usb/chipidea/
4847
4848 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4849 M:      Hans de Goede <hdegoede@redhat.com>
4850 L:      linux-input@vger.kernel.org
4851 S:      Maintained
4852 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4853 F:      drivers/input/touchscreen/chipone_icn8318.c
4854
4855 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4856 M:      Hans de Goede <hdegoede@redhat.com>
4857 L:      linux-input@vger.kernel.org
4858 S:      Maintained
4859 F:      drivers/input/touchscreen/chipone_icn8505.c
4860
4861 CHROME HARDWARE PLATFORM SUPPORT
4862 M:      Benson Leung <bleung@chromium.org>
4863 L:      chrome-platform@lists.linux.dev
4864 S:      Maintained
4865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4866 F:      drivers/platform/chrome/
4867
4868 CHROMEOS EC CODEC DRIVER
4869 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4870 M:      Tzung-Bi Shih <tzungbi@google.com>
4871 R:      Guenter Roeck <groeck@chromium.org>
4872 L:      chrome-platform@lists.linux.dev
4873 S:      Maintained
4874 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4875 F:      sound/soc/codecs/cros_ec_codec.*
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.c
4891
4892 CHROMEOS EC USB PD NOTIFY DRIVER
4893 M:      Prashant Malani <pmalani@chromium.org>
4894 L:      chrome-platform@lists.linux.dev
4895 S:      Maintained
4896 F:      drivers/platform/chrome/cros_usbpd_notify.c
4897 F:      include/linux/platform_data/cros_usbpd_notify.h
4898
4899 CHRONTEL CH7322 CEC DRIVER
4900 M:      Joe Tessler <jrt@google.com>
4901 L:      linux-media@vger.kernel.org
4902 S:      Maintained
4903 T:      git git://linuxtv.org/media_tree.git
4904 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4905 F:      drivers/media/cec/i2c/ch7322.c
4906
4907 CIRRUS LOGIC AUDIO CODEC DRIVERS
4908 M:      James Schulman <james.schulman@cirrus.com>
4909 M:      David Rhodes <david.rhodes@cirrus.com>
4910 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4911 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4913 L:      patches@opensource.cirrus.com
4914 S:      Maintained
4915 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4916 F:      include/dt-bindings/sound/cs*
4917 F:      sound/pci/hda/cs*
4918 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4919 F:      sound/soc/codecs/cs*
4920
4921 CIRRUS LOGIC DSP FIRMWARE DRIVER
4922 M:      Simon Trimmer <simont@opensource.cirrus.com>
4923 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4924 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4925 L:      patches@opensource.cirrus.com
4926 S:      Supported
4927 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4928 T:      git https://github.com/CirrusLogic/linux-drivers.git
4929 F:      drivers/firmware/cirrus/*
4930 F:      include/linux/firmware/cirrus/*
4931
4932 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4933 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4934 L:      netdev@vger.kernel.org
4935 S:      Maintained
4936 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4937
4938 CIRRUS LOGIC LOCHNAGAR DRIVER
4939 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4940 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4941 L:      patches@opensource.cirrus.com
4942 S:      Supported
4943 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4944 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4945 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4946 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4947 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4948 F:      Documentation/hwmon/lochnagar.rst
4949 F:      drivers/clk/clk-lochnagar.c
4950 F:      drivers/hwmon/lochnagar-hwmon.c
4951 F:      drivers/mfd/lochnagar-i2c.c
4952 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4953 F:      drivers/regulator/lochnagar-regulator.c
4954 F:      include/dt-bindings/clk/lochnagar.h
4955 F:      include/dt-bindings/pinctrl/lochnagar.h
4956 F:      include/linux/mfd/lochnagar*
4957 F:      sound/soc/codecs/lochnagar-sc.c
4958
4959 CIRRUS LOGIC MADERA CODEC DRIVERS
4960 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4961 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4963 L:      patches@opensource.cirrus.com
4964 S:      Supported
4965 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4966 T:      git https://github.com/CirrusLogic/linux-drivers.git
4967 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4968 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4969 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4970 F:      drivers/gpio/gpio-madera*
4971 F:      drivers/irqchip/irq-madera*
4972 F:      drivers/mfd/cs47l*
4973 F:      drivers/mfd/madera*
4974 F:      drivers/pinctrl/cirrus/*
4975 F:      include/dt-bindings/sound/madera*
4976 F:      include/linux/irqchip/irq-madera*
4977 F:      include/linux/mfd/madera/*
4978 F:      include/sound/madera*
4979 F:      sound/soc/codecs/cs47l*
4980 F:      sound/soc/codecs/madera*
4981
4982 CISCO FCOE HBA DRIVER
4983 M:      Satish Kharat <satishkh@cisco.com>
4984 M:      Sesidhar Baddela <sebaddel@cisco.com>
4985 M:      Karan Tilak Kumar <kartilak@cisco.com>
4986 L:      linux-scsi@vger.kernel.org
4987 S:      Supported
4988 F:      drivers/scsi/fnic/
4989
4990 CISCO SCSI HBA DRIVER
4991 M:      Karan Tilak Kumar <kartilak@cisco.com>
4992 M:      Sesidhar Baddela <sebaddel@cisco.com>
4993 L:      linux-scsi@vger.kernel.org
4994 S:      Supported
4995 F:      drivers/scsi/snic/
4996
4997 CISCO VIC ETHERNET NIC DRIVER
4998 M:      Christian Benvenuti <benve@cisco.com>
4999 M:      Govindarajulu Varadarajan <_govind@gmx.com>
5000 S:      Supported
5001 F:      drivers/net/ethernet/cisco/enic/
5002
5003 CISCO VIC LOW LATENCY NIC DRIVER
5004 M:      Christian Benvenuti <benve@cisco.com>
5005 M:      Nelson Escobar <neescoba@cisco.com>
5006 S:      Supported
5007 F:      drivers/infiniband/hw/usnic/
5008
5009 CLANG-FORMAT FILE
5010 M:      Miguel Ojeda <ojeda@kernel.org>
5011 S:      Maintained
5012 F:      .clang-format
5013
5014 CLANG/LLVM BUILD SUPPORT
5015 M:      Nathan Chancellor <nathan@kernel.org>
5016 M:      Nick Desaulniers <ndesaulniers@google.com>
5017 R:      Tom Rix <trix@redhat.com>
5018 L:      llvm@lists.linux.dev
5019 S:      Supported
5020 W:      https://clangbuiltlinux.github.io/
5021 B:      https://github.com/ClangBuiltLinux/linux/issues
5022 C:      irc://irc.libera.chat/clangbuiltlinux
5023 F:      Documentation/kbuild/llvm.rst
5024 F:      include/linux/compiler-clang.h
5025 F:      scripts/Makefile.clang
5026 F:      scripts/clang-tools/
5027 K:      \b(?i:clang|llvm)\b
5028
5029 CLANG CONTROL FLOW INTEGRITY SUPPORT
5030 M:      Sami Tolvanen <samitolvanen@google.com>
5031 M:      Kees Cook <keescook@chromium.org>
5032 R:      Nathan Chancellor <nathan@kernel.org>
5033 R:      Nick Desaulniers <ndesaulniers@google.com>
5034 L:      llvm@lists.linux.dev
5035 S:      Supported
5036 B:      https://github.com/ClangBuiltLinux/linux/issues
5037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5038 F:      include/linux/cfi.h
5039 F:      kernel/cfi.c
5040
5041 CLK API
5042 M:      Russell King <linux@armlinux.org.uk>
5043 L:      linux-clk@vger.kernel.org
5044 S:      Maintained
5045 F:      include/linux/clk.h
5046
5047 CLOCKSOURCE, CLOCKEVENT DRIVERS
5048 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5049 M:      Thomas Gleixner <tglx@linutronix.de>
5050 L:      linux-kernel@vger.kernel.org
5051 S:      Supported
5052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5053 F:      Documentation/devicetree/bindings/timer/
5054 F:      drivers/clocksource/
5055
5056 CMPC ACPI DRIVER
5057 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5058 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5059 L:      platform-driver-x86@vger.kernel.org
5060 S:      Supported
5061 F:      drivers/platform/x86/classmate-laptop.c
5062
5063 COBALT MEDIA DRIVER
5064 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5065 L:      linux-media@vger.kernel.org
5066 S:      Supported
5067 W:      https://linuxtv.org
5068 T:      git git://linuxtv.org/media_tree.git
5069 F:      drivers/media/pci/cobalt/
5070
5071 COCCINELLE/Semantic Patches (SmPL)
5072 M:      Julia Lawall <Julia.Lawall@inria.fr>
5073 M:      Nicolas Palix <nicolas.palix@imag.fr>
5074 L:      cocci@inria.fr (moderated for non-subscribers)
5075 S:      Supported
5076 W:      https://coccinelle.gitlabpages.inria.fr/website/
5077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5078 F:      Documentation/dev-tools/coccinelle.rst
5079 F:      scripts/coccicheck
5080 F:      scripts/coccinelle/
5081
5082 CODA FILE SYSTEM
5083 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5084 M:      coda@cs.cmu.edu
5085 L:      codalist@coda.cs.cmu.edu
5086 S:      Maintained
5087 W:      http://www.coda.cs.cmu.edu/
5088 F:      Documentation/filesystems/coda.rst
5089 F:      fs/coda/
5090 F:      include/linux/coda*.h
5091 F:      include/uapi/linux/coda*.h
5092
5093 CODA V4L2 MEM2MEM DRIVER
5094 M:      Philipp Zabel <p.zabel@pengutronix.de>
5095 L:      linux-media@vger.kernel.org
5096 S:      Maintained
5097 F:      Documentation/devicetree/bindings/media/coda.yaml
5098 F:      drivers/media/platform/chips-media/
5099
5100 CODE OF CONDUCT
5101 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5102 S:      Supported
5103 F:      Documentation/process/code-of-conduct-interpretation.rst
5104 F:      Documentation/process/code-of-conduct.rst
5105
5106 COMEDI DRIVERS
5107 M:      Ian Abbott <abbotti@mev.co.uk>
5108 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5109 S:      Odd Fixes
5110 F:      drivers/comedi/
5111 F:      include/linux/comedi/
5112 F:      include/uapi/linux/comedi.h
5113
5114 COMMON CLK FRAMEWORK
5115 M:      Michael Turquette <mturquette@baylibre.com>
5116 M:      Stephen Boyd <sboyd@kernel.org>
5117 L:      linux-clk@vger.kernel.org
5118 S:      Maintained
5119 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5121 F:      Documentation/devicetree/bindings/clock/
5122 F:      drivers/clk/
5123 F:      include/dt-bindings/clock/
5124 F:      include/linux/clk-pr*
5125 F:      include/linux/clk/
5126 F:      include/linux/of_clk.h
5127 X:      drivers/clk/clkdev.c
5128
5129 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5130 M:      Steve French <sfrench@samba.org>
5131 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5132 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5133 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5134 L:      linux-cifs@vger.kernel.org
5135 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5136 S:      Supported
5137 W:      https://wiki.samba.org/index.php/LinuxCIFS
5138 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5139 F:      Documentation/admin-guide/cifs/
5140 F:      fs/cifs/
5141 F:      fs/smbfs_common/
5142 F:      include/uapi/linux/cifs
5143
5144 COMPACTPCI HOTPLUG CORE
5145 M:      Scott Murray <scott@spiteful.org>
5146 L:      linux-pci@vger.kernel.org
5147 S:      Maintained
5148 F:      drivers/pci/hotplug/cpci_hotplug*
5149
5150 COMPACTPCI HOTPLUG GENERIC DRIVER
5151 M:      Scott Murray <scott@spiteful.org>
5152 L:      linux-pci@vger.kernel.org
5153 S:      Maintained
5154 F:      drivers/pci/hotplug/cpcihp_generic.c
5155
5156 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5157 M:      Scott Murray <scott@spiteful.org>
5158 L:      linux-pci@vger.kernel.org
5159 S:      Maintained
5160 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5161
5162 COMPAL LAPTOP SUPPORT
5163 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5164 L:      platform-driver-x86@vger.kernel.org
5165 S:      Maintained
5166 F:      drivers/platform/x86/compal-laptop.c
5167
5168 COMPILER ATTRIBUTES
5169 M:      Miguel Ojeda <ojeda@kernel.org>
5170 R:      Nick Desaulniers <ndesaulniers@google.com>
5171 S:      Maintained
5172 F:      include/linux/compiler_attributes.h
5173
5174 COMPUTE EXPRESS LINK (CXL)
5175 M:      Alison Schofield <alison.schofield@intel.com>
5176 M:      Vishal Verma <vishal.l.verma@intel.com>
5177 M:      Ira Weiny <ira.weiny@intel.com>
5178 M:      Ben Widawsky <bwidawsk@kernel.org>
5179 M:      Dan Williams <dan.j.williams@intel.com>
5180 L:      linux-cxl@vger.kernel.org
5181 S:      Maintained
5182 F:      drivers/cxl/
5183 F:      include/uapi/linux/cxl_mem.h
5184
5185 CONEXANT ACCESSRUNNER USB DRIVER
5186 L:      accessrunner-general@lists.sourceforge.net
5187 S:      Orphan
5188 W:      http://accessrunner.sourceforge.net/
5189 F:      drivers/usb/atm/cxacru.c
5190
5191 CONFIGFS
5192 M:      Joel Becker <jlbec@evilplan.org>
5193 M:      Christoph Hellwig <hch@lst.de>
5194 S:      Supported
5195 T:      git git://git.infradead.org/users/hch/configfs.git
5196 F:      fs/configfs/
5197 F:      include/linux/configfs.h
5198 F:      samples/configfs/
5199
5200 CONSOLE SUBSYSTEM
5201 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5202 S:      Supported
5203 F:      drivers/video/console/
5204 F:      include/linux/console*
5205
5206 CONTEXT TRACKING
5207 M:      Frederic Weisbecker <frederic@kernel.org>
5208 M:      "Paul E. McKenney" <paulmck@kernel.org>
5209 S:      Maintained
5210 F:      kernel/context_tracking.c
5211 F:      include/linux/context_tracking*
5212
5213 CONTROL GROUP (CGROUP)
5214 M:      Tejun Heo <tj@kernel.org>
5215 M:      Zefan Li <lizefan.x@bytedance.com>
5216 M:      Johannes Weiner <hannes@cmpxchg.org>
5217 L:      cgroups@vger.kernel.org
5218 S:      Maintained
5219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5220 F:      Documentation/admin-guide/cgroup-v1/
5221 F:      Documentation/admin-guide/cgroup-v2.rst
5222 F:      include/linux/cgroup*
5223 F:      kernel/cgroup/
5224 F:      tools/testing/selftests/cgroup/
5225
5226 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5227 M:      Tejun Heo <tj@kernel.org>
5228 M:      Jens Axboe <axboe@kernel.dk>
5229 L:      cgroups@vger.kernel.org
5230 L:      linux-block@vger.kernel.org
5231 T:      git git://git.kernel.dk/linux-block
5232 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5233 F:      block/bfq-cgroup.c
5234 F:      block/blk-cgroup.c
5235 F:      block/blk-iolatency.c
5236 F:      block/blk-throttle.c
5237 F:      include/linux/blk-cgroup.h
5238
5239 CONTROL GROUP - CPUSET
5240 M:      Zefan Li <lizefan.x@bytedance.com>
5241 L:      cgroups@vger.kernel.org
5242 S:      Maintained
5243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5244 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5245 F:      include/linux/cpuset.h
5246 F:      kernel/cgroup/cpuset.c
5247
5248 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5249 M:      Johannes Weiner <hannes@cmpxchg.org>
5250 M:      Michal Hocko <mhocko@kernel.org>
5251 M:      Roman Gushchin <roman.gushchin@linux.dev>
5252 M:      Shakeel Butt <shakeelb@google.com>
5253 R:      Muchun Song <songmuchun@bytedance.com>
5254 L:      cgroups@vger.kernel.org
5255 L:      linux-mm@kvack.org
5256 S:      Maintained
5257 F:      mm/memcontrol.c
5258 F:      mm/swap_cgroup.c
5259 F:      tools/testing/selftests/cgroup/memcg_protection.m
5260 F:      tools/testing/selftests/cgroup/test_kmem.c
5261 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5262
5263 CORETEMP HARDWARE MONITORING DRIVER
5264 M:      Fenghua Yu <fenghua.yu@intel.com>
5265 L:      linux-hwmon@vger.kernel.org
5266 S:      Maintained
5267 F:      Documentation/hwmon/coretemp.rst
5268 F:      drivers/hwmon/coretemp.c
5269
5270 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5271 M:      Marius Zachmann <mail@mariuszachmann.de>
5272 L:      linux-hwmon@vger.kernel.org
5273 S:      Maintained
5274 F:      drivers/hwmon/corsair-cpro.c
5275
5276 CORSAIR-PSU HARDWARE MONITOR DRIVER
5277 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5278 L:      linux-hwmon@vger.kernel.org
5279 S:      Maintained
5280 F:      Documentation/hwmon/corsair-psu.rst
5281 F:      drivers/hwmon/corsair-psu.c
5282
5283 COUNTER SUBSYSTEM
5284 M:      William Breathitt Gray <william.gray@linaro.org>
5285 L:      linux-iio@vger.kernel.org
5286 S:      Maintained
5287 T:      git https://git.linaro.org/people/william.gray/counter.git
5288 F:      Documentation/ABI/testing/sysfs-bus-counter
5289 F:      Documentation/driver-api/generic-counter.rst
5290 F:      drivers/counter/
5291 F:      include/linux/counter.h
5292 F:      include/uapi/linux/counter.h
5293 F:      tools/counter/
5294
5295 CP2615 I2C DRIVER
5296 M:      Bence Csókás <bence98@sch.bme.hu>
5297 S:      Maintained
5298 F:      drivers/i2c/busses/i2c-cp2615.c
5299
5300 CPMAC ETHERNET DRIVER
5301 M:      Florian Fainelli <f.fainelli@gmail.com>
5302 L:      netdev@vger.kernel.org
5303 S:      Maintained
5304 F:      drivers/net/ethernet/ti/cpmac.c
5305
5306 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5307 M:      Viresh Kumar <viresh.kumar@linaro.org>
5308 M:      Sudeep Holla <sudeep.holla@arm.com>
5309 L:      linux-pm@vger.kernel.org
5310 S:      Maintained
5311 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5312 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5313
5314 CPU FREQUENCY SCALING FRAMEWORK
5315 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5316 M:      Viresh Kumar <viresh.kumar@linaro.org>
5317 L:      linux-pm@vger.kernel.org
5318 S:      Maintained
5319 B:      https://bugzilla.kernel.org
5320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5322 F:      Documentation/admin-guide/pm/cpufreq.rst
5323 F:      Documentation/admin-guide/pm/intel_pstate.rst
5324 F:      Documentation/cpu-freq/
5325 F:      Documentation/devicetree/bindings/cpufreq/
5326 F:      drivers/cpufreq/
5327 F:      include/linux/cpufreq.h
5328 F:      include/linux/sched/cpufreq.h
5329 F:      kernel/sched/cpufreq*.c
5330 F:      tools/testing/selftests/cpufreq/
5331
5332 CPU IDLE TIME MANAGEMENT FRAMEWORK
5333 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5334 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5335 L:      linux-pm@vger.kernel.org
5336 S:      Maintained
5337 B:      https://bugzilla.kernel.org
5338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5339 F:      Documentation/admin-guide/pm/cpuidle.rst
5340 F:      Documentation/driver-api/pm/cpuidle.rst
5341 F:      drivers/cpuidle/
5342 F:      include/linux/cpuidle.h
5343
5344 CPU POWER MONITORING SUBSYSTEM
5345 M:      Thomas Renninger <trenn@suse.com>
5346 M:      Shuah Khan <shuah@kernel.org>
5347 M:      Shuah Khan <skhan@linuxfoundation.org>
5348 L:      linux-pm@vger.kernel.org
5349 S:      Maintained
5350 F:      tools/power/cpupower/
5351
5352 CPUID/MSR DRIVER
5353 M:      "H. Peter Anvin" <hpa@zytor.com>
5354 S:      Maintained
5355 F:      arch/x86/kernel/cpuid.c
5356 F:      arch/x86/kernel/msr.c
5357
5358 CPUIDLE DRIVER - ARM BIG LITTLE
5359 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5360 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5361 L:      linux-pm@vger.kernel.org
5362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5363 S:      Maintained
5364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5365 F:      drivers/cpuidle/cpuidle-big_little.c
5366
5367 CPUIDLE DRIVER - ARM EXYNOS
5368 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5369 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5370 M:      Kukjin Kim <kgene@kernel.org>
5371 L:      linux-pm@vger.kernel.org
5372 L:      linux-samsung-soc@vger.kernel.org
5373 S:      Supported
5374 F:      arch/arm/mach-exynos/pm.c
5375 F:      drivers/cpuidle/cpuidle-exynos.c
5376 F:      include/linux/platform_data/cpuidle-exynos.h
5377
5378 CPUIDLE DRIVER - ARM PSCI
5379 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5380 M:      Sudeep Holla <sudeep.holla@arm.com>
5381 L:      linux-pm@vger.kernel.org
5382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5383 S:      Supported
5384 F:      drivers/cpuidle/cpuidle-psci.c
5385
5386 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5387 M:      Ulf Hansson <ulf.hansson@linaro.org>
5388 L:      linux-pm@vger.kernel.org
5389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5390 S:      Supported
5391 F:      drivers/cpuidle/cpuidle-psci.h
5392 F:      drivers/cpuidle/cpuidle-psci-domain.c
5393
5394 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5395 M:      Ulf Hansson <ulf.hansson@linaro.org>
5396 L:      linux-pm@vger.kernel.org
5397 S:      Supported
5398 F:      drivers/cpuidle/dt_idle_genpd.c
5399 F:      drivers/cpuidle/dt_idle_genpd.h
5400
5401 CPUIDLE DRIVER - RISC-V SBI
5402 M:      Anup Patel <anup@brainfault.org>
5403 L:      linux-pm@vger.kernel.org
5404 L:      linux-riscv@lists.infradead.org
5405 S:      Maintained
5406 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5407
5408 CRAMFS FILESYSTEM
5409 M:      Nicolas Pitre <nico@fluxnic.net>
5410 S:      Maintained
5411 F:      Documentation/filesystems/cramfs.rst
5412 F:      fs/cramfs/
5413
5414 CREATIVE SB0540
5415 M:      Bastien Nocera <hadess@hadess.net>
5416 L:      linux-input@vger.kernel.org
5417 S:      Maintained
5418 F:      drivers/hid/hid-creative-sb0540.c
5419
5420 CRYPTO API
5421 M:      Herbert Xu <herbert@gondor.apana.org.au>
5422 M:      "David S. Miller" <davem@davemloft.net>
5423 L:      linux-crypto@vger.kernel.org
5424 S:      Maintained
5425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5427 F:      Documentation/crypto/
5428 F:      Documentation/devicetree/bindings/crypto/
5429 F:      arch/*/crypto/
5430 F:      crypto/
5431 F:      drivers/crypto/
5432 F:      include/crypto/
5433 F:      include/linux/crypto*
5434 F:      lib/crypto/
5435
5436 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5437 M:      Neil Horman <nhorman@tuxdriver.com>
5438 L:      linux-crypto@vger.kernel.org
5439 S:      Maintained
5440 F:      crypto/ansi_cprng.c
5441 F:      crypto/rng.c
5442
5443 CS3308 MEDIA DRIVER
5444 M:      Hans Verkuil <hverkuil@xs4all.nl>
5445 L:      linux-media@vger.kernel.org
5446 S:      Odd Fixes
5447 W:      http://linuxtv.org
5448 T:      git git://linuxtv.org/media_tree.git
5449 F:      drivers/media/i2c/cs3308.c
5450
5451 CS5535 Audio ALSA driver
5452 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5453 S:      Maintained
5454 F:      sound/pci/cs5535audio/
5455
5456 CSI DRIVERS FOR ALLWINNER V3s
5457 M:      Yong Deng <yong.deng@magewell.com>
5458 L:      linux-media@vger.kernel.org
5459 S:      Maintained
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5462 F:      drivers/media/platform/sunxi/sun6i-csi/
5463
5464 CTU CAN FD DRIVER
5465 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5466 M:      Ondrej Ille <ondrej.ille@gmail.com>
5467 L:      linux-can@vger.kernel.org
5468 S:      Maintained
5469 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5470 F:      drivers/net/can/ctucanfd/
5471
5472 CW1200 WLAN driver
5473 M:      Solomon Peachy <pizza@shaftnet.org>
5474 S:      Maintained
5475 F:      drivers/net/wireless/st/cw1200/
5476
5477 CX18 VIDEO4LINUX DRIVER
5478 M:      Andy Walls <awalls@md.metrocast.net>
5479 L:      linux-media@vger.kernel.org
5480 S:      Maintained
5481 W:      https://linuxtv.org
5482 T:      git git://linuxtv.org/media_tree.git
5483 F:      drivers/media/pci/cx18/
5484 F:      include/uapi/linux/ivtv*
5485
5486 CX2341X MPEG ENCODER HELPER MODULE
5487 M:      Hans Verkuil <hverkuil@xs4all.nl>
5488 L:      linux-media@vger.kernel.org
5489 S:      Maintained
5490 W:      https://linuxtv.org
5491 T:      git git://linuxtv.org/media_tree.git
5492 F:      drivers/media/common/cx2341x*
5493 F:      include/media/drv-intf/cx2341x.h
5494
5495 CX24120 MEDIA DRIVER
5496 M:      Jemma Denson <jdenson@gmail.com>
5497 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5498 L:      linux-media@vger.kernel.org
5499 S:      Maintained
5500 W:      https://linuxtv.org
5501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5502 F:      drivers/media/dvb-frontends/cx24120*
5503
5504 CX88 VIDEO4LINUX DRIVER
5505 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5506 L:      linux-media@vger.kernel.org
5507 S:      Odd fixes
5508 W:      https://linuxtv.org
5509 T:      git git://linuxtv.org/media_tree.git
5510 F:      Documentation/driver-api/media/drivers/cx88*
5511 F:      drivers/media/pci/cx88/
5512
5513 CXD2820R MEDIA DRIVER
5514 M:      Antti Palosaari <crope@iki.fi>
5515 L:      linux-media@vger.kernel.org
5516 S:      Maintained
5517 W:      https://linuxtv.org
5518 W:      http://palosaari.fi/linux/
5519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5520 T:      git git://linuxtv.org/anttip/media_tree.git
5521 F:      drivers/media/dvb-frontends/cxd2820r*
5522
5523 CXGB3 ETHERNET DRIVER (CXGB3)
5524 M:      Raju Rangoju <rajur@chelsio.com>
5525 L:      netdev@vger.kernel.org
5526 S:      Supported
5527 W:      http://www.chelsio.com
5528 F:      drivers/net/ethernet/chelsio/cxgb3/
5529
5530 CXGB3 ISCSI DRIVER (CXGB3I)
5531 M:      Varun Prakash <varun@chelsio.com>
5532 L:      linux-scsi@vger.kernel.org
5533 S:      Supported
5534 W:      http://www.chelsio.com
5535 F:      drivers/scsi/cxgbi/cxgb3i
5536
5537 CXGB4 CRYPTO DRIVER (chcr)
5538 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5539 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5540 M:      Rohit Maheshwari <rohitm@chelsio.com>
5541 L:      linux-crypto@vger.kernel.org
5542 S:      Supported
5543 W:      http://www.chelsio.com
5544 F:      drivers/crypto/chelsio
5545
5546 CXGB4 INLINE CRYPTO DRIVER
5547 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5548 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5549 M:      Rohit Maheshwari <rohitm@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 CY8CTMA140 TOUCHSCREEN DRIVER
5628 M:      Linus Walleij <linus.walleij@linaro.org>
5629 L:      linux-input@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/input/touchscreen/cy8ctma140.c
5632
5633 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5634 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5635 L:      linux-input@vger.kernel.org
5636 S:      Maintained
5637 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5638 F:      drivers/input/keyboard/cypress-sf.c
5639
5640 CYTTSP TOUCHSCREEN DRIVER
5641 M:      Linus Walleij <linus.walleij@linaro.org>
5642 L:      linux-input@vger.kernel.org
5643 S:      Maintained
5644 F:      drivers/input/touchscreen/cyttsp*
5645
5646 D-LINK DIR-685 TOUCHKEYS DRIVER
5647 M:      Linus Walleij <linus.walleij@linaro.org>
5648 L:      linux-input@vger.kernel.org
5649 S:      Supported
5650 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5651
5652 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5653 M:      Joshua Kinard <kumba@gentoo.org>
5654 S:      Maintained
5655 F:      drivers/rtc/rtc-ds1685.c
5656 F:      include/linux/rtc/ds1685.h
5657
5658 DAMA SLAVE for AX.25
5659 M:      Joerg Reuter <jreuter@yaina.de>
5660 L:      linux-hams@vger.kernel.org
5661 S:      Maintained
5662 W:      http://yaina.de/jreuter/
5663 W:      http://www.qsl.net/dl1bke/
5664 F:      net/ax25/af_ax25.c
5665 F:      net/ax25/ax25_dev.c
5666 F:      net/ax25/ax25_ds_*
5667 F:      net/ax25/ax25_in.c
5668 F:      net/ax25/ax25_out.c
5669 F:      net/ax25/ax25_timer.c
5670 F:      net/ax25/sysctl_net_ax25.c
5671
5672 DATA ACCESS MONITOR
5673 M:      SeongJae Park <sj@kernel.org>
5674 L:      damon@lists.linux.dev
5675 L:      linux-mm@kvack.org
5676 S:      Maintained
5677 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5678 F:      Documentation/admin-guide/mm/damon/
5679 F:      Documentation/mm/damon/
5680 F:      include/linux/damon.h
5681 F:      include/trace/events/damon.h
5682 F:      mm/damon/
5683 F:      tools/testing/selftests/damon/
5684
5685 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5686 L:      netdev@vger.kernel.org
5687 S:      Orphan
5688 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5689 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5690
5691 DC390/AM53C974 SCSI driver
5692 M:      Hannes Reinecke <hare@suse.com>
5693 L:      linux-scsi@vger.kernel.org
5694 S:      Maintained
5695 F:      drivers/scsi/am53c974.c
5696
5697 DC395x SCSI driver
5698 M:      Oliver Neukum <oliver@neukum.org>
5699 M:      Ali Akcaagac <aliakc@web.de>
5700 M:      Jamie Lenehan <lenehan@twibble.org>
5701 L:      dc395x@twibble.org
5702 S:      Maintained
5703 W:      http://twibble.org/dist/dc395x/
5704 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5705 F:      Documentation/scsi/dc395x.rst
5706 F:      drivers/scsi/dc395x.*
5707
5708 DCCP PROTOCOL
5709 L:      dccp@vger.kernel.org
5710 S:      Orphan
5711 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5712 F:      include/linux/dccp.h
5713 F:      include/linux/tfrc.h
5714 F:      include/uapi/linux/dccp.h
5715 F:      net/dccp/
5716
5717 DECnet NETWORK LAYER
5718 L:      linux-decnet-user@lists.sourceforge.net
5719 S:      Orphan
5720 W:      http://linux-decnet.sourceforge.net
5721 F:      Documentation/networking/decnet.rst
5722 F:      net/decnet/
5723
5724 DECSTATION PLATFORM SUPPORT
5725 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5726 L:      linux-mips@vger.kernel.org
5727 S:      Maintained
5728 W:      http://www.linux-mips.org/wiki/DECstation
5729 F:      arch/mips/dec/
5730 F:      arch/mips/include/asm/dec/
5731 F:      arch/mips/include/asm/mach-dec/
5732
5733 DEFXX FDDI NETWORK DRIVER
5734 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5735 S:      Maintained
5736 F:      drivers/net/fddi/defxx.*
5737
5738 DEFZA FDDI NETWORK DRIVER
5739 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5740 S:      Maintained
5741 F:      drivers/net/fddi/defza.*
5742
5743 DEINTERLACE DRIVERS FOR ALLWINNER H3
5744 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5745 L:      linux-media@vger.kernel.org
5746 S:      Maintained
5747 T:      git git://linuxtv.org/media_tree.git
5748 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5749 F:      drivers/media/platform/sunxi/sun8i-di/
5750
5751 DELL LAPTOP DRIVER
5752 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5753 M:      Pali Rohár <pali@kernel.org>
5754 L:      platform-driver-x86@vger.kernel.org
5755 S:      Maintained
5756 F:      drivers/platform/x86/dell/dell-laptop.c
5757
5758 DELL LAPTOP FREEFALL DRIVER
5759 M:      Pali Rohár <pali@kernel.org>
5760 S:      Maintained
5761 F:      drivers/platform/x86/dell/dell-smo8800.c
5762
5763 DELL LAPTOP RBTN DRIVER
5764 M:      Pali Rohár <pali@kernel.org>
5765 S:      Maintained
5766 F:      drivers/platform/x86/dell/dell-rbtn.*
5767
5768 DELL LAPTOP SMM DRIVER
5769 M:      Pali Rohár <pali@kernel.org>
5770 S:      Maintained
5771 F:      Documentation/ABI/obsolete/procfs-i8k
5772 F:      drivers/hwmon/dell-smm-hwmon.c
5773 F:      include/uapi/linux/i8k.h
5774
5775 DELL REMOTE BIOS UPDATE DRIVER
5776 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5777 L:      platform-driver-x86@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/platform/x86/dell/dell_rbu.c
5780
5781 DELL SMBIOS DRIVER
5782 M:      Pali Rohár <pali@kernel.org>
5783 L:      Dell.Client.Kernel@dell.com
5784 L:      platform-driver-x86@vger.kernel.org
5785 S:      Maintained
5786 F:      drivers/platform/x86/dell/dell-smbios.*
5787
5788 DELL SMBIOS SMM DRIVER
5789 L:      Dell.Client.Kernel@dell.com
5790 L:      platform-driver-x86@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5793
5794 DELL SMBIOS WMI DRIVER
5795 L:      Dell.Client.Kernel@dell.com
5796 L:      platform-driver-x86@vger.kernel.org
5797 S:      Maintained
5798 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5799 F:      tools/wmi/dell-smbios-example.c
5800
5801 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5802 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5803 L:      platform-driver-x86@vger.kernel.org
5804 S:      Maintained
5805 F:      Documentation/driver-api/dcdbas.rst
5806 F:      drivers/platform/x86/dell/dcdbas.*
5807
5808 DELL WMI DESCRIPTOR DRIVER
5809 L:      Dell.Client.Kernel@dell.com
5810 S:      Maintained
5811 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5812
5813 DELL WMI SYSMAN DRIVER
5814 M:      Divya Bharathi <divya.bharathi@dell.com>
5815 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5816 L:      Dell.Client.Kernel@dell.com
5817 L:      platform-driver-x86@vger.kernel.org
5818 S:      Maintained
5819 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5820 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5821
5822 DELL WMI NOTIFICATIONS DRIVER
5823 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5824 M:      Pali Rohár <pali@kernel.org>
5825 S:      Maintained
5826 F:      drivers/platform/x86/dell/dell-wmi-base.c
5827
5828 DELL WMI HARDWARE PRIVACY SUPPORT
5829 M:      Perry Yuan <Perry.Yuan@dell.com>
5830 L:      Dell.Client.Kernel@dell.com
5831 L:      platform-driver-x86@vger.kernel.org
5832 S:      Maintained
5833 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5834
5835 DELTA ST MEDIA DRIVER
5836 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5837 L:      linux-media@vger.kernel.org
5838 S:      Supported
5839 W:      https://linuxtv.org
5840 T:      git git://linuxtv.org/media_tree.git
5841 F:      drivers/media/platform/st/sti/delta
5842
5843 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5844 M:      Zev Weiss <zev@bewilderbeest.net>
5845 L:      linux-hwmon@vger.kernel.org
5846 S:      Maintained
5847 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5848
5849 DELTA DPS920AB PSU DRIVER
5850 M:      Robert Marko <robert.marko@sartura.hr>
5851 L:      linux-hwmon@vger.kernel.org
5852 S:      Maintained
5853 F:      Documentation/hwmon/dps920ab.rst
5854 F:      drivers/hwmon/pmbus/dps920ab.c
5855
5856 DELTA NETWORKS TN48M CPLD DRIVERS
5857 M:      Robert Marko <robert.marko@sartura.hr>
5858 S:      Maintained
5859 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5860 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5861 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5862 F:      drivers/gpio/gpio-tn48m.c
5863 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5864
5865 DENALI NAND DRIVER
5866 L:      linux-mtd@lists.infradead.org
5867 S:      Orphan
5868 F:      drivers/mtd/nand/raw/denali*
5869
5870 DESIGNWARE EDMA CORE IP DRIVER
5871 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5872 L:      dmaengine@vger.kernel.org
5873 S:      Maintained
5874 F:      drivers/dma/dw-edma/
5875 F:      include/linux/dma/edma.h
5876
5877 DESIGNWARE XDATA IP DRIVER
5878 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5879 L:      linux-pci@vger.kernel.org
5880 S:      Maintained
5881 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5882 F:      drivers/misc/dw-xdata-pcie.c
5883
5884 DESIGNWARE USB2 DRD IP DRIVER
5885 M:      Minas Harutyunyan <hminas@synopsys.com>
5886 L:      linux-usb@vger.kernel.org
5887 S:      Maintained
5888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5889 F:      drivers/usb/dwc2/
5890
5891 DESIGNWARE USB3 DRD IP DRIVER
5892 M:      Felipe Balbi <balbi@kernel.org>
5893 L:      linux-usb@vger.kernel.org
5894 S:      Maintained
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5896 F:      drivers/usb/dwc3/
5897
5898 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5899 M:      Andreas Klinger <ak@it-klinger.de>
5900 L:      linux-iio@vger.kernel.org
5901 S:      Maintained
5902 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5903 F:      drivers/iio/proximity/srf*.c
5904
5905 DEVICE COREDUMP (DEV_COREDUMP)
5906 M:      Johannes Berg <johannes@sipsolutions.net>
5907 L:      linux-kernel@vger.kernel.org
5908 S:      Maintained
5909 F:      drivers/base/devcoredump.c
5910 F:      include/linux/devcoredump.h
5911
5912 DEVICE DEPENDENCY HELPER SCRIPT
5913 M:      Saravana Kannan <saravanak@google.com>
5914 L:      linux-kernel@vger.kernel.org
5915 S:      Maintained
5916 F:      scripts/dev-needs.sh
5917
5918 DEVICE DIRECT ACCESS (DAX)
5919 M:      Dan Williams <dan.j.williams@intel.com>
5920 M:      Vishal Verma <vishal.l.verma@intel.com>
5921 M:      Dave Jiang <dave.jiang@intel.com>
5922 L:      nvdimm@lists.linux.dev
5923 S:      Supported
5924 F:      drivers/dax/
5925
5926 DEVICE FREQUENCY (DEVFREQ)
5927 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5928 M:      Kyungmin Park <kyungmin.park@samsung.com>
5929 M:      Chanwoo Choi <cw00.choi@samsung.com>
5930 L:      linux-pm@vger.kernel.org
5931 S:      Maintained
5932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5933 F:      Documentation/devicetree/bindings/devfreq/
5934 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5935 F:      drivers/devfreq/
5936 F:      include/linux/devfreq.h
5937 F:      include/trace/events/devfreq.h
5938
5939 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5940 M:      Chanwoo Choi <cw00.choi@samsung.com>
5941 L:      linux-pm@vger.kernel.org
5942 S:      Supported
5943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5944 F:      Documentation/devicetree/bindings/devfreq/event/
5945 F:      drivers/devfreq/devfreq-event.c
5946 F:      drivers/devfreq/event/
5947 F:      include/dt-bindings/pmu/exynos_ppmu.h
5948 F:      include/linux/devfreq-event.h
5949
5950 DEVICE NUMBER REGISTRY
5951 M:      Torben Mathiasen <device@lanana.org>
5952 S:      Maintained
5953 W:      http://lanana.org/docs/device-list/index.html
5954
5955 DEVICE RESOURCE MANAGEMENT HELPERS
5956 M:      Hans de Goede <hdegoede@redhat.com>
5957 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5958 S:      Maintained
5959 F:      include/linux/devm-helpers.h
5960
5961 DEVICE-MAPPER  (LVM)
5962 M:      Alasdair Kergon <agk@redhat.com>
5963 M:      Mike Snitzer <snitzer@kernel.org>
5964 M:      dm-devel@redhat.com
5965 L:      dm-devel@redhat.com
5966 S:      Maintained
5967 W:      http://sources.redhat.com/dm
5968 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5970 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5971 F:      Documentation/admin-guide/device-mapper/
5972 F:      drivers/md/Kconfig
5973 F:      drivers/md/Makefile
5974 F:      drivers/md/dm*
5975 F:      drivers/md/persistent-data/
5976 F:      include/linux/device-mapper.h
5977 F:      include/linux/dm-*.h
5978 F:      include/uapi/linux/dm-*.h
5979
5980 DEVLINK
5981 M:      Jiri Pirko <jiri@nvidia.com>
5982 L:      netdev@vger.kernel.org
5983 S:      Supported
5984 F:      Documentation/networking/devlink
5985 F:      include/net/devlink.h
5986 F:      include/uapi/linux/devlink.h
5987 F:      net/core/devlink.c
5988
5989 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5990 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5991 L:      kernel@dh-electronics.com
5992 S:      Maintained
5993 F:      arch/arm/boot/dts/imx6*-dhcom-*
5994
5995 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5996 M:      Marek Vasut <marex@denx.de>
5997 L:      kernel@dh-electronics.com
5998 S:      Maintained
5999 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6000 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6001
6002 DIALOG SEMICONDUCTOR DRIVERS
6003 M:      Support Opensource <support.opensource@diasemi.com>
6004 S:      Supported
6005 W:      http://www.dialog-semiconductor.com/products
6006 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6007 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6008 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6009 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6010 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6011 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6012 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6013 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6014 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6015 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6016 F:      Documentation/hwmon/da90??.rst
6017 F:      drivers/gpio/gpio-da90??.c
6018 F:      drivers/hwmon/da90??-hwmon.c
6019 F:      drivers/iio/adc/da91??-*.c
6020 F:      drivers/input/misc/da72??.[ch]
6021 F:      drivers/input/misc/da90??_onkey.c
6022 F:      drivers/input/touchscreen/da9052_tsi.c
6023 F:      drivers/leds/leds-da90??.c
6024 F:      drivers/mfd/da903x.c
6025 F:      drivers/mfd/da90??-*.c
6026 F:      drivers/mfd/da91??-*.c
6027 F:      drivers/pinctrl/pinctrl-da90??.c
6028 F:      drivers/power/supply/da9052-battery.c
6029 F:      drivers/power/supply/da91??-*.c
6030 F:      drivers/regulator/da9???-regulator.[ch]
6031 F:      drivers/regulator/slg51000-regulator.[ch]
6032 F:      drivers/rtc/rtc-da90??.c
6033 F:      drivers/thermal/da90??-thermal.c
6034 F:      drivers/video/backlight/da90??_bl.c
6035 F:      drivers/watchdog/da90??_wdt.c
6036 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6037 F:      include/linux/mfd/da903x.h
6038 F:      include/linux/mfd/da9052/
6039 F:      include/linux/mfd/da9055/
6040 F:      include/linux/mfd/da9062/
6041 F:      include/linux/mfd/da9063/
6042 F:      include/linux/mfd/da9150/
6043 F:      include/linux/regulator/da9211.h
6044 F:      include/sound/da[79]*.h
6045 F:      sound/soc/codecs/da[79]*.[ch]
6046
6047 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6048 M:      William Breathitt Gray <william.gray@linaro.org>
6049 L:      linux-gpio@vger.kernel.org
6050 S:      Maintained
6051 F:      drivers/gpio/gpio-gpio-mm.c
6052
6053 DIOLAN U2C-12 I2C DRIVER
6054 M:      Guenter Roeck <linux@roeck-us.net>
6055 L:      linux-i2c@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6058
6059 DIRECTORY NOTIFICATION (DNOTIFY)
6060 M:      Jan Kara <jack@suse.cz>
6061 R:      Amir Goldstein <amir73il@gmail.com>
6062 L:      linux-fsdevel@vger.kernel.org
6063 S:      Maintained
6064 F:      Documentation/filesystems/dnotify.rst
6065 F:      fs/notify/dnotify/
6066 F:      include/linux/dnotify.h
6067
6068 DISK GEOMETRY AND PARTITION HANDLING
6069 M:      Andries Brouwer <aeb@cwi.nl>
6070 S:      Maintained
6071 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6072 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6073 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6074
6075 DISKQUOTA
6076 M:      Jan Kara <jack@suse.com>
6077 S:      Maintained
6078 F:      Documentation/filesystems/quota.rst
6079 F:      fs/quota/
6080 F:      include/linux/quota*.h
6081 F:      include/uapi/linux/quota*.h
6082
6083 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6084 M:      Bernie Thompson <bernie@plugable.com>
6085 L:      linux-fbdev@vger.kernel.org
6086 S:      Maintained
6087 W:      http://plugable.com/category/projects/udlfb/
6088 F:      Documentation/fb/udlfb.rst
6089 F:      drivers/video/fbdev/udlfb.c
6090 F:      include/video/udlfb.h
6091
6092 DISTRIBUTED LOCK MANAGER (DLM)
6093 M:      Christine Caulfield <ccaulfie@redhat.com>
6094 M:      David Teigland <teigland@redhat.com>
6095 L:      cluster-devel@redhat.com
6096 S:      Supported
6097 W:      http://sources.redhat.com/cluster/
6098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6099 F:      fs/dlm/
6100
6101 DMA BUFFER SHARING FRAMEWORK
6102 M:      Sumit Semwal <sumit.semwal@linaro.org>
6103 M:      Christian König <christian.koenig@amd.com>
6104 L:      linux-media@vger.kernel.org
6105 L:      dri-devel@lists.freedesktop.org
6106 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6107 S:      Maintained
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      Documentation/driver-api/dma-buf.rst
6110 F:      drivers/dma-buf/
6111 F:      include/linux/*fence.h
6112 F:      include/linux/dma-buf.h
6113 F:      include/linux/dma-resv.h
6114 K:      \bdma_(?:buf|fence|resv)\b
6115
6116 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6117 M:      Vinod Koul <vkoul@kernel.org>
6118 L:      dmaengine@vger.kernel.org
6119 S:      Maintained
6120 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6122 F:      Documentation/devicetree/bindings/dma/
6123 F:      Documentation/driver-api/dmaengine/
6124 F:      drivers/dma/
6125 F:      include/dt-bindings/dma/
6126 F:      include/linux/dma/
6127 F:      include/linux/dmaengine.h
6128 F:      include/linux/of_dma.h
6129
6130 DMA MAPPING HELPERS
6131 M:      Christoph Hellwig <hch@lst.de>
6132 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6133 R:      Robin Murphy <robin.murphy@arm.com>
6134 L:      iommu@lists.linux.dev
6135 S:      Supported
6136 W:      http://git.infradead.org/users/hch/dma-mapping.git
6137 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6138 F:      include/asm-generic/dma-mapping.h
6139 F:      include/linux/dma-direct.h
6140 F:      include/linux/dma-mapping.h
6141 F:      include/linux/dma-map-ops.h
6142 F:      kernel/dma/
6143
6144 DMA MAPPING BENCHMARK
6145 M:      Xiang Chen <chenxiang66@hisilicon.com>
6146 L:      iommu@lists.linux.dev
6147 F:      kernel/dma/map_benchmark.c
6148 F:      tools/testing/selftests/dma/
6149
6150 DMA-BUF HEAPS FRAMEWORK
6151 M:      Sumit Semwal <sumit.semwal@linaro.org>
6152 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6153 R:      Liam Mark <lmark@codeaurora.org>
6154 R:      Laura Abbott <labbott@redhat.com>
6155 R:      Brian Starkey <Brian.Starkey@arm.com>
6156 R:      John Stultz <jstultz@google.com>
6157 L:      linux-media@vger.kernel.org
6158 L:      dri-devel@lists.freedesktop.org
6159 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6160 S:      Maintained
6161 T:      git git://anongit.freedesktop.org/drm/drm-misc
6162 F:      drivers/dma-buf/dma-heap.c
6163 F:      drivers/dma-buf/heaps/*
6164 F:      include/linux/dma-heap.h
6165 F:      include/uapi/linux/dma-heap.h
6166
6167 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6168 M:      Lukasz Luba <lukasz.luba@arm.com>
6169 L:      linux-pm@vger.kernel.org
6170 L:      linux-samsung-soc@vger.kernel.org
6171 S:      Maintained
6172 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6173 F:      drivers/memory/samsung/exynos5422-dmc.c
6174
6175 DME1737 HARDWARE MONITOR DRIVER
6176 M:      Juerg Haefliger <juergh@gmail.com>
6177 L:      linux-hwmon@vger.kernel.org
6178 S:      Maintained
6179 F:      Documentation/hwmon/dme1737.rst
6180 F:      drivers/hwmon/dme1737.c
6181
6182 DMI/SMBIOS SUPPORT
6183 M:      Jean Delvare <jdelvare@suse.com>
6184 S:      Maintained
6185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6186 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6187 F:      drivers/firmware/dmi-id.c
6188 F:      drivers/firmware/dmi_scan.c
6189 F:      include/linux/dmi.h
6190
6191 DOCUMENTATION
6192 M:      Jonathan Corbet <corbet@lwn.net>
6193 L:      linux-doc@vger.kernel.org
6194 S:      Maintained
6195 P:      Documentation/doc-guide/maintainer-profile.rst
6196 T:      git git://git.lwn.net/linux.git docs-next
6197 F:      Documentation/
6198 F:      scripts/documentation-file-ref-check
6199 F:      scripts/kernel-doc
6200 F:      scripts/sphinx-pre-install
6201 X:      Documentation/ABI/
6202 X:      Documentation/admin-guide/media/
6203 X:      Documentation/devicetree/
6204 X:      Documentation/driver-api/media/
6205 X:      Documentation/firmware-guide/acpi/
6206 X:      Documentation/i2c/
6207 X:      Documentation/power/
6208 X:      Documentation/spi/
6209 X:      Documentation/userspace-api/media/
6210
6211 DOCUMENTATION REPORTING ISSUES
6212 M:      Thorsten Leemhuis <linux@leemhuis.info>
6213 L:      linux-doc@vger.kernel.org
6214 S:      Maintained
6215 F:      Documentation/admin-guide/reporting-issues.rst
6216
6217 DOCUMENTATION SCRIPTS
6218 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6219 L:      linux-doc@vger.kernel.org
6220 S:      Maintained
6221 F:      Documentation/sphinx/parse-headers.pl
6222 F:      scripts/documentation-file-ref-check
6223 F:      scripts/sphinx-pre-install
6224
6225 DOCUMENTATION/ITALIAN
6226 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6227 L:      linux-doc@vger.kernel.org
6228 S:      Maintained
6229 F:      Documentation/translations/it_IT
6230
6231 DOCUMENTATION/JAPANESE
6232 R:      Akira Yokosawa <akiyks@gmail.com>
6233 L:      linux-doc@vger.kernel.org
6234 S:      Maintained
6235 F:      Documentation/translations/ja_JP
6236
6237 DONGWOON DW9714 LENS VOICE COIL DRIVER
6238 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6239 L:      linux-media@vger.kernel.org
6240 S:      Maintained
6241 T:      git git://linuxtv.org/media_tree.git
6242 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6243 F:      drivers/media/i2c/dw9714.c
6244
6245 DONGWOON DW9768 LENS VOICE COIL DRIVER
6246 M:      Dongchun Zhu <dongchun.zhu@mediatek.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,dw9768.yaml
6251 F:      drivers/media/i2c/dw9768.c
6252
6253 DONGWOON DW9807 LENS VOICE COIL DRIVER
6254 M:      Sakari Ailus <sakari.ailus@linux.intel.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,dw9807-vcm.yaml
6259 F:      drivers/media/i2c/dw9807-vcm.c
6260
6261 DOUBLETALK DRIVER
6262 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6263 L:      blinux-list@redhat.com
6264 S:      Maintained
6265 F:      drivers/char/dtlk.c
6266 F:      include/linux/dtlk.h
6267
6268 DPAA2 DATAPATH I/O (DPIO) DRIVER
6269 M:      Roy Pledge <Roy.Pledge@nxp.com>
6270 L:      linux-kernel@vger.kernel.org
6271 S:      Maintained
6272 F:      drivers/soc/fsl/dpio
6273
6274 DPAA2 ETHERNET DRIVER
6275 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6276 L:      netdev@vger.kernel.org
6277 S:      Maintained
6278 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6279 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6280 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6281 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6282 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6283 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6284 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6285 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6286 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6287
6288 DPAA2 ETHERNET SWITCH DRIVER
6289 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6290 L:      netdev@vger.kernel.org
6291 S:      Maintained
6292 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6293 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6294 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6295
6296 DRBD DRIVER
6297 M:      Philipp Reisner <philipp.reisner@linbit.com>
6298 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6299 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6300 L:      drbd-dev@lists.linbit.com
6301 S:      Supported
6302 W:      http://www.drbd.org
6303 T:      git git://git.linbit.com/linux-drbd.git
6304 T:      git git://git.linbit.com/drbd-8.4.git
6305 F:      Documentation/admin-guide/blockdev/
6306 F:      drivers/block/drbd/
6307 F:      lib/lru_cache.c
6308
6309 DRIVER COMPONENT FRAMEWORK
6310 L:      dri-devel@lists.freedesktop.org
6311 F:      drivers/base/component.c
6312 F:      include/linux/component.h
6313
6314 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6315 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6316 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6317 S:      Supported
6318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6319 F:      Documentation/core-api/kobject.rst
6320 F:      drivers/base/
6321 F:      fs/debugfs/
6322 F:      fs/sysfs/
6323 F:      include/linux/debugfs.h
6324 F:      include/linux/kobj*
6325 F:      lib/kobj*
6326
6327 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6328 M:      Nishanth Menon <nm@ti.com>
6329 L:      linux-pm@vger.kernel.org
6330 S:      Maintained
6331 F:      drivers/soc/ti/smartreflex.c
6332 F:      include/linux/power/smartreflex.h
6333
6334 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6335 M:      Maxime Ripard <mripard@kernel.org>
6336 M:      Chen-Yu Tsai <wens@csie.org>
6337 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6338 L:      dri-devel@lists.freedesktop.org
6339 S:      Supported
6340 T:      git git://anongit.freedesktop.org/drm/drm-misc
6341 F:      drivers/gpu/drm/sun4i/sun8i*
6342
6343 DRM DRIVER FOR ARM PL111 CLCD
6344 M:      Emma Anholt <emma@anholt.net>
6345 S:      Supported
6346 T:      git git://anongit.freedesktop.org/drm/drm-misc
6347 F:      drivers/gpu/drm/pl111/
6348
6349 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6350 M:      Linus Walleij <linus.walleij@linaro.org>
6351 S:      Maintained
6352 T:      git git://anongit.freedesktop.org/drm/drm-misc
6353 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6354 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6355
6356 DRM DRIVER FOR ASPEED BMC GFX
6357 M:      Joel Stanley <joel@jms.id.au>
6358 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6359 S:      Supported
6360 T:      git git://anongit.freedesktop.org/drm/drm-misc
6361 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6362 F:      drivers/gpu/drm/aspeed/
6363
6364 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6365 M:      Dave Airlie <airlied@redhat.com>
6366 R:      Thomas Zimmermann <tzimmermann@suse.de>
6367 L:      dri-devel@lists.freedesktop.org
6368 S:      Supported
6369 T:      git git://anongit.freedesktop.org/drm/drm-misc
6370 F:      drivers/gpu/drm/ast/
6371
6372 DRM DRIVER FOR BOCHS VIRTUAL GPU
6373 M:      Gerd Hoffmann <kraxel@redhat.com>
6374 L:      virtualization@lists.linux-foundation.org
6375 S:      Maintained
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      drivers/gpu/drm/tiny/bochs.c
6378
6379 DRM DRIVER FOR BOE HIMAX8279D PANELS
6380 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6381 S:      Maintained
6382 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6383 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6384
6385 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6386 M:      Jagan Teki <jagan@amarulasolutions.com>
6387 S:      Maintained
6388 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6389 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6390
6391 DRM DRIVER FOR EBBG FT8719 PANEL
6392 M:      Joel Selvaraj <jo@jsfamily.in>
6393 S:      Maintained
6394 T:      git git://anongit.freedesktop.org/drm/drm-misc
6395 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6396 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6397
6398 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6399 M:      Linus Walleij <linus.walleij@linaro.org>
6400 S:      Maintained
6401 T:      git git://anongit.freedesktop.org/drm/drm-misc
6402 F:      drivers/gpu/drm/tve200/
6403
6404 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6405 M:      Icenowy Zheng <icenowy@aosc.io>
6406 S:      Maintained
6407 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6408 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6409
6410 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6411 M:      Jagan Teki <jagan@amarulasolutions.com>
6412 S:      Maintained
6413 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6414 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6415
6416 DRM DRIVER FOR GENERIC USB DISPLAY
6417 M:      Noralf Trønnes <noralf@tronnes.org>
6418 S:      Maintained
6419 W:      https://github.com/notro/gud/wiki
6420 T:      git git://anongit.freedesktop.org/drm/drm-misc
6421 F:      drivers/gpu/drm/gud/
6422 F:      include/drm/gud.h
6423
6424 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6425 M:      Hans de Goede <hdegoede@redhat.com>
6426 S:      Maintained
6427 T:      git git://anongit.freedesktop.org/drm/drm-misc
6428 F:      drivers/gpu/drm/tiny/gm12u320.c
6429
6430 DRM DRIVER FOR HX8357D PANELS
6431 M:      Emma Anholt <emma@anholt.net>
6432 S:      Maintained
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6435 F:      drivers/gpu/drm/tiny/hx8357d.c
6436
6437 DRM DRIVER FOR ILITEK ILI9225 PANELS
6438 M:      David Lechner <david@lechnology.com>
6439 S:      Maintained
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6442 F:      drivers/gpu/drm/tiny/ili9225.c
6443
6444 DRM DRIVER FOR ILITEK ILI9486 PANELS
6445 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6446 S:      Maintained
6447 T:      git git://anongit.freedesktop.org/drm/drm-misc
6448 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6449 F:      drivers/gpu/drm/tiny/ili9486.c
6450
6451 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6452 S:      Orphan / Obsolete
6453 F:      drivers/gpu/drm/i810/
6454 F:      include/uapi/drm/i810_drm.h
6455
6456 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6457 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6458 S:      Supported
6459 T:      git git://anongit.freedesktop.org/drm/drm-misc
6460 F:      drivers/gpu/drm/logicvc/
6461
6462 DRM DRIVER FOR LVDS PANELS
6463 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6464 L:      dri-devel@lists.freedesktop.org
6465 T:      git git://anongit.freedesktop.org/drm/drm-misc
6466 S:      Maintained
6467 F:      drivers/gpu/drm/panel/panel-lvds.c
6468 F:      Documentation/devicetree/bindings/display/lvds.yaml
6469 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6470
6471 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6472 M:      Guido Günther <agx@sigxcpu.org>
6473 R:      Purism Kernel Team <kernel@puri.sm>
6474 S:      Maintained
6475 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6476 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6477
6478 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6479 S:      Orphan / Obsolete
6480 F:      drivers/gpu/drm/mga/
6481 F:      include/uapi/drm/mga_drm.h
6482
6483 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6484 M:      Dave Airlie <airlied@redhat.com>
6485 R:      Thomas Zimmermann <tzimmermann@suse.de>
6486 L:      dri-devel@lists.freedesktop.org
6487 S:      Supported
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      drivers/gpu/drm/mgag200/
6490
6491 DRM DRIVER FOR MI0283QT
6492 M:      Noralf Trønnes <noralf@tronnes.org>
6493 S:      Maintained
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6496 F:      drivers/gpu/drm/tiny/mi0283qt.c
6497
6498 DRM DRIVER FOR MIPI DBI compatible panels
6499 M:      Noralf Trønnes <noralf@tronnes.org>
6500 S:      Maintained
6501 W:      https://github.com/notro/panel-mipi-dbi/wiki
6502 T:      git git://anongit.freedesktop.org/drm/drm-misc
6503 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6504 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6505
6506 DRM DRIVER FOR MSM ADRENO GPU
6507 M:      Rob Clark <robdclark@gmail.com>
6508 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6509 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6510 R:      Sean Paul <sean@poorly.run>
6511 L:      linux-arm-msm@vger.kernel.org
6512 L:      dri-devel@lists.freedesktop.org
6513 L:      freedreno@lists.freedesktop.org
6514 S:      Maintained
6515 T:      git https://gitlab.freedesktop.org/drm/msm.git
6516 F:      Documentation/devicetree/bindings/display/msm/
6517 F:      drivers/gpu/drm/msm/
6518 F:      include/uapi/drm/msm_drm.h
6519
6520 DRM DRIVER FOR NOVATEK NT35510 PANELS
6521 M:      Linus Walleij <linus.walleij@linaro.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6525 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6526
6527 DRM DRIVER FOR NOVATEK NT35560 PANELS
6528 M:      Linus Walleij <linus.walleij@linaro.org>
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6532 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6533
6534 DRM DRIVER FOR NOVATEK NT36672A PANELS
6535 M:      Sumit Semwal <sumit.semwal@linaro.org>
6536 S:      Maintained
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6539 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6540
6541 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6542 M:      Ben Skeggs <bskeggs@redhat.com>
6543 M:      Karol Herbst <kherbst@redhat.com>
6544 M:      Lyude Paul <lyude@redhat.com>
6545 L:      dri-devel@lists.freedesktop.org
6546 L:      nouveau@lists.freedesktop.org
6547 S:      Supported
6548 W:      https://nouveau.freedesktop.org/
6549 Q:      https://patchwork.freedesktop.org/project/nouveau/
6550 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6551 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6552 C:      irc://irc.oftc.net/nouveau
6553 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6554 F:      drivers/gpu/drm/nouveau/
6555 F:      include/uapi/drm/nouveau_drm.h
6556
6557 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6558 M:      Stefan Mavrodiev <stefan@olimex.com>
6559 S:      Maintained
6560 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6561 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6562
6563 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6564 R:      Douglas Anderson <dianders@chromium.org>
6565 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6566 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6567
6568 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6569 M:      Noralf Trønnes <noralf@tronnes.org>
6570 S:      Maintained
6571 T:      git git://anongit.freedesktop.org/drm/drm-misc
6572 F:      Documentation/devicetree/bindings/display/repaper.txt
6573 F:      drivers/gpu/drm/tiny/repaper.c
6574
6575 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6576 M:      Javier Martinez Canillas <javierm@redhat.com>
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6580 F:      drivers/gpu/drm/solomon/ssd130x*
6581
6582 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6583 M:      Dave Airlie <airlied@redhat.com>
6584 M:      Gerd Hoffmann <kraxel@redhat.com>
6585 L:      virtualization@lists.linux-foundation.org
6586 S:      Obsolete
6587 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6588 T:      git git://anongit.freedesktop.org/drm/drm-misc
6589 F:      drivers/gpu/drm/tiny/cirrus.c
6590
6591 DRM DRIVER FOR QXL VIRTUAL GPU
6592 M:      Dave Airlie <airlied@redhat.com>
6593 M:      Gerd Hoffmann <kraxel@redhat.com>
6594 L:      virtualization@lists.linux-foundation.org
6595 L:      spice-devel@lists.freedesktop.org
6596 S:      Maintained
6597 T:      git git://anongit.freedesktop.org/drm/drm-misc
6598 F:      drivers/gpu/drm/qxl/
6599 F:      include/uapi/drm/qxl_drm.h
6600
6601 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6602 S:      Orphan / Obsolete
6603 F:      drivers/gpu/drm/r128/
6604 F:      include/uapi/drm/r128_drm.h
6605
6606 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6607 M:      Robert Chiras <robert.chiras@nxp.com>
6608 S:      Maintained
6609 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6610 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6611
6612 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6613 M:      Linus Walleij <linus.walleij@linaro.org>
6614 S:      Maintained
6615 T:      git git://anongit.freedesktop.org/drm/drm-misc
6616 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6617 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6618
6619 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6620 M:      Markuss Broks <markuss.broks@gmail.com>
6621 S:      Maintained
6622 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6623 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6624
6625 DRM DRIVER FOR SITRONIX ST7703 PANELS
6626 M:      Guido Günther <agx@sigxcpu.org>
6627 R:      Purism Kernel Team <kernel@puri.sm>
6628 R:      Ondrej Jirman <megous@megous.com>
6629 S:      Maintained
6630 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6631 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6632
6633 DRM DRIVER FOR SAVAGE VIDEO CARDS
6634 S:      Orphan / Obsolete
6635 F:      drivers/gpu/drm/savage/
6636 F:      include/uapi/drm/savage_drm.h
6637
6638 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6639 M:      Thomas Zimmermann <tzimmermann@suse.de>
6640 M:      Javier Martinez Canillas <javierm@redhat.com>
6641 L:      dri-devel@lists.freedesktop.org
6642 S:      Maintained
6643 T:      git git://anongit.freedesktop.org/drm/drm-misc
6644 F:      drivers/gpu/drm/drm_aperture.c
6645 F:      drivers/gpu/drm/tiny/simpledrm.c
6646 F:      drivers/video/aperture.c
6647 F:      include/drm/drm_aperture.h
6648 F:      include/linux/aperture.h
6649
6650 DRM DRIVER FOR SIS VIDEO CARDS
6651 S:      Orphan / Obsolete
6652 F:      drivers/gpu/drm/sis/
6653 F:      include/uapi/drm/sis_drm.h
6654
6655 DRM DRIVER FOR SITRONIX ST7586 PANELS
6656 M:      David Lechner <david@lechnology.com>
6657 S:      Maintained
6658 T:      git git://anongit.freedesktop.org/drm/drm-misc
6659 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6660 F:      drivers/gpu/drm/tiny/st7586.c
6661
6662 DRM DRIVER FOR SITRONIX ST7701 PANELS
6663 M:      Jagan Teki <jagan@amarulasolutions.com>
6664 S:      Maintained
6665 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6666 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6667
6668 DRM DRIVER FOR SITRONIX ST7735R PANELS
6669 M:      David Lechner <david@lechnology.com>
6670 S:      Maintained
6671 T:      git git://anongit.freedesktop.org/drm/drm-misc
6672 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6673 F:      drivers/gpu/drm/tiny/st7735r.c
6674
6675 DRM DRIVER FOR ST-ERICSSON MCDE
6676 M:      Linus Walleij <linus.walleij@linaro.org>
6677 S:      Maintained
6678 T:      git git://anongit.freedesktop.org/drm/drm-misc
6679 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6680 F:      drivers/gpu/drm/mcde/
6681
6682 DRM DRIVER FOR TDFX VIDEO CARDS
6683 S:      Orphan / Obsolete
6684 F:      drivers/gpu/drm/tdfx/
6685
6686 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6687 M:      Jagan Teki <jagan@amarulasolutions.com>
6688 S:      Maintained
6689 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6690 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6691
6692 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6693 R:      Douglas Anderson <dianders@chromium.org>
6694 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6695 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6696
6697 DRM DRIVER FOR TPO TPG110 PANELS
6698 M:      Linus Walleij <linus.walleij@linaro.org>
6699 S:      Maintained
6700 T:      git git://anongit.freedesktop.org/drm/drm-misc
6701 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6702 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6703
6704 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6705 M:      Dave Airlie <airlied@redhat.com>
6706 R:      Sean Paul <sean@poorly.run>
6707 R:      Thomas Zimmermann <tzimmermann@suse.de>
6708 L:      dri-devel@lists.freedesktop.org
6709 S:      Supported
6710 T:      git git://anongit.freedesktop.org/drm/drm-misc
6711 F:      drivers/gpu/drm/udl/
6712
6713 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6714 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6715 M:      Melissa Wen <melissa.srw@gmail.com>
6716 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6717 R:      Daniel Vetter <daniel@ffwll.ch>
6718 L:      dri-devel@lists.freedesktop.org
6719 S:      Maintained
6720 T:      git git://anongit.freedesktop.org/drm/drm-misc
6721 F:      Documentation/gpu/vkms.rst
6722 F:      drivers/gpu/drm/vkms/
6723
6724 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6725 M:      Hans de Goede <hdegoede@redhat.com>
6726 L:      dri-devel@lists.freedesktop.org
6727 S:      Maintained
6728 T:      git git://anongit.freedesktop.org/drm/drm-misc
6729 F:      drivers/gpu/drm/vboxvideo/
6730
6731 DRM DRIVER FOR VMWARE VIRTUAL GPU
6732 M:      Zack Rusin <zackr@vmware.com>
6733 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6734 L:      dri-devel@lists.freedesktop.org
6735 S:      Supported
6736 T:      git git://anongit.freedesktop.org/drm/drm-misc
6737 F:      drivers/gpu/drm/vmwgfx/
6738 F:      include/uapi/drm/vmwgfx_drm.h
6739
6740 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6741 M:      Linus Walleij <linus.walleij@linaro.org>
6742 S:      Maintained
6743 T:      git git://anongit.freedesktop.org/drm/drm-misc
6744 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6745 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6746
6747 DRM DRIVERS
6748 M:      David Airlie <airlied@linux.ie>
6749 M:      Daniel Vetter <daniel@ffwll.ch>
6750 L:      dri-devel@lists.freedesktop.org
6751 S:      Maintained
6752 B:      https://gitlab.freedesktop.org/drm
6753 C:      irc://irc.oftc.net/dri-devel
6754 T:      git git://anongit.freedesktop.org/drm/drm
6755 F:      Documentation/devicetree/bindings/display/
6756 F:      Documentation/devicetree/bindings/gpu/
6757 F:      Documentation/gpu/
6758 F:      drivers/gpu/
6759 F:      include/drm/
6760 F:      include/linux/vga*
6761 F:      include/uapi/drm/
6762
6763 DRM DRIVERS AND MISC GPU PATCHES
6764 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6765 M:      Maxime Ripard <mripard@kernel.org>
6766 M:      Thomas Zimmermann <tzimmermann@suse.de>
6767 S:      Maintained
6768 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6769 T:      git git://anongit.freedesktop.org/drm/drm-misc
6770 F:      Documentation/gpu/
6771 F:      drivers/gpu/drm/*
6772 F:      drivers/gpu/vga/
6773 F:      include/drm/drm*
6774 F:      include/linux/vga*
6775 F:      include/uapi/drm/drm*
6776
6777 DRM DRIVERS FOR ALLWINNER A10
6778 M:      Maxime Ripard <mripard@kernel.org>
6779 M:      Chen-Yu Tsai <wens@csie.org>
6780 L:      dri-devel@lists.freedesktop.org
6781 S:      Supported
6782 T:      git git://anongit.freedesktop.org/drm/drm-misc
6783 F:      Documentation/devicetree/bindings/display/allwinner*
6784 F:      drivers/gpu/drm/sun4i/
6785
6786 DRM DRIVERS FOR AMLOGIC SOCS
6787 M:      Neil Armstrong <narmstrong@baylibre.com>
6788 L:      dri-devel@lists.freedesktop.org
6789 L:      linux-amlogic@lists.infradead.org
6790 S:      Supported
6791 W:      http://linux-meson.com/
6792 T:      git git://anongit.freedesktop.org/drm/drm-misc
6793 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6794 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6795 F:      Documentation/gpu/meson.rst
6796 F:      drivers/gpu/drm/meson/
6797
6798 DRM DRIVERS FOR ATMEL HLCDC
6799 M:      Sam Ravnborg <sam@ravnborg.org>
6800 M:      Boris Brezillon <bbrezillon@kernel.org>
6801 L:      dri-devel@lists.freedesktop.org
6802 S:      Supported
6803 T:      git git://anongit.freedesktop.org/drm/drm-misc
6804 F:      Documentation/devicetree/bindings/display/atmel/
6805 F:      drivers/gpu/drm/atmel-hlcdc/
6806
6807 DRM DRIVERS FOR BRIDGE CHIPS
6808 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6809 M:      Neil Armstrong <narmstrong@baylibre.com>
6810 M:      Robert Foss <robert.foss@linaro.org>
6811 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6812 R:      Jonas Karlman <jonas@kwiboo.se>
6813 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6814 S:      Maintained
6815 T:      git git://anongit.freedesktop.org/drm/drm-misc
6816 F:      Documentation/devicetree/bindings/display/bridge/
6817 F:      drivers/gpu/drm/bridge/
6818
6819 DRM DRIVERS FOR EXYNOS
6820 M:      Inki Dae <inki.dae@samsung.com>
6821 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6822 M:      Kyungmin Park <kyungmin.park@samsung.com>
6823 L:      dri-devel@lists.freedesktop.org
6824 S:      Supported
6825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6826 F:      Documentation/devicetree/bindings/display/exynos/
6827 F:      Documentation/devicetree/bindings/display/samsung/
6828 F:      drivers/gpu/drm/exynos/
6829 F:      include/uapi/drm/exynos_drm.h
6830
6831 DRM DRIVERS FOR FREESCALE DCU
6832 M:      Stefan Agner <stefan@agner.ch>
6833 M:      Alison Wang <alison.wang@nxp.com>
6834 L:      dri-devel@lists.freedesktop.org
6835 S:      Supported
6836 T:      git git://anongit.freedesktop.org/drm/drm-misc
6837 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6838 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6839 F:      drivers/gpu/drm/fsl-dcu/
6840
6841 DRM DRIVERS FOR FREESCALE IMX
6842 M:      Philipp Zabel <p.zabel@pengutronix.de>
6843 L:      dri-devel@lists.freedesktop.org
6844 S:      Maintained
6845 F:      Documentation/devicetree/bindings/display/imx/
6846 F:      drivers/gpu/drm/imx/
6847 F:      drivers/gpu/ipu-v3/
6848
6849 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6850 M:      Liu Ying <victor.liu@nxp.com>
6851 L:      dri-devel@lists.freedesktop.org
6852 S:      Maintained
6853 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6854 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6855 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6856 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6857 F:      drivers/gpu/drm/bridge/imx/
6858
6859 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6860 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6861 L:      dri-devel@lists.freedesktop.org
6862 S:      Maintained
6863 T:      git git://github.com/patjak/drm-gma500
6864 F:      drivers/gpu/drm/gma500/
6865
6866 DRM DRIVERS FOR HISILICON
6867 M:      Xinliang Liu <xinliang.liu@linaro.org>
6868 M:      Tian Tao  <tiantao6@hisilicon.com>
6869 R:      John Stultz <jstultz@google.com>
6870 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6871 R:      Chen Feng <puck.chen@hisilicon.com>
6872 L:      dri-devel@lists.freedesktop.org
6873 S:      Maintained
6874 T:      git git://anongit.freedesktop.org/drm/drm-misc
6875 F:      Documentation/devicetree/bindings/display/hisilicon/
6876 F:      drivers/gpu/drm/hisilicon/
6877
6878 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6879 M:      Deepak Rawat <drawat.floss@gmail.com>
6880 L:      linux-hyperv@vger.kernel.org
6881 L:      dri-devel@lists.freedesktop.org
6882 S:      Maintained
6883 T:      git git://anongit.freedesktop.org/drm/drm-misc
6884 F:      drivers/gpu/drm/hyperv
6885
6886 DRM DRIVERS FOR LIMA
6887 M:      Qiang Yu <yuq825@gmail.com>
6888 L:      dri-devel@lists.freedesktop.org
6889 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6890 S:      Maintained
6891 T:      git git://anongit.freedesktop.org/drm/drm-misc
6892 F:      drivers/gpu/drm/lima/
6893 F:      include/uapi/drm/lima_drm.h
6894
6895 DRM DRIVERS FOR MEDIATEK
6896 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6897 M:      Philipp Zabel <p.zabel@pengutronix.de>
6898 L:      dri-devel@lists.freedesktop.org
6899 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6900 S:      Supported
6901 F:      Documentation/devicetree/bindings/display/mediatek/
6902 F:      drivers/gpu/drm/mediatek/
6903 F:      drivers/phy/mediatek/phy-mtk-dp.c
6904 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6905 F:      drivers/phy/mediatek/phy-mtk-mipi*
6906
6907 DRM DRIVERS FOR NVIDIA TEGRA
6908 M:      Thierry Reding <thierry.reding@gmail.com>
6909 L:      dri-devel@lists.freedesktop.org
6910 L:      linux-tegra@vger.kernel.org
6911 S:      Supported
6912 T:      git git://anongit.freedesktop.org/tegra/linux.git
6913 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6914 F:      Documentation/devicetree/bindings/gpu/host1x/
6915 F:      drivers/gpu/drm/tegra/
6916 F:      drivers/gpu/host1x/
6917 F:      include/linux/host1x.h
6918 F:      include/uapi/drm/tegra_drm.h
6919
6920 DRM DRIVERS FOR RENESAS
6921 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6922 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6923 L:      dri-devel@lists.freedesktop.org
6924 L:      linux-renesas-soc@vger.kernel.org
6925 S:      Supported
6926 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6927 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6928 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6929 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6930 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6931 F:      drivers/gpu/drm/rcar-du/
6932 F:      drivers/gpu/drm/shmobile/
6933 F:      include/linux/platform_data/shmob_drm.h
6934
6935 DRM DRIVERS FOR ROCKCHIP
6936 M:      Sandy Huang <hjc@rock-chips.com>
6937 M:      Heiko Stübner <heiko@sntech.de>
6938 L:      dri-devel@lists.freedesktop.org
6939 S:      Maintained
6940 T:      git git://anongit.freedesktop.org/drm/drm-misc
6941 F:      Documentation/devicetree/bindings/display/rockchip/
6942 F:      drivers/gpu/drm/rockchip/
6943
6944 DRM DRIVERS FOR STI
6945 M:      Alain Volmat <alain.volmat@foss.st.com>
6946 L:      dri-devel@lists.freedesktop.org
6947 S:      Maintained
6948 T:      git git://anongit.freedesktop.org/drm/drm-misc
6949 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6950 F:      drivers/gpu/drm/sti
6951
6952 DRM DRIVERS FOR STM
6953 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6954 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6955 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6956 L:      dri-devel@lists.freedesktop.org
6957 S:      Maintained
6958 T:      git git://anongit.freedesktop.org/drm/drm-misc
6959 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6960 F:      drivers/gpu/drm/stm
6961
6962 DRM DRIVERS FOR TI KEYSTONE
6963 M:      Jyri Sarha <jyri.sarha@iki.fi>
6964 M:      Tomi Valkeinen <tomba@kernel.org>
6965 L:      dri-devel@lists.freedesktop.org
6966 S:      Maintained
6967 T:      git git://anongit.freedesktop.org/drm/drm-misc
6968 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6969 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6970 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6971 F:      drivers/gpu/drm/tidss/
6972
6973 DRM DRIVERS FOR TI LCDC
6974 M:      Jyri Sarha <jyri.sarha@iki.fi>
6975 R:      Tomi Valkeinen <tomba@kernel.org>
6976 L:      dri-devel@lists.freedesktop.org
6977 S:      Maintained
6978 F:      Documentation/devicetree/bindings/display/tilcdc/
6979 F:      drivers/gpu/drm/tilcdc/
6980
6981 DRM DRIVERS FOR TI OMAP
6982 M:      Tomi Valkeinen <tomba@kernel.org>
6983 L:      dri-devel@lists.freedesktop.org
6984 S:      Maintained
6985 F:      Documentation/devicetree/bindings/display/ti/
6986 F:      drivers/gpu/drm/omapdrm/
6987
6988 DRM DRIVERS FOR V3D
6989 M:      Emma Anholt <emma@anholt.net>
6990 M:      Melissa Wen <mwen@igalia.com>
6991 S:      Supported
6992 T:      git git://anongit.freedesktop.org/drm/drm-misc
6993 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6994 F:      drivers/gpu/drm/v3d/
6995 F:      include/uapi/drm/v3d_drm.h
6996
6997 DRM DRIVERS FOR VC4
6998 M:      Emma Anholt <emma@anholt.net>
6999 M:      Maxime Ripard <mripard@kernel.org>
7000 S:      Supported
7001 T:      git git://github.com/anholt/linux
7002 T:      git git://anongit.freedesktop.org/drm/drm-misc
7003 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7004 F:      drivers/gpu/drm/vc4/
7005 F:      include/uapi/drm/vc4_drm.h
7006
7007 DRM DRIVERS FOR VIVANTE GPU IP
7008 M:      Lucas Stach <l.stach@pengutronix.de>
7009 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7010 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7011 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7012 L:      dri-devel@lists.freedesktop.org
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7015 F:      drivers/gpu/drm/etnaviv/
7016 F:      include/uapi/drm/etnaviv_drm.h
7017
7018 DRM DRIVERS FOR XEN
7019 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7020 L:      dri-devel@lists.freedesktop.org
7021 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7022 S:      Supported
7023 T:      git git://anongit.freedesktop.org/drm/drm-misc
7024 F:      Documentation/gpu/xen-front.rst
7025 F:      drivers/gpu/drm/xen/
7026
7027 DRM DRIVERS FOR XILINX
7028 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7029 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7030 L:      dri-devel@lists.freedesktop.org
7031 S:      Maintained
7032 T:      git git://anongit.freedesktop.org/drm/drm-misc
7033 F:      Documentation/devicetree/bindings/display/xlnx/
7034 F:      drivers/gpu/drm/xlnx/
7035
7036 DRM PANEL DRIVERS
7037 M:      Thierry Reding <thierry.reding@gmail.com>
7038 R:      Sam Ravnborg <sam@ravnborg.org>
7039 L:      dri-devel@lists.freedesktop.org
7040 S:      Maintained
7041 T:      git git://anongit.freedesktop.org/drm/drm-misc
7042 F:      Documentation/devicetree/bindings/display/panel/
7043 F:      drivers/gpu/drm/drm_panel.c
7044 F:      drivers/gpu/drm/panel/
7045 F:      include/drm/drm_panel.h
7046
7047 DRM PRIVACY-SCREEN CLASS
7048 M:      Hans de Goede <hdegoede@redhat.com>
7049 L:      dri-devel@lists.freedesktop.org
7050 S:      Maintained
7051 T:      git git://anongit.freedesktop.org/drm/drm-misc
7052 F:      drivers/gpu/drm/drm_privacy_screen*
7053 F:      include/drm/drm_privacy_screen*
7054
7055 DRM TTM SUBSYSTEM
7056 M:      Christian Koenig <christian.koenig@amd.com>
7057 M:      Huang Rui <ray.huang@amd.com>
7058 L:      dri-devel@lists.freedesktop.org
7059 S:      Maintained
7060 T:      git git://anongit.freedesktop.org/drm/drm-misc
7061 F:      drivers/gpu/drm/ttm/
7062 F:      include/drm/ttm/
7063
7064 DRM GPU SCHEDULER
7065 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
7066 L:      dri-devel@lists.freedesktop.org
7067 S:      Maintained
7068 T:      git git://anongit.freedesktop.org/drm/drm-misc
7069 F:      drivers/gpu/drm/scheduler/
7070 F:      include/drm/gpu_scheduler.h
7071
7072 DSBR100 USB FM RADIO DRIVER
7073 M:      Alexey Klimov <klimov.linux@gmail.com>
7074 L:      linux-media@vger.kernel.org
7075 S:      Maintained
7076 T:      git git://linuxtv.org/media_tree.git
7077 F:      drivers/media/radio/dsbr100.c
7078
7079 DT3155 MEDIA DRIVER
7080 M:      Hans Verkuil <hverkuil@xs4all.nl>
7081 L:      linux-media@vger.kernel.org
7082 S:      Odd Fixes
7083 W:      https://linuxtv.org
7084 T:      git git://linuxtv.org/media_tree.git
7085 F:      drivers/media/pci/dt3155/
7086
7087 DVB_USB_AF9015 MEDIA DRIVER
7088 M:      Antti Palosaari <crope@iki.fi>
7089 L:      linux-media@vger.kernel.org
7090 S:      Maintained
7091 W:      https://linuxtv.org
7092 W:      http://palosaari.fi/linux/
7093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7094 T:      git git://linuxtv.org/anttip/media_tree.git
7095 F:      drivers/media/usb/dvb-usb-v2/af9015*
7096
7097 DVB_USB_AF9035 MEDIA DRIVER
7098 M:      Antti Palosaari <crope@iki.fi>
7099 L:      linux-media@vger.kernel.org
7100 S:      Maintained
7101 W:      https://linuxtv.org
7102 W:      http://palosaari.fi/linux/
7103 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7104 T:      git git://linuxtv.org/anttip/media_tree.git
7105 F:      drivers/media/usb/dvb-usb-v2/af9035*
7106
7107 DVB_USB_ANYSEE MEDIA DRIVER
7108 M:      Antti Palosaari <crope@iki.fi>
7109 L:      linux-media@vger.kernel.org
7110 S:      Maintained
7111 W:      https://linuxtv.org
7112 W:      http://palosaari.fi/linux/
7113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7114 T:      git git://linuxtv.org/anttip/media_tree.git
7115 F:      drivers/media/usb/dvb-usb-v2/anysee*
7116
7117 DVB_USB_AU6610 MEDIA DRIVER
7118 M:      Antti Palosaari <crope@iki.fi>
7119 L:      linux-media@vger.kernel.org
7120 S:      Maintained
7121 W:      https://linuxtv.org
7122 W:      http://palosaari.fi/linux/
7123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7124 T:      git git://linuxtv.org/anttip/media_tree.git
7125 F:      drivers/media/usb/dvb-usb-v2/au6610*
7126
7127 DVB_USB_CE6230 MEDIA DRIVER
7128 M:      Antti Palosaari <crope@iki.fi>
7129 L:      linux-media@vger.kernel.org
7130 S:      Maintained
7131 W:      https://linuxtv.org
7132 W:      http://palosaari.fi/linux/
7133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7134 T:      git git://linuxtv.org/anttip/media_tree.git
7135 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7136
7137 DVB_USB_CXUSB MEDIA DRIVER
7138 M:      Michael Krufky <mkrufky@linuxtv.org>
7139 L:      linux-media@vger.kernel.org
7140 S:      Maintained
7141 W:      https://linuxtv.org
7142 W:      http://github.com/mkrufky
7143 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7144 T:      git git://linuxtv.org/media_tree.git
7145 F:      drivers/media/usb/dvb-usb/cxusb*
7146
7147 DVB_USB_EC168 MEDIA DRIVER
7148 M:      Antti Palosaari <crope@iki.fi>
7149 L:      linux-media@vger.kernel.org
7150 S:      Maintained
7151 W:      https://linuxtv.org
7152 W:      http://palosaari.fi/linux/
7153 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7154 T:      git git://linuxtv.org/anttip/media_tree.git
7155 F:      drivers/media/usb/dvb-usb-v2/ec168*
7156
7157 DVB_USB_GL861 MEDIA DRIVER
7158 M:      Antti Palosaari <crope@iki.fi>
7159 L:      linux-media@vger.kernel.org
7160 S:      Maintained
7161 W:      https://linuxtv.org
7162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7163 T:      git git://linuxtv.org/anttip/media_tree.git
7164 F:      drivers/media/usb/dvb-usb-v2/gl861*
7165
7166 DVB_USB_MXL111SF MEDIA DRIVER
7167 M:      Michael Krufky <mkrufky@linuxtv.org>
7168 L:      linux-media@vger.kernel.org
7169 S:      Maintained
7170 W:      https://linuxtv.org
7171 W:      http://github.com/mkrufky
7172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7173 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7174 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7175
7176 DVB_USB_RTL28XXU MEDIA DRIVER
7177 M:      Antti Palosaari <crope@iki.fi>
7178 L:      linux-media@vger.kernel.org
7179 S:      Maintained
7180 W:      https://linuxtv.org
7181 W:      http://palosaari.fi/linux/
7182 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7183 T:      git git://linuxtv.org/anttip/media_tree.git
7184 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7185
7186 DVB_USB_V2 MEDIA DRIVER
7187 M:      Antti Palosaari <crope@iki.fi>
7188 L:      linux-media@vger.kernel.org
7189 S:      Maintained
7190 W:      https://linuxtv.org
7191 W:      http://palosaari.fi/linux/
7192 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7193 T:      git git://linuxtv.org/anttip/media_tree.git
7194 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7195 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7196
7197 DYNAMIC DEBUG
7198 M:      Jason Baron <jbaron@akamai.com>
7199 S:      Maintained
7200 F:      include/linux/dynamic_debug.h
7201 F:      lib/dynamic_debug.c
7202
7203 DYNAMIC INTERRUPT MODERATION
7204 M:      Tal Gilboa <talgi@nvidia.com>
7205 S:      Maintained
7206 F:      Documentation/networking/net_dim.rst
7207 F:      include/linux/dim.h
7208 F:      lib/dim/
7209
7210 DZ DECSTATION DZ11 SERIAL DRIVER
7211 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7212 S:      Maintained
7213 F:      drivers/tty/serial/dz.*
7214
7215 E3X0 POWER BUTTON DRIVER
7216 M:      Moritz Fischer <moritz.fischer@ettus.com>
7217 L:      usrp-users@lists.ettus.com
7218 S:      Supported
7219 W:      http://www.ettus.com
7220 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7221 F:      drivers/input/misc/e3x0-button.c
7222
7223 E4000 MEDIA DRIVER
7224 M:      Antti Palosaari <crope@iki.fi>
7225 L:      linux-media@vger.kernel.org
7226 S:      Maintained
7227 W:      https://linuxtv.org
7228 W:      http://palosaari.fi/linux/
7229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7230 T:      git git://linuxtv.org/anttip/media_tree.git
7231 F:      drivers/media/tuners/e4000*
7232
7233 EARTH_PT1 MEDIA DRIVER
7234 M:      Akihiro Tsukada <tskd08@gmail.com>
7235 L:      linux-media@vger.kernel.org
7236 S:      Odd Fixes
7237 F:      drivers/media/pci/pt1/
7238
7239 EARTH_PT3 MEDIA DRIVER
7240 M:      Akihiro Tsukada <tskd08@gmail.com>
7241 L:      linux-media@vger.kernel.org
7242 S:      Odd Fixes
7243 F:      drivers/media/pci/pt3/
7244
7245 EC100 MEDIA DRIVER
7246 M:      Antti Palosaari <crope@iki.fi>
7247 L:      linux-media@vger.kernel.org
7248 S:      Maintained
7249 W:      https://linuxtv.org
7250 W:      http://palosaari.fi/linux/
7251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7252 T:      git git://linuxtv.org/anttip/media_tree.git
7253 F:      drivers/media/dvb-frontends/ec100*
7254
7255 ECRYPT FILE SYSTEM
7256 M:      Tyler Hicks <code@tyhicks.com>
7257 L:      ecryptfs@vger.kernel.org
7258 S:      Odd Fixes
7259 W:      http://ecryptfs.org
7260 W:      https://launchpad.net/ecryptfs
7261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7262 F:      Documentation/filesystems/ecryptfs.rst
7263 F:      fs/ecryptfs/
7264
7265 EDAC-AMD64
7266 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7267 L:      linux-edac@vger.kernel.org
7268 S:      Supported
7269 F:      drivers/edac/amd64_edac*
7270 F:      drivers/edac/mce_amd*
7271
7272 EDAC-ARMADA
7273 M:      Jan Luebbe <jlu@pengutronix.de>
7274 L:      linux-edac@vger.kernel.org
7275 S:      Maintained
7276 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7277 F:      drivers/edac/armada_xp_*
7278
7279 EDAC-AST2500
7280 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7281 S:      Supported
7282 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7283 F:      drivers/edac/aspeed_edac.c
7284
7285 EDAC-BLUEFIELD
7286 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7287 S:      Supported
7288 F:      drivers/edac/bluefield_edac.c
7289
7290 EDAC-CALXEDA
7291 M:      Andre Przywara <andre.przywara@arm.com>
7292 L:      linux-edac@vger.kernel.org
7293 S:      Maintained
7294 F:      drivers/edac/highbank*
7295
7296 EDAC-CAVIUM OCTEON
7297 M:      Ralf Baechle <ralf@linux-mips.org>
7298 L:      linux-edac@vger.kernel.org
7299 L:      linux-mips@vger.kernel.org
7300 S:      Supported
7301 F:      drivers/edac/octeon_edac*
7302
7303 EDAC-CAVIUM THUNDERX
7304 M:      Robert Richter <rric@kernel.org>
7305 L:      linux-edac@vger.kernel.org
7306 S:      Odd Fixes
7307 F:      drivers/edac/thunderx_edac*
7308
7309 EDAC-CORE
7310 M:      Borislav Petkov <bp@alien8.de>
7311 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7312 M:      Tony Luck <tony.luck@intel.com>
7313 R:      James Morse <james.morse@arm.com>
7314 R:      Robert Richter <rric@kernel.org>
7315 L:      linux-edac@vger.kernel.org
7316 S:      Supported
7317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7318 F:      Documentation/admin-guide/ras.rst
7319 F:      Documentation/driver-api/edac.rst
7320 F:      drivers/edac/
7321 F:      include/linux/edac.h
7322
7323 EDAC-DMC520
7324 M:      Lei Wang <lewan@microsoft.com>
7325 L:      linux-edac@vger.kernel.org
7326 S:      Supported
7327 F:      drivers/edac/dmc520_edac.c
7328
7329 EDAC-E752X
7330 M:      Mark Gross <markgross@kernel.org>
7331 L:      linux-edac@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/edac/e752x_edac.c
7334
7335 EDAC-E7XXX
7336 L:      linux-edac@vger.kernel.org
7337 S:      Maintained
7338 F:      drivers/edac/e7xxx_edac.c
7339
7340 EDAC-FSL_DDR
7341 M:      York Sun <york.sun@nxp.com>
7342 L:      linux-edac@vger.kernel.org
7343 S:      Maintained
7344 F:      drivers/edac/fsl_ddr_edac.*
7345
7346 EDAC-GHES
7347 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7348 L:      linux-edac@vger.kernel.org
7349 S:      Maintained
7350 F:      drivers/edac/ghes_edac.c
7351
7352 EDAC-I10NM
7353 M:      Tony Luck <tony.luck@intel.com>
7354 L:      linux-edac@vger.kernel.org
7355 S:      Maintained
7356 F:      drivers/edac/i10nm_base.c
7357
7358 EDAC-I3000
7359 L:      linux-edac@vger.kernel.org
7360 S:      Orphan
7361 F:      drivers/edac/i3000_edac.c
7362
7363 EDAC-I5000
7364 L:      linux-edac@vger.kernel.org
7365 S:      Maintained
7366 F:      drivers/edac/i5000_edac.c
7367
7368 EDAC-I5400
7369 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7370 L:      linux-edac@vger.kernel.org
7371 S:      Maintained
7372 F:      drivers/edac/i5400_edac.c
7373
7374 EDAC-I7300
7375 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/i7300_edac.c
7379
7380 EDAC-I7CORE
7381 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7382 L:      linux-edac@vger.kernel.org
7383 S:      Maintained
7384 F:      drivers/edac/i7core_edac.c
7385
7386 EDAC-I82443BXGX
7387 M:      Tim Small <tim@buttersideup.com>
7388 L:      linux-edac@vger.kernel.org
7389 S:      Maintained
7390 F:      drivers/edac/i82443bxgx_edac.c
7391
7392 EDAC-I82975X
7393 M:      "Arvind R." <arvino55@gmail.com>
7394 L:      linux-edac@vger.kernel.org
7395 S:      Maintained
7396 F:      drivers/edac/i82975x_edac.c
7397
7398 EDAC-IE31200
7399 M:      Jason Baron <jbaron@akamai.com>
7400 L:      linux-edac@vger.kernel.org
7401 S:      Maintained
7402 F:      drivers/edac/ie31200_edac.c
7403
7404 EDAC-IGEN6
7405 M:      Tony Luck <tony.luck@intel.com>
7406 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7407 L:      linux-edac@vger.kernel.org
7408 S:      Maintained
7409 F:      drivers/edac/igen6_edac.c
7410
7411 EDAC-MPC85XX
7412 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7413 L:      linux-edac@vger.kernel.org
7414 S:      Maintained
7415 F:      drivers/edac/mpc85xx_edac.[ch]
7416
7417 EDAC-PASEMI
7418 M:      Egor Martovetsky <egor@pasemi.com>
7419 L:      linux-edac@vger.kernel.org
7420 S:      Maintained
7421 F:      drivers/edac/pasemi_edac.c
7422
7423 EDAC-PND2
7424 M:      Tony Luck <tony.luck@intel.com>
7425 L:      linux-edac@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/edac/pnd2_edac.[ch]
7428
7429 EDAC-QCOM
7430 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7431 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7432 L:      linux-arm-msm@vger.kernel.org
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/qcom_edac.c
7436
7437 EDAC-R82600
7438 M:      Tim Small <tim@buttersideup.com>
7439 L:      linux-edac@vger.kernel.org
7440 S:      Maintained
7441 F:      drivers/edac/r82600_edac.c
7442
7443 EDAC-SBRIDGE
7444 M:      Tony Luck <tony.luck@intel.com>
7445 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7446 L:      linux-edac@vger.kernel.org
7447 S:      Maintained
7448 F:      drivers/edac/sb_edac.c
7449
7450 EDAC-SKYLAKE
7451 M:      Tony Luck <tony.luck@intel.com>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/edac/skx_*.[ch]
7455
7456 EDAC-TI
7457 M:      Tero Kristo <kristo@kernel.org>
7458 L:      linux-edac@vger.kernel.org
7459 S:      Odd Fixes
7460 F:      drivers/edac/ti_edac.c
7461
7462 EDIROL UA-101/UA-1000 DRIVER
7463 M:      Clemens Ladisch <clemens@ladisch.de>
7464 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7465 S:      Maintained
7466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7467 F:      sound/usb/misc/ua101.c
7468
7469 EFI TEST DRIVER
7470 M:      Ivan Hu <ivan.hu@canonical.com>
7471 M:      Ard Biesheuvel <ardb@kernel.org>
7472 L:      linux-efi@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/firmware/efi/test/
7475
7476 EFI VARIABLE FILESYSTEM
7477 M:      Matthew Garrett <matthew.garrett@nebula.com>
7478 M:      Jeremy Kerr <jk@ozlabs.org>
7479 M:      Ard Biesheuvel <ardb@kernel.org>
7480 L:      linux-efi@vger.kernel.org
7481 S:      Maintained
7482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7483 F:      fs/efivarfs/
7484
7485 EFIFB FRAMEBUFFER DRIVER
7486 M:      Peter Jones <pjones@redhat.com>
7487 L:      linux-fbdev@vger.kernel.org
7488 S:      Maintained
7489 F:      drivers/video/fbdev/efifb.c
7490
7491 EFS FILESYSTEM
7492 S:      Orphan
7493 W:      http://aeschi.ch.eu.org/efs/
7494 F:      fs/efs/
7495
7496 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7497 M:      Douglas Miller <dougmill@linux.ibm.com>
7498 L:      netdev@vger.kernel.org
7499 S:      Maintained
7500 F:      drivers/net/ethernet/ibm/ehea/
7501
7502 ELM327 CAN NETWORK DRIVER
7503 M:      Max Staudt <max@enpas.org>
7504 L:      linux-can@vger.kernel.org
7505 S:      Maintained
7506 F:      Documentation/networking/device_drivers/can/can327.rst
7507 F:      drivers/net/can/can327.c
7508
7509 EM28XX VIDEO4LINUX DRIVER
7510 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7511 L:      linux-media@vger.kernel.org
7512 S:      Maintained
7513 W:      https://linuxtv.org
7514 T:      git git://linuxtv.org/media_tree.git
7515 F:      Documentation/admin-guide/media/em28xx*
7516 F:      drivers/media/usb/em28xx/
7517
7518 EMBEDDED LINUX
7519 M:      Olivia Mackall <olivia@selenic.com>
7520 M:      David Woodhouse <dwmw2@infradead.org>
7521 L:      linux-embedded@vger.kernel.org
7522 S:      Maintained
7523
7524 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7525 M:      Adrian Hunter <adrian.hunter@intel.com>
7526 M:      Ritesh Harjani <riteshh@codeaurora.org>
7527 M:      Asutosh Das <asutoshd@codeaurora.org>
7528 L:      linux-mmc@vger.kernel.org
7529 S:      Maintained
7530 F:      drivers/mmc/host/cqhci*
7531
7532 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7533 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7534 L:      linux-scsi@vger.kernel.org
7535 S:      Supported
7536 W:      http://www.broadcom.com
7537 F:      drivers/scsi/be2iscsi/
7538
7539 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7540 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7541 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7542 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7543 L:      netdev@vger.kernel.org
7544 S:      Supported
7545 W:      http://www.emulex.com
7546 F:      drivers/net/ethernet/emulex/benet/
7547
7548 EMULEX ONECONNECT ROCE DRIVER
7549 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7550 L:      linux-rdma@vger.kernel.org
7551 S:      Odd Fixes
7552 W:      http://www.broadcom.com
7553 F:      drivers/infiniband/hw/ocrdma/
7554 F:      include/uapi/rdma/ocrdma-abi.h
7555
7556 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7557 M:      James Smart <james.smart@broadcom.com>
7558 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7559 L:      linux-scsi@vger.kernel.org
7560 S:      Supported
7561 W:      http://www.broadcom.com
7562 F:      drivers/scsi/lpfc/
7563
7564 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7565 M:      James Smart <james.smart@broadcom.com>
7566 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7567 L:      linux-scsi@vger.kernel.org
7568 L:      target-devel@vger.kernel.org
7569 S:      Supported
7570 W:      http://www.broadcom.com
7571 F:      drivers/scsi/elx/
7572
7573 ENE CB710 FLASH CARD READER DRIVER
7574 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7575 S:      Maintained
7576 F:      drivers/misc/cb710/
7577 F:      drivers/mmc/host/cb710-mmc.*
7578 F:      include/linux/cb710.h
7579
7580 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7581 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7582 S:      Maintained
7583 F:      drivers/media/rc/ene_ir.*
7584
7585 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7586 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7587 L:      linuxppc-dev@lists.ozlabs.org
7588 S:      Maintained
7589 F:      drivers/tty/ehv_bytechan.c
7590
7591 EPSON S1D13XXX FRAMEBUFFER DRIVER
7592 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7593 S:      Maintained
7594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7595 F:      drivers/video/fbdev/s1d13xxxfb.c
7596 F:      include/video/s1d13xxxfb.h
7597
7598 EROFS FILE SYSTEM
7599 M:      Gao Xiang <xiang@kernel.org>
7600 M:      Chao Yu <chao@kernel.org>
7601 R:      Yue Hu <huyue2@coolpad.com>
7602 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7603 L:      linux-erofs@lists.ozlabs.org
7604 S:      Maintained
7605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7606 F:      Documentation/filesystems/erofs.rst
7607 F:      fs/erofs/
7608 F:      include/trace/events/erofs.h
7609
7610 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7611 M:      Jeff Layton <jlayton@kernel.org>
7612 S:      Maintained
7613 F:      include/linux/errseq.h
7614 F:      lib/errseq.c
7615
7616 ESD CAN/USB DRIVERS
7617 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7618 R:      socketcan@esd.eu
7619 L:      linux-can@vger.kernel.org
7620 S:      Maintained
7621 F:      drivers/net/can/usb/esd_usb.c
7622
7623 ET131X NETWORK DRIVER
7624 M:      Mark Einon <mark.einon@gmail.com>
7625 S:      Odd Fixes
7626 F:      drivers/net/ethernet/agere/
7627
7628 ETAS ES58X CAN/USB DRIVER
7629 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7630 L:      linux-can@vger.kernel.org
7631 S:      Maintained
7632 F:      drivers/net/can/usb/etas_es58x/
7633
7634 ETHERNET BRIDGE
7635 M:      Roopa Prabhu <roopa@nvidia.com>
7636 M:      Nikolay Aleksandrov <razor@blackwall.org>
7637 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7638 L:      netdev@vger.kernel.org
7639 S:      Maintained
7640 W:      http://www.linuxfoundation.org/en/Net:Bridge
7641 F:      include/linux/netfilter_bridge/
7642 F:      net/bridge/
7643
7644 ETHERNET PHY LIBRARY
7645 M:      Andrew Lunn <andrew@lunn.ch>
7646 M:      Heiner Kallweit <hkallweit1@gmail.com>
7647 R:      Russell King <linux@armlinux.org.uk>
7648 L:      netdev@vger.kernel.org
7649 S:      Maintained
7650 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7651 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7652 F:      Documentation/devicetree/bindings/net/mdio*
7653 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7654 F:      Documentation/networking/phy.rst
7655 F:      drivers/net/mdio/
7656 F:      drivers/net/mdio/acpi_mdio.c
7657 F:      drivers/net/mdio/fwnode_mdio.c
7658 F:      drivers/net/mdio/of_mdio.c
7659 F:      drivers/net/pcs/
7660 F:      drivers/net/phy/
7661 F:      include/dt-bindings/net/qca-ar803x.h
7662 F:      include/linux/linkmode.h
7663 F:      include/linux/*mdio*.h
7664 F:      include/linux/mdio/*.h
7665 F:      include/linux/mii.h
7666 F:      include/linux/of_net.h
7667 F:      include/linux/phy.h
7668 F:      include/linux/phy_fixed.h
7669 F:      include/linux/platform_data/mdio-bcm-unimac.h
7670 F:      include/linux/platform_data/mdio-gpio.h
7671 F:      include/trace/events/mdio.h
7672 F:      include/uapi/linux/mdio.h
7673 F:      include/uapi/linux/mii.h
7674 F:      net/core/of_net.c
7675
7676 EXEC & BINFMT API
7677 R:      Eric Biederman <ebiederm@xmission.com>
7678 R:      Kees Cook <keescook@chromium.org>
7679 L:      linux-mm@kvack.org
7680 S:      Supported
7681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7682 F:      arch/alpha/kernel/binfmt_loader.c
7683 F:      fs/*binfmt_*.c
7684 F:      fs/exec.c
7685 F:      include/linux/binfmts.h
7686 F:      include/linux/elf.h
7687 F:      include/uapi/linux/binfmts.h
7688 F:      include/uapi/linux/elf.h
7689 F:      tools/testing/selftests/exec/
7690 N:      asm/elf.h
7691 N:      binfmt
7692
7693 EXFAT FILE SYSTEM
7694 M:      Namjae Jeon <linkinjeon@kernel.org>
7695 M:      Sungjong Seo <sj1557.seo@samsung.com>
7696 L:      linux-fsdevel@vger.kernel.org
7697 S:      Maintained
7698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7699 F:      fs/exfat/
7700
7701 EXT2 FILE SYSTEM
7702 M:      Jan Kara <jack@suse.com>
7703 L:      linux-ext4@vger.kernel.org
7704 S:      Maintained
7705 F:      Documentation/filesystems/ext2.rst
7706 F:      fs/ext2/
7707 F:      include/linux/ext2*
7708
7709 EXT4 FILE SYSTEM
7710 M:      "Theodore Ts'o" <tytso@mit.edu>
7711 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7712 L:      linux-ext4@vger.kernel.org
7713 S:      Maintained
7714 W:      http://ext4.wiki.kernel.org
7715 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7717 F:      Documentation/filesystems/ext4/
7718 F:      fs/ext4/
7719 F:      include/trace/events/ext4.h
7720
7721 Extended Verification Module (EVM)
7722 M:      Mimi Zohar <zohar@linux.ibm.com>
7723 L:      linux-integrity@vger.kernel.org
7724 S:      Supported
7725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7726 F:      security/integrity/evm/
7727 F:      security/integrity/
7728
7729 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7730 M:      Ard Biesheuvel <ardb@kernel.org>
7731 L:      linux-efi@vger.kernel.org
7732 S:      Maintained
7733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7734 F:      Documentation/admin-guide/efi-stub.rst
7735 F:      arch/*/include/asm/efi.h
7736 F:      arch/*/kernel/efi.c
7737 F:      arch/arm/boot/compressed/efi-header.S
7738 F:      arch/arm64/kernel/efi-entry.S
7739 F:      arch/x86/platform/efi/
7740 F:      drivers/firmware/efi/
7741 F:      include/linux/efi*.h
7742
7743 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7744 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7745 M:      Chanwoo Choi <cw00.choi@samsung.com>
7746 L:      linux-kernel@vger.kernel.org
7747 S:      Maintained
7748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7749 F:      Documentation/devicetree/bindings/extcon/
7750 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7751 F:      drivers/extcon/
7752 F:      include/linux/extcon.h
7753 F:      include/linux/extcon/
7754
7755 EXTRA BOOT CONFIG
7756 M:      Masami Hiramatsu <mhiramat@kernel.org>
7757 S:      Maintained
7758 F:      Documentation/admin-guide/bootconfig.rst
7759 F:      fs/proc/bootconfig.c
7760 F:      include/linux/bootconfig.h
7761 F:      lib/bootconfig-data.S
7762 F:      lib/bootconfig.c
7763 F:      tools/bootconfig/*
7764 F:      tools/bootconfig/scripts/*
7765
7766 EXYNOS DP DRIVER
7767 M:      Jingoo Han <jingoohan1@gmail.com>
7768 L:      dri-devel@lists.freedesktop.org
7769 S:      Maintained
7770 F:      drivers/gpu/drm/exynos/exynos_dp*
7771
7772 EXYNOS SYSMMU (IOMMU) driver
7773 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7774 L:      iommu@lists.linux.dev
7775 S:      Maintained
7776 F:      drivers/iommu/exynos-iommu.c
7777
7778 F2FS FILE SYSTEM
7779 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7780 M:      Chao Yu <chao@kernel.org>
7781 L:      linux-f2fs-devel@lists.sourceforge.net
7782 S:      Maintained
7783 W:      https://f2fs.wiki.kernel.org/
7784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7785 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7786 F:      Documentation/filesystems/f2fs.rst
7787 F:      fs/f2fs/
7788 F:      include/linux/f2fs_fs.h
7789 F:      include/trace/events/f2fs.h
7790 F:      include/uapi/linux/f2fs.h
7791
7792 F71805F HARDWARE MONITORING DRIVER
7793 M:      Jean Delvare <jdelvare@suse.com>
7794 L:      linux-hwmon@vger.kernel.org
7795 S:      Maintained
7796 F:      Documentation/hwmon/f71805f.rst
7797 F:      drivers/hwmon/f71805f.c
7798
7799 FADDR2LINE
7800 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7801 S:      Maintained
7802 F:      scripts/faddr2line
7803
7804 FAILOVER MODULE
7805 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7806 L:      netdev@vger.kernel.org
7807 S:      Supported
7808 F:      Documentation/networking/failover.rst
7809 F:      include/net/failover.h
7810 F:      net/core/failover.c
7811
7812 FANOTIFY
7813 M:      Jan Kara <jack@suse.cz>
7814 R:      Amir Goldstein <amir73il@gmail.com>
7815 R:      Matthew Bobrowski <repnop@google.com>
7816 L:      linux-fsdevel@vger.kernel.org
7817 S:      Maintained
7818 F:      fs/notify/fanotify/
7819 F:      include/linux/fanotify.h
7820 F:      include/uapi/linux/fanotify.h
7821
7822 FARSYNC SYNCHRONOUS DRIVER
7823 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7824 S:      Supported
7825 W:      http://www.farsite.co.uk/
7826 F:      drivers/net/wan/farsync.*
7827
7828 FAULT INJECTION SUPPORT
7829 M:      Akinobu Mita <akinobu.mita@gmail.com>
7830 S:      Supported
7831 F:      Documentation/fault-injection/
7832 F:      lib/fault-inject.c
7833
7834 FBTFT Framebuffer drivers
7835 L:      dri-devel@lists.freedesktop.org
7836 L:      linux-fbdev@vger.kernel.org
7837 S:      Orphan
7838 F:      drivers/staging/fbtft/
7839
7840 FC0011 TUNER DRIVER
7841 M:      Michael Buesch <m@bues.ch>
7842 L:      linux-media@vger.kernel.org
7843 S:      Maintained
7844 F:      drivers/media/tuners/fc0011.c
7845 F:      drivers/media/tuners/fc0011.h
7846
7847 FC2580 MEDIA DRIVER
7848 M:      Antti Palosaari <crope@iki.fi>
7849 L:      linux-media@vger.kernel.org
7850 S:      Maintained
7851 W:      https://linuxtv.org
7852 W:      http://palosaari.fi/linux/
7853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7854 T:      git git://linuxtv.org/anttip/media_tree.git
7855 F:      drivers/media/tuners/fc2580*
7856
7857 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7858 M:      Hannes Reinecke <hare@suse.de>
7859 L:      linux-scsi@vger.kernel.org
7860 S:      Supported
7861 W:      www.Open-FCoE.org
7862 F:      drivers/scsi/fcoe/
7863 F:      drivers/scsi/libfc/
7864 F:      include/scsi/fc/
7865 F:      include/scsi/libfc.h
7866 F:      include/scsi/libfcoe.h
7867 F:      include/uapi/scsi/fc/
7868
7869 FILE LOCKING (flock() and fcntl()/lockf())
7870 M:      Jeff Layton <jlayton@kernel.org>
7871 M:      Chuck Lever <chuck.lever@oracle.com>
7872 L:      linux-fsdevel@vger.kernel.org
7873 S:      Maintained
7874 F:      fs/fcntl.c
7875 F:      fs/locks.c
7876 F:      include/linux/fcntl.h
7877 F:      include/uapi/linux/fcntl.h
7878
7879 FILESYSTEM DIRECT ACCESS (DAX)
7880 M:      Dan Williams <dan.j.williams@intel.com>
7881 R:      Matthew Wilcox <willy@infradead.org>
7882 R:      Jan Kara <jack@suse.cz>
7883 L:      linux-fsdevel@vger.kernel.org
7884 L:      nvdimm@lists.linux.dev
7885 S:      Supported
7886 F:      fs/dax.c
7887 F:      include/linux/dax.h
7888 F:      include/trace/events/fs_dax.h
7889
7890 FILESYSTEMS (VFS and infrastructure)
7891 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7892 L:      linux-fsdevel@vger.kernel.org
7893 S:      Maintained
7894 F:      fs/*
7895 F:      include/linux/fs.h
7896 F:      include/linux/fs_types.h
7897 F:      include/uapi/linux/fs.h
7898 F:      include/uapi/linux/openat2.h
7899
7900 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7901 M:      Riku Voipio <riku.voipio@iki.fi>
7902 L:      linux-hwmon@vger.kernel.org
7903 S:      Maintained
7904 F:      drivers/hwmon/f75375s.c
7905 F:      include/linux/f75375s.h
7906
7907 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7908 M:      Clemens Ladisch <clemens@ladisch.de>
7909 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7910 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7911 S:      Maintained
7912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7913 F:      include/uapi/sound/firewire.h
7914 F:      sound/firewire/
7915
7916 FIREWIRE MEDIA DRIVERS (firedtv)
7917 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7918 L:      linux-media@vger.kernel.org
7919 L:      linux1394-devel@lists.sourceforge.net
7920 S:      Maintained
7921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7922 F:      drivers/media/firewire/
7923
7924 FIREWIRE SBP-2 TARGET
7925 M:      Chris Boot <bootc@bootc.net>
7926 L:      linux-scsi@vger.kernel.org
7927 L:      target-devel@vger.kernel.org
7928 L:      linux1394-devel@lists.sourceforge.net
7929 S:      Maintained
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7931 F:      drivers/target/sbp/
7932
7933 FIREWIRE SUBSYSTEM
7934 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7935 L:      linux1394-devel@lists.sourceforge.net
7936 S:      Maintained
7937 W:      http://ieee1394.wiki.kernel.org/
7938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7939 F:      drivers/firewire/
7940 F:      include/linux/firewire.h
7941 F:      include/uapi/linux/firewire*.h
7942 F:      tools/firewire/
7943
7944 FIRMWARE FRAMEWORK FOR ARMV8-A
7945 M:      Sudeep Holla <sudeep.holla@arm.com>
7946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7947 S:      Maintained
7948 F:      drivers/firmware/arm_ffa/
7949 F:      include/linux/arm_ffa.h
7950
7951 FIRMWARE LOADER (request_firmware)
7952 M:      Luis Chamberlain <mcgrof@kernel.org>
7953 M:      Russ Weight <russell.h.weight@intel.com>
7954 L:      linux-kernel@vger.kernel.org
7955 S:      Maintained
7956 F:      Documentation/firmware_class/
7957 F:      drivers/base/firmware_loader/
7958 F:      include/linux/firmware.h
7959
7960 FLEXTIMER FTM-QUADDEC DRIVER
7961 M:      Patrick Havelange <patrick.havelange@essensium.com>
7962 L:      linux-iio@vger.kernel.org
7963 S:      Maintained
7964 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7965 F:      drivers/counter/ftm-quaddec.c
7966
7967 FLOPPY DRIVER
7968 M:      Denis Efremov <efremov@linux.com>
7969 L:      linux-block@vger.kernel.org
7970 S:      Odd Fixes
7971 F:      drivers/block/floppy.c
7972
7973 FLYSKY FSIA6B RC RECEIVER
7974 M:      Markus Koch <markus@notsyncing.net>
7975 L:      linux-input@vger.kernel.org
7976 S:      Maintained
7977 F:      drivers/input/joystick/fsia6b.c
7978
7979 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7980 M:      Geoffrey D. Bennett <g@b4.vu>
7981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7982 S:      Maintained
7983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7984 F:      sound/usb/mixer_scarlett_gen2.c
7985
7986 FORCEDETH GIGABIT ETHERNET DRIVER
7987 M:      Rain River <rain.1986.08.12@gmail.com>
7988 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7989 L:      netdev@vger.kernel.org
7990 S:      Maintained
7991 F:      drivers/net/ethernet/nvidia/*
7992
7993 FORTIFY_SOURCE
7994 M:      Kees Cook <keescook@chromium.org>
7995 L:      linux-hardening@vger.kernel.org
7996 S:      Supported
7997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
7998 F:      include/linux/fortify-string.h
7999 F:      lib/test_fortify/*
8000 F:      scripts/test_fortify.sh
8001 K:      \b__NO_FORTIFY\b
8002
8003 FPGA DFL DRIVERS
8004 M:      Wu Hao <hao.wu@intel.com>
8005 R:      Tom Rix <trix@redhat.com>
8006 L:      linux-fpga@vger.kernel.org
8007 S:      Maintained
8008 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8009 F:      Documentation/fpga/dfl.rst
8010 F:      drivers/fpga/dfl*
8011 F:      drivers/uio/uio_dfl.c
8012 F:      include/linux/dfl.h
8013 F:      include/uapi/linux/fpga-dfl.h
8014
8015 FPGA MANAGER FRAMEWORK
8016 M:      Moritz Fischer <mdf@kernel.org>
8017 M:      Wu Hao <hao.wu@intel.com>
8018 M:      Xu Yilun <yilun.xu@intel.com>
8019 R:      Tom Rix <trix@redhat.com>
8020 L:      linux-fpga@vger.kernel.org
8021 S:      Maintained
8022 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8024 F:      Documentation/devicetree/bindings/fpga/
8025 F:      Documentation/driver-api/fpga/
8026 F:      Documentation/fpga/
8027 F:      drivers/fpga/
8028 F:      include/linux/fpga/
8029
8030 INTEL MAX10 BMC SECURE UPDATES
8031 M:      Russ Weight <russell.h.weight@intel.com>
8032 L:      linux-fpga@vger.kernel.org
8033 S:      Maintained
8034 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8035 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8036
8037 MICROCHIP POLARFIRE FPGA DRIVERS
8038 M:      Conor Dooley <conor.dooley@microchip.com>
8039 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8040 L:      linux-fpga@vger.kernel.org
8041 S:      Supported
8042 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8043 F:      drivers/fpga/microchip-spi.c
8044
8045 FPU EMULATOR
8046 M:      Bill Metzenthen <billm@melbpc.org.au>
8047 S:      Maintained
8048 W:      http://floatingpoint.sourceforge.net/emulator/index.html
8049 F:      arch/x86/math-emu/
8050
8051 FRAMEBUFFER CORE
8052 M:      Daniel Vetter <daniel@ffwll.ch>
8053 F:      drivers/video/fbdev/core/
8054 S:      Odd Fixes
8055 T:      git git://anongit.freedesktop.org/drm/drm-misc
8056
8057 FRAMEBUFFER LAYER
8058 M:      Helge Deller <deller@gmx.de>
8059 L:      linux-fbdev@vger.kernel.org
8060 L:      dri-devel@lists.freedesktop.org
8061 S:      Maintained
8062 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8064 F:      Documentation/fb/
8065 F:      drivers/video/
8066 F:      include/linux/fb.h
8067 F:      include/uapi/linux/fb.h
8068 F:      include/uapi/video/
8069 F:      include/video/
8070
8071 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8072 M:      Horia Geantă <horia.geanta@nxp.com>
8073 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8074 M:      Gaurav Jain <gaurav.jain@nxp.com>
8075 L:      linux-crypto@vger.kernel.org
8076 S:      Maintained
8077 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8078 F:      drivers/crypto/caam/
8079
8080 FREESCALE COLDFIRE M5441X MMC DRIVER
8081 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8082 L:      linux-mmc@vger.kernel.org
8083 S:      Maintained
8084 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8085 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8086
8087 FREESCALE DIU FRAMEBUFFER DRIVER
8088 M:      Timur Tabi <timur@kernel.org>
8089 L:      linux-fbdev@vger.kernel.org
8090 S:      Maintained
8091 F:      drivers/video/fbdev/fsl-diu-fb.*
8092
8093 FREESCALE DMA DRIVER
8094 M:      Li Yang <leoyang.li@nxp.com>
8095 M:      Zhang Wei <zw@zh-kernel.org>
8096 L:      linuxppc-dev@lists.ozlabs.org
8097 S:      Maintained
8098 F:      drivers/dma/fsldma.*
8099
8100 FREESCALE DSPI DRIVER
8101 M:      Vladimir Oltean <olteanv@gmail.com>
8102 L:      linux-spi@vger.kernel.org
8103 S:      Maintained
8104 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8105 F:      drivers/spi/spi-fsl-dspi.c
8106 F:      include/linux/spi/spi-fsl-dspi.h
8107
8108 FREESCALE ENETC ETHERNET DRIVERS
8109 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8110 L:      netdev@vger.kernel.org
8111 S:      Maintained
8112 F:      drivers/net/ethernet/freescale/enetc/
8113
8114 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8115 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8116 L:      netdev@vger.kernel.org
8117 S:      Maintained
8118 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8119 F:      drivers/net/ethernet/freescale/gianfar*
8120
8121 FREESCALE GPMI NAND DRIVER
8122 M:      Han Xu <han.xu@nxp.com>
8123 L:      linux-mtd@lists.infradead.org
8124 S:      Maintained
8125 F:      drivers/mtd/nand/raw/gpmi-nand/*
8126
8127 FREESCALE I2C CPM DRIVER
8128 M:      Jochen Friedrich <jochen@scram.de>
8129 L:      linuxppc-dev@lists.ozlabs.org
8130 L:      linux-i2c@vger.kernel.org
8131 S:      Maintained
8132 F:      drivers/i2c/busses/i2c-cpm.c
8133
8134 FREESCALE IMX / MXC FEC DRIVER
8135 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
8136 L:      netdev@vger.kernel.org
8137 S:      Maintained
8138 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8139 F:      drivers/net/ethernet/freescale/fec.h
8140 F:      drivers/net/ethernet/freescale/fec_main.c
8141 F:      drivers/net/ethernet/freescale/fec_ptp.c
8142
8143 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8144 M:      Sascha Hauer <s.hauer@pengutronix.de>
8145 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8146 L:      linux-fbdev@vger.kernel.org
8147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8148 S:      Maintained
8149 F:      drivers/video/fbdev/imxfb.c
8150
8151 FREESCALE IMX DDR PMU DRIVER
8152 M:      Frank Li <Frank.li@nxp.com>
8153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8154 S:      Maintained
8155 F:      Documentation/admin-guide/perf/imx-ddr.rst
8156 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8157 F:      drivers/perf/fsl_imx8_ddr_perf.c
8158
8159 FREESCALE IMX I2C DRIVER
8160 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8161 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8162 L:      linux-i2c@vger.kernel.org
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8165 F:      drivers/i2c/busses/i2c-imx.c
8166
8167 FREESCALE IMX LPI2C DRIVER
8168 M:      Dong Aisheng <aisheng.dong@nxp.com>
8169 L:      linux-i2c@vger.kernel.org
8170 L:      linux-imx@nxp.com
8171 S:      Maintained
8172 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8173 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8174
8175 FREESCALE MPC I2C DRIVER
8176 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8177 L:      linux-i2c@vger.kernel.org
8178 S:      Maintained
8179 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8180 F:      drivers/i2c/busses/i2c-mpc.c
8181
8182 FREESCALE QORIQ DPAA ETHERNET DRIVER
8183 M:      Madalin Bucur <madalin.bucur@nxp.com>
8184 L:      netdev@vger.kernel.org
8185 S:      Maintained
8186 F:      drivers/net/ethernet/freescale/dpaa
8187
8188 FREESCALE QORIQ DPAA FMAN DRIVER
8189 M:      Madalin Bucur <madalin.bucur@nxp.com>
8190 L:      netdev@vger.kernel.org
8191 S:      Maintained
8192 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8193 F:      drivers/net/ethernet/freescale/fman
8194
8195 FREESCALE QORIQ PTP CLOCK DRIVER
8196 M:      Yangbo Lu <yangbo.lu@nxp.com>
8197 L:      netdev@vger.kernel.org
8198 S:      Maintained
8199 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8200 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8201 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8202 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8203 F:      drivers/ptp/ptp_qoriq.c
8204 F:      drivers/ptp/ptp_qoriq_debugfs.c
8205 F:      include/linux/fsl/ptp_qoriq.h
8206
8207 FREESCALE QUAD SPI DRIVER
8208 M:      Han Xu <han.xu@nxp.com>
8209 L:      linux-spi@vger.kernel.org
8210 S:      Maintained
8211 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8212 F:      drivers/spi/spi-fsl-qspi.c
8213
8214 FREESCALE QUICC ENGINE LIBRARY
8215 M:      Qiang Zhao <qiang.zhao@nxp.com>
8216 L:      linuxppc-dev@lists.ozlabs.org
8217 S:      Maintained
8218 F:      drivers/soc/fsl/qe/
8219 F:      include/soc/fsl/qe/
8220
8221 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8222 M:      Li Yang <leoyang.li@nxp.com>
8223 L:      netdev@vger.kernel.org
8224 L:      linuxppc-dev@lists.ozlabs.org
8225 S:      Maintained
8226 F:      drivers/net/ethernet/freescale/ucc_geth*
8227
8228 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8229 M:      Zhao Qiang <qiang.zhao@nxp.com>
8230 L:      netdev@vger.kernel.org
8231 L:      linuxppc-dev@lists.ozlabs.org
8232 S:      Maintained
8233 F:      drivers/net/wan/fsl_ucc_hdlc*
8234
8235 FREESCALE QUICC ENGINE UCC UART DRIVER
8236 M:      Timur Tabi <timur@kernel.org>
8237 L:      linuxppc-dev@lists.ozlabs.org
8238 S:      Maintained
8239 F:      drivers/tty/serial/ucc_uart.c
8240
8241 FREESCALE SOC DRIVERS
8242 M:      Li Yang <leoyang.li@nxp.com>
8243 L:      linuxppc-dev@lists.ozlabs.org
8244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8245 S:      Maintained
8246 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8247 F:      Documentation/devicetree/bindings/soc/fsl/
8248 F:      drivers/soc/fsl/
8249 F:      include/linux/fsl/
8250 F:      include/soc/fsl/
8251
8252 FREESCALE SOC FS_ENET DRIVER
8253 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8254 L:      linuxppc-dev@lists.ozlabs.org
8255 L:      netdev@vger.kernel.org
8256 S:      Maintained
8257 F:      drivers/net/ethernet/freescale/fs_enet/
8258 F:      include/linux/fs_enet_pd.h
8259
8260 FREESCALE SOC SOUND DRIVERS
8261 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8262 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8263 R:      Fabio Estevam <festevam@gmail.com>
8264 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8265 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8266 L:      linuxppc-dev@lists.ozlabs.org
8267 S:      Maintained
8268 F:      sound/soc/fsl/fsl*
8269 F:      sound/soc/fsl/imx*
8270 F:      sound/soc/fsl/mpc8610_hpcd.c
8271
8272 FREESCALE USB PERIPHERAL DRIVERS
8273 M:      Li Yang <leoyang.li@nxp.com>
8274 L:      linux-usb@vger.kernel.org
8275 L:      linuxppc-dev@lists.ozlabs.org
8276 S:      Maintained
8277 F:      drivers/usb/gadget/udc/fsl*
8278
8279 FREESCALE USB PHY DRIVER
8280 M:      Ran Wang <ran.wang_1@nxp.com>
8281 L:      linux-usb@vger.kernel.org
8282 L:      linuxppc-dev@lists.ozlabs.org
8283 S:      Maintained
8284 F:      drivers/usb/phy/phy-fsl-usb*
8285
8286 FREEVXFS FILESYSTEM
8287 M:      Christoph Hellwig <hch@infradead.org>
8288 S:      Maintained
8289 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8290 F:      fs/freevxfs/
8291
8292 FREEZER
8293 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8294 M:      Pavel Machek <pavel@ucw.cz>
8295 L:      linux-pm@vger.kernel.org
8296 S:      Supported
8297 F:      Documentation/power/freezing-of-tasks.rst
8298 F:      include/linux/freezer.h
8299 F:      kernel/freezer.c
8300
8301 FRONTSWAP API
8302 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8303 L:      linux-kernel@vger.kernel.org
8304 S:      Maintained
8305 F:      include/linux/frontswap.h
8306 F:      mm/frontswap.c
8307
8308 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8309 M:      David Howells <dhowells@redhat.com>
8310 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8311 S:      Supported
8312 F:      Documentation/filesystems/caching/
8313 F:      fs/fscache/
8314 F:      include/linux/fscache*.h
8315
8316 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8317 M:      Theodore Y. Ts'o <tytso@mit.edu>
8318 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8319 M:      Eric Biggers <ebiggers@kernel.org>
8320 L:      linux-fscrypt@vger.kernel.org
8321 S:      Supported
8322 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8323 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8324 F:      Documentation/filesystems/fscrypt.rst
8325 F:      fs/crypto/
8326 F:      include/linux/fscrypt*.h
8327 F:      include/uapi/linux/fscrypt.h
8328
8329 FSI SUBSYSTEM
8330 M:      Jeremy Kerr <jk@ozlabs.org>
8331 M:      Joel Stanley <joel@jms.id.au>
8332 R:      Alistar Popple <alistair@popple.id.au>
8333 R:      Eddie James <eajames@linux.ibm.com>
8334 L:      linux-fsi@lists.ozlabs.org
8335 S:      Supported
8336 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8338 F:      drivers/fsi/
8339 F:      include/linux/fsi*.h
8340 F:      include/trace/events/fsi*.h
8341
8342 FSI-ATTACHED I2C DRIVER
8343 M:      Eddie James <eajames@linux.ibm.com>
8344 L:      linux-i2c@vger.kernel.org
8345 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8346 S:      Maintained
8347 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8348 F:      drivers/i2c/busses/i2c-fsi.c
8349
8350 FSI-ATTACHED SPI DRIVER
8351 M:      Eddie James <eajames@linux.ibm.com>
8352 L:      linux-spi@vger.kernel.org
8353 S:      Maintained
8354 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8355 F:      drivers/spi/spi-fsi.c
8356
8357 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8358 M:      Jan Kara <jack@suse.cz>
8359 R:      Amir Goldstein <amir73il@gmail.com>
8360 L:      linux-fsdevel@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8363 F:      fs/notify/
8364 F:      include/linux/fsnotify*.h
8365
8366 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8367 M:      Eric Biggers <ebiggers@kernel.org>
8368 M:      Theodore Y. Ts'o <tytso@mit.edu>
8369 L:      linux-fscrypt@vger.kernel.org
8370 S:      Supported
8371 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8372 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8373 F:      Documentation/filesystems/fsverity.rst
8374 F:      fs/verity/
8375 F:      include/linux/fsverity.h
8376 F:      include/uapi/linux/fsverity.h
8377
8378 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8379 M:      Michael Zaidman <michael.zaidman@gmail.com>
8380 L:      linux-i2c@vger.kernel.org
8381 L:      linux-input@vger.kernel.org
8382 S:      Maintained
8383 F:      drivers/hid/hid-ft260.c
8384
8385 FUJITSU LAPTOP EXTRAS
8386 M:      Jonathan Woithe <jwoithe@just42.net>
8387 L:      platform-driver-x86@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/platform/x86/fujitsu-laptop.c
8390
8391 FUJITSU M-5MO LS CAMERA ISP DRIVER
8392 M:      Kyungmin Park <kyungmin.park@samsung.com>
8393 M:      Heungjun Kim <riverful.kim@samsung.com>
8394 L:      linux-media@vger.kernel.org
8395 S:      Maintained
8396 F:      drivers/media/i2c/m5mols/
8397 F:      include/media/i2c/m5mols.h
8398
8399 FUJITSU TABLET EXTRAS
8400 M:      Robert Gerlach <khnz@gmx.de>
8401 L:      platform-driver-x86@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/platform/x86/fujitsu-tablet.c
8404
8405 FUNGIBLE ETHERNET DRIVERS
8406 M:      Dimitris Michailidis <dmichail@fungible.com>
8407 L:      netdev@vger.kernel.org
8408 S:      Supported
8409 F:      drivers/net/ethernet/fungible/
8410
8411 FUSE: FILESYSTEM IN USERSPACE
8412 M:      Miklos Szeredi <miklos@szeredi.hu>
8413 L:      linux-fsdevel@vger.kernel.org
8414 S:      Maintained
8415 W:      https://github.com/libfuse/
8416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8417 F:      Documentation/filesystems/fuse.rst
8418 F:      fs/fuse/
8419 F:      include/uapi/linux/fuse.h
8420
8421 FUTEX SUBSYSTEM
8422 M:      Thomas Gleixner <tglx@linutronix.de>
8423 M:      Ingo Molnar <mingo@redhat.com>
8424 R:      Peter Zijlstra <peterz@infradead.org>
8425 R:      Darren Hart <dvhart@infradead.org>
8426 R:      Davidlohr Bueso <dave@stgolabs.net>
8427 R:      André Almeida <andrealmeid@igalia.com>
8428 L:      linux-kernel@vger.kernel.org
8429 S:      Maintained
8430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8431 F:      Documentation/locking/*futex*
8432 F:      include/asm-generic/futex.h
8433 F:      include/linux/futex.h
8434 F:      include/uapi/linux/futex.h
8435 F:      kernel/futex/*
8436 F:      tools/perf/bench/futex*
8437 F:      tools/testing/selftests/futex/
8438
8439 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8440 M:      Tim Harvey <tharvey@gateworks.com>
8441 M:      Robert Jones <rjones@gateworks.com>
8442 S:      Maintained
8443 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8444 F:      drivers/mfd/gateworks-gsc.c
8445 F:      include/linux/mfd/gsc.h
8446 F:      Documentation/hwmon/gsc-hwmon.rst
8447 F:      drivers/hwmon/gsc-hwmon.c
8448 F:      include/linux/platform_data/gsc_hwmon.h
8449
8450 GCC PLUGINS
8451 M:      Kees Cook <keescook@chromium.org>
8452 L:      linux-hardening@vger.kernel.org
8453 S:      Maintained
8454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8455 F:      Documentation/kbuild/gcc-plugins.rst
8456 F:      scripts/Makefile.gcc-plugins
8457 F:      scripts/gcc-plugins/
8458
8459 GCOV BASED KERNEL PROFILING
8460 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8461 S:      Maintained
8462 F:      Documentation/dev-tools/gcov.rst
8463 F:      kernel/gcov/
8464
8465 GDB KERNEL DEBUGGING HELPER SCRIPTS
8466 M:      Jan Kiszka <jan.kiszka@siemens.com>
8467 M:      Kieran Bingham <kbingham@kernel.org>
8468 S:      Supported
8469 F:      scripts/gdb/
8470
8471 GEMINI CRYPTO DRIVER
8472 M:      Corentin Labbe <clabbe@baylibre.com>
8473 L:      linux-crypto@vger.kernel.org
8474 S:      Maintained
8475 F:      drivers/crypto/gemini/
8476
8477 GEMTEK FM RADIO RECEIVER DRIVER
8478 M:      Hans Verkuil <hverkuil@xs4all.nl>
8479 L:      linux-media@vger.kernel.org
8480 S:      Maintained
8481 W:      https://linuxtv.org
8482 T:      git git://linuxtv.org/media_tree.git
8483 F:      drivers/media/radio/radio-gemtek*
8484
8485 GENERIC ARCHITECTURE TOPOLOGY
8486 M:      Sudeep Holla <sudeep.holla@arm.com>
8487 L:      linux-kernel@vger.kernel.org
8488 S:      Maintained
8489 F:      drivers/base/arch_topology.c
8490 F:      include/linux/arch_topology.h
8491
8492 GENERIC ENTRY CODE
8493 M:      Thomas Gleixner <tglx@linutronix.de>
8494 M:      Peter Zijlstra <peterz@infradead.org>
8495 M:      Andy Lutomirski <luto@kernel.org>
8496 L:      linux-kernel@vger.kernel.org
8497 S:      Maintained
8498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8499 F:      include/linux/entry-common.h
8500 F:      include/linux/entry-kvm.h
8501 F:      kernel/entry/
8502
8503 GENERIC GPIO I2C DRIVER
8504 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8505 S:      Supported
8506 F:      drivers/i2c/busses/i2c-gpio.c
8507 F:      include/linux/platform_data/i2c-gpio.h
8508
8509 GENERIC GPIO I2C MULTIPLEXER DRIVER
8510 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8511 L:      linux-i2c@vger.kernel.org
8512 S:      Supported
8513 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8514 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8515 F:      include/linux/platform_data/i2c-mux-gpio.h
8516
8517 GENERIC HDLC (WAN) DRIVERS
8518 M:      Krzysztof Halasa <khc@pm.waw.pl>
8519 S:      Maintained
8520 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8521 F:      drivers/net/wan/c101.c
8522 F:      drivers/net/wan/hd6457*
8523 F:      drivers/net/wan/hdlc*
8524 F:      drivers/net/wan/n2.c
8525 F:      drivers/net/wan/pc300too.c
8526 F:      drivers/net/wan/pci200syn.c
8527 F:      drivers/net/wan/wanxl*
8528
8529 GENERIC INCLUDE/ASM HEADER FILES
8530 M:      Arnd Bergmann <arnd@arndb.de>
8531 L:      linux-arch@vger.kernel.org
8532 S:      Maintained
8533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8534 F:      include/asm-generic/
8535 F:      include/uapi/asm-generic/
8536
8537 GENERIC PHY FRAMEWORK
8538 M:      Kishon Vijay Abraham I <kishon@ti.com>
8539 M:      Vinod Koul <vkoul@kernel.org>
8540 L:      linux-phy@lists.infradead.org
8541 S:      Supported
8542 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8544 F:      Documentation/devicetree/bindings/phy/
8545 F:      drivers/phy/
8546 F:      include/dt-bindings/phy/
8547 F:      include/linux/phy/
8548
8549 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8550 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8551 S:      Supported
8552 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8553
8554 GENERIC PM DOMAINS
8555 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8556 M:      Kevin Hilman <khilman@kernel.org>
8557 M:      Ulf Hansson <ulf.hansson@linaro.org>
8558 L:      linux-pm@vger.kernel.org
8559 S:      Supported
8560 F:      Documentation/devicetree/bindings/power/power?domain*
8561 F:      drivers/base/power/domain*.c
8562 F:      include/linux/pm_domain.h
8563
8564 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8565 M:      Eugen Hristev <eugen.hristev@microchip.com>
8566 L:      linux-input@vger.kernel.org
8567 S:      Maintained
8568 F:      drivers/input/touchscreen/resistive-adc-touch.c
8569
8570 GENERIC STRING LIBRARY
8571 R:      Andy Shevchenko <andy@kernel.org>
8572 S:      Maintained
8573 F:      lib/string.c
8574 F:      lib/string_helpers.c
8575 F:      lib/test_string.c
8576 F:      lib/test-string_helpers.c
8577
8578 GENERIC UIO DRIVER FOR PCI DEVICES
8579 M:      "Michael S. Tsirkin" <mst@redhat.com>
8580 L:      kvm@vger.kernel.org
8581 S:      Supported
8582 F:      drivers/uio/uio_pci_generic.c
8583
8584 GENERIC VDSO LIBRARY
8585 M:      Andy Lutomirski <luto@kernel.org>
8586 M:      Thomas Gleixner <tglx@linutronix.de>
8587 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8588 L:      linux-kernel@vger.kernel.org
8589 S:      Maintained
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8591 F:      include/asm-generic/vdso/vsyscall.h
8592 F:      include/vdso/
8593 F:      kernel/time/vsyscall.c
8594 F:      lib/vdso/
8595
8596 GENWQE (IBM Generic Workqueue Card)
8597 M:      Frank Haverkamp <haver@linux.ibm.com>
8598 S:      Supported
8599 F:      drivers/misc/genwqe/
8600
8601 GET_MAINTAINER SCRIPT
8602 M:      Joe Perches <joe@perches.com>
8603 S:      Maintained
8604 F:      scripts/get_maintainer.pl
8605
8606 GFS2 FILE SYSTEM
8607 M:      Bob Peterson <rpeterso@redhat.com>
8608 M:      Andreas Gruenbacher <agruenba@redhat.com>
8609 L:      cluster-devel@redhat.com
8610 S:      Supported
8611 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8613 F:      Documentation/filesystems/gfs2*
8614 F:      fs/gfs2/
8615 F:      include/uapi/linux/gfs2_ondisk.h
8616
8617 GIGABYTE WMI DRIVER
8618 M:      Thomas Weißschuh <thomas@weissschuh.net>
8619 L:      platform-driver-x86@vger.kernel.org
8620 S:      Maintained
8621 F:      drivers/platform/x86/gigabyte-wmi.c
8622
8623 GNSS SUBSYSTEM
8624 M:      Johan Hovold <johan@kernel.org>
8625 S:      Maintained
8626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8627 F:      Documentation/ABI/testing/sysfs-class-gnss
8628 F:      Documentation/devicetree/bindings/gnss/
8629 F:      drivers/gnss/
8630 F:      include/linux/gnss.h
8631
8632 GO7007 MPEG CODEC
8633 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8634 L:      linux-media@vger.kernel.org
8635 S:      Maintained
8636 F:      drivers/media/usb/go7007/
8637
8638 GOODIX TOUCHSCREEN
8639 M:      Bastien Nocera <hadess@hadess.net>
8640 M:      Hans de Goede <hdegoede@redhat.com>
8641 L:      linux-input@vger.kernel.org
8642 S:      Maintained
8643 F:      drivers/input/touchscreen/goodix*
8644
8645 GOOGLE ETHERNET DRIVERS
8646 M:      Jeroen de Borst <jeroendb@google.com>
8647 R:      Catherine Sullivan <csully@google.com>
8648 R:      David Awogbemila <awogbemila@google.com>
8649 L:      netdev@vger.kernel.org
8650 S:      Supported
8651 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8652 F:      drivers/net/ethernet/google
8653
8654 GPD POCKET FAN DRIVER
8655 M:      Hans de Goede <hdegoede@redhat.com>
8656 L:      platform-driver-x86@vger.kernel.org
8657 S:      Maintained
8658 F:      drivers/platform/x86/gpd-pocket-fan.c
8659
8660 GPIO ACPI SUPPORT
8661 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8662 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8663 L:      linux-gpio@vger.kernel.org
8664 L:      linux-acpi@vger.kernel.org
8665 S:      Supported
8666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8667 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8668 F:      drivers/gpio/gpiolib-acpi.c
8669 F:      drivers/gpio/gpiolib-acpi.h
8670
8671 GPIO AGGREGATOR
8672 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8673 L:      linux-gpio@vger.kernel.org
8674 S:      Supported
8675 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8676 F:      drivers/gpio/gpio-aggregator.c
8677
8678 GPIO IR Transmitter
8679 M:      Sean Young <sean@mess.org>
8680 L:      linux-media@vger.kernel.org
8681 S:      Maintained
8682 F:      drivers/media/rc/gpio-ir-tx.c
8683
8684 GPIO MOCKUP DRIVER
8685 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8686 L:      linux-gpio@vger.kernel.org
8687 S:      Maintained
8688 F:      drivers/gpio/gpio-mockup.c
8689 F:      tools/testing/selftests/gpio/
8690
8691 GPIO REGMAP
8692 R:      Michael Walle <michael@walle.cc>
8693 S:      Maintained
8694 F:      drivers/gpio/gpio-regmap.c
8695 F:      include/linux/gpio/regmap.h
8696
8697 GPIO SUBSYSTEM
8698 M:      Linus Walleij <linus.walleij@linaro.org>
8699 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8700 L:      linux-gpio@vger.kernel.org
8701 S:      Maintained
8702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8703 F:      Documentation/ABI/obsolete/sysfs-gpio
8704 F:      Documentation/ABI/testing/gpio-cdev
8705 F:      Documentation/admin-guide/gpio/
8706 F:      Documentation/devicetree/bindings/gpio/
8707 F:      Documentation/driver-api/gpio/
8708 F:      drivers/gpio/
8709 F:      include/asm-generic/gpio.h
8710 F:      include/dt-bindings/gpio/
8711 F:      include/linux/gpio.h
8712 F:      include/linux/gpio/
8713 F:      include/linux/of_gpio.h
8714 F:      include/uapi/linux/gpio.h
8715 F:      tools/gpio/
8716
8717 GRE DEMULTIPLEXER DRIVER
8718 M:      Dmitry Kozlov <xeb@mail.ru>
8719 L:      netdev@vger.kernel.org
8720 S:      Maintained
8721 F:      include/net/gre.h
8722 F:      net/ipv4/gre_demux.c
8723 F:      net/ipv4/gre_offload.c
8724
8725 GRETH 10/100/1G Ethernet MAC device driver
8726 M:      Andreas Larsson <andreas@gaisler.com>
8727 L:      netdev@vger.kernel.org
8728 S:      Maintained
8729 F:      drivers/net/ethernet/aeroflex/
8730
8731 GREYBUS AUDIO PROTOCOLS DRIVERS
8732 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8733 M:      Mark Greer <mgreer@animalcreek.com>
8734 S:      Maintained
8735 F:      drivers/staging/greybus/audio_apbridgea.c
8736 F:      drivers/staging/greybus/audio_apbridgea.h
8737 F:      drivers/staging/greybus/audio_codec.c
8738 F:      drivers/staging/greybus/audio_codec.h
8739 F:      drivers/staging/greybus/audio_gb.c
8740 F:      drivers/staging/greybus/audio_manager.c
8741 F:      drivers/staging/greybus/audio_manager.h
8742 F:      drivers/staging/greybus/audio_manager_module.c
8743 F:      drivers/staging/greybus/audio_manager_private.h
8744 F:      drivers/staging/greybus/audio_manager_sysfs.c
8745 F:      drivers/staging/greybus/audio_module.c
8746 F:      drivers/staging/greybus/audio_topology.c
8747
8748 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8749 M:      Viresh Kumar <vireshk@kernel.org>
8750 S:      Maintained
8751 F:      drivers/staging/greybus/authentication.c
8752 F:      drivers/staging/greybus/bootrom.c
8753 F:      drivers/staging/greybus/firmware.h
8754 F:      drivers/staging/greybus/fw-core.c
8755 F:      drivers/staging/greybus/fw-download.c
8756 F:      drivers/staging/greybus/fw-management.c
8757 F:      drivers/staging/greybus/greybus_authentication.h
8758 F:      drivers/staging/greybus/greybus_firmware.h
8759 F:      drivers/staging/greybus/hid.c
8760 F:      drivers/staging/greybus/i2c.c
8761 F:      drivers/staging/greybus/spi.c
8762 F:      drivers/staging/greybus/spilib.c
8763 F:      drivers/staging/greybus/spilib.h
8764
8765 GREYBUS LOOPBACK DRIVER
8766 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8767 S:      Maintained
8768 F:      drivers/staging/greybus/loopback.c
8769
8770 GREYBUS PLATFORM DRIVERS
8771 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8772 S:      Maintained
8773 F:      drivers/staging/greybus/arche-apb-ctrl.c
8774 F:      drivers/staging/greybus/arche-platform.c
8775 F:      drivers/staging/greybus/arche_platform.h
8776
8777 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8778 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8779 S:      Maintained
8780 F:      drivers/staging/greybus/gpio.c
8781 F:      drivers/staging/greybus/light.c
8782 F:      drivers/staging/greybus/power_supply.c
8783 F:      drivers/staging/greybus/sdio.c
8784 F:      drivers/staging/greybus/spi.c
8785 F:      drivers/staging/greybus/spilib.c
8786
8787 GREYBUS SUBSYSTEM
8788 M:      Johan Hovold <johan@kernel.org>
8789 M:      Alex Elder <elder@kernel.org>
8790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8791 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8792 S:      Maintained
8793 F:      drivers/greybus/
8794 F:      drivers/staging/greybus/
8795 F:      include/linux/greybus.h
8796 F:      include/linux/greybus/
8797
8798 GREYBUS UART PROTOCOLS DRIVERS
8799 M:      David Lin <dtwlin@gmail.com>
8800 S:      Maintained
8801 F:      drivers/staging/greybus/log.c
8802 F:      drivers/staging/greybus/uart.c
8803
8804 GS1662 VIDEO SERIALIZER
8805 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8806 L:      linux-media@vger.kernel.org
8807 S:      Maintained
8808 T:      git git://linuxtv.org/media_tree.git
8809 F:      drivers/media/spi/gs1662.c
8810
8811 GSPCA FINEPIX SUBDRIVER
8812 M:      Frank Zago <frank@zago.net>
8813 L:      linux-media@vger.kernel.org
8814 S:      Maintained
8815 T:      git git://linuxtv.org/media_tree.git
8816 F:      drivers/media/usb/gspca/finepix.c
8817
8818 GSPCA GL860 SUBDRIVER
8819 M:      Olivier Lorin <o.lorin@laposte.net>
8820 L:      linux-media@vger.kernel.org
8821 S:      Maintained
8822 T:      git git://linuxtv.org/media_tree.git
8823 F:      drivers/media/usb/gspca/gl860/
8824
8825 GSPCA M5602 SUBDRIVER
8826 M:      Erik Andren <erik.andren@gmail.com>
8827 L:      linux-media@vger.kernel.org
8828 S:      Maintained
8829 T:      git git://linuxtv.org/media_tree.git
8830 F:      drivers/media/usb/gspca/m5602/
8831
8832 GSPCA PAC207 SONIXB SUBDRIVER
8833 M:      Hans Verkuil <hverkuil@xs4all.nl>
8834 L:      linux-media@vger.kernel.org
8835 S:      Odd Fixes
8836 T:      git git://linuxtv.org/media_tree.git
8837 F:      drivers/media/usb/gspca/pac207.c
8838
8839 GSPCA SN9C20X SUBDRIVER
8840 M:      Brian Johnson <brijohn@gmail.com>
8841 L:      linux-media@vger.kernel.org
8842 S:      Maintained
8843 T:      git git://linuxtv.org/media_tree.git
8844 F:      drivers/media/usb/gspca/sn9c20x.c
8845
8846 GSPCA T613 SUBDRIVER
8847 M:      Leandro Costantino <lcostantino@gmail.com>
8848 L:      linux-media@vger.kernel.org
8849 S:      Maintained
8850 T:      git git://linuxtv.org/media_tree.git
8851 F:      drivers/media/usb/gspca/t613.c
8852
8853 GSPCA USB WEBCAM DRIVER
8854 M:      Hans Verkuil <hverkuil@xs4all.nl>
8855 L:      linux-media@vger.kernel.org
8856 S:      Odd Fixes
8857 T:      git git://linuxtv.org/media_tree.git
8858 F:      drivers/media/usb/gspca/
8859
8860 GTP (GPRS Tunneling Protocol)
8861 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8862 M:      Harald Welte <laforge@gnumonks.org>
8863 L:      osmocom-net-gprs@lists.osmocom.org
8864 S:      Maintained
8865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8866 F:      drivers/net/gtp.c
8867
8868 GUID PARTITION TABLE (GPT)
8869 M:      Davidlohr Bueso <dave@stgolabs.net>
8870 L:      linux-efi@vger.kernel.org
8871 S:      Maintained
8872 F:      block/partitions/efi.*
8873
8874 HABANALABS PCI DRIVER
8875 M:      Oded Gabbay <ogabbay@kernel.org>
8876 S:      Supported
8877 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8878 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8879 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8880 F:      drivers/misc/habanalabs/
8881 F:      include/trace/events/habanalabs.h
8882 F:      include/uapi/misc/habanalabs.h
8883
8884 HACKRF MEDIA DRIVER
8885 M:      Antti Palosaari <crope@iki.fi>
8886 L:      linux-media@vger.kernel.org
8887 S:      Maintained
8888 W:      https://linuxtv.org
8889 W:      http://palosaari.fi/linux/
8890 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8891 T:      git git://linuxtv.org/anttip/media_tree.git
8892 F:      drivers/media/usb/hackrf/
8893
8894 HANTRO VPU CODEC DRIVER
8895 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8896 M:      Philipp Zabel <p.zabel@pengutronix.de>
8897 L:      linux-media@vger.kernel.org
8898 L:      linux-rockchip@lists.infradead.org
8899 S:      Maintained
8900 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8901 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8902 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8903 F:      drivers/staging/media/hantro/
8904
8905 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8906 M:      Frank Seidel <frank@f-seidel.de>
8907 L:      platform-driver-x86@vger.kernel.org
8908 S:      Maintained
8909 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8910 F:      drivers/platform/x86/hdaps.c
8911
8912 HARDWARE MONITORING
8913 M:      Jean Delvare <jdelvare@suse.com>
8914 M:      Guenter Roeck <linux@roeck-us.net>
8915 L:      linux-hwmon@vger.kernel.org
8916 S:      Maintained
8917 W:      http://hwmon.wiki.kernel.org/
8918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8919 F:      Documentation/ABI/testing/sysfs-class-hwmon
8920 F:      Documentation/devicetree/bindings/hwmon/
8921 F:      Documentation/hwmon/
8922 F:      drivers/hwmon/
8923 F:      include/linux/hwmon*.h
8924 F:      include/trace/events/hwmon*.h
8925 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8926
8927 HARDWARE RANDOM NUMBER GENERATOR CORE
8928 M:      Olivia Mackall <olivia@selenic.com>
8929 M:      Herbert Xu <herbert@gondor.apana.org.au>
8930 L:      linux-crypto@vger.kernel.org
8931 S:      Odd fixes
8932 F:      Documentation/admin-guide/hw_random.rst
8933 F:      Documentation/devicetree/bindings/rng/
8934 F:      drivers/char/hw_random/
8935 F:      include/linux/hw_random.h
8936
8937 HARDWARE SPINLOCK CORE
8938 M:      Ohad Ben-Cohen <ohad@wizery.com>
8939 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8940 R:      Baolin Wang <baolin.wang7@gmail.com>
8941 L:      linux-remoteproc@vger.kernel.org
8942 S:      Maintained
8943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8944 F:      Documentation/devicetree/bindings/hwlock/
8945 F:      Documentation/locking/hwspinlock.rst
8946 F:      drivers/hwspinlock/
8947 F:      include/linux/hwspinlock.h
8948
8949 HARDWARE TRACING FACILITIES
8950 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8951 S:      Maintained
8952 F:      drivers/hwtracing/
8953
8954 HARMONY SOUND DRIVER
8955 L:      linux-parisc@vger.kernel.org
8956 S:      Maintained
8957 F:      sound/parisc/harmony.*
8958
8959 HDPVR USB VIDEO ENCODER DRIVER
8960 M:      Hans Verkuil <hverkuil@xs4all.nl>
8961 L:      linux-media@vger.kernel.org
8962 S:      Odd Fixes
8963 W:      https://linuxtv.org
8964 T:      git git://linuxtv.org/media_tree.git
8965 F:      drivers/media/usb/hdpvr/
8966
8967 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8968 M:      Matt Hsiao <matt.hsiao@hpe.com>
8969 S:      Supported
8970 F:      drivers/misc/hpilo.[ch]
8971
8972 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8973 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8974 S:      Supported
8975 F:      Documentation/watchdog/hpwdt.rst
8976 F:      drivers/watchdog/hpwdt.c
8977
8978 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8979 M:      Don Brace <don.brace@microchip.com>
8980 L:      storagedev@microchip.com
8981 L:      linux-scsi@vger.kernel.org
8982 S:      Supported
8983 F:      Documentation/scsi/hpsa.rst
8984 F:      drivers/scsi/hpsa*.[ch]
8985 F:      include/linux/cciss*.h
8986 F:      include/uapi/linux/cciss*.h
8987
8988 HFI1 DRIVER
8989 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8990 L:      linux-rdma@vger.kernel.org
8991 S:      Supported
8992 F:      drivers/infiniband/hw/hfi1
8993
8994 HFS FILESYSTEM
8995 L:      linux-fsdevel@vger.kernel.org
8996 S:      Orphan
8997 F:      Documentation/filesystems/hfs.rst
8998 F:      fs/hfs/
8999
9000 HFSPLUS FILESYSTEM
9001 L:      linux-fsdevel@vger.kernel.org
9002 S:      Orphan
9003 F:      Documentation/filesystems/hfsplus.rst
9004 F:      fs/hfsplus/
9005
9006 HGA FRAMEBUFFER DRIVER
9007 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9008 L:      linux-nvidia@lists.surfsouth.com
9009 S:      Maintained
9010 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9011 F:      drivers/video/fbdev/hgafb.c
9012
9013 HIBERNATION (aka Software Suspend, aka swsusp)
9014 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9015 M:      Pavel Machek <pavel@ucw.cz>
9016 L:      linux-pm@vger.kernel.org
9017 S:      Supported
9018 B:      https://bugzilla.kernel.org
9019 F:      arch/*/include/asm/suspend*.h
9020 F:      arch/x86/power/
9021 F:      drivers/base/power/
9022 F:      include/linux/freezer.h
9023 F:      include/linux/pm.h
9024 F:      include/linux/suspend.h
9025 F:      kernel/power/
9026
9027 HID CORE LAYER
9028 M:      Jiri Kosina <jikos@kernel.org>
9029 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9030 L:      linux-input@vger.kernel.org
9031 S:      Maintained
9032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9033 F:      drivers/hid/
9034 F:      include/linux/hid*
9035 F:      include/uapi/linux/hid*
9036
9037 HID LOGITECH DRIVERS
9038 R:      Filipe Laíns <lains@riseup.net>
9039 L:      linux-input@vger.kernel.org
9040 S:      Maintained
9041 F:      drivers/hid/hid-logitech-*
9042
9043 HID PLAYSTATION DRIVER
9044 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9045 L:      linux-input@vger.kernel.org
9046 S:      Supported
9047 F:      drivers/hid/hid-playstation.c
9048
9049 HID SENSOR HUB DRIVERS
9050 M:      Jiri Kosina <jikos@kernel.org>
9051 M:      Jonathan Cameron <jic23@kernel.org>
9052 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9053 L:      linux-input@vger.kernel.org
9054 L:      linux-iio@vger.kernel.org
9055 S:      Maintained
9056 F:      Documentation/hid/hid-sensor*
9057 F:      drivers/hid/hid-sensor-*
9058 F:      drivers/iio/*/hid-*
9059 F:      include/linux/hid-sensor-*
9060
9061 HID WACOM DRIVER
9062 M:      Ping Cheng <ping.cheng@wacom.com>
9063 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9064 L:      linux-input@vger.kernel.org
9065 S:      Maintained
9066 F:      drivers/hid/wacom.h
9067 F:      drivers/hid/wacom_*
9068
9069 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9070 M:      Thomas Gleixner <tglx@linutronix.de>
9071 L:      linux-kernel@vger.kernel.org
9072 S:      Maintained
9073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9074 F:      Documentation/timers/
9075 F:      include/linux/clockchips.h
9076 F:      include/linux/hrtimer.h
9077 F:      kernel/time/clockevents.c
9078 F:      kernel/time/hrtimer.c
9079 F:      kernel/time/timer_*.c
9080
9081 HIGH-SPEED SCC DRIVER FOR AX.25
9082 L:      linux-hams@vger.kernel.org
9083 S:      Orphan
9084 F:      drivers/net/hamradio/scc.c
9085
9086 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9087 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9088 S:      Supported
9089 W:      http://www.highpoint-tech.com
9090 F:      Documentation/scsi/hptiop.rst
9091 F:      drivers/scsi/hptiop.c
9092
9093 HIPPI
9094 M:      Jes Sorensen <jes@trained-monkey.org>
9095 L:      linux-hippi@sunsite.dk
9096 S:      Maintained
9097 F:      drivers/net/hippi/
9098 F:      include/linux/hippidevice.h
9099 F:      include/uapi/linux/if_hippi.h
9100 F:      net/802/hippi.c
9101
9102 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9103 M:      Kurt Kanzenbach <kurt@linutronix.de>
9104 L:      netdev@vger.kernel.org
9105 S:      Maintained
9106 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9107 F:      drivers/net/dsa/hirschmann/*
9108 F:      include/linux/platform_data/hirschmann-hellcreek.h
9109 F:      net/dsa/tag_hellcreek.c
9110
9111 HISILICON DMA DRIVER
9112 M:      Zhou Wang <wangzhou1@hisilicon.com>
9113 L:      dmaengine@vger.kernel.org
9114 S:      Maintained
9115 F:      drivers/dma/hisi_dma.c
9116
9117 HISILICON GPIO DRIVER
9118 M:      Luo Jiaxing <luojiaxing@huawei.com>
9119 L:      linux-gpio@vger.kernel.org
9120 S:      Maintained
9121 F:      drivers/gpio/gpio-hisi.c
9122
9123 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9124 M:      Longfang Liu <liulongfang@huawei.com>
9125 L:      linux-crypto@vger.kernel.org
9126 S:      Maintained
9127 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9128 F:      drivers/crypto/hisilicon/hpre/hpre.h
9129 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9130 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9131
9132 HISILICON I2C CONTROLLER DRIVER
9133 M:      Yicong Yang <yangyicong@hisilicon.com>
9134 L:      linux-i2c@vger.kernel.org
9135 S:      Maintained
9136 W:      https://www.hisilicon.com
9137 F:      drivers/i2c/busses/i2c-hisi.c
9138
9139 HISILICON LPC BUS DRIVER
9140 M:      john.garry@huawei.com
9141 S:      Maintained
9142 W:      http://www.hisilicon.com
9143 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9144 F:      drivers/bus/hisi_lpc.c
9145
9146 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9147 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9148 M:      Salil Mehta <salil.mehta@huawei.com>
9149 L:      netdev@vger.kernel.org
9150 S:      Maintained
9151 W:      http://www.hisilicon.com
9152 F:      drivers/net/ethernet/hisilicon/hns3/
9153
9154 HISILICON NETWORK SUBSYSTEM DRIVER
9155 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9156 M:      Salil Mehta <salil.mehta@huawei.com>
9157 L:      netdev@vger.kernel.org
9158 S:      Maintained
9159 W:      http://www.hisilicon.com
9160 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9161 F:      drivers/net/ethernet/hisilicon/
9162
9163 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9164 M:      John Stultz <jstultz@google.com>
9165 L:      linux-kernel@vger.kernel.org
9166 S:      Maintained
9167 F:      drivers/misc/hisi_hikey_usb.c
9168
9169 HISILICON PMU DRIVER
9170 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9171 M:      Qi Liu <liuqi115@huawei.com>
9172 S:      Supported
9173 W:      http://www.hisilicon.com
9174 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9175 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9176 F:      drivers/perf/hisilicon
9177
9178 HISILICON HNS3 PMU DRIVER
9179 M:      Guangbin Huang <huangguangbin2@huawei.com>
9180 S:      Supported
9181 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9182 F:      drivers/perf/hisilicon/hns3_pmu.c
9183
9184 HISILICON PTT DRIVER
9185 M:      Yicong Yang <yangyicong@hisilicon.com>
9186 L:      linux-kernel@vger.kernel.org
9187 S:      Maintained
9188 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9189 F:      Documentation/trace/hisi-ptt.rst
9190 F:      drivers/hwtracing/ptt/
9191
9192 HISILICON QM DRIVER
9193 M:      Weili Qian <qianweili@huawei.com>
9194 M:      Zhou Wang <wangzhou1@hisilicon.com>
9195 L:      linux-crypto@vger.kernel.org
9196 S:      Maintained
9197 F:      drivers/crypto/hisilicon/Kconfig
9198 F:      drivers/crypto/hisilicon/Makefile
9199 F:      drivers/crypto/hisilicon/qm.c
9200 F:      drivers/crypto/hisilicon/sgl.c
9201 F:      include/linux/hisi_acc_qm.h
9202
9203 HISILICON ZIP Controller DRIVER
9204 M:      Yang Shen <shenyang39@huawei.com>
9205 M:      Zhou Wang <wangzhou1@hisilicon.com>
9206 L:      linux-crypto@vger.kernel.org
9207 S:      Maintained
9208 F:      Documentation/ABI/testing/debugfs-hisi-zip
9209 F:      drivers/crypto/hisilicon/zip/
9210
9211 HISILICON ROCE DRIVER
9212 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9213 M:      Weihang Li <liweihang@huawei.com>
9214 L:      linux-rdma@vger.kernel.org
9215 S:      Maintained
9216 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9217 F:      drivers/infiniband/hw/hns/
9218
9219 HISILICON SAS Controller
9220 M:      John Garry <john.garry@huawei.com>
9221 S:      Supported
9222 W:      http://www.hisilicon.com
9223 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9224 F:      drivers/scsi/hisi_sas/
9225
9226 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9227 M:      Kai Ye <yekai13@huawei.com>
9228 M:      Longfang Liu <liulongfang@huawei.com>
9229 L:      linux-crypto@vger.kernel.org
9230 S:      Maintained
9231 F:      Documentation/ABI/testing/debugfs-hisi-sec
9232 F:      drivers/crypto/hisilicon/sec2/sec.h
9233 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9234 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9235 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9236
9237 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9238 M:      Jay Fang <f.fangjian@huawei.com>
9239 L:      linux-spi@vger.kernel.org
9240 S:      Maintained
9241 W:      http://www.hisilicon.com
9242 F:      drivers/spi/spi-hisi-kunpeng.c
9243
9244 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9245 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9246 L:      linux-kernel@vger.kernel.org
9247 S:      Maintained
9248 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9249 F:      drivers/spmi/hisi-spmi-controller.c
9250
9251 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9252 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9253 L:      linux-kernel@vger.kernel.org
9254 S:      Maintained
9255 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9256 F:      drivers/mfd/hi6421-spmi-pmic.c
9257
9258 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9259 M:      Weili Qian <qianweili@huawei.com>
9260 S:      Maintained
9261 F:      drivers/crypto/hisilicon/trng/trng.c
9262
9263 HISILICON V3XX SPI NOR FLASH Controller Driver
9264 M:      John Garry <john.garry@huawei.com>
9265 S:      Maintained
9266 W:      http://www.hisilicon.com
9267 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9268
9269 HMM - Heterogeneous Memory Management
9270 M:      Jérôme Glisse <jglisse@redhat.com>
9271 L:      linux-mm@kvack.org
9272 S:      Maintained
9273 F:      Documentation/mm/hmm.rst
9274 F:      include/linux/hmm*
9275 F:      lib/test_hmm*
9276 F:      mm/hmm*
9277 F:      tools/testing/selftests/vm/*hmm*
9278
9279 HOST AP DRIVER
9280 M:      Jouni Malinen <j@w1.fi>
9281 L:      linux-wireless@vger.kernel.org
9282 S:      Obsolete
9283 W:      http://w1.fi/hostap-driver.html
9284 F:      drivers/net/wireless/intersil/hostap/
9285
9286 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9287 L:      platform-driver-x86@vger.kernel.org
9288 S:      Orphan
9289 F:      drivers/platform/x86/tc1100-wmi.c
9290
9291 HPET:   High Precision Event Timers driver
9292 M:      Clemens Ladisch <clemens@ladisch.de>
9293 S:      Maintained
9294 F:      Documentation/timers/hpet.rst
9295 F:      drivers/char/hpet.c
9296 F:      include/linux/hpet.h
9297 F:      include/uapi/linux/hpet.h
9298
9299 HPET:   x86
9300 S:      Orphan
9301 F:      arch/x86/include/asm/hpet.h
9302 F:      arch/x86/kernel/hpet.c
9303
9304 HPFS FILESYSTEM
9305 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9306 S:      Maintained
9307 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9308 F:      fs/hpfs/
9309
9310 HSI SUBSYSTEM
9311 M:      Sebastian Reichel <sre@kernel.org>
9312 S:      Maintained
9313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9314 F:      Documentation/ABI/testing/sysfs-bus-hsi
9315 F:      Documentation/driver-api/hsi.rst
9316 F:      drivers/hsi/
9317 F:      include/linux/hsi/
9318 F:      include/uapi/linux/hsi/
9319
9320 HSO 3G MODEM DRIVER
9321 L:      linux-usb@vger.kernel.org
9322 S:      Orphan
9323 F:      drivers/net/usb/hso.c
9324
9325 HSR NETWORK PROTOCOL
9326 L:      netdev@vger.kernel.org
9327 S:      Orphan
9328 F:      net/hsr/
9329
9330 HT16K33 LED CONTROLLER DRIVER
9331 M:      Robin van der Gracht <robin@protonic.nl>
9332 S:      Maintained
9333 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9334 F:      drivers/auxdisplay/ht16k33.c
9335
9336 HTCPEN TOUCHSCREEN DRIVER
9337 M:      Pau Oliva Fora <pof@eslack.org>
9338 L:      linux-input@vger.kernel.org
9339 S:      Maintained
9340 F:      drivers/input/touchscreen/htcpen.c
9341
9342 HTE SUBSYSTEM
9343 M:      Dipen Patel <dipenp@nvidia.com>
9344 S:      Maintained
9345 F:      Documentation/devicetree/bindings/timestamp/
9346 F:      Documentation/driver-api/hte/
9347 F:      drivers/hte/
9348 F:      include/linux/hte.h
9349
9350 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9351 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9352 L:      linux-iio@vger.kernel.org
9353 S:      Maintained
9354 W:      http://www.st.com/
9355 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9356 F:      drivers/iio/humidity/hts221*
9357
9358 HUAWEI ETHERNET DRIVER
9359 L:      netdev@vger.kernel.org
9360 S:      Orphan
9361 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9362 F:      drivers/net/ethernet/huawei/hinic/
9363
9364 HUGETLB SUBSYSTEM
9365 M:      Mike Kravetz <mike.kravetz@oracle.com>
9366 M:      Muchun Song <songmuchun@bytedance.com>
9367 L:      linux-mm@kvack.org
9368 S:      Maintained
9369 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9370 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9371 F:      Documentation/mm/hugetlbfs_reserv.rst
9372 F:      Documentation/mm/vmemmap_dedup.rst
9373 F:      fs/hugetlbfs/
9374 F:      include/linux/hugetlb.h
9375 F:      mm/hugetlb.c
9376 F:      mm/hugetlb_vmemmap.c
9377 F:      mm/hugetlb_vmemmap.h
9378
9379 HVA ST MEDIA DRIVER
9380 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9381 L:      linux-media@vger.kernel.org
9382 S:      Supported
9383 W:      https://linuxtv.org
9384 T:      git git://linuxtv.org/media_tree.git
9385 F:      drivers/media/platform/st/sti/hva
9386
9387 HWPOISON MEMORY FAILURE HANDLING
9388 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9389 R:      Miaohe Lin <linmiaohe@huawei.com>
9390 L:      linux-mm@kvack.org
9391 S:      Maintained
9392 F:      mm/hwpoison-inject.c
9393 F:      mm/memory-failure.c
9394
9395 HYCON HY46XX TOUCHSCREEN SUPPORT
9396 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9397 L:      linux-input@vger.kernel.org
9398 S:      Maintained
9399 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9400 F:      drivers/input/touchscreen/hycon-hy46xx.c
9401
9402 HYGON PROCESSOR SUPPORT
9403 M:      Pu Wen <puwen@hygon.cn>
9404 L:      linux-kernel@vger.kernel.org
9405 S:      Maintained
9406 F:      arch/x86/kernel/cpu/hygon.c
9407
9408 HYNIX HI556 SENSOR DRIVER
9409 M:      Shawn Tu <shawnx.tu@intel.com>
9410 L:      linux-media@vger.kernel.org
9411 S:      Maintained
9412 T:      git git://linuxtv.org/media_tree.git
9413 F:      drivers/media/i2c/hi556.c
9414
9415 HYNIX HI846 SENSOR DRIVER
9416 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9417 L:      linux-media@vger.kernel.org
9418 S:      Maintained
9419 F:      drivers/media/i2c/hi846.c
9420
9421 HYNIX HI847 SENSOR DRIVER
9422 M:      Shawn Tu <shawnx.tu@intel.com>
9423 L:      linux-media@vger.kernel.org
9424 S:      Maintained
9425 F:      drivers/media/i2c/hi847.c
9426
9427 Hyper-V/Azure CORE AND DRIVERS
9428 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9429 M:      Haiyang Zhang <haiyangz@microsoft.com>
9430 M:      Stephen Hemminger <sthemmin@microsoft.com>
9431 M:      Wei Liu <wei.liu@kernel.org>
9432 M:      Dexuan Cui <decui@microsoft.com>
9433 L:      linux-hyperv@vger.kernel.org
9434 S:      Supported
9435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9436 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9437 F:      Documentation/ABI/testing/debugfs-hyperv
9438 F:      Documentation/virt/hyperv
9439 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9440 F:      arch/arm64/hyperv
9441 F:      arch/arm64/include/asm/hyperv-tlfs.h
9442 F:      arch/arm64/include/asm/mshyperv.h
9443 F:      arch/x86/hyperv
9444 F:      arch/x86/include/asm/hyperv-tlfs.h
9445 F:      arch/x86/include/asm/mshyperv.h
9446 F:      arch/x86/include/asm/trace/hyperv.h
9447 F:      arch/x86/kernel/cpu/mshyperv.c
9448 F:      drivers/clocksource/hyperv_timer.c
9449 F:      drivers/hid/hid-hyperv.c
9450 F:      drivers/hv/
9451 F:      drivers/input/serio/hyperv-keyboard.c
9452 F:      drivers/iommu/hyperv-iommu.c
9453 F:      drivers/net/ethernet/microsoft/
9454 F:      drivers/net/hyperv/
9455 F:      drivers/pci/controller/pci-hyperv-intf.c
9456 F:      drivers/pci/controller/pci-hyperv.c
9457 F:      drivers/scsi/storvsc_drv.c
9458 F:      drivers/uio/uio_hv_generic.c
9459 F:      drivers/video/fbdev/hyperv_fb.c
9460 F:      include/asm-generic/hyperv-tlfs.h
9461 F:      include/asm-generic/mshyperv.h
9462 F:      include/clocksource/hyperv_timer.h
9463 F:      include/linux/hyperv.h
9464 F:      include/uapi/linux/hyperv.h
9465 F:      net/vmw_vsock/hyperv_transport.c
9466 F:      tools/hv/
9467
9468 HYPERBUS SUPPORT
9469 M:      Vignesh Raghavendra <vigneshr@ti.com>
9470 L:      linux-mtd@lists.infradead.org
9471 S:      Supported
9472 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9473 C:      irc://irc.oftc.net/mtd
9474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9475 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9476 F:      drivers/mtd/hyperbus/
9477 F:      include/linux/mtd/hyperbus.h
9478
9479 HYPERVISOR VIRTUAL CONSOLE DRIVER
9480 L:      linuxppc-dev@lists.ozlabs.org
9481 S:      Odd Fixes
9482 F:      drivers/tty/hvc/
9483
9484 I2C ACPI SUPPORT
9485 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9486 L:      linux-i2c@vger.kernel.org
9487 L:      linux-acpi@vger.kernel.org
9488 S:      Maintained
9489 F:      drivers/i2c/i2c-core-acpi.c
9490
9491 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9492 M:      Ajay Gupta <ajayg@nvidia.com>
9493 L:      linux-i2c@vger.kernel.org
9494 S:      Maintained
9495 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9496 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9497
9498 I2C MUXES
9499 M:      Peter Rosin <peda@axentia.se>
9500 L:      linux-i2c@vger.kernel.org
9501 S:      Maintained
9502 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9503 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9504 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9505 F:      Documentation/i2c/i2c-topology.rst
9506 F:      Documentation/i2c/muxes/
9507 F:      drivers/i2c/i2c-mux.c
9508 F:      drivers/i2c/muxes/
9509 F:      include/linux/i2c-mux.h
9510
9511 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9512 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9513 L:      linux-i2c@vger.kernel.org
9514 S:      Maintained
9515 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9516 F:      drivers/i2c/busses/i2c-mv64xxx.c
9517
9518 I2C OVER PARALLEL PORT
9519 M:      Jean Delvare <jdelvare@suse.com>
9520 L:      linux-i2c@vger.kernel.org
9521 S:      Maintained
9522 F:      Documentation/i2c/busses/i2c-parport.rst
9523 F:      drivers/i2c/busses/i2c-parport.c
9524
9525 I2C SUBSYSTEM
9526 M:      Wolfram Sang <wsa@kernel.org>
9527 L:      linux-i2c@vger.kernel.org
9528 S:      Maintained
9529 W:      https://i2c.wiki.kernel.org/
9530 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9532 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9533 F:      Documentation/i2c/
9534 F:      drivers/i2c/*
9535 F:      include/dt-bindings/i2c/i2c.h
9536 F:      include/linux/i2c-dev.h
9537 F:      include/linux/i2c-smbus.h
9538 F:      include/linux/i2c.h
9539 F:      include/uapi/linux/i2c-*.h
9540 F:      include/uapi/linux/i2c.h
9541
9542 I2C SUBSYSTEM HOST DRIVERS
9543 L:      linux-i2c@vger.kernel.org
9544 S:      Odd Fixes
9545 W:      https://i2c.wiki.kernel.org/
9546 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9548 F:      Documentation/devicetree/bindings/i2c/
9549 F:      drivers/i2c/algos/
9550 F:      drivers/i2c/busses/
9551 F:      include/dt-bindings/i2c/
9552
9553 I2C-TAOS-EVM DRIVER
9554 M:      Jean Delvare <jdelvare@suse.com>
9555 L:      linux-i2c@vger.kernel.org
9556 S:      Maintained
9557 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9558 F:      drivers/i2c/busses/i2c-taos-evm.c
9559
9560 I2C-TINY-USB DRIVER
9561 M:      Till Harbaum <till@harbaum.org>
9562 L:      linux-i2c@vger.kernel.org
9563 S:      Maintained
9564 W:      http://www.harbaum.org/till/i2c_tiny_usb
9565 F:      drivers/i2c/busses/i2c-tiny-usb.c
9566
9567 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9568 M:      Jean Delvare <jdelvare@suse.com>
9569 L:      linux-i2c@vger.kernel.org
9570 S:      Maintained
9571 F:      Documentation/i2c/busses/i2c-ali1535.rst
9572 F:      Documentation/i2c/busses/i2c-ali1563.rst
9573 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9574 F:      Documentation/i2c/busses/i2c-amd756.rst
9575 F:      Documentation/i2c/busses/i2c-amd8111.rst
9576 F:      Documentation/i2c/busses/i2c-i801.rst
9577 F:      Documentation/i2c/busses/i2c-nforce2.rst
9578 F:      Documentation/i2c/busses/i2c-piix4.rst
9579 F:      Documentation/i2c/busses/i2c-sis5595.rst
9580 F:      Documentation/i2c/busses/i2c-sis630.rst
9581 F:      Documentation/i2c/busses/i2c-sis96x.rst
9582 F:      Documentation/i2c/busses/i2c-via.rst
9583 F:      Documentation/i2c/busses/i2c-viapro.rst
9584 F:      drivers/i2c/busses/i2c-ali1535.c
9585 F:      drivers/i2c/busses/i2c-ali1563.c
9586 F:      drivers/i2c/busses/i2c-ali15x3.c
9587 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9588 F:      drivers/i2c/busses/i2c-amd756.c
9589 F:      drivers/i2c/busses/i2c-amd8111.c
9590 F:      drivers/i2c/busses/i2c-i801.c
9591 F:      drivers/i2c/busses/i2c-isch.c
9592 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9593 F:      drivers/i2c/busses/i2c-nforce2.c
9594 F:      drivers/i2c/busses/i2c-piix4.c
9595 F:      drivers/i2c/busses/i2c-sis5595.c
9596 F:      drivers/i2c/busses/i2c-sis630.c
9597 F:      drivers/i2c/busses/i2c-sis96x.c
9598 F:      drivers/i2c/busses/i2c-via.c
9599 F:      drivers/i2c/busses/i2c-viapro.c
9600
9601 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9602 M:      Hans de Goede <hdegoede@redhat.com>
9603 L:      linux-i2c@vger.kernel.org
9604 S:      Maintained
9605 F:      drivers/i2c/busses/i2c-cht-wc.c
9606
9607 I2C/SMBUS ISMT DRIVER
9608 M:      Seth Heasley <seth.heasley@intel.com>
9609 M:      Neil Horman <nhorman@tuxdriver.com>
9610 L:      linux-i2c@vger.kernel.org
9611 F:      Documentation/i2c/busses/i2c-ismt.rst
9612 F:      drivers/i2c/busses/i2c-ismt.c
9613
9614 I2C/SMBUS STUB DRIVER
9615 M:      Jean Delvare <jdelvare@suse.com>
9616 L:      linux-i2c@vger.kernel.org
9617 S:      Maintained
9618 F:      drivers/i2c/i2c-stub.c
9619
9620 I3C DRIVER FOR CADENCE I3C MASTER IP
9621 M:      Przemysław Gaj <pgaj@cadence.com>
9622 S:      Maintained
9623 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9624 F:      drivers/i3c/master/i3c-master-cdns.c
9625
9626 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9627 M:      Vitor Soares <vitor.soares@synopsys.com>
9628 S:      Maintained
9629 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9630 F:      drivers/i3c/master/dw*
9631
9632 I3C SUBSYSTEM
9633 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9634 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9635 S:      Maintained
9636 C:      irc://chat.freenode.net/linux-i3c
9637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9638 F:      Documentation/ABI/testing/sysfs-bus-i3c
9639 F:      Documentation/devicetree/bindings/i3c/
9640 F:      Documentation/driver-api/i3c
9641 F:      drivers/i3c/
9642 F:      include/linux/i3c/
9643
9644 IA64 (Itanium) PLATFORM
9645 L:      linux-ia64@vger.kernel.org
9646 S:      Orphan
9647 F:      Documentation/ia64/
9648 F:      arch/ia64/
9649
9650 IBM Power 842 compression accelerator
9651 M:      Haren Myneni <haren@us.ibm.com>
9652 S:      Supported
9653 F:      crypto/842.c
9654 F:      drivers/crypto/nx/Kconfig
9655 F:      drivers/crypto/nx/Makefile
9656 F:      drivers/crypto/nx/nx-842*
9657 F:      include/linux/sw842.h
9658 F:      lib/842/
9659
9660 IBM Power in-Nest Crypto Acceleration
9661 M:      Breno Leitão <leitao@debian.org>
9662 M:      Nayna Jain <nayna@linux.ibm.com>
9663 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9664 L:      linux-crypto@vger.kernel.org
9665 S:      Supported
9666 F:      drivers/crypto/nx/Kconfig
9667 F:      drivers/crypto/nx/Makefile
9668 F:      drivers/crypto/nx/nx-aes*
9669 F:      drivers/crypto/nx/nx-sha*
9670 F:      drivers/crypto/nx/nx.*
9671 F:      drivers/crypto/nx/nx_csbcpb.h
9672 F:      drivers/crypto/nx/nx_debugfs.c
9673
9674 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9675 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9676 L:      linux-pci@vger.kernel.org
9677 L:      linuxppc-dev@lists.ozlabs.org
9678 S:      Supported
9679 F:      drivers/pci/hotplug/rpadlpar*
9680
9681 IBM Power Linux RAID adapter
9682 M:      Brian King <brking@us.ibm.com>
9683 S:      Supported
9684 F:      drivers/scsi/ipr.*
9685
9686 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9687 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9688 L:      linux-pci@vger.kernel.org
9689 L:      linuxppc-dev@lists.ozlabs.org
9690 S:      Supported
9691 F:      drivers/pci/hotplug/rpaphp*
9692
9693 IBM Power SRIOV Virtual NIC Device Driver
9694 M:      Dany Madden <drt@linux.ibm.com>
9695 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9696 L:      netdev@vger.kernel.org
9697 S:      Supported
9698 F:      drivers/net/ethernet/ibm/ibmvnic.*
9699
9700 IBM Power Virtual Accelerator Switchboard
9701 L:      linuxppc-dev@lists.ozlabs.org
9702 S:      Supported
9703 F:      arch/powerpc/include/asm/vas.h
9704 F:      arch/powerpc/platforms/powernv/copy-paste.h
9705 F:      arch/powerpc/platforms/powernv/vas*
9706
9707 IBM Power Virtual Ethernet Device Driver
9708 M:      Nick Child <nnac123@linux.ibm.com>
9709 L:      netdev@vger.kernel.org
9710 S:      Supported
9711 F:      drivers/net/ethernet/ibm/ibmveth.*
9712
9713 IBM Power Virtual FC Device Drivers
9714 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9715 L:      linux-scsi@vger.kernel.org
9716 S:      Supported
9717 F:      drivers/scsi/ibmvscsi/ibmvfc*
9718
9719 IBM Power Virtual Management Channel Driver
9720 M:      Brad Warrum <bwarrum@linux.ibm.com>
9721 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9722 S:      Supported
9723 F:      drivers/misc/ibmvmc.*
9724
9725 IBM Power Virtual SCSI Device Drivers
9726 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9727 L:      linux-scsi@vger.kernel.org
9728 S:      Supported
9729 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9730 F:      include/scsi/viosrp.h
9731
9732 IBM Power Virtual SCSI Device Target Driver
9733 M:      Michael Cyr <mikecyr@linux.ibm.com>
9734 L:      linux-scsi@vger.kernel.org
9735 L:      target-devel@vger.kernel.org
9736 S:      Supported
9737 F:      drivers/scsi/ibmvscsi_tgt/
9738
9739 IBM Power VMX Cryptographic instructions
9740 M:      Breno Leitão <leitao@debian.org>
9741 M:      Nayna Jain <nayna@linux.ibm.com>
9742 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9743 L:      linux-crypto@vger.kernel.org
9744 S:      Supported
9745 F:      drivers/crypto/vmx/Kconfig
9746 F:      drivers/crypto/vmx/Makefile
9747 F:      drivers/crypto/vmx/aes*
9748 F:      drivers/crypto/vmx/ghash*
9749 F:      drivers/crypto/vmx/ppc-xlate.pl
9750 F:      drivers/crypto/vmx/vmx.c
9751
9752 IBM ServeRAID RAID DRIVER
9753 S:      Orphan
9754 F:      drivers/scsi/ips.*
9755
9756 ICH LPC AND GPIO DRIVER
9757 M:      Peter Tyser <ptyser@xes-inc.com>
9758 S:      Maintained
9759 F:      drivers/gpio/gpio-ich.c
9760 F:      drivers/mfd/lpc_ich.c
9761
9762 ICY I2C DRIVER
9763 M:      Max Staudt <max@enpas.org>
9764 L:      linux-i2c@vger.kernel.org
9765 S:      Maintained
9766 F:      drivers/i2c/busses/i2c-icy.c
9767
9768 IDEAPAD LAPTOP EXTRAS DRIVER
9769 M:      Ike Panhc <ike.pan@canonical.com>
9770 L:      platform-driver-x86@vger.kernel.org
9771 S:      Maintained
9772 W:      http://launchpad.net/ideapad-laptop
9773 F:      drivers/platform/x86/ideapad-laptop.c
9774
9775 IDEAPAD LAPTOP SLIDEBAR DRIVER
9776 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9777 L:      linux-input@vger.kernel.org
9778 S:      Maintained
9779 W:      https://github.com/o2genum/ideapad-slidebar
9780 F:      drivers/input/misc/ideapad_slidebar.c
9781
9782 IDMAPPED MOUNTS
9783 M:      Christian Brauner <brauner@kernel.org>
9784 M:      Seth Forshee <sforshee@kernel.org>
9785 L:      linux-fsdevel@vger.kernel.org
9786 S:      Maintained
9787 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9788 F:      Documentation/filesystems/idmappings.rst
9789 F:      tools/testing/selftests/mount_setattr/
9790 F:      include/linux/mnt_idmapping.h
9791
9792 IDT VersaClock 5 CLOCK DRIVER
9793 M:      Luca Ceresoli <luca@lucaceresoli.net>
9794 S:      Maintained
9795 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9796 F:      drivers/clk/clk-versaclock5.c
9797
9798 IEEE 802.15.4 SUBSYSTEM
9799 M:      Alexander Aring <alex.aring@gmail.com>
9800 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9801 L:      linux-wpan@vger.kernel.org
9802 S:      Maintained
9803 W:      https://linux-wpan.org/
9804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9806 F:      Documentation/networking/ieee802154.rst
9807 F:      drivers/net/ieee802154/
9808 F:      include/linux/ieee802154.h
9809 F:      include/linux/nl802154.h
9810 F:      include/net/af_ieee802154.h
9811 F:      include/net/cfg802154.h
9812 F:      include/net/ieee802154_netdev.h
9813 F:      include/net/mac802154.h
9814 F:      include/net/nl802154.h
9815 F:      net/ieee802154/
9816 F:      net/mac802154/
9817
9818 IFE PROTOCOL
9819 M:      Yotam Gigi <yotam.gi@gmail.com>
9820 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9821 F:      include/net/ife.h
9822 F:      include/uapi/linux/ife.h
9823 F:      net/ife
9824
9825 IGORPLUG-USB IR RECEIVER
9826 M:      Sean Young <sean@mess.org>
9827 L:      linux-media@vger.kernel.org
9828 S:      Maintained
9829 F:      drivers/media/rc/igorplugusb.c
9830
9831 IGUANAWORKS USB IR TRANSCEIVER
9832 M:      Sean Young <sean@mess.org>
9833 L:      linux-media@vger.kernel.org
9834 S:      Maintained
9835 F:      drivers/media/rc/iguanair.c
9836
9837 IIO DIGITAL POTENTIOMETER DAC
9838 M:      Peter Rosin <peda@axentia.se>
9839 L:      linux-iio@vger.kernel.org
9840 S:      Maintained
9841 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9842 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9843 F:      drivers/iio/dac/dpot-dac.c
9844
9845 IIO ENVELOPE DETECTOR
9846 M:      Peter Rosin <peda@axentia.se>
9847 L:      linux-iio@vger.kernel.org
9848 S:      Maintained
9849 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9850 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9851 F:      drivers/iio/adc/envelope-detector.c
9852
9853 IIO MULTIPLEXER
9854 M:      Peter Rosin <peda@axentia.se>
9855 L:      linux-iio@vger.kernel.org
9856 S:      Maintained
9857 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9858 F:      drivers/iio/multiplexer/iio-mux.c
9859
9860 IIO SCMI BASED DRIVER
9861 M:      Jyoti Bhayana <jbhayana@google.com>
9862 L:      linux-iio@vger.kernel.org
9863 S:      Maintained
9864 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9865
9866 IIO SUBSYSTEM AND DRIVERS
9867 M:      Jonathan Cameron <jic23@kernel.org>
9868 R:      Lars-Peter Clausen <lars@metafoo.de>
9869 L:      linux-iio@vger.kernel.org
9870 S:      Maintained
9871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9872 F:      Documentation/ABI/testing/configfs-iio*
9873 F:      Documentation/ABI/testing/sysfs-bus-iio*
9874 F:      Documentation/devicetree/bindings/iio/
9875 F:      drivers/iio/
9876 F:      drivers/staging/iio/
9877 F:      include/dt-bindings/iio/
9878 F:      include/linux/iio/
9879 F:      tools/iio/
9880
9881 IIO UNIT CONVERTER
9882 M:      Peter Rosin <peda@axentia.se>
9883 L:      linux-iio@vger.kernel.org
9884 S:      Maintained
9885 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9886 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9887 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9888 F:      drivers/iio/afe/iio-rescale.c
9889
9890 IKANOS/ADI EAGLE ADSL USB DRIVER
9891 M:      Matthieu Castet <castet.matthieu@free.fr>
9892 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9893 S:      Maintained
9894 F:      drivers/usb/atm/ueagle-atm.c
9895
9896 IMAGIS TOUCHSCREEN DRIVER
9897 M:      Markuss Broks <markuss.broks@gmail.com>
9898 S:      Maintained
9899 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9900 F:      drivers/input/touchscreen/imagis.c
9901
9902 IMGTEC ASCII LCD DRIVER
9903 M:      Paul Burton <paulburton@kernel.org>
9904 S:      Maintained
9905 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9906 F:      drivers/auxdisplay/img-ascii-lcd.c
9907
9908 IMGTEC IR DECODER DRIVER
9909 S:      Orphan
9910 F:      drivers/media/rc/img-ir/
9911
9912 IMON SOUNDGRAPH USB IR RECEIVER
9913 M:      Sean Young <sean@mess.org>
9914 L:      linux-media@vger.kernel.org
9915 S:      Maintained
9916 F:      drivers/media/rc/imon.c
9917 F:      drivers/media/rc/imon_raw.c
9918
9919 IMS TWINTURBO FRAMEBUFFER DRIVER
9920 L:      linux-fbdev@vger.kernel.org
9921 S:      Orphan
9922 F:      drivers/video/fbdev/imsttfb.c
9923
9924 INA209 HARDWARE MONITOR DRIVER
9925 M:      Guenter Roeck <linux@roeck-us.net>
9926 L:      linux-hwmon@vger.kernel.org
9927 S:      Maintained
9928 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9929 F:      Documentation/hwmon/ina209.rst
9930 F:      drivers/hwmon/ina209.c
9931
9932 INA2XX HARDWARE MONITOR DRIVER
9933 M:      Guenter Roeck <linux@roeck-us.net>
9934 L:      linux-hwmon@vger.kernel.org
9935 S:      Maintained
9936 F:      Documentation/hwmon/ina2xx.rst
9937 F:      drivers/hwmon/ina2xx.c
9938 F:      include/linux/platform_data/ina2xx.h
9939
9940 INDUSTRY PACK SUBSYSTEM (IPACK)
9941 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9942 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9943 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9944 L:      industrypack-devel@lists.sourceforge.net
9945 S:      Maintained
9946 W:      http://industrypack.sourceforge.net
9947 F:      drivers/ipack/
9948
9949 INFINEON DPS310 Driver
9950 M:      Eddie James <eajames@linux.ibm.com>
9951 L:      linux-iio@vger.kernel.org
9952 S:      Maintained
9953 F:      drivers/iio/pressure/dps310.c
9954
9955 INFINIBAND SUBSYSTEM
9956 M:      Jason Gunthorpe <jgg@nvidia.com>
9957 M:      Leon Romanovsky <leonro@nvidia.com>
9958 L:      linux-rdma@vger.kernel.org
9959 S:      Supported
9960 W:      https://github.com/linux-rdma/rdma-core
9961 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9963 F:      Documentation/devicetree/bindings/infiniband/
9964 F:      Documentation/infiniband/
9965 F:      drivers/infiniband/
9966 F:      include/rdma/
9967 F:      include/trace/events/ib_mad.h
9968 F:      include/trace/events/ib_umad.h
9969 F:      include/uapi/linux/if_infiniband.h
9970 F:      include/uapi/rdma/
9971 F:      samples/bpf/ibumad_kern.c
9972 F:      samples/bpf/ibumad_user.c
9973
9974 INGENIC JZ4780 NAND DRIVER
9975 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9976 L:      linux-mtd@lists.infradead.org
9977 L:      linux-mips@vger.kernel.org
9978 S:      Maintained
9979 F:      drivers/mtd/nand/raw/ingenic/
9980
9981 INGENIC JZ47xx SoCs
9982 M:      Paul Cercueil <paul@crapouillou.net>
9983 L:      linux-mips@vger.kernel.org
9984 S:      Maintained
9985 F:      arch/mips/boot/dts/ingenic/
9986 F:      arch/mips/generic/board-ingenic.c
9987 F:      arch/mips/include/asm/mach-ingenic/
9988 F:      arch/mips/ingenic/Kconfig
9989 F:      drivers/clk/ingenic/
9990 F:      drivers/dma/dma-jz4780.c
9991 F:      drivers/gpu/drm/ingenic/
9992 F:      drivers/i2c/busses/i2c-jz4780.c
9993 F:      drivers/iio/adc/ingenic-adc.c
9994 F:      drivers/irqchip/irq-ingenic.c
9995 F:      drivers/memory/jz4780-nemc.c
9996 F:      drivers/mmc/host/jz4740_mmc.c
9997 F:      drivers/mtd/nand/raw/ingenic/
9998 F:      drivers/pinctrl/pinctrl-ingenic.c
9999 F:      drivers/power/supply/ingenic-battery.c
10000 F:      drivers/pwm/pwm-jz4740.c
10001 F:      drivers/remoteproc/ingenic_rproc.c
10002 F:      drivers/rtc/rtc-jz4740.c
10003 F:      drivers/tty/serial/8250/8250_ingenic.c
10004 F:      drivers/usb/musb/jz4740.c
10005 F:      drivers/watchdog/jz4740_wdt.c
10006 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10007 F:      include/linux/mfd/ingenic-tcu.h
10008 F:      sound/soc/codecs/jz47*
10009 F:      sound/soc/jz4740/
10010
10011 INJOINIC IP5xxx POWER BANK IC DRIVER
10012 M:      Samuel Holland <samuel@sholland.org>
10013 S:      Maintained
10014 F:      drivers/power/supply/ip5xxx_power.c
10015
10016 INOTIFY
10017 M:      Jan Kara <jack@suse.cz>
10018 R:      Amir Goldstein <amir73il@gmail.com>
10019 L:      linux-fsdevel@vger.kernel.org
10020 S:      Maintained
10021 F:      Documentation/filesystems/inotify.rst
10022 F:      fs/notify/inotify/
10023 F:      include/linux/inotify.h
10024 F:      include/uapi/linux/inotify.h
10025
10026 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10027 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10028 L:      linux-input@vger.kernel.org
10029 S:      Maintained
10030 Q:      http://patchwork.kernel.org/project/linux-input/list/
10031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10032 F:      Documentation/devicetree/bindings/input/
10033 F:      Documentation/devicetree/bindings/serio/
10034 F:      Documentation/input/
10035 F:      drivers/input/
10036 F:      include/dt-bindings/input/
10037 F:      include/linux/input.h
10038 F:      include/linux/input/
10039 F:      include/uapi/linux/input-event-codes.h
10040 F:      include/uapi/linux/input.h
10041
10042 INPUT MULTITOUCH (MT) PROTOCOL
10043 M:      Henrik Rydberg <rydberg@bitmath.org>
10044 L:      linux-input@vger.kernel.org
10045 S:      Odd fixes
10046 F:      Documentation/input/multi-touch-protocol.rst
10047 F:      drivers/input/input-mt.c
10048 K:      \b(ABS|SYN)_MT_
10049
10050 INSIDE SECURE CRYPTO DRIVER
10051 M:      Antoine Tenart <atenart@kernel.org>
10052 L:      linux-crypto@vger.kernel.org
10053 S:      Maintained
10054 F:      drivers/crypto/inside-secure/
10055
10056 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10057 M:      Mimi Zohar <zohar@linux.ibm.com>
10058 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10059 L:      linux-integrity@vger.kernel.org
10060 S:      Supported
10061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10062 F:      security/integrity/ima/
10063 F:      security/integrity/
10064
10065 INTEL 810/815 FRAMEBUFFER DRIVER
10066 M:      Antonino Daplas <adaplas@gmail.com>
10067 L:      linux-fbdev@vger.kernel.org
10068 S:      Maintained
10069 F:      drivers/video/fbdev/i810/
10070
10071 INTEL 8255 GPIO DRIVER
10072 M:      William Breathitt Gray <william.gray@linaro.org>
10073 L:      linux-gpio@vger.kernel.org
10074 S:      Maintained
10075 F:      drivers/gpio/gpio-i8255.c
10076 F:      drivers/gpio/gpio-i8255.h
10077
10078 INTEL ASoC DRIVERS
10079 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10080 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10081 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10082 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10083 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10084 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10085 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10087 S:      Supported
10088 F:      sound/soc/intel/
10089
10090 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10091 M:      Hans de Goede <hdegoede@redhat.com>
10092 L:      platform-driver-x86@vger.kernel.org
10093 S:      Maintained
10094 F:      drivers/platform/x86/intel/atomisp2/pm.c
10095
10096 INTEL ATOMISP2 LED DRIVER
10097 M:      Hans de Goede <hdegoede@redhat.com>
10098 L:      platform-driver-x86@vger.kernel.org
10099 S:      Maintained
10100 F:      drivers/platform/x86/intel/atomisp2/led.c
10101
10102 INTEL BIOS SAR INT1092 DRIVER
10103 M:      Shravan Sudhakar <s.shravan@intel.com>
10104 M:      Intel Corporation <linuxwwan@intel.com>
10105 L:      platform-driver-x86@vger.kernel.org
10106 S:      Maintained
10107 F:      drivers/platform/x86/intel/int1092/
10108
10109 INTEL BROXTON PMC DRIVER
10110 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10111 M:      Zha Qipeng <qipeng.zha@intel.com>
10112 S:      Maintained
10113 F:      drivers/mfd/intel_pmc_bxt.c
10114 F:      include/linux/mfd/intel_pmc_bxt.h
10115
10116 INTEL C600 SERIES SAS CONTROLLER DRIVER
10117 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10118 L:      linux-scsi@vger.kernel.org
10119 S:      Supported
10120 T:      git git://git.code.sf.net/p/intel-sas/isci
10121 F:      drivers/scsi/isci/
10122
10123 INTEL CPU family model numbers
10124 M:      Tony Luck <tony.luck@intel.com>
10125 M:      x86@kernel.org
10126 L:      linux-kernel@vger.kernel.org
10127 S:      Supported
10128 F:      arch/x86/include/asm/intel-family.h
10129
10130 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10131 M:      Jani Nikula <jani.nikula@linux.intel.com>
10132 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10133 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10134 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10135 L:      intel-gfx@lists.freedesktop.org
10136 S:      Supported
10137 W:      https://01.org/linuxgraphics/
10138 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10139 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10140 C:      irc://irc.oftc.net/intel-gfx
10141 T:      git git://anongit.freedesktop.org/drm-intel
10142 F:      Documentation/gpu/i915.rst
10143 F:      drivers/gpu/drm/i915/
10144 F:      include/drm/i915*
10145 F:      include/uapi/drm/i915_drm.h
10146
10147 INTEL ETHERNET DRIVERS
10148 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10149 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10150 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10151 S:      Supported
10152 W:      http://www.intel.com/support/feedback.htm
10153 W:      http://e1000.sourceforge.net/
10154 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10157 F:      Documentation/networking/device_drivers/ethernet/intel/
10158 F:      drivers/net/ethernet/intel/
10159 F:      drivers/net/ethernet/intel/*/
10160 F:      include/linux/avf/virtchnl.h
10161 F:      include/linux/net/intel/iidc.h
10162
10163 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10164 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10165 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10166 L:      linux-rdma@vger.kernel.org
10167 S:      Supported
10168 F:      drivers/infiniband/hw/irdma/
10169 F:      include/uapi/rdma/irdma-abi.h
10170
10171 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10172 M:      Maik Broemme <mbroemme@libmpq.org>
10173 L:      linux-fbdev@vger.kernel.org
10174 S:      Maintained
10175 F:      Documentation/fb/intelfb.rst
10176 F:      drivers/video/fbdev/intelfb/
10177
10178 INTEL GPIO DRIVERS
10179 M:      Andy Shevchenko <andy@kernel.org>
10180 L:      linux-gpio@vger.kernel.org
10181 S:      Supported
10182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10183 F:      drivers/gpio/gpio-ich.c
10184 F:      drivers/gpio/gpio-merrifield.c
10185 F:      drivers/gpio/gpio-ml-ioh.c
10186 F:      drivers/gpio/gpio-pch.c
10187 F:      drivers/gpio/gpio-sch.c
10188 F:      drivers/gpio/gpio-sodaville.c
10189
10190 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10191 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10192 M:      Zhi Wang <zhi.a.wang@intel.com>
10193 L:      intel-gvt-dev@lists.freedesktop.org
10194 L:      intel-gfx@lists.freedesktop.org
10195 S:      Supported
10196 W:      https://01.org/igvt-g
10197 T:      git https://github.com/intel/gvt-linux.git
10198 F:      drivers/gpu/drm/i915/gvt/
10199
10200 INTEL HID EVENT DRIVER
10201 M:      Alex Hung <alex.hung@canonical.com>
10202 L:      platform-driver-x86@vger.kernel.org
10203 S:      Maintained
10204 F:      drivers/platform/x86/intel/hid.c
10205
10206 INTEL I/OAT DMA DRIVER
10207 M:      Dave Jiang <dave.jiang@intel.com>
10208 R:      Dan Williams <dan.j.williams@intel.com>
10209 L:      dmaengine@vger.kernel.org
10210 S:      Supported
10211 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10212 F:      drivers/dma/ioat*
10213
10214 INTEL IDXD DRIVER
10215 M:      Fenghua Yu <fenghua.yu@intel.com>
10216 M:      Dave Jiang <dave.jiang@intel.com>
10217 L:      dmaengine@vger.kernel.org
10218 S:      Supported
10219 F:      drivers/dma/idxd/*
10220 F:      include/uapi/linux/idxd.h
10221
10222 INTEL IDLE DRIVER
10223 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10224 M:      Len Brown <lenb@kernel.org>
10225 L:      linux-pm@vger.kernel.org
10226 S:      Supported
10227 B:      https://bugzilla.kernel.org
10228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10229 F:      drivers/idle/intel_idle.c
10230
10231 INTEL IN FIELD SCAN (IFS) DEVICE
10232 M:      Jithu Joseph <jithu.joseph@intel.com>
10233 R:      Ashok Raj <ashok.raj@intel.com>
10234 R:      Tony Luck <tony.luck@intel.com>
10235 S:      Maintained
10236 F:      drivers/platform/x86/intel/ifs
10237 F:      include/trace/events/intel_ifs.h
10238
10239 INTEL INTEGRATED SENSOR HUB DRIVER
10240 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10241 M:      Jiri Kosina <jikos@kernel.org>
10242 L:      linux-input@vger.kernel.org
10243 S:      Maintained
10244 F:      drivers/hid/intel-ish-hid/
10245
10246 INTEL IOMMU (VT-d)
10247 M:      David Woodhouse <dwmw2@infradead.org>
10248 M:      Lu Baolu <baolu.lu@linux.intel.com>
10249 L:      iommu@lists.linux.dev
10250 S:      Supported
10251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10252 F:      drivers/iommu/intel/
10253 F:      include/linux/intel-svm.h
10254
10255 INTEL IOP-ADMA DMA DRIVER
10256 R:      Dan Williams <dan.j.williams@intel.com>
10257 S:      Odd fixes
10258 F:      drivers/dma/iop-adma.c
10259
10260 INTEL IPU3 CSI-2 CIO2 DRIVER
10261 M:      Yong Zhi <yong.zhi@intel.com>
10262 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10263 M:      Bingbu Cao <bingbu.cao@intel.com>
10264 M:      Dan Scally <djrscally@gmail.com>
10265 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10266 L:      linux-media@vger.kernel.org
10267 S:      Maintained
10268 T:      git git://linuxtv.org/media_tree.git
10269 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10270 F:      drivers/media/pci/intel/ipu3/
10271
10272 INTEL IPU3 CSI-2 IMGU DRIVER
10273 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10274 R:      Bingbu Cao <bingbu.cao@intel.com>
10275 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10276 L:      linux-media@vger.kernel.org
10277 S:      Maintained
10278 F:      Documentation/admin-guide/media/ipu3.rst
10279 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10280 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10281 F:      drivers/staging/media/ipu3/
10282
10283 INTEL IXP4XX CRYPTO SUPPORT
10284 M:      Corentin Labbe <clabbe@baylibre.com>
10285 L:      linux-crypto@vger.kernel.org
10286 S:      Maintained
10287 F:      drivers/crypto/ixp4xx_crypto.c
10288
10289 INTEL ISHTP ECLITE DRIVER
10290 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10291 L:      platform-driver-x86@vger.kernel.org
10292 S:      Supported
10293 F:      drivers/platform/x86/intel/ishtp_eclite.c
10294
10295 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10296 M:      Krzysztof Halasa <khalasa@piap.pl>
10297 S:      Maintained
10298 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10299 F:      drivers/net/wan/ixp4xx_hss.c
10300 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10301 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10302 F:      include/linux/soc/ixp4xx/npe.h
10303 F:      include/linux/soc/ixp4xx/qmgr.h
10304
10305 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10306 M:      Deepak Saxena <dsaxena@plexity.net>
10307 S:      Maintained
10308 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10309 F:      drivers/char/hw_random/ixp4xx-rng.c
10310
10311 INTEL KEEM BAY DRM DRIVER
10312 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10313 M:      Edmund Dea <edmund.j.dea@intel.com>
10314 S:      Maintained
10315 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10316 F:      drivers/gpu/drm/kmb/
10317
10318 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10319 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10320 S:      Maintained
10321 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10322 F:      drivers/crypto/keembay/Kconfig
10323 F:      drivers/crypto/keembay/Makefile
10324 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10325 F:      drivers/crypto/keembay/ocs-aes.c
10326 F:      drivers/crypto/keembay/ocs-aes.h
10327
10328 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10329 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10330 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10331 M:      Mark Gross <mgross@linux.intel.com>
10332 S:      Maintained
10333 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10334 F:      drivers/crypto/keembay/Kconfig
10335 F:      drivers/crypto/keembay/Makefile
10336 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10337
10338 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10339 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10340 M:      Declan Murphy <declan.murphy@intel.com>
10341 S:      Maintained
10342 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10343 F:      drivers/crypto/keembay/Kconfig
10344 F:      drivers/crypto/keembay/Makefile
10345 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10346 F:      drivers/crypto/keembay/ocs-hcu.c
10347 F:      drivers/crypto/keembay/ocs-hcu.h
10348
10349 INTEL THUNDER BAY EMMC PHY DRIVER
10350 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10351 M:      Rashmi A <rashmi.a@intel.com>
10352 S:      Maintained
10353 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10354 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10355
10356 INTEL MANAGEMENT ENGINE (mei)
10357 M:      Tomas Winkler <tomas.winkler@intel.com>
10358 L:      linux-kernel@vger.kernel.org
10359 S:      Supported
10360 F:      Documentation/driver-api/mei/*
10361 F:      drivers/misc/mei/
10362 F:      drivers/watchdog/mei_wdt.c
10363 F:      include/linux/mei_aux.h
10364 F:      include/linux/mei_cl_bus.h
10365 F:      include/uapi/linux/mei.h
10366 F:      samples/mei/*
10367
10368 INTEL MAX 10 BMC MFD DRIVER
10369 M:      Xu Yilun <yilun.xu@intel.com>
10370 R:      Tom Rix <trix@redhat.com>
10371 S:      Maintained
10372 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10373 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10374 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10375 F:      drivers/mfd/intel-m10-bmc.c
10376 F:      include/linux/mfd/intel-m10-bmc.h
10377
10378 INTEL MENLOW THERMAL DRIVER
10379 M:      Sujith Thomas <sujith.thomas@intel.com>
10380 L:      linux-pm@vger.kernel.org
10381 S:      Supported
10382 W:      https://01.org/linux-acpi
10383 F:      drivers/thermal/intel/intel_menlow.c
10384
10385 INTEL P-Unit IPC DRIVER
10386 M:      Zha Qipeng <qipeng.zha@intel.com>
10387 L:      platform-driver-x86@vger.kernel.org
10388 S:      Maintained
10389 F:      arch/x86/include/asm/intel_punit_ipc.h
10390 F:      drivers/platform/x86/intel/punit_ipc.c
10391
10392 INTEL PMC CORE DRIVER
10393 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10394 M:      David E Box <david.e.box@intel.com>
10395 L:      platform-driver-x86@vger.kernel.org
10396 S:      Maintained
10397 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10398 F:      drivers/platform/x86/intel/pmc/
10399
10400 INTEL PMIC GPIO DRIVERS
10401 M:      Andy Shevchenko <andy@kernel.org>
10402 S:      Supported
10403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10404 F:      drivers/gpio/gpio-*cove.c
10405
10406 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10407 M:      Andy Shevchenko <andy@kernel.org>
10408 S:      Supported
10409 F:      drivers/mfd/intel_soc_pmic*
10410 F:      include/linux/mfd/intel_soc_pmic*
10411
10412 INTEL PMT DRIVERS
10413 M:      David E. Box <david.e.box@linux.intel.com>
10414 S:      Supported
10415 F:      drivers/platform/x86/intel/pmt/
10416
10417 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10418 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10419 L:      linux-wireless@vger.kernel.org
10420 S:      Maintained
10421 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10422 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10423 F:      drivers/net/wireless/intel/ipw2x00/
10424
10425 INTEL PSTATE DRIVER
10426 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10427 M:      Len Brown <lenb@kernel.org>
10428 L:      linux-pm@vger.kernel.org
10429 S:      Supported
10430 F:      drivers/cpufreq/intel_pstate.c
10431
10432 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10433 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10434 L:      linux-iio@vger.kernel.org
10435 F:      drivers/counter/intel-qep.c
10436
10437 INTEL SCU DRIVERS
10438 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10439 S:      Maintained
10440 F:      arch/x86/include/asm/intel_scu_ipc.h
10441 F:      drivers/platform/x86/intel_scu_*
10442
10443 INTEL SDSI DRIVER
10444 M:      David E. Box <david.e.box@linux.intel.com>
10445 S:      Supported
10446 F:      drivers/platform/x86/intel/sdsi.c
10447 F:      tools/arch/x86/intel_sdsi/
10448 F:      tools/testing/selftests/drivers/sdsi/
10449
10450 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10451 M:      Daniel Scally <djrscally@gmail.com>
10452 S:      Maintained
10453 F:      drivers/platform/x86/intel/int3472/
10454
10455 INTEL SPEED SELECT TECHNOLOGY
10456 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10457 L:      platform-driver-x86@vger.kernel.org
10458 S:      Maintained
10459 F:      drivers/platform/x86/intel/speed_select_if/
10460 F:      include/uapi/linux/isst_if.h
10461 F:      tools/power/x86/intel-speed-select/
10462
10463 INTEL STRATIX10 FIRMWARE DRIVERS
10464 M:      Dinh Nguyen <dinguyen@kernel.org>
10465 L:      linux-kernel@vger.kernel.org
10466 S:      Maintained
10467 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10468 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10469 F:      drivers/firmware/stratix10-rsu.c
10470 F:      drivers/firmware/stratix10-svc.c
10471 F:      include/linux/firmware/intel/stratix10-smc.h
10472 F:      include/linux/firmware/intel/stratix10-svc-client.h
10473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10474
10475 INTEL TELEMETRY DRIVER
10476 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10477 M:      "David E. Box" <david.e.box@linux.intel.com>
10478 L:      platform-driver-x86@vger.kernel.org
10479 S:      Maintained
10480 F:      arch/x86/include/asm/intel_telemetry.h
10481 F:      drivers/platform/x86/intel/telemetry/
10482
10483 INTEL UNCORE FREQUENCY CONTROL
10484 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10485 L:      platform-driver-x86@vger.kernel.org
10486 S:      Maintained
10487 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10488 F:      drivers/platform/x86/intel/uncore-frequency/
10489
10490 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10491 M:      David E. Box <david.e.box@linux.intel.com>
10492 S:      Supported
10493 F:      drivers/platform/x86/intel/vsec.*
10494
10495 INTEL VIRTUAL BUTTON DRIVER
10496 M:      AceLan Kao <acelan.kao@canonical.com>
10497 L:      platform-driver-x86@vger.kernel.org
10498 S:      Maintained
10499 F:      drivers/platform/x86/intel/vbtn.c
10500
10501 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10502 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10503 L:      linux-wireless@vger.kernel.org
10504 S:      Supported
10505 F:      drivers/net/wireless/intel/iwlegacy/
10506
10507 INTEL WIRELESS WIFI LINK (iwlwifi)
10508 M:      Gregory Greenman <gregory.greenman@intel.com>
10509 L:      linux-wireless@vger.kernel.org
10510 S:      Supported
10511 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10513 F:      drivers/net/wireless/intel/iwlwifi/
10514
10515 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10516 M:      Jithu Joseph <jithu.joseph@intel.com>
10517 R:      Maurice Ma <maurice.ma@intel.com>
10518 S:      Maintained
10519 W:      https://slimbootloader.github.io/security/firmware-update.html
10520 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10521
10522 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10523 L:      Dell.Client.Kernel@dell.com
10524 S:      Maintained
10525 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10526
10527 INTEL WWAN IOSM DRIVER
10528 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10529 M:      Intel Corporation <linuxwwan@intel.com>
10530 L:      netdev@vger.kernel.org
10531 S:      Maintained
10532 F:      drivers/net/wwan/iosm/
10533
10534 INTEL(R) TRACE HUB
10535 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10536 S:      Supported
10537 F:      Documentation/trace/intel_th.rst
10538 F:      drivers/hwtracing/intel_th/
10539 F:      include/linux/intel_th.h
10540
10541 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10542 M:      Ning Sun <ning.sun@intel.com>
10543 L:      tboot-devel@lists.sourceforge.net
10544 S:      Supported
10545 W:      http://tboot.sourceforge.net
10546 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10547 F:      Documentation/x86/intel_txt.rst
10548 F:      arch/x86/kernel/tboot.c
10549 F:      include/linux/tboot.h
10550
10551 INTEL SGX
10552 M:      Jarkko Sakkinen <jarkko@kernel.org>
10553 R:      Dave Hansen <dave.hansen@linux.intel.com>
10554 L:      linux-sgx@vger.kernel.org
10555 S:      Supported
10556 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10558 F:      Documentation/x86/sgx.rst
10559 F:      arch/x86/entry/vdso/vsgx.S
10560 F:      arch/x86/include/asm/sgx.h
10561 F:      arch/x86/include/uapi/asm/sgx.h
10562 F:      arch/x86/kernel/cpu/sgx/*
10563 F:      tools/testing/selftests/sgx/*
10564 K:      \bSGX_
10565
10566 INTERCONNECT API
10567 M:      Georgi Djakov <djakov@kernel.org>
10568 L:      linux-pm@vger.kernel.org
10569 S:      Maintained
10570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10571 F:      Documentation/devicetree/bindings/interconnect/
10572 F:      Documentation/driver-api/interconnect.rst
10573 F:      drivers/interconnect/
10574 F:      include/dt-bindings/interconnect/
10575 F:      include/linux/interconnect-provider.h
10576 F:      include/linux/interconnect.h
10577
10578 INTERRUPT COUNTER DRIVER
10579 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10580 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10581 L:      linux-iio@vger.kernel.org
10582 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10583 F:      drivers/counter/interrupt-cnt.c
10584
10585 INTERSIL ISL7998X VIDEO DECODER DRIVER
10586 M:      Michael Tretter <m.tretter@pengutronix.de>
10587 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10588 L:      linux-media@vger.kernel.org
10589 S:      Maintained
10590 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10591 F:      drivers/media/i2c/isl7998x.c
10592
10593 INVENSENSE ICM-426xx IMU DRIVER
10594 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10595 L:      linux-iio@vger.kernel.org
10596 S:      Maintained
10597 W:      https://invensense.tdk.com/
10598 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10599 F:      drivers/iio/imu/inv_icm42600/
10600
10601 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10602 M:      Linus Walleij <linus.walleij@linaro.org>
10603 L:      linux-iio@vger.kernel.org
10604 S:      Maintained
10605 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10606 F:      drivers/iio/gyro/mpu3050*
10607
10608 IOC3 ETHERNET DRIVER
10609 M:      Ralf Baechle <ralf@linux-mips.org>
10610 L:      linux-mips@vger.kernel.org
10611 S:      Maintained
10612 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10613
10614 IOMAP FILESYSTEM LIBRARY
10615 M:      Christoph Hellwig <hch@infradead.org>
10616 M:      Darrick J. Wong <djwong@kernel.org>
10617 L:      linux-xfs@vger.kernel.org
10618 L:      linux-fsdevel@vger.kernel.org
10619 S:      Supported
10620 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10621 F:      fs/iomap/
10622 F:      include/linux/iomap.h
10623
10624 IOMMU DMA-API LAYER
10625 M:      Robin Murphy <robin.murphy@arm.com>
10626 L:      iommu@lists.linux.dev
10627 S:      Maintained
10628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10629 F:      drivers/iommu/dma-iommu.c
10630 F:      drivers/iommu/iova.c
10631 F:      include/linux/dma-iommu.h
10632 F:      include/linux/iova.h
10633
10634 IOMMU SUBSYSTEM
10635 M:      Joerg Roedel <joro@8bytes.org>
10636 M:      Will Deacon <will@kernel.org>
10637 R:      Robin Murphy <robin.murphy@arm.com>
10638 L:      iommu@lists.linux.dev
10639 S:      Maintained
10640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10641 F:      Documentation/devicetree/bindings/iommu/
10642 F:      Documentation/userspace-api/iommu.rst
10643 F:      drivers/iommu/
10644 F:      include/linux/iommu.h
10645 F:      include/linux/iova.h
10646 F:      include/linux/of_iommu.h
10647 F:      include/uapi/linux/iommu.h
10648
10649 IOSYS-MAP HELPERS
10650 M:      Thomas Zimmermann <tzimmermann@suse.de>
10651 L:      dri-devel@lists.freedesktop.org
10652 S:      Maintained
10653 T:      git git://anongit.freedesktop.org/drm/drm-misc
10654 F:      include/linux/iosys-map.h
10655
10656 IO_URING
10657 M:      Jens Axboe <axboe@kernel.dk>
10658 R:      Pavel Begunkov <asml.silence@gmail.com>
10659 L:      io-uring@vger.kernel.org
10660 S:      Maintained
10661 T:      git git://git.kernel.dk/linux-block
10662 T:      git git://git.kernel.dk/liburing
10663 F:      io_uring/
10664 F:      include/linux/io_uring.h
10665 F:      include/linux/io_uring_types.h
10666 F:      include/uapi/linux/io_uring.h
10667 F:      tools/io_uring/
10668
10669 IPMI SUBSYSTEM
10670 M:      Corey Minyard <minyard@acm.org>
10671 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10672 S:      Supported
10673 W:      http://openipmi.sourceforge.net/
10674 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10675 F:      Documentation/driver-api/ipmi.rst
10676 F:      Documentation/devicetree/bindings/ipmi/
10677 F:      drivers/char/ipmi/
10678 F:      include/linux/ipmi*
10679 F:      include/uapi/linux/ipmi*
10680
10681 IPS SCSI RAID DRIVER
10682 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10683 L:      linux-scsi@vger.kernel.org
10684 S:      Maintained
10685 W:      http://www.adaptec.com/
10686 F:      drivers/scsi/ips*
10687
10688 IPVS
10689 M:      Simon Horman <horms@verge.net.au>
10690 M:      Julian Anastasov <ja@ssi.bg>
10691 L:      netdev@vger.kernel.org
10692 L:      lvs-devel@vger.kernel.org
10693 S:      Maintained
10694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10696 F:      Documentation/networking/ipvs-sysctl.rst
10697 F:      include/net/ip_vs.h
10698 F:      include/uapi/linux/ip_vs.h
10699 F:      net/netfilter/ipvs/
10700
10701 IPWIRELESS DRIVER
10702 M:      Jiri Kosina <jikos@kernel.org>
10703 M:      David Sterba <dsterba@suse.com>
10704 S:      Odd Fixes
10705 F:      drivers/tty/ipwireless/
10706
10707 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10708 M:      Marc Zyngier <maz@kernel.org>
10709 S:      Maintained
10710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10711 F:      Documentation/core-api/irq/irq-domain.rst
10712 F:      include/linux/irqdomain.h
10713 F:      kernel/irq/irqdomain.c
10714 F:      kernel/irq/msi.c
10715
10716 IRQ SUBSYSTEM
10717 M:      Thomas Gleixner <tglx@linutronix.de>
10718 L:      linux-kernel@vger.kernel.org
10719 S:      Maintained
10720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10721 F:      kernel/irq/
10722
10723 IRQCHIP DRIVERS
10724 M:      Thomas Gleixner <tglx@linutronix.de>
10725 M:      Marc Zyngier <maz@kernel.org>
10726 L:      linux-kernel@vger.kernel.org
10727 S:      Maintained
10728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10729 F:      Documentation/devicetree/bindings/interrupt-controller/
10730 F:      drivers/irqchip/
10731
10732 ISA
10733 M:      William Breathitt Gray <william.gray@linaro.org>
10734 S:      Maintained
10735 F:      Documentation/driver-api/isa.rst
10736 F:      drivers/base/isa.c
10737 F:      include/linux/isa.h
10738
10739 ISA RADIO MODULE
10740 M:      Hans Verkuil <hverkuil@xs4all.nl>
10741 L:      linux-media@vger.kernel.org
10742 S:      Maintained
10743 W:      https://linuxtv.org
10744 T:      git git://linuxtv.org/media_tree.git
10745 F:      drivers/media/radio/radio-isa*
10746
10747 ISAPNP
10748 M:      Jaroslav Kysela <perex@perex.cz>
10749 S:      Maintained
10750 F:      Documentation/driver-api/isapnp.rst
10751 F:      drivers/pnp/isapnp/
10752 F:      include/linux/isapnp.h
10753
10754 ISCSI
10755 M:      Lee Duncan <lduncan@suse.com>
10756 M:      Chris Leech <cleech@redhat.com>
10757 M:      Mike Christie <michael.christie@oracle.com>
10758 L:      open-iscsi@googlegroups.com
10759 L:      linux-scsi@vger.kernel.org
10760 S:      Maintained
10761 W:      www.open-iscsi.com
10762 F:      drivers/scsi/*iscsi*
10763 F:      include/scsi/*iscsi*
10764
10765 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10766 M:      Peter Jones <pjones@redhat.com>
10767 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10768 S:      Maintained
10769 F:      drivers/firmware/iscsi_ibft*
10770
10771 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10772 M:      Sagi Grimberg <sagi@grimberg.me>
10773 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10774 L:      linux-rdma@vger.kernel.org
10775 S:      Supported
10776 W:      http://www.openfabrics.org
10777 W:      www.open-iscsi.org
10778 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10779 F:      drivers/infiniband/ulp/iser/
10780
10781 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10782 M:      Sagi Grimberg <sagi@grimberg.me>
10783 L:      linux-rdma@vger.kernel.org
10784 L:      target-devel@vger.kernel.org
10785 S:      Supported
10786 W:      http://www.linux-iscsi.org
10787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10788 F:      drivers/infiniband/ulp/isert
10789
10790 ISDN/CMTP OVER BLUETOOTH
10791 M:      Karsten Keil <isdn@linux-pingi.de>
10792 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10793 L:      netdev@vger.kernel.org
10794 S:      Odd Fixes
10795 W:      http://www.isdn4linux.de
10796 F:      Documentation/isdn/
10797 F:      drivers/isdn/capi/
10798 F:      include/linux/isdn/
10799 F:      include/uapi/linux/isdn/
10800 F:      net/bluetooth/cmtp/
10801
10802 ISDN/mISDN SUBSYSTEM
10803 M:      Karsten Keil <isdn@linux-pingi.de>
10804 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10805 L:      netdev@vger.kernel.org
10806 S:      Maintained
10807 W:      http://www.isdn4linux.de
10808 F:      drivers/isdn/Kconfig
10809 F:      drivers/isdn/Makefile
10810 F:      drivers/isdn/hardware/
10811 F:      drivers/isdn/mISDN/
10812
10813 IT87 HARDWARE MONITORING DRIVER
10814 M:      Jean Delvare <jdelvare@suse.com>
10815 L:      linux-hwmon@vger.kernel.org
10816 S:      Maintained
10817 F:      Documentation/hwmon/it87.rst
10818 F:      drivers/hwmon/it87.c
10819
10820 IT913X MEDIA DRIVER
10821 M:      Antti Palosaari <crope@iki.fi>
10822 L:      linux-media@vger.kernel.org
10823 S:      Maintained
10824 W:      https://linuxtv.org
10825 W:      http://palosaari.fi/linux/
10826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10827 T:      git git://linuxtv.org/anttip/media_tree.git
10828 F:      drivers/media/tuners/it913x*
10829
10830 ITE IT66121 HDMI BRIDGE DRIVER
10831 M:      Phong LE <ple@baylibre.com>
10832 M:      Neil Armstrong <narmstrong@baylibre.com>
10833 S:      Maintained
10834 T:      git git://anongit.freedesktop.org/drm/drm-misc
10835 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10836 F:      drivers/gpu/drm/bridge/ite-it66121.c
10837
10838 IVTV VIDEO4LINUX DRIVER
10839 M:      Andy Walls <awalls@md.metrocast.net>
10840 L:      linux-media@vger.kernel.org
10841 S:      Maintained
10842 W:      https://linuxtv.org
10843 T:      git git://linuxtv.org/media_tree.git
10844 F:      Documentation/admin-guide/media/ivtv*
10845 F:      drivers/media/pci/ivtv/
10846 F:      include/uapi/linux/ivtv*
10847
10848 IX2505V MEDIA DRIVER
10849 M:      Malcolm Priestley <tvboxspy@gmail.com>
10850 L:      linux-media@vger.kernel.org
10851 S:      Maintained
10852 W:      https://linuxtv.org
10853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10854 F:      drivers/media/dvb-frontends/ix2505v*
10855
10856 JAILHOUSE HYPERVISOR INTERFACE
10857 M:      Jan Kiszka <jan.kiszka@siemens.com>
10858 L:      jailhouse-dev@googlegroups.com
10859 S:      Maintained
10860 F:      arch/x86/include/asm/jailhouse_para.h
10861 F:      arch/x86/kernel/jailhouse.c
10862
10863 JC42.4 TEMPERATURE SENSOR DRIVER
10864 M:      Guenter Roeck <linux@roeck-us.net>
10865 L:      linux-hwmon@vger.kernel.org
10866 S:      Maintained
10867 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10868 F:      Documentation/hwmon/jc42.rst
10869 F:      drivers/hwmon/jc42.c
10870
10871 JFS FILESYSTEM
10872 M:      Dave Kleikamp <shaggy@kernel.org>
10873 L:      jfs-discussion@lists.sourceforge.net
10874 S:      Maintained
10875 W:      http://jfs.sourceforge.net/
10876 T:      git git://github.com/kleikamp/linux-shaggy.git
10877 F:      Documentation/admin-guide/jfs.rst
10878 F:      fs/jfs/
10879
10880 JME NETWORK DRIVER
10881 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10882 L:      netdev@vger.kernel.org
10883 S:      Maintained
10884 F:      drivers/net/ethernet/jme.*
10885
10886 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10887 M:      David Woodhouse <dwmw2@infradead.org>
10888 M:      Richard Weinberger <richard@nod.at>
10889 L:      linux-mtd@lists.infradead.org
10890 S:      Odd Fixes
10891 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10892 T:      git git://git.infradead.org/ubifs-2.6.git
10893 F:      fs/jffs2/
10894 F:      include/uapi/linux/jffs2.h
10895
10896 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10897 M:      "Theodore Ts'o" <tytso@mit.edu>
10898 M:      Jan Kara <jack@suse.com>
10899 L:      linux-ext4@vger.kernel.org
10900 S:      Maintained
10901 F:      fs/jbd2/
10902 F:      include/linux/jbd2.h
10903
10904 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10905 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10906 L:      linux-media@vger.kernel.org
10907 L:      linux-renesas-soc@vger.kernel.org
10908 S:      Maintained
10909 F:      drivers/media/platform/renesas/rcar_jpu.c
10910
10911 JSM Neo PCI based serial card
10912 L:      linux-serial@vger.kernel.org
10913 S:      Orphan
10914 F:      drivers/tty/serial/jsm/
10915
10916 K10TEMP HARDWARE MONITORING DRIVER
10917 M:      Clemens Ladisch <clemens@ladisch.de>
10918 L:      linux-hwmon@vger.kernel.org
10919 S:      Maintained
10920 F:      Documentation/hwmon/k10temp.rst
10921 F:      drivers/hwmon/k10temp.c
10922
10923 K8TEMP HARDWARE MONITORING DRIVER
10924 M:      Rudolf Marek <r.marek@assembler.cz>
10925 L:      linux-hwmon@vger.kernel.org
10926 S:      Maintained
10927 F:      Documentation/hwmon/k8temp.rst
10928 F:      drivers/hwmon/k8temp.c
10929
10930 KASAN
10931 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10932 R:      Alexander Potapenko <glider@google.com>
10933 R:      Andrey Konovalov <andreyknvl@gmail.com>
10934 R:      Dmitry Vyukov <dvyukov@google.com>
10935 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10936 L:      kasan-dev@googlegroups.com
10937 S:      Maintained
10938 F:      Documentation/dev-tools/kasan.rst
10939 F:      arch/*/include/asm/*kasan.h
10940 F:      arch/*/mm/kasan_init*
10941 F:      include/linux/kasan*.h
10942 F:      lib/Kconfig.kasan
10943 F:      lib/test_kasan*.c
10944 F:      mm/kasan/
10945 F:      scripts/Makefile.kasan
10946
10947 KCONFIG
10948 M:      Masahiro Yamada <masahiroy@kernel.org>
10949 L:      linux-kbuild@vger.kernel.org
10950 S:      Maintained
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10952 F:      Documentation/kbuild/kconfig*
10953 F:      scripts/Kconfig.include
10954 F:      scripts/kconfig/
10955
10956 KCOV
10957 R:      Dmitry Vyukov <dvyukov@google.com>
10958 R:      Andrey Konovalov <andreyknvl@gmail.com>
10959 L:      kasan-dev@googlegroups.com
10960 S:      Maintained
10961 F:      Documentation/dev-tools/kcov.rst
10962 F:      include/linux/kcov.h
10963 F:      include/uapi/linux/kcov.h
10964 F:      kernel/kcov.c
10965 F:      scripts/Makefile.kcov
10966
10967 KCSAN
10968 M:      Marco Elver <elver@google.com>
10969 R:      Dmitry Vyukov <dvyukov@google.com>
10970 L:      kasan-dev@googlegroups.com
10971 S:      Maintained
10972 F:      Documentation/dev-tools/kcsan.rst
10973 F:      include/linux/kcsan*.h
10974 F:      kernel/kcsan/
10975 F:      lib/Kconfig.kcsan
10976 F:      scripts/Makefile.kcsan
10977
10978 KDUMP
10979 M:      Baoquan He <bhe@redhat.com>
10980 R:      Vivek Goyal <vgoyal@redhat.com>
10981 R:      Dave Young <dyoung@redhat.com>
10982 L:      kexec@lists.infradead.org
10983 S:      Maintained
10984 W:      http://lse.sourceforge.net/kdump/
10985 F:      Documentation/admin-guide/kdump/
10986 F:      fs/proc/vmcore.c
10987 F:      include/linux/crash_core.h
10988 F:      include/linux/crash_dump.h
10989 F:      include/uapi/linux/vmcore.h
10990 F:      kernel/crash_*.c
10991
10992 KEENE FM RADIO TRANSMITTER DRIVER
10993 M:      Hans Verkuil <hverkuil@xs4all.nl>
10994 L:      linux-media@vger.kernel.org
10995 S:      Maintained
10996 W:      https://linuxtv.org
10997 T:      git git://linuxtv.org/media_tree.git
10998 F:      drivers/media/radio/radio-keene*
10999
11000 KERNEL AUTOMOUNTER
11001 M:      Ian Kent <raven@themaw.net>
11002 L:      autofs@vger.kernel.org
11003 S:      Maintained
11004 F:      fs/autofs/
11005
11006 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11007 M:      Masahiro Yamada <masahiroy@kernel.org>
11008 M:      Michal Marek <michal.lkml@markovi.net>
11009 R:      Nick Desaulniers <ndesaulniers@google.com>
11010 L:      linux-kbuild@vger.kernel.org
11011 S:      Maintained
11012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11013 F:      Documentation/kbuild/
11014 F:      Makefile
11015 F:      scripts/*vmlinux*
11016 F:      scripts/Kbuild*
11017 F:      scripts/Makefile*
11018 F:      scripts/basic/
11019 F:      scripts/dummy-tools/
11020 F:      scripts/mk*
11021 F:      scripts/mod/
11022 F:      scripts/package/
11023
11024 KERNEL HARDENING (not covered by other areas)
11025 M:      Kees Cook <keescook@chromium.org>
11026 L:      linux-hardening@vger.kernel.org
11027 S:      Supported
11028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11029 F:      include/linux/overflow.h
11030 F:      include/linux/randomize_kstack.h
11031 F:      mm/usercopy.c
11032 K:      \b(add|choose)_random_kstack_offset\b
11033 K:      \b__check_(object_size|heap_object)\b
11034
11035 KERNEL JANITORS
11036 L:      kernel-janitors@vger.kernel.org
11037 S:      Odd Fixes
11038 W:      http://kernelnewbies.org/KernelJanitors
11039
11040 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11041 M:      Chuck Lever <chuck.lever@oracle.com>
11042 M:      Jeff Layton <jlayton@kernel.org>
11043 L:      linux-nfs@vger.kernel.org
11044 S:      Supported
11045 W:      http://nfs.sourceforge.net/
11046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11047 F:      fs/lockd/
11048 F:      fs/nfs_common/
11049 F:      fs/nfsd/
11050 F:      include/linux/lockd/
11051 F:      include/linux/sunrpc/
11052 F:      include/uapi/linux/nfsd/
11053 F:      include/uapi/linux/sunrpc/
11054 F:      net/sunrpc/
11055 F:      Documentation/filesystems/nfs/
11056
11057 KERNEL REGRESSIONS
11058 M:      Thorsten Leemhuis <linux@leemhuis.info>
11059 L:      regressions@lists.linux.dev
11060 S:      Supported
11061 F:      Documentation/admin-guide/reporting-regressions.rst
11062 F:      Documentation/process/handling-regressions.rst
11063
11064 KERNEL SELFTEST FRAMEWORK
11065 M:      Shuah Khan <shuah@kernel.org>
11066 M:      Shuah Khan <skhan@linuxfoundation.org>
11067 L:      linux-kselftest@vger.kernel.org
11068 S:      Maintained
11069 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11071 F:      Documentation/dev-tools/kselftest*
11072 F:      tools/testing/selftests/
11073
11074 KERNEL SMB3 SERVER (KSMBD)
11075 M:      Namjae Jeon <linkinjeon@kernel.org>
11076 M:      Steve French <sfrench@samba.org>
11077 M:      Hyunchul Lee <hyc.lee@gmail.com>
11078 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11079 L:      linux-cifs@vger.kernel.org
11080 S:      Maintained
11081 T:      git git://git.samba.org/ksmbd.git
11082 F:      Documentation/filesystems/cifs/ksmbd.rst
11083 F:      fs/ksmbd/
11084 F:      fs/smbfs_common/
11085
11086 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11087 M:      Brendan Higgins <brendanhiggins@google.com>
11088 M:      David Gow <davidgow@google.com>
11089 L:      linux-kselftest@vger.kernel.org
11090 L:      kunit-dev@googlegroups.com
11091 S:      Maintained
11092 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11093 F:      Documentation/dev-tools/kunit/
11094 F:      include/kunit/
11095 F:      lib/kunit/
11096 F:      tools/testing/kunit/
11097
11098 KERNEL USERMODE HELPER
11099 M:      Luis Chamberlain <mcgrof@kernel.org>
11100 L:      linux-kernel@vger.kernel.org
11101 S:      Maintained
11102 F:      include/linux/umh.h
11103 F:      kernel/umh.c
11104
11105 KERNEL VIRTUAL MACHINE (KVM)
11106 M:      Paolo Bonzini <pbonzini@redhat.com>
11107 L:      kvm@vger.kernel.org
11108 S:      Supported
11109 W:      http://www.linux-kvm.org
11110 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11111 F:      Documentation/virt/kvm/
11112 F:      include/asm-generic/kvm*
11113 F:      include/kvm/iodev.h
11114 F:      include/linux/kvm*
11115 F:      include/trace/events/kvm.h
11116 F:      include/uapi/asm-generic/kvm*
11117 F:      include/uapi/linux/kvm*
11118 F:      tools/kvm/
11119 F:      tools/testing/selftests/kvm/
11120 F:      virt/kvm/*
11121
11122 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11123 M:      Marc Zyngier <maz@kernel.org>
11124 R:      James Morse <james.morse@arm.com>
11125 R:      Alexandru Elisei <alexandru.elisei@arm.com>
11126 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11127 R:      Oliver Upton <oliver.upton@linux.dev>
11128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11129 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
11130 S:      Maintained
11131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11132 F:      arch/arm64/include/asm/kvm*
11133 F:      arch/arm64/include/uapi/asm/kvm*
11134 F:      arch/arm64/kvm/
11135 F:      include/kvm/arm_*
11136 F:      tools/testing/selftests/kvm/*/aarch64/
11137 F:      tools/testing/selftests/kvm/aarch64/
11138
11139 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11140 M:      Huacai Chen <chenhuacai@kernel.org>
11141 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11142 L:      linux-mips@vger.kernel.org
11143 L:      kvm@vger.kernel.org
11144 S:      Maintained
11145 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11146 F:      arch/mips/include/asm/kvm*
11147 F:      arch/mips/include/uapi/asm/kvm*
11148 F:      arch/mips/kvm/
11149
11150 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11151 L:      linuxppc-dev@lists.ozlabs.org
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11153 F:      arch/powerpc/include/asm/kvm*
11154 F:      arch/powerpc/include/uapi/asm/kvm*
11155 F:      arch/powerpc/kernel/kvm*
11156 F:      arch/powerpc/kvm/
11157
11158 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11159 M:      Anup Patel <anup@brainfault.org>
11160 R:      Atish Patra <atishp@atishpatra.org>
11161 L:      kvm@vger.kernel.org
11162 L:      kvm-riscv@lists.infradead.org
11163 L:      linux-riscv@lists.infradead.org
11164 S:      Maintained
11165 T:      git git://github.com/kvm-riscv/linux.git
11166 F:      arch/riscv/include/asm/kvm*
11167 F:      arch/riscv/include/uapi/asm/kvm*
11168 F:      arch/riscv/kvm/
11169 F:      tools/testing/selftests/kvm/*/riscv/
11170
11171 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11172 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11173 M:      Janosch Frank <frankja@linux.ibm.com>
11174 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11175 R:      David Hildenbrand <david@redhat.com>
11176 L:      kvm@vger.kernel.org
11177 S:      Supported
11178 W:      http://www.ibm.com/developerworks/linux/linux390/
11179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11180 F:      Documentation/virt/kvm/s390*
11181 F:      arch/s390/include/asm/gmap.h
11182 F:      arch/s390/include/asm/kvm*
11183 F:      arch/s390/include/uapi/asm/kvm*
11184 F:      arch/s390/include/uapi/asm/uvdevice.h
11185 F:      arch/s390/kernel/uv.c
11186 F:      arch/s390/kvm/
11187 F:      arch/s390/mm/gmap.c
11188 F:      drivers/s390/char/uvdevice.c
11189 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11190 F:      tools/testing/selftests/kvm/*/s390x/
11191 F:      tools/testing/selftests/kvm/s390x/
11192
11193 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11194 M:      Sean Christopherson <seanjc@google.com>
11195 M:      Paolo Bonzini <pbonzini@redhat.com>
11196 L:      kvm@vger.kernel.org
11197 S:      Supported
11198 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11199 F:      arch/x86/include/asm/kvm*
11200 F:      arch/x86/include/asm/svm.h
11201 F:      arch/x86/include/asm/vmx*.h
11202 F:      arch/x86/include/uapi/asm/kvm*
11203 F:      arch/x86/include/uapi/asm/svm.h
11204 F:      arch/x86/include/uapi/asm/vmx.h
11205 F:      arch/x86/kvm/
11206 F:      arch/x86/kvm/*/
11207
11208 KVM PARAVIRT (KVM/paravirt)
11209 M:      Paolo Bonzini <pbonzini@redhat.com>
11210 R:      Wanpeng Li <wanpengli@tencent.com>
11211 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11212 L:      kvm@vger.kernel.org
11213 S:      Supported
11214 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11215 F:      arch/x86/kernel/kvm.c
11216 F:      arch/x86/kernel/kvmclock.c
11217 F:      arch/x86/include/asm/pvclock-abi.h
11218 F:      include/linux/kvm_para.h
11219 F:      include/uapi/linux/kvm_para.h
11220 F:      include/uapi/asm-generic/kvm_para.h
11221 F:      include/asm-generic/kvm_para.h
11222 F:      arch/um/include/asm/kvm_para.h
11223 F:      arch/x86/include/asm/kvm_para.h
11224 F:      arch/x86/include/uapi/asm/kvm_para.h
11225
11226 KVM X86 HYPER-V (KVM/hyper-v)
11227 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11228 M:      Sean Christopherson <seanjc@google.com>
11229 M:      Paolo Bonzini <pbonzini@redhat.com>
11230 L:      kvm@vger.kernel.org
11231 S:      Supported
11232 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11233 F:      arch/x86/kvm/hyperv.*
11234 F:      arch/x86/kvm/kvm_onhyperv.*
11235 F:      arch/x86/kvm/svm/hyperv.*
11236 F:      arch/x86/kvm/svm/svm_onhyperv.*
11237 F:      arch/x86/kvm/vmx/evmcs.*
11238
11239 KERNFS
11240 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11241 M:      Tejun Heo <tj@kernel.org>
11242 S:      Supported
11243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11244 F:      fs/kernfs/
11245 F:      include/linux/kernfs.h
11246
11247 KEXEC
11248 M:      Eric Biederman <ebiederm@xmission.com>
11249 L:      kexec@lists.infradead.org
11250 S:      Maintained
11251 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11252 F:      include/linux/kexec.h
11253 F:      include/uapi/linux/kexec.h
11254 F:      kernel/kexec*
11255
11256 KEYS-ENCRYPTED
11257 M:      Mimi Zohar <zohar@linux.ibm.com>
11258 L:      linux-integrity@vger.kernel.org
11259 L:      keyrings@vger.kernel.org
11260 S:      Supported
11261 F:      Documentation/security/keys/trusted-encrypted.rst
11262 F:      include/keys/encrypted-type.h
11263 F:      security/keys/encrypted-keys/
11264
11265 KEYS-TRUSTED
11266 M:      James Bottomley <jejb@linux.ibm.com>
11267 M:      Jarkko Sakkinen <jarkko@kernel.org>
11268 M:      Mimi Zohar <zohar@linux.ibm.com>
11269 L:      linux-integrity@vger.kernel.org
11270 L:      keyrings@vger.kernel.org
11271 S:      Supported
11272 F:      Documentation/security/keys/trusted-encrypted.rst
11273 F:      include/keys/trusted-type.h
11274 F:      include/keys/trusted_tpm.h
11275 F:      security/keys/trusted-keys/
11276
11277 KEYS-TRUSTED-TEE
11278 M:      Sumit Garg <sumit.garg@linaro.org>
11279 L:      linux-integrity@vger.kernel.org
11280 L:      keyrings@vger.kernel.org
11281 S:      Supported
11282 F:      include/keys/trusted_tee.h
11283 F:      security/keys/trusted-keys/trusted_tee.c
11284
11285 KEYS-TRUSTED-CAAM
11286 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11287 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11288 L:      linux-integrity@vger.kernel.org
11289 L:      keyrings@vger.kernel.org
11290 S:      Maintained
11291 F:      include/keys/trusted_caam.h
11292 F:      security/keys/trusted-keys/trusted_caam.c
11293
11294 KEYS/KEYRINGS
11295 M:      David Howells <dhowells@redhat.com>
11296 M:      Jarkko Sakkinen <jarkko@kernel.org>
11297 L:      keyrings@vger.kernel.org
11298 S:      Maintained
11299 F:      Documentation/security/keys/core.rst
11300 F:      include/keys/
11301 F:      include/linux/key-type.h
11302 F:      include/linux/key.h
11303 F:      include/linux/keyctl.h
11304 F:      include/uapi/linux/keyctl.h
11305 F:      security/keys/
11306
11307 KEYS/KEYRINGS_INTEGRITY
11308 M:      Jarkko Sakkinen <jarkko@kernel.org>
11309 M:      Mimi Zohar <zohar@linux.ibm.com>
11310 L:      linux-integrity@vger.kernel.org
11311 L:      keyrings@vger.kernel.org
11312 S:      Supported
11313 F:      security/integrity/platform_certs
11314
11315 KFENCE
11316 M:      Alexander Potapenko <glider@google.com>
11317 M:      Marco Elver <elver@google.com>
11318 R:      Dmitry Vyukov <dvyukov@google.com>
11319 L:      kasan-dev@googlegroups.com
11320 S:      Maintained
11321 F:      Documentation/dev-tools/kfence.rst
11322 F:      arch/*/include/asm/kfence.h
11323 F:      include/linux/kfence.h
11324 F:      lib/Kconfig.kfence
11325 F:      mm/kfence/
11326
11327 KFIFO
11328 M:      Stefani Seibold <stefani@seibold.net>
11329 S:      Maintained
11330 F:      include/linux/kfifo.h
11331 F:      lib/kfifo.c
11332 F:      samples/kfifo/
11333
11334 KGDB / KDB /debug_core
11335 M:      Jason Wessel <jason.wessel@windriver.com>
11336 M:      Daniel Thompson <daniel.thompson@linaro.org>
11337 R:      Douglas Anderson <dianders@chromium.org>
11338 L:      kgdb-bugreport@lists.sourceforge.net
11339 S:      Maintained
11340 W:      http://kgdb.wiki.kernel.org/
11341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11342 F:      Documentation/dev-tools/kgdb.rst
11343 F:      drivers/misc/kgdbts.c
11344 F:      drivers/tty/serial/kgdboc.c
11345 F:      include/linux/kdb.h
11346 F:      include/linux/kgdb.h
11347 F:      kernel/debug/
11348 F:      kernel/module/kdb.c
11349
11350 KHADAS MCU MFD DRIVER
11351 M:      Neil Armstrong <narmstrong@baylibre.com>
11352 L:      linux-amlogic@lists.infradead.org
11353 S:      Maintained
11354 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11355 F:      drivers/mfd/khadas-mcu.c
11356 F:      include/linux/mfd/khadas-mcu.h
11357 F:      drivers/thermal/khadas_mcu_fan.c
11358
11359 KMEMLEAK
11360 M:      Catalin Marinas <catalin.marinas@arm.com>
11361 S:      Maintained
11362 F:      Documentation/dev-tools/kmemleak.rst
11363 F:      include/linux/kmemleak.h
11364 F:      mm/kmemleak.c
11365 F:      samples/kmemleak/kmemleak-test.c
11366
11367 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11368 M:      Luis Chamberlain <mcgrof@kernel.org>
11369 L:      linux-kernel@vger.kernel.org
11370 L:      linux-modules@vger.kernel.org
11371 S:      Maintained
11372 F:      include/linux/kmod.h
11373 F:      kernel/kmod.c
11374 F:      lib/test_kmod.c
11375 F:      tools/testing/selftests/kmod/
11376
11377 KPROBES
11378 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11379 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11380 M:      "David S. Miller" <davem@davemloft.net>
11381 M:      Masami Hiramatsu <mhiramat@kernel.org>
11382 S:      Maintained
11383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11384 F:      Documentation/trace/kprobes.rst
11385 F:      include/asm-generic/kprobes.h
11386 F:      include/linux/kprobes.h
11387 F:      kernel/kprobes.c
11388 F:      lib/test_kprobes.c
11389 F:      samples/kprobes
11390
11391 KS0108 LCD CONTROLLER DRIVER
11392 M:      Miguel Ojeda <ojeda@kernel.org>
11393 S:      Maintained
11394 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11395 F:      drivers/auxdisplay/ks0108.c
11396 F:      include/linux/ks0108.h
11397
11398 KTD253 BACKLIGHT DRIVER
11399 M:      Linus Walleij <linus.walleij@linaro.org>
11400 S:      Maintained
11401 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11402 F:      drivers/video/backlight/ktd253-backlight.c
11403
11404 KTEST
11405 M:      Steven Rostedt <rostedt@goodmis.org>
11406 M:      John Hawley <warthog9@eaglescrag.net>
11407 S:      Maintained
11408 F:      tools/testing/ktest
11409
11410 L3MDEV
11411 M:      David Ahern <dsahern@kernel.org>
11412 L:      netdev@vger.kernel.org
11413 S:      Maintained
11414 F:      include/net/l3mdev.h
11415 F:      net/l3mdev
11416
11417 LANDLOCK SECURITY MODULE
11418 M:      Mickaël Salaün <mic@digikod.net>
11419 L:      linux-security-module@vger.kernel.org
11420 S:      Supported
11421 W:      https://landlock.io
11422 T:      git https://github.com/landlock-lsm/linux.git
11423 F:      Documentation/security/landlock.rst
11424 F:      Documentation/userspace-api/landlock.rst
11425 F:      include/uapi/linux/landlock.h
11426 F:      samples/landlock/
11427 F:      security/landlock/
11428 F:      tools/testing/selftests/landlock/
11429 K:      landlock
11430 K:      LANDLOCK
11431
11432 LANTIQ / INTEL Ethernet drivers
11433 M:      Hauke Mehrtens <hauke@hauke-m.de>
11434 L:      netdev@vger.kernel.org
11435 S:      Maintained
11436 F:      drivers/net/dsa/lantiq_gswip.c
11437 F:      drivers/net/dsa/lantiq_pce.h
11438 F:      drivers/net/ethernet/lantiq_xrx200.c
11439 F:      net/dsa/tag_gswip.c
11440
11441 LANTIQ MIPS ARCHITECTURE
11442 M:      John Crispin <john@phrozen.org>
11443 L:      linux-mips@vger.kernel.org
11444 S:      Maintained
11445 F:      arch/mips/lantiq
11446 F:      drivers/soc/lantiq
11447
11448 LASI 53c700 driver for PARISC
11449 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11450 L:      linux-scsi@vger.kernel.org
11451 S:      Maintained
11452 F:      Documentation/scsi/53c700.rst
11453 F:      drivers/scsi/53c700*
11454
11455 LEAKING_ADDRESSES
11456 M:      Tobin C. Harding <me@tobin.cc>
11457 M:      Tycho Andersen <tycho@tycho.pizza>
11458 L:      linux-hardening@vger.kernel.org
11459 S:      Maintained
11460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11461 F:      scripts/leaking_addresses.pl
11462
11463 LED SUBSYSTEM
11464 M:      Pavel Machek <pavel@ucw.cz>
11465 L:      linux-leds@vger.kernel.org
11466 S:      Maintained
11467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11468 F:      Documentation/devicetree/bindings/leds/
11469 F:      drivers/leds/
11470 F:      include/linux/leds.h
11471
11472 LEGACY EEPROM DRIVER
11473 M:      Jean Delvare <jdelvare@suse.com>
11474 S:      Maintained
11475 F:      Documentation/misc-devices/eeprom.rst
11476 F:      drivers/misc/eeprom/eeprom.c
11477
11478 LEGO MINDSTORMS EV3
11479 R:      David Lechner <david@lechnology.com>
11480 S:      Maintained
11481 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11482 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11483 F:      drivers/power/supply/lego_ev3_battery.c
11484
11485 LEGO USB Tower driver
11486 M:      Juergen Stuber <starblue@users.sourceforge.net>
11487 L:      legousb-devel@lists.sourceforge.net
11488 S:      Maintained
11489 W:      http://legousb.sourceforge.net/
11490 F:      drivers/usb/misc/legousbtower.c
11491
11492 LETSKETCH HID TABLET DRIVER
11493 M:      Hans de Goede <hdegoede@redhat.com>
11494 L:      linux-input@vger.kernel.org
11495 S:      Maintained
11496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11497 F:      drivers/hid/hid-letsketch.c
11498
11499 LG LAPTOP EXTRAS
11500 M:      Matan Ziv-Av <matan@svgalib.org>
11501 L:      platform-driver-x86@vger.kernel.org
11502 S:      Maintained
11503 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11504 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11505 F:      drivers/platform/x86/lg-laptop.c
11506
11507 LG2160 MEDIA DRIVER
11508 M:      Michael Krufky <mkrufky@linuxtv.org>
11509 L:      linux-media@vger.kernel.org
11510 S:      Maintained
11511 W:      https://linuxtv.org
11512 W:      http://github.com/mkrufky
11513 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11514 T:      git git://linuxtv.org/mkrufky/tuners.git
11515 F:      drivers/media/dvb-frontends/lg2160.*
11516
11517 LGDT3305 MEDIA DRIVER
11518 M:      Michael Krufky <mkrufky@linuxtv.org>
11519 L:      linux-media@vger.kernel.org
11520 S:      Maintained
11521 W:      https://linuxtv.org
11522 W:      http://github.com/mkrufky
11523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11524 T:      git git://linuxtv.org/mkrufky/tuners.git
11525 F:      drivers/media/dvb-frontends/lgdt3305.*
11526
11527 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11528 M:      Viresh Kumar <vireshk@kernel.org>
11529 L:      linux-ide@vger.kernel.org
11530 S:      Maintained
11531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11532 F:      drivers/ata/pata_arasan_cf.c
11533 F:      include/linux/pata_arasan_cf_data.h
11534
11535 LIBATA PATA DRIVERS
11536 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11537 L:      linux-ide@vger.kernel.org
11538 F:      drivers/ata/ata_*.c
11539 F:      drivers/ata/pata_*.c
11540
11541 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11542 M:      Linus Walleij <linus.walleij@linaro.org>
11543 L:      linux-ide@vger.kernel.org
11544 S:      Maintained
11545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11546 F:      drivers/ata/pata_ftide010.c
11547 F:      drivers/ata/sata_gemini.c
11548 F:      drivers/ata/sata_gemini.h
11549
11550 LIBATA SATA AHCI PLATFORM devices support
11551 M:      Hans de Goede <hdegoede@redhat.com>
11552 M:      Jens Axboe <axboe@kernel.dk>
11553 L:      linux-ide@vger.kernel.org
11554 S:      Maintained
11555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11556 F:      drivers/ata/ahci_platform.c
11557 F:      drivers/ata/libahci_platform.c
11558 F:      include/linux/ahci_platform.h
11559
11560 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11561 M:      Mikael Pettersson <mikpelinux@gmail.com>
11562 L:      linux-ide@vger.kernel.org
11563 S:      Maintained
11564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11565 F:      drivers/ata/sata_promise.*
11566
11567 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11568 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11569 L:      linux-ide@vger.kernel.org
11570 S:      Maintained
11571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11572 F:      Documentation/ABI/testing/sysfs-ata
11573 F:      Documentation/devicetree/bindings/ata/
11574 F:      drivers/ata/
11575 F:      include/linux/ata.h
11576 F:      include/linux/libata.h
11577
11578 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11579 M:      Vishal Verma <vishal.l.verma@intel.com>
11580 M:      Dan Williams <dan.j.williams@intel.com>
11581 M:      Dave Jiang <dave.jiang@intel.com>
11582 L:      nvdimm@lists.linux.dev
11583 S:      Supported
11584 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11585 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11586 F:      drivers/nvdimm/btt*
11587
11588 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11589 M:      Dan Williams <dan.j.williams@intel.com>
11590 M:      Vishal Verma <vishal.l.verma@intel.com>
11591 M:      Dave Jiang <dave.jiang@intel.com>
11592 L:      nvdimm@lists.linux.dev
11593 S:      Supported
11594 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11595 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11596 F:      drivers/nvdimm/pmem*
11597
11598 LIBNVDIMM: DEVICETREE BINDINGS
11599 M:      Oliver O'Halloran <oohall@gmail.com>
11600 L:      nvdimm@lists.linux.dev
11601 S:      Supported
11602 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11603 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11604 F:      drivers/nvdimm/of_pmem.c
11605
11606 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11607 M:      Dan Williams <dan.j.williams@intel.com>
11608 M:      Vishal Verma <vishal.l.verma@intel.com>
11609 M:      Dave Jiang <dave.jiang@intel.com>
11610 M:      Ira Weiny <ira.weiny@intel.com>
11611 L:      nvdimm@lists.linux.dev
11612 S:      Supported
11613 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11614 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11616 F:      drivers/acpi/nfit/*
11617 F:      drivers/nvdimm/*
11618 F:      include/linux/libnvdimm.h
11619 F:      include/linux/nd.h
11620 F:      include/uapi/linux/ndctl.h
11621 F:      tools/testing/nvdimm/
11622
11623 LICENSES and SPDX stuff
11624 M:      Thomas Gleixner <tglx@linutronix.de>
11625 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11626 L:      linux-spdx@vger.kernel.org
11627 S:      Maintained
11628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11629 F:      COPYING
11630 F:      Documentation/process/license-rules.rst
11631 F:      LICENSES/
11632 F:      scripts/spdxcheck-test.sh
11633 F:      scripts/spdxcheck.py
11634 F:      scripts/spdxexclude
11635
11636 LINEAR RANGES HELPERS
11637 M:      Mark Brown <broonie@kernel.org>
11638 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11639 F:      lib/linear_ranges.c
11640 F:      lib/test_linear_ranges.c
11641 F:      include/linux/linear_range.h
11642
11643 LINUX FOR POWER MACINTOSH
11644 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11645 L:      linuxppc-dev@lists.ozlabs.org
11646 S:      Odd Fixes
11647 F:      arch/powerpc/platforms/powermac/
11648 F:      drivers/macintosh/
11649
11650 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11651 M:      Michael Ellerman <mpe@ellerman.id.au>
11652 R:      Nicholas Piggin <npiggin@gmail.com>
11653 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11654 L:      linuxppc-dev@lists.ozlabs.org
11655 S:      Supported
11656 W:      https://github.com/linuxppc/wiki/wiki
11657 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11659 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11660 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11661 F:      Documentation/devicetree/bindings/powerpc/
11662 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11663 F:      Documentation/powerpc/
11664 F:      arch/powerpc/
11665 F:      drivers/*/*/*pasemi*
11666 F:      drivers/*/*pasemi*
11667 F:      drivers/char/tpm/tpm_ibmvtpm*
11668 F:      drivers/crypto/nx/
11669 F:      drivers/crypto/vmx/
11670 F:      drivers/i2c/busses/i2c-opal.c
11671 F:      drivers/net/ethernet/ibm/ibmveth.*
11672 F:      drivers/net/ethernet/ibm/ibmvnic.*
11673 F:      drivers/pci/hotplug/pnv_php.c
11674 F:      drivers/pci/hotplug/rpa*
11675 F:      drivers/rtc/rtc-opal.c
11676 F:      drivers/scsi/ibmvscsi/
11677 F:      drivers/tty/hvc/hvc_opal.c
11678 F:      drivers/watchdog/wdrtas.c
11679 F:      tools/testing/selftests/powerpc
11680 N:      /pmac
11681 N:      powermac
11682 N:      powernv
11683 N:      [^a-z0-9]ps3
11684 N:      pseries
11685
11686 LINUX FOR POWERPC EMBEDDED MPC5XXX
11687 M:      Anatolij Gustschin <agust@denx.de>
11688 L:      linuxppc-dev@lists.ozlabs.org
11689 S:      Odd Fixes
11690 F:      arch/powerpc/platforms/512x/
11691 F:      arch/powerpc/platforms/52xx/
11692
11693 LINUX FOR POWERPC EMBEDDED PPC4XX
11694 L:      linuxppc-dev@lists.ozlabs.org
11695 S:      Orphan
11696 F:      arch/powerpc/platforms/40x/
11697 F:      arch/powerpc/platforms/44x/
11698
11699 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11700 M:      Scott Wood <oss@buserror.net>
11701 L:      linuxppc-dev@lists.ozlabs.org
11702 S:      Odd fixes
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11704 F:      Documentation/devicetree/bindings/powerpc/fsl/
11705 F:      arch/powerpc/platforms/83xx/
11706 F:      arch/powerpc/platforms/85xx/
11707
11708 LINUX FOR POWERPC EMBEDDED PPC8XX
11709 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11710 L:      linuxppc-dev@lists.ozlabs.org
11711 S:      Maintained
11712 F:      arch/powerpc/platforms/8xx/
11713
11714 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11715 M:      Kees Cook <keescook@chromium.org>
11716 S:      Maintained
11717 F:      drivers/misc/lkdtm/*
11718 F:      tools/testing/selftests/lkdtm/*
11719
11720 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11721 M:      Alan Stern <stern@rowland.harvard.edu>
11722 M:      Andrea Parri <parri.andrea@gmail.com>
11723 M:      Will Deacon <will@kernel.org>
11724 M:      Peter Zijlstra <peterz@infradead.org>
11725 M:      Boqun Feng <boqun.feng@gmail.com>
11726 M:      Nicholas Piggin <npiggin@gmail.com>
11727 M:      David Howells <dhowells@redhat.com>
11728 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11729 M:      Luc Maranget <luc.maranget@inria.fr>
11730 M:      "Paul E. McKenney" <paulmck@kernel.org>
11731 R:      Akira Yokosawa <akiyks@gmail.com>
11732 R:      Daniel Lustig <dlustig@nvidia.com>
11733 R:      Joel Fernandes <joel@joelfernandes.org>
11734 L:      linux-kernel@vger.kernel.org
11735 L:      linux-arch@vger.kernel.org
11736 S:      Supported
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11738 F:      Documentation/atomic_bitops.txt
11739 F:      Documentation/atomic_t.txt
11740 F:      Documentation/core-api/refcount-vs-atomic.rst
11741 F:      Documentation/litmus-tests/
11742 F:      Documentation/memory-barriers.txt
11743 F:      tools/memory-model/
11744
11745 LIS3LV02D ACCELEROMETER DRIVER
11746 M:      Eric Piel <eric.piel@tremplin-utc.net>
11747 S:      Maintained
11748 F:      Documentation/misc-devices/lis3lv02d.rst
11749 F:      drivers/misc/lis3lv02d/
11750 F:      drivers/platform/x86/hp_accel.c
11751
11752 LIST KUNIT TEST
11753 M:      David Gow <davidgow@google.com>
11754 L:      linux-kselftest@vger.kernel.org
11755 L:      kunit-dev@googlegroups.com
11756 S:      Maintained
11757 F:      lib/list-test.c
11758
11759 LITEX PLATFORM
11760 M:      Karol Gugala <kgugala@antmicro.com>
11761 M:      Mateusz Holenko <mholenko@antmicro.com>
11762 M:      Gabriel Somlo <gsomlo@gmail.com>
11763 M:      Joel Stanley <joel@jms.id.au>
11764 S:      Maintained
11765 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11766 F:      arch/openrisc/boot/dts/or1klitex.dts
11767 F:      include/linux/litex.h
11768 F:      drivers/tty/serial/liteuart.c
11769 F:      drivers/soc/litex/*
11770 F:      drivers/net/ethernet/litex/*
11771 F:      drivers/mmc/host/litex_mmc.c
11772 N:      litex
11773
11774 LIVE PATCHING
11775 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11776 M:      Jiri Kosina <jikos@kernel.org>
11777 M:      Miroslav Benes <mbenes@suse.cz>
11778 M:      Petr Mladek <pmladek@suse.com>
11779 R:      Joe Lawrence <joe.lawrence@redhat.com>
11780 L:      live-patching@vger.kernel.org
11781 S:      Maintained
11782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11783 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11784 F:      Documentation/livepatch/
11785 F:      arch/powerpc/include/asm/livepatch.h
11786 F:      include/linux/livepatch.h
11787 F:      kernel/livepatch/
11788 F:      kernel/module/livepatch.c
11789 F:      lib/livepatch/
11790 F:      samples/livepatch/
11791 F:      tools/testing/selftests/livepatch/
11792
11793 LLC (802.2)
11794 L:      netdev@vger.kernel.org
11795 S:      Odd fixes
11796 F:      include/linux/llc.h
11797 F:      include/net/llc*
11798 F:      include/uapi/linux/llc.h
11799 F:      net/llc/
11800
11801 LM73 HARDWARE MONITOR DRIVER
11802 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11803 L:      linux-hwmon@vger.kernel.org
11804 S:      Maintained
11805 F:      drivers/hwmon/lm73.c
11806
11807 LM78 HARDWARE MONITOR DRIVER
11808 M:      Jean Delvare <jdelvare@suse.com>
11809 L:      linux-hwmon@vger.kernel.org
11810 S:      Maintained
11811 F:      Documentation/hwmon/lm78.rst
11812 F:      drivers/hwmon/lm78.c
11813
11814 LM83 HARDWARE MONITOR DRIVER
11815 M:      Jean Delvare <jdelvare@suse.com>
11816 L:      linux-hwmon@vger.kernel.org
11817 S:      Maintained
11818 F:      Documentation/hwmon/lm83.rst
11819 F:      drivers/hwmon/lm83.c
11820
11821 LM90 HARDWARE MONITOR DRIVER
11822 M:      Jean Delvare <jdelvare@suse.com>
11823 L:      linux-hwmon@vger.kernel.org
11824 S:      Maintained
11825 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11826 F:      Documentation/hwmon/lm90.rst
11827 F:      drivers/hwmon/lm90.c
11828 F:      include/dt-bindings/thermal/lm90.h
11829
11830 LM95234 HARDWARE MONITOR DRIVER
11831 M:      Guenter Roeck <linux@roeck-us.net>
11832 L:      linux-hwmon@vger.kernel.org
11833 S:      Maintained
11834 F:      Documentation/hwmon/lm95234.rst
11835 F:      drivers/hwmon/lm95234.c
11836
11837 LME2510 MEDIA DRIVER
11838 M:      Malcolm Priestley <tvboxspy@gmail.com>
11839 L:      linux-media@vger.kernel.org
11840 S:      Maintained
11841 W:      https://linuxtv.org
11842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11843 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11844
11845 LOADPIN SECURITY MODULE
11846 M:      Kees Cook <keescook@chromium.org>
11847 S:      Supported
11848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11849 F:      Documentation/admin-guide/LSM/LoadPin.rst
11850 F:      security/loadpin/
11851
11852 LOCKING PRIMITIVES
11853 M:      Peter Zijlstra <peterz@infradead.org>
11854 M:      Ingo Molnar <mingo@redhat.com>
11855 M:      Will Deacon <will@kernel.org>
11856 R:      Waiman Long <longman@redhat.com>
11857 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11858 L:      linux-kernel@vger.kernel.org
11859 S:      Maintained
11860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11861 F:      Documentation/locking/
11862 F:      arch/*/include/asm/spinlock*.h
11863 F:      include/linux/lockdep.h
11864 F:      include/linux/mutex*.h
11865 F:      include/linux/rwlock*.h
11866 F:      include/linux/rwsem*.h
11867 F:      include/linux/seqlock.h
11868 F:      include/linux/spinlock*.h
11869 F:      kernel/locking/
11870 F:      lib/locking*.[ch]
11871 X:      kernel/locking/locktorture.c
11872
11873 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11874 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11875 L:      linux-ntfs-dev@lists.sourceforge.net
11876 S:      Maintained
11877 W:      http://www.linux-ntfs.org/content/view/19/37/
11878 F:      Documentation/admin-guide/ldm.rst
11879 F:      block/partitions/ldm.*
11880
11881 LOGITECH HID GAMING KEYBOARDS
11882 M:      Hans de Goede <hdegoede@redhat.com>
11883 L:      linux-input@vger.kernel.org
11884 S:      Maintained
11885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11886 F:      drivers/hid/hid-lg-g15.c
11887
11888 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11889 M:      Adrien Grassein <adrien.grassein@gmail.com>
11890 S:      Maintained
11891 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11892 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11893
11894 LOONGARCH
11895 M:      Huacai Chen <chenhuacai@kernel.org>
11896 R:      WANG Xuerui <kernel@xen0n.name>
11897 L:      loongarch@lists.linux.dev
11898 S:      Maintained
11899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11900 F:      arch/loongarch/
11901 F:      drivers/*/*loongarch*
11902 F:      Documentation/loongarch/
11903 F:      Documentation/translations/zh_CN/loongarch/
11904
11905 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11906 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11907 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11908 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11909 L:      MPT-FusionLinux.pdl@broadcom.com
11910 L:      linux-scsi@vger.kernel.org
11911 S:      Supported
11912 W:      http://www.avagotech.com/support/
11913 F:      drivers/message/fusion/
11914 F:      drivers/scsi/mpt3sas/
11915
11916 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11917 M:      Matthew Wilcox <willy@infradead.org>
11918 L:      linux-scsi@vger.kernel.org
11919 S:      Maintained
11920 F:      drivers/scsi/sym53c8xx_2/
11921
11922 LTC1660 DAC DRIVER
11923 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11924 L:      linux-iio@vger.kernel.org
11925 S:      Maintained
11926 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11927 F:      drivers/iio/dac/ltc1660.c
11928
11929 LTC2688 IIO DAC DRIVER
11930 M:      Nuno Sá <nuno.sa@analog.com>
11931 L:      linux-iio@vger.kernel.org
11932 S:      Supported
11933 W:      https://ez.analog.com/linux-software-drivers
11934 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11935 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11936 F:      drivers/iio/dac/ltc2688.c
11937
11938 LTC2947 HARDWARE MONITOR DRIVER
11939 M:      Nuno Sá <nuno.sa@analog.com>
11940 L:      linux-hwmon@vger.kernel.org
11941 S:      Supported
11942 W:      https://ez.analog.com/linux-software-drivers
11943 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11944 F:      drivers/hwmon/ltc2947-core.c
11945 F:      drivers/hwmon/ltc2947-i2c.c
11946 F:      drivers/hwmon/ltc2947-spi.c
11947 F:      drivers/hwmon/ltc2947.h
11948
11949 LTC2983 IIO TEMPERATURE DRIVER
11950 M:      Nuno Sá <nuno.sa@analog.com>
11951 L:      linux-iio@vger.kernel.org
11952 S:      Supported
11953 W:      https://ez.analog.com/linux-software-drivers
11954 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11955 F:      drivers/iio/temperature/ltc2983.c
11956
11957 LTC4261 HARDWARE MONITOR DRIVER
11958 M:      Guenter Roeck <linux@roeck-us.net>
11959 L:      linux-hwmon@vger.kernel.org
11960 S:      Maintained
11961 F:      Documentation/hwmon/ltc4261.rst
11962 F:      drivers/hwmon/ltc4261.c
11963
11964 LTC4306 I2C MULTIPLEXER DRIVER
11965 M:      Michael Hennerich <michael.hennerich@analog.com>
11966 L:      linux-i2c@vger.kernel.org
11967 S:      Supported
11968 W:      https://ez.analog.com/linux-software-drivers
11969 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11970 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11971
11972 LTP (Linux Test Project)
11973 M:      Mike Frysinger <vapier@gentoo.org>
11974 M:      Cyril Hrubis <chrubis@suse.cz>
11975 M:      Wanlong Gao <wanlong.gao@gmail.com>
11976 M:      Jan Stancek <jstancek@redhat.com>
11977 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11978 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11979 L:      ltp@lists.linux.it (subscribers-only)
11980 S:      Maintained
11981 W:      http://linux-test-project.github.io/
11982 T:      git git://github.com/linux-test-project/ltp.git
11983
11984 LYNX 28G SERDES PHY DRIVER
11985 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11986 L:      netdev@vger.kernel.org
11987 S:      Supported
11988 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11989 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11990
11991 LYNX PCS MODULE
11992 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11993 L:      netdev@vger.kernel.org
11994 S:      Supported
11995 F:      drivers/net/pcs/pcs-lynx.c
11996 F:      include/linux/pcs-lynx.h
11997
11998 M68K ARCHITECTURE
11999 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12000 L:      linux-m68k@lists.linux-m68k.org
12001 S:      Maintained
12002 W:      http://www.linux-m68k.org/
12003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12004 F:      arch/m68k/
12005 F:      drivers/zorro/
12006
12007 M68K ON APPLE MACINTOSH
12008 M:      Joshua Thompson <funaho@jurai.org>
12009 L:      linux-m68k@lists.linux-m68k.org
12010 S:      Maintained
12011 W:      http://www.mac.linux-m68k.org/
12012 F:      arch/m68k/mac/
12013 F:      drivers/macintosh/adb-iop.c
12014 F:      drivers/macintosh/via-macii.c
12015
12016 M68K ON HP9000/300
12017 M:      Philip Blundell <philb@gnu.org>
12018 S:      Maintained
12019 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12020 F:      arch/m68k/hp300/
12021
12022 M88DS3103 MEDIA DRIVER
12023 M:      Antti Palosaari <crope@iki.fi>
12024 L:      linux-media@vger.kernel.org
12025 S:      Maintained
12026 W:      https://linuxtv.org
12027 W:      http://palosaari.fi/linux/
12028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12029 T:      git git://linuxtv.org/anttip/media_tree.git
12030 F:      drivers/media/dvb-frontends/m88ds3103*
12031
12032 M88RS2000 MEDIA DRIVER
12033 M:      Malcolm Priestley <tvboxspy@gmail.com>
12034 L:      linux-media@vger.kernel.org
12035 S:      Maintained
12036 W:      https://linuxtv.org
12037 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12038 F:      drivers/media/dvb-frontends/m88rs2000*
12039
12040 MA901 MASTERKIT USB FM RADIO DRIVER
12041 M:      Alexey Klimov <klimov.linux@gmail.com>
12042 L:      linux-media@vger.kernel.org
12043 S:      Maintained
12044 T:      git git://linuxtv.org/media_tree.git
12045 F:      drivers/media/radio/radio-ma901.c
12046
12047 MAC80211
12048 M:      Johannes Berg <johannes@sipsolutions.net>
12049 L:      linux-wireless@vger.kernel.org
12050 S:      Maintained
12051 W:      https://wireless.wiki.kernel.org/
12052 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12055 F:      Documentation/networking/mac80211-injection.rst
12056 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12057 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12058 F:      include/net/mac80211.h
12059 F:      net/mac80211/
12060
12061 MAILBOX API
12062 M:      Jassi Brar <jassisinghbrar@gmail.com>
12063 L:      linux-kernel@vger.kernel.org
12064 S:      Maintained
12065 F:      drivers/mailbox/
12066 F:      include/linux/mailbox_client.h
12067 F:      include/linux/mailbox_controller.h
12068 F:      include/dt-bindings/mailbox/
12069 F:      Documentation/devicetree/bindings/mailbox/
12070
12071 MAILBOX ARM MHUv2
12072 M:      Viresh Kumar <viresh.kumar@linaro.org>
12073 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12074 L:      linux-kernel@vger.kernel.org
12075 S:      Maintained
12076 F:      drivers/mailbox/arm_mhuv2.c
12077 F:      include/linux/mailbox/arm_mhuv2_message.h
12078 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12079
12080 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12081 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12082 M:      Matt Johnston <matt@codeconstruct.com.au>
12083 L:      netdev@vger.kernel.org
12084 S:      Maintained
12085 F:      Documentation/networking/mctp.rst
12086 F:      drivers/net/mctp/
12087 F:      include/net/mctp.h
12088 F:      include/net/mctpdevice.h
12089 F:      include/net/netns/mctp.h
12090 F:      net/mctp/
12091
12092 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12093 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12094 L:      linux-man@vger.kernel.org
12095 S:      Maintained
12096 W:      http://www.kernel.org/doc/man-pages
12097
12098 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12099 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12100 L:      linux-mips@vger.kernel.org
12101 S:      Maintained
12102 F:      arch/mips/boot/dts/img/pistachio*
12103
12104 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12105 M:      Andrew Lunn <andrew@lunn.ch>
12106 M:      Vivien Didelot <vivien.didelot@gmail.com>
12107 L:      netdev@vger.kernel.org
12108 S:      Maintained
12109 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12110 F:      Documentation/networking/devlink/mv88e6xxx.rst
12111 F:      drivers/net/dsa/mv88e6xxx/
12112 F:      include/linux/dsa/mv88e6xxx.h
12113 F:      include/linux/platform_data/mv88e6xxx.h
12114
12115 MARVELL ARMADA 3700 PHY DRIVERS
12116 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12117 S:      Maintained
12118 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12119 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12120 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12121 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12122
12123 MARVELL ARMADA 3700 SERIAL DRIVER
12124 M:      Pali Rohár <pali@kernel.org>
12125 S:      Maintained
12126 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12127 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12128 F:      drivers/tty/serial/mvebu-uart.c
12129
12130 MARVELL ARMADA DRM SUPPORT
12131 M:      Russell King <linux@armlinux.org.uk>
12132 S:      Maintained
12133 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12134 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12135 F:      Documentation/devicetree/bindings/display/armada/
12136 F:      drivers/gpu/drm/armada/
12137 F:      include/uapi/drm/armada_drm.h
12138
12139 MARVELL CRYPTO DRIVER
12140 M:      Boris Brezillon <bbrezillon@kernel.org>
12141 M:      Arnaud Ebalard <arno@natisbad.org>
12142 M:      Srujana Challa <schalla@marvell.com>
12143 L:      linux-crypto@vger.kernel.org
12144 S:      Maintained
12145 F:      drivers/crypto/marvell/
12146 F:      include/linux/soc/marvell/octeontx2/
12147
12148 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12149 M:      Mirko Lindner <mlindner@marvell.com>
12150 M:      Stephen Hemminger <stephen@networkplumber.org>
12151 L:      netdev@vger.kernel.org
12152 S:      Maintained
12153 F:      drivers/net/ethernet/marvell/sk*
12154
12155 MARVELL LIBERTAS WIRELESS DRIVER
12156 L:      libertas-dev@lists.infradead.org
12157 S:      Orphan
12158 F:      drivers/net/wireless/marvell/libertas/
12159
12160 MARVELL MACCHIATOBIN SUPPORT
12161 M:      Russell King <linux@armlinux.org.uk>
12162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12163 S:      Maintained
12164 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12165
12166 MARVELL MV643XX ETHERNET DRIVER
12167 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12168 L:      netdev@vger.kernel.org
12169 S:      Maintained
12170 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12171 F:      include/linux/mv643xx.h
12172
12173 MARVELL MV88X3310 PHY DRIVER
12174 M:      Russell King <linux@armlinux.org.uk>
12175 M:      Marek Behún <kabel@kernel.org>
12176 L:      netdev@vger.kernel.org
12177 S:      Maintained
12178 F:      drivers/net/phy/marvell10g.c
12179
12180 MARVELL MVEBU THERMAL DRIVER
12181 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12182 S:      Maintained
12183 F:      drivers/thermal/armada_thermal.c
12184
12185 MARVELL MVNETA ETHERNET DRIVER
12186 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12187 L:      netdev@vger.kernel.org
12188 S:      Maintained
12189 F:      drivers/net/ethernet/marvell/mvneta.*
12190
12191 MARVELL MVPP2 ETHERNET DRIVER
12192 M:      Marcin Wojtas <mw@semihalf.com>
12193 M:      Russell King <linux@armlinux.org.uk>
12194 L:      netdev@vger.kernel.org
12195 S:      Maintained
12196 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
12197 F:      drivers/net/ethernet/marvell/mvpp2/
12198
12199 MARVELL MWIFIEX WIRELESS DRIVER
12200 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12201 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12202 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12203 M:      Xinming Hu <huxinming820@gmail.com>
12204 L:      linux-wireless@vger.kernel.org
12205 S:      Maintained
12206 F:      drivers/net/wireless/marvell/mwifiex/
12207
12208 MARVELL MWL8K WIRELESS DRIVER
12209 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12210 L:      linux-wireless@vger.kernel.org
12211 S:      Odd Fixes
12212 F:      drivers/net/wireless/marvell/mwl8k.c
12213
12214 MARVELL NAND CONTROLLER DRIVER
12215 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12216 L:      linux-mtd@lists.infradead.org
12217 S:      Maintained
12218 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12219 F:      drivers/mtd/nand/raw/marvell_nand.c
12220
12221 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12222 M:      Sunil Goutham <sgoutham@marvell.com>
12223 M:      Geetha sowjanya <gakula@marvell.com>
12224 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12225 M:      hariprasad <hkelam@marvell.com>
12226 L:      netdev@vger.kernel.org
12227 S:      Supported
12228 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12229 F:      include/linux/soc/marvell/octeontx2/
12230
12231 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12232 M:      Sunil Goutham <sgoutham@marvell.com>
12233 M:      Linu Cherian <lcherian@marvell.com>
12234 M:      Geetha sowjanya <gakula@marvell.com>
12235 M:      Jerin Jacob <jerinj@marvell.com>
12236 M:      hariprasad <hkelam@marvell.com>
12237 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12238 L:      netdev@vger.kernel.org
12239 S:      Supported
12240 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12241 F:      drivers/net/ethernet/marvell/octeontx2/af/
12242
12243 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12244 M:      Taras Chornyi <tchornyi@marvell.com>
12245 S:      Supported
12246 W:      https://github.com/Marvell-switching/switchdev-prestera
12247 F:      drivers/net/ethernet/marvell/prestera/
12248
12249 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12250 M:      Nicolas Pitre <nico@fluxnic.net>
12251 S:      Odd Fixes
12252 F:      drivers/mmc/host/mvsdio.*
12253
12254 MARVELL USB MDIO CONTROLLER DRIVER
12255 M:      Tobias Waldekranz <tobias@waldekranz.com>
12256 L:      netdev@vger.kernel.org
12257 S:      Maintained
12258 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12259 F:      drivers/net/mdio/mdio-mvusb.c
12260
12261 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12262 M:      Hu Ziji <huziji@marvell.com>
12263 L:      linux-mmc@vger.kernel.org
12264 S:      Supported
12265 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12266 F:      drivers/mmc/host/sdhci-xenon*
12267
12268 MARVELL OCTEON ENDPOINT DRIVER
12269 M:      Veerasenareddy Burru <vburru@marvell.com>
12270 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12271 L:      netdev@vger.kernel.org
12272 S:      Supported
12273 F:      drivers/net/ethernet/marvell/octeon_ep
12274
12275 MATROX FRAMEBUFFER DRIVER
12276 L:      linux-fbdev@vger.kernel.org
12277 S:      Orphan
12278 F:      drivers/video/fbdev/matrox/matroxfb_*
12279 F:      include/uapi/linux/matroxfb.h
12280
12281 MAX15301 DRIVER
12282 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12283 L:      linux-hwmon@vger.kernel.org
12284 S:      Maintained
12285 F:      Documentation/hwmon/max15301.rst
12286 F:      drivers/hwmon/pmbus/max15301.c
12287
12288 MAX16065 HARDWARE MONITOR DRIVER
12289 M:      Guenter Roeck <linux@roeck-us.net>
12290 L:      linux-hwmon@vger.kernel.org
12291 S:      Maintained
12292 F:      Documentation/hwmon/max16065.rst
12293 F:      drivers/hwmon/max16065.c
12294
12295 MAX2175 SDR TUNER DRIVER
12296 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12297 L:      linux-media@vger.kernel.org
12298 S:      Maintained
12299 T:      git git://linuxtv.org/media_tree.git
12300 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12301 F:      Documentation/userspace-api/media/drivers/max2175.rst
12302 F:      drivers/media/i2c/max2175*
12303 F:      include/uapi/linux/max2175.h
12304
12305 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12306 L:      linux-hwmon@vger.kernel.org
12307 S:      Orphan
12308 F:      Documentation/hwmon/max6650.rst
12309 F:      drivers/hwmon/max6650.c
12310
12311 MAX6697 HARDWARE MONITOR DRIVER
12312 M:      Guenter Roeck <linux@roeck-us.net>
12313 L:      linux-hwmon@vger.kernel.org
12314 S:      Maintained
12315 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12316 F:      Documentation/hwmon/max6697.rst
12317 F:      drivers/hwmon/max6697.c
12318 F:      include/linux/platform_data/max6697.h
12319
12320 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12321 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12322 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12323 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12324 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12325 L:      linux-media@vger.kernel.org
12326 S:      Maintained
12327 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12328 F:      drivers/media/i2c/max9286.c
12329
12330 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12331 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12332 L:      linux-media@vger.kernel.org
12333 S:      Maintained
12334 F:      drivers/staging/media/max96712/max96712.c
12335
12336 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12337 M:      Peter Rosin <peda@axentia.se>
12338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12339 S:      Maintained
12340 F:      Documentation/devicetree/bindings/sound/max9860.txt
12341 F:      sound/soc/codecs/max9860.*
12342
12343 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12344 M:      Andreas Klinger <ak@it-klinger.de>
12345 L:      linux-iio@vger.kernel.org
12346 S:      Maintained
12347 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12348 F:      drivers/iio/proximity/mb1232.c
12349
12350 MAXIM MAX11205 DRIVER
12351 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12352 L:      linux-iio@vger.kernel.org
12353 S:      Supported
12354 W:      https://ez.analog.com/linux-software-drivers
12355 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12356 F:      drivers/iio/adc/max11205.c
12357
12358 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12359 R:      Iskren Chernev <iskren.chernev@gmail.com>
12360 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12361 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12362 R:      Matheus Castello <matheus@castello.eng.br>
12363 L:      linux-pm@vger.kernel.org
12364 S:      Maintained
12365 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12366 F:      drivers/power/supply/max17040_battery.c
12367
12368 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12369 R:      Hans de Goede <hdegoede@redhat.com>
12370 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12371 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12372 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12373 R:      Purism Kernel Team <kernel@puri.sm>
12374 L:      linux-pm@vger.kernel.org
12375 S:      Maintained
12376 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12377 F:      drivers/power/supply/max17042_battery.c
12378
12379 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12380 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12381 L:      linux-kernel@vger.kernel.org
12382 S:      Maintained
12383 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12384 F:      drivers/regulator/max20086-regulator.c
12385
12386 MAXIM MAX77650 PMIC MFD DRIVER
12387 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12388 L:      linux-kernel@vger.kernel.org
12389 S:      Maintained
12390 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12391 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12392 F:      drivers/gpio/gpio-max77650.c
12393 F:      drivers/input/misc/max77650-onkey.c
12394 F:      drivers/leds/leds-max77650.c
12395 F:      drivers/mfd/max77650.c
12396 F:      drivers/power/supply/max77650-charger.c
12397 F:      drivers/regulator/max77650-regulator.c
12398 F:      include/linux/mfd/max77650.h
12399
12400 MAXIM MAX77714 PMIC MFD DRIVER
12401 M:      Luca Ceresoli <luca@lucaceresoli.net>
12402 S:      Maintained
12403 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12404 F:      drivers/mfd/max77714.c
12405 F:      include/linux/mfd/max77714.h
12406
12407 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12408 M:      Javier Martinez Canillas <javier@dowhile0.org>
12409 L:      linux-kernel@vger.kernel.org
12410 S:      Supported
12411 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12412 F:      drivers/regulator/max77802-regulator.c
12413 F:      include/dt-bindings/*/*max77802.h
12414
12415 MAXIM MAX77976 BATTERY CHARGER
12416 M:      Luca Ceresoli <luca@lucaceresoli.net>
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12419 F:      drivers/power/supply/max77976_charger.c
12420
12421 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12422 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12423 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12424 L:      linux-pm@vger.kernel.org
12425 S:      Supported
12426 B:      mailto:linux-samsung-soc@vger.kernel.org
12427 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12428 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12429 F:      drivers/power/supply/max14577_charger.c
12430 F:      drivers/power/supply/max77693_charger.c
12431
12432 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12433 M:      Chanwoo Choi <cw00.choi@samsung.com>
12434 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12435 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12436 L:      linux-kernel@vger.kernel.org
12437 S:      Supported
12438 B:      mailto:linux-samsung-soc@vger.kernel.org
12439 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12440 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12441 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12442 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12443 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12444 F:      drivers/*/*max77843.c
12445 F:      drivers/*/max14577*.c
12446 F:      drivers/*/max77686*.c
12447 F:      drivers/*/max77693*.c
12448 F:      drivers/clk/clk-max77686.c
12449 F:      drivers/extcon/extcon-max14577.c
12450 F:      drivers/extcon/extcon-max77693.c
12451 F:      drivers/rtc/rtc-max77686.c
12452 F:      include/linux/mfd/max14577*.h
12453 F:      include/linux/mfd/max77686*.h
12454 F:      include/linux/mfd/max77693*.h
12455
12456 MAXIRADIO FM RADIO RECEIVER DRIVER
12457 M:      Hans Verkuil <hverkuil@xs4all.nl>
12458 L:      linux-media@vger.kernel.org
12459 S:      Maintained
12460 W:      https://linuxtv.org
12461 T:      git git://linuxtv.org/media_tree.git
12462 F:      drivers/media/radio/radio-maxiradio*
12463
12464 MAXLINEAR ETHERNET PHY DRIVER
12465 M:      Xu Liang <lxu@maxlinear.com>
12466 L:      netdev@vger.kernel.org
12467 S:      Supported
12468 F:      drivers/net/phy/mxl-gpy.c
12469
12470 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12471 R:      Yasushi SHOJI <yashi@spacecubics.com>
12472 L:      linux-can@vger.kernel.org
12473 S:      Maintained
12474 F:      drivers/net/can/usb/mcba_usb.c
12475
12476 MCAN MMIO DEVICE DRIVER
12477 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12478 L:      linux-can@vger.kernel.org
12479 S:      Maintained
12480 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12481 F:      drivers/net/can/m_can/m_can.c
12482 F:      drivers/net/can/m_can/m_can.h
12483 F:      drivers/net/can/m_can/m_can_platform.c
12484
12485 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12486 M:      Rishi Gupta <gupt21@gmail.com>
12487 L:      linux-i2c@vger.kernel.org
12488 L:      linux-input@vger.kernel.org
12489 S:      Maintained
12490 F:      drivers/hid/hid-mcp2221.c
12491
12492 MCP251XFD SPI-CAN NETWORK DRIVER
12493 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12494 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12495 R:      Thomas Kopp <thomas.kopp@microchip.com>
12496 L:      linux-can@vger.kernel.org
12497 S:      Maintained
12498 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12499 F:      drivers/net/can/spi/mcp251xfd/
12500
12501 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12502 M:      Peter Rosin <peda@axentia.se>
12503 L:      linux-iio@vger.kernel.org
12504 S:      Maintained
12505 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12506 F:      drivers/iio/potentiometer/mcp4018.c
12507 F:      drivers/iio/potentiometer/mcp4531.c
12508
12509 MCR20A IEEE-802.15.4 RADIO DRIVER
12510 M:      Xue Liu <liuxuenetmail@gmail.com>
12511 L:      linux-wpan@vger.kernel.org
12512 S:      Maintained
12513 W:      https://github.com/xueliu/mcr20a-linux
12514 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12515 F:      drivers/net/ieee802154/mcr20a.c
12516 F:      drivers/net/ieee802154/mcr20a.h
12517
12518 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12519 M:      William Breathitt Gray <william.gray@linaro.org>
12520 L:      linux-iio@vger.kernel.org
12521 S:      Maintained
12522 F:      drivers/iio/dac/cio-dac.c
12523
12524 MEDIA CONTROLLER FRAMEWORK
12525 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12526 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12527 L:      linux-media@vger.kernel.org
12528 S:      Supported
12529 W:      https://www.linuxtv.org
12530 T:      git git://linuxtv.org/media_tree.git
12531 F:      drivers/media/mc/
12532 F:      include/media/media-*.h
12533 F:      include/uapi/linux/media.h
12534
12535 MEDIA DRIVER FOR FREESCALE IMX PXP
12536 M:      Philipp Zabel <p.zabel@pengutronix.de>
12537 L:      linux-media@vger.kernel.org
12538 S:      Maintained
12539 T:      git git://linuxtv.org/media_tree.git
12540 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12541
12542 MEDIA DRIVERS FOR ASCOT2E
12543 M:      Sergey Kozlov <serjk@netup.ru>
12544 M:      Abylay Ospan <aospan@netup.ru>
12545 L:      linux-media@vger.kernel.org
12546 S:      Supported
12547 W:      https://linuxtv.org
12548 W:      http://netup.tv/
12549 T:      git git://linuxtv.org/media_tree.git
12550 F:      drivers/media/dvb-frontends/ascot2e*
12551
12552 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12553 M:      Jasmin Jessich <jasmin@anw.at>
12554 L:      linux-media@vger.kernel.org
12555 S:      Maintained
12556 W:      https://linuxtv.org
12557 T:      git git://linuxtv.org/media_tree.git
12558 F:      drivers/media/dvb-frontends/cxd2099*
12559
12560 MEDIA DRIVERS FOR CXD2841ER
12561 M:      Sergey Kozlov <serjk@netup.ru>
12562 M:      Abylay Ospan <aospan@netup.ru>
12563 L:      linux-media@vger.kernel.org
12564 S:      Supported
12565 W:      https://linuxtv.org
12566 W:      http://netup.tv/
12567 T:      git git://linuxtv.org/media_tree.git
12568 F:      drivers/media/dvb-frontends/cxd2841er*
12569
12570 MEDIA DRIVERS FOR CXD2880
12571 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12572 L:      linux-media@vger.kernel.org
12573 S:      Supported
12574 W:      http://linuxtv.org/
12575 T:      git git://linuxtv.org/media_tree.git
12576 F:      drivers/media/dvb-frontends/cxd2880/*
12577 F:      drivers/media/spi/cxd2880*
12578
12579 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12580 L:      linux-media@vger.kernel.org
12581 S:      Orphan
12582 W:      https://linuxtv.org
12583 T:      git git://linuxtv.org/media_tree.git
12584 F:      drivers/media/pci/ddbridge/*
12585
12586 MEDIA DRIVERS FOR FREESCALE IMX
12587 M:      Steve Longerbeam <slongerbeam@gmail.com>
12588 M:      Philipp Zabel <p.zabel@pengutronix.de>
12589 L:      linux-media@vger.kernel.org
12590 S:      Maintained
12591 T:      git git://linuxtv.org/media_tree.git
12592 F:      Documentation/admin-guide/media/imx.rst
12593 F:      Documentation/devicetree/bindings/media/imx.txt
12594 F:      drivers/staging/media/imx/
12595 F:      include/linux/imx-media.h
12596 F:      include/media/imx.h
12597
12598 MEDIA DRIVERS FOR FREESCALE IMX7
12599 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12600 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12601 L:      linux-media@vger.kernel.org
12602 S:      Maintained
12603 T:      git git://linuxtv.org/media_tree.git
12604 F:      Documentation/admin-guide/media/imx7.rst
12605 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12606 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12607 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12608 F:      drivers/staging/media/imx/imx7-media-csi.c
12609
12610 MEDIA DRIVERS FOR HELENE
12611 M:      Abylay Ospan <aospan@netup.ru>
12612 L:      linux-media@vger.kernel.org
12613 S:      Supported
12614 W:      https://linuxtv.org
12615 W:      http://netup.tv/
12616 T:      git git://linuxtv.org/media_tree.git
12617 F:      drivers/media/dvb-frontends/helene*
12618
12619 MEDIA DRIVERS FOR HORUS3A
12620 M:      Sergey Kozlov <serjk@netup.ru>
12621 M:      Abylay Ospan <aospan@netup.ru>
12622 L:      linux-media@vger.kernel.org
12623 S:      Supported
12624 W:      https://linuxtv.org
12625 W:      http://netup.tv/
12626 T:      git git://linuxtv.org/media_tree.git
12627 F:      drivers/media/dvb-frontends/horus3a*
12628
12629 MEDIA DRIVERS FOR LNBH25
12630 M:      Sergey Kozlov <serjk@netup.ru>
12631 M:      Abylay Ospan <aospan@netup.ru>
12632 L:      linux-media@vger.kernel.org
12633 S:      Supported
12634 W:      https://linuxtv.org
12635 W:      http://netup.tv/
12636 T:      git git://linuxtv.org/media_tree.git
12637 F:      drivers/media/dvb-frontends/lnbh25*
12638
12639 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12640 L:      linux-media@vger.kernel.org
12641 S:      Orphan
12642 W:      https://linuxtv.org
12643 T:      git git://linuxtv.org/media_tree.git
12644 F:      drivers/media/dvb-frontends/mxl5xx*
12645
12646 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12647 M:      Sergey Kozlov <serjk@netup.ru>
12648 M:      Abylay Ospan <aospan@netup.ru>
12649 L:      linux-media@vger.kernel.org
12650 S:      Supported
12651 W:      https://linuxtv.org
12652 W:      http://netup.tv/
12653 T:      git git://linuxtv.org/media_tree.git
12654 F:      drivers/media/pci/netup_unidvb/*
12655
12656 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12657 M:      Dmitry Osipenko <digetx@gmail.com>
12658 L:      linux-media@vger.kernel.org
12659 L:      linux-tegra@vger.kernel.org
12660 S:      Maintained
12661 T:      git git://linuxtv.org/media_tree.git
12662 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12663 F:      drivers/media/platform/nvidia/tegra-vde/
12664
12665 MEDIA DRIVERS FOR RENESAS - CEU
12666 M:      Jacopo Mondi <jacopo@jmondi.org>
12667 L:      linux-media@vger.kernel.org
12668 L:      linux-renesas-soc@vger.kernel.org
12669 S:      Supported
12670 T:      git git://linuxtv.org/media_tree.git
12671 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12672 F:      drivers/media/platform/renesas/renesas-ceu.c
12673 F:      include/media/drv-intf/renesas-ceu.h
12674
12675 MEDIA DRIVERS FOR RENESAS - DRIF
12676 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12677 L:      linux-media@vger.kernel.org
12678 L:      linux-renesas-soc@vger.kernel.org
12679 S:      Supported
12680 T:      git git://linuxtv.org/media_tree.git
12681 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12682 F:      drivers/media/platform/renesas/rcar_drif.c
12683
12684 MEDIA DRIVERS FOR RENESAS - FCP
12685 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12686 L:      linux-media@vger.kernel.org
12687 L:      linux-renesas-soc@vger.kernel.org
12688 S:      Supported
12689 T:      git git://linuxtv.org/media_tree.git
12690 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12691 F:      drivers/media/platform/renesas/rcar-fcp.c
12692 F:      include/media/rcar-fcp.h
12693
12694 MEDIA DRIVERS FOR RENESAS - FDP1
12695 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12696 L:      linux-media@vger.kernel.org
12697 L:      linux-renesas-soc@vger.kernel.org
12698 S:      Supported
12699 T:      git git://linuxtv.org/media_tree.git
12700 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12701 F:      drivers/media/platform/renesas/rcar_fdp1.c
12702
12703 MEDIA DRIVERS FOR RENESAS - VIN
12704 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12705 L:      linux-media@vger.kernel.org
12706 L:      linux-renesas-soc@vger.kernel.org
12707 S:      Supported
12708 T:      git git://linuxtv.org/media_tree.git
12709 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12710 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12711 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12712 F:      drivers/media/platform/renesas/rcar-isp.c
12713 F:      drivers/media/platform/renesas/rcar-vin/
12714
12715 MEDIA DRIVERS FOR RENESAS - VSP1
12716 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12717 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12718 L:      linux-media@vger.kernel.org
12719 L:      linux-renesas-soc@vger.kernel.org
12720 S:      Supported
12721 T:      git git://linuxtv.org/media_tree.git
12722 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12723 F:      drivers/media/platform/renesas/vsp1/
12724
12725 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12726 L:      linux-media@vger.kernel.org
12727 S:      Orphan
12728 W:      https://linuxtv.org
12729 T:      git git://linuxtv.org/media_tree.git
12730 F:      drivers/media/dvb-frontends/stv0910*
12731
12732 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12733 L:      linux-media@vger.kernel.org
12734 S:      Orphan
12735 W:      https://linuxtv.org
12736 T:      git git://linuxtv.org/media_tree.git
12737 F:      drivers/media/dvb-frontends/stv6111*
12738
12739 MEDIA DRIVERS FOR STM32 - DCMI
12740 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12741 L:      linux-media@vger.kernel.org
12742 S:      Supported
12743 T:      git git://linuxtv.org/media_tree.git
12744 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12745 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12746
12747 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12748 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12749 L:      linux-media@vger.kernel.org
12750 S:      Maintained
12751 W:      https://linuxtv.org
12752 Q:      http://patchwork.kernel.org/project/linux-media/list/
12753 T:      git git://linuxtv.org/media_tree.git
12754 F:      Documentation/admin-guide/media/
12755 F:      Documentation/devicetree/bindings/media/
12756 F:      Documentation/driver-api/media/
12757 F:      Documentation/userspace-api/media/
12758 F:      drivers/media/
12759 F:      drivers/staging/media/
12760 F:      include/dt-bindings/media/
12761 F:      include/linux/platform_data/media/
12762 F:      include/media/
12763 F:      include/uapi/linux/dvb/
12764 F:      include/uapi/linux/ivtv*
12765 F:      include/uapi/linux/media.h
12766 F:      include/uapi/linux/meye.h
12767 F:      include/uapi/linux/uvcvideo.h
12768 F:      include/uapi/linux/v4l2-*
12769 F:      include/uapi/linux/videodev2.h
12770
12771 MEDIATEK BLUETOOTH DRIVER
12772 M:      Sean Wang <sean.wang@mediatek.com>
12773 L:      linux-bluetooth@vger.kernel.org
12774 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12775 S:      Maintained
12776 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12777 F:      drivers/bluetooth/btmtkuart.c
12778
12779 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12780 M:      Sean Wang <sean.wang@mediatek.com>
12781 L:      linux-pm@vger.kernel.org
12782 S:      Maintained
12783 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12784 F:      drivers/power/reset/mt6323-poweroff.c
12785
12786 MEDIATEK CIR DRIVER
12787 M:      Sean Wang <sean.wang@mediatek.com>
12788 S:      Maintained
12789 F:      drivers/media/rc/mtk-cir.c
12790
12791 MEDIATEK DMA DRIVER
12792 M:      Sean Wang <sean.wang@mediatek.com>
12793 L:      dmaengine@vger.kernel.org
12794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12795 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12796 S:      Maintained
12797 F:      Documentation/devicetree/bindings/dma/mtk-*
12798 F:      drivers/dma/mediatek/
12799
12800 MEDIATEK ETHERNET DRIVER
12801 M:      Felix Fietkau <nbd@nbd.name>
12802 M:      John Crispin <john@phrozen.org>
12803 M:      Sean Wang <sean.wang@mediatek.com>
12804 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12805 L:      netdev@vger.kernel.org
12806 S:      Maintained
12807 F:      drivers/net/ethernet/mediatek/
12808
12809 MEDIATEK I2C CONTROLLER DRIVER
12810 M:      Qii Wang <qii.wang@mediatek.com>
12811 L:      linux-i2c@vger.kernel.org
12812 S:      Maintained
12813 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12814 F:      drivers/i2c/busses/i2c-mt65xx.c
12815
12816 MEDIATEK IOMMU DRIVER
12817 M:      Yong Wu <yong.wu@mediatek.com>
12818 L:      iommu@lists.linux.dev
12819 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12820 S:      Supported
12821 F:      Documentation/devicetree/bindings/iommu/mediatek*
12822 F:      drivers/iommu/mtk_iommu*
12823 F:      include/dt-bindings/memory/mt*-port.h
12824
12825 MEDIATEK JPEG DRIVER
12826 M:      Bin Liu <bin.liu@mediatek.com>
12827 S:      Supported
12828 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12829 F:      drivers/media/platform/mediatek/jpeg/
12830
12831 MEDIATEK MDP DRIVER
12832 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12833 M:      Houlong Wei <houlong.wei@mediatek.com>
12834 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12835 S:      Supported
12836 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12837 F:      drivers/media/platform/mediatek/mdp/
12838 F:      drivers/media/platform/mediatek/vpu/
12839
12840 MEDIATEK MEDIA DRIVER
12841 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12842 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12843 M:      Yunfei Dong <yunfei.dong@mediatek.com>
12844 S:      Supported
12845 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12846 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12847 F:      drivers/media/platform/mediatek/vcodec/
12848 F:      drivers/media/platform/mediatek/vpu/
12849
12850 MEDIATEK MMC/SD/SDIO DRIVER
12851 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12852 S:      Maintained
12853 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12854 F:      drivers/mmc/host/mtk-sd.c
12855
12856 MEDIATEK MT76 WIRELESS LAN DRIVER
12857 M:      Felix Fietkau <nbd@nbd.name>
12858 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12859 M:      Ryder Lee <ryder.lee@mediatek.com>
12860 R:      Shayne Chen <shayne.chen@mediatek.com>
12861 R:      Sean Wang <sean.wang@mediatek.com>
12862 L:      linux-wireless@vger.kernel.org
12863 S:      Maintained
12864 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12865 F:      drivers/net/wireless/mediatek/mt76/
12866
12867 MEDIATEK MT7601U WIRELESS LAN DRIVER
12868 M:      Jakub Kicinski <kuba@kernel.org>
12869 L:      linux-wireless@vger.kernel.org
12870 S:      Maintained
12871 F:      drivers/net/wireless/mediatek/mt7601u/
12872
12873 MEDIATEK MT7621 CLOCK DRIVER
12874 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12875 S:      Maintained
12876 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12877 F:      drivers/clk/ralink/clk-mt7621.c
12878
12879 MEDIATEK MT7621/28/88 I2C DRIVER
12880 M:      Stefan Roese <sr@denx.de>
12881 L:      linux-i2c@vger.kernel.org
12882 S:      Maintained
12883 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12884 F:      drivers/i2c/busses/i2c-mt7621.c
12885
12886 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12887 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12888 S:      Maintained
12889 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12890 F:      drivers/pci/controller/pcie-mt7621.c
12891
12892 MEDIATEK MT7621 PHY PCI DRIVER
12893 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12894 S:      Maintained
12895 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12896 F:      drivers/phy/ralink/phy-mt7621-pci.c
12897
12898 MEDIATEK NAND CONTROLLER DRIVER
12899 L:      linux-mtd@lists.infradead.org
12900 S:      Orphan
12901 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12902 F:      drivers/mtd/nand/raw/mtk_*
12903
12904 MEDIATEK PMIC LED DRIVER
12905 M:      Sean Wang <sean.wang@mediatek.com>
12906 S:      Maintained
12907 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12908 F:      drivers/leds/leds-mt6323.c
12909
12910 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12911 M:      Sean Wang <sean.wang@mediatek.com>
12912 S:      Maintained
12913 F:      drivers/char/hw_random/mtk-rng.c
12914
12915 MEDIATEK SMI DRIVER
12916 M:      Yong Wu <yong.wu@mediatek.com>
12917 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12918 S:      Supported
12919 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12920 F:      drivers/memory/mtk-smi.c
12921 F:      include/soc/mediatek/smi.h
12922
12923 MEDIATEK SWITCH DRIVER
12924 M:      Sean Wang <sean.wang@mediatek.com>
12925 M:      Landen Chao <Landen.Chao@mediatek.com>
12926 M:      DENG Qingfang <dqfext@gmail.com>
12927 L:      netdev@vger.kernel.org
12928 S:      Maintained
12929 F:      drivers/net/dsa/mt7530.*
12930 F:      net/dsa/tag_mtk.c
12931
12932 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12933 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12934 M:      Intel Corporation <linuxwwan@intel.com>
12935 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12936 R:      Liu Haijun <haijun.liu@mediatek.com>
12937 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12938 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12939 L:      netdev@vger.kernel.org
12940 S:      Supported
12941 F:      drivers/net/wwan/t7xx/
12942
12943 MEDIATEK USB3 DRD IP DRIVER
12944 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12945 L:      linux-usb@vger.kernel.org
12946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12947 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12948 S:      Maintained
12949 F:      Documentation/devicetree/bindings/usb/mediatek,*
12950 F:      drivers/usb/host/xhci-mtk*
12951 F:      drivers/usb/mtu3/
12952
12953 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12954 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12955 M:      Martin Donnelly <martin.donnelly@ge.com>
12956 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12957 S:      Maintained
12958 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12959 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12960
12961 MEGARAID SCSI/SAS DRIVERS
12962 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12963 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12964 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12965 L:      megaraidlinux.pdl@broadcom.com
12966 L:      linux-scsi@vger.kernel.org
12967 S:      Maintained
12968 W:      http://www.avagotech.com/support/
12969 F:      Documentation/scsi/megaraid.rst
12970 F:      drivers/scsi/megaraid.*
12971 F:      drivers/scsi/megaraid/
12972
12973 MELEXIS MLX90614 DRIVER
12974 M:      Crt Mori <cmo@melexis.com>
12975 L:      linux-iio@vger.kernel.org
12976 S:      Supported
12977 W:      http://www.melexis.com
12978 F:      drivers/iio/temperature/mlx90614.c
12979
12980 MELEXIS MLX90632 DRIVER
12981 M:      Crt Mori <cmo@melexis.com>
12982 L:      linux-iio@vger.kernel.org
12983 S:      Supported
12984 W:      http://www.melexis.com
12985 F:      drivers/iio/temperature/mlx90632.c
12986
12987 MELFAS MIP4 TOUCHSCREEN DRIVER
12988 M:      Sangwon Jee <jeesw@melfas.com>
12989 S:      Supported
12990 W:      http://www.melfas.com
12991 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12992 F:      drivers/input/touchscreen/melfas_mip4.c
12993
12994 MELLANOX BLUEFIELD I2C DRIVER
12995 M:      Khalil Blaiech <kblaiech@nvidia.com>
12996 L:      linux-i2c@vger.kernel.org
12997 S:      Supported
12998 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12999 F:      drivers/i2c/busses/i2c-mlxbf.c
13000
13001 MELLANOX ETHERNET DRIVER (mlx4_en)
13002 M:      Tariq Toukan <tariqt@nvidia.com>
13003 L:      netdev@vger.kernel.org
13004 S:      Supported
13005 W:      http://www.mellanox.com
13006 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13007 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13008
13009 MELLANOX ETHERNET DRIVER (mlx5e)
13010 M:      Saeed Mahameed <saeedm@nvidia.com>
13011 L:      netdev@vger.kernel.org
13012 S:      Supported
13013 W:      http://www.mellanox.com
13014 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13015 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13016
13017 MELLANOX ETHERNET INNOVA DRIVERS
13018 R:      Boris Pismenny <borisp@nvidia.com>
13019 L:      netdev@vger.kernel.org
13020 S:      Supported
13021 W:      http://www.mellanox.com
13022 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13023 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13024 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13025 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13026
13027 MELLANOX ETHERNET SWITCH DRIVERS
13028 M:      Ido Schimmel <idosch@nvidia.com>
13029 M:      Petr Machata <petrm@nvidia.com>
13030 L:      netdev@vger.kernel.org
13031 S:      Supported
13032 W:      http://www.mellanox.com
13033 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13034 F:      drivers/net/ethernet/mellanox/mlxsw/
13035 F:      tools/testing/selftests/drivers/net/mlxsw/
13036
13037 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13038 M:      mlxsw@nvidia.com
13039 L:      netdev@vger.kernel.org
13040 S:      Supported
13041 W:      http://www.mellanox.com
13042 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13043 F:      drivers/net/ethernet/mellanox/mlxfw/
13044
13045 MELLANOX HARDWARE PLATFORM SUPPORT
13046 M:      Hans de Goede <hdegoede@redhat.com>
13047 M:      Mark Gross <markgross@kernel.org>
13048 M:      Vadim Pasternak <vadimp@nvidia.com>
13049 L:      platform-driver-x86@vger.kernel.org
13050 S:      Supported
13051 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13052 F:      drivers/platform/mellanox/
13053 F:      include/linux/platform_data/mlxreg.h
13054
13055 MELLANOX MLX4 core VPI driver
13056 M:      Tariq Toukan <tariqt@nvidia.com>
13057 L:      netdev@vger.kernel.org
13058 L:      linux-rdma@vger.kernel.org
13059 S:      Supported
13060 W:      http://www.mellanox.com
13061 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13062 F:      drivers/net/ethernet/mellanox/mlx4/
13063 F:      include/linux/mlx4/
13064
13065 MELLANOX MLX4 IB driver
13066 M:      Yishai Hadas <yishaih@nvidia.com>
13067 L:      linux-rdma@vger.kernel.org
13068 S:      Supported
13069 W:      http://www.mellanox.com
13070 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13071 F:      drivers/infiniband/hw/mlx4/
13072 F:      include/linux/mlx4/
13073 F:      include/uapi/rdma/mlx4-abi.h
13074
13075 MELLANOX MLX5 core VPI driver
13076 M:      Saeed Mahameed <saeedm@nvidia.com>
13077 M:      Leon Romanovsky <leonro@nvidia.com>
13078 L:      netdev@vger.kernel.org
13079 L:      linux-rdma@vger.kernel.org
13080 S:      Supported
13081 W:      http://www.mellanox.com
13082 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13083 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13084 F:      drivers/net/ethernet/mellanox/mlx5/core/
13085 F:      include/linux/mlx5/
13086
13087 MELLANOX MLX5 IB driver
13088 M:      Leon Romanovsky <leonro@nvidia.com>
13089 L:      linux-rdma@vger.kernel.org
13090 S:      Supported
13091 W:      http://www.mellanox.com
13092 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13093 F:      drivers/infiniband/hw/mlx5/
13094 F:      include/linux/mlx5/
13095 F:      include/uapi/rdma/mlx5-abi.h
13096
13097 MELLANOX MLXCPLD I2C AND MUX DRIVER
13098 M:      Vadim Pasternak <vadimp@nvidia.com>
13099 M:      Michael Shych <michaelsh@nvidia.com>
13100 L:      linux-i2c@vger.kernel.org
13101 S:      Supported
13102 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13103 F:      drivers/i2c/busses/i2c-mlxcpld.c
13104 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13105
13106 MELLANOX MLXCPLD LED DRIVER
13107 M:      Vadim Pasternak <vadimp@nvidia.com>
13108 L:      linux-leds@vger.kernel.org
13109 S:      Supported
13110 F:      Documentation/leds/leds-mlxcpld.rst
13111 F:      drivers/leds/leds-mlxcpld.c
13112 F:      drivers/leds/leds-mlxreg.c
13113
13114 MELLANOX PLATFORM DRIVER
13115 M:      Vadim Pasternak <vadimp@nvidia.com>
13116 L:      platform-driver-x86@vger.kernel.org
13117 S:      Supported
13118 F:      drivers/platform/x86/mlx-platform.c
13119
13120 MEMBARRIER SUPPORT
13121 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13122 M:      "Paul E. McKenney" <paulmck@kernel.org>
13123 L:      linux-kernel@vger.kernel.org
13124 S:      Supported
13125 F:      arch/powerpc/include/asm/membarrier.h
13126 F:      include/uapi/linux/membarrier.h
13127 F:      kernel/sched/membarrier.c
13128
13129 MEMBLOCK
13130 M:      Mike Rapoport <rppt@kernel.org>
13131 L:      linux-mm@kvack.org
13132 S:      Maintained
13133 F:      Documentation/core-api/boot-time-mm.rst
13134 F:      include/linux/memblock.h
13135 F:      mm/memblock.c
13136 F:      tools/testing/memblock/
13137
13138 MEMORY CONTROLLER DRIVERS
13139 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13140 L:      linux-kernel@vger.kernel.org
13141 S:      Maintained
13142 B:      mailto:krzysztof.kozlowski@linaro.org
13143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13144 F:      Documentation/devicetree/bindings/memory-controllers/
13145 F:      drivers/memory/
13146 F:      include/dt-bindings/memory/
13147 F:      include/memory/
13148
13149 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13150 M:      Dmitry Osipenko <digetx@gmail.com>
13151 L:      linux-pm@vger.kernel.org
13152 L:      linux-tegra@vger.kernel.org
13153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13154 S:      Maintained
13155 F:      drivers/devfreq/tegra30-devfreq.c
13156
13157 MEMORY MANAGEMENT
13158 M:      Andrew Morton <akpm@linux-foundation.org>
13159 L:      linux-mm@kvack.org
13160 S:      Maintained
13161 W:      http://www.linux-mm.org
13162 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13163 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13164 F:      include/linux/gfp.h
13165 F:      include/linux/gfp_types.h
13166 F:      include/linux/memory_hotplug.h
13167 F:      include/linux/mm.h
13168 F:      include/linux/mmzone.h
13169 F:      include/linux/pagewalk.h
13170 F:      include/linux/vmalloc.h
13171 F:      mm/
13172 F:      tools/testing/selftests/vm/
13173
13174 MEMORY HOT(UN)PLUG
13175 M:      David Hildenbrand <david@redhat.com>
13176 M:      Oscar Salvador <osalvador@suse.de>
13177 L:      linux-mm@kvack.org
13178 S:      Maintained
13179 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13180 F:      Documentation/core-api/memory-hotplug.rst
13181 F:      drivers/base/memory.c
13182 F:      include/linux/memory_hotplug.h
13183 F:      mm/memory_hotplug.c
13184 F:      tools/testing/selftests/memory-hotplug/
13185
13186 MEMORY TECHNOLOGY DEVICES (MTD)
13187 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13188 M:      Richard Weinberger <richard@nod.at>
13189 M:      Vignesh Raghavendra <vigneshr@ti.com>
13190 L:      linux-mtd@lists.infradead.org
13191 S:      Maintained
13192 W:      http://www.linux-mtd.infradead.org/
13193 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13194 C:      irc://irc.oftc.net/mtd
13195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13197 F:      Documentation/devicetree/bindings/mtd/
13198 F:      drivers/mtd/
13199 F:      include/linux/mtd/
13200 F:      include/uapi/mtd/
13201
13202 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13203 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13204 L:      linux-iio@vger.kernel.org
13205 S:      Maintained
13206 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13207 F:      drivers/iio/accel/msa311.c
13208
13209 MEN A21 WATCHDOG DRIVER
13210 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13211 L:      linux-watchdog@vger.kernel.org
13212 S:      Maintained
13213 F:      drivers/watchdog/mena21_wdt.c
13214
13215 MEN CHAMELEON BUS (mcb)
13216 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13217 S:      Maintained
13218 F:      Documentation/driver-api/men-chameleon-bus.rst
13219 F:      drivers/mcb/
13220 F:      include/linux/mcb.h
13221
13222 MEN F21BMC (Board Management Controller)
13223 M:      Andreas Werner <andreas.werner@men.de>
13224 S:      Supported
13225 F:      Documentation/hwmon/menf21bmc.rst
13226 F:      drivers/hwmon/menf21bmc_hwmon.c
13227 F:      drivers/leds/leds-menf21bmc.c
13228 F:      drivers/mfd/menf21bmc.c
13229 F:      drivers/watchdog/menf21bmc_wdt.c
13230
13231 MEN Z069 WATCHDOG DRIVER
13232 M:      Johannes Thumshirn <jth@kernel.org>
13233 L:      linux-watchdog@vger.kernel.org
13234 S:      Maintained
13235 F:      drivers/watchdog/menz69_wdt.c
13236
13237 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13238 M:      Neil Armstrong <narmstrong@baylibre.com>
13239 L:      linux-media@vger.kernel.org
13240 L:      linux-amlogic@lists.infradead.org
13241 S:      Supported
13242 W:      http://linux-meson.com/
13243 T:      git git://linuxtv.org/media_tree.git
13244 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13245 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13246 F:      drivers/media/cec/platform/meson/ao-cec.c
13247
13248 MESON GE2D DRIVER FOR AMLOGIC SOCS
13249 M:      Neil Armstrong <narmstrong@baylibre.com>
13250 L:      linux-media@vger.kernel.org
13251 L:      linux-amlogic@lists.infradead.org
13252 S:      Supported
13253 T:      git git://linuxtv.org/media_tree.git
13254 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13255 F:      drivers/media/platform/amlogic/meson-ge2d/
13256
13257 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13258 M:      Liang Yang <liang.yang@amlogic.com>
13259 L:      linux-mtd@lists.infradead.org
13260 S:      Maintained
13261 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
13262 F:      drivers/mtd/nand/raw/meson_*
13263
13264 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13265 M:      Neil Armstrong <narmstrong@baylibre.com>
13266 L:      linux-media@vger.kernel.org
13267 L:      linux-amlogic@lists.infradead.org
13268 S:      Supported
13269 T:      git git://linuxtv.org/media_tree.git
13270 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13271 F:      drivers/staging/media/meson/vdec/
13272
13273 METHODE UDPU SUPPORT
13274 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13275 S:      Maintained
13276 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13277
13278 MHI BUS
13279 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13280 R:      Hemant Kumar <quic_hemantk@quicinc.com>
13281 L:      mhi@lists.linux.dev
13282 L:      linux-arm-msm@vger.kernel.org
13283 S:      Maintained
13284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13285 F:      Documentation/ABI/stable/sysfs-bus-mhi
13286 F:      Documentation/mhi/
13287 F:      drivers/bus/mhi/
13288 F:      include/linux/mhi.h
13289
13290 MICROBLAZE ARCHITECTURE
13291 M:      Michal Simek <monstr@monstr.eu>
13292 S:      Supported
13293 W:      http://www.monstr.eu/fdt/
13294 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13295 F:      arch/microblaze/
13296
13297 MICROCHIP AT91 DMA DRIVERS
13298 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13299 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13301 L:      dmaengine@vger.kernel.org
13302 S:      Supported
13303 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13304 F:      drivers/dma/at_hdmac.c
13305 F:      drivers/dma/at_hdmac_regs.h
13306 F:      drivers/dma/at_xdmac.c
13307 F:      include/dt-bindings/dma/at91.h
13308
13309 MICROCHIP AT91 SERIAL DRIVER
13310 M:      Richard Genoud <richard.genoud@gmail.com>
13311 S:      Maintained
13312 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13313 F:      drivers/tty/serial/atmel_serial.c
13314 F:      drivers/tty/serial/atmel_serial.h
13315
13316 MICROCHIP AT91 USART MFD DRIVER
13317 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13318 L:      linux-kernel@vger.kernel.org
13319 S:      Supported
13320 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13321 F:      drivers/mfd/at91-usart.c
13322 F:      include/dt-bindings/mfd/at91-usart.h
13323
13324 MICROCHIP AT91 USART SPI DRIVER
13325 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13326 L:      linux-spi@vger.kernel.org
13327 S:      Supported
13328 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13329 F:      drivers/spi/spi-at91-usart.c
13330
13331 MICROCHIP AUDIO ASOC DRIVERS
13332 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13333 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13334 S:      Supported
13335 F:      sound/soc/atmel
13336
13337 MICROCHIP CSI2DC DRIVER
13338 M:      Eugen Hristev <eugen.hristev@microchip.com>
13339 L:      linux-media@vger.kernel.org
13340 S:      Supported
13341 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13342 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13343
13344 MICROCHIP ECC DRIVER
13345 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13346 L:      linux-crypto@vger.kernel.org
13347 S:      Maintained
13348 F:      drivers/crypto/atmel-ecc.*
13349
13350 MICROCHIP EIC DRIVER
13351 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13353 S:      Supported
13354 F:      drivers/irqchip/irq-mchp-eic.c
13355
13356 MICROCHIP I2C DRIVER
13357 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13358 L:      linux-i2c@vger.kernel.org
13359 S:      Supported
13360 F:      drivers/i2c/busses/i2c-at91-*.c
13361 F:      drivers/i2c/busses/i2c-at91.h
13362
13363 MICROCHIP ISC DRIVER
13364 M:      Eugen Hristev <eugen.hristev@microchip.com>
13365 L:      linux-media@vger.kernel.org
13366 S:      Supported
13367 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13368 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13369 F:      drivers/media/platform/atmel/atmel-isc*
13370 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13371 F:      include/linux/atmel-isc-media.h
13372
13373 MICROCHIP ISI DRIVER
13374 M:      Eugen Hristev <eugen.hristev@microchip.com>
13375 L:      linux-media@vger.kernel.org
13376 S:      Supported
13377 F:      drivers/media/platform/atmel/atmel-isi.c
13378 F:      drivers/media/platform/atmel/atmel-isi.h
13379
13380 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13381 M:      Woojung Huh <woojung.huh@microchip.com>
13382 M:      UNGLinuxDriver@microchip.com
13383 L:      netdev@vger.kernel.org
13384 S:      Maintained
13385 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13386 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13387 F:      drivers/net/dsa/microchip/*
13388 F:      include/linux/platform_data/microchip-ksz.h
13389 F:      net/dsa/tag_ksz.c
13390
13391 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13392 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13393 R:      UNGLinuxDriver@microchip.com
13394 L:      netdev@vger.kernel.org
13395 S:      Maintained
13396 F:      drivers/net/phy/microchip_t1.c
13397
13398 MICROCHIP LAN743X ETHERNET DRIVER
13399 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13400 M:      UNGLinuxDriver@microchip.com
13401 L:      netdev@vger.kernel.org
13402 S:      Maintained
13403 F:      drivers/net/ethernet/microchip/lan743x_*
13404
13405 MICROCHIP LAN966X ETHERNET DRIVER
13406 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13407 M:      UNGLinuxDriver@microchip.com
13408 L:      netdev@vger.kernel.org
13409 S:      Maintained
13410 F:      drivers/net/ethernet/microchip/lan966x/*
13411
13412 MICROCHIP LCDFB DRIVER
13413 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13414 L:      linux-fbdev@vger.kernel.org
13415 S:      Maintained
13416 F:      drivers/video/fbdev/atmel_lcdfb.c
13417 F:      include/video/atmel_lcdc.h
13418
13419 MICROCHIP MCP16502 PMIC DRIVER
13420 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13422 S:      Supported
13423 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13424 F:      drivers/regulator/mcp16502.c
13425
13426 MICROCHIP MCP3911 ADC DRIVER
13427 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13428 M:      Kent Gustavsson <kent@minoris.se>
13429 L:      linux-iio@vger.kernel.org
13430 S:      Maintained
13431 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13432 F:      drivers/iio/adc/mcp3911.c
13433
13434 MICROCHIP MMC/SD/SDIO MCI DRIVER
13435 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13436 S:      Maintained
13437 F:      drivers/mmc/host/atmel-mci.c
13438
13439 MICROCHIP NAND DRIVER
13440 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13441 L:      linux-mtd@lists.infradead.org
13442 S:      Supported
13443 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13444 F:      drivers/mtd/nand/raw/atmel/*
13445
13446 MICROCHIP PCI1XXXX GP DRIVER
13447 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13448 L:      linux-gpio@vger.kernel.org
13449 S:      Supported
13450 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13451 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13452 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13453
13454 MICROCHIP OTPC DRIVER
13455 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13457 S:      Supported
13458 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13459 F:      drivers/nvmem/microchip-otpc.c
13460 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13461
13462 MICROCHIP PWM DRIVER
13463 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13465 L:      linux-pwm@vger.kernel.org
13466 S:      Supported
13467 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13468 F:      drivers/pwm/pwm-atmel.c
13469
13470 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13471 M:      Eugen Hristev <eugen.hristev@microchip.com>
13472 L:      linux-iio@vger.kernel.org
13473 S:      Supported
13474 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13475 F:      drivers/iio/adc/at91-sama5d2_adc.c
13476 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13477
13478 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13479 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13480 S:      Supported
13481 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13482
13483 MICROCHIP SPI DRIVER
13484 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13485 S:      Supported
13486 F:      drivers/spi/spi-atmel.*
13487
13488 MICROCHIP SSC DRIVER
13489 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13491 S:      Supported
13492 F:      drivers/misc/atmel-ssc.c
13493 F:      include/linux/atmel-ssc.h
13494
13495 MICROCHIP USB251XB DRIVER
13496 M:      Richard Leitner <richard.leitner@skidata.com>
13497 L:      linux-usb@vger.kernel.org
13498 S:      Maintained
13499 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13500 F:      drivers/usb/misc/usb251xb.c
13501
13502 MICROCHIP USBA UDC DRIVER
13503 M:      Cristian Birsan <cristian.birsan@microchip.com>
13504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13505 S:      Supported
13506 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13507
13508 MICROCHIP WILC1000 WIFI DRIVER
13509 M:      Ajay Singh <ajay.kathat@microchip.com>
13510 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13511 L:      linux-wireless@vger.kernel.org
13512 S:      Supported
13513 F:      drivers/net/wireless/microchip/wilc1000/
13514
13515 MICROSEMI MIPS SOCS
13516 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13517 M:      UNGLinuxDriver@microchip.com
13518 L:      linux-mips@vger.kernel.org
13519 S:      Supported
13520 F:      Documentation/devicetree/bindings/mips/mscc.txt
13521 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13522 F:      arch/mips/boot/dts/mscc/
13523 F:      arch/mips/configs/generic/board-ocelot.config
13524 F:      arch/mips/generic/board-ocelot.c
13525
13526 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13527 M:      Don Brace <don.brace@microchip.com>
13528 L:      storagedev@microchip.com
13529 L:      linux-scsi@vger.kernel.org
13530 S:      Supported
13531 F:      Documentation/scsi/smartpqi.rst
13532 F:      drivers/scsi/smartpqi/Kconfig
13533 F:      drivers/scsi/smartpqi/Makefile
13534 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13535 F:      include/linux/cciss*.h
13536 F:      include/uapi/linux/cciss*.h
13537
13538 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13539 M:      Maximilian Luz <luzmaximilian@gmail.com>
13540 L:      platform-driver-x86@vger.kernel.org
13541 S:      Maintained
13542 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13543
13544 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13545 M:      Maximilian Luz <luzmaximilian@gmail.com>
13546 L:      linux-pm@vger.kernel.org
13547 L:      platform-driver-x86@vger.kernel.org
13548 S:      Maintained
13549 F:      drivers/power/supply/surface_battery.c
13550 F:      drivers/power/supply/surface_charger.c
13551
13552 MICROSOFT SURFACE DTX DRIVER
13553 M:      Maximilian Luz <luzmaximilian@gmail.com>
13554 L:      platform-driver-x86@vger.kernel.org
13555 S:      Maintained
13556 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13557 F:      drivers/platform/surface/surface_dtx.c
13558 F:      include/uapi/linux/surface_aggregator/dtx.h
13559
13560 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13561 M:      Maximilian Luz <luzmaximilian@gmail.com>
13562 L:      platform-driver-x86@vger.kernel.org
13563 S:      Maintained
13564 F:      drivers/platform/surface/surface_gpe.c
13565
13566 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13567 M:      Hans de Goede <hdegoede@redhat.com>
13568 M:      Mark Gross <markgross@kernel.org>
13569 M:      Maximilian Luz <luzmaximilian@gmail.com>
13570 L:      platform-driver-x86@vger.kernel.org
13571 S:      Maintained
13572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13573 F:      drivers/platform/surface/
13574
13575 MICROSOFT SURFACE HID TRANSPORT DRIVER
13576 M:      Maximilian Luz <luzmaximilian@gmail.com>
13577 L:      linux-input@vger.kernel.org
13578 L:      platform-driver-x86@vger.kernel.org
13579 S:      Maintained
13580 F:      drivers/hid/surface-hid/
13581
13582 MICROSOFT SURFACE HOT-PLUG DRIVER
13583 M:      Maximilian Luz <luzmaximilian@gmail.com>
13584 L:      platform-driver-x86@vger.kernel.org
13585 S:      Maintained
13586 F:      drivers/platform/surface/surface_hotplug.c
13587
13588 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13589 M:      Maximilian Luz <luzmaximilian@gmail.com>
13590 L:      platform-driver-x86@vger.kernel.org
13591 S:      Maintained
13592 F:      drivers/platform/surface/surface_platform_profile.c
13593
13594 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13595 M:      Chen Yu <yu.c.chen@intel.com>
13596 L:      platform-driver-x86@vger.kernel.org
13597 S:      Supported
13598 F:      drivers/platform/surface/surfacepro3_button.c
13599
13600 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13601 M:      Maximilian Luz <luzmaximilian@gmail.com>
13602 L:      platform-driver-x86@vger.kernel.org
13603 S:      Maintained
13604 W:      https://github.com/linux-surface/surface-aggregator-module
13605 C:      irc://irc.libera.chat/linux-surface
13606 F:      Documentation/driver-api/surface_aggregator/
13607 F:      drivers/platform/surface/aggregator/
13608 F:      drivers/platform/surface/surface_acpi_notify.c
13609 F:      drivers/platform/surface/surface_aggregator_cdev.c
13610 F:      drivers/platform/surface/surface_aggregator_registry.c
13611 F:      include/linux/surface_acpi_notify.h
13612 F:      include/linux/surface_aggregator/
13613 F:      include/uapi/linux/surface_aggregator/
13614
13615 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13616 M:      Maximilian Luz <luzmaximilian@gmail.com>
13617 L:      platform-driver-x86@vger.kernel.org
13618 S:      Maintained
13619 F:      drivers/platform/surface/surface_aggregator_hub.c
13620
13621 MICROTEK X6 SCANNER
13622 M:      Oliver Neukum <oliver@neukum.org>
13623 S:      Maintained
13624 F:      drivers/usb/image/microtek.*
13625
13626 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13627 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13628 M:      Luka Perkov <luka.perkov@sartura.hr>
13629 S:      Maintained
13630 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13631 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13632 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13633 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13634 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13635 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13636
13637 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13638 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13639 L:      linux-media@vger.kernel.org
13640 S:      Maintained
13641 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13642 F:      Documentation/driver-api/media/drivers/ccs/
13643 F:      Documentation/userspace-api/media/drivers/ccs.rst
13644 F:      drivers/media/i2c/ccs-pll.c
13645 F:      drivers/media/i2c/ccs-pll.h
13646 F:      drivers/media/i2c/ccs/
13647 F:      include/uapi/linux/ccs.h
13648 F:      include/uapi/linux/smiapp.h
13649
13650 MIPS
13651 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13652 L:      linux-mips@vger.kernel.org
13653 S:      Maintained
13654 W:      http://www.linux-mips.org/
13655 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13657 F:      Documentation/devicetree/bindings/mips/
13658 F:      Documentation/mips/
13659 F:      arch/mips/
13660 F:      drivers/platform/mips/
13661 F:      include/dt-bindings/mips/
13662
13663 MIPS BOSTON DEVELOPMENT BOARD
13664 M:      Paul Burton <paulburton@kernel.org>
13665 L:      linux-mips@vger.kernel.org
13666 S:      Maintained
13667 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13668 F:      arch/mips/boot/dts/img/boston.dts
13669 F:      arch/mips/configs/generic/board-boston.config
13670 F:      drivers/clk/imgtec/clk-boston.c
13671 F:      include/dt-bindings/clock/boston-clock.h
13672
13673 MIPS CORE DRIVERS
13674 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13675 M:      Serge Semin <fancer.lancer@gmail.com>
13676 L:      linux-mips@vger.kernel.org
13677 S:      Supported
13678 F:      drivers/bus/mips_cdmm.c
13679 F:      drivers/clocksource/mips-gic-timer.c
13680 F:      drivers/cpuidle/cpuidle-cps.c
13681 F:      drivers/irqchip/irq-mips-cpu.c
13682 F:      drivers/irqchip/irq-mips-gic.c
13683
13684 MIPS GENERIC PLATFORM
13685 M:      Paul Burton <paulburton@kernel.org>
13686 L:      linux-mips@vger.kernel.org
13687 S:      Supported
13688 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13689 F:      arch/mips/generic/
13690 F:      arch/mips/tools/generic-board-config.sh
13691
13692 MIPS RINT INSTRUCTION EMULATION
13693 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13694 L:      linux-mips@vger.kernel.org
13695 S:      Supported
13696 F:      arch/mips/math-emu/dp_rint.c
13697 F:      arch/mips/math-emu/sp_rint.c
13698
13699 MIPS/LOONGSON1 ARCHITECTURE
13700 M:      Keguang Zhang <keguang.zhang@gmail.com>
13701 L:      linux-mips@vger.kernel.org
13702 S:      Maintained
13703 F:      arch/mips/include/asm/mach-loongson32/
13704 F:      arch/mips/loongson32/
13705 F:      drivers/*/*/*loongson1*
13706 F:      drivers/*/*loongson1*
13707
13708 MIPS/LOONGSON2EF ARCHITECTURE
13709 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13710 L:      linux-mips@vger.kernel.org
13711 S:      Maintained
13712 F:      arch/mips/include/asm/mach-loongson2ef/
13713 F:      arch/mips/loongson2ef/
13714 F:      drivers/cpufreq/loongson2_cpufreq.c
13715
13716 MIPS/LOONGSON64 ARCHITECTURE
13717 M:      Huacai Chen <chenhuacai@kernel.org>
13718 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13719 L:      linux-mips@vger.kernel.org
13720 S:      Maintained
13721 F:      arch/mips/include/asm/mach-loongson64/
13722 F:      arch/mips/loongson64/
13723 F:      drivers/irqchip/irq-loongson*
13724 F:      drivers/platform/mips/cpu_hwmon.c
13725
13726 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13727 M:      Hans Verkuil <hverkuil@xs4all.nl>
13728 L:      linux-media@vger.kernel.org
13729 S:      Odd Fixes
13730 W:      https://linuxtv.org
13731 T:      git git://linuxtv.org/media_tree.git
13732 F:      drivers/media/radio/radio-miropcm20*
13733
13734 MMP SUPPORT
13735 R:      Lubomir Rintel <lkundrak@v3.sk>
13736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13737 S:      Odd Fixes
13738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13739 F:      arch/arm/boot/dts/mmp*
13740 F:      arch/arm/mach-mmp/
13741 F:      include/linux/soc/mmp/
13742
13743 MMP USB PHY DRIVERS
13744 R:      Lubomir Rintel <lkundrak@v3.sk>
13745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13746 S:      Maintained
13747 F:      drivers/phy/marvell/phy-mmp3-usb.c
13748 F:      drivers/phy/marvell/phy-pxa-usb.c
13749
13750 MMU GATHER AND TLB INVALIDATION
13751 M:      Will Deacon <will@kernel.org>
13752 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13753 M:      Andrew Morton <akpm@linux-foundation.org>
13754 M:      Nick Piggin <npiggin@gmail.com>
13755 M:      Peter Zijlstra <peterz@infradead.org>
13756 L:      linux-arch@vger.kernel.org
13757 L:      linux-mm@kvack.org
13758 S:      Maintained
13759 F:      arch/*/include/asm/tlb.h
13760 F:      include/asm-generic/tlb.h
13761 F:      mm/mmu_gather.c
13762
13763 MN88472 MEDIA DRIVER
13764 M:      Antti Palosaari <crope@iki.fi>
13765 L:      linux-media@vger.kernel.org
13766 S:      Maintained
13767 W:      https://linuxtv.org
13768 W:      http://palosaari.fi/linux/
13769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13770 F:      drivers/media/dvb-frontends/mn88472*
13771
13772 MN88473 MEDIA DRIVER
13773 M:      Antti Palosaari <crope@iki.fi>
13774 L:      linux-media@vger.kernel.org
13775 S:      Maintained
13776 W:      https://linuxtv.org
13777 W:      http://palosaari.fi/linux/
13778 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13779 F:      drivers/media/dvb-frontends/mn88473*
13780
13781 MODULE SUPPORT
13782 M:      Luis Chamberlain <mcgrof@kernel.org>
13783 L:      linux-modules@vger.kernel.org
13784 L:      linux-kernel@vger.kernel.org
13785 S:      Maintained
13786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13787 F:      include/linux/module.h
13788 F:      kernel/module/
13789 F:      scripts/module*
13790
13791 MONOLITHIC POWER SYSTEM PMIC DRIVER
13792 M:      Saravanan Sekar <sravanhome@gmail.com>
13793 S:      Maintained
13794 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13795 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13796 F:      drivers/iio/adc/mp2629_adc.c
13797 F:      drivers/mfd/mp2629.c
13798 F:      drivers/power/supply/mp2629_charger.c
13799 F:      drivers/regulator/mp5416.c
13800 F:      drivers/regulator/mpq7920.c
13801 F:      drivers/regulator/mpq7920.h
13802 F:      include/linux/mfd/mp2629.h
13803
13804 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13805 S:      Orphan
13806 W:      http://popies.net/meye/
13807 F:      Documentation/userspace-api/media/drivers/meye*
13808 F:      drivers/media/pci/meye/
13809 F:      include/uapi/linux/meye.h
13810
13811 MOTORCOMM PHY DRIVER
13812 M:      Peter Geis <pgwipeout@gmail.com>
13813 L:      netdev@vger.kernel.org
13814 S:      Maintained
13815 F:      drivers/net/phy/motorcomm.c
13816
13817 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13818 M:      Jiri Slaby <jirislaby@kernel.org>
13819 S:      Maintained
13820 F:      Documentation/driver-api/tty/moxa-smartio.rst
13821 F:      drivers/tty/mxser.*
13822
13823 MR800 AVERMEDIA USB FM RADIO DRIVER
13824 M:      Alexey Klimov <klimov.linux@gmail.com>
13825 L:      linux-media@vger.kernel.org
13826 S:      Maintained
13827 T:      git git://linuxtv.org/media_tree.git
13828 F:      drivers/media/radio/radio-mr800.c
13829
13830 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13831 M:      Alan Ott <alan@signal11.us>
13832 L:      linux-wpan@vger.kernel.org
13833 S:      Maintained
13834 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13835 F:      drivers/net/ieee802154/mrf24j40.c
13836
13837 MSI LAPTOP SUPPORT
13838 M:      "Lee, Chun-Yi" <jlee@suse.com>
13839 L:      platform-driver-x86@vger.kernel.org
13840 S:      Maintained
13841 F:      drivers/platform/x86/msi-laptop.c
13842
13843 MSI WMI SUPPORT
13844 L:      platform-driver-x86@vger.kernel.org
13845 S:      Orphan
13846 F:      drivers/platform/x86/msi-wmi.c
13847
13848 MSI001 MEDIA DRIVER
13849 M:      Antti Palosaari <crope@iki.fi>
13850 L:      linux-media@vger.kernel.org
13851 S:      Maintained
13852 W:      https://linuxtv.org
13853 W:      http://palosaari.fi/linux/
13854 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13855 T:      git git://linuxtv.org/anttip/media_tree.git
13856 F:      drivers/media/tuners/msi001*
13857
13858 MSI2500 MEDIA DRIVER
13859 M:      Antti Palosaari <crope@iki.fi>
13860 L:      linux-media@vger.kernel.org
13861 S:      Maintained
13862 W:      https://linuxtv.org
13863 W:      http://palosaari.fi/linux/
13864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13865 T:      git git://linuxtv.org/anttip/media_tree.git
13866 F:      drivers/media/usb/msi2500/
13867
13868 MSTAR INTERRUPT CONTROLLER DRIVER
13869 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13870 M:      Daniel Palmer <daniel@thingy.jp>
13871 S:      Maintained
13872 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13873 F:      drivers/irqchip/irq-mst-intc.c
13874
13875 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13876 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13877 L:      linux-mtd@lists.infradead.org
13878 S:      Maintained
13879 F:      drivers/mtd/devices/docg3*
13880
13881 MT9M032 APTINA SENSOR DRIVER
13882 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13883 L:      linux-media@vger.kernel.org
13884 S:      Maintained
13885 T:      git git://linuxtv.org/media_tree.git
13886 F:      drivers/media/i2c/mt9m032.c
13887 F:      include/media/i2c/mt9m032.h
13888
13889 MT9P031 APTINA CAMERA SENSOR
13890 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13891 L:      linux-media@vger.kernel.org
13892 S:      Maintained
13893 T:      git git://linuxtv.org/media_tree.git
13894 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13895 F:      drivers/media/i2c/mt9p031.c
13896 F:      include/media/i2c/mt9p031.h
13897
13898 MT9T001 APTINA CAMERA SENSOR
13899 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13900 L:      linux-media@vger.kernel.org
13901 S:      Maintained
13902 T:      git git://linuxtv.org/media_tree.git
13903 F:      drivers/media/i2c/mt9t001.c
13904 F:      include/media/i2c/mt9t001.h
13905
13906 MT9T112 APTINA CAMERA SENSOR
13907 M:      Jacopo Mondi <jacopo@jmondi.org>
13908 L:      linux-media@vger.kernel.org
13909 S:      Odd Fixes
13910 T:      git git://linuxtv.org/media_tree.git
13911 F:      drivers/media/i2c/mt9t112.c
13912 F:      include/media/i2c/mt9t112.h
13913
13914 MT9V032 APTINA CAMERA SENSOR
13915 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13916 L:      linux-media@vger.kernel.org
13917 S:      Maintained
13918 T:      git git://linuxtv.org/media_tree.git
13919 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13920 F:      drivers/media/i2c/mt9v032.c
13921 F:      include/media/i2c/mt9v032.h
13922
13923 MT9V111 APTINA CAMERA SENSOR
13924 M:      Jacopo Mondi <jacopo@jmondi.org>
13925 L:      linux-media@vger.kernel.org
13926 S:      Maintained
13927 T:      git git://linuxtv.org/media_tree.git
13928 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13929 F:      drivers/media/i2c/mt9v111.c
13930
13931 MULTIFUNCTION DEVICES (MFD)
13932 M:      Lee Jones <lee@kernel.org>
13933 S:      Supported
13934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13935 F:      Documentation/devicetree/bindings/mfd/
13936 F:      drivers/mfd/
13937 F:      include/dt-bindings/mfd/
13938 F:      include/linux/mfd/
13939
13940 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13941 S:      Orphan
13942 F:      drivers/mmc/host/mmc_spi.c
13943 F:      include/linux/spi/mmc_spi.h
13944
13945 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13946 M:      Ulf Hansson <ulf.hansson@linaro.org>
13947 L:      linux-mmc@vger.kernel.org
13948 S:      Maintained
13949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13950 F:      Documentation/devicetree/bindings/mmc/
13951 F:      drivers/mmc/
13952 F:      include/linux/mmc/
13953 F:      include/uapi/linux/mmc/
13954
13955 MULTIPLEXER SUBSYSTEM
13956 M:      Peter Rosin <peda@axentia.se>
13957 S:      Maintained
13958 F:      Documentation/ABI/testing/sysfs-class-mux*
13959 F:      Documentation/devicetree/bindings/mux/
13960 F:      drivers/mux/
13961 F:      include/dt-bindings/mux/
13962 F:      include/linux/mux/
13963
13964 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13965 M:      Bin Liu <b-liu@ti.com>
13966 L:      linux-usb@vger.kernel.org
13967 S:      Maintained
13968 F:      drivers/usb/musb/
13969
13970 MXL301RF MEDIA DRIVER
13971 M:      Akihiro Tsukada <tskd08@gmail.com>
13972 L:      linux-media@vger.kernel.org
13973 S:      Odd Fixes
13974 F:      drivers/media/tuners/mxl301rf*
13975
13976 MXL5007T MEDIA DRIVER
13977 M:      Michael Krufky <mkrufky@linuxtv.org>
13978 L:      linux-media@vger.kernel.org
13979 S:      Maintained
13980 W:      https://linuxtv.org
13981 W:      http://github.com/mkrufky
13982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13983 T:      git git://linuxtv.org/mkrufky/tuners.git
13984 F:      drivers/media/tuners/mxl5007t.*
13985
13986 MXSFB DRM DRIVER
13987 M:      Marek Vasut <marex@denx.de>
13988 M:      Stefan Agner <stefan@agner.ch>
13989 L:      dri-devel@lists.freedesktop.org
13990 S:      Supported
13991 T:      git git://anongit.freedesktop.org/drm/drm-misc
13992 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13993 F:      drivers/gpu/drm/mxsfb/
13994
13995 MYLEX DAC960 PCI RAID Controller
13996 M:      Hannes Reinecke <hare@kernel.org>
13997 L:      linux-scsi@vger.kernel.org
13998 S:      Supported
13999 F:      drivers/scsi/myrb.*
14000 F:      drivers/scsi/myrs.*
14001
14002 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14003 M:      Chris Lee <christopher.lee@cspi.com>
14004 L:      netdev@vger.kernel.org
14005 S:      Supported
14006 W:      https://www.cspi.com/ethernet-products/support/downloads/
14007 F:      drivers/net/ethernet/myricom/myri10ge/
14008
14009 NAND FLASH SUBSYSTEM
14010 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14011 R:      Richard Weinberger <richard@nod.at>
14012 L:      linux-mtd@lists.infradead.org
14013 S:      Maintained
14014 W:      http://www.linux-mtd.infradead.org/
14015 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14016 C:      irc://irc.oftc.net/mtd
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14018 F:      drivers/mtd/nand/
14019 F:      include/linux/mtd/*nand*.h
14020
14021 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14022 M:      Daniel Mack <zonque@gmail.com>
14023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14024 S:      Maintained
14025 W:      http://www.native-instruments.com
14026 F:      sound/usb/caiaq/
14027
14028 NATSEMI ETHERNET DRIVER (DP8381x)
14029 S:      Orphan
14030 F:      drivers/net/ethernet/natsemi/natsemi.c
14031
14032 NCR 5380 SCSI DRIVERS
14033 M:      Finn Thain <fthain@linux-m68k.org>
14034 M:      Michael Schmitz <schmitzmic@gmail.com>
14035 L:      linux-scsi@vger.kernel.org
14036 S:      Maintained
14037 F:      Documentation/scsi/g_NCR5380.rst
14038 F:      drivers/scsi/NCR5380.*
14039 F:      drivers/scsi/arm/cumana_1.c
14040 F:      drivers/scsi/arm/oak.c
14041 F:      drivers/scsi/atari_scsi.*
14042 F:      drivers/scsi/dmx3191d.c
14043 F:      drivers/scsi/g_NCR5380.*
14044 F:      drivers/scsi/mac_scsi.*
14045 F:      drivers/scsi/sun3_scsi.*
14046 F:      drivers/scsi/sun3_scsi_vme.c
14047
14048 NCSI LIBRARY
14049 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14050 S:      Maintained
14051 F:      net/ncsi/
14052
14053 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14054 M:      Guenter Roeck <linux@roeck-us.net>
14055 L:      linux-hwmon@vger.kernel.org
14056 S:      Maintained
14057 F:      Documentation/hwmon/nct6775.rst
14058 F:      drivers/hwmon/nct6775-core.c
14059 F:      drivers/hwmon/nct6775-platform.c
14060 F:      drivers/hwmon/nct6775.h
14061
14062 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14063 M:      Zev Weiss <zev@bewilderbeest.net>
14064 L:      linux-hwmon@vger.kernel.org
14065 S:      Maintained
14066 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14067 F:      drivers/hwmon/nct6775-i2c.c
14068
14069 NETDEVSIM
14070 M:      Jakub Kicinski <kuba@kernel.org>
14071 S:      Maintained
14072 F:      drivers/net/netdevsim/*
14073
14074 NETEM NETWORK EMULATOR
14075 M:      Stephen Hemminger <stephen@networkplumber.org>
14076 L:      netdev@vger.kernel.org
14077 S:      Maintained
14078 F:      net/sched/sch_netem.c
14079
14080 NETERION 10GbE DRIVERS (s2io)
14081 M:      Jon Mason <jdmason@kudzu.us>
14082 L:      netdev@vger.kernel.org
14083 S:      Supported
14084 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14085 F:      drivers/net/ethernet/neterion/
14086
14087 NETFILTER
14088 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14089 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14090 M:      Florian Westphal <fw@strlen.de>
14091 L:      netfilter-devel@vger.kernel.org
14092 L:      coreteam@netfilter.org
14093 S:      Maintained
14094 W:      http://www.netfilter.org/
14095 W:      http://www.iptables.org/
14096 W:      http://www.nftables.org/
14097 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14098 C:      irc://irc.libera.chat/netfilter
14099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14101 F:      include/linux/netfilter*
14102 F:      include/linux/netfilter/
14103 F:      include/net/netfilter/
14104 F:      include/uapi/linux/netfilter*
14105 F:      include/uapi/linux/netfilter/
14106 F:      net/*/netfilter.c
14107 F:      net/*/netfilter/
14108 F:      net/bridge/br_netfilter*.c
14109 F:      net/netfilter/
14110
14111 NETROM NETWORK LAYER
14112 M:      Ralf Baechle <ralf@linux-mips.org>
14113 L:      linux-hams@vger.kernel.org
14114 S:      Maintained
14115 W:      http://www.linux-ax25.org/
14116 F:      include/net/netrom.h
14117 F:      include/uapi/linux/netrom.h
14118 F:      net/netrom/
14119
14120 NETRONIX EMBEDDED CONTROLLER
14121 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14122 S:      Maintained
14123 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14124 F:      drivers/mfd/ntxec.c
14125 F:      drivers/pwm/pwm-ntxec.c
14126 F:      drivers/rtc/rtc-ntxec.c
14127 F:      include/linux/mfd/ntxec.h
14128
14129 NETRONOME ETHERNET DRIVERS
14130 M:      Simon Horman <simon.horman@corigine.com>
14131 R:      Jakub Kicinski <kuba@kernel.org>
14132 L:      oss-drivers@corigine.com
14133 S:      Maintained
14134 F:      drivers/net/ethernet/netronome/
14135
14136 NETWORK BLOCK DEVICE (NBD)
14137 M:      Josef Bacik <josef@toxicpanda.com>
14138 L:      linux-block@vger.kernel.org
14139 L:      nbd@other.debian.org
14140 S:      Maintained
14141 F:      Documentation/admin-guide/blockdev/nbd.rst
14142 F:      drivers/block/nbd.c
14143 F:      include/trace/events/nbd.h
14144 F:      include/uapi/linux/nbd.h
14145
14146 NETWORK DROP MONITOR
14147 M:      Neil Horman <nhorman@tuxdriver.com>
14148 L:      netdev@vger.kernel.org
14149 S:      Maintained
14150 W:      https://fedorahosted.org/dropwatch/
14151 F:      include/uapi/linux/net_dropmon.h
14152 F:      net/core/drop_monitor.c
14153
14154 NETWORKING DRIVERS
14155 M:      "David S. Miller" <davem@davemloft.net>
14156 M:      Eric Dumazet <edumazet@google.com>
14157 M:      Jakub Kicinski <kuba@kernel.org>
14158 M:      Paolo Abeni <pabeni@redhat.com>
14159 L:      netdev@vger.kernel.org
14160 S:      Maintained
14161 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14164 F:      Documentation/devicetree/bindings/net/
14165 F:      drivers/connector/
14166 F:      drivers/net/
14167 F:      include/dt-bindings/net/
14168 F:      include/linux/etherdevice.h
14169 F:      include/linux/fcdevice.h
14170 F:      include/linux/fddidevice.h
14171 F:      include/linux/hippidevice.h
14172 F:      include/linux/if_*
14173 F:      include/linux/inetdevice.h
14174 F:      include/linux/netdevice.h
14175 F:      include/uapi/linux/if_*
14176 F:      include/uapi/linux/netdevice.h
14177
14178 NETWORKING DRIVERS (WIRELESS)
14179 M:      Kalle Valo <kvalo@kernel.org>
14180 L:      linux-wireless@vger.kernel.org
14181 S:      Maintained
14182 W:      https://wireless.wiki.kernel.org/
14183 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14186 F:      Documentation/devicetree/bindings/net/wireless/
14187 F:      drivers/net/wireless/
14188
14189 NETWORKING [DSA]
14190 M:      Andrew Lunn <andrew@lunn.ch>
14191 M:      Vivien Didelot <vivien.didelot@gmail.com>
14192 M:      Florian Fainelli <f.fainelli@gmail.com>
14193 M:      Vladimir Oltean <olteanv@gmail.com>
14194 S:      Maintained
14195 F:      Documentation/devicetree/bindings/net/dsa/
14196 F:      drivers/net/dsa/
14197 F:      include/linux/dsa/
14198 F:      include/linux/platform_data/dsa.h
14199 F:      include/net/dsa.h
14200 F:      net/dsa/
14201 F:      tools/testing/selftests/drivers/net/dsa/
14202
14203 NETWORKING [GENERAL]
14204 M:      "David S. Miller" <davem@davemloft.net>
14205 M:      Eric Dumazet <edumazet@google.com>
14206 M:      Jakub Kicinski <kuba@kernel.org>
14207 M:      Paolo Abeni <pabeni@redhat.com>
14208 L:      netdev@vger.kernel.org
14209 S:      Maintained
14210 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14211 B:      mailto:netdev@vger.kernel.org
14212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14214 F:      Documentation/networking/
14215 F:      Documentation/process/maintainer-netdev.rst
14216 F:      include/linux/in.h
14217 F:      include/linux/net.h
14218 F:      include/linux/netdevice.h
14219 F:      include/net/
14220 F:      include/uapi/linux/in.h
14221 F:      include/uapi/linux/net.h
14222 F:      include/uapi/linux/net_namespace.h
14223 F:      include/uapi/linux/netdevice.h
14224 F:      lib/net_utils.c
14225 F:      lib/random32.c
14226 F:      net/
14227 F:      tools/testing/selftests/net/
14228
14229 NETWORKING [IPSEC]
14230 M:      Steffen Klassert <steffen.klassert@secunet.com>
14231 M:      Herbert Xu <herbert@gondor.apana.org.au>
14232 M:      "David S. Miller" <davem@davemloft.net>
14233 L:      netdev@vger.kernel.org
14234 S:      Maintained
14235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14237 F:      include/net/xfrm.h
14238 F:      include/uapi/linux/xfrm.h
14239 F:      net/ipv4/ah4.c
14240 F:      net/ipv4/esp4*
14241 F:      net/ipv4/ip_vti.c
14242 F:      net/ipv4/ipcomp.c
14243 F:      net/ipv4/xfrm*
14244 F:      net/ipv6/ah6.c
14245 F:      net/ipv6/esp6*
14246 F:      net/ipv6/ip6_vti.c
14247 F:      net/ipv6/ipcomp6.c
14248 F:      net/ipv6/xfrm*
14249 F:      net/key/
14250 F:      net/xfrm/
14251 F:      tools/testing/selftests/net/ipsec.c
14252
14253 NETWORKING [IPv4/IPv6]
14254 M:      "David S. Miller" <davem@davemloft.net>
14255 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
14256 M:      David Ahern <dsahern@kernel.org>
14257 L:      netdev@vger.kernel.org
14258 S:      Maintained
14259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14260 F:      arch/x86/net/*
14261 F:      include/linux/ip.h
14262 F:      include/linux/ipv6*
14263 F:      include/net/fib*
14264 F:      include/net/ip*
14265 F:      include/net/route.h
14266 F:      net/ipv4/
14267 F:      net/ipv6/
14268
14269 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14270 M:      Paul Moore <paul@paul-moore.com>
14271 L:      netdev@vger.kernel.org
14272 L:      linux-security-module@vger.kernel.org
14273 S:      Maintained
14274 W:      https://github.com/netlabel
14275 F:      Documentation/netlabel/
14276 F:      include/net/calipso.h
14277 F:      include/net/cipso_ipv4.h
14278 F:      include/net/netlabel.h
14279 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14280 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14281 F:      net/ipv4/cipso_ipv4.c
14282 F:      net/ipv6/calipso.c
14283 F:      net/netfilter/xt_CONNSECMARK.c
14284 F:      net/netfilter/xt_SECMARK.c
14285 F:      net/netlabel/
14286
14287 NETWORKING [MPTCP]
14288 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
14289 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14290 L:      netdev@vger.kernel.org
14291 L:      mptcp@lists.linux.dev
14292 S:      Maintained
14293 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14294 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14295 F:      Documentation/networking/mptcp-sysctl.rst
14296 F:      include/net/mptcp.h
14297 F:      include/trace/events/mptcp.h
14298 F:      include/uapi/linux/mptcp.h
14299 F:      net/mptcp/
14300 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14301 F:      tools/testing/selftests/net/mptcp/
14302
14303 NETWORKING [TCP]
14304 M:      Eric Dumazet <edumazet@google.com>
14305 L:      netdev@vger.kernel.org
14306 S:      Maintained
14307 F:      include/linux/tcp.h
14308 F:      include/net/tcp.h
14309 F:      include/trace/events/tcp.h
14310 F:      include/uapi/linux/tcp.h
14311 F:      net/ipv4/syncookies.c
14312 F:      net/ipv4/tcp*.c
14313 F:      net/ipv6/syncookies.c
14314 F:      net/ipv6/tcp*.c
14315
14316 NETWORKING [TLS]
14317 M:      Boris Pismenny <borisp@nvidia.com>
14318 M:      John Fastabend <john.fastabend@gmail.com>
14319 M:      Jakub Kicinski <kuba@kernel.org>
14320 L:      netdev@vger.kernel.org
14321 S:      Maintained
14322 F:      include/net/tls.h
14323 F:      include/uapi/linux/tls.h
14324 F:      net/tls/*
14325
14326 NETXEN (1/10) GbE SUPPORT
14327 M:      Manish Chopra <manishc@marvell.com>
14328 M:      Rahul Verma <rahulv@marvell.com>
14329 M:      GR-Linux-NIC-Dev@marvell.com
14330 L:      netdev@vger.kernel.org
14331 S:      Supported
14332 F:      drivers/net/ethernet/qlogic/netxen/
14333
14334 NET_FAILOVER MODULE
14335 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14336 L:      netdev@vger.kernel.org
14337 S:      Supported
14338 F:      Documentation/networking/net_failover.rst
14339 F:      drivers/net/net_failover.c
14340 F:      include/net/net_failover.h
14341
14342 NEXTHOP
14343 M:      David Ahern <dsahern@kernel.org>
14344 L:      netdev@vger.kernel.org
14345 S:      Maintained
14346 F:      include/net/netns/nexthop.h
14347 F:      include/net/nexthop.h
14348 F:      include/uapi/linux/nexthop.h
14349 F:      net/ipv4/nexthop.c
14350
14351 NFC SUBSYSTEM
14352 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14353 L:      linux-nfc@lists.01.org (subscribers-only)
14354 L:      netdev@vger.kernel.org
14355 S:      Maintained
14356 B:      mailto:linux-nfc@lists.01.org
14357 F:      Documentation/devicetree/bindings/net/nfc/
14358 F:      drivers/nfc/
14359 F:      include/linux/platform_data/nfcmrvl.h
14360 F:      include/net/nfc/
14361 F:      include/uapi/linux/nfc.h
14362 F:      net/nfc/
14363
14364 NFC VIRTUAL NCI DEVICE DRIVER
14365 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14366 L:      netdev@vger.kernel.org
14367 L:      linux-nfc@lists.01.org (subscribers-only)
14368 S:      Supported
14369 F:      drivers/nfc/virtual_ncidev.c
14370 F:      tools/testing/selftests/nci/
14371
14372 NFS, SUNRPC, AND LOCKD CLIENTS
14373 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14374 M:      Anna Schumaker <anna@kernel.org>
14375 L:      linux-nfs@vger.kernel.org
14376 S:      Maintained
14377 W:      http://client.linux-nfs.org
14378 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14379 F:      fs/lockd/
14380 F:      fs/nfs/
14381 F:      fs/nfs_common/
14382 F:      include/linux/lockd/
14383 F:      include/linux/nfs*
14384 F:      include/linux/sunrpc/
14385 F:      include/uapi/linux/nfs*
14386 F:      include/uapi/linux/sunrpc/
14387 F:      net/sunrpc/
14388 F:      Documentation/filesystems/nfs/
14389
14390 NILFS2 FILESYSTEM
14391 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14392 L:      linux-nilfs@vger.kernel.org
14393 S:      Supported
14394 W:      https://nilfs.sourceforge.io/
14395 W:      https://nilfs.osdn.jp/
14396 T:      git git://github.com/konis/nilfs2.git
14397 F:      Documentation/filesystems/nilfs2.rst
14398 F:      fs/nilfs2/
14399 F:      include/trace/events/nilfs2.h
14400 F:      include/uapi/linux/nilfs2_api.h
14401 F:      include/uapi/linux/nilfs2_ondisk.h
14402
14403 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14404 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14405 S:      Maintained
14406 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14407 F:      Documentation/scsi/NinjaSCSI.rst
14408 F:      drivers/scsi/pcmcia/nsp_*
14409
14410 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14411 M:      GOTO Masanori <gotom@debian.or.jp>
14412 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14413 S:      Maintained
14414 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14415 F:      Documentation/scsi/NinjaSCSI.rst
14416 F:      drivers/scsi/nsp32*
14417
14418 NINTENDO HID DRIVER
14419 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14420 L:      linux-input@vger.kernel.org
14421 S:      Maintained
14422 F:      drivers/hid/hid-nintendo*
14423
14424 NIOS2 ARCHITECTURE
14425 M:      Dinh Nguyen <dinguyen@kernel.org>
14426 S:      Maintained
14427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14428 F:      arch/nios2/
14429
14430 NITRO ENCLAVES (NE)
14431 M:      Andra Paraschiv <andraprs@amazon.com>
14432 M:      Alexandru Vasile <lexnv@amazon.com>
14433 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14434 L:      linux-kernel@vger.kernel.org
14435 S:      Supported
14436 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14437 F:      Documentation/virt/ne_overview.rst
14438 F:      drivers/virt/nitro_enclaves/
14439 F:      include/linux/nitro_enclaves.h
14440 F:      include/uapi/linux/nitro_enclaves.h
14441 F:      samples/nitro_enclaves/
14442
14443 NOHZ, DYNTICKS SUPPORT
14444 M:      Frederic Weisbecker <fweisbec@gmail.com>
14445 M:      Thomas Gleixner <tglx@linutronix.de>
14446 M:      Ingo Molnar <mingo@kernel.org>
14447 L:      linux-kernel@vger.kernel.org
14448 S:      Maintained
14449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14450 F:      include/linux/sched/nohz.h
14451 F:      include/linux/tick.h
14452 F:      kernel/time/tick*.*
14453
14454 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14455 M:      Pavel Machek <pavel@ucw.cz>
14456 M:      Sakari Ailus <sakari.ailus@iki.fi>
14457 L:      linux-media@vger.kernel.org
14458 S:      Maintained
14459 F:      drivers/media/i2c/ad5820.c
14460 F:      drivers/media/i2c/et8ek8
14461
14462 NOKIA N900 POWER SUPPLY DRIVERS
14463 R:      Pali Rohár <pali@kernel.org>
14464 F:      drivers/power/supply/bq2415x_charger.c
14465 F:      drivers/power/supply/bq27xxx_battery.c
14466 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14467 F:      drivers/power/supply/isp1704_charger.c
14468 F:      drivers/power/supply/rx51_battery.c
14469 F:      include/linux/power/bq2415x_charger.h
14470 F:      include/linux/power/bq27xxx_battery.h
14471
14472 NOLIBC HEADER FILE
14473 M:      Willy Tarreau <w@1wt.eu>
14474 S:      Maintained
14475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14476 F:      tools/include/nolibc/
14477
14478 NSDEPS
14479 M:      Matthias Maennich <maennich@google.com>
14480 S:      Maintained
14481 F:      Documentation/core-api/symbol-namespaces.rst
14482 F:      scripts/nsdeps
14483
14484 NTB AMD DRIVER
14485 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14486 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14487 L:      ntb@lists.linux.dev
14488 S:      Supported
14489 F:      drivers/ntb/hw/amd/
14490
14491 NTB DRIVER CORE
14492 M:      Jon Mason <jdmason@kudzu.us>
14493 M:      Dave Jiang <dave.jiang@intel.com>
14494 M:      Allen Hubbe <allenbh@gmail.com>
14495 L:      ntb@lists.linux.dev
14496 S:      Supported
14497 W:      https://github.com/jonmason/ntb/wiki
14498 T:      git git://github.com/jonmason/ntb.git
14499 F:      drivers/net/ntb_netdev.c
14500 F:      drivers/ntb/
14501 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14502 F:      include/linux/ntb.h
14503 F:      include/linux/ntb_transport.h
14504 F:      tools/testing/selftests/ntb/
14505
14506 NTB IDT DRIVER
14507 M:      Serge Semin <fancer.lancer@gmail.com>
14508 L:      ntb@lists.linux.dev
14509 S:      Supported
14510 F:      drivers/ntb/hw/idt/
14511
14512 NTB INTEL DRIVER
14513 M:      Dave Jiang <dave.jiang@intel.com>
14514 L:      ntb@lists.linux.dev
14515 S:      Supported
14516 W:      https://github.com/davejiang/linux/wiki
14517 T:      git https://github.com/davejiang/linux.git
14518 F:      drivers/ntb/hw/intel/
14519
14520 NTFS FILESYSTEM
14521 M:      Anton Altaparmakov <anton@tuxera.com>
14522 L:      linux-ntfs-dev@lists.sourceforge.net
14523 S:      Supported
14524 W:      http://www.tuxera.com/
14525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14526 F:      Documentation/filesystems/ntfs.rst
14527 F:      fs/ntfs/
14528
14529 NTFS3 FILESYSTEM
14530 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14531 L:      ntfs3@lists.linux.dev
14532 S:      Supported
14533 W:      http://www.paragon-software.com/
14534 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14535 F:      Documentation/filesystems/ntfs3.rst
14536 F:      fs/ntfs3/
14537
14538 NUBUS SUBSYSTEM
14539 M:      Finn Thain <fthain@linux-m68k.org>
14540 L:      linux-m68k@lists.linux-m68k.org
14541 S:      Maintained
14542 F:      arch/*/include/asm/nubus.h
14543 F:      drivers/nubus/
14544 F:      include/linux/nubus.h
14545 F:      include/uapi/linux/nubus.h
14546
14547 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14548 M:      Antonino Daplas <adaplas@gmail.com>
14549 L:      linux-fbdev@vger.kernel.org
14550 S:      Maintained
14551 F:      drivers/video/fbdev/nvidia/
14552 F:      drivers/video/fbdev/riva/
14553
14554 NVIDIA WMI EC BACKLIGHT DRIVER
14555 M:      Daniel Dadap <ddadap@nvidia.com>
14556 L:      platform-driver-x86@vger.kernel.org
14557 S:      Supported
14558 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14559
14560 NVM EXPRESS DRIVER
14561 M:      Keith Busch <kbusch@kernel.org>
14562 M:      Jens Axboe <axboe@fb.com>
14563 M:      Christoph Hellwig <hch@lst.de>
14564 M:      Sagi Grimberg <sagi@grimberg.me>
14565 L:      linux-nvme@lists.infradead.org
14566 S:      Supported
14567 W:      http://git.infradead.org/nvme.git
14568 T:      git://git.infradead.org/nvme.git
14569 F:      drivers/nvme/host/
14570 F:      drivers/nvme/common/
14571 F:      include/linux/nvme*
14572 F:      include/uapi/linux/nvme_ioctl.h
14573
14574 NVM EXPRESS FC TRANSPORT DRIVERS
14575 M:      James Smart <james.smart@broadcom.com>
14576 L:      linux-nvme@lists.infradead.org
14577 S:      Supported
14578 F:      drivers/nvme/host/fc.c
14579 F:      drivers/nvme/target/fc.c
14580 F:      drivers/nvme/target/fcloop.c
14581 F:      include/linux/nvme-fc-driver.h
14582 F:      include/linux/nvme-fc.h
14583
14584 NVM EXPRESS TARGET DRIVER
14585 M:      Christoph Hellwig <hch@lst.de>
14586 M:      Sagi Grimberg <sagi@grimberg.me>
14587 M:      Chaitanya Kulkarni <kch@nvidia.com>
14588 L:      linux-nvme@lists.infradead.org
14589 S:      Supported
14590 W:      http://git.infradead.org/nvme.git
14591 T:      git://git.infradead.org/nvme.git
14592 F:      drivers/nvme/target/
14593
14594 NVMEM FRAMEWORK
14595 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14596 S:      Maintained
14597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14598 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14599 F:      Documentation/devicetree/bindings/nvmem/
14600 F:      drivers/nvmem/
14601 F:      include/linux/nvmem-consumer.h
14602 F:      include/linux/nvmem-provider.h
14603
14604 NXP C45 TJA11XX PHY DRIVER
14605 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14606 L:      netdev@vger.kernel.org
14607 S:      Maintained
14608 F:      drivers/net/phy/nxp-c45-tja11xx.c
14609
14610 NXP FSPI DRIVER
14611 M:      Han Xu <han.xu@nxp.com>
14612 M:      Haibo Chen <haibo.chen@nxp.com>
14613 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14614 L:      linux-spi@vger.kernel.org
14615 S:      Maintained
14616 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14617 F:      drivers/spi/spi-nxp-fspi.c
14618
14619 NXP FXAS21002C DRIVER
14620 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14621 L:      linux-iio@vger.kernel.org
14622 S:      Maintained
14623 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14624 F:      drivers/iio/gyro/fxas21002c.h
14625 F:      drivers/iio/gyro/fxas21002c_core.c
14626 F:      drivers/iio/gyro/fxas21002c_i2c.c
14627 F:      drivers/iio/gyro/fxas21002c_spi.c
14628
14629 NXP i.MX CLOCK DRIVERS
14630 M:      Abel Vesa <abelvesa@kernel.org>
14631 L:      linux-clk@vger.kernel.org
14632 L:      linux-imx@nxp.com
14633 S:      Maintained
14634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14635 F:      Documentation/devicetree/bindings/clock/imx*
14636 F:      drivers/clk/imx/
14637 F:      include/dt-bindings/clock/imx*
14638
14639 NXP i.MX 8MQ DCSS DRIVER
14640 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14641 R:      Lucas Stach <l.stach@pengutronix.de>
14642 L:      dri-devel@lists.freedesktop.org
14643 S:      Maintained
14644 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14645 F:      drivers/gpu/drm/imx/dcss/
14646
14647 NXP i.MX 8QXP ADC DRIVER
14648 M:      Cai Huoqing <cai.huoqing@linux.dev>
14649 M:      Haibo Chen <haibo.chen@nxp.com>
14650 L:      linux-imx@nxp.com
14651 L:      linux-iio@vger.kernel.org
14652 S:      Maintained
14653 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14654 F:      drivers/iio/adc/imx8qxp-adc.c
14655
14656 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14657 M:      Haibo Chen <haibo.chen@nxp.com>
14658 L:      linux-iio@vger.kernel.org
14659 L:      linux-imx@nxp.com
14660 S:      Maintained
14661 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14662 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14663 F:      drivers/iio/adc/imx7d_adc.c
14664 F:      drivers/iio/adc/vf610_adc.c
14665
14666 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14667 M:      Jagan Teki <jagan@amarulasolutions.com>
14668 S:      Maintained
14669 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14670 F:      drivers/regulator/pf8x00-regulator.c
14671
14672 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14673 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14674 L:      linux-kernel@vger.kernel.org
14675 S:      Maintained
14676 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14677 F:      drivers/extcon/extcon-ptn5150.c
14678
14679 NXP SGTL5000 DRIVER
14680 M:      Fabio Estevam <festevam@gmail.com>
14681 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14682 S:      Maintained
14683 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14684 F:      sound/soc/codecs/sgtl5000*
14685
14686 NXP SJA1105 ETHERNET SWITCH DRIVER
14687 M:      Vladimir Oltean <olteanv@gmail.com>
14688 L:      linux-kernel@vger.kernel.org
14689 S:      Maintained
14690 F:      drivers/net/dsa/sja1105
14691 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14692
14693 NXP TDA998X DRM DRIVER
14694 M:      Russell King <linux@armlinux.org.uk>
14695 S:      Maintained
14696 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14697 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14698 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14699 F:      include/drm/i2c/tda998x.h
14700 F:      include/dt-bindings/display/tda998x.h
14701 K:      "nxp,tda998x"
14702
14703 NXP TFA9879 DRIVER
14704 M:      Peter Rosin <peda@axentia.se>
14705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14706 S:      Maintained
14707 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14708 F:      sound/soc/codecs/tfa9879*
14709
14710 NXP/Goodix TFA989X (TFA1) DRIVER
14711 M:      Stephan Gerhold <stephan@gerhold.net>
14712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14713 S:      Maintained
14714 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14715 F:      sound/soc/codecs/tfa989x.c
14716
14717 NXP-NCI NFC DRIVER
14718 L:      linux-nfc@lists.01.org (subscribers-only)
14719 S:      Orphan
14720 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14721 F:      drivers/nfc/nxp-nci
14722
14723 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14724 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14725 R:      NXP Linux Team <linux-imx@nxp.com>
14726 L:      linux-media@vger.kernel.org
14727 S:      Maintained
14728 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14729 F:      drivers/media/platform/nxp/imx-jpeg
14730
14731 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14732 M:      Jonas Malaco <jonas@protocubo.io>
14733 L:      linux-hwmon@vger.kernel.org
14734 S:      Maintained
14735 F:      Documentation/hwmon/nzxt-kraken2.rst
14736 F:      drivers/hwmon/nzxt-kraken2.c
14737
14738 NZXT-SMART2 HARDWARE MONITORING DRIVER
14739 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14740 L:      linux-hwmon@vger.kernel.org
14741 S:      Maintained
14742 F:      Documentation/hwmon/nzxt-smart2.rst
14743 F:      drivers/hwmon/nzxt-smart2.c
14744
14745 OBJAGG
14746 M:      Jiri Pirko <jiri@nvidia.com>
14747 L:      netdev@vger.kernel.org
14748 S:      Supported
14749 F:      include/linux/objagg.h
14750 F:      lib/objagg.c
14751 F:      lib/test_objagg.c
14752
14753 OBJTOOL
14754 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14755 M:      Peter Zijlstra <peterz@infradead.org>
14756 S:      Supported
14757 F:      tools/objtool/
14758 F:      include/linux/objtool.h
14759
14760 OCELOT ETHERNET SWITCH DRIVER
14761 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14762 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14763 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14764 M:      UNGLinuxDriver@microchip.com
14765 L:      netdev@vger.kernel.org
14766 S:      Supported
14767 F:      drivers/net/dsa/ocelot/*
14768 F:      drivers/net/ethernet/mscc/
14769 F:      include/soc/mscc/ocelot*
14770 F:      net/dsa/tag_ocelot.c
14771 F:      net/dsa/tag_ocelot_8021q.c
14772 F:      tools/testing/selftests/drivers/net/ocelot/*
14773
14774 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14775 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14776 M:      Andrew Donnellan <ajd@linux.ibm.com>
14777 L:      linuxppc-dev@lists.ozlabs.org
14778 S:      Supported
14779 F:      Documentation/userspace-api/accelerators/ocxl.rst
14780 F:      arch/powerpc/include/asm/pnv-ocxl.h
14781 F:      arch/powerpc/platforms/powernv/ocxl.c
14782 F:      drivers/misc/ocxl/
14783 F:      include/misc/ocxl*
14784 F:      include/uapi/misc/ocxl.h
14785
14786 OMAP AUDIO SUPPORT
14787 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14788 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14789 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14790 L:      linux-omap@vger.kernel.org
14791 S:      Maintained
14792 F:      sound/soc/ti/n810.c
14793 F:      sound/soc/ti/omap*
14794 F:      sound/soc/ti/rx51.c
14795 F:      sound/soc/ti/sdma-pcm.*
14796
14797 OMAP CLOCK FRAMEWORK SUPPORT
14798 M:      Paul Walmsley <paul@pwsan.com>
14799 L:      linux-omap@vger.kernel.org
14800 S:      Maintained
14801 F:      arch/arm/*omap*/*clock*
14802
14803 OMAP DEVICE TREE SUPPORT
14804 M:      Benoît Cousson <bcousson@baylibre.com>
14805 M:      Tony Lindgren <tony@atomide.com>
14806 L:      linux-omap@vger.kernel.org
14807 L:      devicetree@vger.kernel.org
14808 S:      Maintained
14809 F:      arch/arm/boot/dts/*am3*
14810 F:      arch/arm/boot/dts/*am4*
14811 F:      arch/arm/boot/dts/*am5*
14812 F:      arch/arm/boot/dts/*dra7*
14813 F:      arch/arm/boot/dts/*omap*
14814 F:      arch/arm/boot/dts/logicpd-som-lv*
14815 F:      arch/arm/boot/dts/logicpd-torpedo*
14816
14817 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14818 L:      linux-omap@vger.kernel.org
14819 L:      linux-fbdev@vger.kernel.org
14820 S:      Orphan
14821 F:      Documentation/arm/omap/dss.rst
14822 F:      drivers/video/fbdev/omap2/
14823
14824 OMAP FRAMEBUFFER SUPPORT
14825 L:      linux-fbdev@vger.kernel.org
14826 L:      linux-omap@vger.kernel.org
14827 S:      Orphan
14828 F:      drivers/video/fbdev/omap/
14829
14830 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14831 M:      Roger Quadros <rogerq@kernel.org>
14832 M:      Tony Lindgren <tony@atomide.com>
14833 L:      linux-omap@vger.kernel.org
14834 S:      Maintained
14835 F:      arch/arm/mach-omap2/*gpmc*
14836 F:      drivers/memory/omap-gpmc.c
14837
14838 OMAP GPIO DRIVER
14839 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14840 M:      Santosh Shilimkar <ssantosh@kernel.org>
14841 M:      Kevin Hilman <khilman@kernel.org>
14842 L:      linux-omap@vger.kernel.org
14843 S:      Maintained
14844 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14845 F:      drivers/gpio/gpio-omap.c
14846
14847 OMAP HARDWARE SPINLOCK SUPPORT
14848 M:      Ohad Ben-Cohen <ohad@wizery.com>
14849 L:      linux-omap@vger.kernel.org
14850 S:      Maintained
14851 F:      drivers/hwspinlock/omap_hwspinlock.c
14852
14853 OMAP HS MMC SUPPORT
14854 L:      linux-mmc@vger.kernel.org
14855 L:      linux-omap@vger.kernel.org
14856 S:      Orphan
14857 F:      drivers/mmc/host/omap_hsmmc.c
14858
14859 OMAP HWMOD DATA
14860 M:      Paul Walmsley <paul@pwsan.com>
14861 L:      linux-omap@vger.kernel.org
14862 S:      Maintained
14863 F:      arch/arm/mach-omap2/omap_hwmod*data*
14864
14865 OMAP HWMOD SUPPORT
14866 M:      Benoît Cousson <bcousson@baylibre.com>
14867 M:      Paul Walmsley <paul@pwsan.com>
14868 L:      linux-omap@vger.kernel.org
14869 S:      Maintained
14870 F:      arch/arm/mach-omap2/omap_hwmod.*
14871
14872 OMAP I2C DRIVER
14873 M:      Vignesh R <vigneshr@ti.com>
14874 L:      linux-omap@vger.kernel.org
14875 L:      linux-i2c@vger.kernel.org
14876 S:      Maintained
14877 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14878 F:      drivers/i2c/busses/i2c-omap.c
14879
14880 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14881 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14882 L:      linux-media@vger.kernel.org
14883 S:      Maintained
14884 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14885 F:      drivers/media/platform/ti/omap3isp/
14886 F:      drivers/staging/media/omap4iss/
14887
14888 OMAP MMC SUPPORT
14889 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14890 L:      linux-omap@vger.kernel.org
14891 S:      Odd Fixes
14892 F:      drivers/mmc/host/omap.c
14893
14894 OMAP POWER MANAGEMENT SUPPORT
14895 M:      Kevin Hilman <khilman@kernel.org>
14896 L:      linux-omap@vger.kernel.org
14897 S:      Maintained
14898 F:      arch/arm/*omap*/*pm*
14899 F:      drivers/cpufreq/omap-cpufreq.c
14900
14901 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14902 M:      Paul Walmsley <paul@pwsan.com>
14903 L:      linux-omap@vger.kernel.org
14904 S:      Maintained
14905 F:      arch/arm/mach-omap2/prm*
14906
14907 OMAP RANDOM NUMBER GENERATOR SUPPORT
14908 M:      Deepak Saxena <dsaxena@plexity.net>
14909 S:      Maintained
14910 F:      drivers/char/hw_random/omap-rng.c
14911
14912 OMAP USB SUPPORT
14913 L:      linux-usb@vger.kernel.org
14914 L:      linux-omap@vger.kernel.org
14915 S:      Orphan
14916 F:      arch/arm/*omap*/usb*
14917 F:      drivers/usb/*/*omap*
14918
14919 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14920 M:      Mark Jackson <mpfj@newflow.co.uk>
14921 L:      linux-omap@vger.kernel.org
14922 S:      Maintained
14923 F:      arch/arm/boot/dts/am335x-nano.dts
14924
14925 OMAP1 SUPPORT
14926 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14927 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14928 M:      Tony Lindgren <tony@atomide.com>
14929 L:      linux-omap@vger.kernel.org
14930 S:      Maintained
14931 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14933 F:      arch/arm/configs/omap1_defconfig
14934 F:      arch/arm/mach-omap1/
14935 F:      arch/arm/plat-omap/
14936 F:      drivers/i2c/busses/i2c-omap.c
14937 F:      include/linux/platform_data/ams-delta-fiq.h
14938 F:      include/linux/platform_data/i2c-omap.h
14939
14940 OMAP2+ SUPPORT
14941 M:      Tony Lindgren <tony@atomide.com>
14942 L:      linux-omap@vger.kernel.org
14943 S:      Maintained
14944 W:      http://www.muru.com/linux/omap/
14945 W:      http://linux.omap.com/
14946 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14948 F:      arch/arm/configs/omap2plus_defconfig
14949 F:      arch/arm/mach-omap2/
14950 F:      arch/arm/plat-omap/
14951 F:      drivers/bus/ti-sysc.c
14952 F:      drivers/i2c/busses/i2c-omap.c
14953 F:      drivers/irqchip/irq-omap-intc.c
14954 F:      drivers/mfd/*omap*.c
14955 F:      drivers/mfd/menelaus.c
14956 F:      drivers/mfd/palmas.c
14957 F:      drivers/mfd/tps65217.c
14958 F:      drivers/mfd/tps65218.c
14959 F:      drivers/mfd/tps65910.c
14960 F:      drivers/mfd/twl-core.[ch]
14961 F:      drivers/mfd/twl4030*.c
14962 F:      drivers/mfd/twl6030*.c
14963 F:      drivers/mfd/twl6040*.c
14964 F:      drivers/regulator/palmas-regulator*.c
14965 F:      drivers/regulator/pbias-regulator.c
14966 F:      drivers/regulator/tps65217-regulator.c
14967 F:      drivers/regulator/tps65218-regulator.c
14968 F:      drivers/regulator/tps65910-regulator.c
14969 F:      drivers/regulator/twl-regulator.c
14970 F:      drivers/regulator/twl6030-regulator.c
14971 F:      include/linux/platform_data/i2c-omap.h
14972 F:      include/linux/platform_data/ti-sysc.h
14973
14974 OMFS FILESYSTEM
14975 M:      Bob Copeland <me@bobcopeland.com>
14976 L:      linux-karma-devel@lists.sourceforge.net
14977 S:      Maintained
14978 F:      Documentation/filesystems/omfs.rst
14979 F:      fs/omfs/
14980
14981 OMNIKEY CARDMAN 4000 DRIVER
14982 M:      Harald Welte <laforge@gnumonks.org>
14983 S:      Maintained
14984 F:      drivers/char/pcmcia/cm4000_cs.c
14985 F:      include/linux/cm4000_cs.h
14986 F:      include/uapi/linux/cm4000_cs.h
14987
14988 OMNIKEY CARDMAN 4040 DRIVER
14989 M:      Harald Welte <laforge@gnumonks.org>
14990 S:      Maintained
14991 F:      drivers/char/pcmcia/cm4040_cs.*
14992
14993 OMNIVISION OG01A1B SENSOR DRIVER
14994 M:      Shawn Tu <shawnx.tu@intel.com>
14995 L:      linux-media@vger.kernel.org
14996 S:      Maintained
14997 F:      drivers/media/i2c/og01a1b.c
14998
14999 OMNIVISION OV02A10 SENSOR DRIVER
15000 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15001 L:      linux-media@vger.kernel.org
15002 S:      Maintained
15003 T:      git git://linuxtv.org/media_tree.git
15004 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15005 F:      drivers/media/i2c/ov02a10.c
15006
15007 OMNIVISION OV08D10 SENSOR DRIVER
15008 M:      Jimmy Su <jimmy.su@intel.com>
15009 L:      linux-media@vger.kernel.org
15010 S:      Maintained
15011 T:      git git://linuxtv.org/media_tree.git
15012 F:      drivers/media/i2c/ov08d10.c
15013
15014 OMNIVISION OV13858 SENSOR DRIVER
15015 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15016 L:      linux-media@vger.kernel.org
15017 S:      Maintained
15018 T:      git git://linuxtv.org/media_tree.git
15019 F:      drivers/media/i2c/ov13858.c
15020
15021 OMNIVISION OV13B10 SENSOR DRIVER
15022 M:      Arec Kao <arec.kao@intel.com>
15023 L:      linux-media@vger.kernel.org
15024 S:      Maintained
15025 T:      git git://linuxtv.org/media_tree.git
15026 F:      drivers/media/i2c/ov13b10.c
15027
15028 OMNIVISION OV2680 SENSOR DRIVER
15029 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15030 L:      linux-media@vger.kernel.org
15031 S:      Maintained
15032 T:      git git://linuxtv.org/media_tree.git
15033 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15034 F:      drivers/media/i2c/ov2680.c
15035
15036 OMNIVISION OV2685 SENSOR DRIVER
15037 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15038 L:      linux-media@vger.kernel.org
15039 S:      Maintained
15040 T:      git git://linuxtv.org/media_tree.git
15041 F:      drivers/media/i2c/ov2685.c
15042
15043 OMNIVISION OV2740 SENSOR DRIVER
15044 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15045 R:      Shawn Tu <shawnx.tu@intel.com>
15046 R:      Bingbu Cao <bingbu.cao@intel.com>
15047 L:      linux-media@vger.kernel.org
15048 S:      Maintained
15049 T:      git git://linuxtv.org/media_tree.git
15050 F:      drivers/media/i2c/ov2740.c
15051
15052 OMNIVISION OV5640 SENSOR DRIVER
15053 M:      Steve Longerbeam <slongerbeam@gmail.com>
15054 L:      linux-media@vger.kernel.org
15055 S:      Maintained
15056 T:      git git://linuxtv.org/media_tree.git
15057 F:      drivers/media/i2c/ov5640.c
15058
15059 OMNIVISION OV5647 SENSOR DRIVER
15060 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15061 M:      Jacopo Mondi <jacopo@jmondi.org>
15062 L:      linux-media@vger.kernel.org
15063 S:      Maintained
15064 T:      git git://linuxtv.org/media_tree.git
15065 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15066 F:      drivers/media/i2c/ov5647.c
15067
15068 OMNIVISION OV5670 SENSOR DRIVER
15069 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15070 L:      linux-media@vger.kernel.org
15071 S:      Maintained
15072 T:      git git://linuxtv.org/media_tree.git
15073 F:      drivers/media/i2c/ov5670.c
15074
15075 OMNIVISION OV5675 SENSOR DRIVER
15076 M:      Shawn Tu <shawnx.tu@intel.com>
15077 L:      linux-media@vger.kernel.org
15078 S:      Maintained
15079 T:      git git://linuxtv.org/media_tree.git
15080 F:      drivers/media/i2c/ov5675.c
15081
15082 OMNIVISION OV5693 SENSOR DRIVER
15083 M:      Daniel Scally <djrscally@gmail.com>
15084 L:      linux-media@vger.kernel.org
15085 S:      Maintained
15086 T:      git git://linuxtv.org/media_tree.git
15087 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15088 F:      drivers/media/i2c/ov5693.c
15089
15090 OMNIVISION OV5695 SENSOR DRIVER
15091 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15092 L:      linux-media@vger.kernel.org
15093 S:      Maintained
15094 T:      git git://linuxtv.org/media_tree.git
15095 F:      drivers/media/i2c/ov5695.c
15096
15097 OMNIVISION OV7670 SENSOR DRIVER
15098 L:      linux-media@vger.kernel.org
15099 S:      Orphan
15100 T:      git git://linuxtv.org/media_tree.git
15101 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15102 F:      drivers/media/i2c/ov7670.c
15103
15104 OMNIVISION OV772x SENSOR DRIVER
15105 M:      Jacopo Mondi <jacopo@jmondi.org>
15106 L:      linux-media@vger.kernel.org
15107 S:      Odd fixes
15108 T:      git git://linuxtv.org/media_tree.git
15109 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15110 F:      drivers/media/i2c/ov772x.c
15111 F:      include/media/i2c/ov772x.h
15112
15113 OMNIVISION OV7740 SENSOR DRIVER
15114 M:      Wenyou Yang <wenyou.yang@microchip.com>
15115 L:      linux-media@vger.kernel.org
15116 S:      Maintained
15117 T:      git git://linuxtv.org/media_tree.git
15118 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15119 F:      drivers/media/i2c/ov7740.c
15120
15121 OMNIVISION OV8856 SENSOR DRIVER
15122 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15123 L:      linux-media@vger.kernel.org
15124 S:      Maintained
15125 T:      git git://linuxtv.org/media_tree.git
15126 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15127 F:      drivers/media/i2c/ov8856.c
15128
15129 OMNIVISION OV9282 SENSOR DRIVER
15130 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15131 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15132 L:      linux-media@vger.kernel.org
15133 S:      Maintained
15134 T:      git git://linuxtv.org/media_tree.git
15135 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15136 F:      drivers/media/i2c/ov9282.c
15137
15138 OMNIVISION OV9640 SENSOR DRIVER
15139 M:      Petr Cvek <petrcvekcz@gmail.com>
15140 L:      linux-media@vger.kernel.org
15141 S:      Maintained
15142 F:      drivers/media/i2c/ov9640.*
15143
15144 OMNIVISION OV9650 SENSOR DRIVER
15145 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15146 R:      Akinobu Mita <akinobu.mita@gmail.com>
15147 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15148 L:      linux-media@vger.kernel.org
15149 S:      Maintained
15150 T:      git git://linuxtv.org/media_tree.git
15151 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15152 F:      drivers/media/i2c/ov9650.c
15153
15154 OMNIVISION OV9734 SENSOR DRIVER
15155 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15156 R:      Bingbu Cao <bingbu.cao@intel.com>
15157 L:      linux-media@vger.kernel.org
15158 S:      Maintained
15159 T:      git git://linuxtv.org/media_tree.git
15160 F:      drivers/media/i2c/ov9734.c
15161
15162 ONBOARD USB HUB DRIVER
15163 M:      Matthias Kaehlcke <mka@chromium.org>
15164 L:      linux-usb@vger.kernel.org
15165 S:      Maintained
15166 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15167 F:      drivers/usb/misc/onboard_usb_hub.c
15168
15169 ONENAND FLASH DRIVER
15170 M:      Kyungmin Park <kyungmin.park@samsung.com>
15171 L:      linux-mtd@lists.infradead.org
15172 S:      Maintained
15173 F:      drivers/mtd/nand/onenand/
15174 F:      include/linux/mtd/onenand*.h
15175
15176 ONION OMEGA2+ BOARD
15177 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15178 L:      linux-mips@vger.kernel.org
15179 S:      Maintained
15180 F:      arch/mips/boot/dts/ralink/omega2p.dts
15181
15182 OP-TEE DRIVER
15183 M:      Jens Wiklander <jens.wiklander@linaro.org>
15184 L:      op-tee@lists.trustedfirmware.org
15185 S:      Maintained
15186 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15187 F:      drivers/tee/optee/
15188
15189 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15190 M:      Sumit Garg <sumit.garg@linaro.org>
15191 L:      op-tee@lists.trustedfirmware.org
15192 S:      Maintained
15193 F:      drivers/char/hw_random/optee-rng.c
15194
15195 OP-TEE RTC DRIVER
15196 M:      Clément Léger <clement.leger@bootlin.com>
15197 L:      linux-rtc@vger.kernel.org
15198 S:      Maintained
15199 F:      drivers/rtc/rtc-optee.c
15200
15201 OPA-VNIC DRIVER
15202 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15203 L:      linux-rdma@vger.kernel.org
15204 S:      Supported
15205 F:      drivers/infiniband/ulp/opa_vnic
15206
15207 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
15208 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
15209 M:      Frank Rowand <frowand.list@gmail.com>
15210 L:      devicetree@vger.kernel.org
15211 S:      Maintained
15212 F:      Documentation/devicetree/dynamic-resolution-notes.rst
15213 F:      Documentation/devicetree/overlay-notes.rst
15214 F:      drivers/of/overlay.c
15215 F:      drivers/of/resolver.c
15216 K:      of_overlay_notifier_
15217
15218 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15219 M:      Rob Herring <robh+dt@kernel.org>
15220 M:      Frank Rowand <frowand.list@gmail.com>
15221 L:      devicetree@vger.kernel.org
15222 S:      Maintained
15223 C:      irc://irc.libera.chat/devicetree
15224 W:      http://www.devicetree.org/
15225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15226 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15227 F:      drivers/of/
15228 F:      include/linux/of*.h
15229 F:      scripts/dtc/
15230
15231 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15232 M:      Rob Herring <robh+dt@kernel.org>
15233 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15234 L:      devicetree@vger.kernel.org
15235 S:      Maintained
15236 C:      irc://irc.libera.chat/devicetree
15237 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15239 F:      Documentation/devicetree/
15240 F:      arch/*/boot/dts/
15241 F:      include/dt-bindings/
15242
15243 OPENCOMPUTE PTP CLOCK DRIVER
15244 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15245 M:      Vadim Fedorenko <vadfed@fb.com>
15246 L:      netdev@vger.kernel.org
15247 S:      Maintained
15248 F:      drivers/ptp/ptp_ocp.c
15249
15250 OPENCORES I2C BUS DRIVER
15251 M:      Peter Korsgaard <peter@korsgaard.com>
15252 M:      Andrew Lunn <andrew@lunn.ch>
15253 L:      linux-i2c@vger.kernel.org
15254 S:      Maintained
15255 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15256 F:      Documentation/i2c/busses/i2c-ocores.rst
15257 F:      drivers/i2c/busses/i2c-ocores.c
15258 F:      include/linux/platform_data/i2c-ocores.h
15259
15260 OPENRISC ARCHITECTURE
15261 M:      Jonas Bonn <jonas@southpole.se>
15262 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15263 M:      Stafford Horne <shorne@gmail.com>
15264 L:      openrisc@lists.librecores.org
15265 S:      Maintained
15266 W:      http://openrisc.io
15267 T:      git git://github.com/openrisc/linux.git
15268 F:      Documentation/devicetree/bindings/openrisc/
15269 F:      Documentation/openrisc/
15270 F:      arch/openrisc/
15271 F:      drivers/irqchip/irq-ompic.c
15272 F:      drivers/irqchip/irq-or1k-*
15273
15274 OPENVSWITCH
15275 M:      Pravin B Shelar <pshelar@ovn.org>
15276 L:      netdev@vger.kernel.org
15277 L:      dev@openvswitch.org
15278 S:      Maintained
15279 W:      http://openvswitch.org
15280 F:      include/uapi/linux/openvswitch.h
15281 F:      net/openvswitch/
15282
15283 OPERATING PERFORMANCE POINTS (OPP)
15284 M:      Viresh Kumar <vireshk@kernel.org>
15285 M:      Nishanth Menon <nm@ti.com>
15286 M:      Stephen Boyd <sboyd@kernel.org>
15287 L:      linux-pm@vger.kernel.org
15288 S:      Maintained
15289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15290 F:      Documentation/devicetree/bindings/opp/
15291 F:      Documentation/power/opp.rst
15292 F:      drivers/opp/
15293 F:      include/linux/pm_opp.h
15294
15295 OPL4 DRIVER
15296 M:      Clemens Ladisch <clemens@ladisch.de>
15297 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15298 S:      Maintained
15299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15300 F:      sound/drivers/opl4/
15301
15302 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15303 M:      Mark Fasheh <mark@fasheh.com>
15304 M:      Joel Becker <jlbec@evilplan.org>
15305 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15306 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15307 S:      Supported
15308 W:      http://ocfs2.wiki.kernel.org
15309 F:      Documentation/filesystems/dlmfs.rst
15310 F:      Documentation/filesystems/ocfs2.rst
15311 F:      fs/ocfs2/
15312
15313 ORANGEFS FILESYSTEM
15314 M:      Mike Marshall <hubcap@omnibond.com>
15315 R:      Martin Brandenburg <martin@omnibond.com>
15316 L:      devel@lists.orangefs.org
15317 S:      Supported
15318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15319 F:      Documentation/filesystems/orangefs.rst
15320 F:      fs/orangefs/
15321
15322 ORINOCO DRIVER
15323 L:      linux-wireless@vger.kernel.org
15324 S:      Orphan
15325 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15326 W:      http://www.nongnu.org/orinoco/
15327 F:      drivers/net/wireless/intersil/orinoco/
15328
15329 OV2659 OMNIVISION SENSOR DRIVER
15330 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15331 L:      linux-media@vger.kernel.org
15332 S:      Maintained
15333 W:      https://linuxtv.org
15334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15335 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15336 F:      drivers/media/i2c/ov2659.c
15337 F:      include/media/i2c/ov2659.h
15338
15339 OVERLAY FILESYSTEM
15340 M:      Miklos Szeredi <miklos@szeredi.hu>
15341 L:      linux-unionfs@vger.kernel.org
15342 S:      Supported
15343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15344 F:      Documentation/filesystems/overlayfs.rst
15345 F:      fs/overlayfs/
15346
15347 P54 WIRELESS DRIVER
15348 M:      Christian Lamparter <chunkeey@googlemail.com>
15349 L:      linux-wireless@vger.kernel.org
15350 S:      Maintained
15351 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15352 F:      drivers/net/wireless/intersil/p54/
15353
15354 PACKING
15355 M:      Vladimir Oltean <olteanv@gmail.com>
15356 L:      netdev@vger.kernel.org
15357 S:      Supported
15358 F:      Documentation/core-api/packing.rst
15359 F:      include/linux/packing.h
15360 F:      lib/packing.c
15361
15362 PADATA PARALLEL EXECUTION MECHANISM
15363 M:      Steffen Klassert <steffen.klassert@secunet.com>
15364 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15365 L:      linux-crypto@vger.kernel.org
15366 L:      linux-kernel@vger.kernel.org
15367 S:      Maintained
15368 F:      Documentation/core-api/padata.rst
15369 F:      include/linux/padata.h
15370 F:      kernel/padata.c
15371
15372 PAGE CACHE
15373 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15374 L:      linux-fsdevel@vger.kernel.org
15375 S:      Supported
15376 T:      git git://git.infradead.org/users/willy/pagecache.git
15377 F:      Documentation/filesystems/locking.rst
15378 F:      Documentation/filesystems/vfs.rst
15379 F:      include/linux/pagemap.h
15380 F:      mm/filemap.c
15381 F:      mm/page-writeback.c
15382 F:      mm/readahead.c
15383 F:      mm/truncate.c
15384
15385 PAGE POOL
15386 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15387 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15388 L:      netdev@vger.kernel.org
15389 S:      Supported
15390 F:      Documentation/networking/page_pool.rst
15391 F:      include/net/page_pool.h
15392 F:      include/trace/events/page_pool.h
15393 F:      net/core/page_pool.c
15394
15395 PAGE TABLE CHECK
15396 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15397 M:      Andrew Morton <akpm@linux-foundation.org>
15398 L:      linux-mm@kvack.org
15399 S:      Maintained
15400 F:      Documentation/mm/page_table_check.rst
15401 F:      include/linux/page_table_check.h
15402 F:      mm/page_table_check.c
15403
15404 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15405 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15406 L:      platform-driver-x86@vger.kernel.org
15407 S:      Maintained
15408 F:      drivers/platform/x86/panasonic-laptop.c
15409
15410 PARALLAX PING IIO SENSOR DRIVER
15411 M:      Andreas Klinger <ak@it-klinger.de>
15412 L:      linux-iio@vger.kernel.org
15413 S:      Maintained
15414 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15415 F:      drivers/iio/proximity/ping.c
15416
15417 PARALLEL LCD/KEYPAD PANEL DRIVER
15418 M:      Willy Tarreau <willy@haproxy.com>
15419 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15420 S:      Odd Fixes
15421 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15422 F:      drivers/auxdisplay/panel.c
15423
15424 PARALLEL PORT SUBSYSTEM
15425 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15426 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15427 L:      linux-parport@lists.infradead.org (subscribers-only)
15428 S:      Maintained
15429 F:      Documentation/driver-api/parport*.rst
15430 F:      drivers/char/ppdev.c
15431 F:      drivers/parport/
15432 F:      include/linux/parport*.h
15433 F:      include/uapi/linux/ppdev.h
15434
15435 PARAVIRT_OPS INTERFACE
15436 M:      Juergen Gross <jgross@suse.com>
15437 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15438 R:      Alexey Makhalov <amakhalov@vmware.com>
15439 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15440 L:      virtualization@lists.linux-foundation.org
15441 L:      x86@kernel.org
15442 S:      Supported
15443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15444 F:      Documentation/virt/paravirt_ops.rst
15445 F:      arch/*/include/asm/paravirt*.h
15446 F:      arch/*/kernel/paravirt*
15447 F:      include/linux/hypervisor.h
15448
15449 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15450 M:      Tim Waugh <tim@cyberelk.net>
15451 L:      linux-parport@lists.infradead.org (subscribers-only)
15452 S:      Maintained
15453 F:      Documentation/admin-guide/blockdev/paride.rst
15454 F:      drivers/block/paride/
15455
15456 PARISC ARCHITECTURE
15457 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15458 M:      Helge Deller <deller@gmx.de>
15459 L:      linux-parisc@vger.kernel.org
15460 S:      Maintained
15461 W:      https://parisc.wiki.kernel.org
15462 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15465 F:      Documentation/parisc/
15466 F:      arch/parisc/
15467 F:      drivers/char/agp/parisc-agp.c
15468 F:      drivers/input/misc/hp_sdc_rtc.c
15469 F:      drivers/input/serio/gscps2.c
15470 F:      drivers/input/serio/hp_sdc*
15471 F:      drivers/parisc/
15472 F:      drivers/parport/parport_gsc.*
15473 F:      drivers/tty/serial/8250/8250_gsc.c
15474 F:      drivers/video/console/sti*
15475 F:      drivers/video/fbdev/sti*
15476 F:      drivers/video/logo/logo_parisc*
15477 F:      include/linux/hp_sdc.h
15478
15479 PARMAN
15480 M:      Jiri Pirko <jiri@nvidia.com>
15481 L:      netdev@vger.kernel.org
15482 S:      Supported
15483 F:      include/linux/parman.h
15484 F:      lib/parman.c
15485 F:      lib/test_parman.c
15486
15487 PC ENGINES APU BOARD DRIVER
15488 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15489 S:      Maintained
15490 F:      drivers/platform/x86/pcengines-apuv2.c
15491
15492 PC87360 HARDWARE MONITORING DRIVER
15493 M:      Jim Cromie <jim.cromie@gmail.com>
15494 L:      linux-hwmon@vger.kernel.org
15495 S:      Maintained
15496 F:      Documentation/hwmon/pc87360.rst
15497 F:      drivers/hwmon/pc87360.c
15498
15499 PC8736x GPIO DRIVER
15500 M:      Jim Cromie <jim.cromie@gmail.com>
15501 S:      Maintained
15502 F:      drivers/char/pc8736x_gpio.c
15503
15504 PC87427 HARDWARE MONITORING DRIVER
15505 M:      Jean Delvare <jdelvare@suse.com>
15506 L:      linux-hwmon@vger.kernel.org
15507 S:      Maintained
15508 F:      Documentation/hwmon/pc87427.rst
15509 F:      drivers/hwmon/pc87427.c
15510
15511 PCA9532 LED DRIVER
15512 M:      Riku Voipio <riku.voipio@iki.fi>
15513 S:      Maintained
15514 F:      drivers/leds/leds-pca9532.c
15515 F:      include/linux/leds-pca9532.h
15516
15517 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15518 M:      Guenter Roeck <linux@roeck-us.net>
15519 L:      linux-i2c@vger.kernel.org
15520 S:      Maintained
15521 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15522
15523 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15524 M:      Khalid Aziz <khalid@gonehiking.org>
15525 S:      Maintained
15526 F:      drivers/firmware/pcdp.*
15527
15528 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15529 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15530 M:      Pali Rohár <pali@kernel.org>
15531 L:      linux-pci@vger.kernel.org
15532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15533 S:      Maintained
15534 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15535 F:      drivers/pci/controller/pci-aardvark.c
15536
15537 PCI DRIVER FOR ALTERA PCIE IP
15538 M:      Joyce Ooi <joyce.ooi@intel.com>
15539 L:      linux-pci@vger.kernel.org
15540 S:      Supported
15541 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15542 F:      drivers/pci/controller/pcie-altera.c
15543
15544 PCI DRIVER FOR APPLIEDMICRO XGENE
15545 M:      Toan Le <toan@os.amperecomputing.com>
15546 L:      linux-pci@vger.kernel.org
15547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15548 S:      Maintained
15549 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15550 F:      drivers/pci/controller/pci-xgene.c
15551
15552 PCI DRIVER FOR ARM VERSATILE PLATFORM
15553 M:      Rob Herring <robh@kernel.org>
15554 L:      linux-pci@vger.kernel.org
15555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15556 S:      Maintained
15557 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15558 F:      drivers/pci/controller/pci-versatile.c
15559
15560 PCI DRIVER FOR ARMADA 8K
15561 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15562 L:      linux-pci@vger.kernel.org
15563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15564 S:      Maintained
15565 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15566 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15567
15568 PCI DRIVER FOR CADENCE PCIE IP
15569 M:      Tom Joseph <tjoseph@cadence.com>
15570 L:      linux-pci@vger.kernel.org
15571 S:      Maintained
15572 F:      Documentation/devicetree/bindings/pci/cdns,*
15573 F:      drivers/pci/controller/cadence/
15574
15575 PCI DRIVER FOR FREESCALE LAYERSCAPE
15576 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15577 M:      Mingkai Hu <mingkai.hu@nxp.com>
15578 M:      Roy Zang <roy.zang@nxp.com>
15579 L:      linuxppc-dev@lists.ozlabs.org
15580 L:      linux-pci@vger.kernel.org
15581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15582 S:      Maintained
15583 F:      drivers/pci/controller/dwc/*layerscape*
15584
15585 PCI DRIVER FOR GENERIC OF HOSTS
15586 M:      Will Deacon <will@kernel.org>
15587 L:      linux-pci@vger.kernel.org
15588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15589 S:      Maintained
15590 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15591 F:      drivers/pci/controller/pci-host-common.c
15592 F:      drivers/pci/controller/pci-host-generic.c
15593
15594 PCI DRIVER FOR IMX6
15595 M:      Richard Zhu <hongxing.zhu@nxp.com>
15596 M:      Lucas Stach <l.stach@pengutronix.de>
15597 L:      linux-pci@vger.kernel.org
15598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15599 S:      Maintained
15600 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15601 F:      drivers/pci/controller/dwc/*imx6*
15602
15603 PCI DRIVER FOR FU740
15604 M:      Paul Walmsley <paul.walmsley@sifive.com>
15605 M:      Greentime Hu <greentime.hu@sifive.com>
15606 L:      linux-pci@vger.kernel.org
15607 S:      Maintained
15608 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15609 F:      drivers/pci/controller/dwc/pcie-fu740.c
15610
15611 PCI DRIVER FOR INTEL IXP4XX
15612 M:      Linus Walleij <linus.walleij@linaro.org>
15613 S:      Maintained
15614 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15615 F:      drivers/pci/controller/pci-ixp4xx.c
15616
15617 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15618 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15619 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15620 L:      linux-pci@vger.kernel.org
15621 S:      Supported
15622 F:      drivers/pci/controller/vmd.c
15623
15624 PCI DRIVER FOR MICROSEMI SWITCHTEC
15625 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15626 M:      Logan Gunthorpe <logang@deltatee.com>
15627 L:      linux-pci@vger.kernel.org
15628 S:      Maintained
15629 F:      Documentation/ABI/testing/sysfs-class-switchtec
15630 F:      Documentation/driver-api/switchtec.rst
15631 F:      drivers/ntb/hw/mscc/
15632 F:      drivers/pci/switch/switchtec*
15633 F:      include/linux/switchtec.h
15634 F:      include/uapi/linux/switchtec_ioctl.h
15635
15636 PCI DRIVER FOR MOBIVEIL PCIE IP
15637 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15638 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15639 L:      linux-pci@vger.kernel.org
15640 S:      Supported
15641 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15642 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15643
15644 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15645 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15646 M:      Pali Rohár <pali@kernel.org>
15647 L:      linux-pci@vger.kernel.org
15648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15649 S:      Maintained
15650 F:      drivers/pci/controller/*mvebu*
15651
15652 PCI DRIVER FOR NVIDIA TEGRA
15653 M:      Thierry Reding <thierry.reding@gmail.com>
15654 L:      linux-tegra@vger.kernel.org
15655 L:      linux-pci@vger.kernel.org
15656 S:      Supported
15657 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15658 F:      drivers/pci/controller/pci-tegra.c
15659
15660 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15661 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15662 L:      linux-pci@vger.kernel.org
15663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15664 S:      Maintained
15665 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15666 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15667
15668 PCI DRIVER FOR RENESAS R-CAR
15669 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15670 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15671 L:      linux-pci@vger.kernel.org
15672 L:      linux-renesas-soc@vger.kernel.org
15673 S:      Maintained
15674 F:      Documentation/devicetree/bindings/pci/*rcar*
15675 F:      drivers/pci/controller/*rcar*
15676
15677 PCI DRIVER FOR SAMSUNG EXYNOS
15678 M:      Jingoo Han <jingoohan1@gmail.com>
15679 L:      linux-pci@vger.kernel.org
15680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15681 L:      linux-samsung-soc@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/pci/controller/dwc/pci-exynos.c
15684
15685 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15686 M:      Jingoo Han <jingoohan1@gmail.com>
15687 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15688 L:      linux-pci@vger.kernel.org
15689 S:      Maintained
15690 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15691 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15692 F:      drivers/pci/controller/dwc/*designware*
15693
15694 PCI DRIVER FOR TI DRA7XX/J721E
15695 M:      Kishon Vijay Abraham I <kishon@ti.com>
15696 L:      linux-omap@vger.kernel.org
15697 L:      linux-pci@vger.kernel.org
15698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15699 S:      Supported
15700 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15701 F:      drivers/pci/controller/cadence/pci-j721e.c
15702 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15703
15704 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15705 M:      Linus Walleij <linus.walleij@linaro.org>
15706 L:      linux-pci@vger.kernel.org
15707 S:      Maintained
15708 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15709 F:      drivers/pci/controller/pci-v3-semi.c
15710
15711 PCI ENDPOINT SUBSYSTEM
15712 M:      Kishon Vijay Abraham I <kishon@ti.com>
15713 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15714 R:      Krzysztof Wilczyński <kw@linux.com>
15715 L:      linux-pci@vger.kernel.org
15716 S:      Supported
15717 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15718 B:      https://bugzilla.kernel.org
15719 C:      irc://irc.oftc.net/linux-pci
15720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15721 F:      Documentation/PCI/endpoint/*
15722 F:      Documentation/misc-devices/pci-endpoint-test.rst
15723 F:      drivers/misc/pci_endpoint_test.c
15724 F:      drivers/pci/endpoint/
15725 F:      tools/pci/
15726
15727 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15728 M:      Russell Currey <ruscur@russell.cc>
15729 M:      Oliver O'Halloran <oohall@gmail.com>
15730 L:      linuxppc-dev@lists.ozlabs.org
15731 S:      Supported
15732 F:      Documentation/PCI/pci-error-recovery.rst
15733 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15734 F:      arch/powerpc/include/*/eeh*.h
15735 F:      arch/powerpc/kernel/eeh*.c
15736 F:      arch/powerpc/platforms/*/eeh*.c
15737 F:      drivers/pci/pcie/aer.c
15738 F:      drivers/pci/pcie/dpc.c
15739 F:      drivers/pci/pcie/err.c
15740
15741 PCI ERROR RECOVERY
15742 M:      Linas Vepstas <linasvepstas@gmail.com>
15743 L:      linux-pci@vger.kernel.org
15744 S:      Supported
15745 F:      Documentation/PCI/pci-error-recovery.rst
15746
15747 PCI PEER-TO-PEER DMA (P2PDMA)
15748 M:      Bjorn Helgaas <bhelgaas@google.com>
15749 M:      Logan Gunthorpe <logang@deltatee.com>
15750 L:      linux-pci@vger.kernel.org
15751 S:      Supported
15752 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15753 B:      https://bugzilla.kernel.org
15754 C:      irc://irc.oftc.net/linux-pci
15755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15756 F:      Documentation/driver-api/pci/p2pdma.rst
15757 F:      drivers/pci/p2pdma.c
15758 F:      include/linux/pci-p2pdma.h
15759
15760 PCI MSI DRIVER FOR ALTERA MSI IP
15761 M:      Joyce Ooi <joyce.ooi@intel.com>
15762 L:      linux-pci@vger.kernel.org
15763 S:      Supported
15764 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15765 F:      drivers/pci/controller/pcie-altera-msi.c
15766
15767 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15768 M:      Toan Le <toan@os.amperecomputing.com>
15769 L:      linux-pci@vger.kernel.org
15770 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15771 S:      Maintained
15772 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15773 F:      drivers/pci/controller/pci-xgene-msi.c
15774
15775 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15776 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15777 R:      Rob Herring <robh@kernel.org>
15778 R:      Krzysztof Wilczyński <kw@linux.com>
15779 L:      linux-pci@vger.kernel.org
15780 S:      Supported
15781 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15782 B:      https://bugzilla.kernel.org
15783 C:      irc://irc.oftc.net/linux-pci
15784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15785 F:      drivers/pci/controller/
15786 F:      drivers/pci/pci-bridge-emul.c
15787 F:      drivers/pci/pci-bridge-emul.h
15788
15789 PCI SUBSYSTEM
15790 M:      Bjorn Helgaas <bhelgaas@google.com>
15791 L:      linux-pci@vger.kernel.org
15792 S:      Supported
15793 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15794 B:      https://bugzilla.kernel.org
15795 C:      irc://irc.oftc.net/linux-pci
15796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15797 F:      Documentation/PCI/
15798 F:      Documentation/devicetree/bindings/pci/
15799 F:      arch/x86/kernel/early-quirks.c
15800 F:      arch/x86/kernel/quirks.c
15801 F:      arch/x86/pci/
15802 F:      drivers/acpi/pci*
15803 F:      drivers/pci/
15804 F:      include/asm-generic/pci*
15805 F:      include/linux/of_pci.h
15806 F:      include/linux/pci*
15807 F:      include/uapi/linux/pci*
15808 F:      lib/pci*
15809
15810 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15811 M:      Jonathan Chocron <jonnyc@amazon.com>
15812 L:      linux-pci@vger.kernel.org
15813 S:      Maintained
15814 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15815 F:      drivers/pci/controller/dwc/pcie-al.c
15816
15817 PCIE DRIVER FOR AMLOGIC MESON
15818 M:      Yue Wang <yue.wang@Amlogic.com>
15819 L:      linux-pci@vger.kernel.org
15820 L:      linux-amlogic@lists.infradead.org
15821 S:      Maintained
15822 F:      drivers/pci/controller/dwc/pci-meson.c
15823
15824 PCIE DRIVER FOR AXIS ARTPEC
15825 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15826 L:      linux-arm-kernel@axis.com
15827 L:      linux-pci@vger.kernel.org
15828 S:      Maintained
15829 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15830 F:      drivers/pci/controller/dwc/*artpec*
15831
15832 PCIE DRIVER FOR CAVIUM THUNDERX
15833 M:      Robert Richter <rric@kernel.org>
15834 L:      linux-pci@vger.kernel.org
15835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15836 S:      Odd Fixes
15837 F:      drivers/pci/controller/pci-thunder-*
15838
15839 PCIE DRIVER FOR HISILICON
15840 M:      Zhou Wang <wangzhou1@hisilicon.com>
15841 L:      linux-pci@vger.kernel.org
15842 S:      Maintained
15843 F:      drivers/pci/controller/dwc/pcie-hisi.c
15844
15845 PCIE DRIVER FOR HISILICON KIRIN
15846 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15847 M:      Binghui Wang <wangbinghui@hisilicon.com>
15848 L:      linux-pci@vger.kernel.org
15849 S:      Maintained
15850 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15851 F:      drivers/pci/controller/dwc/pcie-kirin.c
15852
15853 PCIE DRIVER FOR HISILICON STB
15854 M:      Shawn Guo <shawn.guo@linaro.org>
15855 L:      linux-pci@vger.kernel.org
15856 S:      Maintained
15857 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15858 F:      drivers/pci/controller/dwc/pcie-histb.c
15859
15860 PCIE DRIVER FOR INTEL KEEM BAY
15861 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15862 L:      linux-pci@vger.kernel.org
15863 S:      Supported
15864 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15865 F:      drivers/pci/controller/dwc/pcie-keembay.c
15866
15867 PCIE DRIVER FOR INTEL LGM GW SOC
15868 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15869 L:      linux-pci@vger.kernel.org
15870 S:      Maintained
15871 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15872 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15873
15874 PCIE DRIVER FOR MEDIATEK
15875 M:      Ryder Lee <ryder.lee@mediatek.com>
15876 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15877 L:      linux-pci@vger.kernel.org
15878 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15879 S:      Supported
15880 F:      Documentation/devicetree/bindings/pci/mediatek*
15881 F:      drivers/pci/controller/*mediatek*
15882
15883 PCIE DRIVER FOR MICROCHIP
15884 M:      Daire McNamara <daire.mcnamara@microchip.com>
15885 L:      linux-pci@vger.kernel.org
15886 S:      Supported
15887 F:      Documentation/devicetree/bindings/pci/microchip*
15888 F:      drivers/pci/controller/*microchip*
15889
15890 PCIE DRIVER FOR QUALCOMM MSM
15891 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15892 L:      linux-pci@vger.kernel.org
15893 L:      linux-arm-msm@vger.kernel.org
15894 S:      Maintained
15895 F:      drivers/pci/controller/dwc/pcie-qcom.c
15896
15897 PCIE ENDPOINT DRIVER FOR QUALCOMM
15898 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15899 L:      linux-pci@vger.kernel.org
15900 L:      linux-arm-msm@vger.kernel.org
15901 S:      Maintained
15902 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15903 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15904
15905 PCIE DRIVER FOR ROCKCHIP
15906 M:      Shawn Lin <shawn.lin@rock-chips.com>
15907 L:      linux-pci@vger.kernel.org
15908 L:      linux-rockchip@lists.infradead.org
15909 S:      Maintained
15910 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15911 F:      drivers/pci/controller/pcie-rockchip*
15912
15913 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15914 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15915 L:      linux-pci@vger.kernel.org
15916 S:      Maintained
15917 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15918 F:      drivers/pci/controller/dwc/pcie-uniphier*
15919
15920 PCIE DRIVER FOR ST SPEAR13XX
15921 M:      Pratyush Anand <pratyush.anand@gmail.com>
15922 L:      linux-pci@vger.kernel.org
15923 S:      Maintained
15924 F:      drivers/pci/controller/dwc/*spear*
15925
15926 PCI DRIVER FOR XILINX VERSAL CPM
15927 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
15928 M:      Michal Simek <michal.simek@amd.com>
15929 L:      linux-pci@vger.kernel.org
15930 S:      Maintained
15931 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
15932 F:      drivers/pci/controller/pcie-xilinx-cpm.c
15933
15934 PCMCIA SUBSYSTEM
15935 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15936 S:      Odd Fixes
15937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15938 F:      Documentation/pcmcia/
15939 F:      drivers/pcmcia/
15940 F:      include/pcmcia/
15941 F:      tools/pcmcia/
15942
15943 PCNET32 NETWORK DRIVER
15944 M:      Don Fry <pcnet32@frontier.com>
15945 L:      netdev@vger.kernel.org
15946 S:      Maintained
15947 F:      drivers/net/ethernet/amd/pcnet32.c
15948
15949 PCRYPT PARALLEL CRYPTO ENGINE
15950 M:      Steffen Klassert <steffen.klassert@secunet.com>
15951 L:      linux-crypto@vger.kernel.org
15952 S:      Maintained
15953 F:      crypto/pcrypt.c
15954 F:      include/crypto/pcrypt.h
15955
15956 PEAQ WMI HOTKEYS DRIVER
15957 M:      Hans de Goede <hdegoede@redhat.com>
15958 L:      platform-driver-x86@vger.kernel.org
15959 S:      Maintained
15960 F:      drivers/platform/x86/peaq-wmi.c
15961
15962 PECI HARDWARE MONITORING DRIVERS
15963 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15964 L:      linux-hwmon@vger.kernel.org
15965 S:      Supported
15966 F:      Documentation/hwmon/peci-cputemp.rst
15967 F:      Documentation/hwmon/peci-dimmtemp.rst
15968 F:      drivers/hwmon/peci/
15969
15970 PECI SUBSYSTEM
15971 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15972 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15973 S:      Supported
15974 F:      Documentation/devicetree/bindings/peci/
15975 F:      Documentation/peci/
15976 F:      drivers/peci/
15977 F:      include/linux/peci-cpu.h
15978 F:      include/linux/peci.h
15979
15980 PENSANDO ETHERNET DRIVERS
15981 M:      Shannon Nelson <snelson@pensando.io>
15982 M:      drivers@pensando.io
15983 L:      netdev@vger.kernel.org
15984 S:      Supported
15985 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15986 F:      drivers/net/ethernet/pensando/
15987
15988 PER-CPU MEMORY ALLOCATOR
15989 M:      Dennis Zhou <dennis@kernel.org>
15990 M:      Tejun Heo <tj@kernel.org>
15991 M:      Christoph Lameter <cl@linux.com>
15992 L:      linux-mm@kvack.org
15993 S:      Maintained
15994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15995 F:      arch/*/include/asm/percpu.h
15996 F:      include/linux/percpu*.h
15997 F:      lib/percpu*.c
15998 F:      mm/percpu*.c
15999
16000 PER-TASK DELAY ACCOUNTING
16001 M:      Balbir Singh <bsingharora@gmail.com>
16002 S:      Maintained
16003 F:      include/linux/delayacct.h
16004 F:      kernel/delayacct.c
16005
16006 PERFORMANCE EVENTS SUBSYSTEM
16007 M:      Peter Zijlstra <peterz@infradead.org>
16008 M:      Ingo Molnar <mingo@redhat.com>
16009 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16010 R:      Mark Rutland <mark.rutland@arm.com>
16011 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16012 R:      Jiri Olsa <jolsa@kernel.org>
16013 R:      Namhyung Kim <namhyung@kernel.org>
16014 L:      linux-perf-users@vger.kernel.org
16015 L:      linux-kernel@vger.kernel.org
16016 S:      Supported
16017 W:      https://perf.wiki.kernel.org/
16018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16019 F:      arch/*/events/*
16020 F:      arch/*/events/*/*
16021 F:      arch/*/include/asm/perf_event.h
16022 F:      arch/*/kernel/*/*/perf_event*.c
16023 F:      arch/*/kernel/*/perf_event*.c
16024 F:      arch/*/kernel/perf_callchain.c
16025 F:      arch/*/kernel/perf_event*.c
16026 F:      include/linux/perf_event.h
16027 F:      include/uapi/linux/perf_event.h
16028 F:      kernel/events/*
16029 F:      tools/lib/perf/
16030 F:      tools/perf/
16031
16032 PERFORMANCE EVENTS TOOLING ARM64
16033 R:      John Garry <john.garry@huawei.com>
16034 R:      Will Deacon <will@kernel.org>
16035 R:      James Clark <james.clark@arm.com>
16036 R:      Mike Leach <mike.leach@linaro.org>
16037 R:      Leo Yan <leo.yan@linaro.org>
16038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16039 S:      Supported
16040 F:      tools/build/feature/test-libopencsd.c
16041 F:      tools/perf/arch/arm*/
16042 F:      tools/perf/pmu-events/arch/arm64/
16043 F:      tools/perf/util/arm-spe*
16044 F:      tools/perf/util/cs-etm*
16045
16046 PERSONALITY HANDLING
16047 M:      Christoph Hellwig <hch@infradead.org>
16048 L:      linux-abi-devel@lists.sourceforge.net
16049 S:      Maintained
16050 F:      include/linux/personality.h
16051 F:      include/uapi/linux/personality.h
16052
16053 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16054 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16055 L:      linux-input@vger.kernel.org
16056 S:      Maintained
16057 F:      Documentation/input/devices/pxrc.rst
16058 F:      drivers/input/joystick/pxrc.c
16059
16060 PHONET PROTOCOL
16061 M:      Remi Denis-Courmont <courmisch@gmail.com>
16062 S:      Supported
16063 F:      Documentation/networking/phonet.rst
16064 F:      include/linux/phonet.h
16065 F:      include/net/phonet/
16066 F:      include/uapi/linux/phonet.h
16067 F:      net/phonet/
16068
16069 PHRAM MTD DRIVER
16070 M:      Joern Engel <joern@lazybastard.org>
16071 L:      linux-mtd@lists.infradead.org
16072 S:      Maintained
16073 F:      drivers/mtd/devices/phram.c
16074
16075 PICOLCD HID DRIVER
16076 M:      Bruno Prémont <bonbons@linux-vserver.org>
16077 L:      linux-input@vger.kernel.org
16078 S:      Maintained
16079 F:      drivers/hid/hid-picolcd*
16080
16081 PIDFD API
16082 M:      Christian Brauner <christian@brauner.io>
16083 L:      linux-kernel@vger.kernel.org
16084 S:      Maintained
16085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16086 F:      samples/pidfd/
16087 F:      tools/testing/selftests/clone3/
16088 F:      tools/testing/selftests/pid_namespace/
16089 F:      tools/testing/selftests/pidfd/
16090 K:      (?i)pidfd
16091 K:      (?i)clone3
16092 K:      \b(clone_args|kernel_clone_args)\b
16093
16094 PIN CONTROL SUBSYSTEM
16095 M:      Linus Walleij <linus.walleij@linaro.org>
16096 L:      linux-gpio@vger.kernel.org
16097 S:      Maintained
16098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16099 F:      Documentation/devicetree/bindings/pinctrl/
16100 F:      Documentation/driver-api/pin-control.rst
16101 F:      drivers/pinctrl/
16102 F:      include/dt-bindings/pinctrl/
16103 F:      include/linux/pinctrl/
16104
16105 PIN CONTROLLER - AMD
16106 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16107 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16108 S:      Maintained
16109 F:      drivers/pinctrl/pinctrl-amd.c
16110
16111 PIN CONTROLLER - FREESCALE
16112 M:      Dong Aisheng <aisheng.dong@nxp.com>
16113 M:      Fabio Estevam <festevam@gmail.com>
16114 M:      Shawn Guo <shawnguo@kernel.org>
16115 M:      Jacky Bai <ping.bai@nxp.com>
16116 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16117 L:      linux-gpio@vger.kernel.org
16118 S:      Maintained
16119 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16120 F:      drivers/pinctrl/freescale/
16121
16122 PIN CONTROLLER - INTEL
16123 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16124 M:      Andy Shevchenko <andy@kernel.org>
16125 S:      Supported
16126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16127 F:      drivers/pinctrl/intel/
16128
16129 PIN CONTROLLER - KEEMBAY
16130 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16131 S:      Supported
16132 F:      drivers/pinctrl/pinctrl-keembay*
16133
16134 PIN CONTROLLER - MEDIATEK
16135 M:      Sean Wang <sean.wang@kernel.org>
16136 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16137 S:      Maintained
16138 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16139 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
16140 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16141 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16142 F:      drivers/pinctrl/mediatek/
16143
16144 PIN CONTROLLER - MICROCHIP AT91
16145 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16147 L:      linux-gpio@vger.kernel.org
16148 S:      Supported
16149 F:      drivers/gpio/gpio-sama5d2-piobu.c
16150 F:      drivers/pinctrl/pinctrl-at91*
16151
16152 PIN CONTROLLER - QUALCOMM
16153 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16154 L:      linux-arm-msm@vger.kernel.org
16155 S:      Maintained
16156 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16157 F:      drivers/pinctrl/qcom/
16158
16159 PIN CONTROLLER - RENESAS
16160 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16161 L:      linux-renesas-soc@vger.kernel.org
16162 S:      Supported
16163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16164 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16165 F:      drivers/pinctrl/renesas/
16166
16167 PIN CONTROLLER - SAMSUNG
16168 M:      Tomasz Figa <tomasz.figa@gmail.com>
16169 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16170 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16171 R:      Alim Akhtar <alim.akhtar@samsung.com>
16172 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16173 L:      linux-samsung-soc@vger.kernel.org
16174 S:      Maintained
16175 C:      irc://irc.libera.chat/linux-exynos
16176 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16177 B:      mailto:linux-samsung-soc@vger.kernel.org
16178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16179 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16180 F:      drivers/pinctrl/samsung/
16181 F:      include/dt-bindings/pinctrl/samsung.h
16182
16183 PIN CONTROLLER - SINGLE
16184 M:      Tony Lindgren <tony@atomide.com>
16185 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16187 L:      linux-omap@vger.kernel.org
16188 S:      Maintained
16189 F:      drivers/pinctrl/pinctrl-single.c
16190
16191 PIN CONTROLLER - THUNDERBAY
16192 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16193 S:      Supported
16194 F:      drivers/pinctrl/pinctrl-thunderbay.c
16195
16196 PIN CONTROLLER - SUNPLUS / TIBBO
16197 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16198 M:      Wells Lu <wellslutw@gmail.com>
16199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16200 S:      Maintained
16201 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16202 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16203 F:      drivers/pinctrl/sunplus/
16204 F:      include/dt-bindings/pinctrl/sppctl*.h
16205
16206 PKTCDVD DRIVER
16207 M:      linux-block@vger.kernel.org
16208 S:      Orphan
16209 F:      drivers/block/pktcdvd.c
16210 F:      include/linux/pktcdvd.h
16211 F:      include/uapi/linux/pktcdvd.h
16212
16213 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16214 M:      Tomasz Duszynski <tduszyns@gmail.com>
16215 S:      Maintained
16216 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16217 F:      drivers/iio/chemical/pms7003.c
16218
16219 PLDMFW LIBRARY
16220 M:      Jacob Keller <jacob.e.keller@intel.com>
16221 S:      Maintained
16222 F:      Documentation/driver-api/pldmfw/
16223 F:      include/linux/pldmfw.h
16224 F:      lib/pldmfw/
16225
16226 PLX DMA DRIVER
16227 M:      Logan Gunthorpe <logang@deltatee.com>
16228 S:      Maintained
16229 F:      drivers/dma/plx_dma.c
16230
16231 PM6764TR DRIVER
16232 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16233 L:      linux-hwmon@vger.kernel.org
16234 S:      Maintained
16235 F:      Documentation/hwmon/pm6764tr.rst
16236 F:      drivers/hwmon/pmbus/pm6764tr.c
16237
16238 PM-GRAPH UTILITY
16239 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16240 L:      linux-pm@vger.kernel.org
16241 S:      Supported
16242 W:      https://01.org/pm-graph
16243 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16244 T:      git git://github.com/intel/pm-graph
16245 F:      tools/power/pm-graph
16246
16247 PMBUS HARDWARE MONITORING DRIVERS
16248 M:      Guenter Roeck <linux@roeck-us.net>
16249 L:      linux-hwmon@vger.kernel.org
16250 S:      Maintained
16251 W:      http://hwmon.wiki.kernel.org/
16252 W:      http://www.roeck-us.net/linux/drivers/
16253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16254 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16255 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16256 F:      Documentation/hwmon/adm1275.rst
16257 F:      Documentation/hwmon/ibm-cffps.rst
16258 F:      Documentation/hwmon/ir35221.rst
16259 F:      Documentation/hwmon/lm25066.rst
16260 F:      Documentation/hwmon/ltc2978.rst
16261 F:      Documentation/hwmon/ltc3815.rst
16262 F:      Documentation/hwmon/max16064.rst
16263 F:      Documentation/hwmon/max20751.rst
16264 F:      Documentation/hwmon/max31785.rst
16265 F:      Documentation/hwmon/max34440.rst
16266 F:      Documentation/hwmon/max8688.rst
16267 F:      Documentation/hwmon/pmbus-core.rst
16268 F:      Documentation/hwmon/pmbus.rst
16269 F:      Documentation/hwmon/tps40422.rst
16270 F:      Documentation/hwmon/ucd9000.rst
16271 F:      Documentation/hwmon/ucd9200.rst
16272 F:      Documentation/hwmon/zl6100.rst
16273 F:      drivers/hwmon/pmbus/
16274 F:      include/linux/pmbus.h
16275
16276 PMC SIERRA MaxRAID DRIVER
16277 L:      linux-scsi@vger.kernel.org
16278 S:      Orphan
16279 W:      http://www.pmc-sierra.com/
16280 F:      drivers/scsi/pmcraid.*
16281
16282 PMC SIERRA PM8001 DRIVER
16283 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16284 L:      linux-scsi@vger.kernel.org
16285 S:      Supported
16286 F:      drivers/scsi/pm8001/
16287
16288 PNI RM3100 IIO DRIVER
16289 M:      Song Qiang <songqiang1304521@gmail.com>
16290 L:      linux-iio@vger.kernel.org
16291 S:      Maintained
16292 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16293 F:      drivers/iio/magnetometer/rm3100*
16294
16295 PNP SUPPORT
16296 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16297 L:      linux-acpi@vger.kernel.org
16298 S:      Maintained
16299 F:      drivers/pnp/
16300 F:      include/linux/pnp.h
16301
16302 POSIX CLOCKS and TIMERS
16303 M:      Thomas Gleixner <tglx@linutronix.de>
16304 L:      linux-kernel@vger.kernel.org
16305 S:      Maintained
16306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16307 F:      fs/timerfd.c
16308 F:      include/linux/time_namespace.h
16309 F:      include/linux/timer*
16310 F:      kernel/time/*timer*
16311 F:      kernel/time/namespace.c
16312
16313 POWER MANAGEMENT CORE
16314 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16315 L:      linux-pm@vger.kernel.org
16316 S:      Supported
16317 B:      https://bugzilla.kernel.org
16318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16319 F:      drivers/base/power/
16320 F:      drivers/powercap/
16321 F:      include/linux/intel_rapl.h
16322 F:      include/linux/pm.h
16323 F:      include/linux/pm_*
16324 F:      include/linux/powercap.h
16325 F:      kernel/configs/nopm.config
16326
16327 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16328 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16329 L:      linux-pm@vger.kernel.org
16330 S:      Supported
16331 B:      https://bugzilla.kernel.org
16332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16333 F:      drivers/powercap/dtpm*
16334 F:      include/linux/dtpm.h
16335
16336 POWER STATE COORDINATION INTERFACE (PSCI)
16337 M:      Mark Rutland <mark.rutland@arm.com>
16338 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16340 S:      Maintained
16341 F:      drivers/firmware/psci/
16342 F:      include/linux/psci.h
16343 F:      include/uapi/linux/psci.h
16344
16345 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16346 M:      Sebastian Reichel <sre@kernel.org>
16347 L:      linux-pm@vger.kernel.org
16348 S:      Maintained
16349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16350 F:      Documentation/ABI/testing/sysfs-class-power
16351 F:      Documentation/devicetree/bindings/power/supply/
16352 F:      drivers/power/supply/
16353 F:      include/linux/power/
16354 F:      include/linux/power_supply.h
16355
16356 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16357 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16358 L:      linuxppc-dev@lists.ozlabs.org
16359 S:      Maintained
16360 F:      drivers/char/powernv-op-panel.c
16361
16362 PPP OVER ATM (RFC 2364)
16363 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16364 S:      Maintained
16365 F:      include/uapi/linux/atmppp.h
16366 F:      net/atm/pppoatm.c
16367
16368 PPP OVER ETHERNET
16369 M:      Michal Ostrowski <mostrows@earthlink.net>
16370 S:      Maintained
16371 F:      drivers/net/ppp/pppoe.c
16372 F:      drivers/net/ppp/pppox.c
16373
16374 PPP OVER L2TP
16375 M:      James Chapman <jchapman@katalix.com>
16376 S:      Maintained
16377 F:      include/linux/if_pppol2tp.h
16378 F:      include/uapi/linux/if_pppol2tp.h
16379 F:      net/l2tp/l2tp_ppp.c
16380
16381 PPP PROTOCOL DRIVERS AND COMPRESSORS
16382 M:      Paul Mackerras <paulus@samba.org>
16383 L:      linux-ppp@vger.kernel.org
16384 S:      Maintained
16385 F:      drivers/net/ppp/ppp_*
16386
16387 PPS SUPPORT
16388 M:      Rodolfo Giometti <giometti@enneenne.com>
16389 L:      linuxpps@ml.enneenne.com (subscribers-only)
16390 S:      Maintained
16391 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16392 F:      Documentation/ABI/testing/sysfs-pps
16393 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16394 F:      Documentation/driver-api/pps.rst
16395 F:      drivers/pps/
16396 F:      include/linux/pps*.h
16397 F:      include/uapi/linux/pps.h
16398
16399 PPTP DRIVER
16400 M:      Dmitry Kozlov <xeb@mail.ru>
16401 L:      netdev@vger.kernel.org
16402 S:      Maintained
16403 W:      http://sourceforge.net/projects/accel-pptp
16404 F:      drivers/net/ppp/pptp.c
16405
16406 PRESSURE STALL INFORMATION (PSI)
16407 M:      Johannes Weiner <hannes@cmpxchg.org>
16408 M:      Suren Baghdasaryan <surenb@google.com>
16409 S:      Maintained
16410 F:      include/linux/psi*
16411 F:      kernel/sched/psi.c
16412
16413 PRINTK
16414 M:      Petr Mladek <pmladek@suse.com>
16415 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16416 R:      Steven Rostedt <rostedt@goodmis.org>
16417 R:      John Ogness <john.ogness@linutronix.de>
16418 S:      Maintained
16419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16420 F:      include/linux/printk.h
16421 F:      kernel/printk/
16422
16423 PRINTK INDEXING
16424 R:      Chris Down <chris@chrisdown.name>
16425 S:      Maintained
16426 F:      Documentation/core-api/printk-index.rst
16427 F:      kernel/printk/index.c
16428 K:      printk_index
16429
16430 PROC FILESYSTEM
16431 L:      linux-kernel@vger.kernel.org
16432 L:      linux-fsdevel@vger.kernel.org
16433 S:      Maintained
16434 F:      Documentation/filesystems/proc.rst
16435 F:      fs/proc/
16436 F:      include/linux/proc_fs.h
16437 F:      tools/testing/selftests/proc/
16438
16439 PROC SYSCTL
16440 M:      Luis Chamberlain <mcgrof@kernel.org>
16441 M:      Kees Cook <keescook@chromium.org>
16442 M:      Iurii Zaikin <yzaikin@google.com>
16443 L:      linux-kernel@vger.kernel.org
16444 L:      linux-fsdevel@vger.kernel.org
16445 S:      Maintained
16446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16447 F:      fs/proc/proc_sysctl.c
16448 F:      include/linux/sysctl.h
16449 F:      kernel/sysctl-test.c
16450 F:      kernel/sysctl.c
16451 F:      tools/testing/selftests/sysctl/
16452
16453 PS3 NETWORK SUPPORT
16454 M:      Geoff Levand <geoff@infradead.org>
16455 L:      netdev@vger.kernel.org
16456 L:      linuxppc-dev@lists.ozlabs.org
16457 S:      Maintained
16458 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16459
16460 PS3 PLATFORM SUPPORT
16461 M:      Geoff Levand <geoff@infradead.org>
16462 L:      linuxppc-dev@lists.ozlabs.org
16463 S:      Maintained
16464 F:      arch/powerpc/boot/ps3*
16465 F:      arch/powerpc/include/asm/lv1call.h
16466 F:      arch/powerpc/include/asm/ps3*.h
16467 F:      arch/powerpc/platforms/ps3/
16468 F:      drivers/*/ps3*
16469 F:      drivers/ps3/
16470 F:      drivers/rtc/rtc-ps3.c
16471 F:      drivers/usb/host/*ps3.c
16472 F:      sound/ppc/snd_ps3*
16473
16474 PS3VRAM DRIVER
16475 M:      Jim Paris <jim@jtan.com>
16476 M:      Geoff Levand <geoff@infradead.org>
16477 L:      linuxppc-dev@lists.ozlabs.org
16478 S:      Maintained
16479 F:      drivers/block/ps3vram.c
16480
16481 PSAMPLE PACKET SAMPLING SUPPORT
16482 M:      Yotam Gigi <yotam.gi@gmail.com>
16483 S:      Maintained
16484 F:      include/net/psample.h
16485 F:      include/uapi/linux/psample.h
16486 F:      net/psample
16487
16488 PSTORE FILESYSTEM
16489 M:      Kees Cook <keescook@chromium.org>
16490 M:      Anton Vorontsov <anton@enomsg.org>
16491 M:      Colin Cross <ccross@android.com>
16492 M:      Tony Luck <tony.luck@intel.com>
16493 S:      Maintained
16494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16495 F:      Documentation/admin-guide/ramoops.rst
16496 F:      Documentation/admin-guide/pstore-blk.rst
16497 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16498 F:      drivers/acpi/apei/erst.c
16499 F:      drivers/firmware/efi/efi-pstore.c
16500 F:      fs/pstore/
16501 F:      include/linux/pstore*
16502 K:      \b(pstore|ramoops)
16503
16504 PTP HARDWARE CLOCK SUPPORT
16505 M:      Richard Cochran <richardcochran@gmail.com>
16506 L:      netdev@vger.kernel.org
16507 S:      Maintained
16508 W:      http://linuxptp.sourceforge.net/
16509 F:      Documentation/ABI/testing/sysfs-ptp
16510 F:      Documentation/driver-api/ptp.rst
16511 F:      drivers/net/phy/dp83640*
16512 F:      drivers/ptp/*
16513 F:      include/linux/ptp_cl*
16514
16515 PTP VIRTUAL CLOCK SUPPORT
16516 M:      Yangbo Lu <yangbo.lu@nxp.com>
16517 L:      netdev@vger.kernel.org
16518 S:      Maintained
16519 F:      drivers/ptp/ptp_vclock.c
16520 F:      net/ethtool/phc_vclocks.c
16521
16522 PTRACE SUPPORT
16523 M:      Oleg Nesterov <oleg@redhat.com>
16524 S:      Maintained
16525 F:      arch/*/*/ptrace*.c
16526 F:      arch/*/include/asm/ptrace*.h
16527 F:      arch/*/ptrace*.c
16528 F:      include/asm-generic/syscall.h
16529 F:      include/linux/ptrace.h
16530 F:      include/linux/regset.h
16531 F:      include/uapi/linux/ptrace.h
16532 F:      kernel/ptrace.c
16533
16534 PULSE8-CEC DRIVER
16535 M:      Hans Verkuil <hverkuil@xs4all.nl>
16536 L:      linux-media@vger.kernel.org
16537 S:      Maintained
16538 T:      git git://linuxtv.org/media_tree.git
16539 F:      Documentation/admin-guide/media/pulse8-cec.rst
16540 F:      drivers/media/cec/usb/pulse8/
16541
16542 PURELIFI PLFXLC DRIVER
16543 M:      Srinivasan Raju <srini.raju@purelifi.com>
16544 L:      linux-wireless@vger.kernel.org
16545 S:      Supported
16546 F:      drivers/net/wireless/purelifi/plfxlc/
16547
16548 PVRUSB2 VIDEO4LINUX DRIVER
16549 M:      Mike Isely <isely@pobox.com>
16550 L:      pvrusb2@isely.net       (subscribers-only)
16551 L:      linux-media@vger.kernel.org
16552 S:      Maintained
16553 W:      http://www.isely.net/pvrusb2/
16554 T:      git git://linuxtv.org/media_tree.git
16555 F:      Documentation/driver-api/media/drivers/pvrusb2*
16556 F:      drivers/media/usb/pvrusb2/
16557
16558 PWC WEBCAM DRIVER
16559 M:      Hans Verkuil <hverkuil@xs4all.nl>
16560 L:      linux-media@vger.kernel.org
16561 S:      Odd Fixes
16562 T:      git git://linuxtv.org/media_tree.git
16563 F:      drivers/media/usb/pwc/*
16564 F:      include/trace/events/pwc.h
16565
16566 PWM FAN DRIVER
16567 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16568 L:      linux-hwmon@vger.kernel.org
16569 S:      Supported
16570 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16571 F:      Documentation/hwmon/pwm-fan.rst
16572 F:      drivers/hwmon/pwm-fan.c
16573
16574 PWM IR Transmitter
16575 M:      Sean Young <sean@mess.org>
16576 L:      linux-media@vger.kernel.org
16577 S:      Maintained
16578 F:      drivers/media/rc/pwm-ir-tx.c
16579
16580 PWM SUBSYSTEM
16581 M:      Thierry Reding <thierry.reding@gmail.com>
16582 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16583 L:      linux-pwm@vger.kernel.org
16584 S:      Maintained
16585 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16587 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16588 F:      Documentation/devicetree/bindings/pwm/
16589 F:      Documentation/driver-api/pwm.rst
16590 F:      drivers/gpio/gpio-mvebu.c
16591 F:      drivers/pwm/
16592 F:      drivers/video/backlight/pwm_bl.c
16593 F:      include/dt-bindings/pwm/
16594 F:      include/linux/pwm.h
16595 F:      include/linux/pwm_backlight.h
16596 K:      pwm_(config|apply_state|ops)
16597
16598 PXA GPIO DRIVER
16599 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16600 L:      linux-gpio@vger.kernel.org
16601 S:      Maintained
16602 F:      drivers/gpio/gpio-pxa.c
16603
16604 PXA MMCI DRIVER
16605 S:      Orphan
16606
16607 PXA RTC DRIVER
16608 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16609 L:      linux-rtc@vger.kernel.org
16610 S:      Maintained
16611
16612 PXA2xx/PXA3xx SUPPORT
16613 M:      Daniel Mack <daniel@zonque.org>
16614 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16615 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16617 S:      Maintained
16618 T:      git git://github.com/hzhuang1/linux.git
16619 T:      git git://github.com/rjarzmik/linux.git
16620 F:      arch/arm/boot/dts/pxa*
16621 F:      arch/arm/mach-pxa/
16622 F:      drivers/dma/pxa*
16623 F:      drivers/pcmcia/pxa2xx*
16624 F:      drivers/pinctrl/pxa/
16625 F:      drivers/spi/spi-pxa2xx*
16626 F:      drivers/usb/gadget/udc/pxa2*
16627 F:      include/sound/pxa2xx-lib.h
16628 F:      sound/arm/pxa*
16629 F:      sound/soc/pxa/
16630
16631 QAT DRIVER
16632 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16633 L:      qat-linux@intel.com
16634 S:      Supported
16635 F:      drivers/crypto/qat/
16636
16637 QCOM AUDIO (ASoC) DRIVERS
16638 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16639 M:      Banajit Goswami <bgoswami@quicinc.com>
16640 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16641 S:      Supported
16642 F:      include/dt-bindings/sound/qcom,wcd9335.h
16643 F:      sound/soc/codecs/lpass-rx-macro.*
16644 F:      sound/soc/codecs/lpass-tx-macro.*
16645 F:      sound/soc/codecs/lpass-va-macro.c
16646 F:      sound/soc/codecs/lpass-wsa-macro.*
16647 F:      sound/soc/codecs/msm8916-wcd-analog.c
16648 F:      sound/soc/codecs/msm8916-wcd-digital.c
16649 F:      sound/soc/codecs/wcd9335.*
16650 F:      sound/soc/codecs/wcd934x.c
16651 F:      sound/soc/codecs/wcd-clsh-v2.*
16652 F:      sound/soc/codecs/wcd-mbhc-v2.*
16653 F:      sound/soc/codecs/wsa881x.c
16654 F:      sound/soc/codecs/wsa883x.c
16655 F:      sound/soc/qcom/
16656
16657 QCOM EMBEDDED USB DEBUGGER (EUD)
16658 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16659 L:      linux-arm-msm@vger.kernel.org
16660 S:      Maintained
16661 F:      Documentation/ABI/testing/sysfs-driver-eud
16662 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16663 F:      drivers/usb/misc/qcom_eud.c
16664
16665 QCOM IPA DRIVER
16666 M:      Alex Elder <elder@kernel.org>
16667 L:      netdev@vger.kernel.org
16668 S:      Supported
16669 F:      drivers/net/ipa/
16670
16671 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16672 M:      Gabriel Somlo <somlo@cmu.edu>
16673 M:      "Michael S. Tsirkin" <mst@redhat.com>
16674 L:      qemu-devel@nongnu.org
16675 S:      Maintained
16676 F:      drivers/firmware/qemu_fw_cfg.c
16677 F:      include/uapi/linux/qemu_fw_cfg.h
16678
16679 QIB DRIVER
16680 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16681 L:      linux-rdma@vger.kernel.org
16682 S:      Supported
16683 F:      drivers/infiniband/hw/qib/
16684
16685 QLOGIC QL41xxx FCOE DRIVER
16686 M:      Saurav Kashyap <skashyap@marvell.com>
16687 M:      Javed Hasan <jhasan@marvell.com>
16688 M:      GR-QLogic-Storage-Upstream@marvell.com
16689 L:      linux-scsi@vger.kernel.org
16690 S:      Supported
16691 F:      drivers/scsi/qedf/
16692
16693 QLOGIC QL41xxx ISCSI DRIVER
16694 M:      Nilesh Javali <njavali@marvell.com>
16695 M:      Manish Rangankar <mrangankar@marvell.com>
16696 M:      GR-QLogic-Storage-Upstream@marvell.com
16697 L:      linux-scsi@vger.kernel.org
16698 S:      Supported
16699 F:      drivers/scsi/qedi/
16700
16701 QLOGIC QL4xxx ETHERNET DRIVER
16702 M:      Ariel Elior <aelior@marvell.com>
16703 M:      Manish Chopra <manishc@marvell.com>
16704 L:      netdev@vger.kernel.org
16705 S:      Supported
16706 F:      drivers/net/ethernet/qlogic/qed/
16707 F:      drivers/net/ethernet/qlogic/qede/
16708 F:      include/linux/qed/
16709
16710 QLOGIC QL4xxx RDMA DRIVER
16711 M:      Michal Kalderon <mkalderon@marvell.com>
16712 M:      Ariel Elior <aelior@marvell.com>
16713 L:      linux-rdma@vger.kernel.org
16714 S:      Supported
16715 F:      drivers/infiniband/hw/qedr/
16716 F:      include/uapi/rdma/qedr-abi.h
16717
16718 QLOGIC QLA1280 SCSI DRIVER
16719 M:      Michael Reed <mdr@sgi.com>
16720 L:      linux-scsi@vger.kernel.org
16721 S:      Maintained
16722 F:      drivers/scsi/qla1280.[ch]
16723
16724 QLOGIC QLA2XXX FC-SCSI DRIVER
16725 M:      Nilesh Javali <njavali@marvell.com>
16726 M:      GR-QLogic-Storage-Upstream@marvell.com
16727 L:      linux-scsi@vger.kernel.org
16728 S:      Supported
16729 F:      drivers/scsi/qla2xxx/
16730
16731 QLOGIC QLA3XXX NETWORK DRIVER
16732 M:      GR-Linux-NIC-Dev@marvell.com
16733 L:      netdev@vger.kernel.org
16734 S:      Supported
16735 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16736
16737 QLOGIC QLA4XXX iSCSI DRIVER
16738 M:      Nilesh Javali <njavali@marvell.com>
16739 M:      Manish Rangankar <mrangankar@marvell.com>
16740 M:      GR-QLogic-Storage-Upstream@marvell.com
16741 L:      linux-scsi@vger.kernel.org
16742 S:      Supported
16743 F:      drivers/scsi/qla4xxx/
16744
16745 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16746 M:      Shahed Shaikh <shshaikh@marvell.com>
16747 M:      Manish Chopra <manishc@marvell.com>
16748 M:      GR-Linux-NIC-Dev@marvell.com
16749 L:      netdev@vger.kernel.org
16750 S:      Supported
16751 F:      drivers/net/ethernet/qlogic/qlcnic/
16752
16753 QLOGIC QLGE 10Gb ETHERNET DRIVER
16754 M:      Manish Chopra <manishc@marvell.com>
16755 M:      GR-Linux-NIC-Dev@marvell.com
16756 M:      Coiby Xu <coiby.xu@gmail.com>
16757 L:      netdev@vger.kernel.org
16758 S:      Supported
16759 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16760 F:      drivers/staging/qlge/
16761
16762 QM1D1B0004 MEDIA DRIVER
16763 M:      Akihiro Tsukada <tskd08@gmail.com>
16764 L:      linux-media@vger.kernel.org
16765 S:      Odd Fixes
16766 F:      drivers/media/tuners/qm1d1b0004*
16767
16768 QM1D1C0042 MEDIA DRIVER
16769 M:      Akihiro Tsukada <tskd08@gmail.com>
16770 L:      linux-media@vger.kernel.org
16771 S:      Odd Fixes
16772 F:      drivers/media/tuners/qm1d1c0042*
16773
16774 QNX4 FILESYSTEM
16775 M:      Anders Larsen <al@alarsen.net>
16776 S:      Maintained
16777 W:      http://www.alarsen.net/linux/qnx4fs/
16778 F:      fs/qnx4/
16779 F:      include/uapi/linux/qnx4_fs.h
16780 F:      include/uapi/linux/qnxtypes.h
16781
16782 QORIQ DPAA2 FSL-MC BUS DRIVER
16783 M:      Stuart Yoder <stuyoder@gmail.com>
16784 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16785 L:      linux-kernel@vger.kernel.org
16786 S:      Maintained
16787 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16788 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16789 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16790 F:      drivers/bus/fsl-mc/
16791 F:      include/uapi/linux/fsl_mc.h
16792
16793 QT1010 MEDIA DRIVER
16794 M:      Antti Palosaari <crope@iki.fi>
16795 L:      linux-media@vger.kernel.org
16796 S:      Maintained
16797 W:      https://linuxtv.org
16798 W:      http://palosaari.fi/linux/
16799 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16800 T:      git git://linuxtv.org/anttip/media_tree.git
16801 F:      drivers/media/tuners/qt1010*
16802
16803 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16804 M:      Kalle Valo <kvalo@kernel.org>
16805 L:      ath10k@lists.infradead.org
16806 S:      Supported
16807 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16809 F:      drivers/net/wireless/ath/ath10k/
16810 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16811
16812 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16813 M:      Kalle Valo <kvalo@kernel.org>
16814 L:      ath11k@lists.infradead.org
16815 S:      Supported
16816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16817 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16818 F:      drivers/net/wireless/ath/ath11k/
16819
16820 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16821 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16822 L:      linux-wireless@vger.kernel.org
16823 S:      Maintained
16824 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16825 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16826 F:      drivers/net/wireless/ath/ath9k/
16827
16828 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16829 M:      Stephan Gerhold <stephan@gerhold.net>
16830 L:      netdev@vger.kernel.org
16831 L:      linux-arm-msm@vger.kernel.org
16832 S:      Maintained
16833 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16834 F:      drivers/net/wwan/qcom_bam_dmux.c
16835
16836 QUALCOMM CAMERA SUBSYSTEM DRIVER
16837 M:      Robert Foss <robert.foss@linaro.org>
16838 M:      Todor Tomov <todor.too@gmail.com>
16839 L:      linux-media@vger.kernel.org
16840 S:      Maintained
16841 F:      Documentation/admin-guide/media/qcom_camss.rst
16842 F:      Documentation/devicetree/bindings/media/*camss*
16843 F:      drivers/media/platform/qcom/camss/
16844
16845 QUALCOMM CLOCK DRIVERS
16846 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16847 L:      linux-arm-msm@vger.kernel.org
16848 S:      Supported
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16850 F:      Documentation/devicetree/bindings/clock/qcom,*
16851 F:      drivers/clk/qcom/
16852 F:      include/dt-bindings/clock/qcom,*
16853
16854 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16855 M:      Niklas Cassel <nks@flawful.org>
16856 L:      linux-pm@vger.kernel.org
16857 L:      linux-arm-msm@vger.kernel.org
16858 S:      Maintained
16859 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16860 F:      drivers/soc/qcom/cpr.c
16861
16862 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16863 M:      Ilia Lin <ilia.lin@kernel.org>
16864 L:      linux-pm@vger.kernel.org
16865 S:      Maintained
16866 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16867 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16868 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16869
16870 QUALCOMM CRYPTO DRIVERS
16871 M:      Thara Gopinath <thara.gopinath@gmail.com>
16872 L:      linux-crypto@vger.kernel.org
16873 L:      linux-arm-msm@vger.kernel.org
16874 S:      Maintained
16875 F:      drivers/crypto/qce/
16876
16877 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16878 M:      Timur Tabi <timur@kernel.org>
16879 L:      netdev@vger.kernel.org
16880 S:      Maintained
16881 F:      drivers/net/ethernet/qualcomm/emac/
16882
16883 QUALCOMM ETHQOS ETHERNET DRIVER
16884 M:      Vinod Koul <vkoul@kernel.org>
16885 L:      netdev@vger.kernel.org
16886 S:      Maintained
16887 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16888 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16889
16890 QUALCOMM FASTRPC DRIVER
16891 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16892 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16893 L:      linux-arm-msm@vger.kernel.org
16894 S:      Maintained
16895 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16896 F:      drivers/misc/fastrpc.c
16897 F:      include/uapi/misc/fastrpc.h
16898
16899 QUALCOMM HEXAGON ARCHITECTURE
16900 M:      Brian Cain <bcain@quicinc.com>
16901 L:      linux-hexagon@vger.kernel.org
16902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16903 S:      Supported
16904 F:      arch/hexagon/
16905
16906 QUALCOMM HIDMA DRIVER
16907 M:      Sinan Kaya <okaya@kernel.org>
16908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16909 L:      linux-arm-msm@vger.kernel.org
16910 L:      dmaengine@vger.kernel.org
16911 S:      Supported
16912 F:      drivers/dma/qcom/hidma*
16913
16914 QUALCOMM I2C CCI DRIVER
16915 M:      Loic Poulain <loic.poulain@linaro.org>
16916 M:      Robert Foss <robert.foss@linaro.org>
16917 L:      linux-i2c@vger.kernel.org
16918 L:      linux-arm-msm@vger.kernel.org
16919 S:      Maintained
16920 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
16921 F:      drivers/i2c/busses/i2c-qcom-cci.c
16922
16923 QUALCOMM INTERCONNECT BWMON DRIVER
16924 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16925 L:      linux-arm-msm@vger.kernel.org
16926 S:      Maintained
16927 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
16928 F:      drivers/soc/qcom/icc-bwmon.c
16929
16930 QUALCOMM IOMMU
16931 M:      Rob Clark <robdclark@gmail.com>
16932 L:      iommu@lists.linux.dev
16933 L:      linux-arm-msm@vger.kernel.org
16934 S:      Maintained
16935 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16936
16937 QUALCOMM IPC ROUTER (QRTR) DRIVER
16938 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16939 L:      linux-arm-msm@vger.kernel.org
16940 S:      Maintained
16941 F:      include/trace/events/qrtr.h
16942 F:      include/uapi/linux/qrtr.h
16943 F:      net/qrtr/
16944
16945 QUALCOMM IPCC MAILBOX DRIVER
16946 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16947 L:      linux-arm-msm@vger.kernel.org
16948 S:      Supported
16949 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16950 F:      drivers/mailbox/qcom-ipcc.c
16951 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16952
16953 QUALCOMM IPQ4019 USB PHY DRIVER
16954 M:      Robert Marko <robert.marko@sartura.hr>
16955 M:      Luka Perkov <luka.perkov@sartura.hr>
16956 L:      linux-arm-msm@vger.kernel.org
16957 S:      Maintained
16958 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16959 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16960
16961 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16962 M:      Robert Marko <robert.marko@sartura.hr>
16963 M:      Luka Perkov <luka.perkov@sartura.hr>
16964 L:      linux-arm-msm@vger.kernel.org
16965 S:      Maintained
16966 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16967 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16968
16969 QUALCOMM NAND CONTROLLER DRIVER
16970 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16971 L:      linux-mtd@lists.infradead.org
16972 L:      linux-arm-msm@vger.kernel.org
16973 S:      Maintained
16974 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16975 F:      drivers/mtd/nand/raw/qcom_nandc.c
16976
16977 QUALCOMM RMNET DRIVER
16978 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16979 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16980 L:      netdev@vger.kernel.org
16981 S:      Maintained
16982 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16983 F:      drivers/net/ethernet/qualcomm/rmnet/
16984 F:      include/linux/if_rmnet.h
16985
16986 QUALCOMM TSENS THERMAL DRIVER
16987 M:      Amit Kucheria <amitk@kernel.org>
16988 M:      Thara Gopinath <thara.gopinath@gmail.com>
16989 L:      linux-pm@vger.kernel.org
16990 L:      linux-arm-msm@vger.kernel.org
16991 S:      Maintained
16992 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16993 F:      drivers/thermal/qcom/
16994
16995 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16996 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16997 L:      linux-media@vger.kernel.org
16998 L:      linux-arm-msm@vger.kernel.org
16999 S:      Maintained
17000 T:      git git://linuxtv.org/media_tree.git
17001 F:      Documentation/devicetree/bindings/media/*venus*
17002 F:      drivers/media/platform/qcom/venus/
17003
17004 QUALCOMM WCN36XX WIRELESS DRIVER
17005 M:      Loic Poulain <loic.poulain@linaro.org>
17006 L:      wcn36xx@lists.infradead.org
17007 S:      Supported
17008 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17009 F:      drivers/net/wireless/ath/wcn36xx/
17010
17011 QUANTENNA QTNFMAC WIRELESS DRIVER
17012 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17013 R:      Sergey Matyukevich <geomatsi@gmail.com>
17014 L:      linux-wireless@vger.kernel.org
17015 S:      Maintained
17016 F:      drivers/net/wireless/quantenna
17017
17018 RADEON and AMDGPU DRM DRIVERS
17019 M:      Alex Deucher <alexander.deucher@amd.com>
17020 M:      Christian König <christian.koenig@amd.com>
17021 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17022 L:      amd-gfx@lists.freedesktop.org
17023 S:      Supported
17024 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17025 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17026 C:      irc://irc.oftc.net/radeon
17027 F:      Documentation/gpu/amdgpu/
17028 F:      drivers/gpu/drm/amd/
17029 F:      drivers/gpu/drm/radeon/
17030 F:      include/uapi/drm/amdgpu_drm.h
17031 F:      include/uapi/drm/radeon_drm.h
17032
17033 RADEON FRAMEBUFFER DISPLAY DRIVER
17034 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17035 L:      linux-fbdev@vger.kernel.org
17036 S:      Maintained
17037 F:      drivers/video/fbdev/aty/radeon*
17038 F:      include/uapi/linux/radeonfb.h
17039
17040 RADIOSHARK RADIO DRIVER
17041 M:      Hans Verkuil <hverkuil@xs4all.nl>
17042 L:      linux-media@vger.kernel.org
17043 S:      Maintained
17044 T:      git git://linuxtv.org/media_tree.git
17045 F:      drivers/media/radio/radio-shark.c
17046
17047 RADIOSHARK2 RADIO DRIVER
17048 M:      Hans Verkuil <hverkuil@xs4all.nl>
17049 L:      linux-media@vger.kernel.org
17050 S:      Maintained
17051 T:      git git://linuxtv.org/media_tree.git
17052 F:      drivers/media/radio/radio-shark2.c
17053 F:      drivers/media/radio/radio-tea5777.c
17054
17055 RADOS BLOCK DEVICE (RBD)
17056 M:      Ilya Dryomov <idryomov@gmail.com>
17057 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17058 L:      ceph-devel@vger.kernel.org
17059 S:      Supported
17060 W:      http://ceph.com/
17061 T:      git git://github.com/ceph/ceph-client.git
17062 F:      Documentation/ABI/testing/sysfs-bus-rbd
17063 F:      drivers/block/rbd.c
17064 F:      drivers/block/rbd_types.h
17065
17066 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17067 M:      Paul Mackerras <paulus@samba.org>
17068 L:      linux-fbdev@vger.kernel.org
17069 S:      Maintained
17070 F:      drivers/video/fbdev/aty/aty128fb.c
17071
17072 RAINSHADOW-CEC DRIVER
17073 M:      Hans Verkuil <hverkuil@xs4all.nl>
17074 L:      linux-media@vger.kernel.org
17075 S:      Maintained
17076 T:      git git://linuxtv.org/media_tree.git
17077 F:      drivers/media/cec/usb/rainshadow/
17078
17079 RALINK MIPS ARCHITECTURE
17080 M:      John Crispin <john@phrozen.org>
17081 L:      linux-mips@vger.kernel.org
17082 S:      Maintained
17083 F:      arch/mips/ralink
17084
17085 RALINK MT7621 MIPS ARCHITECTURE
17086 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17087 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17088 L:      linux-mips@vger.kernel.org
17089 S:      Maintained
17090 F:      arch/mips/boot/dts/ralink/mt7621*
17091
17092 RALINK PINCTRL DRIVER
17093 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17094 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17095 L:      linux-mips@vger.kernel.org
17096 S:      Maintained
17097 F:      drivers/pinctrl/ralink/
17098
17099 RALINK RT2X00 WIRELESS LAN DRIVER
17100 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17101 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17102 L:      linux-wireless@vger.kernel.org
17103 S:      Maintained
17104 F:      drivers/net/wireless/ralink/rt2x00/
17105
17106 RAMDISK RAM BLOCK DEVICE DRIVER
17107 M:      Jens Axboe <axboe@kernel.dk>
17108 S:      Maintained
17109 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17110 F:      drivers/block/brd.c
17111
17112 RANCHU VIRTUAL BOARD FOR MIPS
17113 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17114 L:      linux-mips@vger.kernel.org
17115 S:      Supported
17116 F:      arch/mips/configs/generic/board-ranchu.config
17117 F:      arch/mips/generic/board-ranchu.c
17118
17119 RANDOM NUMBER DRIVER
17120 M:      "Theodore Ts'o" <tytso@mit.edu>
17121 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17122 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17123 S:      Maintained
17124 F:      drivers/char/random.c
17125 F:      drivers/virt/vmgenid.c
17126
17127 RAPIDIO SUBSYSTEM
17128 M:      Matt Porter <mporter@kernel.crashing.org>
17129 M:      Alexandre Bounine <alex.bou9@gmail.com>
17130 S:      Maintained
17131 F:      drivers/rapidio/
17132
17133 RAS INFRASTRUCTURE
17134 M:      Tony Luck <tony.luck@intel.com>
17135 M:      Borislav Petkov <bp@alien8.de>
17136 L:      linux-edac@vger.kernel.org
17137 S:      Maintained
17138 F:      Documentation/admin-guide/ras.rst
17139 F:      drivers/ras/
17140 F:      include/linux/ras.h
17141 F:      include/ras/ras_event.h
17142
17143 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17144 L:      linux-wireless@vger.kernel.org
17145 S:      Orphan
17146 F:      drivers/net/wireless/ray*
17147
17148 RC-CORE / LIRC FRAMEWORK
17149 M:      Sean Young <sean@mess.org>
17150 L:      linux-media@vger.kernel.org
17151 S:      Maintained
17152 W:      http://linuxtv.org
17153 T:      git git://linuxtv.org/media_tree.git
17154 F:      Documentation/driver-api/media/rc-core.rst
17155 F:      Documentation/userspace-api/media/rc/
17156 F:      drivers/media/rc/
17157 F:      include/media/rc-map.h
17158 F:      include/media/rc-core.h
17159 F:      include/uapi/linux/lirc.h
17160
17161 RCMM REMOTE CONTROLS DECODER
17162 M:      Patrick Lerda <patrick9876@free.fr>
17163 S:      Maintained
17164 F:      drivers/media/rc/ir-rcmm-decoder.c
17165
17166 RCUTORTURE TEST FRAMEWORK
17167 M:      "Paul E. McKenney" <paulmck@kernel.org>
17168 M:      Josh Triplett <josh@joshtriplett.org>
17169 R:      Steven Rostedt <rostedt@goodmis.org>
17170 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17171 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17172 L:      rcu@vger.kernel.org
17173 S:      Supported
17174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17175 F:      tools/testing/selftests/rcutorture
17176
17177 RDACM20 Camera Sensor
17178 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17179 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17180 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17181 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17182 L:      linux-media@vger.kernel.org
17183 S:      Maintained
17184 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17185 F:      drivers/media/i2c/max9271.c
17186 F:      drivers/media/i2c/max9271.h
17187 F:      drivers/media/i2c/rdacm20.c
17188
17189 RDACM21 Camera Sensor
17190 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17191 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17192 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17193 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17194 L:      linux-media@vger.kernel.org
17195 S:      Maintained
17196 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17197 F:      drivers/media/i2c/max9271.c
17198 F:      drivers/media/i2c/max9271.h
17199 F:      drivers/media/i2c/rdacm21.c
17200
17201 RDC R-321X SoC
17202 M:      Florian Fainelli <florian@openwrt.org>
17203 S:      Maintained
17204
17205 RDC R6040 FAST ETHERNET DRIVER
17206 M:      Florian Fainelli <f.fainelli@gmail.com>
17207 L:      netdev@vger.kernel.org
17208 S:      Maintained
17209 F:      drivers/net/ethernet/rdc/r6040.c
17210
17211 RDMAVT - RDMA verbs software
17212 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17213 L:      linux-rdma@vger.kernel.org
17214 S:      Supported
17215 F:      drivers/infiniband/sw/rdmavt
17216
17217 RDS - RELIABLE DATAGRAM SOCKETS
17218 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17219 L:      netdev@vger.kernel.org
17220 L:      linux-rdma@vger.kernel.org
17221 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17222 S:      Supported
17223 W:      https://oss.oracle.com/projects/rds/
17224 F:      Documentation/networking/rds.rst
17225 F:      net/rds/
17226
17227 RDT - RESOURCE ALLOCATION
17228 M:      Fenghua Yu <fenghua.yu@intel.com>
17229 M:      Reinette Chatre <reinette.chatre@intel.com>
17230 L:      linux-kernel@vger.kernel.org
17231 S:      Supported
17232 F:      Documentation/x86/resctrl*
17233 F:      arch/x86/include/asm/resctrl.h
17234 F:      arch/x86/kernel/cpu/resctrl/
17235 F:      tools/testing/selftests/resctrl/
17236
17237 READ-COPY UPDATE (RCU)
17238 M:      "Paul E. McKenney" <paulmck@kernel.org>
17239 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17240 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17241 M:      Josh Triplett <josh@joshtriplett.org>
17242 R:      Steven Rostedt <rostedt@goodmis.org>
17243 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17244 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17245 R:      Joel Fernandes <joel@joelfernandes.org>
17246 L:      rcu@vger.kernel.org
17247 S:      Supported
17248 W:      http://www.rdrop.com/users/paulmck/RCU/
17249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17250 F:      Documentation/RCU/
17251 F:      include/linux/rcu*
17252 F:      kernel/rcu/
17253 X:      Documentation/RCU/torture.rst
17254 X:      include/linux/srcu*.h
17255 X:      kernel/rcu/srcu*.c
17256
17257 REAL TIME CLOCK (RTC) SUBSYSTEM
17258 M:      Alessandro Zummo <a.zummo@towertech.it>
17259 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17260 L:      linux-rtc@vger.kernel.org
17261 S:      Maintained
17262 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17264 F:      Documentation/admin-guide/rtc.rst
17265 F:      Documentation/devicetree/bindings/rtc/
17266 F:      drivers/rtc/
17267 F:      include/linux/platform_data/rtc-*
17268 F:      include/linux/rtc.h
17269 F:      include/linux/rtc/
17270 F:      include/uapi/linux/rtc.h
17271 F:      tools/testing/selftests/rtc/
17272
17273 REALTEK AUDIO CODECS
17274 M:      Oder Chiou <oder_chiou@realtek.com>
17275 S:      Maintained
17276 F:      include/sound/rt*.h
17277 F:      sound/soc/codecs/rt*
17278
17279 REALTEK OTTO WATCHDOG
17280 M:      Sander Vanheule <sander@svanheule.net>
17281 L:      linux-watchdog@vger.kernel.org
17282 S:      Maintained
17283 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17284 F:      drivers/watchdog/realtek_otto_wdt.c
17285
17286 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17287 M:      Linus Walleij <linus.walleij@linaro.org>
17288 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17289 S:      Maintained
17290 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17291 F:      drivers/net/dsa/realtek/*
17292
17293 REALTEK WIRELESS DRIVER (rtlwifi family)
17294 M:      Ping-Ke Shih <pkshih@realtek.com>
17295 L:      linux-wireless@vger.kernel.org
17296 S:      Maintained
17297 W:      https://wireless.wiki.kernel.org/
17298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17299 F:      drivers/net/wireless/realtek/rtlwifi/
17300
17301 REALTEK WIRELESS DRIVER (rtw88)
17302 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17303 L:      linux-wireless@vger.kernel.org
17304 S:      Maintained
17305 F:      drivers/net/wireless/realtek/rtw88/
17306
17307 REALTEK WIRELESS DRIVER (rtw89)
17308 M:      Ping-Ke Shih <pkshih@realtek.com>
17309 L:      linux-wireless@vger.kernel.org
17310 S:      Maintained
17311 F:      drivers/net/wireless/realtek/rtw89/
17312
17313 REDPINE WIRELESS DRIVER
17314 M:      Amitkumar Karwar <amitkarwar@gmail.com>
17315 M:      Siva Rebbagondla <siva8118@gmail.com>
17316 L:      linux-wireless@vger.kernel.org
17317 S:      Maintained
17318 F:      drivers/net/wireless/rsi/
17319
17320 REGISTER MAP ABSTRACTION
17321 M:      Mark Brown <broonie@kernel.org>
17322 L:      linux-kernel@vger.kernel.org
17323 S:      Supported
17324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17325 F:      Documentation/devicetree/bindings/regmap/
17326 F:      drivers/base/regmap/
17327 F:      include/linux/regmap.h
17328
17329 REISERFS FILE SYSTEM
17330 L:      reiserfs-devel@vger.kernel.org
17331 S:      Supported
17332 F:      fs/reiserfs/
17333
17334 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17335 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17336 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17337 L:      linux-remoteproc@vger.kernel.org
17338 S:      Maintained
17339 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17340 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17341 F:      Documentation/devicetree/bindings/remoteproc/
17342 F:      Documentation/staging/remoteproc.rst
17343 F:      drivers/remoteproc/
17344 F:      include/linux/remoteproc.h
17345 F:      include/linux/remoteproc/
17346
17347 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17348 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17349 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17350 L:      linux-remoteproc@vger.kernel.org
17351 S:      Maintained
17352 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17353 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17354 F:      Documentation/staging/rpmsg.rst
17355 F:      drivers/rpmsg/
17356 F:      include/linux/rpmsg.h
17357 F:      include/linux/rpmsg/
17358 F:      include/uapi/linux/rpmsg.h
17359 F:      samples/rpmsg/
17360
17361 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17362 M:      Stephan Gerhold <stephan@gerhold.net>
17363 L:      netdev@vger.kernel.org
17364 L:      linux-remoteproc@vger.kernel.org
17365 S:      Maintained
17366 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17367
17368 RENESAS CLOCK DRIVERS
17369 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17370 L:      linux-renesas-soc@vger.kernel.org
17371 S:      Supported
17372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17373 F:      Documentation/devicetree/bindings/clock/renesas,*
17374 F:      drivers/clk/renesas/
17375
17376 RENESAS EMEV2 I2C DRIVER
17377 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17378 L:      linux-renesas-soc@vger.kernel.org
17379 S:      Supported
17380 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17381 F:      drivers/i2c/busses/i2c-emev2.c
17382
17383 RENESAS ETHERNET DRIVERS
17384 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17385 L:      netdev@vger.kernel.org
17386 L:      linux-renesas-soc@vger.kernel.org
17387 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17388 F:      drivers/net/ethernet/renesas/
17389 F:      include/linux/sh_eth.h
17390
17391 RENESAS R-CAR GYROADC DRIVER
17392 M:      Marek Vasut <marek.vasut@gmail.com>
17393 L:      linux-iio@vger.kernel.org
17394 S:      Supported
17395 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17396 F:      drivers/iio/adc/rcar-gyroadc.c
17397
17398 RENESAS R-CAR I2C DRIVERS
17399 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17400 L:      linux-renesas-soc@vger.kernel.org
17401 S:      Supported
17402 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17403 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17404 F:      drivers/i2c/busses/i2c-rcar.c
17405 F:      drivers/i2c/busses/i2c-sh_mobile.c
17406
17407 RENESAS R-CAR SATA DRIVER
17408 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17409 S:      Supported
17410 L:      linux-ide@vger.kernel.org
17411 L:      linux-renesas-soc@vger.kernel.org
17412 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17413 F:      drivers/ata/sata_rcar.c
17414
17415 RENESAS R-CAR THERMAL DRIVERS
17416 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17417 L:      linux-renesas-soc@vger.kernel.org
17418 S:      Supported
17419 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17420 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17421 F:      drivers/thermal/rcar_gen3_thermal.c
17422 F:      drivers/thermal/rcar_thermal.c
17423
17424 RENESAS RIIC DRIVER
17425 M:      Chris Brandt <chris.brandt@renesas.com>
17426 L:      linux-renesas-soc@vger.kernel.org
17427 S:      Supported
17428 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17429 F:      drivers/i2c/busses/i2c-riic.c
17430
17431 RENESAS USB PHY DRIVER
17432 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17433 L:      linux-renesas-soc@vger.kernel.org
17434 S:      Maintained
17435 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17436
17437 RENESAS RZ/G2L A/D DRIVER
17438 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17439 L:      linux-iio@vger.kernel.org
17440 L:      linux-renesas-soc@vger.kernel.org
17441 S:      Supported
17442 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17443 F:      drivers/iio/adc/rzg2l_adc.c
17444
17445 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17446 M:      Clément Léger <clement.leger@bootlin.com>
17447 L:      linux-renesas-soc@vger.kernel.org
17448 L:      netdev@vger.kernel.org
17449 S:      Maintained
17450 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17451 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17452 F:      drivers/net/dsa/rzn1_a5psw*
17453 F:      drivers/net/pcs/pcs-rzn1-miic.c
17454 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17455 F:      include/linux/pcs-rzn1-miic.h
17456 F:      net/dsa/tag_rzn1_a5psw.c
17457
17458 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17459 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17460 L:      linux-rtc@vger.kernel.org
17461 L:      linux-renesas-soc@vger.kernel.org
17462 S:      Maintained
17463 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17464 F:      drivers/rtc/rtc-rzn1.c
17465
17466 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17467 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17468 L:      linux-mtd@lists.infradead.org
17469 L:      linux-renesas-soc@vger.kernel.org
17470 S:      Maintained
17471 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17472 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17473
17474 RESET CONTROLLER FRAMEWORK
17475 M:      Philipp Zabel <p.zabel@pengutronix.de>
17476 S:      Maintained
17477 T:      git git://git.pengutronix.de/git/pza/linux
17478 F:      Documentation/devicetree/bindings/reset/
17479 F:      Documentation/driver-api/reset.rst
17480 F:      drivers/reset/
17481 F:      include/dt-bindings/reset/
17482 F:      include/linux/reset-controller.h
17483 F:      include/linux/reset.h
17484 F:      include/linux/reset/
17485 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17486
17487 RESTARTABLE SEQUENCES SUPPORT
17488 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17489 M:      Peter Zijlstra <peterz@infradead.org>
17490 M:      "Paul E. McKenney" <paulmck@kernel.org>
17491 M:      Boqun Feng <boqun.feng@gmail.com>
17492 L:      linux-kernel@vger.kernel.org
17493 S:      Supported
17494 F:      include/trace/events/rseq.h
17495 F:      include/uapi/linux/rseq.h
17496 F:      kernel/rseq.c
17497 F:      tools/testing/selftests/rseq/
17498
17499 RFKILL
17500 M:      Johannes Berg <johannes@sipsolutions.net>
17501 L:      linux-wireless@vger.kernel.org
17502 S:      Maintained
17503 W:      https://wireless.wiki.kernel.org/
17504 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17507 F:      Documentation/ABI/stable/sysfs-class-rfkill
17508 F:      Documentation/driver-api/rfkill.rst
17509 F:      include/linux/rfkill.h
17510 F:      include/uapi/linux/rfkill.h
17511 F:      net/rfkill/
17512
17513 RHASHTABLE
17514 M:      Thomas Graf <tgraf@suug.ch>
17515 M:      Herbert Xu <herbert@gondor.apana.org.au>
17516 L:      netdev@vger.kernel.org
17517 S:      Maintained
17518 F:      include/linux/rhashtable-types.h
17519 F:      include/linux/rhashtable.h
17520 F:      lib/rhashtable.c
17521 F:      lib/test_rhashtable.c
17522
17523 RICOH R5C592 MEMORYSTICK DRIVER
17524 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17525 S:      Maintained
17526 F:      drivers/memstick/host/r592.*
17527
17528 RICOH SMARTMEDIA/XD DRIVER
17529 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17530 S:      Maintained
17531 F:      drivers/mtd/nand/raw/r852.c
17532 F:      drivers/mtd/nand/raw/r852.h
17533
17534 RISC-V PMU DRIVERS
17535 M:      Atish Patra <atishp@atishpatra.org>
17536 R:      Anup Patel <anup@brainfault.org>
17537 L:      linux-riscv@lists.infradead.org
17538 S:      Supported
17539 F:      drivers/perf/riscv_pmu.c
17540 F:      drivers/perf/riscv_pmu_legacy.c
17541 F:      drivers/perf/riscv_pmu_sbi.c
17542
17543 RISC-V ARCHITECTURE
17544 M:      Paul Walmsley <paul.walmsley@sifive.com>
17545 M:      Palmer Dabbelt <palmer@dabbelt.com>
17546 M:      Albert Ou <aou@eecs.berkeley.edu>
17547 L:      linux-riscv@lists.infradead.org
17548 S:      Supported
17549 P:      Documentation/riscv/patch-acceptance.rst
17550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17551 F:      arch/riscv/
17552 N:      riscv
17553 K:      riscv
17554
17555 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17556 M:      Conor Dooley <conor.dooley@microchip.com>
17557 M:      Daire McNamara <daire.mcnamara@microchip.com>
17558 L:      linux-riscv@lists.infradead.org
17559 S:      Supported
17560 F:      arch/riscv/boot/dts/microchip/
17561 F:      drivers/char/hw_random/mpfs-rng.c
17562 F:      drivers/clk/microchip/clk-mpfs.c
17563 F:      drivers/mailbox/mailbox-mpfs.c
17564 F:      drivers/pci/controller/pcie-microchip-host.c
17565 F:      drivers/rtc/rtc-mpfs.c
17566 F:      drivers/soc/microchip/
17567 F:      drivers/spi/spi-microchip-core.c
17568 F:      drivers/usb/musb/mpfs.c
17569 F:      include/soc/microchip/mpfs.h
17570
17571 RNBD BLOCK DRIVERS
17572 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17573 M:      Jack Wang <jinpu.wang@ionos.com>
17574 L:      linux-block@vger.kernel.org
17575 S:      Maintained
17576 F:      drivers/block/rnbd/
17577
17578 ROCCAT DRIVERS
17579 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17580 S:      Maintained
17581 W:      http://sourceforge.net/projects/roccat/
17582 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17583 F:      drivers/hid/hid-roccat*
17584 F:      include/linux/hid-roccat*
17585
17586 ROCKCHIP I2S TDM DRIVER
17587 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17588 L:      linux-rockchip@lists.infradead.org
17589 S:      Maintained
17590 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17591 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17592
17593 ROCKCHIP ISP V1 DRIVER
17594 M:      Dafna Hirschfeld <dafna@fastmail.com>
17595 L:      linux-media@vger.kernel.org
17596 L:      linux-rockchip@lists.infradead.org
17597 S:      Maintained
17598 F:      Documentation/admin-guide/media/rkisp1.rst
17599 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17600 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17601 F:      drivers/media/platform/rockchip/rkisp1
17602 F:      include/uapi/linux/rkisp1-config.h
17603
17604 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17605 M:      Jacob Chen <jacob-chen@iotwrt.com>
17606 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17607 L:      linux-media@vger.kernel.org
17608 L:      linux-rockchip@lists.infradead.org
17609 S:      Maintained
17610 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17611 F:      drivers/media/platform/rockchip/rga/
17612
17613 ROCKCHIP VIDEO DECODER DRIVER
17614 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17615 L:      linux-media@vger.kernel.org
17616 L:      linux-rockchip@lists.infradead.org
17617 S:      Maintained
17618 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17619 F:      drivers/staging/media/rkvdec/
17620
17621 ROCKER DRIVER
17622 M:      Jiri Pirko <jiri@resnulli.us>
17623 L:      netdev@vger.kernel.org
17624 S:      Supported
17625 F:      drivers/net/ethernet/rocker/
17626
17627 ROCKETPORT EXPRESS/INFINITY DRIVER
17628 M:      Kevin Cernekee <cernekee@gmail.com>
17629 L:      linux-serial@vger.kernel.org
17630 S:      Odd Fixes
17631 F:      drivers/tty/serial/rp2.*
17632
17633 ROHM BD99954 CHARGER IC
17634 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17635 S:      Supported
17636 F:      drivers/power/supply/bd99954-charger.c
17637 F:      drivers/power/supply/bd99954-charger.h
17638
17639 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17640 M:      Tomasz Duszynski <tduszyns@gmail.com>
17641 S:      Maintained
17642 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17643 F:      drivers/iio/light/bh1750.c
17644
17645 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17646 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17647 L:      linux-kernel@vger.kernel.org
17648 L:      linux-renesas-soc@vger.kernel.org
17649 S:      Supported
17650 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17651 F:      drivers/gpio/gpio-bd9571mwv.c
17652 F:      drivers/mfd/bd9571mwv.c
17653 F:      drivers/regulator/bd9571mwv-regulator.c
17654 F:      include/linux/mfd/bd9571mwv.h
17655
17656 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17657 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17658 S:      Supported
17659 F:      drivers/clk/clk-bd718x7.c
17660 F:      drivers/gpio/gpio-bd71815.c
17661 F:      drivers/gpio/gpio-bd71828.c
17662 F:      drivers/mfd/rohm-bd71828.c
17663 F:      drivers/mfd/rohm-bd718x7.c
17664 F:      drivers/mfd/rohm-bd9576.c
17665 F:      drivers/regulator/bd71815-regulator.c
17666 F:      drivers/regulator/bd71828-regulator.c
17667 F:      drivers/regulator/bd718x7-regulator.c
17668 F:      drivers/regulator/bd9576-regulator.c
17669 F:      drivers/regulator/rohm-regulator.c
17670 F:      drivers/rtc/rtc-bd70528.c
17671 F:      drivers/watchdog/bd9576_wdt.c
17672 F:      include/linux/mfd/rohm-bd71815.h
17673 F:      include/linux/mfd/rohm-bd71828.h
17674 F:      include/linux/mfd/rohm-bd718x7.h
17675 F:      include/linux/mfd/rohm-bd957x.h
17676 F:      include/linux/mfd/rohm-generic.h
17677 F:      include/linux/mfd/rohm-shared.h
17678
17679 ROSE NETWORK LAYER
17680 M:      Ralf Baechle <ralf@linux-mips.org>
17681 L:      linux-hams@vger.kernel.org
17682 S:      Maintained
17683 W:      http://www.linux-ax25.org/
17684 F:      include/net/rose.h
17685 F:      include/uapi/linux/rose.h
17686 F:      net/rose/
17687
17688 ROTATION DRIVER FOR ALLWINNER A83T
17689 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17690 L:      linux-media@vger.kernel.org
17691 S:      Maintained
17692 T:      git git://linuxtv.org/media_tree.git
17693 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17694 F:      drivers/media/platform/sunxi/sun8i-rotate/
17695
17696 RPMSG TTY DRIVER
17697 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17698 L:      linux-remoteproc@vger.kernel.org
17699 S:      Maintained
17700 F:      drivers/tty/rpmsg_tty.c
17701
17702 RTL2830 MEDIA DRIVER
17703 M:      Antti Palosaari <crope@iki.fi>
17704 L:      linux-media@vger.kernel.org
17705 S:      Maintained
17706 W:      https://linuxtv.org
17707 W:      http://palosaari.fi/linux/
17708 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17709 T:      git git://linuxtv.org/anttip/media_tree.git
17710 F:      drivers/media/dvb-frontends/rtl2830*
17711
17712 RTL2832 MEDIA DRIVER
17713 M:      Antti Palosaari <crope@iki.fi>
17714 L:      linux-media@vger.kernel.org
17715 S:      Maintained
17716 W:      https://linuxtv.org
17717 W:      http://palosaari.fi/linux/
17718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17719 T:      git git://linuxtv.org/anttip/media_tree.git
17720 F:      drivers/media/dvb-frontends/rtl2832*
17721
17722 RTL2832_SDR MEDIA DRIVER
17723 M:      Antti Palosaari <crope@iki.fi>
17724 L:      linux-media@vger.kernel.org
17725 S:      Maintained
17726 W:      https://linuxtv.org
17727 W:      http://palosaari.fi/linux/
17728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17729 T:      git git://linuxtv.org/anttip/media_tree.git
17730 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17731
17732 RTL8180 WIRELESS DRIVER
17733 L:      linux-wireless@vger.kernel.org
17734 S:      Orphan
17735 W:      https://wireless.wiki.kernel.org/
17736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17737 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17738
17739 RTL8187 WIRELESS DRIVER
17740 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17741 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17742 M:      Larry Finger <Larry.Finger@lwfinger.net>
17743 L:      linux-wireless@vger.kernel.org
17744 S:      Maintained
17745 W:      https://wireless.wiki.kernel.org/
17746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17747 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17748
17749 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17750 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17751 L:      linux-wireless@vger.kernel.org
17752 S:      Maintained
17753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17754 F:      drivers/net/wireless/realtek/rtl8xxxu/
17755
17756 RTRS TRANSPORT DRIVERS
17757 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17758 M:      Jack Wang <jinpu.wang@ionos.com>
17759 L:      linux-rdma@vger.kernel.org
17760 S:      Maintained
17761 F:      drivers/infiniband/ulp/rtrs/
17762
17763 RXRPC SOCKETS (AF_RXRPC)
17764 M:      David Howells <dhowells@redhat.com>
17765 M:      Marc Dionne <marc.dionne@auristor.com>
17766 L:      linux-afs@lists.infradead.org
17767 S:      Supported
17768 W:      https://www.infradead.org/~dhowells/kafs/
17769 F:      Documentation/networking/rxrpc.rst
17770 F:      include/keys/rxrpc-type.h
17771 F:      include/net/af_rxrpc.h
17772 F:      include/trace/events/rxrpc.h
17773 F:      include/uapi/linux/rxrpc.h
17774 F:      net/rxrpc/
17775
17776 S3 SAVAGE FRAMEBUFFER DRIVER
17777 M:      Antonino Daplas <adaplas@gmail.com>
17778 L:      linux-fbdev@vger.kernel.org
17779 S:      Maintained
17780 F:      drivers/video/fbdev/savage/
17781
17782 S390
17783 M:      Heiko Carstens <hca@linux.ibm.com>
17784 M:      Vasily Gorbik <gor@linux.ibm.com>
17785 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17786 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17787 R:      Sven Schnelle <svens@linux.ibm.com>
17788 L:      linux-s390@vger.kernel.org
17789 S:      Supported
17790 W:      http://www.ibm.com/developerworks/linux/linux390/
17791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17792 F:      Documentation/driver-api/s390-drivers.rst
17793 F:      Documentation/s390/
17794 F:      arch/s390/
17795 F:      drivers/s390/
17796
17797 S390 COMMON I/O LAYER
17798 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17799 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17800 L:      linux-s390@vger.kernel.org
17801 S:      Supported
17802 W:      http://www.ibm.com/developerworks/linux/linux390/
17803 F:      drivers/s390/cio/
17804
17805 S390 DASD DRIVER
17806 M:      Stefan Haberland <sth@linux.ibm.com>
17807 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17808 L:      linux-s390@vger.kernel.org
17809 S:      Supported
17810 W:      http://www.ibm.com/developerworks/linux/linux390/
17811 F:      block/partitions/ibm.c
17812 F:      drivers/s390/block/dasd*
17813 F:      include/linux/dasd_mod.h
17814
17815 S390 IOMMU (PCI)
17816 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17817 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17818 L:      linux-s390@vger.kernel.org
17819 S:      Supported
17820 W:      http://www.ibm.com/developerworks/linux/linux390/
17821 F:      drivers/iommu/s390-iommu.c
17822
17823 S390 IUCV NETWORK LAYER
17824 M:      Alexandra Winter <wintera@linux.ibm.com>
17825 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17826 L:      linux-s390@vger.kernel.org
17827 L:      netdev@vger.kernel.org
17828 S:      Supported
17829 W:      http://www.ibm.com/developerworks/linux/linux390/
17830 F:      drivers/s390/net/*iucv*
17831 F:      include/net/iucv/
17832 F:      net/iucv/
17833
17834 S390 NETWORK DRIVERS
17835 M:      Alexandra Winter <wintera@linux.ibm.com>
17836 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17837 L:      linux-s390@vger.kernel.org
17838 L:      netdev@vger.kernel.org
17839 S:      Supported
17840 W:      http://www.ibm.com/developerworks/linux/linux390/
17841 F:      drivers/s390/net/
17842
17843 S390 PCI SUBSYSTEM
17844 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17845 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17846 L:      linux-s390@vger.kernel.org
17847 S:      Supported
17848 W:      http://www.ibm.com/developerworks/linux/linux390/
17849 F:      arch/s390/pci/
17850 F:      drivers/pci/hotplug/s390_pci_hpc.c
17851 F:      Documentation/s390/pci.rst
17852
17853 S390 VFIO AP DRIVER
17854 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17855 M:      Halil Pasic <pasic@linux.ibm.com>
17856 M:      Jason Herne <jjherne@linux.ibm.com>
17857 L:      linux-s390@vger.kernel.org
17858 S:      Supported
17859 W:      http://www.ibm.com/developerworks/linux/linux390/
17860 F:      Documentation/s390/vfio-ap*
17861 F:      drivers/s390/crypto/vfio_ap*
17862
17863 S390 VFIO-CCW DRIVER
17864 M:      Eric Farman <farman@linux.ibm.com>
17865 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17866 R:      Halil Pasic <pasic@linux.ibm.com>
17867 L:      linux-s390@vger.kernel.org
17868 L:      kvm@vger.kernel.org
17869 S:      Supported
17870 F:      Documentation/s390/vfio-ccw.rst
17871 F:      drivers/s390/cio/vfio_ccw*
17872 F:      include/uapi/linux/vfio_ccw.h
17873
17874 S390 VFIO-PCI DRIVER
17875 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17876 M:      Eric Farman <farman@linux.ibm.com>
17877 L:      linux-s390@vger.kernel.org
17878 L:      kvm@vger.kernel.org
17879 S:      Supported
17880 F:      arch/s390/kvm/pci*
17881 F:      drivers/vfio/pci/vfio_pci_zdev.c
17882 F:      include/uapi/linux/vfio_zdev.h
17883
17884 S390 ZCRYPT DRIVER
17885 M:      Harald Freudenberger <freude@linux.ibm.com>
17886 L:      linux-s390@vger.kernel.org
17887 S:      Supported
17888 W:      http://www.ibm.com/developerworks/linux/linux390/
17889 F:      drivers/s390/crypto/
17890
17891 S390 ZFCP DRIVER
17892 M:      Steffen Maier <maier@linux.ibm.com>
17893 M:      Benjamin Block <bblock@linux.ibm.com>
17894 L:      linux-s390@vger.kernel.org
17895 S:      Supported
17896 W:      http://www.ibm.com/developerworks/linux/linux390/
17897 F:      drivers/s390/scsi/zfcp_*
17898
17899 S3C ADC BATTERY DRIVER
17900 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17901 L:      linux-samsung-soc@vger.kernel.org
17902 S:      Odd Fixes
17903 F:      drivers/power/supply/s3c_adc_battery.c
17904 F:      include/linux/s3c_adc_battery.h
17905
17906 S3C24XX SD/MMC Driver
17907 M:      Ben Dooks <ben-linux@fluff.org>
17908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17909 S:      Supported
17910 F:      drivers/mmc/host/s3cmci.*
17911
17912 SAA6588 RDS RECEIVER DRIVER
17913 M:      Hans Verkuil <hverkuil@xs4all.nl>
17914 L:      linux-media@vger.kernel.org
17915 S:      Odd Fixes
17916 W:      https://linuxtv.org
17917 T:      git git://linuxtv.org/media_tree.git
17918 F:      drivers/media/i2c/saa6588*
17919
17920 SAA7134 VIDEO4LINUX DRIVER
17921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17922 L:      linux-media@vger.kernel.org
17923 S:      Odd fixes
17924 W:      https://linuxtv.org
17925 T:      git git://linuxtv.org/media_tree.git
17926 F:      Documentation/driver-api/media/drivers/saa7134*
17927 F:      drivers/media/pci/saa7134/
17928
17929 SAA7146 VIDEO4LINUX-2 DRIVER
17930 M:      Hans Verkuil <hverkuil@xs4all.nl>
17931 L:      linux-media@vger.kernel.org
17932 S:      Maintained
17933 T:      git git://linuxtv.org/media_tree.git
17934 F:      drivers/media/common/saa7146/
17935 F:      drivers/media/pci/saa7146/
17936 F:      include/media/drv-intf/saa7146*
17937
17938 SAFESETID SECURITY MODULE
17939 M:      Micah Morton <mortonm@chromium.org>
17940 S:      Supported
17941 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17942 F:      security/safesetid/
17943
17944 SAMSUNG AUDIO (ASoC) DRIVERS
17945 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17946 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17947 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17948 S:      Supported
17949 B:      mailto:linux-samsung-soc@vger.kernel.org
17950 F:      Documentation/devicetree/bindings/sound/samsung*
17951 F:      sound/soc/samsung/
17952
17953 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17954 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17955 L:      linux-crypto@vger.kernel.org
17956 L:      linux-samsung-soc@vger.kernel.org
17957 S:      Maintained
17958 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17959 F:      drivers/crypto/exynos-rng.c
17960
17961 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17962 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17963 L:      linux-samsung-soc@vger.kernel.org
17964 S:      Maintained
17965 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17966 F:      drivers/char/hw_random/exynos-trng.c
17967
17968 SAMSUNG FRAMEBUFFER DRIVER
17969 M:      Jingoo Han <jingoohan1@gmail.com>
17970 L:      linux-fbdev@vger.kernel.org
17971 S:      Maintained
17972 F:      drivers/video/fbdev/s3c-fb.c
17973
17974 SAMSUNG INTERCONNECT DRIVERS
17975 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17976 M:      Artur Świgoń <a.swigon@samsung.com>
17977 L:      linux-pm@vger.kernel.org
17978 L:      linux-samsung-soc@vger.kernel.org
17979 S:      Supported
17980 F:      drivers/interconnect/samsung/
17981
17982 SAMSUNG LAPTOP DRIVER
17983 M:      Corentin Chary <corentin.chary@gmail.com>
17984 L:      platform-driver-x86@vger.kernel.org
17985 S:      Maintained
17986 F:      drivers/platform/x86/samsung-laptop.c
17987
17988 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17989 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17990 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17991 L:      linux-kernel@vger.kernel.org
17992 L:      linux-samsung-soc@vger.kernel.org
17993 S:      Supported
17994 B:      mailto:linux-samsung-soc@vger.kernel.org
17995 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17996 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17997 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17998 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17999 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18000 F:      drivers/clk/clk-s2mps11.c
18001 F:      drivers/mfd/sec*.c
18002 F:      drivers/regulator/s2m*.c
18003 F:      drivers/regulator/s5m*.c
18004 F:      drivers/rtc/rtc-s5m.c
18005 F:      include/linux/mfd/samsung/
18006
18007 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18008 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18009 L:      linux-media@vger.kernel.org
18010 L:      linux-samsung-soc@vger.kernel.org
18011 S:      Maintained
18012 F:      drivers/media/platform/samsung/s3c-camif/
18013 F:      include/media/drv-intf/s3c_camif.h
18014
18015 SAMSUNG S3FWRN5 NFC DRIVER
18016 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18017 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
18018 L:      linux-nfc@lists.01.org (subscribers-only)
18019 S:      Maintained
18020 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18021 F:      drivers/nfc/s3fwrn5
18022
18023 SAMSUNG S5C73M3 CAMERA DRIVER
18024 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18025 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18026 L:      linux-media@vger.kernel.org
18027 S:      Supported
18028 F:      drivers/media/i2c/s5c73m3/*
18029
18030 SAMSUNG S5K5BAF CAMERA DRIVER
18031 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18032 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18033 L:      linux-media@vger.kernel.org
18034 S:      Supported
18035 F:      drivers/media/i2c/s5k5baf.c
18036
18037 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18038 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18039 M:      Vladimir Zapolskiy <vz@mleia.com>
18040 L:      linux-crypto@vger.kernel.org
18041 L:      linux-samsung-soc@vger.kernel.org
18042 S:      Maintained
18043 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18044 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18045 F:      drivers/crypto/s5p-sss.c
18046
18047 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18048 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18049 L:      linux-media@vger.kernel.org
18050 S:      Supported
18051 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18052 F:      drivers/media/platform/samsung/exynos4-is/
18053
18054 SAMSUNG SOC CLOCK DRIVERS
18055 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18056 M:      Tomasz Figa <tomasz.figa@gmail.com>
18057 M:      Chanwoo Choi <cw00.choi@samsung.com>
18058 R:      Alim Akhtar <alim.akhtar@samsung.com>
18059 L:      linux-samsung-soc@vger.kernel.org
18060 S:      Supported
18061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18062 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18063 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18064 F:      drivers/clk/samsung/
18065 F:      include/dt-bindings/clock/exynos*.h
18066 F:      include/dt-bindings/clock/s3c*.h
18067 F:      include/dt-bindings/clock/s5p*.h
18068 F:      include/dt-bindings/clock/samsung,*.h
18069 F:      include/linux/clk/samsung.h
18070 F:      include/linux/platform_data/clk-s3c2410.h
18071
18072 SAMSUNG SPI DRIVERS
18073 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18074 M:      Andi Shyti <andi@etezian.org>
18075 L:      linux-spi@vger.kernel.org
18076 L:      linux-samsung-soc@vger.kernel.org
18077 S:      Maintained
18078 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18079 F:      drivers/spi/spi-s3c*
18080 F:      include/linux/platform_data/spi-s3c64xx.h
18081 F:      include/linux/spi/s3c24xx-fiq.h
18082
18083 SAMSUNG SXGBE DRIVERS
18084 M:      Byungho An <bh74.an@samsung.com>
18085 L:      netdev@vger.kernel.org
18086 S:      Supported
18087 F:      drivers/net/ethernet/samsung/sxgbe/
18088
18089 SAMSUNG THERMAL DRIVER
18090 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18091 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18092 L:      linux-pm@vger.kernel.org
18093 L:      linux-samsung-soc@vger.kernel.org
18094 S:      Maintained
18095 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18096 F:      drivers/thermal/samsung/
18097
18098 SAMSUNG USB2 PHY DRIVER
18099 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18100 L:      linux-kernel@vger.kernel.org
18101 S:      Supported
18102 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18103 F:      Documentation/driver-api/phy/samsung-usb2.rst
18104 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18105 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18106 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18107 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18108 F:      drivers/phy/samsung/phy-samsung-usb2.c
18109 F:      drivers/phy/samsung/phy-samsung-usb2.h
18110
18111 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18112 M:      Paul Barker <paul.barker@sancloud.com>
18113 R:      Marc Murphy <marc.murphy@sancloud.com>
18114 S:      Supported
18115 F:      arch/arm/boot/dts/am335x-sancloud*
18116
18117 SC1200 WDT DRIVER
18118 M:      Zwane Mwaikambo <zwanem@gmail.com>
18119 S:      Maintained
18120 F:      drivers/watchdog/sc1200wdt.c
18121
18122 SCHEDULER
18123 M:      Ingo Molnar <mingo@redhat.com>
18124 M:      Peter Zijlstra <peterz@infradead.org>
18125 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18126 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18127 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18128 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18129 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18130 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18131 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18132 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18133 L:      linux-kernel@vger.kernel.org
18134 S:      Maintained
18135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18136 F:      include/linux/preempt.h
18137 F:      include/linux/sched.h
18138 F:      include/linux/wait.h
18139 F:      include/uapi/linux/sched.h
18140 F:      kernel/sched/
18141
18142 SCR24X CHIP CARD INTERFACE DRIVER
18143 M:      Lubomir Rintel <lkundrak@v3.sk>
18144 S:      Supported
18145 F:      drivers/char/pcmcia/scr24x_cs.c
18146
18147 SCSI RDMA PROTOCOL (SRP) INITIATOR
18148 M:      Bart Van Assche <bvanassche@acm.org>
18149 L:      linux-rdma@vger.kernel.org
18150 S:      Supported
18151 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18152 F:      drivers/infiniband/ulp/srp/
18153 F:      include/scsi/srp.h
18154
18155 SCSI RDMA PROTOCOL (SRP) TARGET
18156 M:      Bart Van Assche <bvanassche@acm.org>
18157 L:      linux-rdma@vger.kernel.org
18158 L:      target-devel@vger.kernel.org
18159 S:      Supported
18160 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18161 F:      drivers/infiniband/ulp/srpt/
18162
18163 SCSI SG DRIVER
18164 M:      Doug Gilbert <dgilbert@interlog.com>
18165 L:      linux-scsi@vger.kernel.org
18166 S:      Maintained
18167 W:      http://sg.danny.cz/sg
18168 F:      Documentation/scsi/scsi-generic.rst
18169 F:      drivers/scsi/sg.c
18170 F:      include/scsi/sg.h
18171
18172 SCSI SUBSYSTEM
18173 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18174 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18175 L:      linux-scsi@vger.kernel.org
18176 S:      Maintained
18177 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18180 F:      Documentation/devicetree/bindings/scsi/
18181 F:      drivers/scsi/
18182 F:      drivers/ufs/
18183 F:      include/scsi/
18184
18185 SCSI TAPE DRIVER
18186 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18187 L:      linux-scsi@vger.kernel.org
18188 S:      Maintained
18189 F:      Documentation/scsi/st.rst
18190 F:      drivers/scsi/st.*
18191 F:      drivers/scsi/st_*.h
18192
18193 SCSI TARGET CORE USER DRIVER
18194 M:      Bodo Stroesser <bostroesser@gmail.com>
18195 L:      linux-scsi@vger.kernel.org
18196 L:      target-devel@vger.kernel.org
18197 S:      Supported
18198 F:      Documentation/target/tcmu-design.rst
18199 F:      drivers/target/target_core_user.c
18200 F:      include/uapi/linux/target_core_user.h
18201
18202 SCSI TARGET SUBSYSTEM
18203 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18204 L:      linux-scsi@vger.kernel.org
18205 L:      target-devel@vger.kernel.org
18206 S:      Supported
18207 W:      http://www.linux-iscsi.org
18208 Q:      https://patchwork.kernel.org/project/target-devel/list/
18209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18210 F:      Documentation/target/
18211 F:      drivers/target/
18212 F:      include/target/
18213
18214 SCTP PROTOCOL
18215 M:      Vlad Yasevich <vyasevich@gmail.com>
18216 M:      Neil Horman <nhorman@tuxdriver.com>
18217 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18218 L:      linux-sctp@vger.kernel.org
18219 S:      Maintained
18220 W:      http://lksctp.sourceforge.net
18221 F:      Documentation/networking/sctp.rst
18222 F:      include/linux/sctp.h
18223 F:      include/net/sctp/
18224 F:      include/uapi/linux/sctp.h
18225 F:      net/sctp/
18226
18227 SCx200 CPU SUPPORT
18228 M:      Jim Cromie <jim.cromie@gmail.com>
18229 S:      Odd Fixes
18230 F:      Documentation/i2c/busses/scx200_acb.rst
18231 F:      arch/x86/platform/scx200/
18232 F:      drivers/i2c/busses/scx200*
18233 F:      drivers/mtd/maps/scx200_docflash.c
18234 F:      drivers/watchdog/scx200_wdt.c
18235 F:      include/linux/scx200.h
18236
18237 SCx200 GPIO DRIVER
18238 M:      Jim Cromie <jim.cromie@gmail.com>
18239 S:      Maintained
18240 F:      drivers/char/scx200_gpio.c
18241 F:      include/linux/scx200_gpio.h
18242
18243 SCx200 HRT CLOCKSOURCE DRIVER
18244 M:      Jim Cromie <jim.cromie@gmail.com>
18245 S:      Maintained
18246 F:      drivers/clocksource/scx200_hrt.c
18247
18248 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18249 M:      Sascha Sommer <saschasommer@freenet.de>
18250 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18251 S:      Maintained
18252 F:      drivers/mmc/host/sdricoh_cs.c
18253
18254 SECO BOARDS CEC DRIVER
18255 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18256 S:      Maintained
18257 F:      drivers/media/cec/platform/seco/seco-cec.c
18258 F:      drivers/media/cec/platform/seco/seco-cec.h
18259
18260 SECURE COMPUTING
18261 M:      Kees Cook <keescook@chromium.org>
18262 R:      Andy Lutomirski <luto@amacapital.net>
18263 R:      Will Drewry <wad@chromium.org>
18264 S:      Supported
18265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18266 F:      Documentation/userspace-api/seccomp_filter.rst
18267 F:      include/linux/seccomp.h
18268 F:      include/uapi/linux/seccomp.h
18269 F:      kernel/seccomp.c
18270 F:      tools/testing/selftests/kselftest_harness.h
18271 F:      tools/testing/selftests/seccomp/*
18272 K:      \bsecure_computing
18273 K:      \bTIF_SECCOMP\b
18274
18275 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18276 M:      Al Cooper <alcooperx@gmail.com>
18277 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18278 L:      linux-mmc@vger.kernel.org
18279 S:      Maintained
18280 F:      drivers/mmc/host/sdhci-brcmstb*
18281
18282 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18283 M:      Adrian Hunter <adrian.hunter@intel.com>
18284 L:      linux-mmc@vger.kernel.org
18285 S:      Maintained
18286 F:      drivers/mmc/host/sdhci*
18287
18288 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18289 M:      Eugen Hristev <eugen.hristev@microchip.com>
18290 L:      linux-mmc@vger.kernel.org
18291 S:      Supported
18292 F:      drivers/mmc/host/sdhci-of-at91.c
18293
18294 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18295 M:      Ben Dooks <ben-linux@fluff.org>
18296 M:      Jaehoon Chung <jh80.chung@samsung.com>
18297 L:      linux-mmc@vger.kernel.org
18298 S:      Maintained
18299 F:      drivers/mmc/host/sdhci-s3c*
18300
18301 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18302 M:      Viresh Kumar <vireshk@kernel.org>
18303 L:      linux-mmc@vger.kernel.org
18304 S:      Maintained
18305 F:      drivers/mmc/host/sdhci-spear.c
18306
18307 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18308 M:      Kishon Vijay Abraham I <kishon@ti.com>
18309 L:      linux-mmc@vger.kernel.org
18310 S:      Maintained
18311 F:      drivers/mmc/host/sdhci-omap.c
18312
18313 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18314 M:      Haibo Chen <haibo.chen@nxp.com>
18315 L:      linux-imx@nxp.com
18316 L:      linux-mmc@vger.kernel.org
18317 S:      Maintained
18318 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18319
18320 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18321 M:      Jonathan Derrick <jonathan.derrick@intel.com>
18322 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
18323 L:      linux-block@vger.kernel.org
18324 S:      Supported
18325 F:      block/opal_proto.h
18326 F:      block/sed*
18327 F:      include/linux/sed*
18328 F:      include/uapi/linux/sed*
18329
18330 SECURITY CONTACT
18331 M:      Security Officers <security@kernel.org>
18332 S:      Supported
18333 F:      Documentation/admin-guide/security-bugs.rst
18334
18335 SECURITY SUBSYSTEM
18336 M:      Paul Moore <paul@paul-moore.com>
18337 M:      James Morris <jmorris@namei.org>
18338 M:      "Serge E. Hallyn" <serge@hallyn.com>
18339 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18340 S:      Supported
18341 W:      http://kernsec.org/
18342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18343 F:      security/
18344 X:      security/selinux/
18345
18346 SELINUX SECURITY MODULE
18347 M:      Paul Moore <paul@paul-moore.com>
18348 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18349 M:      Eric Paris <eparis@parisplace.org>
18350 L:      selinux@vger.kernel.org
18351 S:      Supported
18352 W:      https://selinuxproject.org
18353 W:      https://github.com/SELinuxProject
18354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18355 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18356 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18357 F:      Documentation/admin-guide/LSM/SELinux.rst
18358 F:      include/trace/events/avc.h
18359 F:      include/uapi/linux/selinux_netlink.h
18360 F:      scripts/selinux/
18361 F:      security/selinux/
18362
18363 SENSABLE PHANTOM
18364 M:      Jiri Slaby <jirislaby@kernel.org>
18365 S:      Maintained
18366 F:      drivers/misc/phantom.c
18367 F:      include/uapi/linux/phantom.h
18368
18369 SENSEAIR SUNRISE 006-0-0007
18370 M:      Jacopo Mondi <jacopo@jmondi.org>
18371 S:      Maintained
18372 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18373 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18374 F:      drivers/iio/chemical/sunrise_co2.c
18375
18376 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18377 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18378 S:      Maintained
18379 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18380 F:      drivers/iio/chemical/scd30.h
18381 F:      drivers/iio/chemical/scd30_core.c
18382 F:      drivers/iio/chemical/scd30_i2c.c
18383 F:      drivers/iio/chemical/scd30_serial.c
18384
18385 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18386 M:      Roan van Dijk <roan@protonic.nl>
18387 S:      Maintained
18388 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18389 F:      drivers/iio/chemical/scd4x.c
18390
18391 SENSIRION SGP40 GAS SENSOR DRIVER
18392 M:      Andreas Klinger <ak@it-klinger.de>
18393 S:      Maintained
18394 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18395 F:      drivers/iio/chemical/sgp40.c
18396
18397 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18398 M:      Tomasz Duszynski <tduszyns@gmail.com>
18399 S:      Maintained
18400 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18401 F:      drivers/iio/chemical/sps30.c
18402 F:      drivers/iio/chemical/sps30_i2c.c
18403 F:      drivers/iio/chemical/sps30_serial.c
18404
18405 SERIAL DEVICE BUS
18406 M:      Rob Herring <robh@kernel.org>
18407 L:      linux-serial@vger.kernel.org
18408 S:      Maintained
18409 F:      Documentation/devicetree/bindings/serial/serial.yaml
18410 F:      drivers/tty/serdev/
18411 F:      include/linux/serdev.h
18412
18413 SERIAL DRIVERS
18414 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18415 L:      linux-serial@vger.kernel.org
18416 S:      Maintained
18417 F:      Documentation/devicetree/bindings/serial/
18418 F:      drivers/tty/serial/
18419
18420 SERIAL IR RECEIVER
18421 M:      Sean Young <sean@mess.org>
18422 L:      linux-media@vger.kernel.org
18423 S:      Maintained
18424 F:      drivers/media/rc/serial_ir.c
18425
18426 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18427 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18428 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18429 S:      Maintained
18430 F:      Documentation/devicetree/bindings/slimbus/
18431 F:      drivers/slimbus/
18432 F:      include/linux/slimbus.h
18433
18434 SFC NETWORK DRIVER
18435 M:      Edward Cree <ecree.xilinx@gmail.com>
18436 M:      Martin Habets <habetsm.xilinx@gmail.com>
18437 L:      netdev@vger.kernel.org
18438 S:      Supported
18439 F:      drivers/net/ethernet/sfc/
18440
18441 SFF/SFP/SFP+ MODULE SUPPORT
18442 M:      Russell King <linux@armlinux.org.uk>
18443 L:      netdev@vger.kernel.org
18444 S:      Maintained
18445 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18446 F:      drivers/net/phy/phylink.c
18447 F:      drivers/net/phy/sfp*
18448 F:      include/linux/mdio/mdio-i2c.h
18449 F:      include/linux/phylink.h
18450 F:      include/linux/sfp.h
18451 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)
18452
18453 SGI GRU DRIVER
18454 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18455 S:      Maintained
18456 F:      drivers/misc/sgi-gru/
18457
18458 SGI XP/XPC/XPNET DRIVER
18459 M:      Robin Holt <robinmholt@gmail.com>
18460 M:      Steve Wahl <steve.wahl@hpe.com>
18461 R:      Mike Travis <mike.travis@hpe.com>
18462 S:      Maintained
18463 F:      drivers/misc/sgi-xp/
18464
18465 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18466 M:      Karsten Graul <kgraul@linux.ibm.com>
18467 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18468 L:      linux-s390@vger.kernel.org
18469 S:      Supported
18470 W:      http://www.ibm.com/developerworks/linux/linux390/
18471 F:      net/smc/
18472
18473 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18474 M:      Linus Walleij <linus.walleij@linaro.org>
18475 L:      linux-iio@vger.kernel.org
18476 S:      Maintained
18477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18478 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18479 F:      drivers/iio/light/gp2ap002.c
18480
18481 SHARP RJ54N1CB0C SENSOR DRIVER
18482 M:      Jacopo Mondi <jacopo@jmondi.org>
18483 L:      linux-media@vger.kernel.org
18484 S:      Odd fixes
18485 T:      git git://linuxtv.org/media_tree.git
18486 F:      drivers/media/i2c/rj54n1cb0c.c
18487 F:      include/media/i2c/rj54n1cb0c.h
18488
18489 SH_VOU V4L2 OUTPUT DRIVER
18490 L:      linux-media@vger.kernel.org
18491 S:      Orphan
18492 F:      drivers/media/platform/renesas/sh_vou.c
18493 F:      include/media/drv-intf/sh_vou.h
18494
18495 SI2157 MEDIA DRIVER
18496 M:      Antti Palosaari <crope@iki.fi>
18497 L:      linux-media@vger.kernel.org
18498 S:      Maintained
18499 W:      https://linuxtv.org
18500 W:      http://palosaari.fi/linux/
18501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18502 T:      git git://linuxtv.org/anttip/media_tree.git
18503 F:      drivers/media/tuners/si2157*
18504
18505 SI2165 MEDIA DRIVER
18506 M:      Matthias Schwarzott <zzam@gentoo.org>
18507 L:      linux-media@vger.kernel.org
18508 S:      Maintained
18509 W:      https://linuxtv.org
18510 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18511 F:      drivers/media/dvb-frontends/si2165*
18512
18513 SI2168 MEDIA DRIVER
18514 M:      Antti Palosaari <crope@iki.fi>
18515 L:      linux-media@vger.kernel.org
18516 S:      Maintained
18517 W:      https://linuxtv.org
18518 W:      http://palosaari.fi/linux/
18519 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18520 T:      git git://linuxtv.org/anttip/media_tree.git
18521 F:      drivers/media/dvb-frontends/si2168*
18522
18523 SI470X FM RADIO RECEIVER I2C DRIVER
18524 M:      Hans Verkuil <hverkuil@xs4all.nl>
18525 L:      linux-media@vger.kernel.org
18526 S:      Odd Fixes
18527 W:      https://linuxtv.org
18528 T:      git git://linuxtv.org/media_tree.git
18529 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18530
18531 SI470X FM RADIO RECEIVER USB DRIVER
18532 M:      Hans Verkuil <hverkuil@xs4all.nl>
18533 L:      linux-media@vger.kernel.org
18534 S:      Maintained
18535 W:      https://linuxtv.org
18536 T:      git git://linuxtv.org/media_tree.git
18537 F:      drivers/media/radio/si470x/radio-si470x-common.c
18538 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18539 F:      drivers/media/radio/si470x/radio-si470x.h
18540
18541 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18542 M:      Eduardo Valentin <edubezval@gmail.com>
18543 L:      linux-media@vger.kernel.org
18544 S:      Odd Fixes
18545 W:      https://linuxtv.org
18546 T:      git git://linuxtv.org/media_tree.git
18547 F:      drivers/media/radio/si4713/si4713.?
18548
18549 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18550 M:      Eduardo Valentin <edubezval@gmail.com>
18551 L:      linux-media@vger.kernel.org
18552 S:      Odd Fixes
18553 W:      https://linuxtv.org
18554 T:      git git://linuxtv.org/media_tree.git
18555 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18556
18557 SI4713 FM RADIO TRANSMITTER USB DRIVER
18558 M:      Hans Verkuil <hverkuil@xs4all.nl>
18559 L:      linux-media@vger.kernel.org
18560 S:      Maintained
18561 W:      https://linuxtv.org
18562 T:      git git://linuxtv.org/media_tree.git
18563 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18564
18565 SIANO DVB DRIVER
18566 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18567 L:      linux-media@vger.kernel.org
18568 S:      Odd fixes
18569 W:      https://linuxtv.org
18570 T:      git git://linuxtv.org/media_tree.git
18571 F:      drivers/media/common/siano/
18572 F:      drivers/media/mmc/siano/
18573 F:      drivers/media/usb/siano/
18574 F:      drivers/media/usb/siano/
18575
18576 SIFIVE DRIVERS
18577 M:      Palmer Dabbelt <palmer@dabbelt.com>
18578 M:      Paul Walmsley <paul.walmsley@sifive.com>
18579 L:      linux-riscv@lists.infradead.org
18580 S:      Supported
18581 T:      git git://github.com/sifive/riscv-linux.git
18582 N:      sifive
18583 K:      [^@]sifive
18584
18585 SIFIVE FU540 SYSTEM-ON-CHIP
18586 M:      Paul Walmsley <paul.walmsley@sifive.com>
18587 M:      Palmer Dabbelt <palmer@dabbelt.com>
18588 L:      linux-riscv@lists.infradead.org
18589 S:      Supported
18590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18591 N:      fu540
18592 K:      fu540
18593
18594 SIFIVE PDMA DRIVER
18595 M:      Green Wan <green.wan@sifive.com>
18596 S:      Maintained
18597 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18598 F:      drivers/dma/sf-pdma/
18599
18600 SILEAD TOUCHSCREEN DRIVER
18601 M:      Hans de Goede <hdegoede@redhat.com>
18602 L:      linux-input@vger.kernel.org
18603 L:      platform-driver-x86@vger.kernel.org
18604 S:      Maintained
18605 F:      drivers/input/touchscreen/silead.c
18606 F:      drivers/platform/x86/touchscreen_dmi.c
18607
18608 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18609 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18610 S:      Supported
18611 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18612 F:      drivers/net/wireless/silabs/wfx/
18613
18614 SILICON MOTION SM712 FRAME BUFFER DRIVER
18615 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18616 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18617 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18618 L:      linux-fbdev@vger.kernel.org
18619 S:      Maintained
18620 F:      Documentation/fb/sm712fb.rst
18621 F:      drivers/video/fbdev/sm712*
18622
18623 SILVACO I3C DUAL-ROLE MASTER
18624 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18625 M:      Conor Culhane <conor.culhane@silvaco.com>
18626 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18627 S:      Maintained
18628 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18629 F:      drivers/i3c/master/svc-i3c-master.c
18630
18631 SIMPLEFB FB DRIVER
18632 M:      Hans de Goede <hdegoede@redhat.com>
18633 L:      linux-fbdev@vger.kernel.org
18634 S:      Maintained
18635 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18636 F:      drivers/video/fbdev/simplefb.c
18637 F:      include/linux/platform_data/simplefb.h
18638
18639 SIMTEC EB110ATX (Chalice CATS)
18640 M:      Simtec Linux Team <linux@simtec.co.uk>
18641 S:      Supported
18642 W:      http://www.simtec.co.uk/products/EB110ATX/
18643
18644 SIMTEC EB2410ITX (BAST)
18645 M:      Simtec Linux Team <linux@simtec.co.uk>
18646 S:      Supported
18647 W:      http://www.simtec.co.uk/products/EB2410ITX/
18648 F:      arch/arm/mach-s3c/bast-ide.c
18649 F:      arch/arm/mach-s3c/bast-irq.c
18650 F:      arch/arm/mach-s3c/mach-bast.c
18651
18652 SIOX
18653 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18654 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18655 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18656 S:      Supported
18657 F:      drivers/gpio/gpio-siox.c
18658 F:      drivers/siox/*
18659 F:      include/trace/events/siox.h
18660
18661 SIPHASH PRF ROUTINES
18662 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18663 S:      Maintained
18664 F:      include/linux/siphash.h
18665 F:      lib/siphash.c
18666 F:      lib/test_siphash.c
18667
18668 SIS 190 ETHERNET DRIVER
18669 M:      Francois Romieu <romieu@fr.zoreil.com>
18670 L:      netdev@vger.kernel.org
18671 S:      Maintained
18672 F:      drivers/net/ethernet/sis/sis190.c
18673
18674 SIS 900/7016 FAST ETHERNET DRIVER
18675 M:      Daniele Venzano <venza@brownhat.org>
18676 L:      netdev@vger.kernel.org
18677 S:      Maintained
18678 W:      http://www.brownhat.org/sis900.html
18679 F:      drivers/net/ethernet/sis/sis900.*
18680
18681 SIS FRAMEBUFFER DRIVER
18682 M:      Thomas Winischhofer <thomas@winischhofer.net>
18683 S:      Maintained
18684 W:      http://www.winischhofer.net/linuxsisvga.shtml
18685 F:      Documentation/fb/sisfb.rst
18686 F:      drivers/video/fbdev/sis/
18687 F:      include/video/sisfb.h
18688
18689 SIS I2C TOUCHSCREEN DRIVER
18690 M:      Mika Penttilä <mika.penttila@nextfour.com>
18691 L:      linux-input@vger.kernel.org
18692 S:      Maintained
18693 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18694 F:      drivers/input/touchscreen/sis_i2c.c
18695
18696 SIS USB2VGA DRIVER
18697 M:      Thomas Winischhofer <thomas@winischhofer.net>
18698 S:      Maintained
18699 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18700 F:      drivers/usb/misc/sisusbvga/
18701
18702 SL28 CPLD MFD DRIVER
18703 M:      Michael Walle <michael@walle.cc>
18704 S:      Maintained
18705 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18706 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18707 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18708 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18709 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18710 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18711 F:      drivers/gpio/gpio-sl28cpld.c
18712 F:      drivers/hwmon/sl28cpld-hwmon.c
18713 F:      drivers/irqchip/irq-sl28cpld.c
18714 F:      drivers/pwm/pwm-sl28cpld.c
18715 F:      drivers/watchdog/sl28cpld_wdt.c
18716
18717 SLAB ALLOCATOR
18718 M:      Christoph Lameter <cl@linux.com>
18719 M:      Pekka Enberg <penberg@kernel.org>
18720 M:      David Rientjes <rientjes@google.com>
18721 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18722 M:      Andrew Morton <akpm@linux-foundation.org>
18723 M:      Vlastimil Babka <vbabka@suse.cz>
18724 R:      Roman Gushchin <roman.gushchin@linux.dev>
18725 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18726 L:      linux-mm@kvack.org
18727 S:      Maintained
18728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18729 F:      include/linux/sl?b*.h
18730 F:      mm/sl?b*
18731
18732 SLCAN CAN NETWORK DRIVER
18733 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
18734 L:      linux-can@vger.kernel.org
18735 S:      Maintained
18736 F:      drivers/net/can/slcan/
18737
18738 SLEEPABLE READ-COPY UPDATE (SRCU)
18739 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18740 M:      "Paul E. McKenney" <paulmck@kernel.org>
18741 M:      Josh Triplett <josh@joshtriplett.org>
18742 R:      Steven Rostedt <rostedt@goodmis.org>
18743 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18744 L:      rcu@vger.kernel.org
18745 S:      Supported
18746 W:      http://www.rdrop.com/users/paulmck/RCU/
18747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18748 F:      include/linux/srcu*.h
18749 F:      kernel/rcu/srcu*.c
18750
18751 SMACK SECURITY MODULE
18752 M:      Casey Schaufler <casey@schaufler-ca.com>
18753 L:      linux-security-module@vger.kernel.org
18754 S:      Maintained
18755 W:      http://schaufler-ca.com
18756 T:      git git://github.com/cschaufler/smack-next
18757 F:      Documentation/admin-guide/LSM/Smack.rst
18758 F:      security/smack/
18759
18760 SMC91x ETHERNET DRIVER
18761 M:      Nicolas Pitre <nico@fluxnic.net>
18762 S:      Odd Fixes
18763 F:      drivers/net/ethernet/smsc/smc91x.*
18764
18765 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18766 M:      Mark Rutland <mark.rutland@arm.com>
18767 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18768 M:      Sudeep Holla <sudeep.holla@arm.com>
18769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18770 S:      Maintained
18771 F:      drivers/firmware/smccc/
18772 F:      include/linux/arm-smccc.h
18773
18774 SMM665 HARDWARE MONITOR DRIVER
18775 M:      Guenter Roeck <linux@roeck-us.net>
18776 L:      linux-hwmon@vger.kernel.org
18777 S:      Maintained
18778 F:      Documentation/hwmon/smm665.rst
18779 F:      drivers/hwmon/smm665.c
18780
18781 SMSC EMC2103 HARDWARE MONITOR DRIVER
18782 M:      Steve Glendinning <steve.glendinning@shawell.net>
18783 L:      linux-hwmon@vger.kernel.org
18784 S:      Maintained
18785 F:      Documentation/hwmon/emc2103.rst
18786 F:      drivers/hwmon/emc2103.c
18787
18788 SMSC SCH5627 HARDWARE MONITOR DRIVER
18789 M:      Hans de Goede <hdegoede@redhat.com>
18790 L:      linux-hwmon@vger.kernel.org
18791 S:      Supported
18792 F:      Documentation/hwmon/sch5627.rst
18793 F:      drivers/hwmon/sch5627.c
18794
18795 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18796 M:      Steve Glendinning <steve.glendinning@shawell.net>
18797 L:      linux-fbdev@vger.kernel.org
18798 S:      Maintained
18799 F:      drivers/video/fbdev/smscufx.c
18800
18801 SMSC47B397 HARDWARE MONITOR DRIVER
18802 M:      Jean Delvare <jdelvare@suse.com>
18803 L:      linux-hwmon@vger.kernel.org
18804 S:      Maintained
18805 F:      Documentation/hwmon/smsc47b397.rst
18806 F:      drivers/hwmon/smsc47b397.c
18807
18808 SMSC911x ETHERNET DRIVER
18809 M:      Steve Glendinning <steve.glendinning@shawell.net>
18810 L:      netdev@vger.kernel.org
18811 S:      Maintained
18812 F:      drivers/net/ethernet/smsc/smsc911x.*
18813 F:      include/linux/smsc911x.h
18814
18815 SMSC9420 PCI ETHERNET DRIVER
18816 M:      Steve Glendinning <steve.glendinning@shawell.net>
18817 L:      netdev@vger.kernel.org
18818 S:      Maintained
18819 F:      drivers/net/ethernet/smsc/smsc9420.*
18820
18821 SOCIONEXT (SNI) AVE NETWORK DRIVER
18822 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18823 L:      netdev@vger.kernel.org
18824 S:      Maintained
18825 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18826 F:      drivers/net/ethernet/socionext/sni_ave.c
18827
18828 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18829 M:      Jassi Brar <jaswinder.singh@linaro.org>
18830 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18831 L:      netdev@vger.kernel.org
18832 S:      Maintained
18833 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18834 F:      drivers/net/ethernet/socionext/netsec.c
18835
18836 SOCIONEXT (SNI) Synquacer SPI DRIVER
18837 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18838 M:      Jassi Brar <jaswinder.singh@linaro.org>
18839 L:      linux-spi@vger.kernel.org
18840 S:      Maintained
18841 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18842 F:      drivers/spi/spi-synquacer.c
18843
18844 SOCIONEXT SYNQUACER I2C DRIVER
18845 M:      Ard Biesheuvel <ardb@kernel.org>
18846 L:      linux-i2c@vger.kernel.org
18847 S:      Maintained
18848 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18849 F:      drivers/i2c/busses/i2c-synquacer.c
18850
18851 SOCIONEXT UNIPHIER SOUND DRIVER
18852 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18853 S:      Orphan
18854 F:      sound/soc/uniphier/
18855
18856 SOEKRIS NET48XX LED SUPPORT
18857 M:      Chris Boot <bootc@bootc.net>
18858 S:      Maintained
18859 F:      drivers/leds/leds-net48xx.c
18860
18861 SOFT-IWARP DRIVER (siw)
18862 M:      Bernard Metzler <bmt@zurich.ibm.com>
18863 L:      linux-rdma@vger.kernel.org
18864 S:      Supported
18865 F:      drivers/infiniband/sw/siw/
18866 F:      include/uapi/rdma/siw-abi.h
18867
18868 SOFT-ROCE DRIVER (rxe)
18869 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18870 L:      linux-rdma@vger.kernel.org
18871 S:      Supported
18872 F:      drivers/infiniband/sw/rxe/
18873 F:      include/uapi/rdma/rdma_user_rxe.h
18874
18875 SOFTLOGIC 6x10 MPEG CODEC
18876 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18877 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18878 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18879 M:      Ismael Luceno <ismael@iodev.co.uk>
18880 L:      linux-media@vger.kernel.org
18881 S:      Supported
18882 F:      drivers/media/pci/solo6x10/
18883
18884 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18885 M:      James Morse <james.morse@arm.com>
18886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18887 S:      Maintained
18888 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18889 F:      drivers/firmware/arm_sdei.c
18890 F:      include/linux/arm_sdei.h
18891 F:      include/uapi/linux/arm_sdei.h
18892
18893 SOFTWARE NODES AND DEVICE PROPERTIES
18894 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18895 R:      Daniel Scally <djrscally@gmail.com>
18896 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18897 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18898 L:      linux-acpi@vger.kernel.org
18899 S:      Maintained
18900 F:      drivers/base/property.c
18901 F:      drivers/base/swnode.c
18902 F:      include/linux/fwnode.h
18903 F:      include/linux/property.h
18904
18905 SOFTWARE RAID (Multiple Disks) SUPPORT
18906 M:      Song Liu <song@kernel.org>
18907 L:      linux-raid@vger.kernel.org
18908 S:      Supported
18909 Q:      https://patchwork.kernel.org/project/linux-raid/list/
18910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18911 F:      drivers/md/Kconfig
18912 F:      drivers/md/Makefile
18913 F:      drivers/md/md*
18914 F:      drivers/md/raid*
18915 F:      include/linux/raid/
18916 F:      include/uapi/linux/raid/
18917
18918 SOLIDRUN CLEARFOG SUPPORT
18919 M:      Russell King <linux@armlinux.org.uk>
18920 S:      Maintained
18921 F:      arch/arm/boot/dts/armada-388-clearfog*
18922 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18923
18924 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18925 M:      Russell King <linux@armlinux.org.uk>
18926 S:      Maintained
18927 F:      arch/arm/boot/dts/imx6*-cubox-i*
18928 F:      arch/arm/boot/dts/imx6*-hummingboard*
18929 F:      arch/arm/boot/dts/imx6*-sr-*
18930
18931 SONIC NETWORK DRIVER
18932 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18933 L:      netdev@vger.kernel.org
18934 S:      Maintained
18935 F:      drivers/net/ethernet/natsemi/sonic.*
18936
18937 SONICS SILICON BACKPLANE DRIVER (SSB)
18938 M:      Michael Buesch <m@bues.ch>
18939 L:      linux-wireless@vger.kernel.org
18940 S:      Maintained
18941 F:      drivers/ssb/
18942 F:      include/linux/ssb/
18943
18944 SONY IMX208 SENSOR DRIVER
18945 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18946 L:      linux-media@vger.kernel.org
18947 S:      Maintained
18948 T:      git git://linuxtv.org/media_tree.git
18949 F:      drivers/media/i2c/imx208.c
18950
18951 SONY IMX214 SENSOR DRIVER
18952 M:      Ricardo Ribalda <ribalda@kernel.org>
18953 L:      linux-media@vger.kernel.org
18954 S:      Maintained
18955 T:      git git://linuxtv.org/media_tree.git
18956 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18957 F:      drivers/media/i2c/imx214.c
18958
18959 SONY IMX219 SENSOR DRIVER
18960 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18961 L:      linux-media@vger.kernel.org
18962 S:      Maintained
18963 T:      git git://linuxtv.org/media_tree.git
18964 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18965 F:      drivers/media/i2c/imx219.c
18966
18967 SONY IMX258 SENSOR DRIVER
18968 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18969 L:      linux-media@vger.kernel.org
18970 S:      Maintained
18971 T:      git git://linuxtv.org/media_tree.git
18972 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18973 F:      drivers/media/i2c/imx258.c
18974
18975 SONY IMX274 SENSOR DRIVER
18976 M:      Leon Luo <leonl@leopardimaging.com>
18977 L:      linux-media@vger.kernel.org
18978 S:      Maintained
18979 T:      git git://linuxtv.org/media_tree.git
18980 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18981 F:      drivers/media/i2c/imx274.c
18982
18983 SONY IMX290 SENSOR DRIVER
18984 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18985 L:      linux-media@vger.kernel.org
18986 S:      Maintained
18987 T:      git git://linuxtv.org/media_tree.git
18988 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18989 F:      drivers/media/i2c/imx290.c
18990
18991 SONY IMX319 SENSOR DRIVER
18992 M:      Bingbu Cao <bingbu.cao@intel.com>
18993 L:      linux-media@vger.kernel.org
18994 S:      Maintained
18995 T:      git git://linuxtv.org/media_tree.git
18996 F:      drivers/media/i2c/imx319.c
18997
18998 SONY IMX334 SENSOR DRIVER
18999 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19000 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19001 L:      linux-media@vger.kernel.org
19002 S:      Maintained
19003 T:      git git://linuxtv.org/media_tree.git
19004 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19005 F:      drivers/media/i2c/imx334.c
19006
19007 SONY IMX335 SENSOR DRIVER
19008 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19009 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19010 L:      linux-media@vger.kernel.org
19011 S:      Maintained
19012 T:      git git://linuxtv.org/media_tree.git
19013 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19014 F:      drivers/media/i2c/imx335.c
19015
19016 SONY IMX355 SENSOR DRIVER
19017 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19018 L:      linux-media@vger.kernel.org
19019 S:      Maintained
19020 T:      git git://linuxtv.org/media_tree.git
19021 F:      drivers/media/i2c/imx355.c
19022
19023 SONY IMX412 SENSOR DRIVER
19024 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19025 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19026 L:      linux-media@vger.kernel.org
19027 S:      Maintained
19028 T:      git git://linuxtv.org/media_tree.git
19029 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19030 F:      drivers/media/i2c/imx412.c
19031
19032 SONY MEMORYSTICK SUBSYSTEM
19033 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19034 M:      Alex Dubov <oakad@yahoo.com>
19035 M:      Ulf Hansson <ulf.hansson@linaro.org>
19036 L:      linux-mmc@vger.kernel.org
19037 S:      Maintained
19038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19039 F:      drivers/memstick/
19040 F:      include/linux/memstick.h
19041
19042 SONY VAIO CONTROL DEVICE DRIVER
19043 M:      Mattia Dongili <malattia@linux.it>
19044 L:      platform-driver-x86@vger.kernel.org
19045 S:      Maintained
19046 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19047 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19048 F:      drivers/char/sonypi.c
19049 F:      drivers/platform/x86/sony-laptop.c
19050 F:      include/linux/sony-laptop.h
19051
19052 SOUND
19053 M:      Jaroslav Kysela <perex@perex.cz>
19054 M:      Takashi Iwai <tiwai@suse.com>
19055 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19056 S:      Maintained
19057 W:      http://www.alsa-project.org/
19058 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19060 F:      Documentation/sound/
19061 F:      include/sound/
19062 F:      include/uapi/sound/
19063 F:      sound/
19064 F:      tools/testing/selftests/alsa
19065
19066 SOUND - COMPRESSED AUDIO
19067 M:      Vinod Koul <vkoul@kernel.org>
19068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19069 S:      Supported
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19071 F:      Documentation/sound/designs/compress-offload.rst
19072 F:      include/sound/compress_driver.h
19073 F:      include/uapi/sound/compress_*
19074 F:      sound/core/compress_offload.c
19075 F:      sound/soc/soc-compress.c
19076
19077 SOUND - DMAENGINE HELPERS
19078 M:      Lars-Peter Clausen <lars@metafoo.de>
19079 S:      Supported
19080 F:      include/sound/dmaengine_pcm.h
19081 F:      sound/core/pcm_dmaengine.c
19082 F:      sound/soc/soc-generic-dmaengine-pcm.c
19083
19084 SOUND - ALSA SELFTESTS
19085 M:      Mark Brown <broonie@kernel.org>
19086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19087 L:      linux-kselftest@vger.kernel.org
19088 S:      Supported
19089 F:      tools/testing/selftests/alsa
19090
19091 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19092 M:      Liam Girdwood <lgirdwood@gmail.com>
19093 M:      Mark Brown <broonie@kernel.org>
19094 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19095 S:      Supported
19096 W:      http://alsa-project.org/main/index.php/ASoC
19097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19098 F:      Documentation/devicetree/bindings/sound/
19099 F:      Documentation/sound/soc/
19100 F:      include/dt-bindings/sound/
19101 F:      include/sound/soc*
19102 F:      sound/soc/
19103
19104 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19105 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19106 M:      Liam Girdwood <lgirdwood@gmail.com>
19107 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19108 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19109 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19110 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19111 M:      Daniel Baluta <daniel.baluta@nxp.com>
19112 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19113 S:      Supported
19114 W:      https://github.com/thesofproject/linux/
19115 F:      sound/soc/sof/
19116
19117 SOUNDWIRE SUBSYSTEM
19118 M:      Vinod Koul <vkoul@kernel.org>
19119 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19120 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19121 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19122 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19123 S:      Supported
19124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19125 F:      Documentation/driver-api/soundwire/
19126 F:      drivers/soundwire/
19127 F:      include/linux/soundwire/
19128
19129 SP2 MEDIA DRIVER
19130 M:      Olli Salonen <olli.salonen@iki.fi>
19131 L:      linux-media@vger.kernel.org
19132 S:      Maintained
19133 W:      https://linuxtv.org
19134 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19135 F:      drivers/media/dvb-frontends/sp2*
19136
19137 SPARC + UltraSPARC (sparc/sparc64)
19138 M:      "David S. Miller" <davem@davemloft.net>
19139 L:      sparclinux@vger.kernel.org
19140 S:      Maintained
19141 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19144 F:      arch/sparc/
19145 F:      drivers/sbus/
19146
19147 SPARC SERIAL DRIVERS
19148 M:      "David S. Miller" <davem@davemloft.net>
19149 L:      sparclinux@vger.kernel.org
19150 S:      Maintained
19151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19153 F:      drivers/tty/serial/suncore.c
19154 F:      drivers/tty/serial/sunhv.c
19155 F:      drivers/tty/serial/sunsab.c
19156 F:      drivers/tty/serial/sunsab.h
19157 F:      drivers/tty/serial/sunsu.c
19158 F:      drivers/tty/serial/sunzilog.c
19159 F:      drivers/tty/serial/sunzilog.h
19160 F:      drivers/tty/vcc.c
19161 F:      include/linux/sunserialcore.h
19162
19163 SPARSE CHECKER
19164 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19165 L:      linux-sparse@vger.kernel.org
19166 S:      Maintained
19167 W:      https://sparse.docs.kernel.org/
19168 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19169 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19170 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19171 F:      include/linux/compiler.h
19172
19173 SPEAKUP CONSOLE SPEECH DRIVER
19174 M:      William Hubbs <w.d.hubbs@gmail.com>
19175 M:      Chris Brannon <chris@the-brannons.com>
19176 M:      Kirk Reiser <kirk@reisers.ca>
19177 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19178 L:      speakup@linux-speakup.org
19179 S:      Odd Fixes
19180 W:      http://www.linux-speakup.org/
19181 W:      https://github.com/linux-speakup/speakup
19182 B:      https://github.com/linux-speakup/speakup/issues
19183 F:      drivers/accessibility/speakup/
19184
19185 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19186 M:      Viresh Kumar <vireshk@kernel.org>
19187 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19188 M:      soc@kernel.org
19189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19190 S:      Maintained
19191 W:      http://www.st.com/spear
19192 F:      arch/arm/boot/dts/spear*
19193 F:      arch/arm/mach-spear/
19194 F:      drivers/clk/spear/
19195 F:      drivers/pinctrl/spear/
19196
19197 SPI NOR SUBSYSTEM
19198 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
19199 M:      Pratyush Yadav <pratyush@kernel.org>
19200 R:      Michael Walle <michael@walle.cc>
19201 L:      linux-mtd@lists.infradead.org
19202 S:      Maintained
19203 W:      http://www.linux-mtd.infradead.org/
19204 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19205 C:      irc://irc.oftc.net/mtd
19206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19207 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19208 F:      drivers/mtd/spi-nor/
19209 F:      include/linux/mtd/spi-nor.h
19210
19211 SPI SUBSYSTEM
19212 M:      Mark Brown <broonie@kernel.org>
19213 L:      linux-spi@vger.kernel.org
19214 S:      Maintained
19215 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19217 F:      Documentation/devicetree/bindings/spi/
19218 F:      Documentation/spi/
19219 F:      drivers/spi/
19220 F:      include/linux/spi/
19221 F:      include/uapi/linux/spi/
19222 F:      tools/spi/
19223
19224 SPIDERNET NETWORK DRIVER for CELL
19225 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19226 M:      Geoff Levand <geoff@infradead.org>
19227 L:      netdev@vger.kernel.org
19228 L:      linuxppc-dev@lists.ozlabs.org
19229 S:      Maintained
19230 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19231 F:      drivers/net/ethernet/toshiba/spider_net*
19232
19233 SPMI SUBSYSTEM
19234 M:      Stephen Boyd <sboyd@kernel.org>
19235 L:      linux-kernel@vger.kernel.org
19236 S:      Maintained
19237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19238 F:      Documentation/devicetree/bindings/spmi/
19239 F:      drivers/spmi/
19240 F:      include/dt-bindings/spmi/spmi.h
19241 F:      include/linux/spmi.h
19242 F:      include/trace/events/spmi.h
19243
19244 SPU FILE SYSTEM
19245 M:      Jeremy Kerr <jk@ozlabs.org>
19246 L:      linuxppc-dev@lists.ozlabs.org
19247 S:      Supported
19248 W:      http://www.ibm.com/developerworks/power/cell/
19249 F:      Documentation/filesystems/spufs/spufs.rst
19250 F:      arch/powerpc/platforms/cell/spufs/
19251
19252 SQUASHFS FILE SYSTEM
19253 M:      Phillip Lougher <phillip@squashfs.org.uk>
19254 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19255 S:      Maintained
19256 W:      http://squashfs.org.uk
19257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19258 F:      Documentation/filesystems/squashfs.rst
19259 F:      fs/squashfs/
19260
19261 SRM (Alpha) environment access
19262 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19263 S:      Maintained
19264 F:      arch/alpha/kernel/srm_env.c
19265
19266 ST LSM6DSx IMU IIO DRIVER
19267 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19268 L:      linux-iio@vger.kernel.org
19269 S:      Maintained
19270 W:      http://www.st.com/
19271 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19272 F:      drivers/iio/imu/st_lsm6dsx/
19273
19274 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19275 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19276 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19277 L:      linux-media@vger.kernel.org
19278 S:      Maintained
19279 T:      git git://linuxtv.org/media_tree.git
19280 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
19281 F:      drivers/media/i2c/st-mipid02.c
19282
19283 ST STM32 I2C/SMBUS DRIVER
19284 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19285 M:      Alain Volmat <alain.volmat@foss.st.com>
19286 L:      linux-i2c@vger.kernel.org
19287 S:      Maintained
19288 F:      drivers/i2c/busses/i2c-stm32*
19289
19290 ST STM32 SPI DRIVER
19291 M:      Alain Volmat <alain.volmat@foss.st.com>
19292 L:      linux-spi@vger.kernel.org
19293 S:      Maintained
19294 F:      drivers/spi/spi-stm32.c
19295
19296 ST STPDDC60 DRIVER
19297 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19298 L:      linux-hwmon@vger.kernel.org
19299 S:      Maintained
19300 F:      Documentation/hwmon/stpddc60.rst
19301 F:      drivers/hwmon/pmbus/stpddc60.c
19302
19303 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19304 M:      Song Qiang <songqiang1304521@gmail.com>
19305 L:      linux-iio@vger.kernel.org
19306 S:      Maintained
19307 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19308 F:      drivers/iio/proximity/vl53l0x-i2c.c
19309
19310 STABLE BRANCH
19311 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19312 M:      Sasha Levin <sashal@kernel.org>
19313 L:      stable@vger.kernel.org
19314 S:      Supported
19315 F:      Documentation/process/stable-kernel-rules.rst
19316
19317 STAGING - ATOMISP DRIVER
19318 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19319 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19320 L:      linux-media@vger.kernel.org
19321 S:      Maintained
19322 F:      drivers/staging/media/atomisp/
19323
19324 STAGING - FIELDBUS SUBSYSTEM
19325 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19326 S:      Maintained
19327 F:      drivers/staging/fieldbus/*
19328 F:      drivers/staging/fieldbus/Documentation/
19329
19330 STAGING - HMS ANYBUS-S BUS
19331 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19332 S:      Maintained
19333 F:      drivers/staging/fieldbus/anybuss/
19334
19335 STAGING - INDUSTRIAL IO
19336 M:      Jonathan Cameron <jic23@kernel.org>
19337 L:      linux-iio@vger.kernel.org
19338 S:      Odd Fixes
19339 F:      Documentation/devicetree/bindings/staging/iio/
19340 F:      drivers/staging/iio/
19341
19342 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19343 M:      Marc Dietrich <marvin24@gmx.de>
19344 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19345 L:      linux-tegra@vger.kernel.org
19346 S:      Maintained
19347 F:      drivers/staging/nvec/
19348
19349 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19350 M:      Jens Frederich <jfrederich@gmail.com>
19351 M:      Jon Nettleton <jon.nettleton@gmail.com>
19352 S:      Maintained
19353 W:      http://wiki.laptop.org/go/DCON
19354 F:      drivers/staging/olpc_dcon/
19355
19356 STAGING - REALTEK RTL8188EU DRIVERS
19357 M:      Larry Finger <Larry.Finger@lwfinger.net>
19358 M:      Phillip Potter <phil@philpotter.co.uk>
19359 R:      Pavel Skripkin <paskripkin@gmail.com>
19360 S:      Supported
19361 F:      drivers/staging/r8188eu/
19362
19363 STAGING - REALTEK RTL8712U DRIVERS
19364 M:      Larry Finger <Larry.Finger@lwfinger.net>
19365 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19366 S:      Odd Fixes
19367 F:      drivers/staging/rtl8712/
19368
19369 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19370 M:      Michael Hennerich <michael.hennerich@analog.com>
19371 L:      linux-fbdev@vger.kernel.org
19372 S:      Supported
19373 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19374 F:      drivers/staging/fbtft/fb_seps525.c
19375
19376 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19377 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19378 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19379 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19380 L:      linux-fbdev@vger.kernel.org
19381 S:      Maintained
19382 F:      drivers/staging/sm750fb/
19383
19384 STAGING - VIA VT665X DRIVERS
19385 M:      Forest Bond <forest@alittletooquiet.net>
19386 S:      Odd Fixes
19387 F:      drivers/staging/vt665?/
19388
19389 STAGING SUBSYSTEM
19390 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19391 L:      linux-staging@lists.linux.dev
19392 S:      Supported
19393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19394 F:      drivers/staging/
19395
19396 STARFIRE/DURALAN NETWORK DRIVER
19397 M:      Ion Badulescu <ionut@badula.org>
19398 S:      Odd Fixes
19399 F:      drivers/net/ethernet/adaptec/starfire*
19400
19401 STARFIVE JH7100 CLOCK DRIVERS
19402 M:      Emil Renner Berthing <kernel@esmil.dk>
19403 S:      Maintained
19404 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19405 F:      drivers/clk/starfive/clk-starfive-jh7100*
19406 F:      include/dt-bindings/clock/starfive-jh7100*.h
19407
19408 STARFIVE JH7100 PINCTRL DRIVER
19409 M:      Emil Renner Berthing <kernel@esmil.dk>
19410 L:      linux-gpio@vger.kernel.org
19411 S:      Maintained
19412 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19413 F:      drivers/pinctrl/pinctrl-starfive.c
19414 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19415
19416 STARFIVE JH7100 RESET CONTROLLER DRIVER
19417 M:      Emil Renner Berthing <kernel@esmil.dk>
19418 S:      Maintained
19419 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19420 F:      drivers/reset/reset-starfive-jh7100.c
19421 F:      include/dt-bindings/reset/starfive-jh7100.h
19422
19423 STATIC BRANCH/CALL
19424 M:      Peter Zijlstra <peterz@infradead.org>
19425 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19426 M:      Jason Baron <jbaron@akamai.com>
19427 R:      Steven Rostedt <rostedt@goodmis.org>
19428 R:      Ard Biesheuvel <ardb@kernel.org>
19429 S:      Supported
19430 F:      arch/*/include/asm/jump_label*.h
19431 F:      arch/*/include/asm/static_call*.h
19432 F:      arch/*/kernel/jump_label.c
19433 F:      arch/*/kernel/static_call.c
19434 F:      include/linux/jump_label*.h
19435 F:      include/linux/static_call*.h
19436 F:      kernel/jump_label.c
19437 F:      kernel/static_call.c
19438
19439 STI AUDIO (ASoC) DRIVERS
19440 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19441 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19442 S:      Maintained
19443 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19444 F:      sound/soc/sti/
19445
19446 STI CEC DRIVER
19447 M:      Alain Volmat <alain.volmat@foss.st.com>
19448 S:      Maintained
19449 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19450 F:      drivers/media/cec/platform/sti/
19451
19452 STK1160 USB VIDEO CAPTURE DRIVER
19453 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19454 L:      linux-media@vger.kernel.org
19455 S:      Maintained
19456 T:      git git://linuxtv.org/media_tree.git
19457 F:      drivers/media/usb/stk1160/
19458
19459 STM32 AUDIO (ASoC) DRIVERS
19460 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19461 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19462 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19463 S:      Maintained
19464 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19465 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19466 F:      sound/soc/stm/
19467
19468 STM32 TIMER/LPTIMER DRIVERS
19469 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19470 S:      Maintained
19471 F:      Documentation/ABI/testing/*timer-stm32
19472 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19473 F:      drivers/*/stm32-*timer*
19474 F:      drivers/pwm/pwm-stm32*
19475 F:      include/linux/*/stm32-*tim*
19476
19477 STMMAC ETHERNET DRIVER
19478 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19479 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19480 M:      Jose Abreu <joabreu@synopsys.com>
19481 L:      netdev@vger.kernel.org
19482 S:      Supported
19483 W:      http://www.stlinux.com
19484 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19485 F:      drivers/net/ethernet/stmicro/stmmac/
19486
19487 SUN3/3X
19488 M:      Sam Creasey <sammy@sammy.net>
19489 S:      Maintained
19490 W:      http://sammy.net/sun3/
19491 F:      arch/m68k/include/asm/sun3*
19492 F:      arch/m68k/kernel/*sun3*
19493 F:      arch/m68k/sun3*/
19494 F:      drivers/net/ethernet/i825xx/sun3*
19495
19496 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19497 M:      Hans de Goede <hdegoede@redhat.com>
19498 L:      linux-input@vger.kernel.org
19499 S:      Maintained
19500 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19501 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19502
19503 SUNDANCE NETWORK DRIVER
19504 M:      Denis Kirjanov <kda@linux-powerpc.org>
19505 L:      netdev@vger.kernel.org
19506 S:      Maintained
19507 F:      drivers/net/ethernet/dlink/sundance.c
19508
19509 SUNPLUS ETHERNET DRIVER
19510 M:      Wells Lu <wellslutw@gmail.com>
19511 L:      netdev@vger.kernel.org
19512 S:      Maintained
19513 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19514 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19515 F:      drivers/net/ethernet/sunplus/
19516
19517 SUNPLUS OCOTP DRIVER
19518 M:      Vincent Shih <vincent.sunplus@gmail.com>
19519 S:      Maintained
19520 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19521 F:      drivers/nvmem/sunplus-ocotp.c
19522
19523 SUNPLUS PWM DRIVER
19524 M:      Hammer Hsieh <hammerh0314@gmail.com>
19525 S:      Maintained
19526 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19527 F:      drivers/pwm/pwm-sunplus.c
19528
19529 SUNPLUS RTC DRIVER
19530 M:      Vincent Shih <vincent.sunplus@gmail.com>
19531 L:      linux-rtc@vger.kernel.org
19532 S:      Maintained
19533 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19534 F:      drivers/rtc/rtc-sunplus.c
19535
19536 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19537 M:      Li-hao Kuo <lhjeff911@gmail.com>
19538 L:      linux-spi@vger.kernel.org
19539 S:      Maintained
19540 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19541 F:      drivers/spi/spi-sunplus-sp7021.c
19542
19543 SUNPLUS UART DRIVER
19544 M:      Hammer Hsieh <hammerh0314@gmail.com>
19545 S:      Maintained
19546 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19547 F:      drivers/tty/serial/sunplus-uart.c
19548
19549 SUNPLUS WATCHDOG DRIVER
19550 M:      Xiantao Hu <xt.hu@cqplus1.com>
19551 L:      linux-watchdog@vger.kernel.org
19552 S:      Maintained
19553 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19554 F:      drivers/watchdog/sunplus_wdt.c
19555
19556 SUPERH
19557 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19558 M:      Rich Felker <dalias@libc.org>
19559 L:      linux-sh@vger.kernel.org
19560 S:      Maintained
19561 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19562 F:      Documentation/sh/
19563 F:      arch/sh/
19564 F:      drivers/sh/
19565
19566 SUSPEND TO RAM
19567 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19568 M:      Len Brown <len.brown@intel.com>
19569 M:      Pavel Machek <pavel@ucw.cz>
19570 L:      linux-pm@vger.kernel.org
19571 S:      Supported
19572 B:      https://bugzilla.kernel.org
19573 F:      Documentation/power/
19574 F:      arch/x86/kernel/acpi/
19575 F:      drivers/base/power/
19576 F:      include/linux/freezer.h
19577 F:      include/linux/pm.h
19578 F:      include/linux/suspend.h
19579 F:      kernel/power/
19580
19581 SVGA HANDLING
19582 M:      Martin Mares <mj@ucw.cz>
19583 L:      linux-video@atrey.karlin.mff.cuni.cz
19584 S:      Maintained
19585 F:      Documentation/admin-guide/svga.rst
19586 F:      arch/x86/boot/video*
19587
19588 SWIOTLB SUBSYSTEM
19589 M:      Christoph Hellwig <hch@infradead.org>
19590 L:      iommu@lists.linux.dev
19591 S:      Supported
19592 W:      http://git.infradead.org/users/hch/dma-mapping.git
19593 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19594 F:      arch/*/kernel/pci-swiotlb.c
19595 F:      include/linux/swiotlb.h
19596 F:      kernel/dma/swiotlb.c
19597
19598 SWITCHDEV
19599 M:      Jiri Pirko <jiri@resnulli.us>
19600 M:      Ivan Vecera <ivecera@redhat.com>
19601 L:      netdev@vger.kernel.org
19602 S:      Supported
19603 F:      include/net/switchdev.h
19604 F:      net/switchdev/
19605
19606 SY8106A REGULATOR DRIVER
19607 M:      Icenowy Zheng <icenowy@aosc.io>
19608 S:      Maintained
19609 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19610 F:      drivers/regulator/sy8106a-regulator.c
19611
19612 SYNC FILE FRAMEWORK
19613 M:      Sumit Semwal <sumit.semwal@linaro.org>
19614 R:      Gustavo Padovan <gustavo@padovan.org>
19615 L:      linux-media@vger.kernel.org
19616 L:      dri-devel@lists.freedesktop.org
19617 S:      Maintained
19618 T:      git git://anongit.freedesktop.org/drm/drm-misc
19619 F:      Documentation/driver-api/sync_file.rst
19620 F:      drivers/dma-buf/dma-fence*
19621 F:      drivers/dma-buf/sw_sync.c
19622 F:      drivers/dma-buf/sync_*
19623 F:      include/linux/sync_file.h
19624 F:      include/uapi/linux/sync_file.h
19625
19626 SYNOPSYS ARC ARCHITECTURE
19627 M:      Vineet Gupta <vgupta@kernel.org>
19628 L:      linux-snps-arc@lists.infradead.org
19629 S:      Supported
19630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19631 F:      Documentation/arc/
19632 F:      Documentation/devicetree/bindings/arc/*
19633 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19634 F:      arch/arc/
19635 F:      drivers/clocksource/arc_timer.c
19636 F:      drivers/tty/serial/arc_uart.c
19637
19638 SYNOPSYS ARC HSDK SDP pll clock driver
19639 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19640 S:      Supported
19641 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19642 F:      drivers/clk/clk-hsdk-pll.c
19643
19644 SYNOPSYS ARC SDP clock driver
19645 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19646 S:      Supported
19647 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19648 F:      drivers/clk/axs10x/*
19649
19650 SYNOPSYS ARC SDP platform support
19651 M:      Alexey Brodkin <abrodkin@synopsys.com>
19652 S:      Supported
19653 F:      Documentation/devicetree/bindings/arc/axs10*
19654 F:      arch/arc/boot/dts/ax*
19655 F:      arch/arc/plat-axs10x
19656
19657 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19658 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19659 S:      Supported
19660 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19661 F:      drivers/reset/reset-axs10x.c
19662
19663 SYNOPSYS CREG GPIO DRIVER
19664 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19665 S:      Maintained
19666 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19667 F:      drivers/gpio/gpio-creg-snps.c
19668
19669 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19670 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
19671 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19672 S:      Supported
19673 F:      drivers/tty/serial/8250/8250_dw.c
19674 F:      drivers/tty/serial/8250/8250_dwlib.*
19675 F:      drivers/tty/serial/8250/8250_lpss.c
19676
19677 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19678 M:      Hoan Tran <hoan@os.amperecomputing.com>
19679 M:      Serge Semin <fancer.lancer@gmail.com>
19680 L:      linux-gpio@vger.kernel.org
19681 S:      Maintained
19682 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19683 F:      drivers/gpio/gpio-dwapb.c
19684
19685 SYNOPSYS DESIGNWARE APB SSI DRIVER
19686 M:      Serge Semin <fancer.lancer@gmail.com>
19687 L:      linux-spi@vger.kernel.org
19688 S:      Supported
19689 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19690 F:      drivers/spi/spi-dw*
19691
19692 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19693 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19694 S:      Maintained
19695 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19696 F:      drivers/dma/dw-axi-dmac/
19697
19698 SYNOPSYS DESIGNWARE DMAC DRIVER
19699 M:      Viresh Kumar <vireshk@kernel.org>
19700 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19701 S:      Maintained
19702 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19703 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19704 F:      drivers/dma/dw/
19705 F:      include/dt-bindings/dma/dw-dmac.h
19706 F:      include/linux/dma/dw.h
19707 F:      include/linux/platform_data/dma-dw.h
19708
19709 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19710 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19711 L:      netdev@vger.kernel.org
19712 S:      Supported
19713 F:      drivers/net/ethernet/synopsys/
19714
19715 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19716 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19717 L:      netdev@vger.kernel.org
19718 S:      Supported
19719 F:      drivers/net/pcs/pcs-xpcs.c
19720 F:      drivers/net/pcs/pcs-xpcs.h
19721 F:      include/linux/pcs/pcs-xpcs.h
19722
19723 SYNOPSYS DESIGNWARE I2C DRIVER
19724 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19725 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19726 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19727 R:      Jan Dabros <jsd@semihalf.com>
19728 L:      linux-i2c@vger.kernel.org
19729 S:      Supported
19730 F:      drivers/i2c/busses/i2c-designware-*
19731
19732 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19733 M:      Jaehoon Chung <jh80.chung@samsung.com>
19734 L:      linux-mmc@vger.kernel.org
19735 S:      Maintained
19736 F:      drivers/mmc/host/dw_mmc*
19737
19738 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19739 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19740 S:      Supported
19741 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19742 F:      drivers/reset/reset-hsdk.c
19743 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19744
19745 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19746 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19747 M:      Manjunath M B <manjumb@synopsys.com>
19748 L:      linux-mmc@vger.kernel.org
19749 S:      Maintained
19750 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19751
19752 SYSTEM CONFIGURATION (SYSCON)
19753 M:      Lee Jones <lee@kernel.org>
19754 M:      Arnd Bergmann <arnd@arndb.de>
19755 S:      Supported
19756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19757 F:      drivers/mfd/syscon.c
19758
19759 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19760 M:      Sudeep Holla <sudeep.holla@arm.com>
19761 R:      Cristian Marussi <cristian.marussi@arm.com>
19762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19763 S:      Maintained
19764 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19765 F:      drivers/clk/clk-sc[mp]i.c
19766 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19767 F:      drivers/firmware/arm_scmi/
19768 F:      drivers/firmware/arm_scpi.c
19769 F:      drivers/regulator/scmi-regulator.c
19770 F:      drivers/reset/reset-scmi.c
19771 F:      include/linux/sc[mp]i_protocol.h
19772 F:      include/trace/events/scmi.h
19773 F:      include/uapi/linux/virtio_scmi.h
19774
19775 SYSTEM RESET/SHUTDOWN DRIVERS
19776 M:      Sebastian Reichel <sre@kernel.org>
19777 L:      linux-pm@vger.kernel.org
19778 S:      Maintained
19779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19780 F:      Documentation/devicetree/bindings/power/reset/
19781 F:      drivers/power/reset/
19782
19783 SYSTEM TRACE MODULE CLASS
19784 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19785 S:      Maintained
19786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19787 F:      Documentation/trace/stm.rst
19788 F:      drivers/hwtracing/stm/
19789 F:      include/linux/stm.h
19790 F:      include/uapi/linux/stm.h
19791
19792 SYSTEM76 ACPI DRIVER
19793 M:      Jeremy Soller <jeremy@system76.com>
19794 M:      System76 Product Development <productdev@system76.com>
19795 L:      platform-driver-x86@vger.kernel.org
19796 S:      Maintained
19797 F:      drivers/platform/x86/system76_acpi.c
19798
19799 SYSV FILESYSTEM
19800 M:      Christoph Hellwig <hch@infradead.org>
19801 S:      Maintained
19802 F:      Documentation/filesystems/sysv-fs.rst
19803 F:      fs/sysv/
19804 F:      include/linux/sysv_fs.h
19805
19806 TASKSTATS STATISTICS INTERFACE
19807 M:      Balbir Singh <bsingharora@gmail.com>
19808 S:      Maintained
19809 F:      Documentation/accounting/taskstats*
19810 F:      include/linux/taskstats*
19811 F:      kernel/taskstats.c
19812
19813 TC subsystem
19814 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19815 M:      Cong Wang <xiyou.wangcong@gmail.com>
19816 M:      Jiri Pirko <jiri@resnulli.us>
19817 L:      netdev@vger.kernel.org
19818 S:      Maintained
19819 F:      include/net/pkt_cls.h
19820 F:      include/net/pkt_sched.h
19821 F:      include/net/tc_act/
19822 F:      include/uapi/linux/pkt_cls.h
19823 F:      include/uapi/linux/pkt_sched.h
19824 F:      include/uapi/linux/tc_act/
19825 F:      include/uapi/linux/tc_ematch/
19826 F:      net/sched/
19827 F:      tools/testing/selftests/tc-testing
19828
19829 TC90522 MEDIA DRIVER
19830 M:      Akihiro Tsukada <tskd08@gmail.com>
19831 L:      linux-media@vger.kernel.org
19832 S:      Odd Fixes
19833 F:      drivers/media/dvb-frontends/tc90522*
19834
19835 TCP LOW PRIORITY MODULE
19836 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19837 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19838 S:      Maintained
19839 W:      http://tcp-lp-mod.sourceforge.net/
19840 F:      net/ipv4/tcp_lp.c
19841
19842 TDA10071 MEDIA DRIVER
19843 M:      Antti Palosaari <crope@iki.fi>
19844 L:      linux-media@vger.kernel.org
19845 S:      Maintained
19846 W:      https://linuxtv.org
19847 W:      http://palosaari.fi/linux/
19848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19849 T:      git git://linuxtv.org/anttip/media_tree.git
19850 F:      drivers/media/dvb-frontends/tda10071*
19851
19852 TDA18212 MEDIA DRIVER
19853 M:      Antti Palosaari <crope@iki.fi>
19854 L:      linux-media@vger.kernel.org
19855 S:      Maintained
19856 W:      https://linuxtv.org
19857 W:      http://palosaari.fi/linux/
19858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19859 T:      git git://linuxtv.org/anttip/media_tree.git
19860 F:      drivers/media/tuners/tda18212*
19861
19862 TDA18218 MEDIA DRIVER
19863 M:      Antti Palosaari <crope@iki.fi>
19864 L:      linux-media@vger.kernel.org
19865 S:      Maintained
19866 W:      https://linuxtv.org
19867 W:      http://palosaari.fi/linux/
19868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19869 T:      git git://linuxtv.org/anttip/media_tree.git
19870 F:      drivers/media/tuners/tda18218*
19871
19872 TDA18250 MEDIA DRIVER
19873 M:      Olli Salonen <olli.salonen@iki.fi>
19874 L:      linux-media@vger.kernel.org
19875 S:      Maintained
19876 W:      https://linuxtv.org
19877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19878 T:      git git://linuxtv.org/media_tree.git
19879 F:      drivers/media/tuners/tda18250*
19880
19881 TDA18271 MEDIA DRIVER
19882 M:      Michael Krufky <mkrufky@linuxtv.org>
19883 L:      linux-media@vger.kernel.org
19884 S:      Maintained
19885 W:      https://linuxtv.org
19886 W:      http://github.com/mkrufky
19887 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19888 T:      git git://linuxtv.org/mkrufky/tuners.git
19889 F:      drivers/media/tuners/tda18271*
19890
19891 TDA1997x MEDIA DRIVER
19892 M:      Tim Harvey <tharvey@gateworks.com>
19893 L:      linux-media@vger.kernel.org
19894 S:      Maintained
19895 W:      https://linuxtv.org
19896 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19897 F:      drivers/media/i2c/tda1997x.*
19898
19899 TDA827x MEDIA DRIVER
19900 M:      Michael Krufky <mkrufky@linuxtv.org>
19901 L:      linux-media@vger.kernel.org
19902 S:      Maintained
19903 W:      https://linuxtv.org
19904 W:      http://github.com/mkrufky
19905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19906 T:      git git://linuxtv.org/mkrufky/tuners.git
19907 F:      drivers/media/tuners/tda8290.*
19908
19909 TDA8290 MEDIA DRIVER
19910 M:      Michael Krufky <mkrufky@linuxtv.org>
19911 L:      linux-media@vger.kernel.org
19912 S:      Maintained
19913 W:      https://linuxtv.org
19914 W:      http://github.com/mkrufky
19915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19916 T:      git git://linuxtv.org/mkrufky/tuners.git
19917 F:      drivers/media/tuners/tda8290.*
19918
19919 TDA9840 MEDIA DRIVER
19920 M:      Hans Verkuil <hverkuil@xs4all.nl>
19921 L:      linux-media@vger.kernel.org
19922 S:      Maintained
19923 W:      https://linuxtv.org
19924 T:      git git://linuxtv.org/media_tree.git
19925 F:      drivers/media/i2c/tda9840*
19926
19927 TEA5761 TUNER DRIVER
19928 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19929 L:      linux-media@vger.kernel.org
19930 S:      Odd fixes
19931 W:      https://linuxtv.org
19932 T:      git git://linuxtv.org/media_tree.git
19933 F:      drivers/media/tuners/tea5761.*
19934
19935 TEA5767 TUNER DRIVER
19936 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19937 L:      linux-media@vger.kernel.org
19938 S:      Maintained
19939 W:      https://linuxtv.org
19940 T:      git git://linuxtv.org/media_tree.git
19941 F:      drivers/media/tuners/tea5767.*
19942
19943 TEA6415C MEDIA DRIVER
19944 M:      Hans Verkuil <hverkuil@xs4all.nl>
19945 L:      linux-media@vger.kernel.org
19946 S:      Maintained
19947 W:      https://linuxtv.org
19948 T:      git git://linuxtv.org/media_tree.git
19949 F:      drivers/media/i2c/tea6415c*
19950
19951 TEA6420 MEDIA DRIVER
19952 M:      Hans Verkuil <hverkuil@xs4all.nl>
19953 L:      linux-media@vger.kernel.org
19954 S:      Maintained
19955 W:      https://linuxtv.org
19956 T:      git git://linuxtv.org/media_tree.git
19957 F:      drivers/media/i2c/tea6420*
19958
19959 TEAM DRIVER
19960 M:      Jiri Pirko <jiri@resnulli.us>
19961 L:      netdev@vger.kernel.org
19962 S:      Supported
19963 F:      drivers/net/team/
19964 F:      include/linux/if_team.h
19965 F:      include/uapi/linux/if_team.h
19966
19967 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19968 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19969 S:      Maintained
19970 F:      arch/x86/platform/ts5500/
19971
19972 TECHNOTREND USB IR RECEIVER
19973 M:      Sean Young <sean@mess.org>
19974 L:      linux-media@vger.kernel.org
19975 S:      Maintained
19976 F:      drivers/media/rc/ttusbir.c
19977
19978 TECHWELL TW9910 VIDEO DECODER
19979 L:      linux-media@vger.kernel.org
19980 S:      Orphan
19981 F:      drivers/media/i2c/tw9910.c
19982 F:      include/media/i2c/tw9910.h
19983
19984 TEE SUBSYSTEM
19985 M:      Jens Wiklander <jens.wiklander@linaro.org>
19986 R:      Sumit Garg <sumit.garg@linaro.org>
19987 L:      op-tee@lists.trustedfirmware.org
19988 S:      Maintained
19989 F:      Documentation/staging/tee.rst
19990 F:      drivers/tee/
19991 F:      include/linux/tee_drv.h
19992 F:      include/uapi/linux/tee.h
19993
19994 TEGRA ARCHITECTURE SUPPORT
19995 M:      Thierry Reding <thierry.reding@gmail.com>
19996 M:      Jonathan Hunter <jonathanh@nvidia.com>
19997 L:      linux-tegra@vger.kernel.org
19998 S:      Supported
19999 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20001 N:      [^a-z]tegra
20002
20003 TEGRA CLOCK DRIVER
20004 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20005 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20006 S:      Supported
20007 F:      drivers/clk/tegra/
20008
20009 TEGRA DMA DRIVERS
20010 M:      Laxman Dewangan <ldewangan@nvidia.com>
20011 M:      Jon Hunter <jonathanh@nvidia.com>
20012 S:      Supported
20013 F:      drivers/dma/tegra*
20014
20015 TEGRA I2C DRIVER
20016 M:      Laxman Dewangan <ldewangan@nvidia.com>
20017 R:      Dmitry Osipenko <digetx@gmail.com>
20018 S:      Supported
20019 F:      drivers/i2c/busses/i2c-tegra.c
20020
20021 TEGRA IOMMU DRIVERS
20022 M:      Thierry Reding <thierry.reding@gmail.com>
20023 R:      Krishna Reddy <vdumpa@nvidia.com>
20024 L:      linux-tegra@vger.kernel.org
20025 S:      Supported
20026 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20027 F:      drivers/iommu/tegra*
20028
20029 TEGRA KBC DRIVER
20030 M:      Laxman Dewangan <ldewangan@nvidia.com>
20031 S:      Supported
20032 F:      drivers/input/keyboard/tegra-kbc.c
20033
20034 TEGRA NAND DRIVER
20035 M:      Stefan Agner <stefan@agner.ch>
20036 M:      Lucas Stach <dev@lynxeye.de>
20037 S:      Maintained
20038 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20039 F:      drivers/mtd/nand/raw/tegra_nand.c
20040
20041 TEGRA PWM DRIVER
20042 M:      Thierry Reding <thierry.reding@gmail.com>
20043 S:      Supported
20044 F:      drivers/pwm/pwm-tegra.c
20045
20046 TEGRA SERIAL DRIVER
20047 M:      Laxman Dewangan <ldewangan@nvidia.com>
20048 S:      Supported
20049 F:      drivers/tty/serial/serial-tegra.c
20050
20051 TEGRA SPI DRIVER
20052 M:      Laxman Dewangan <ldewangan@nvidia.com>
20053 S:      Supported
20054 F:      drivers/spi/spi-tegra*
20055
20056 TEGRA QUAD SPI DRIVER
20057 M:      Thierry Reding <thierry.reding@gmail.com>
20058 M:      Jonathan Hunter <jonathanh@nvidia.com>
20059 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20060 L:      linux-tegra@vger.kernel.org
20061 S:      Maintained
20062 F:      drivers/spi/spi-tegra210-quad.c
20063
20064 TEGRA VIDEO DRIVER
20065 M:      Thierry Reding <thierry.reding@gmail.com>
20066 M:      Jonathan Hunter <jonathanh@nvidia.com>
20067 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20068 L:      linux-media@vger.kernel.org
20069 L:      linux-tegra@vger.kernel.org
20070 S:      Maintained
20071 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20072 F:      drivers/staging/media/tegra-video/
20073
20074 TEGRA XUSB PADCTL DRIVER
20075 M:      JC Kuo <jckuo@nvidia.com>
20076 S:      Supported
20077 F:      drivers/phy/tegra/xusb*
20078
20079 TEHUTI ETHERNET DRIVER
20080 M:      Andy Gospodarek <andy@greyhouse.net>
20081 L:      netdev@vger.kernel.org
20082 S:      Supported
20083 F:      drivers/net/ethernet/tehuti/*
20084
20085 TELECOM CLOCK DRIVER FOR MCPL0010
20086 M:      Mark Gross <markgross@kernel.org>
20087 S:      Supported
20088 F:      drivers/char/tlclk.c
20089
20090 TEMPO SEMICONDUCTOR DRIVERS
20091 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20092 S:      Maintained
20093 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20094 F:      sound/soc/codecs/tscs*.c
20095 F:      sound/soc/codecs/tscs*.h
20096
20097 TENSILICA XTENSA PORT (xtensa)
20098 M:      Chris Zankel <chris@zankel.net>
20099 M:      Max Filippov <jcmvbkbc@gmail.com>
20100 L:      linux-xtensa@linux-xtensa.org
20101 S:      Maintained
20102 T:      git git://github.com/czankel/xtensa-linux.git
20103 F:      arch/xtensa/
20104 F:      drivers/irqchip/irq-xtensa-*
20105
20106 TEXAS INSTRUMENTS ASoC DRIVERS
20107 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20108 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20109 S:      Maintained
20110 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20111 F:      sound/soc/ti/
20112
20113 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20114 M:      Ricardo Ribalda <ribalda@kernel.org>
20115 L:      linux-iio@vger.kernel.org
20116 S:      Supported
20117 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20118 F:      drivers/iio/dac/ti-dac7612.c
20119
20120 TEXAS INSTRUMENTS DMA DRIVERS
20121 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20122 L:      dmaengine@vger.kernel.org
20123 S:      Maintained
20124 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20125 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20126 F:      Documentation/devicetree/bindings/dma/ti/
20127 F:      drivers/dma/ti/
20128 X:      drivers/dma/ti/cppi41.c
20129 F:      include/linux/dma/k3-udma-glue.h
20130 F:      include/linux/dma/ti-cppi5.h
20131 F:      include/linux/dma/k3-psil.h
20132
20133 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20134 M:      Nishanth Menon <nm@ti.com>
20135 M:      Tero Kristo <kristo@kernel.org>
20136 M:      Santosh Shilimkar <ssantosh@kernel.org>
20137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20138 S:      Maintained
20139 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20140 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20141 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20142 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20143 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20144 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20145 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20146 F:      drivers/clk/keystone/sci-clk.c
20147 F:      drivers/firmware/ti_sci*
20148 F:      drivers/irqchip/irq-ti-sci-inta.c
20149 F:      drivers/irqchip/irq-ti-sci-intr.c
20150 F:      drivers/reset/reset-ti-sci.c
20151 F:      drivers/soc/ti/ti_sci_inta_msi.c
20152 F:      drivers/soc/ti/ti_sci_pm_domains.c
20153 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20154 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20155 F:      include/linux/soc/ti/ti_sci_protocol.h
20156
20157 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20158 M:      Robert Marko <robert.marko@sartura.hr>
20159 M:      Luka Perkov <luka.perkov@sartura.hr>
20160 L:      linux-hwmon@vger.kernel.org
20161 S:      Maintained
20162 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20163 F:      Documentation/hwmon/tps23861.rst
20164 F:      drivers/hwmon/tps23861.c
20165
20166 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20167 M:      Puranjay Mohan <puranjay12@gmail.com>
20168 L:      linux-iio@vger.kernel.org
20169 S:      Supported
20170 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20171 F:      drivers/iio/temperature/tmp117.c
20172
20173 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20174 M:      Hans Verkuil <hverkuil@xs4all.nl>
20175 L:      linux-media@vger.kernel.org
20176 S:      Maintained
20177 W:      https://linuxtv.org
20178 T:      git git://linuxtv.org/media_tree.git
20179 F:      drivers/media/radio/radio-raremono.c
20180
20181 THERMAL
20182 M:      Rafael J. Wysocki <rafael@kernel.org>
20183 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20184 R:      Amit Kucheria <amitk@kernel.org>
20185 R:      Zhang Rui <rui.zhang@intel.com>
20186 L:      linux-pm@vger.kernel.org
20187 S:      Supported
20188 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20190 F:      Documentation/ABI/testing/sysfs-class-thermal
20191 F:      Documentation/devicetree/bindings/thermal/
20192 F:      Documentation/driver-api/thermal/
20193 F:      drivers/thermal/
20194 F:      include/dt-bindings/thermal/
20195 F:      include/linux/cpu_cooling.h
20196 F:      include/linux/thermal.h
20197 F:      include/uapi/linux/thermal.h
20198 F:      tools/lib/thermal/
20199 F:      tools/thermal/
20200
20201 THERMAL DRIVER FOR AMLOGIC SOCS
20202 M:      Guillaume La Roque <glaroque@baylibre.com>
20203 L:      linux-pm@vger.kernel.org
20204 L:      linux-amlogic@lists.infradead.org
20205 S:      Supported
20206 W:      http://linux-meson.com/
20207 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20208 F:      drivers/thermal/amlogic_thermal.c
20209
20210 THERMAL/CPU_COOLING
20211 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20212 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20213 M:      Viresh Kumar <viresh.kumar@linaro.org>
20214 R:      Lukasz Luba <lukasz.luba@arm.com>
20215 L:      linux-pm@vger.kernel.org
20216 S:      Supported
20217 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20218 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20219 F:      drivers/thermal/cpufreq_cooling.c
20220 F:      drivers/thermal/cpuidle_cooling.c
20221 F:      include/linux/cpu_cooling.h
20222
20223 THERMAL/POWER_ALLOCATOR
20224 M:      Lukasz Luba <lukasz.luba@arm.com>
20225 L:      linux-pm@vger.kernel.org
20226 S:      Maintained
20227 F:      Documentation/driver-api/thermal/power_allocator.rst
20228 F:      drivers/thermal/gov_power_allocator.c
20229 F:      include/trace/events/thermal_power_allocator.h
20230
20231 THINKPAD ACPI EXTRAS DRIVER
20232 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20233 L:      ibm-acpi-devel@lists.sourceforge.net
20234 L:      platform-driver-x86@vger.kernel.org
20235 S:      Maintained
20236 W:      http://ibm-acpi.sourceforge.net
20237 W:      http://thinkwiki.org/wiki/Ibm-acpi
20238 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20239 F:      drivers/platform/x86/thinkpad_acpi.c
20240
20241 THINKPAD LMI DRIVER
20242 M:      Mark Pearson <markpearson@lenovo.com>
20243 L:      platform-driver-x86@vger.kernel.org
20244 S:      Maintained
20245 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20246 F:      drivers/platform/x86/think-lmi.?
20247
20248 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20249 M:      Isaac Hazan <isaac.hazan@intel.com>
20250 L:      linux-usb@vger.kernel.org
20251 S:      Maintained
20252 F:      drivers/thunderbolt/dma_test.c
20253
20254 THUNDERBOLT DRIVER
20255 M:      Andreas Noever <andreas.noever@gmail.com>
20256 M:      Michael Jamet <michael.jamet@intel.com>
20257 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20258 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20259 L:      linux-usb@vger.kernel.org
20260 S:      Maintained
20261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20262 F:      Documentation/admin-guide/thunderbolt.rst
20263 F:      drivers/thunderbolt/
20264 F:      include/linux/thunderbolt.h
20265
20266 THUNDERBOLT NETWORK DRIVER
20267 M:      Michael Jamet <michael.jamet@intel.com>
20268 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20269 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20270 L:      netdev@vger.kernel.org
20271 S:      Maintained
20272 F:      drivers/net/thunderbolt.c
20273
20274 THUNDERX GPIO DRIVER
20275 M:      Robert Richter <rric@kernel.org>
20276 S:      Odd Fixes
20277 F:      drivers/gpio/gpio-thunderx.c
20278
20279 TI AM437X VPFE DRIVER
20280 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20281 L:      linux-media@vger.kernel.org
20282 S:      Maintained
20283 W:      https://linuxtv.org
20284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20285 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20286 F:      drivers/media/platform/ti/am437x/
20287
20288 TI BANDGAP AND THERMAL DRIVER
20289 M:      Eduardo Valentin <edubezval@gmail.com>
20290 M:      Keerthy <j-keerthy@ti.com>
20291 L:      linux-pm@vger.kernel.org
20292 L:      linux-omap@vger.kernel.org
20293 S:      Maintained
20294 F:      drivers/thermal/ti-soc-thermal/
20295
20296 TI BQ27XXX POWER SUPPLY DRIVER
20297 F:      drivers/power/supply/bq27xxx_battery.c
20298 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20299 F:      include/linux/power/bq27xxx_battery.h
20300
20301 TI CDCE706 CLOCK DRIVER
20302 M:      Max Filippov <jcmvbkbc@gmail.com>
20303 S:      Maintained
20304 F:      drivers/clk/clk-cdce706.c
20305
20306 TI CLOCK DRIVER
20307 M:      Tero Kristo <kristo@kernel.org>
20308 L:      linux-omap@vger.kernel.org
20309 S:      Odd Fixes
20310 F:      drivers/clk/ti/
20311 F:      include/linux/clk/ti.h
20312
20313 TI DAVINCI MACHINE SUPPORT
20314 M:      Sekhar Nori <nsekhar@ti.com>
20315 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20317 S:      Supported
20318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20319 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20320 F:      arch/arm/boot/dts/da850*
20321 F:      arch/arm/mach-davinci/
20322 F:      drivers/i2c/busses/i2c-davinci.c
20323
20324 TI DAVINCI SERIES CLOCK DRIVER
20325 M:      David Lechner <david@lechnology.com>
20326 R:      Sekhar Nori <nsekhar@ti.com>
20327 S:      Maintained
20328 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20329 F:      drivers/clk/davinci/
20330
20331 TI DAVINCI SERIES GPIO DRIVER
20332 M:      Keerthy <j-keerthy@ti.com>
20333 L:      linux-gpio@vger.kernel.org
20334 S:      Maintained
20335 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20336 F:      drivers/gpio/gpio-davinci.c
20337
20338 TI DAVINCI SERIES MEDIA DRIVER
20339 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20340 L:      linux-media@vger.kernel.org
20341 S:      Maintained
20342 W:      https://linuxtv.org
20343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20344 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20345 F:      drivers/media/platform/ti/davinci/
20346 F:      include/media/davinci/
20347
20348 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20349 R:      David Lechner <david@lechnology.com>
20350 L:      linux-iio@vger.kernel.org
20351 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20352 F:      drivers/counter/ti-eqep.c
20353
20354 TI ETHERNET SWITCH DRIVER (CPSW)
20355 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20356 L:      linux-omap@vger.kernel.org
20357 L:      netdev@vger.kernel.org
20358 S:      Maintained
20359 F:      drivers/net/ethernet/ti/cpsw*
20360 F:      drivers/net/ethernet/ti/davinci*
20361
20362 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20363 M:      Alex Dubov <oakad@yahoo.com>
20364 S:      Maintained
20365 W:      http://tifmxx.berlios.de/
20366 F:      drivers/memstick/host/tifm_ms.c
20367 F:      drivers/misc/tifm*
20368 F:      drivers/mmc/host/tifm_sd.c
20369 F:      include/linux/tifm.h
20370
20371 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20372 M:      Nishanth Menon <nm@ti.com>
20373 M:      Santosh Shilimkar <ssantosh@kernel.org>
20374 L:      linux-kernel@vger.kernel.org
20375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20376 S:      Maintained
20377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20378 F:      drivers/soc/ti/*
20379
20380 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20381 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20382 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20383 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20384 S:      Maintained
20385 F:      sound/soc/codecs/isabelle*
20386 F:      sound/soc/codecs/lm49453*
20387
20388 TI PCM3060 ASoC CODEC DRIVER
20389 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20390 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20391 S:      Maintained
20392 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20393 F:      sound/soc/codecs/pcm3060*
20394
20395 TI TAS571X FAMILY ASoC CODEC DRIVER
20396 M:      Kevin Cernekee <cernekee@chromium.org>
20397 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20398 S:      Odd Fixes
20399 F:      sound/soc/codecs/tas571x*
20400
20401 TI TRF7970A NFC DRIVER
20402 M:      Mark Greer <mgreer@animalcreek.com>
20403 L:      linux-wireless@vger.kernel.org
20404 L:      linux-nfc@lists.01.org (subscribers-only)
20405 S:      Supported
20406 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20407 F:      drivers/nfc/trf7970a.c
20408
20409 TI TSC2046 ADC DRIVER
20410 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20411 R:      kernel@pengutronix.de
20412 L:      linux-iio@vger.kernel.org
20413 S:      Maintained
20414 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20415 F:      drivers/iio/adc/ti-tsc2046.c
20416
20417 TI TWL4030 SERIES SOC CODEC DRIVER
20418 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20420 S:      Maintained
20421 F:      sound/soc/codecs/twl4030*
20422
20423 TI VPE/CAL DRIVERS
20424 M:      Benoit Parrot <bparrot@ti.com>
20425 L:      linux-media@vger.kernel.org
20426 S:      Maintained
20427 W:      http://linuxtv.org/
20428 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20429 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20430 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20431 F:      drivers/media/platform/ti/cal/
20432 F:      drivers/media/platform/ti/vpe/
20433
20434 TI WILINK WIRELESS DRIVERS
20435 L:      linux-wireless@vger.kernel.org
20436 S:      Orphan
20437 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20438 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20440 F:      drivers/net/wireless/ti/
20441 F:      include/linux/wl12xx.h
20442
20443 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20444 M:      John Stultz <jstultz@google.com>
20445 M:      Thomas Gleixner <tglx@linutronix.de>
20446 R:      Stephen Boyd <sboyd@kernel.org>
20447 L:      linux-kernel@vger.kernel.org
20448 S:      Supported
20449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20450 F:      include/linux/clocksource.h
20451 F:      include/linux/time.h
20452 F:      include/linux/timex.h
20453 F:      include/uapi/linux/time.h
20454 F:      include/uapi/linux/timex.h
20455 F:      kernel/time/alarmtimer.c
20456 F:      kernel/time/clocksource.c
20457 F:      kernel/time/ntp.c
20458 F:      kernel/time/time*.c
20459 F:      tools/testing/selftests/timers/
20460
20461 TIPC NETWORK LAYER
20462 M:      Jon Maloy <jmaloy@redhat.com>
20463 M:      Ying Xue <ying.xue@windriver.com>
20464 L:      netdev@vger.kernel.org (core kernel code)
20465 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20466 S:      Maintained
20467 W:      http://tipc.sourceforge.net/
20468 F:      include/uapi/linux/tipc*.h
20469 F:      net/tipc/
20470
20471 TLAN NETWORK DRIVER
20472 M:      Samuel Chessman <chessman@tux.org>
20473 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20474 S:      Maintained
20475 W:      http://sourceforge.net/projects/tlan/
20476 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20477 F:      drivers/net/ethernet/ti/tlan.*
20478
20479 TM6000 VIDEO4LINUX DRIVER
20480 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20481 L:      linux-media@vger.kernel.org
20482 S:      Odd fixes
20483 W:      https://linuxtv.org
20484 T:      git git://linuxtv.org/media_tree.git
20485 F:      Documentation/admin-guide/media/tm6000*
20486 F:      drivers/media/usb/tm6000/
20487
20488 TMIO/SDHI MMC DRIVER
20489 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20490 L:      linux-mmc@vger.kernel.org
20491 L:      linux-renesas-soc@vger.kernel.org
20492 S:      Supported
20493 F:      drivers/mmc/host/renesas_sdhi*
20494 F:      drivers/mmc/host/tmio_mmc*
20495 F:      include/linux/mfd/tmio.h
20496
20497 TMP401 HARDWARE MONITOR DRIVER
20498 M:      Guenter Roeck <linux@roeck-us.net>
20499 L:      linux-hwmon@vger.kernel.org
20500 S:      Maintained
20501 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20502 F:      Documentation/hwmon/tmp401.rst
20503 F:      drivers/hwmon/tmp401.c
20504
20505 TMP464 HARDWARE MONITOR DRIVER
20506 M:      Agathe Porte <agathe.porte@nokia.com>
20507 M:      Guenter Roeck <linux@roeck-us.net>
20508 L:      linux-hwmon@vger.kernel.org
20509 S:      Maintained
20510 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20511 F:      Documentation/hwmon/tmp464.rst
20512 F:      drivers/hwmon/tmp464.c
20513
20514 TMP513 HARDWARE MONITOR DRIVER
20515 M:      Eric Tremblay <etremblay@distech-controls.com>
20516 L:      linux-hwmon@vger.kernel.org
20517 S:      Maintained
20518 F:      Documentation/hwmon/tmp513.rst
20519 F:      drivers/hwmon/tmp513.c
20520
20521 TMPFS (SHMEM FILESYSTEM)
20522 M:      Hugh Dickins <hughd@google.com>
20523 L:      linux-mm@kvack.org
20524 S:      Maintained
20525 F:      include/linux/shmem_fs.h
20526 F:      mm/shmem.c
20527
20528 TOMOYO SECURITY MODULE
20529 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20530 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20531 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20532 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20533 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20534 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20535 S:      Maintained
20536 W:      https://tomoyo.osdn.jp/
20537 F:      security/tomoyo/
20538
20539 TOPSTAR LAPTOP EXTRAS DRIVER
20540 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20541 L:      platform-driver-x86@vger.kernel.org
20542 S:      Maintained
20543 F:      drivers/platform/x86/topstar-laptop.c
20544
20545 TORTURE-TEST MODULES
20546 M:      Davidlohr Bueso <dave@stgolabs.net>
20547 M:      "Paul E. McKenney" <paulmck@kernel.org>
20548 M:      Josh Triplett <josh@joshtriplett.org>
20549 L:      linux-kernel@vger.kernel.org
20550 S:      Supported
20551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20552 F:      Documentation/RCU/torture.rst
20553 F:      kernel/locking/locktorture.c
20554 F:      kernel/rcu/rcuscale.c
20555 F:      kernel/rcu/rcutorture.c
20556 F:      kernel/rcu/refscale.c
20557 F:      kernel/torture.c
20558
20559 TOSHIBA ACPI EXTRAS DRIVER
20560 M:      Azael Avalos <coproscefalo@gmail.com>
20561 L:      platform-driver-x86@vger.kernel.org
20562 S:      Maintained
20563 F:      drivers/platform/x86/toshiba_acpi.c
20564
20565 TOSHIBA BLUETOOTH DRIVER
20566 M:      Azael Avalos <coproscefalo@gmail.com>
20567 L:      platform-driver-x86@vger.kernel.org
20568 S:      Maintained
20569 F:      drivers/platform/x86/toshiba_bluetooth.c
20570
20571 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20572 M:      Azael Avalos <coproscefalo@gmail.com>
20573 L:      platform-driver-x86@vger.kernel.org
20574 S:      Maintained
20575 F:      drivers/platform/x86/toshiba_haps.c
20576
20577 TOSHIBA SMM DRIVER
20578 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20579 S:      Maintained
20580 W:      http://www.buzzard.org.uk/toshiba/
20581 F:      drivers/char/toshiba.c
20582 F:      include/linux/toshiba.h
20583 F:      include/uapi/linux/toshiba.h
20584
20585 TOSHIBA TC358743 DRIVER
20586 M:      Mats Randgaard <matrandg@cisco.com>
20587 L:      linux-media@vger.kernel.org
20588 S:      Maintained
20589 F:      drivers/media/i2c/tc358743*
20590 F:      include/media/i2c/tc358743.h
20591
20592 TOSHIBA WMI HOTKEYS DRIVER
20593 M:      Azael Avalos <coproscefalo@gmail.com>
20594 L:      platform-driver-x86@vger.kernel.org
20595 S:      Maintained
20596 F:      drivers/platform/x86/toshiba-wmi.c
20597
20598 TPM DEVICE DRIVER
20599 M:      Peter Huewe <peterhuewe@gmx.de>
20600 M:      Jarkko Sakkinen <jarkko@kernel.org>
20601 R:      Jason Gunthorpe <jgg@ziepe.ca>
20602 L:      linux-integrity@vger.kernel.org
20603 S:      Maintained
20604 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20605 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20607 F:      drivers/char/tpm/
20608
20609 TRACING
20610 M:      Steven Rostedt <rostedt@goodmis.org>
20611 M:      Ingo Molnar <mingo@redhat.com>
20612 S:      Maintained
20613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20614 F:      Documentation/trace/ftrace.rst
20615 F:      arch/*/*/*/*ftrace*
20616 F:      arch/*/*/*ftrace*
20617 F:      fs/tracefs/
20618 F:      include/*/ftrace.h
20619 F:      include/linux/trace*.h
20620 F:      include/trace/
20621 F:      kernel/trace/
20622 F:      tools/testing/selftests/ftrace/
20623
20624 TRACING MMIO ACCESSES (MMIOTRACE)
20625 M:      Steven Rostedt <rostedt@goodmis.org>
20626 M:      Ingo Molnar <mingo@kernel.org>
20627 R:      Karol Herbst <karolherbst@gmail.com>
20628 R:      Pekka Paalanen <ppaalanen@gmail.com>
20629 L:      linux-kernel@vger.kernel.org
20630 L:      nouveau@lists.freedesktop.org
20631 S:      Maintained
20632 F:      arch/x86/mm/kmmio.c
20633 F:      arch/x86/mm/mmio-mod.c
20634 F:      arch/x86/mm/testmmiotrace.c
20635 F:      include/linux/mmiotrace.h
20636 F:      kernel/trace/trace_mmiotrace.c
20637
20638 TRACING OS NOISE / LATENCY TRACERS
20639 M:      Steven Rostedt <rostedt@goodmis.org>
20640 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20641 S:      Maintained
20642 F:      kernel/trace/trace_osnoise.c
20643 F:      include/trace/events/osnoise.h
20644 F:      kernel/trace/trace_hwlat.c
20645 F:      kernel/trace/trace_irqsoff.c
20646 F:      kernel/trace/trace_sched_wakeup.c
20647 F:      Documentation/trace/osnoise-tracer.rst
20648 F:      Documentation/trace/timerlat-tracer.rst
20649 F:      Documentation/trace/hwlat_detector.rst
20650 F:      arch/*/kernel/trace.c
20651
20652 Real-time Linux Analysis (RTLA) tools
20653 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20654 M:      Steven Rostedt <rostedt@goodmis.org>
20655 L:      linux-trace-devel@vger.kernel.org
20656 S:      Maintained
20657 F:      Documentation/tools/rtla/
20658 F:      tools/tracing/rtla/
20659
20660 TRADITIONAL CHINESE DOCUMENTATION
20661 M:      Hu Haowen <src.res@email.cn>
20662 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
20663 S:      Maintained
20664 W:      https://github.com/srcres258/linux-doc
20665 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20666 F:      Documentation/translations/zh_TW/
20667
20668 TTY LAYER
20669 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20670 M:      Jiri Slaby <jirislaby@kernel.org>
20671 S:      Supported
20672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20673 F:      Documentation/driver-api/serial/
20674 F:      drivers/tty/
20675 F:      drivers/tty/serial/serial_core.c
20676 F:      include/linux/selection.h
20677 F:      include/linux/serial.h
20678 F:      include/linux/serial_core.h
20679 F:      include/linux/sysrq.h
20680 F:      include/linux/tty*.h
20681 F:      include/linux/vt.h
20682 F:      include/linux/vt_*.h
20683 F:      include/uapi/linux/serial.h
20684 F:      include/uapi/linux/serial_core.h
20685 F:      include/uapi/linux/tty.h
20686
20687 TUA9001 MEDIA DRIVER
20688 M:      Antti Palosaari <crope@iki.fi>
20689 L:      linux-media@vger.kernel.org
20690 S:      Maintained
20691 W:      https://linuxtv.org
20692 W:      http://palosaari.fi/linux/
20693 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20694 T:      git git://linuxtv.org/anttip/media_tree.git
20695 F:      drivers/media/tuners/tua9001*
20696
20697 TULIP NETWORK DRIVERS
20698 L:      netdev@vger.kernel.org
20699 L:      linux-parisc@vger.kernel.org
20700 S:      Orphan
20701 F:      drivers/net/ethernet/dec/tulip/
20702
20703 TUN/TAP driver
20704 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20705 S:      Maintained
20706 W:      http://vtun.sourceforge.net/tun
20707 F:      Documentation/networking/tuntap.rst
20708 F:      arch/um/os-Linux/drivers/
20709
20710 TURBOCHANNEL SUBSYSTEM
20711 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20712 M:      Ralf Baechle <ralf@linux-mips.org>
20713 L:      linux-mips@vger.kernel.org
20714 S:      Maintained
20715 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20716 F:      drivers/tc/
20717 F:      include/linux/tc.h
20718
20719 TURBOSTAT UTILITY
20720 M:      "Len Brown" <lenb@kernel.org>
20721 L:      linux-pm@vger.kernel.org
20722 S:      Supported
20723 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20724 B:      https://bugzilla.kernel.org
20725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20726 F:      tools/power/x86/turbostat/
20727
20728 TW5864 VIDEO4LINUX DRIVER
20729 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20730 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20731 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20732 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20733 L:      linux-media@vger.kernel.org
20734 S:      Supported
20735 F:      drivers/media/pci/tw5864/
20736
20737 TW68 VIDEO4LINUX DRIVER
20738 M:      Hans Verkuil <hverkuil@xs4all.nl>
20739 L:      linux-media@vger.kernel.org
20740 S:      Odd Fixes
20741 W:      https://linuxtv.org
20742 T:      git git://linuxtv.org/media_tree.git
20743 F:      drivers/media/pci/tw68/
20744
20745 TW686X VIDEO4LINUX DRIVER
20746 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20747 L:      linux-media@vger.kernel.org
20748 S:      Maintained
20749 W:      http://linuxtv.org
20750 T:      git git://linuxtv.org/media_tree.git
20751 F:      drivers/media/pci/tw686x/
20752
20753 U-BOOT ENVIRONMENT VARIABLES
20754 M:      Rafał Miłecki <rafal@milecki.pl>
20755 S:      Maintained
20756 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20757
20758 UACCE ACCELERATOR FRAMEWORK
20759 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20760 M:      Zhou Wang <wangzhou1@hisilicon.com>
20761 L:      linux-accelerators@lists.ozlabs.org
20762 L:      linux-kernel@vger.kernel.org
20763 S:      Maintained
20764 F:      Documentation/ABI/testing/sysfs-driver-uacce
20765 F:      Documentation/misc-devices/uacce.rst
20766 F:      drivers/misc/uacce/
20767 F:      include/linux/uacce.h
20768 F:      include/uapi/misc/uacce/
20769
20770 UBI FILE SYSTEM (UBIFS)
20771 M:      Richard Weinberger <richard@nod.at>
20772 L:      linux-mtd@lists.infradead.org
20773 S:      Supported
20774 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20777 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20778 F:      Documentation/filesystems/ubifs-authentication.rst
20779 F:      Documentation/filesystems/ubifs.rst
20780 F:      fs/ubifs/
20781
20782 UBLK USERSPACE BLOCK DRIVER
20783 M:      Ming Lei <ming.lei@redhat.com>
20784 L:      linux-block@vger.kernel.org
20785 S:      Maintained
20786 F:      Documentation/block/ublk.rst
20787 F:      drivers/block/ublk_drv.c
20788 F:      include/uapi/linux/ublk_cmd.h
20789
20790 UCLINUX (M68KNOMMU AND COLDFIRE)
20791 M:      Greg Ungerer <gerg@linux-m68k.org>
20792 L:      linux-m68k@lists.linux-m68k.org
20793 L:      uclinux-dev@uclinux.org  (subscribers-only)
20794 S:      Maintained
20795 W:      http://www.linux-m68k.org/
20796 W:      http://www.uclinux.org/
20797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20798 F:      arch/m68k/*/*_no.*
20799 F:      arch/m68k/68*/
20800 F:      arch/m68k/coldfire/
20801 F:      arch/m68k/include/asm/*_no.*
20802
20803 UDF FILESYSTEM
20804 M:      Jan Kara <jack@suse.com>
20805 S:      Maintained
20806 F:      Documentation/filesystems/udf.rst
20807 F:      fs/udf/
20808
20809 UDRAW TABLET
20810 M:      Bastien Nocera <hadess@hadess.net>
20811 L:      linux-input@vger.kernel.org
20812 S:      Maintained
20813 F:      drivers/hid/hid-udraw-ps3.c
20814
20815 UFS FILESYSTEM
20816 M:      Evgeniy Dushistov <dushistov@mail.ru>
20817 S:      Maintained
20818 F:      Documentation/admin-guide/ufs.rst
20819 F:      fs/ufs/
20820
20821 UHID USERSPACE HID IO DRIVER
20822 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20823 L:      linux-input@vger.kernel.org
20824 S:      Maintained
20825 F:      drivers/hid/uhid.c
20826 F:      include/uapi/linux/uhid.h
20827
20828 ULPI BUS
20829 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20830 L:      linux-usb@vger.kernel.org
20831 S:      Maintained
20832 F:      drivers/usb/common/ulpi.c
20833 F:      include/linux/ulpi/
20834
20835 UNICODE SUBSYSTEM
20836 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20837 L:      linux-fsdevel@vger.kernel.org
20838 S:      Supported
20839 F:      fs/unicode/
20840
20841 UNIFDEF
20842 M:      Tony Finch <dot@dotat.at>
20843 S:      Maintained
20844 W:      http://dotat.at/prog/unifdef
20845 F:      scripts/unifdef.c
20846
20847 UNIFORM CDROM DRIVER
20848 M:      Phillip Potter <phil@philpotter.co.uk>
20849 S:      Maintained
20850 F:      Documentation/cdrom/
20851 F:      drivers/cdrom/cdrom.c
20852 F:      include/linux/cdrom.h
20853 F:      include/uapi/linux/cdrom.h
20854
20855 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20856 R:      Alim Akhtar <alim.akhtar@samsung.com>
20857 R:      Avri Altman <avri.altman@wdc.com>
20858 R:      Bart Van Assche <bvanassche@acm.org>
20859 L:      linux-scsi@vger.kernel.org
20860 S:      Supported
20861 F:      Documentation/devicetree/bindings/ufs/
20862 F:      Documentation/scsi/ufs.rst
20863 F:      drivers/ufs/core/
20864
20865 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20866 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20867 L:      linux-scsi@vger.kernel.org
20868 S:      Supported
20869 F:      drivers/ufs/host/*dwc*
20870
20871 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20872 M:      Stanley Chu <stanley.chu@mediatek.com>
20873 L:      linux-scsi@vger.kernel.org
20874 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20875 S:      Maintained
20876 F:      drivers/ufs/host/ufs-mediatek*
20877
20878 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
20879 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
20880 L:      linux-renesas-soc@vger.kernel.org
20881 L:      linux-scsi@vger.kernel.org
20882 S:      Maintained
20883 F:      drivers/ufs/host/ufs-renesas.c
20884
20885 UNSORTED BLOCK IMAGES (UBI)
20886 M:      Richard Weinberger <richard@nod.at>
20887 L:      linux-mtd@lists.infradead.org
20888 S:      Supported
20889 W:      http://www.linux-mtd.infradead.org/
20890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20892 F:      drivers/mtd/ubi/
20893 F:      include/linux/mtd/ubi.h
20894 F:      include/uapi/mtd/ubi-user.h
20895
20896 USB "USBNET" DRIVER FRAMEWORK
20897 M:      Oliver Neukum <oneukum@suse.com>
20898 L:      netdev@vger.kernel.org
20899 S:      Maintained
20900 W:      http://www.linux-usb.org/usbnet
20901 F:      drivers/net/usb/usbnet.c
20902 F:      include/linux/usb/usbnet.h
20903
20904 USB ACM DRIVER
20905 M:      Oliver Neukum <oneukum@suse.com>
20906 L:      linux-usb@vger.kernel.org
20907 S:      Maintained
20908 F:      Documentation/usb/acm.rst
20909 F:      drivers/usb/class/cdc-acm.*
20910
20911 USB APPLE MFI FASTCHARGE DRIVER
20912 M:      Bastien Nocera <hadess@hadess.net>
20913 L:      linux-usb@vger.kernel.org
20914 S:      Maintained
20915 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20916
20917 USB AR5523 WIRELESS DRIVER
20918 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20919 L:      linux-wireless@vger.kernel.org
20920 S:      Maintained
20921 F:      drivers/net/wireless/ath/ar5523/
20922
20923 USB ATTACHED SCSI
20924 M:      Oliver Neukum <oneukum@suse.com>
20925 L:      linux-usb@vger.kernel.org
20926 L:      linux-scsi@vger.kernel.org
20927 S:      Maintained
20928 F:      drivers/usb/storage/uas.c
20929
20930 USB CDC ETHERNET DRIVER
20931 M:      Oliver Neukum <oliver@neukum.org>
20932 L:      linux-usb@vger.kernel.org
20933 S:      Maintained
20934 F:      drivers/net/usb/cdc_*.c
20935 F:      include/uapi/linux/usb/cdc.h
20936
20937 USB CHAOSKEY DRIVER
20938 M:      Keith Packard <keithp@keithp.com>
20939 L:      linux-usb@vger.kernel.org
20940 S:      Maintained
20941 F:      drivers/usb/misc/chaoskey.c
20942
20943 USB CYPRESS C67X00 DRIVER
20944 L:      linux-usb@vger.kernel.org
20945 S:      Orphan
20946 F:      drivers/usb/c67x00/
20947
20948 USB DAVICOM DM9601 DRIVER
20949 M:      Peter Korsgaard <peter@korsgaard.com>
20950 L:      netdev@vger.kernel.org
20951 S:      Maintained
20952 W:      http://www.linux-usb.org/usbnet
20953 F:      drivers/net/usb/dm9601.c
20954
20955 USB EHCI DRIVER
20956 M:      Alan Stern <stern@rowland.harvard.edu>
20957 L:      linux-usb@vger.kernel.org
20958 S:      Maintained
20959 F:      Documentation/usb/ehci.rst
20960 F:      drivers/usb/host/ehci*
20961
20962 USB GADGET/PERIPHERAL SUBSYSTEM
20963 M:      Felipe Balbi <balbi@kernel.org>
20964 L:      linux-usb@vger.kernel.org
20965 S:      Maintained
20966 W:      http://www.linux-usb.org/gadget
20967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20968 F:      drivers/usb/gadget/
20969 F:      include/linux/usb/gadget*
20970
20971 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20972 M:      Jiri Kosina <jikos@kernel.org>
20973 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20974 L:      linux-usb@vger.kernel.org
20975 S:      Maintained
20976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20977 F:      Documentation/hid/hiddev.rst
20978 F:      drivers/hid/usbhid/
20979
20980 USB INTEL XHCI ROLE MUX DRIVER
20981 M:      Hans de Goede <hdegoede@redhat.com>
20982 L:      linux-usb@vger.kernel.org
20983 S:      Maintained
20984 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20985
20986 USB IP DRIVER FOR HISILICON KIRIN 960
20987 M:      Yu Chen <chenyu56@huawei.com>
20988 M:      Binghui Wang <wangbinghui@hisilicon.com>
20989 L:      linux-usb@vger.kernel.org
20990 S:      Maintained
20991 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20992 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20993
20994 USB IP DRIVER FOR HISILICON KIRIN 970
20995 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20996 L:      linux-usb@vger.kernel.org
20997 S:      Maintained
20998 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20999 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21000
21001 USB ISP116X DRIVER
21002 M:      Olav Kongas <ok@artecdesign.ee>
21003 L:      linux-usb@vger.kernel.org
21004 S:      Maintained
21005 F:      drivers/usb/host/isp116x*
21006 F:      include/linux/usb/isp116x.h
21007
21008 USB ISP1760 DRIVER
21009 M:      Rui Miguel Silva <rui.silva@linaro.org>
21010 L:      linux-usb@vger.kernel.org
21011 S:      Maintained
21012 F:      drivers/usb/isp1760/*
21013 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21014
21015 USB LAN78XX ETHERNET DRIVER
21016 M:      Woojung Huh <woojung.huh@microchip.com>
21017 M:      UNGLinuxDriver@microchip.com
21018 L:      netdev@vger.kernel.org
21019 S:      Maintained
21020 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21021 F:      drivers/net/usb/lan78xx.*
21022 F:      include/dt-bindings/net/microchip-lan78xx.h
21023
21024 USB MASS STORAGE DRIVER
21025 M:      Alan Stern <stern@rowland.harvard.edu>
21026 L:      linux-usb@vger.kernel.org
21027 L:      usb-storage@lists.one-eyed-alien.net
21028 S:      Maintained
21029 F:      drivers/usb/storage/
21030
21031 USB MIDI DRIVER
21032 M:      Clemens Ladisch <clemens@ladisch.de>
21033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21034 S:      Maintained
21035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21036 F:      sound/usb/midi.*
21037
21038 USB NETWORKING DRIVERS
21039 L:      linux-usb@vger.kernel.org
21040 S:      Odd Fixes
21041 F:      drivers/net/usb/
21042
21043 USB OHCI DRIVER
21044 M:      Alan Stern <stern@rowland.harvard.edu>
21045 L:      linux-usb@vger.kernel.org
21046 S:      Maintained
21047 F:      Documentation/usb/ohci.rst
21048 F:      drivers/usb/host/ohci*
21049
21050 USB OTG FSM (Finite State Machine)
21051 M:      Peter Chen <peter.chen@kernel.org>
21052 L:      linux-usb@vger.kernel.org
21053 S:      Maintained
21054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21055 F:      drivers/usb/common/usb-otg-fsm.c
21056
21057 USB OVER IP DRIVER
21058 M:      Valentina Manea <valentina.manea.m@gmail.com>
21059 M:      Shuah Khan <shuah@kernel.org>
21060 M:      Shuah Khan <skhan@linuxfoundation.org>
21061 L:      linux-usb@vger.kernel.org
21062 S:      Maintained
21063 F:      Documentation/usb/usbip_protocol.rst
21064 F:      drivers/usb/usbip/
21065 F:      tools/testing/selftests/drivers/usb/usbip/
21066 F:      tools/usb/usbip/
21067
21068 USB PEGASUS DRIVER
21069 M:      Petko Manolov <petkan@nucleusys.com>
21070 L:      linux-usb@vger.kernel.org
21071 L:      netdev@vger.kernel.org
21072 S:      Maintained
21073 W:      https://github.com/petkan/pegasus
21074 T:      git git://github.com/petkan/pegasus.git
21075 F:      drivers/net/usb/pegasus.*
21076
21077 USB PHY LAYER
21078 M:      Felipe Balbi <balbi@kernel.org>
21079 L:      linux-usb@vger.kernel.org
21080 S:      Maintained
21081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
21082 F:      drivers/usb/phy/
21083
21084 USB PRINTER DRIVER (usblp)
21085 M:      Pete Zaitcev <zaitcev@redhat.com>
21086 L:      linux-usb@vger.kernel.org
21087 S:      Supported
21088 F:      drivers/usb/class/usblp.c
21089
21090 USB RAW GADGET DRIVER
21091 R:      Andrey Konovalov <andreyknvl@gmail.com>
21092 L:      linux-usb@vger.kernel.org
21093 S:      Maintained
21094 F:      Documentation/usb/raw-gadget.rst
21095 F:      drivers/usb/gadget/legacy/raw_gadget.c
21096 F:      include/uapi/linux/usb/raw_gadget.h
21097
21098 USB QMI WWAN NETWORK DRIVER
21099 M:      Bjørn Mork <bjorn@mork.no>
21100 L:      netdev@vger.kernel.org
21101 S:      Maintained
21102 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21103 F:      drivers/net/usb/qmi_wwan.c
21104
21105 USB RTL8150 DRIVER
21106 M:      Petko Manolov <petkan@nucleusys.com>
21107 L:      linux-usb@vger.kernel.org
21108 L:      netdev@vger.kernel.org
21109 S:      Maintained
21110 W:      https://github.com/petkan/rtl8150
21111 T:      git git://github.com/petkan/rtl8150.git
21112 F:      drivers/net/usb/rtl8150.c
21113
21114 USB SERIAL SUBSYSTEM
21115 M:      Johan Hovold <johan@kernel.org>
21116 L:      linux-usb@vger.kernel.org
21117 S:      Maintained
21118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21119 F:      Documentation/usb/usb-serial.rst
21120 F:      drivers/usb/serial/
21121 F:      include/linux/usb/serial.h
21122
21123 USB SMSC75XX ETHERNET DRIVER
21124 M:      Steve Glendinning <steve.glendinning@shawell.net>
21125 L:      netdev@vger.kernel.org
21126 S:      Maintained
21127 F:      drivers/net/usb/smsc75xx.*
21128
21129 USB SMSC95XX ETHERNET DRIVER
21130 M:      Steve Glendinning <steve.glendinning@shawell.net>
21131 M:      UNGLinuxDriver@microchip.com
21132 L:      netdev@vger.kernel.org
21133 S:      Maintained
21134 F:      drivers/net/usb/smsc95xx.*
21135
21136 USB SUBSYSTEM
21137 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21138 L:      linux-usb@vger.kernel.org
21139 S:      Supported
21140 W:      http://www.linux-usb.org
21141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21142 F:      Documentation/devicetree/bindings/usb/
21143 F:      Documentation/usb/
21144 F:      drivers/usb/
21145 F:      include/dt-bindings/usb/
21146 F:      include/linux/usb.h
21147 F:      include/linux/usb/
21148
21149 USB TYPEC BUS FOR ALTERNATE MODES
21150 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21151 L:      linux-usb@vger.kernel.org
21152 S:      Maintained
21153 F:      Documentation/ABI/testing/sysfs-bus-typec
21154 F:      Documentation/driver-api/usb/typec_bus.rst
21155 F:      drivers/usb/typec/altmodes/
21156 F:      include/linux/usb/typec_altmode.h
21157
21158 USB TYPEC CLASS
21159 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21160 L:      linux-usb@vger.kernel.org
21161 S:      Maintained
21162 F:      Documentation/ABI/testing/sysfs-class-typec
21163 F:      Documentation/driver-api/usb/typec.rst
21164 F:      drivers/usb/typec/
21165 F:      include/linux/usb/typec.h
21166
21167 USB TYPEC INTEL PMC MUX DRIVER
21168 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21169 L:      linux-usb@vger.kernel.org
21170 S:      Maintained
21171 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21172 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21173
21174 USB TYPEC PI3USB30532 MUX DRIVER
21175 M:      Hans de Goede <hdegoede@redhat.com>
21176 L:      linux-usb@vger.kernel.org
21177 S:      Maintained
21178 F:      drivers/usb/typec/mux/pi3usb30532.c
21179
21180 USB TYPEC PORT CONTROLLER DRIVERS
21181 M:      Guenter Roeck <linux@roeck-us.net>
21182 L:      linux-usb@vger.kernel.org
21183 S:      Maintained
21184 F:      drivers/usb/typec/tcpm/
21185
21186 USB UHCI DRIVER
21187 M:      Alan Stern <stern@rowland.harvard.edu>
21188 L:      linux-usb@vger.kernel.org
21189 S:      Maintained
21190 F:      drivers/usb/host/uhci*
21191
21192 USB VIDEO CLASS
21193 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21194 L:      linux-media@vger.kernel.org
21195 S:      Maintained
21196 W:      http://www.ideasonboard.org/uvc/
21197 T:      git git://linuxtv.org/media_tree.git
21198 F:      drivers/media/usb/uvc/
21199 F:      include/uapi/linux/uvcvideo.h
21200
21201 USB WEBCAM GADGET
21202 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21203 L:      linux-usb@vger.kernel.org
21204 S:      Maintained
21205 F:      drivers/usb/gadget/function/*uvc*
21206 F:      drivers/usb/gadget/legacy/webcam.c
21207 F:      include/uapi/linux/usb/g_uvc.h
21208
21209 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21210 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21211 L:      linux-wireless@vger.kernel.org
21212 S:      Maintained
21213 F:      drivers/net/wireless/rndis_wlan.c
21214
21215 USB XHCI DRIVER
21216 M:      Mathias Nyman <mathias.nyman@intel.com>
21217 L:      linux-usb@vger.kernel.org
21218 S:      Supported
21219 F:      drivers/usb/host/pci-quirks*
21220 F:      drivers/usb/host/xhci*
21221
21222 USB ZD1201 DRIVER
21223 L:      linux-wireless@vger.kernel.org
21224 S:      Orphan
21225 W:      http://linux-lc100020.sourceforge.net
21226 F:      drivers/net/wireless/zydas/zd1201.*
21227
21228 USB ZR364XX DRIVER
21229 M:      Antoine Jacquet <royale@zerezo.com>
21230 L:      linux-usb@vger.kernel.org
21231 L:      linux-media@vger.kernel.org
21232 S:      Maintained
21233 W:      http://royale.zerezo.com/zr364xx/
21234 T:      git git://linuxtv.org/media_tree.git
21235 F:      Documentation/admin-guide/media/zr364xx*
21236 F:      drivers/media/usb/zr364xx/
21237
21238 USER-MODE LINUX (UML)
21239 M:      Richard Weinberger <richard@nod.at>
21240 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21241 M:      Johannes Berg <johannes@sipsolutions.net>
21242 L:      linux-um@lists.infradead.org
21243 S:      Maintained
21244 W:      http://user-mode-linux.sourceforge.net
21245 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21248 F:      Documentation/virt/uml/
21249 F:      arch/um/
21250 F:      arch/x86/um/
21251 F:      fs/hostfs/
21252
21253 USERSPACE COPYIN/COPYOUT (UIOVEC)
21254 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21255 S:      Maintained
21256 F:      include/linux/uio.h
21257 F:      lib/iov_iter.c
21258
21259 USERSPACE DMA BUFFER DRIVER
21260 M:      Gerd Hoffmann <kraxel@redhat.com>
21261 L:      dri-devel@lists.freedesktop.org
21262 S:      Maintained
21263 T:      git git://anongit.freedesktop.org/drm/drm-misc
21264 F:      drivers/dma-buf/udmabuf.c
21265 F:      include/uapi/linux/udmabuf.h
21266
21267 USERSPACE I/O (UIO)
21268 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21269 S:      Maintained
21270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21271 F:      Documentation/driver-api/uio-howto.rst
21272 F:      drivers/uio/
21273 F:      include/linux/uio_driver.h
21274
21275 UTIL-LINUX PACKAGE
21276 M:      Karel Zak <kzak@redhat.com>
21277 L:      util-linux@vger.kernel.org
21278 S:      Maintained
21279 W:      http://en.wikipedia.org/wiki/Util-linux
21280 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21281
21282 UUID HELPERS
21283 M:      Christoph Hellwig <hch@lst.de>
21284 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21285 L:      linux-kernel@vger.kernel.org
21286 S:      Maintained
21287 T:      git git://git.infradead.org/users/hch/uuid.git
21288 F:      include/linux/uuid.h
21289 F:      include/uapi/linux/uuid.h
21290 F:      lib/test_uuid.c
21291 F:      lib/uuid.c
21292
21293 UV SYSFS DRIVER
21294 M:      Justin Ernst <justin.ernst@hpe.com>
21295 L:      platform-driver-x86@vger.kernel.org
21296 S:      Maintained
21297 F:      drivers/platform/x86/uv_sysfs.c
21298
21299 UVESAFB DRIVER
21300 M:      Michal Januszewski <spock@gentoo.org>
21301 L:      linux-fbdev@vger.kernel.org
21302 S:      Maintained
21303 W:      https://github.com/mjanusz/v86d
21304 F:      Documentation/fb/uvesafb.rst
21305 F:      drivers/video/fbdev/uvesafb.*
21306
21307 Ux500 CLOCK DRIVERS
21308 M:      Ulf Hansson <ulf.hansson@linaro.org>
21309 L:      linux-clk@vger.kernel.org
21310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21311 S:      Maintained
21312 F:      drivers/clk/ux500/
21313
21314 VF610 NAND DRIVER
21315 M:      Stefan Agner <stefan@agner.ch>
21316 L:      linux-mtd@lists.infradead.org
21317 S:      Supported
21318 F:      drivers/mtd/nand/raw/vf610_nfc.c
21319
21320 VFAT/FAT/MSDOS FILESYSTEM
21321 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21322 S:      Maintained
21323 F:      Documentation/filesystems/vfat.rst
21324 F:      fs/fat/
21325 F:      tools/testing/selftests/filesystems/fat/
21326
21327 VFIO DRIVER
21328 M:      Alex Williamson <alex.williamson@redhat.com>
21329 R:      Cornelia Huck <cohuck@redhat.com>
21330 L:      kvm@vger.kernel.org
21331 S:      Maintained
21332 T:      git git://github.com/awilliam/linux-vfio.git
21333 F:      Documentation/driver-api/vfio.rst
21334 F:      drivers/vfio/
21335 F:      include/linux/vfio.h
21336 F:      include/linux/vfio_pci_core.h
21337 F:      include/uapi/linux/vfio.h
21338
21339 VFIO FSL-MC DRIVER
21340 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21341 L:      kvm@vger.kernel.org
21342 S:      Maintained
21343 F:      drivers/vfio/fsl-mc/
21344
21345 VFIO HISILICON PCI DRIVER
21346 M:      Longfang Liu <liulongfang@huawei.com>
21347 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21348 L:      kvm@vger.kernel.org
21349 S:      Maintained
21350 F:      drivers/vfio/pci/hisilicon/
21351
21352 VFIO MEDIATED DEVICE DRIVERS
21353 M:      Kirti Wankhede <kwankhede@nvidia.com>
21354 L:      kvm@vger.kernel.org
21355 S:      Maintained
21356 F:      Documentation/driver-api/vfio-mediated-device.rst
21357 F:      drivers/vfio/mdev/
21358 F:      include/linux/mdev.h
21359 F:      samples/vfio-mdev/
21360
21361 VFIO PCI DEVICE SPECIFIC DRIVERS
21362 R:      Jason Gunthorpe <jgg@nvidia.com>
21363 R:      Yishai Hadas <yishaih@nvidia.com>
21364 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21365 R:      Kevin Tian <kevin.tian@intel.com>
21366 L:      kvm@vger.kernel.org
21367 S:      Maintained
21368 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21369 F:      drivers/vfio/pci/*/
21370
21371 VFIO PLATFORM DRIVER
21372 M:      Eric Auger <eric.auger@redhat.com>
21373 L:      kvm@vger.kernel.org
21374 S:      Maintained
21375 F:      drivers/vfio/platform/
21376
21377 VFIO MLX5 PCI DRIVER
21378 M:      Yishai Hadas <yishaih@nvidia.com>
21379 L:      kvm@vger.kernel.org
21380 S:      Maintained
21381 F:      drivers/vfio/pci/mlx5/
21382
21383 VGA_SWITCHEROO
21384 R:      Lukas Wunner <lukas@wunner.de>
21385 S:      Maintained
21386 T:      git git://anongit.freedesktop.org/drm/drm-misc
21387 F:      Documentation/gpu/vga-switcheroo.rst
21388 F:      drivers/gpu/vga/vga_switcheroo.c
21389 F:      include/linux/vga_switcheroo.h
21390
21391 VIA RHINE NETWORK DRIVER
21392 S:      Maintained
21393 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21394 F:      drivers/net/ethernet/via/via-rhine.c
21395
21396 VIA SD/MMC CARD CONTROLLER DRIVER
21397 M:      Bruce Chang <brucechang@via.com.tw>
21398 M:      Harald Welte <HaraldWelte@viatech.com>
21399 S:      Maintained
21400 F:      drivers/mmc/host/via-sdmmc.c
21401
21402 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21403 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21404 L:      linux-fbdev@vger.kernel.org
21405 S:      Maintained
21406 F:      drivers/video/fbdev/via/
21407 F:      include/linux/via-core.h
21408 F:      include/linux/via-gpio.h
21409 F:      include/linux/via_i2c.h
21410
21411 VIA VELOCITY NETWORK DRIVER
21412 M:      Francois Romieu <romieu@fr.zoreil.com>
21413 L:      netdev@vger.kernel.org
21414 S:      Maintained
21415 F:      drivers/net/ethernet/via/via-velocity.*
21416
21417 VICODEC VIRTUAL CODEC DRIVER
21418 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21419 L:      linux-media@vger.kernel.org
21420 S:      Maintained
21421 W:      https://linuxtv.org
21422 T:      git git://linuxtv.org/media_tree.git
21423 F:      drivers/media/test-drivers/vicodec/*
21424
21425 VIDEO I2C POLLING DRIVER
21426 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21427 L:      linux-media@vger.kernel.org
21428 S:      Maintained
21429 F:      drivers/media/i2c/video-i2c.c
21430
21431 VIDEO MULTIPLEXER DRIVER
21432 M:      Philipp Zabel <p.zabel@pengutronix.de>
21433 L:      linux-media@vger.kernel.org
21434 S:      Maintained
21435 F:      drivers/media/platform/video-mux.c
21436
21437 VIDEOBUF2 FRAMEWORK
21438 M:      Tomasz Figa <tfiga@chromium.org>
21439 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21440 L:      linux-media@vger.kernel.org
21441 S:      Maintained
21442 F:      drivers/media/common/videobuf2/*
21443 F:      include/media/videobuf2-*
21444
21445 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21446 M:      Shuah Khan <skhan@linuxfoundation.org>
21447 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21448 L:      linux-media@vger.kernel.org
21449 S:      Maintained
21450 W:      https://linuxtv.org
21451 T:      git git://linuxtv.org/media_tree.git
21452 F:      drivers/media/test-drivers/vimc/*
21453
21454 VIRT LIB
21455 M:      Alex Williamson <alex.williamson@redhat.com>
21456 M:      Paolo Bonzini <pbonzini@redhat.com>
21457 L:      kvm@vger.kernel.org
21458 S:      Supported
21459 F:      virt/lib/
21460
21461 VIRTIO AND VHOST VSOCK DRIVER
21462 M:      Stefan Hajnoczi <stefanha@redhat.com>
21463 M:      Stefano Garzarella <sgarzare@redhat.com>
21464 L:      kvm@vger.kernel.org
21465 L:      virtualization@lists.linux-foundation.org
21466 L:      netdev@vger.kernel.org
21467 S:      Maintained
21468 F:      drivers/vhost/vsock.c
21469 F:      include/linux/virtio_vsock.h
21470 F:      include/uapi/linux/virtio_vsock.h
21471 F:      net/vmw_vsock/virtio_transport.c
21472 F:      net/vmw_vsock/virtio_transport_common.c
21473
21474 VIRTIO BLOCK AND SCSI DRIVERS
21475 M:      "Michael S. Tsirkin" <mst@redhat.com>
21476 M:      Jason Wang <jasowang@redhat.com>
21477 R:      Paolo Bonzini <pbonzini@redhat.com>
21478 R:      Stefan Hajnoczi <stefanha@redhat.com>
21479 L:      virtualization@lists.linux-foundation.org
21480 S:      Maintained
21481 F:      drivers/block/virtio_blk.c
21482 F:      drivers/scsi/virtio_scsi.c
21483 F:      drivers/vhost/scsi.c
21484 F:      include/uapi/linux/virtio_blk.h
21485 F:      include/uapi/linux/virtio_scsi.h
21486
21487 VIRTIO CONSOLE DRIVER
21488 M:      Amit Shah <amit@kernel.org>
21489 L:      virtualization@lists.linux-foundation.org
21490 S:      Maintained
21491 F:      drivers/char/virtio_console.c
21492 F:      include/linux/virtio_console.h
21493 F:      include/uapi/linux/virtio_console.h
21494
21495 VIRTIO CORE AND NET DRIVERS
21496 M:      "Michael S. Tsirkin" <mst@redhat.com>
21497 M:      Jason Wang <jasowang@redhat.com>
21498 L:      virtualization@lists.linux-foundation.org
21499 S:      Maintained
21500 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21501 F:      Documentation/ABI/testing/sysfs-class-vduse
21502 F:      Documentation/devicetree/bindings/virtio/
21503 F:      drivers/block/virtio_blk.c
21504 F:      drivers/crypto/virtio/
21505 F:      drivers/net/virtio_net.c
21506 F:      drivers/vdpa/
21507 F:      drivers/virtio/
21508 F:      include/linux/vdpa.h
21509 F:      include/linux/virtio*.h
21510 F:      include/uapi/linux/virtio_*.h
21511 F:      tools/virtio/
21512
21513 VIRTIO BALLOON
21514 M:      "Michael S. Tsirkin" <mst@redhat.com>
21515 M:      David Hildenbrand <david@redhat.com>
21516 L:      virtualization@lists.linux-foundation.org
21517 S:      Maintained
21518 F:      drivers/virtio/virtio_balloon.c
21519 F:      include/uapi/linux/virtio_balloon.h
21520 F:      include/linux/balloon_compaction.h
21521 F:      mm/balloon_compaction.c
21522
21523 VIRTIO CRYPTO DRIVER
21524 M:      Gonglei <arei.gonglei@huawei.com>
21525 L:      virtualization@lists.linux-foundation.org
21526 L:      linux-crypto@vger.kernel.org
21527 S:      Maintained
21528 F:      drivers/crypto/virtio/
21529 F:      include/uapi/linux/virtio_crypto.h
21530
21531 VIRTIO DRIVERS FOR S390
21532 M:      Cornelia Huck <cohuck@redhat.com>
21533 M:      Halil Pasic <pasic@linux.ibm.com>
21534 M:      Eric Farman <farman@linux.ibm.com>
21535 L:      linux-s390@vger.kernel.org
21536 L:      virtualization@lists.linux-foundation.org
21537 L:      kvm@vger.kernel.org
21538 S:      Supported
21539 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21540 F:      drivers/s390/virtio/
21541
21542 VIRTIO FILE SYSTEM
21543 M:      Vivek Goyal <vgoyal@redhat.com>
21544 M:      Stefan Hajnoczi <stefanha@redhat.com>
21545 M:      Miklos Szeredi <miklos@szeredi.hu>
21546 L:      virtualization@lists.linux-foundation.org
21547 L:      linux-fsdevel@vger.kernel.org
21548 S:      Supported
21549 W:      https://virtio-fs.gitlab.io/
21550 F:      Documentation/filesystems/virtiofs.rst
21551 F:      fs/fuse/virtio_fs.c
21552 F:      include/uapi/linux/virtio_fs.h
21553
21554 VIRTIO GPIO DRIVER
21555 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21556 M:      Viresh Kumar <vireshk@kernel.org>
21557 L:      linux-gpio@vger.kernel.org
21558 L:      virtualization@lists.linux-foundation.org
21559 S:      Maintained
21560 F:      drivers/gpio/gpio-virtio.c
21561 F:      include/uapi/linux/virtio_gpio.h
21562
21563 VIRTIO GPU DRIVER
21564 M:      David Airlie <airlied@linux.ie>
21565 M:      Gerd Hoffmann <kraxel@redhat.com>
21566 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21567 R:      Chia-I Wu <olvaffe@gmail.com>
21568 L:      dri-devel@lists.freedesktop.org
21569 L:      virtualization@lists.linux-foundation.org
21570 S:      Maintained
21571 T:      git git://anongit.freedesktop.org/drm/drm-misc
21572 F:      drivers/gpu/drm/virtio/
21573 F:      include/uapi/linux/virtio_gpu.h
21574
21575 VIRTIO HOST (VHOST)
21576 M:      "Michael S. Tsirkin" <mst@redhat.com>
21577 M:      Jason Wang <jasowang@redhat.com>
21578 L:      kvm@vger.kernel.org
21579 L:      virtualization@lists.linux-foundation.org
21580 L:      netdev@vger.kernel.org
21581 S:      Maintained
21582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21583 F:      drivers/vhost/
21584 F:      include/linux/vhost_iotlb.h
21585 F:      include/uapi/linux/vhost.h
21586
21587 VIRTIO INPUT DRIVER
21588 M:      Gerd Hoffmann <kraxel@redhat.com>
21589 S:      Maintained
21590 F:      drivers/virtio/virtio_input.c
21591 F:      include/uapi/linux/virtio_input.h
21592
21593 VIRTIO IOMMU DRIVER
21594 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21595 L:      virtualization@lists.linux-foundation.org
21596 S:      Maintained
21597 F:      drivers/iommu/virtio-iommu.c
21598 F:      include/uapi/linux/virtio_iommu.h
21599
21600 VIRTIO MEM DRIVER
21601 M:      David Hildenbrand <david@redhat.com>
21602 L:      virtualization@lists.linux-foundation.org
21603 S:      Maintained
21604 W:      https://virtio-mem.gitlab.io/
21605 F:      drivers/virtio/virtio_mem.c
21606 F:      include/uapi/linux/virtio_mem.h
21607
21608 VIRTIO SOUND DRIVER
21609 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21610 M:      "Michael S. Tsirkin" <mst@redhat.com>
21611 L:      virtualization@lists.linux-foundation.org
21612 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21613 S:      Maintained
21614 F:      include/uapi/linux/virtio_snd.h
21615 F:      sound/virtio/*
21616
21617 VIRTIO I2C DRIVER
21618 M:      Conghui Chen <conghui.chen@intel.com>
21619 M:      Viresh Kumar <viresh.kumar@linaro.org>
21620 L:      linux-i2c@vger.kernel.org
21621 L:      virtualization@lists.linux-foundation.org
21622 S:      Maintained
21623 F:      drivers/i2c/busses/i2c-virtio.c
21624 F:      include/uapi/linux/virtio_i2c.h
21625
21626 VIRTIO PMEM DRIVER
21627 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21628 L:      virtualization@lists.linux-foundation.org
21629 S:      Maintained
21630 F:      drivers/nvdimm/virtio_pmem.c
21631 F:      drivers/nvdimm/nd_virtio.c
21632
21633 VIRTUAL BOX GUEST DEVICE DRIVER
21634 M:      Hans de Goede <hdegoede@redhat.com>
21635 M:      Arnd Bergmann <arnd@arndb.de>
21636 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21637 S:      Maintained
21638 F:      drivers/virt/vboxguest/
21639 F:      include/linux/vbox_utils.h
21640 F:      include/uapi/linux/vbox*.h
21641
21642 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21643 M:      Hans de Goede <hdegoede@redhat.com>
21644 L:      linux-fsdevel@vger.kernel.org
21645 S:      Maintained
21646 F:      fs/vboxsf/*
21647
21648 VIRTUAL SERIO DEVICE DRIVER
21649 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21650 S:      Maintained
21651 F:      drivers/input/serio/userio.c
21652 F:      include/uapi/linux/userio.h
21653
21654 VIVID VIRTUAL VIDEO DRIVER
21655 M:      Hans Verkuil <hverkuil@xs4all.nl>
21656 L:      linux-media@vger.kernel.org
21657 S:      Maintained
21658 W:      https://linuxtv.org
21659 T:      git git://linuxtv.org/media_tree.git
21660 F:      drivers/media/test-drivers/vivid/*
21661
21662 VIDTV VIRTUAL DIGITAL TV DRIVER
21663 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21664 L:      linux-media@vger.kernel.org
21665 S:      Maintained
21666 W:      https://linuxtv.org
21667 T:      git git://linuxtv.org/media_tree.git
21668 F:      drivers/media/test-drivers/vidtv/*
21669
21670 VLYNQ BUS
21671 M:      Florian Fainelli <f.fainelli@gmail.com>
21672 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21673 S:      Maintained
21674 F:      drivers/vlynq/vlynq.c
21675 F:      include/linux/vlynq.h
21676
21677 VME SUBSYSTEM
21678 M:      Martyn Welch <martyn@welchs.me.uk>
21679 M:      Manohar Vanga <manohar.vanga@gmail.com>
21680 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21681 L:      linux-kernel@vger.kernel.org
21682 S:      Odd fixes
21683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21684 F:      Documentation/driver-api/vme.rst
21685 F:      drivers/staging/vme_user/
21686
21687 VM SOCKETS (AF_VSOCK)
21688 M:      Stefano Garzarella <sgarzare@redhat.com>
21689 L:      virtualization@lists.linux-foundation.org
21690 L:      netdev@vger.kernel.org
21691 S:      Maintained
21692 F:      drivers/net/vsockmon.c
21693 F:      include/net/af_vsock.h
21694 F:      include/uapi/linux/vm_sockets.h
21695 F:      include/uapi/linux/vm_sockets_diag.h
21696 F:      include/uapi/linux/vsockmon.h
21697 F:      net/vmw_vsock/
21698 F:      tools/testing/vsock/
21699
21700 VMWARE BALLOON DRIVER
21701 M:      Nadav Amit <namit@vmware.com>
21702 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21703 L:      linux-kernel@vger.kernel.org
21704 S:      Supported
21705 F:      drivers/misc/vmw_balloon.c
21706
21707 VMWARE HYPERVISOR INTERFACE
21708 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21709 M:      Alexey Makhalov <amakhalov@vmware.com>
21710 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21711 L:      virtualization@lists.linux-foundation.org
21712 L:      x86@kernel.org
21713 S:      Supported
21714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21715 F:      arch/x86/include/asm/vmware.h
21716 F:      arch/x86/kernel/cpu/vmware.c
21717
21718 VMWARE PVRDMA DRIVER
21719 M:      Bryan Tan <bryantan@vmware.com>
21720 M:      Vishnu Dasa <vdasa@vmware.com>
21721 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21722 L:      linux-rdma@vger.kernel.org
21723 S:      Supported
21724 F:      drivers/infiniband/hw/vmw_pvrdma/
21725
21726 VMWARE PVSCSI DRIVER
21727 M:      Vishal Bhakta <vbhakta@vmware.com>
21728 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21729 L:      linux-scsi@vger.kernel.org
21730 S:      Supported
21731 F:      drivers/scsi/vmw_pvscsi.c
21732 F:      drivers/scsi/vmw_pvscsi.h
21733
21734 VMWARE VIRTUAL PTP CLOCK DRIVER
21735 M:      Vivek Thampi <vithampi@vmware.com>
21736 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21737 L:      netdev@vger.kernel.org
21738 S:      Supported
21739 F:      drivers/ptp/ptp_vmw.c
21740
21741 VMWARE VMCI DRIVER
21742 M:      Bryan Tan <bryantan@vmware.com>
21743 M:      Vishnu Dasa <vdasa@vmware.com>
21744 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21745 L:      linux-kernel@vger.kernel.org
21746 S:      Supported
21747 F:      drivers/misc/vmw_vmci/
21748
21749 VMWARE VMMOUSE SUBDRIVER
21750 M:      Zack Rusin <zackr@vmware.com>
21751 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21752 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21753 L:      linux-input@vger.kernel.org
21754 S:      Supported
21755 F:      drivers/input/mouse/vmmouse.c
21756 F:      drivers/input/mouse/vmmouse.h
21757
21758 VMWARE VMXNET3 ETHERNET DRIVER
21759 M:      Ronak Doshi <doshir@vmware.com>
21760 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21761 L:      netdev@vger.kernel.org
21762 S:      Supported
21763 F:      drivers/net/vmxnet3/
21764
21765 VMWARE VSOCK VMCI TRANSPORT DRIVER
21766 M:      Bryan Tan <bryantan@vmware.com>
21767 M:      Vishnu Dasa <vdasa@vmware.com>
21768 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21769 L:      linux-kernel@vger.kernel.org
21770 S:      Supported
21771 F:      net/vmw_vsock/vmci_transport*
21772
21773 VOCORE VOCORE2 BOARD
21774 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21775 L:      linux-mips@vger.kernel.org
21776 S:      Maintained
21777 F:      arch/mips/boot/dts/ralink/vocore2.dts
21778
21779 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21780 M:      Liam Girdwood <lgirdwood@gmail.com>
21781 M:      Mark Brown <broonie@kernel.org>
21782 L:      linux-kernel@vger.kernel.org
21783 S:      Supported
21784 W:      http://www.slimlogic.co.uk/?p=48
21785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21786 F:      Documentation/devicetree/bindings/regulator/
21787 F:      Documentation/power/regulator/
21788 F:      drivers/regulator/
21789 F:      include/dt-bindings/regulator/
21790 F:      include/linux/regulator/
21791 K:      regulator_get_optional
21792
21793 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21794 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21795 F:      drivers/regulator/irq_helpers.c
21796
21797 VRF
21798 M:      David Ahern <dsahern@kernel.org>
21799 L:      netdev@vger.kernel.org
21800 S:      Maintained
21801 F:      Documentation/networking/vrf.rst
21802 F:      drivers/net/vrf.c
21803
21804 VSPRINTF
21805 M:      Petr Mladek <pmladek@suse.com>
21806 M:      Steven Rostedt <rostedt@goodmis.org>
21807 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21808 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21809 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21810 S:      Maintained
21811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21812 F:      Documentation/core-api/printk-formats.rst
21813 F:      lib/test_printf.c
21814 F:      lib/test_scanf.c
21815 F:      lib/vsprintf.c
21816
21817 VT1211 HARDWARE MONITOR DRIVER
21818 M:      Juerg Haefliger <juergh@gmail.com>
21819 L:      linux-hwmon@vger.kernel.org
21820 S:      Maintained
21821 F:      Documentation/hwmon/vt1211.rst
21822 F:      drivers/hwmon/vt1211.c
21823
21824 VT8231 HARDWARE MONITOR DRIVER
21825 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21826 L:      linux-hwmon@vger.kernel.org
21827 S:      Maintained
21828 F:      drivers/hwmon/vt8231.c
21829
21830 VUB300 USB to SDIO/SD/MMC bridge chip
21831 L:      linux-mmc@vger.kernel.org
21832 S:      Orphan
21833 F:      drivers/mmc/host/vub300.c
21834
21835 W1 DALLAS'S 1-WIRE BUS
21836 M:      Evgeniy Polyakov <zbr@ioremap.net>
21837 S:      Maintained
21838 F:      Documentation/devicetree/bindings/w1/
21839 F:      Documentation/w1/
21840 F:      drivers/w1/
21841 F:      include/linux/w1.h
21842
21843 W83791D HARDWARE MONITORING DRIVER
21844 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21845 L:      linux-hwmon@vger.kernel.org
21846 S:      Maintained
21847 F:      Documentation/hwmon/w83791d.rst
21848 F:      drivers/hwmon/w83791d.c
21849
21850 W83793 HARDWARE MONITORING DRIVER
21851 M:      Rudolf Marek <r.marek@assembler.cz>
21852 L:      linux-hwmon@vger.kernel.org
21853 S:      Maintained
21854 F:      Documentation/hwmon/w83793.rst
21855 F:      drivers/hwmon/w83793.c
21856
21857 W83795 HARDWARE MONITORING DRIVER
21858 M:      Jean Delvare <jdelvare@suse.com>
21859 L:      linux-hwmon@vger.kernel.org
21860 S:      Maintained
21861 F:      drivers/hwmon/w83795.c
21862
21863 W83L51xD SD/MMC CARD INTERFACE DRIVER
21864 M:      Pierre Ossman <pierre@ossman.eu>
21865 S:      Maintained
21866 F:      drivers/mmc/host/wbsd.*
21867
21868 WACOM PROTOCOL 4 SERIAL TABLETS
21869 M:      Julian Squires <julian@cipht.net>
21870 M:      Hans de Goede <hdegoede@redhat.com>
21871 L:      linux-input@vger.kernel.org
21872 S:      Maintained
21873 F:      drivers/input/tablet/wacom_serial4.c
21874
21875 WANGXUN ETHERNET DRIVER
21876 M:      Jiawen Wu <jiawenwu@trustnetic.com>
21877 L:      netdev@vger.kernel.org
21878 S:      Maintained
21879 F:      Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst
21880 F:      drivers/net/ethernet/wangxun/
21881
21882 WATCHDOG DEVICE DRIVERS
21883 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21884 M:      Guenter Roeck <linux@roeck-us.net>
21885 L:      linux-watchdog@vger.kernel.org
21886 S:      Maintained
21887 W:      http://www.linux-watchdog.org/
21888 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21889 F:      Documentation/devicetree/bindings/watchdog/
21890 F:      Documentation/watchdog/
21891 F:      drivers/watchdog/
21892 F:      include/linux/watchdog.h
21893 F:      include/uapi/linux/watchdog.h
21894
21895 WHISKEYCOVE PMIC GPIO DRIVER
21896 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21897 L:      linux-gpio@vger.kernel.org
21898 S:      Maintained
21899 F:      drivers/gpio/gpio-wcove.c
21900
21901 WHWAVE RTC DRIVER
21902 M:      Dianlong Li <long17.cool@163.com>
21903 L:      linux-rtc@vger.kernel.org
21904 S:      Maintained
21905 F:      drivers/rtc/rtc-sd3078.c
21906
21907 WIIMOTE HID DRIVER
21908 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21909 L:      linux-input@vger.kernel.org
21910 S:      Maintained
21911 F:      drivers/hid/hid-wiimote*
21912
21913 WILOCITY WIL6210 WIRELESS DRIVER
21914 L:      linux-wireless@vger.kernel.org
21915 S:      Orphan
21916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21917 F:      drivers/net/wireless/ath/wil6210/
21918
21919 WINBOND CIR DRIVER
21920 M:      David Härdeman <david@hardeman.nu>
21921 S:      Maintained
21922 F:      drivers/media/rc/winbond-cir.c
21923
21924 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21925 M:      William Breathitt Gray <william.gray@linaro.org>
21926 L:      linux-watchdog@vger.kernel.org
21927 S:      Maintained
21928 F:      drivers/watchdog/ebc-c384_wdt.c
21929
21930 WINSYSTEMS WS16C48 GPIO DRIVER
21931 M:      William Breathitt Gray <william.gray@linaro.org>
21932 L:      linux-gpio@vger.kernel.org
21933 S:      Maintained
21934 F:      drivers/gpio/gpio-ws16c48.c
21935
21936 WIREGUARD SECURE NETWORK TUNNEL
21937 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21938 L:      wireguard@lists.zx2c4.com
21939 L:      netdev@vger.kernel.org
21940 S:      Maintained
21941 F:      drivers/net/wireguard/
21942 F:      tools/testing/selftests/wireguard/
21943
21944 WISTRON LAPTOP BUTTON DRIVER
21945 M:      Miloslav Trmac <mitr@volny.cz>
21946 S:      Maintained
21947 F:      drivers/input/misc/wistron_btns.c
21948
21949 WL3501 WIRELESS PCMCIA CARD DRIVER
21950 L:      linux-wireless@vger.kernel.org
21951 S:      Odd fixes
21952 F:      drivers/net/wireless/wl3501*
21953
21954 WOLFSON MICROELECTRONICS DRIVERS
21955 L:      patches@opensource.cirrus.com
21956 S:      Supported
21957 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21958 T:      git https://github.com/CirrusLogic/linux-drivers.git
21959 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21960 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21961 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21962 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21963 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21964 F:      Documentation/devicetree/bindings/sound/wm*
21965 F:      Documentation/hwmon/wm83??.rst
21966 F:      arch/arm/mach-s3c/mach-crag6410*
21967 F:      drivers/clk/clk-wm83*.c
21968 F:      drivers/gpio/gpio-*wm*.c
21969 F:      drivers/gpio/gpio-arizona.c
21970 F:      drivers/hwmon/wm83??-hwmon.c
21971 F:      drivers/input/misc/wm831x-on.c
21972 F:      drivers/input/touchscreen/wm831x-ts.c
21973 F:      drivers/input/touchscreen/wm97*.c
21974 F:      drivers/leds/leds-wm83*.c
21975 F:      drivers/mfd/arizona*
21976 F:      drivers/mfd/cs47l24*
21977 F:      drivers/mfd/wm*.c
21978 F:      drivers/power/supply/wm83*.c
21979 F:      drivers/regulator/arizona*
21980 F:      drivers/regulator/wm8*.c
21981 F:      drivers/rtc/rtc-wm83*.c
21982 F:      drivers/video/backlight/wm83*_bl.c
21983 F:      drivers/watchdog/wm83*_wdt.c
21984 F:      include/linux/mfd/arizona/
21985 F:      include/linux/mfd/wm831x/
21986 F:      include/linux/mfd/wm8350/
21987 F:      include/linux/mfd/wm8400*
21988 F:      include/linux/regulator/arizona*
21989 F:      include/linux/wm97xx.h
21990 F:      include/sound/wm????.h
21991 F:      sound/soc/codecs/arizona*
21992 F:      sound/soc/codecs/cs47l24*
21993 F:      sound/soc/codecs/wm*
21994
21995 WORKQUEUE
21996 M:      Tejun Heo <tj@kernel.org>
21997 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21998 S:      Maintained
21999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22000 F:      Documentation/core-api/workqueue.rst
22001 F:      include/linux/workqueue.h
22002 F:      kernel/workqueue.c
22003
22004 WWAN DRIVERS
22005 M:      Loic Poulain <loic.poulain@linaro.org>
22006 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22007 R:      Johannes Berg <johannes@sipsolutions.net>
22008 L:      netdev@vger.kernel.org
22009 S:      Maintained
22010 F:      drivers/net/wwan/
22011 F:      include/linux/wwan.h
22012 F:      include/uapi/linux/wwan.h
22013
22014 X-POWERS AXP288 PMIC DRIVERS
22015 M:      Hans de Goede <hdegoede@redhat.com>
22016 S:      Maintained
22017 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22018 N:      axp288
22019
22020 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22021 M:      Chen-Yu Tsai <wens@csie.org>
22022 L:      linux-kernel@vger.kernel.org
22023 S:      Maintained
22024 N:      axp[128]
22025
22026 X.25 STACK
22027 M:      Martin Schiller <ms@dev.tdt.de>
22028 L:      linux-x25@vger.kernel.org
22029 S:      Maintained
22030 F:      Documentation/networking/lapb-module.rst
22031 F:      Documentation/networking/x25*
22032 F:      drivers/net/wan/hdlc_x25.c
22033 F:      drivers/net/wan/lapbether.c
22034 F:      include/*/lapb.h
22035 F:      include/net/x25*
22036 F:      include/uapi/linux/x25.h
22037 F:      net/lapb/
22038 F:      net/x25/
22039
22040 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22041 M:      Thomas Gleixner <tglx@linutronix.de>
22042 M:      Ingo Molnar <mingo@redhat.com>
22043 M:      Borislav Petkov <bp@alien8.de>
22044 M:      Dave Hansen <dave.hansen@linux.intel.com>
22045 M:      x86@kernel.org
22046 R:      "H. Peter Anvin" <hpa@zytor.com>
22047 L:      linux-kernel@vger.kernel.org
22048 S:      Maintained
22049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22050 F:      Documentation/devicetree/bindings/x86/
22051 F:      Documentation/x86/
22052 F:      arch/x86/
22053
22054 X86 ENTRY CODE
22055 M:      Andy Lutomirski <luto@kernel.org>
22056 L:      linux-kernel@vger.kernel.org
22057 S:      Maintained
22058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22059 F:      arch/x86/entry/
22060
22061 X86 MCE INFRASTRUCTURE
22062 M:      Tony Luck <tony.luck@intel.com>
22063 M:      Borislav Petkov <bp@alien8.de>
22064 L:      linux-edac@vger.kernel.org
22065 S:      Maintained
22066 F:      Documentation/ABI/testing/sysfs-mce
22067 F:      Documentation/x86/x86_64/machinecheck.rst
22068 F:      arch/x86/kernel/cpu/mce/*
22069
22070 X86 MICROCODE UPDATE SUPPORT
22071 M:      Borislav Petkov <bp@alien8.de>
22072 S:      Maintained
22073 F:      arch/x86/kernel/cpu/microcode/*
22074
22075 X86 MM
22076 M:      Dave Hansen <dave.hansen@linux.intel.com>
22077 M:      Andy Lutomirski <luto@kernel.org>
22078 M:      Peter Zijlstra <peterz@infradead.org>
22079 L:      linux-kernel@vger.kernel.org
22080 S:      Maintained
22081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22082 F:      arch/x86/mm/
22083
22084 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22085 M:      Hans de Goede <hdegoede@redhat.com>
22086 L:      platform-driver-x86@vger.kernel.org
22087 S:      Maintained
22088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22089 F:      drivers/platform/x86/x86-android-tablets.c
22090
22091 X86 PLATFORM DRIVERS
22092 M:      Hans de Goede <hdegoede@redhat.com>
22093 M:      Mark Gross <markgross@kernel.org>
22094 L:      platform-driver-x86@vger.kernel.org
22095 S:      Maintained
22096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22097 F:      drivers/platform/olpc/
22098 F:      drivers/platform/x86/
22099
22100 X86 PLATFORM DRIVERS - ARCH
22101 R:      Darren Hart <dvhart@infradead.org>
22102 R:      Andy Shevchenko <andy@infradead.org>
22103 L:      platform-driver-x86@vger.kernel.org
22104 L:      x86@kernel.org
22105 S:      Maintained
22106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22107 F:      arch/x86/platform
22108
22109 X86 PLATFORM UV HPE SUPERDOME FLEX
22110 M:      Steve Wahl <steve.wahl@hpe.com>
22111 R:      Mike Travis <mike.travis@hpe.com>
22112 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22113 R:      Russ Anderson <russ.anderson@hpe.com>
22114 S:      Supported
22115 F:      arch/x86/include/asm/uv/
22116 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22117 F:      arch/x86/platform/uv/
22118
22119 X86 STACK UNWINDING
22120 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22121 M:      Peter Zijlstra <peterz@infradead.org>
22122 S:      Supported
22123 F:      arch/x86/include/asm/unwind*.h
22124 F:      arch/x86/kernel/dumpstack.c
22125 F:      arch/x86/kernel/stacktrace.c
22126 F:      arch/x86/kernel/unwind_*.c
22127
22128 X86 VDSO
22129 M:      Andy Lutomirski <luto@kernel.org>
22130 L:      linux-kernel@vger.kernel.org
22131 S:      Maintained
22132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22133 F:      arch/x86/entry/vdso/
22134
22135 XARRAY
22136 M:      Matthew Wilcox <willy@infradead.org>
22137 L:      linux-fsdevel@vger.kernel.org
22138 S:      Supported
22139 F:      Documentation/core-api/xarray.rst
22140 F:      include/linux/idr.h
22141 F:      include/linux/xarray.h
22142 F:      lib/idr.c
22143 F:      lib/xarray.c
22144 F:      tools/testing/radix-tree
22145
22146 XBOX DVD IR REMOTE
22147 M:      Benjamin Valentin <benpicco@googlemail.com>
22148 S:      Maintained
22149 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22150 F:      drivers/media/rc/xbox_remote.c
22151
22152 XC2028/3028 TUNER DRIVER
22153 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22154 L:      linux-media@vger.kernel.org
22155 S:      Maintained
22156 W:      https://linuxtv.org
22157 T:      git git://linuxtv.org/media_tree.git
22158 F:      drivers/media/tuners/xc2028.*
22159
22160 XDP (eXpress Data Path)
22161 M:      Alexei Starovoitov <ast@kernel.org>
22162 M:      Daniel Borkmann <daniel@iogearbox.net>
22163 M:      David S. Miller <davem@davemloft.net>
22164 M:      Jakub Kicinski <kuba@kernel.org>
22165 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22166 M:      John Fastabend <john.fastabend@gmail.com>
22167 L:      netdev@vger.kernel.org
22168 L:      bpf@vger.kernel.org
22169 S:      Supported
22170 F:      include/net/xdp.h
22171 F:      include/net/xdp_priv.h
22172 F:      include/trace/events/xdp.h
22173 F:      kernel/bpf/cpumap.c
22174 F:      kernel/bpf/devmap.c
22175 F:      net/core/xdp.c
22176 F:      samples/bpf/xdp*
22177 F:      tools/testing/selftests/bpf/*xdp*
22178 F:      tools/testing/selftests/bpf/*/*xdp*
22179 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22180 F:      drivers/net/ethernet/*/*/*xdp*
22181 K:      (?:\b|_)xdp(?:\b|_)
22182
22183 XDP SOCKETS (AF_XDP)
22184 M:      Björn Töpel <bjorn@kernel.org>
22185 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22186 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22187 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22188 L:      netdev@vger.kernel.org
22189 L:      bpf@vger.kernel.org
22190 S:      Maintained
22191 F:      Documentation/networking/af_xdp.rst
22192 F:      include/net/xdp_sock*
22193 F:      include/net/xsk_buff_pool.h
22194 F:      include/uapi/linux/if_xdp.h
22195 F:      include/uapi/linux/xdp_diag.h
22196 F:      include/net/netns/xdp.h
22197 F:      net/xdp/
22198 F:      tools/testing/selftests/bpf/*xsk*
22199
22200 XEN BLOCK SUBSYSTEM
22201 M:      Roger Pau Monné <roger.pau@citrix.com>
22202 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22203 S:      Supported
22204 F:      drivers/block/xen*
22205 F:      drivers/block/xen-blkback/*
22206
22207 XEN HYPERVISOR ARM
22208 M:      Stefano Stabellini <sstabellini@kernel.org>
22209 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22210 S:      Maintained
22211 F:      arch/arm/include/asm/xen/
22212 F:      arch/arm/xen/
22213
22214 XEN HYPERVISOR ARM64
22215 M:      Stefano Stabellini <sstabellini@kernel.org>
22216 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22217 S:      Maintained
22218 F:      arch/arm64/include/asm/xen/
22219 F:      arch/arm64/xen/
22220
22221 XEN HYPERVISOR INTERFACE
22222 M:      Juergen Gross <jgross@suse.com>
22223 M:      Stefano Stabellini <sstabellini@kernel.org>
22224 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22225 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22226 S:      Supported
22227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22228 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22229 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22230 F:      drivers/*/xen-*front.c
22231 F:      drivers/xen/
22232 F:      include/uapi/xen/
22233 F:      include/xen/
22234 F:      kernel/configs/xen.config
22235
22236 XEN HYPERVISOR X86
22237 M:      Juergen Gross <jgross@suse.com>
22238 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22239 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22240 S:      Supported
22241 F:      arch/x86/configs/xen.config
22242 F:      arch/x86/include/asm/pvclock-abi.h
22243 F:      arch/x86/include/asm/xen/
22244 F:      arch/x86/platform/pvh/
22245 F:      arch/x86/xen/
22246
22247 XEN NETWORK BACKEND DRIVER
22248 M:      Wei Liu <wei.liu@kernel.org>
22249 M:      Paul Durrant <paul@xen.org>
22250 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22251 L:      netdev@vger.kernel.org
22252 S:      Supported
22253 F:      drivers/net/xen-netback/*
22254
22255 XEN PCI SUBSYSTEM
22256 M:      Juergen Gross <jgross@suse.com>
22257 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22258 S:      Supported
22259 F:      arch/x86/pci/*xen*
22260 F:      drivers/pci/*xen*
22261
22262 XEN PVSCSI DRIVERS
22263 M:      Juergen Gross <jgross@suse.com>
22264 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22265 L:      linux-scsi@vger.kernel.org
22266 S:      Supported
22267 F:      drivers/scsi/xen-scsifront.c
22268 F:      drivers/xen/xen-scsiback.c
22269 F:      include/xen/interface/io/vscsiif.h
22270
22271 XEN PVUSB DRIVER
22272 M:      Juergen Gross <jgross@suse.com>
22273 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22274 L:      linux-usb@vger.kernel.org
22275 S:      Supported
22276 F:      drivers/usb/host/xen*
22277 F:      include/xen/interface/io/usbif.h
22278
22279 XEN SOUND FRONTEND DRIVER
22280 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22281 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22282 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22283 S:      Supported
22284 F:      sound/xen/*
22285
22286 XEN SWIOTLB SUBSYSTEM
22287 M:      Juergen Gross <jgross@suse.com>
22288 M:      Stefano Stabellini <sstabellini@kernel.org>
22289 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22290 L:      iommu@lists.linux.dev
22291 S:      Supported
22292 F:      arch/x86/xen/*swiotlb*
22293 F:      drivers/xen/*swiotlb*
22294
22295 XFS FILESYSTEM
22296 C:      irc://irc.oftc.net/xfs
22297 M:      Darrick J. Wong <djwong@kernel.org>
22298 L:      linux-xfs@vger.kernel.org
22299 S:      Supported
22300 W:      http://xfs.org/
22301 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22302 F:      Documentation/ABI/testing/sysfs-fs-xfs
22303 F:      Documentation/admin-guide/xfs.rst
22304 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22305 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22306 F:      fs/xfs/
22307 F:      include/uapi/linux/dqblk_xfs.h
22308 F:      include/uapi/linux/fsmap.h
22309
22310 XILINX AMS DRIVER
22311 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22312 L:      linux-iio@vger.kernel.org
22313 S:      Maintained
22314 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22315 F:      drivers/iio/adc/xilinx-ams.c
22316
22317 XILINX AXI ETHERNET DRIVER
22318 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22319 S:      Maintained
22320 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22321
22322 XILINX CAN DRIVER
22323 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22324 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22325 L:      linux-can@vger.kernel.org
22326 S:      Maintained
22327 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22328 F:      drivers/net/can/xilinx_can.c
22329
22330 XILINX GPIO DRIVER
22331 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22332 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22333 R:      Michal Simek <michal.simek@xilinx.com>
22334 S:      Maintained
22335 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22336 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22337 F:      drivers/gpio/gpio-xilinx.c
22338 F:      drivers/gpio/gpio-zynq.c
22339
22340 XILINX SD-FEC IP CORES
22341 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22342 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22343 S:      Maintained
22344 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22345 F:      Documentation/misc-devices/xilinx_sdfec.rst
22346 F:      drivers/misc/Kconfig
22347 F:      drivers/misc/Makefile
22348 F:      drivers/misc/xilinx_sdfec.c
22349 F:      include/uapi/misc/xilinx_sdfec.h
22350
22351 XILINX PWM DRIVER
22352 M:      Sean Anderson <sean.anderson@seco.com>
22353 S:      Maintained
22354 F:      drivers/pwm/pwm-xilinx.c
22355 F:      include/clocksource/timer-xilinx.h
22356
22357 XILINX UARTLITE SERIAL DRIVER
22358 M:      Peter Korsgaard <jacmet@sunsite.dk>
22359 L:      linux-serial@vger.kernel.org
22360 S:      Maintained
22361 F:      drivers/tty/serial/uartlite.c
22362
22363 XILINX VIDEO IP CORES
22364 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22365 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22366 L:      linux-media@vger.kernel.org
22367 S:      Supported
22368 T:      git git://linuxtv.org/media_tree.git
22369 F:      Documentation/devicetree/bindings/media/xilinx/
22370 F:      drivers/media/platform/xilinx/
22371 F:      include/uapi/linux/xilinx-v4l2-controls.h
22372
22373 XILINX ZYNQMP DPDMA DRIVER
22374 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22375 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22376 L:      dmaengine@vger.kernel.org
22377 S:      Supported
22378 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22379 F:      drivers/dma/xilinx/xilinx_dpdma.c
22380 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22381
22382 XILINX ZYNQMP PSGTR PHY DRIVER
22383 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22384 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22385 L:      linux-kernel@vger.kernel.org
22386 S:      Supported
22387 T:      git https://github.com/Xilinx/linux-xlnx.git
22388 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22389 F:      drivers/phy/xilinx/phy-zynqmp.c
22390
22391 XILINX ZYNQMP SHA3 DRIVER
22392 M:      Harsha <harsha.harsha@xilinx.com>
22393 S:      Maintained
22394 F:      drivers/crypto/xilinx/zynqmp-sha.c
22395
22396 XILINX EVENT MANAGEMENT DRIVER
22397 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22398 S:      Maintained
22399 F:      drivers/soc/xilinx/xlnx_event_manager.c
22400 F:      include/linux/firmware/xlnx-event-manager.h
22401
22402 XILLYBUS DRIVER
22403 M:      Eli Billauer <eli.billauer@gmail.com>
22404 L:      linux-kernel@vger.kernel.org
22405 S:      Supported
22406 F:      drivers/char/xillybus/
22407
22408 XLP9XX I2C DRIVER
22409 M:      George Cherian <gcherian@marvell.com>
22410 L:      linux-i2c@vger.kernel.org
22411 S:      Supported
22412 W:      http://www.marvell.com
22413 F:      drivers/i2c/busses/i2c-xlp9xx.c
22414
22415 XRA1403 GPIO EXPANDER
22416 M:      Nandor Han <nandor.han@ge.com>
22417 M:      Semi Malinen <semi.malinen@ge.com>
22418 L:      linux-gpio@vger.kernel.org
22419 S:      Maintained
22420 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22421 F:      drivers/gpio/gpio-xra1403.c
22422
22423 XTENSA XTFPGA PLATFORM SUPPORT
22424 M:      Max Filippov <jcmvbkbc@gmail.com>
22425 L:      linux-xtensa@linux-xtensa.org
22426 S:      Maintained
22427 F:      drivers/spi/spi-xtensa-xtfpga.c
22428 F:      sound/soc/xtensa/xtfpga-i2s.c
22429
22430 YAM DRIVER FOR AX.25
22431 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22432 L:      linux-hams@vger.kernel.org
22433 S:      Maintained
22434 F:      drivers/net/hamradio/yam*
22435 F:      include/linux/yam.h
22436
22437 YAMA SECURITY MODULE
22438 M:      Kees Cook <keescook@chromium.org>
22439 S:      Supported
22440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22441 F:      Documentation/admin-guide/LSM/Yama.rst
22442 F:      security/yama/
22443
22444 YEALINK PHONE DRIVER
22445 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22446 L:      usbb2k-api-dev@nongnu.org
22447 S:      Maintained
22448 F:      Documentation/input/devices/yealink.rst
22449 F:      drivers/input/misc/yealink.*
22450
22451 Z8530 DRIVER FOR AX.25
22452 M:      Joerg Reuter <jreuter@yaina.de>
22453 L:      linux-hams@vger.kernel.org
22454 S:      Maintained
22455 W:      http://yaina.de/jreuter/
22456 W:      http://www.qsl.net/dl1bke/
22457 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22458 F:      drivers/net/hamradio/*scc.c
22459 F:      drivers/net/hamradio/z8530.h
22460
22461 ZBUD COMPRESSED PAGE ALLOCATOR
22462 M:      Seth Jennings <sjenning@redhat.com>
22463 M:      Dan Streetman <ddstreet@ieee.org>
22464 L:      linux-mm@kvack.org
22465 S:      Maintained
22466 F:      mm/zbud.c
22467
22468 Z3FOLD COMPRESSED PAGE ALLOCATOR
22469 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22470 R:      Miaohe Lin <linmiaohe@huawei.com>
22471 L:      linux-mm@kvack.org
22472 S:      Maintained
22473 F:      mm/z3fold.c
22474
22475 ZD1211RW WIRELESS DRIVER
22476 M:      Ulrich Kunitz <kune@deine-taler.de>
22477 L:      linux-wireless@vger.kernel.org
22478 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22479 S:      Maintained
22480 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22481 F:      drivers/net/wireless/zydas/zd1211rw/
22482
22483 ZD1301 MEDIA DRIVER
22484 M:      Antti Palosaari <crope@iki.fi>
22485 L:      linux-media@vger.kernel.org
22486 S:      Maintained
22487 W:      https://linuxtv.org/
22488 W:      http://palosaari.fi/linux/
22489 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22490 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22491
22492 ZD1301_DEMOD MEDIA DRIVER
22493 M:      Antti Palosaari <crope@iki.fi>
22494 L:      linux-media@vger.kernel.org
22495 S:      Maintained
22496 W:      https://linuxtv.org/
22497 W:      http://palosaari.fi/linux/
22498 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22499 F:      drivers/media/dvb-frontends/zd1301_demod*
22500
22501 ZHAOXIN PROCESSOR SUPPORT
22502 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22503 L:      linux-kernel@vger.kernel.org
22504 S:      Maintained
22505 F:      arch/x86/kernel/cpu/zhaoxin.c
22506
22507 ZONEFS FILESYSTEM
22508 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22509 M:      Naohiro Aota <naohiro.aota@wdc.com>
22510 R:      Johannes Thumshirn <jth@kernel.org>
22511 L:      linux-fsdevel@vger.kernel.org
22512 S:      Maintained
22513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22514 F:      Documentation/filesystems/zonefs.rst
22515 F:      fs/zonefs/
22516
22517 ZPOOL COMPRESSED PAGE STORAGE API
22518 M:      Dan Streetman <ddstreet@ieee.org>
22519 L:      linux-mm@kvack.org
22520 S:      Maintained
22521 F:      include/linux/zpool.h
22522 F:      mm/zpool.c
22523
22524 ZR36067 VIDEO FOR LINUX DRIVER
22525 M:      Corentin Labbe <clabbe@baylibre.com>
22526 L:      mjpeg-users@lists.sourceforge.net
22527 L:      linux-media@vger.kernel.org
22528 S:      Maintained
22529 W:      http://mjpeg.sourceforge.net/driver-zoran/
22530 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22531 F:      Documentation/driver-api/media/drivers/zoran.rst
22532 F:      drivers/staging/media/zoran/
22533
22534 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22535 M:      Minchan Kim <minchan@kernel.org>
22536 M:      Nitin Gupta <ngupta@vflare.org>
22537 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22538 L:      linux-kernel@vger.kernel.org
22539 S:      Maintained
22540 F:      Documentation/admin-guide/blockdev/zram.rst
22541 F:      drivers/block/zram/
22542
22543 ZS DECSTATION Z85C30 SERIAL DRIVER
22544 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22545 S:      Maintained
22546 F:      drivers/tty/serial/zs.*
22547
22548 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22549 M:      Minchan Kim <minchan@kernel.org>
22550 M:      Nitin Gupta <ngupta@vflare.org>
22551 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22552 L:      linux-mm@kvack.org
22553 S:      Maintained
22554 F:      Documentation/mm/zsmalloc.rst
22555 F:      include/linux/zsmalloc.h
22556 F:      mm/zsmalloc.c
22557
22558 ZSTD
22559 M:      Nick Terrell <terrelln@fb.com>
22560 S:      Maintained
22561 B:      https://github.com/facebook/zstd/issues
22562 T:      git git://github.com/terrelln/linux.git
22563 F:      include/linux/zstd*
22564 F:      lib/zstd/
22565 F:      lib/decompress_unzstd.c
22566 F:      crypto/zstd.c
22567 N:      zstd
22568 K:      zstd
22569
22570 ZSWAP COMPRESSED SWAP CACHING
22571 M:      Seth Jennings <sjenning@redhat.com>
22572 M:      Dan Streetman <ddstreet@ieee.org>
22573 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22574 L:      linux-mm@kvack.org
22575 S:      Maintained
22576 F:      mm/zswap.c
22577
22578 THE REST
22579 M:      Linus Torvalds <torvalds@linux-foundation.org>
22580 L:      linux-kernel@vger.kernel.org
22581 S:      Buried alive in reporters
22582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22583 F:      *
22584 F:      */