f0053927ac8b173f8a8e8d72f53b5abab6fe258a
[platform/kernel/linux-rpi.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-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:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <rui.zhang@intel.com>
383 L:      linux-acpi@vger.kernel.org
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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:      http://ez.analog.com/community/linux-device-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 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
596 M:      Michael Hennerich <michael.hennerich@analog.com>
597 S:      Supported
598 W:      http://wiki.analog.com/ADXL345
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
601 F:      drivers/input/misc/adxl34x.c
602
603 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
604 M:      Michael Hennerich <michael.hennerich@analog.com>
605 S:      Supported
606 W:      http://ez.analog.com/community/linux-device-drivers
607 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
608 F:      drivers/iio/accel/adxl372.c
609 F:      drivers/iio/accel/adxl372_i2c.c
610 F:      drivers/iio/accel/adxl372_spi.c
611
612 AF9013 MEDIA DRIVER
613 M:      Antti Palosaari <crope@iki.fi>
614 L:      linux-media@vger.kernel.org
615 S:      Maintained
616 W:      https://linuxtv.org
617 W:      http://palosaari.fi/linux/
618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
619 T:      git git://linuxtv.org/anttip/media_tree.git
620 F:      drivers/media/dvb-frontends/af9013*
621
622 AF9033 MEDIA DRIVER
623 M:      Antti Palosaari <crope@iki.fi>
624 L:      linux-media@vger.kernel.org
625 S:      Maintained
626 W:      https://linuxtv.org
627 W:      http://palosaari.fi/linux/
628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
629 T:      git git://linuxtv.org/anttip/media_tree.git
630 F:      drivers/media/dvb-frontends/af9033*
631
632 AFFS FILE SYSTEM
633 M:      David Sterba <dsterba@suse.com>
634 L:      linux-fsdevel@vger.kernel.org
635 S:      Odd Fixes
636 F:      Documentation/filesystems/affs.rst
637 F:      fs/affs/
638
639 AFS FILESYSTEM
640 M:      David Howells <dhowells@redhat.com>
641 M:      Marc Dionne <marc.dionne@auristor.com>
642 L:      linux-afs@lists.infradead.org
643 S:      Supported
644 W:      https://www.infradead.org/~dhowells/kafs/
645 F:      Documentation/filesystems/afs.rst
646 F:      fs/afs/
647 F:      include/trace/events/afs.h
648
649 AGPGART DRIVER
650 M:      David Airlie <airlied@linux.ie>
651 S:      Maintained
652 T:      git git://anongit.freedesktop.org/drm/drm
653 F:      drivers/char/agp/
654 F:      include/linux/agp*
655 F:      include/uapi/linux/agp*
656
657 AHA152X SCSI DRIVER
658 M:      "Juergen E. Fischer" <fischer@norbit.de>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aha152x*
662 F:      drivers/scsi/pcmcia/aha152x*
663
664 AIC7XXX / AIC79XX SCSI DRIVER
665 M:      Hannes Reinecke <hare@suse.com>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aic7xxx/
669
670 AIMSLAB FM RADIO RECEIVER DRIVER
671 M:      Hans Verkuil <hverkuil@xs4all.nl>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 T:      git git://linuxtv.org/media_tree.git
676 F:      drivers/media/radio/radio-aimslab*
677
678 AIO
679 M:      Benjamin LaHaise <bcrl@kvack.org>
680 L:      linux-aio@kvack.org
681 S:      Supported
682 F:      fs/aio.c
683 F:      include/linux/*aio*.h
684
685 AIRSPY MEDIA DRIVER
686 M:      Antti Palosaari <crope@iki.fi>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 W:      http://palosaari.fi/linux/
691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
692 T:      git git://linuxtv.org/anttip/media_tree.git
693 F:      drivers/media/usb/airspy/
694
695 ALACRITECH GIGABIT ETHERNET DRIVER
696 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
697 S:      Maintained
698 F:      drivers/net/ethernet/alacritech/*
699
700 ALCATEL SPEEDTOUCH USB DRIVER
701 M:      Duncan Sands <duncan.sands@free.fr>
702 L:      linux-usb@vger.kernel.org
703 S:      Maintained
704 W:      http://www.linux-usb.org/SpeedTouch/
705 F:      drivers/usb/atm/speedtch.c
706 F:      drivers/usb/atm/usbatm.c
707
708 ALCHEMY AU1XX0 MMC DRIVER
709 M:      Manuel Lauss <manuel.lauss@gmail.com>
710 S:      Maintained
711 F:      drivers/mmc/host/au1xmmc.c
712
713 ALI1563 I2C DRIVER
714 M:      Rudolf Marek <r.marek@assembler.cz>
715 L:      linux-i2c@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/i2c/busses/i2c-ali1563.rst
718 F:      drivers/i2c/busses/i2c-ali1563.c
719
720 ALIENWARE WMI DRIVER
721 L:      Dell.Client.Kernel@dell.com
722 S:      Maintained
723 F:      drivers/platform/x86/dell/alienware-wmi.c
724
725 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
726 M:      Tomislav Denis <tomislav.denis@avl.com>
727 L:      linux-iio@vger.kernel.org
728 S:      Maintained
729 W:      http://www.allsensors.com/
730 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
731 F:      drivers/iio/pressure/dlhl60d.c
732
733 ALLEGRO DVT VIDEO IP CORE DRIVER
734 M:      Michael Tretter <m.tretter@pengutronix.de>
735 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
739 F:      drivers/media/platform/allegro-dvt/
740
741 ALLWINNER A10 CSI DRIVER
742 M:      Maxime Ripard <mripard@kernel.org>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 T:      git git://linuxtv.org/media_tree.git
746 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
747 F:      drivers/media/platform/sunxi/sun4i-csi/
748
749 ALLWINNER CPUFREQ DRIVER
750 M:      Yangtao Li <tiny.windzz@gmail.com>
751 L:      linux-pm@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
754 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
755
756 ALLWINNER CRYPTO DRIVERS
757 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
758 L:      linux-crypto@vger.kernel.org
759 S:      Maintained
760 F:      drivers/crypto/allwinner/
761
762 ALLWINNER HARDWARE SPINLOCK SUPPORT
763 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
764 S:      Maintained
765 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
766 F:      drivers/hwspinlock/sun6i_hwspinlock.c
767
768 ALLWINNER THERMAL DRIVER
769 M:      Vasily Khoruzhick <anarsoul@gmail.com>
770 M:      Yangtao Li <tiny.windzz@gmail.com>
771 L:      linux-pm@vger.kernel.org
772 S:      Maintained
773 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
774 F:      drivers/thermal/sun8i_thermal.c
775
776 ALLWINNER VPU DRIVER
777 M:      Maxime Ripard <mripard@kernel.org>
778 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 F:      drivers/staging/media/sunxi/cedrus/
782
783 ALPHA PORT
784 M:      Richard Henderson <rth@twiddle.net>
785 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
786 M:      Matt Turner <mattst88@gmail.com>
787 L:      linux-alpha@vger.kernel.org
788 S:      Odd Fixes
789 F:      arch/alpha/
790
791 ALPS PS/2 TOUCHPAD DRIVER
792 R:      Pali Rohár <pali@kernel.org>
793 F:      drivers/input/mouse/alps.*
794
795 ALTERA I2C CONTROLLER DRIVER
796 M:      Thor Thayer <thor.thayer@linux.intel.com>
797 S:      Maintained
798 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
799 F:      drivers/i2c/busses/i2c-altera.c
800
801 ALTERA MAILBOX DRIVER
802 M:      Joyce Ooi <joyce.ooi@intel.com>
803 S:      Maintained
804 F:      drivers/mailbox/mailbox-altera.c
805
806 ALTERA MSGDMA IP CORE DRIVER
807 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
808 R:      Stefan Roese <sr@denx.de>
809 L:      dmaengine@vger.kernel.org
810 S:      Odd Fixes
811 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
812 F:      drivers/dma/altera-msgdma.c
813
814 ALTERA PIO DRIVER
815 M:      Mun Yew Tham <mun.yew.tham@intel.com>
816 L:      linux-gpio@vger.kernel.org
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera.c
819
820 ALTERA SYSTEM MANAGER DRIVER
821 M:      Thor Thayer <thor.thayer@linux.intel.com>
822 S:      Maintained
823 F:      drivers/mfd/altera-sysmgr.c
824 F:      include/linux/mfd/altera-sysmgr.h
825
826 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
827 M:      Thor Thayer <thor.thayer@linux.intel.com>
828 S:      Maintained
829 F:      drivers/gpio/gpio-altera-a10sr.c
830 F:      drivers/mfd/altera-a10sr.c
831 F:      drivers/reset/reset-a10sr.c
832 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
833 F:      include/linux/mfd/altera-a10sr.h
834
835 ALTERA TRIPLE SPEED ETHERNET DRIVER
836 M:      Joyce Ooi <joyce.ooi@intel.com>
837 L:      netdev@vger.kernel.org
838 S:      Maintained
839 F:      drivers/net/ethernet/altera/
840
841 ALTERA UART/JTAG UART SERIAL DRIVERS
842 M:      Tobias Klauser <tklauser@distanz.ch>
843 L:      linux-serial@vger.kernel.org
844 S:      Maintained
845 F:      drivers/tty/serial/altera_jtaguart.c
846 F:      drivers/tty/serial/altera_uart.c
847 F:      include/linux/altera_jtaguart.h
848 F:      include/linux/altera_uart.h
849
850 AMAZON ANNAPURNA LABS FIC DRIVER
851 M:      Talel Shenhar <talel@amazon.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
854 F:      drivers/irqchip/irq-al-fic.c
855
856 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
857 M:      Talel Shenhar <talel@amazon.com>
858 M:      Talel Shenhar <talelshenhar@gmail.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
861 F:      drivers/edac/al_mc_edac.c
862
863 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
864 M:      Talel Shenhar <talel@amazon.com>
865 S:      Maintained
866 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
867 F:      drivers/thermal/thermal_mmio.c
868
869 AMAZON ETHERNET DRIVERS
870 M:      Netanel Belgazal <netanel@amazon.com>
871 M:      Arthur Kiyanovski <akiyano@amazon.com>
872 R:      Guy Tzalik <gtzalik@amazon.com>
873 R:      Saeed Bishara <saeedb@amazon.com>
874 L:      netdev@vger.kernel.org
875 S:      Supported
876 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
877 F:      drivers/net/ethernet/amazon/
878
879 AMAZON RDMA EFA DRIVER
880 M:      Gal Pressman <galpress@amazon.com>
881 R:      Yossi Leybovich <sleybo@amazon.com>
882 L:      linux-rdma@vger.kernel.org
883 S:      Supported
884 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
885 F:      drivers/infiniband/hw/efa/
886 F:      include/uapi/rdma/efa-abi.h
887
888 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
889 M:      Tom Lendacky <thomas.lendacky@amd.com>
890 M:      John Allen <john.allen@amd.com>
891 L:      linux-crypto@vger.kernel.org
892 S:      Supported
893 F:      drivers/crypto/ccp/
894 F:      include/linux/ccp.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
897 M:      Brijesh Singh <brijesh.singh@amd.com>
898 M:      Tom Lendacky <thomas.lendacky@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/sev*
902 F:      include/uapi/linux/psp-sev.h
903
904 AMD DISPLAY CORE
905 M:      Harry Wentland <harry.wentland@amd.com>
906 M:      Leo Li <sunpeng.li@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/display/
911
912 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
913 M:      Huang Rui <ray.huang@amd.com>
914 L:      linux-hwmon@vger.kernel.org
915 S:      Supported
916 F:      Documentation/hwmon/fam15h_power.rst
917 F:      drivers/hwmon/fam15h_power.c
918
919 AMD FCH GPIO DRIVER
920 M:      Enrico Weigelt, metux IT consult <info@metux.net>
921 L:      linux-gpio@vger.kernel.org
922 S:      Maintained
923 F:      drivers/gpio/gpio-amd-fch.c
924 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
925
926 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
927 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
928 S:      Orphan
929 F:      drivers/usb/gadget/udc/amd5536udc.*
930
931 AMD GEODE PROCESSOR/CHIPSET SUPPORT
932 M:      Andres Salomon <dilinger@queued.net>
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Supported
935 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
936 F:      arch/x86/include/asm/geode.h
937 F:      drivers/char/hw_random/geode-rng.c
938 F:      drivers/crypto/geode*
939 F:      drivers/video/fbdev/geode/
940
941 AMD IOMMU (AMD-VI)
942 M:      Joerg Roedel <joro@8bytes.org>
943 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
944 L:      iommu@lists.linux-foundation.org
945 L:      iommu@lists.linux.dev
946 S:      Maintained
947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
948 F:      drivers/iommu/amd/
949 F:      include/linux/amd-iommu.h
950
951 AMD KFD
952 M:      Felix Kuehling <Felix.Kuehling@amd.com>
953 L:      amd-gfx@lists.freedesktop.org
954 S:      Supported
955 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
956 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
957 F:      drivers/gpu/drm/amd/amdkfd/
958 F:      drivers/gpu/drm/amd/include/cik_structs.h
959 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
960 F:      drivers/gpu/drm/amd/include/v9_structs.h
961 F:      drivers/gpu/drm/amd/include/vi_structs.h
962 F:      include/uapi/linux/kfd_ioctl.h
963
964 AMD SPI DRIVER
965 M:      Sanjay R Mehta <sanju.mehta@amd.com>
966 S:      Maintained
967 F:      drivers/spi/spi-amd.c
968
969 AMD MP2 I2C DRIVER
970 M:      Elie Morisse <syniurge@gmail.com>
971 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
972 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
973 L:      linux-i2c@vger.kernel.org
974 S:      Maintained
975 F:      drivers/i2c/busses/i2c-amd-mp2*
976
977 AMD PMC DRIVER
978 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
979 L:      platform-driver-x86@vger.kernel.org
980 S:      Maintained
981 F:      drivers/platform/x86/amd-pmc.*
982
983 AMD POWERPLAY AND SWSMU
984 M:      Evan Quan <evan.quan@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/pm/
989
990 AMD PTDMA DRIVER
991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
992 L:      dmaengine@vger.kernel.org
993 S:      Maintained
994 F:      drivers/dma/ptdma/
995
996 AMD SEATTLE DEVICE TREE SUPPORT
997 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
998 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
999 M:      Tom Lendacky <thomas.lendacky@amd.com>
1000 S:      Supported
1001 F:      arch/arm64/boot/dts/amd/
1002
1003 AMD XGBE DRIVER
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 L:      netdev@vger.kernel.org
1006 S:      Supported
1007 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1008 F:      drivers/net/ethernet/amd/xgbe/
1009
1010 AMD SENSOR FUSION HUB DRIVER
1011 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1012 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1013 L:      linux-input@vger.kernel.org
1014 S:      Maintained
1015 F:      Documentation/hid/amd-sfh*
1016 F:      drivers/hid/amd-sfh-hid/
1017
1018 AMS AS73211 DRIVER
1019 M:      Christian Eggers <ceggers@arri.de>
1020 L:      linux-iio@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1023 F:      drivers/iio/light/as73211.c
1024
1025 ANALOG DEVICES INC AD7192 DRIVER
1026 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1027 L:      linux-iio@vger.kernel.org
1028 S:      Supported
1029 W:      http://ez.analog.com/community/linux-device-drivers
1030 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1031 F:      drivers/iio/adc/ad7192.c
1032
1033 ANALOG DEVICES INC AD7292 DRIVER
1034 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1039 F:      drivers/iio/adc/ad7292.c
1040
1041 ANALOG DEVICES INC AD7768-1 DRIVER
1042 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1047 F:      drivers/iio/adc/ad7768-1.c
1048
1049 ANALOG DEVICES INC AD7780 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 M:      Renato Lui Geh <renatogeh@gmail.com>
1052 L:      linux-iio@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1056 F:      drivers/iio/adc/ad7780.c
1057
1058 ANALOG DEVICES INC AD9389B DRIVER
1059 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1060 L:      linux-media@vger.kernel.org
1061 S:      Maintained
1062 F:      drivers/media/i2c/ad9389b*
1063
1064 ANALOG DEVICES INC ADGS1408 DRIVER
1065 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1066 S:      Supported
1067 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1068 F:      drivers/mux/adgs1408.c
1069
1070 ANALOG DEVICES INC ADIN DRIVER
1071 M:      Michael Hennerich <michael.hennerich@analog.com>
1072 L:      netdev@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1076 F:      drivers/net/phy/adin.c
1077
1078 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1079 M:      Nuno Sa <nuno.sa@analog.com>
1080 L:      linux-iio@vger.kernel.org
1081 S:      Supported
1082 F:      drivers/iio/imu/adis.c
1083 F:      include/linux/iio/imu/adis.h
1084
1085 ANALOG DEVICES INC ADIS16460 DRIVER
1086 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1091 F:      drivers/iio/imu/adis16460.c
1092
1093 ANALOG DEVICES INC ADIS16475 DRIVER
1094 M:      Nuno Sa <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 S:      Supported
1098 F:      drivers/iio/imu/adis16475.c
1099 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1100
1101 ANALOG DEVICES INC ADM1177 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-hwmon@vger.kernel.org
1104 S:      Supported
1105 W:      http://ez.analog.com/community/linux-device-drivers
1106 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1107 F:      drivers/hwmon/adm1177.c
1108
1109 ANALOG DEVICES INC ADP5061 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-pm@vger.kernel.org
1112 S:      Supported
1113 W:      http://ez.analog.com/community/linux-device-drivers
1114 F:      drivers/power/supply/adp5061.c
1115
1116 ANALOG DEVICES INC ADV7180 DRIVER
1117 M:      Lars-Peter Clausen <lars@metafoo.de>
1118 L:      linux-media@vger.kernel.org
1119 S:      Supported
1120 W:      http://ez.analog.com/community/linux-device-drivers
1121 F:      drivers/media/i2c/adv7180.c
1122 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1123
1124 ANALOG DEVICES INC ADV748X DRIVER
1125 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1126 L:      linux-media@vger.kernel.org
1127 S:      Maintained
1128 F:      drivers/media/i2c/adv748x/*
1129
1130 ANALOG DEVICES INC ADV7511 DRIVER
1131 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1132 L:      linux-media@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/media/i2c/adv7511*
1135
1136 ANALOG DEVICES INC ADV7604 DRIVER
1137 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1138 L:      linux-media@vger.kernel.org
1139 S:      Maintained
1140 F:      drivers/media/i2c/adv7604*
1141 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1142
1143 ANALOG DEVICES INC ADV7842 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7842*
1148
1149 ANALOG DEVICES INC ADXRS290 DRIVER
1150 M:      Nishant Malpani <nish.malpani25@gmail.com>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Supported
1153 F:      drivers/iio/gyro/adxrs290.c
1154 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1155
1156 ANALOG DEVICES INC ASOC CODEC DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 M:      Nuno Sá <nuno.sa@analog.com>
1159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1160 S:      Supported
1161 W:      http://wiki.analog.com/
1162 W:      http://ez.analog.com/community/linux-device-drivers
1163 F:      sound/soc/codecs/ad1*
1164 F:      sound/soc/codecs/ad7*
1165 F:      sound/soc/codecs/adau*
1166 F:      sound/soc/codecs/adav*
1167 F:      sound/soc/codecs/sigmadsp.*
1168 F:      sound/soc/codecs/ssm*
1169
1170 ANALOG DEVICES INC DMA DRIVERS
1171 M:      Lars-Peter Clausen <lars@metafoo.de>
1172 S:      Supported
1173 W:      http://ez.analog.com/community/linux-device-drivers
1174 F:      drivers/dma/dma-axi-dmac.c
1175
1176 ANALOG DEVICES INC IIO DRIVERS
1177 M:      Lars-Peter Clausen <lars@metafoo.de>
1178 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1179 S:      Supported
1180 W:      http://wiki.analog.com/
1181 W:      http://ez.analog.com/community/linux-device-drivers
1182 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1183 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1184 F:      Documentation/devicetree/bindings/iio/*/adi,*
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1186 F:      drivers/iio/*/ad*
1187 F:      drivers/iio/adc/ltc249*
1188 F:      drivers/iio/amplifiers/hmc425a.c
1189 F:      drivers/staging/iio/*/ad*
1190 X:      drivers/iio/*/adjd*
1191
1192 ANALOGBITS PLL LIBRARIES
1193 M:      Paul Walmsley <paul.walmsley@sifive.com>
1194 S:      Supported
1195 F:      drivers/clk/analogbits/*
1196 F:      include/linux/clk/analogbits*
1197
1198 ANDES ARCHITECTURE
1199 M:      Nick Hu <nickhu@andestech.com>
1200 M:      Greentime Hu <green.hu@gmail.com>
1201 M:      Vincent Chen <deanbo422@gmail.com>
1202 S:      Supported
1203 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1204 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1205 F:      Documentation/devicetree/bindings/nds32/
1206 F:      arch/nds32/
1207 N:      nds32
1208 K:      nds32
1209
1210 ANDROID CONFIG FRAGMENTS
1211 M:      Rob Herring <robh@kernel.org>
1212 S:      Supported
1213 F:      kernel/configs/android*
1214
1215 ANDROID DRIVERS
1216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1217 M:      Arve Hjønnevåg <arve@android.com>
1218 M:      Todd Kjos <tkjos@android.com>
1219 M:      Martijn Coenen <maco@android.com>
1220 M:      Joel Fernandes <joel@joelfernandes.org>
1221 M:      Christian Brauner <christian@brauner.io>
1222 M:      Hridya Valsaraju <hridya@google.com>
1223 M:      Suren Baghdasaryan <surenb@google.com>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Supported
1226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1227 F:      drivers/android/
1228 F:      drivers/staging/android/
1229
1230 ANDROID GOLDFISH PIC DRIVER
1231 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1232 S:      Supported
1233 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1234 F:      drivers/irqchip/irq-goldfish-pic.c
1235
1236 ANDROID GOLDFISH RTC DRIVER
1237 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1238 S:      Supported
1239 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1240 F:      drivers/rtc/rtc-goldfish.c
1241
1242 AOA (Apple Onboard Audio) ALSA DRIVER
1243 M:      Johannes Berg <johannes@sipsolutions.net>
1244 L:      linuxppc-dev@lists.ozlabs.org
1245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1246 S:      Maintained
1247 F:      sound/aoa/
1248
1249 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1250 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1251 L:      linux-iio@vger.kernel.org
1252 S:      Maintained
1253 F:      drivers/iio/adc/stx104.c
1254
1255 APM DRIVER
1256 M:      Jiri Kosina <jikos@kernel.org>
1257 S:      Odd fixes
1258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1259 F:      arch/x86/kernel/apm_32.c
1260 F:      drivers/char/apm-emulation.c
1261 F:      include/linux/apm_bios.h
1262 F:      include/uapi/linux/apm_bios.h
1263
1264 APPARMOR SECURITY MODULE
1265 M:      John Johansen <john.johansen@canonical.com>
1266 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1267 S:      Supported
1268 W:      wiki.apparmor.net
1269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1270 F:      Documentation/admin-guide/LSM/apparmor.rst
1271 F:      security/apparmor/
1272
1273 APPLE BCM5974 MULTITOUCH DRIVER
1274 M:      Henrik Rydberg <rydberg@bitmath.org>
1275 L:      linux-input@vger.kernel.org
1276 S:      Odd fixes
1277 F:      drivers/input/mouse/bcm5974.c
1278
1279 APPLE DART IOMMU DRIVER
1280 M:      Sven Peter <sven@svenpeter.dev>
1281 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1282 L:      iommu@lists.linux-foundation.org
1283 S:      Maintained
1284 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1285 F:      drivers/iommu/apple-dart.c
1286
1287 APPLE SMC DRIVER
1288 M:      Henrik Rydberg <rydberg@bitmath.org>
1289 L:      linux-hwmon@vger.kernel.org
1290 S:      Odd fixes
1291 F:      drivers/hwmon/applesmc.c
1292
1293 APPLETALK NETWORK LAYER
1294 L:      netdev@vger.kernel.org
1295 S:      Odd fixes
1296 F:      drivers/net/appletalk/
1297 F:      include/linux/atalk.h
1298 F:      include/uapi/linux/atalk.h
1299 F:      net/appletalk/
1300
1301 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1302 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1303 S:      Supported
1304 F:      arch/arm64/boot/dts/apm/
1305
1306 APPLIED MICRO (APM) X-GENE SOC EDAC
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1310 F:      drivers/edac/xgene_edac.c
1311
1312 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1313 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1314 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1315 S:      Supported
1316 F:      drivers/net/ethernet/apm/xgene-v2/
1317
1318 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1319 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1320 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1321 M:      Quan Nguyen <quan@os.amperecomputing.com>
1322 S:      Supported
1323 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1324 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1325 F:      drivers/net/ethernet/apm/xgene/
1326 F:      drivers/net/mdio/mdio-xgene.c
1327
1328 APPLIED MICRO (APM) X-GENE SOC PMU
1329 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1330 S:      Supported
1331 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1332 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1333 F:      drivers/perf/xgene_pmu.c
1334
1335 APTINA CAMERA SENSOR PLL
1336 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1337 L:      linux-media@vger.kernel.org
1338 S:      Maintained
1339 F:      drivers/media/i2c/aptina-pll.*
1340
1341 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1342 M:      Aleksa Savic <savicaleksa83@gmail.com>
1343 L:      linux-hwmon@vger.kernel.org
1344 S:      Maintained
1345 F:      Documentation/hwmon/aquacomputer_d5next.rst
1346 F:      drivers/hwmon/aquacomputer_d5next.c
1347
1348 AQUANTIA ETHERNET DRIVER (atlantic)
1349 M:      Igor Russkikh <irusskikh@marvell.com>
1350 L:      netdev@vger.kernel.org
1351 S:      Supported
1352 W:      https://www.marvell.com/
1353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1354 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1355 F:      drivers/net/ethernet/aquantia/atlantic/
1356
1357 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1358 M:      Egor Pomozov <epomozov@marvell.com>
1359 L:      netdev@vger.kernel.org
1360 S:      Supported
1361 W:      http://www.aquantia.com
1362 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1363
1364 ARASAN NAND CONTROLLER DRIVER
1365 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1366 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1367 L:      linux-mtd@lists.infradead.org
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1370 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1371
1372 ARC FRAMEBUFFER DRIVER
1373 M:      Jaya Kumar <jayalk@intworks.biz>
1374 S:      Maintained
1375 F:      drivers/video/fbdev/arcfb.c
1376 F:      drivers/video/fbdev/core/fb_defio.c
1377
1378 ARC PGU DRM DRIVER
1379 M:      Alexey Brodkin <abrodkin@synopsys.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1382 F:      drivers/gpu/drm/tiny/arcpgu.c
1383
1384 ARCNET NETWORK LAYER
1385 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1386 L:      netdev@vger.kernel.org
1387 S:      Maintained
1388 F:      drivers/net/arcnet/
1389 F:      include/uapi/linux/if_arcnet.h
1390
1391 ARDUCAM 64MP SENSOR DRIVER
1392 M:      Arducam Kernel Maintenance <info@arducam.com>
1393 L:      linux-media@vger.kernel.org
1394 S:      Maintained
1395 T:      git git://linuxtv.org/media_tree.git
1396 F:      Documentation/devicetree/bindings/media/i2c/arducam,64mp.yaml
1397 F:      drivers/media/i2c/arducam_64mp.c
1398
1399 ARDUCAM PIVARIETY SENSOR DRIVER
1400 M:      Arducam Kernel Maintenance <info@arducam.com>
1401 L:      linux-media@vger.kernel.org
1402 S:      Maintained
1403 T:      git git://linuxtv.org/media_tree.git
1404 F:      Documentation/devicetree/bindings/media/i2c/arducam-pivariety.yaml
1405 F:      drivers/media/i2c/arducam-pivariety.c
1406
1407 ARM ARCHITECTED TIMER DRIVER
1408 M:      Mark Rutland <mark.rutland@arm.com>
1409 M:      Marc Zyngier <maz@kernel.org>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 F:      arch/arm/include/asm/arch_timer.h
1413 F:      arch/arm64/include/asm/arch_timer.h
1414 F:      drivers/clocksource/arm_arch_timer.c
1415
1416 ARM HDLCD DRM DRIVER
1417 M:      Liviu Dudau <liviu.dudau@arm.com>
1418 S:      Supported
1419 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1420 F:      drivers/gpu/drm/arm/hdlcd_*
1421
1422 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1423 M:      Linus Walleij <linus.walleij@linaro.org>
1424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1427 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1428 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1429 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1430 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1431 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1432 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1433 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1434 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1435 F:      arch/arm/boot/dts/arm-realview-*
1436 F:      arch/arm/boot/dts/integrator*
1437 F:      arch/arm/boot/dts/versatile*
1438 F:      arch/arm/mach-integrator/
1439 F:      arch/arm/mach-realview/
1440 F:      arch/arm/mach-versatile/
1441 F:      arch/arm/plat-versatile/
1442 F:      drivers/bus/arm-integrator-lm.c
1443 F:      drivers/clk/versatile/
1444 F:      drivers/i2c/busses/i2c-versatile.c
1445 F:      drivers/irqchip/irq-versatile-fpga.c
1446 F:      drivers/mtd/maps/physmap-versatile.*
1447 F:      drivers/power/reset/arm-versatile-reboot.c
1448 F:      drivers/soc/versatile/
1449
1450 ARM KOMEDA DRM-KMS DRIVER
1451 M:      James (Qian) Wang <james.qian.wang@arm.com>
1452 M:      Liviu Dudau <liviu.dudau@arm.com>
1453 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1454 L:      Mali DP Maintainers <malidp@foss.arm.com>
1455 S:      Supported
1456 T:      git git://anongit.freedesktop.org/drm/drm-misc
1457 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1458 F:      Documentation/gpu/komeda-kms.rst
1459 F:      drivers/gpu/drm/arm/display/include/
1460 F:      drivers/gpu/drm/arm/display/komeda/
1461
1462 ARM MALI PANFROST DRM DRIVER
1463 M:      Rob Herring <robh@kernel.org>
1464 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1465 R:      Steven Price <steven.price@arm.com>
1466 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1467 L:      dri-devel@lists.freedesktop.org
1468 S:      Supported
1469 T:      git git://anongit.freedesktop.org/drm/drm-misc
1470 F:      drivers/gpu/drm/panfrost/
1471 F:      include/uapi/drm/panfrost_drm.h
1472
1473 ARM MALI-DP DRM DRIVER
1474 M:      Liviu Dudau <liviu.dudau@arm.com>
1475 M:      Brian Starkey <brian.starkey@arm.com>
1476 L:      Mali DP Maintainers <malidp@foss.arm.com>
1477 S:      Supported
1478 T:      git git://anongit.freedesktop.org/drm/drm-misc
1479 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1480 F:      Documentation/gpu/afbc.rst
1481 F:      drivers/gpu/drm/arm/
1482
1483 ARM MFM AND FLOPPY DRIVERS
1484 M:      Ian Molton <spyro@f2s.com>
1485 S:      Maintained
1486 F:      arch/arm/include/asm/floppy.h
1487 F:      arch/arm/mach-rpc/floppydma.S
1488
1489 ARM PMU PROFILING AND DEBUGGING
1490 M:      Will Deacon <will@kernel.org>
1491 M:      Mark Rutland <mark.rutland@arm.com>
1492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 S:      Maintained
1494 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1495 F:      Documentation/devicetree/bindings/perf/
1496 F:      arch/arm*/include/asm/hw_breakpoint.h
1497 F:      arch/arm*/include/asm/perf_event.h
1498 F:      arch/arm*/kernel/hw_breakpoint.c
1499 F:      arch/arm*/kernel/perf_*
1500 F:      drivers/perf/
1501 F:      include/linux/perf/arm_pmu.h
1502
1503 ARM PORT
1504 M:      Russell King <linux@armlinux.org.uk>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S:      Odd Fixes
1507 W:      http://www.armlinux.org.uk/
1508 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1509 F:      arch/arm/
1510 X:      arch/arm/boot/dts/
1511
1512 ARM PRIMECELL AACI PL041 DRIVER
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      sound/arm/aaci.*
1516
1517 ARM PRIMECELL BUS SUPPORT
1518 M:      Russell King <linux@armlinux.org.uk>
1519 S:      Odd Fixes
1520 F:      drivers/amba/
1521 F:      include/linux/amba/bus.h
1522
1523 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1524 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1525 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1526 L:      linux-mtd@lists.infradead.org
1527 S:      Maintained
1528 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1529 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1530
1531 ARM PRIMECELL PL35X SMC DRIVER
1532 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1533 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1537 F:      drivers/memory/pl353-smc.c
1538
1539 ARM PRIMECELL CLCD PL110 DRIVER
1540 M:      Russell King <linux@armlinux.org.uk>
1541 S:      Odd Fixes
1542 F:      drivers/video/fbdev/amba-clcd.*
1543
1544 ARM PRIMECELL KMI PL050 DRIVER
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/input/serio/ambakmi.*
1548 F:      include/linux/amba/kmi.h
1549
1550 ARM PRIMECELL MMCI PL180/1 DRIVER
1551 M:      Russell King <linux@armlinux.org.uk>
1552 S:      Odd Fixes
1553 F:      drivers/mmc/host/mmci.*
1554 F:      include/linux/amba/mmci.h
1555
1556 ARM PRIMECELL SSP PL022 SPI DRIVER
1557 M:      Linus Walleij <linus.walleij@linaro.org>
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1561 F:      drivers/spi/spi-pl022.c
1562
1563 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1564 M:      Russell King <linux@armlinux.org.uk>
1565 S:      Odd Fixes
1566 F:      drivers/tty/serial/amba-pl01*.c
1567 F:      include/linux/amba/serial.h
1568
1569 ARM PRIMECELL VIC PL190/PL192 DRIVER
1570 M:      Linus Walleij <linus.walleij@linaro.org>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1574 F:      drivers/irqchip/irq-vic.c
1575
1576 ARM SMC WATCHDOG DRIVER
1577 M:      Julius Werner <jwerner@chromium.org>
1578 R:      Evan Benn <evanbenn@chromium.org>
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1581 F:      drivers/watchdog/arm_smc_wdt.c
1582
1583 ARM SMMU DRIVERS
1584 M:      Will Deacon <will@kernel.org>
1585 R:      Robin Murphy <robin.murphy@arm.com>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1589 F:      drivers/iommu/arm/
1590 F:      drivers/iommu/io-pgtable-arm*
1591
1592 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1593 M:      Arnd Bergmann <arnd@arndb.de>
1594 M:      Olof Johansson <olof@lixom.net>
1595 M:      soc@kernel.org
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Maintained
1598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1599 F:      arch/arm/boot/dts/Makefile
1600 F:      arch/arm64/boot/dts/Makefile
1601
1602 ARM SUB-ARCHITECTURES
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1606 F:      arch/arm/mach-*/
1607 F:      arch/arm/plat-*/
1608
1609 ARM/ACTIONS SEMI ARCHITECTURE
1610 M:      Andreas Färber <afaerber@suse.de>
1611 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1614 S:      Maintained
1615 F:      Documentation/devicetree/bindings/arm/actions.yaml
1616 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1617 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1618 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1619 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1620 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1621 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1623 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1624 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1625 F:      arch/arm/boot/dts/owl-*
1626 F:      arch/arm/mach-actions/
1627 F:      arch/arm64/boot/dts/actions/
1628 F:      drivers/clk/actions/
1629 F:      drivers/clocksource/timer-owl*
1630 F:      drivers/dma/owl-dma.c
1631 F:      drivers/i2c/busses/i2c-owl.c
1632 F:      drivers/irqchip/irq-owl-sirq.c
1633 F:      drivers/mmc/host/owl-mmc.c
1634 F:      drivers/net/ethernet/actions/
1635 F:      drivers/pinctrl/actions/*
1636 F:      drivers/soc/actions/
1637 F:      include/dt-bindings/power/owl-*
1638 F:      include/dt-bindings/reset/actions,*
1639 F:      include/linux/soc/actions/
1640 N:      owl
1641
1642 ARM/ADS SPHERE MACHINE SUPPORT
1643 M:      Lennert Buytenhek <kernel@wantstofly.org>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646
1647 ARM/AFEB9260 MACHINE SUPPORT
1648 M:      Sergey Lapin <slapin@ossfans.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651
1652 ARM/AJECO 1ARM MACHINE SUPPORT
1653 M:      Lennert Buytenhek <kernel@wantstofly.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656
1657 ARM/Allwinner SoC Clock Support
1658 M:      Emilio López <emilio@elopez.com.ar>
1659 S:      Maintained
1660 F:      drivers/clk/sunxi/
1661
1662 ARM/Allwinner sunXi SoC support
1663 M:      Maxime Ripard <mripard@kernel.org>
1664 M:      Chen-Yu Tsai <wens@csie.org>
1665 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1669 L:      linux-sunxi@lists.linux.dev
1670 F:      arch/arm/mach-sunxi/
1671 F:      arch/arm64/boot/dts/allwinner/
1672 F:      drivers/clk/sunxi-ng/
1673 F:      drivers/pinctrl/sunxi/
1674 F:      drivers/soc/sunxi/
1675 N:      allwinner
1676 N:      sun[x456789]i
1677 N:      sun50i
1678
1679 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1680 M:      Neil Armstrong <narmstrong@baylibre.com>
1681 M:      Jerome Brunet <jbrunet@baylibre.com>
1682 L:      linux-amlogic@lists.infradead.org
1683 S:      Maintained
1684 F:      Documentation/devicetree/bindings/clock/amlogic*
1685 F:      drivers/clk/meson/
1686 F:      include/dt-bindings/clock/gxbb*
1687 F:      include/dt-bindings/clock/meson*
1688
1689 ARM/Amlogic Meson SoC Crypto Drivers
1690 M:      Corentin Labbe <clabbe@baylibre.com>
1691 L:      linux-crypto@vger.kernel.org
1692 L:      linux-amlogic@lists.infradead.org
1693 S:      Maintained
1694 F:      Documentation/devicetree/bindings/crypto/amlogic*
1695 F:      drivers/crypto/amlogic/
1696
1697 ARM/Amlogic Meson SoC Sound Drivers
1698 M:      Jerome Brunet <jbrunet@baylibre.com>
1699 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      Documentation/devicetree/bindings/sound/amlogic*
1702 F:      sound/soc/meson/
1703
1704 ARM/Amlogic Meson SoC support
1705 M:      Neil Armstrong <narmstrong@baylibre.com>
1706 M:      Kevin Hilman <khilman@baylibre.com>
1707 R:      Jerome Brunet <jbrunet@baylibre.com>
1708 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 L:      linux-amlogic@lists.infradead.org
1711 S:      Maintained
1712 W:      http://linux-meson.com/
1713 F:      arch/arm/boot/dts/meson*
1714 F:      arch/arm/mach-meson/
1715 F:      arch/arm64/boot/dts/amlogic/
1716 F:      drivers/mmc/host/meson*
1717 F:      drivers/pinctrl/meson/
1718 F:      drivers/rtc/rtc-meson*
1719 F:      drivers/soc/amlogic/
1720 N:      meson
1721
1722 ARM/Annapurna Labs ALPINE ARCHITECTURE
1723 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1724 M:      Antoine Tenart <atenart@kernel.org>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/alpine*
1728 F:      arch/arm/mach-alpine/
1729 F:      arch/arm64/boot/dts/amazon/
1730 F:      drivers/*/*alpine*
1731
1732 ARM/APPLE MACHINE SUPPORT
1733 M:      Hector Martin <marcan@marcan.st>
1734 M:      Sven Peter <sven@svenpeter.dev>
1735 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738 W:      https://asahilinux.org
1739 B:      https://github.com/AsahiLinux/linux/issues
1740 C:      irc://irc.oftc.net/asahi-dev
1741 T:      git https://github.com/AsahiLinux/linux.git
1742 F:      Documentation/devicetree/bindings/arm/apple.yaml
1743 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1744 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1745 F:      arch/arm64/boot/dts/apple/
1746 F:      drivers/irqchip/irq-apple-aic.c
1747 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1748 F:      include/dt-bindings/pinctrl/apple.h
1749
1750 ARM/ARTPEC MACHINE SUPPORT
1751 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1752 M:      Lars Persson <lars.persson@axis.com>
1753 L:      linux-arm-kernel@axis.com
1754 S:      Maintained
1755 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1756 F:      arch/arm/boot/dts/artpec6*
1757 F:      arch/arm/mach-artpec
1758 F:      drivers/clk/axis
1759 F:      drivers/crypto/axis
1760 F:      drivers/mmc/host/usdhi6rol0.c
1761 F:      drivers/pinctrl/pinctrl-artpec*
1762
1763 ARM/ASPEED I2C DRIVER
1764 M:      Brendan Higgins <brendanhiggins@google.com>
1765 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1766 R:      Joel Stanley <joel@jms.id.au>
1767 L:      linux-i2c@vger.kernel.org
1768 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1771 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1772 F:      drivers/i2c/busses/i2c-aspeed.c
1773 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1774
1775 ARM/ASPEED MACHINE SUPPORT
1776 M:      Joel Stanley <joel@jms.id.au>
1777 R:      Andrew Jeffery <andrew@aj.id.au>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1780 S:      Supported
1781 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1783 F:      arch/arm/boot/dts/aspeed-*
1784 F:      arch/arm/mach-aspeed/
1785 N:      aspeed
1786
1787 ARM/BITMAIN ARCHITECTURE
1788 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1792 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1793 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1794 F:      arch/arm64/boot/dts/bitmain/
1795 F:      drivers/clk/clk-bm1880.c
1796 F:      drivers/pinctrl/pinctrl-bm1880.c
1797
1798 ARM/CALXEDA HIGHBANK ARCHITECTURE
1799 M:      Andre Przywara <andre.przywara@arm.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      arch/arm/boot/dts/ecx-*.dts*
1803 F:      arch/arm/boot/dts/highbank.dts
1804 F:      arch/arm/mach-highbank/
1805
1806 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1807 M:      Krzysztof Halasa <khalasa@piap.pl>
1808 S:      Maintained
1809 F:      arch/arm/mach-cns3xxx/
1810
1811 ARM/CAVIUM THUNDER NETWORK DRIVER
1812 M:      Sunil Goutham <sgoutham@marvell.com>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Supported
1815 F:      drivers/net/ethernet/cavium/thunder/
1816
1817 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1818 M:      Lukasz Majewski <lukma@denx.de>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-ep93xx/ts72xx.c
1822
1823 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1824 M:      Alexander Shiyan <shc_work@mail.ru>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Odd Fixes
1827 N:      clps711x
1828
1829 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1830 M:      Lennert Buytenhek <kernel@wantstofly.org>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833
1834 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1835 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1836 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 F:      arch/arm/mach-ep93xx/
1840 F:      arch/arm/mach-ep93xx/include/mach/
1841
1842 ARM/CLKDEV SUPPORT
1843 M:      Russell King <linux@armlinux.org.uk>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1847 F:      drivers/clk/clkdev.c
1848
1849 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1850 M:      Baruch Siach <baruch@tkos.co.il>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm/boot/dts/cx92755*
1854 N:      digicolor
1855
1856 ARM/CONTEC MICRO9 MACHINE SUPPORT
1857 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1858 S:      Maintained
1859 F:      arch/arm/mach-ep93xx/micro9.c
1860
1861 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1862 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1863 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1864 R:      Mike Leach <mike.leach@linaro.org>
1865 R:      Leo Yan <leo.yan@linaro.org>
1866 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1870 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1871 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1872 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1873 F:      Documentation/devicetree/bindings/arm/coresight.txt
1874 F:      Documentation/devicetree/bindings/arm/ete.yaml
1875 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1876 F:      Documentation/trace/coresight/*
1877 F:      drivers/hwtracing/coresight/*
1878 F:      include/dt-bindings/arm/coresight-cti-dt.h
1879 F:      include/linux/coresight*
1880 F:      tools/perf/arch/arm/util/auxtrace.c
1881 F:      tools/perf/arch/arm/util/cs-etm.c
1882 F:      tools/perf/arch/arm/util/cs-etm.h
1883 F:      tools/perf/arch/arm/util/pmu.c
1884 F:      tools/perf/util/cs-etm-decoder/*
1885 F:      tools/perf/util/cs-etm.*
1886
1887 ARM/CORGI MACHINE SUPPORT
1888 M:      Richard Purdie <rpurdie@rpsys.net>
1889 S:      Maintained
1890
1891 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1892 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1893 M:      Linus Walleij <linus.walleij@linaro.org>
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896 T:      git git://github.com/ulli-kroll/linux.git
1897 F:      Documentation/devicetree/bindings/arm/gemini.txt
1898 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1899 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1900 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1901 F:      arch/arm/boot/dts/gemini*
1902 F:      arch/arm/mach-gemini/
1903 F:      drivers/crypto/gemini/
1904 F:      drivers/net/ethernet/cortina/
1905 F:      drivers/pinctrl/pinctrl-gemini.c
1906 F:      drivers/rtc/rtc-ftrtc010.c
1907
1908 ARM/CZ.NIC TURRIS SUPPORT
1909 M:      Marek Behún <kabel@kernel.org>
1910 S:      Maintained
1911 W:      https://www.turris.cz/
1912 F:      Documentation/ABI/testing/debugfs-moxtet
1913 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1914 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1915 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1916 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1917 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1918 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1919 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1920 F:      drivers/bus/moxtet.c
1921 F:      drivers/firmware/turris-mox-rwtm.c
1922 F:      drivers/leds/leds-turris-omnia.c
1923 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1924 F:      drivers/gpio/gpio-moxtet.c
1925 F:      drivers/watchdog/armada_37xx_wdt.c
1926 F:      include/dt-bindings/bus/moxtet.h
1927 F:      include/linux/armada-37xx-rwtm-mailbox.h
1928 F:      include/linux/moxtet.h
1929
1930 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1931 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934 F:      arch/arm/mach-pxa/ezx.c
1935
1936 ARM/FARADAY FA526 PORT
1937 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 S:      Maintained
1940 T:      git git://git.berlios.de/gemini-board
1941 F:      arch/arm/mm/*-fa*
1942
1943 ARM/FOOTBRIDGE ARCHITECTURE
1944 M:      Russell King <linux@armlinux.org.uk>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 W:      http://www.armlinux.org.uk/
1948 F:      arch/arm/include/asm/hardware/dec21285.h
1949 F:      arch/arm/mach-footbridge/
1950
1951 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1952 M:      Shawn Guo <shawnguo@kernel.org>
1953 M:      Sascha Hauer <s.hauer@pengutronix.de>
1954 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1955 R:      Fabio Estevam <festevam@gmail.com>
1956 R:      NXP Linux Team <linux-imx@nxp.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1960 X:      drivers/media/i2c/
1961 N:      imx
1962 N:      mxs
1963
1964 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1965 M:      Shawn Guo <shawnguo@kernel.org>
1966 M:      Li Yang <leoyang.li@nxp.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1970 F:      arch/arm/boot/dts/ls1021a*
1971 F:      arch/arm64/boot/dts/freescale/fsl-*
1972 F:      arch/arm64/boot/dts/freescale/qoriq-*
1973
1974 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1975 M:      Shawn Guo <shawnguo@kernel.org>
1976 M:      Sascha Hauer <s.hauer@pengutronix.de>
1977 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1978 R:      Stefan Agner <stefan@agner.ch>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1982 F:      arch/arm/boot/dts/vf*
1983 F:      arch/arm/mach-imx/*vf610*
1984
1985 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1986 M:      Lennert Buytenhek <kernel@wantstofly.org>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989
1990 ARM/GUMSTIX MACHINE SUPPORT
1991 M:      Steve Sakoman <sakoman@gmail.com>
1992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S:      Maintained
1994
1995 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1996 M:      Philipp Zabel <philipp.zabel@gmail.com>
1997 M:      Paul Parsons <lost.distance@yahoo.com>
1998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 S:      Maintained
2000 F:      arch/arm/mach-pxa/hx4700.c
2001 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2002 F:      sound/soc/pxa/hx4700.c
2003
2004 ARM/HISILICON SOC SUPPORT
2005 M:      Wei Xu <xuwei5@hisilicon.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Supported
2008 W:      http://www.hisilicon.com
2009 T:      git git://github.com/hisilicon/linux-hisi.git
2010 F:      arch/arm/boot/dts/hi3*
2011 F:      arch/arm/boot/dts/hip*
2012 F:      arch/arm/boot/dts/hisi*
2013 F:      arch/arm/mach-hisi/
2014 F:      arch/arm64/boot/dts/hisilicon/
2015
2016 ARM/HP JORNADA 7XX MACHINE SUPPORT
2017 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2018 S:      Maintained
2019 W:      www.jlime.com
2020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2021 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2022 F:      arch/arm/mach-sa1100/jornada720.c
2023
2024 ARM/IGEP MACHINE SUPPORT
2025 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2026 M:      Javier Martinez Canillas <javier@dowhile0.org>
2027 L:      linux-omap@vger.kernel.org
2028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 S:      Maintained
2030 F:      arch/arm/boot/dts/omap3-igep*
2031
2032 ARM/INCOME PXA270 SUPPORT
2033 M:      Marek Vasut <marek.vasut@gmail.com>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2037
2038 ARM/INTEL IOP32X ARM ARCHITECTURE
2039 M:      Lennert Buytenhek <kernel@wantstofly.org>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042
2043 ARM/INTEL IQ81342EX MACHINE SUPPORT
2044 M:      Lennert Buytenhek <kernel@wantstofly.org>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 S:      Maintained
2047
2048 ARM/INTEL IXDP2850 MACHINE SUPPORT
2049 M:      Lennert Buytenhek <kernel@wantstofly.org>
2050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2051 S:      Maintained
2052
2053 ARM/INTEL IXP4XX ARM ARCHITECTURE
2054 M:      Linus Walleij <linusw@kernel.org>
2055 M:      Imre Kaloz <kaloz@openwrt.org>
2056 M:      Krzysztof Halasa <khalasa@piap.pl>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2060 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2061 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2062 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2063 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2064 F:      arch/arm/mach-ixp4xx/
2065 F:      drivers/bus/intel-ixp4xx-eb.c
2066 F:      drivers/clocksource/timer-ixp4xx.c
2067 F:      drivers/crypto/ixp4xx_crypto.c
2068 F:      drivers/gpio/gpio-ixp4xx.c
2069 F:      drivers/irqchip/irq-ixp4xx.c
2070 F:      include/linux/irqchip/irq-ixp4xx.h
2071 F:      include/linux/platform_data/timer-ixp4xx.h
2072
2073 ARM/INTEL KEEMBAY ARCHITECTURE
2074 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2075 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2078 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2079 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2080
2081 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2082 M:      Jonathan Cameron <jic23@cam.ac.uk>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      arch/arm/mach-pxa/stargate2.c
2086 F:      drivers/pcmcia/pxa2xx_stargate2.c
2087
2088 ARM/INTEL XSC3 (MANZANO) ARM CORE
2089 M:      Lennert Buytenhek <kernel@wantstofly.org>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 S:      Maintained
2092
2093 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2094 M:      Lennert Buytenhek <kernel@wantstofly.org>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/LG1K ARCHITECTURE
2099 M:      Chanho Min <chanho.min@lge.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      arch/arm64/boot/dts/lg/
2103
2104 ARM/LOGICPD PXA270 MACHINE SUPPORT
2105 M:      Lennert Buytenhek <kernel@wantstofly.org>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108
2109 ARM/LPC18XX ARCHITECTURE
2110 M:      Vladimir Zapolskiy <vz@mleia.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2114 F:      arch/arm/boot/dts/lpc43*
2115 F:      drivers/i2c/busses/i2c-lpc2k.c
2116 F:      drivers/memory/pl172.c
2117 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2118 F:      drivers/rtc/rtc-lpc24xx.c
2119 N:      lpc18xx
2120
2121 ARM/LPC32XX SOC SUPPORT
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2126 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2127 F:      arch/arm/boot/dts/lpc32*
2128 F:      arch/arm/mach-lpc32xx/
2129 F:      drivers/i2c/busses/i2c-pnx.c
2130 F:      drivers/net/ethernet/nxp/lpc_eth.c
2131 F:      drivers/usb/host/ohci-nxp.c
2132 F:      drivers/watchdog/pnx4008_wdt.c
2133 N:      lpc32xx
2134
2135 ARM/MAGICIAN MACHINE SUPPORT
2136 M:      Philipp Zabel <philipp.zabel@gmail.com>
2137 S:      Maintained
2138
2139 ARM/Marvell Dove/MV78xx0/Orion SOC support
2140 M:      Andrew Lunn <andrew@lunn.ch>
2141 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2142 M:      Gregory Clement <gregory.clement@bootlin.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2146 F:      Documentation/devicetree/bindings/soc/dove/
2147 F:      arch/arm/boot/dts/dove*
2148 F:      arch/arm/boot/dts/orion5x*
2149 F:      arch/arm/mach-dove/
2150 F:      arch/arm/mach-mv78xx0/
2151 F:      arch/arm/mach-orion5x/
2152 F:      arch/arm/plat-orion/
2153 F:      drivers/soc/dove/
2154
2155 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2156 M:      Andrew Lunn <andrew@lunn.ch>
2157 M:      Gregory Clement <gregory.clement@bootlin.com>
2158 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2162 F:      arch/arm/boot/dts/armada*
2163 F:      arch/arm/boot/dts/kirkwood*
2164 F:      arch/arm/configs/mvebu_*_defconfig
2165 F:      arch/arm/mach-mvebu/
2166 F:      arch/arm64/boot/dts/marvell/armada*
2167 F:      arch/arm64/boot/dts/marvell/cn913*
2168 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2169 F:      drivers/cpufreq/armada-8k-cpufreq.c
2170 F:      drivers/cpufreq/mvebu-cpufreq.c
2171 F:      drivers/irqchip/irq-armada-370-xp.c
2172 F:      drivers/irqchip/irq-mvebu-*
2173 F:      drivers/pinctrl/mvebu/
2174 F:      drivers/rtc/rtc-armada38x.c
2175
2176 ARM/Mediatek RTC DRIVER
2177 M:      Eddie Huang <eddie.huang@mediatek.com>
2178 M:      Sean Wang <sean.wang@mediatek.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2183 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2184 F:      drivers/rtc/rtc-mt2712.c
2185 F:      drivers/rtc/rtc-mt6397.c
2186 F:      drivers/rtc/rtc-mt7622.c
2187
2188 ARM/Mediatek SoC support
2189 M:      Matthias Brugger <matthias.bgg@gmail.com>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 W:      https://mtk.wiki.kernel.org/
2194 C:      irc://chat.freenode.net/linux-mediatek
2195 F:      arch/arm/boot/dts/mt6*
2196 F:      arch/arm/boot/dts/mt7*
2197 F:      arch/arm/boot/dts/mt8*
2198 F:      arch/arm/mach-mediatek/
2199 F:      arch/arm64/boot/dts/mediatek/
2200 F:      drivers/soc/mediatek/
2201 N:      mtk
2202 N:      mt[678]
2203 K:      mediatek
2204
2205 ARM/Mediatek USB3 PHY DRIVER
2206 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210 F:      Documentation/devicetree/bindings/phy/mediatek,*
2211 F:      drivers/phy/mediatek/
2212
2213 ARM/Microchip (AT91) SoC support
2214 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2215 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2216 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Supported
2219 W:      http://www.linux4sam.org
2220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2221 F:      arch/arm/boot/dts/at91*.dts
2222 F:      arch/arm/boot/dts/at91*.dtsi
2223 F:      arch/arm/boot/dts/sama*.dts
2224 F:      arch/arm/boot/dts/sama*.dtsi
2225 F:      arch/arm/include/debug/at91.S
2226 F:      arch/arm/mach-at91/
2227 F:      drivers/memory/atmel*
2228 F:      drivers/watchdog/sama5d4_wdt.c
2229 F:      include/soc/at91/
2230 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2231 X:      drivers/net/wireless/atmel/
2232 N:      at91
2233 N:      atmel
2234
2235 ARM/Microchip Sparx5 SoC support
2236 M:      Lars Povlsen <lars.povlsen@microchip.com>
2237 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2238 M:      UNGLinuxDriver@microchip.com
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Supported
2241 T:      git git://github.com/microchip-ung/linux-upstream.git
2242 F:      arch/arm64/boot/dts/microchip/
2243 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2244 N:      sparx5
2245
2246 Microchip Timer Counter Block (TCB) Capture Driver
2247 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 L:      linux-iio@vger.kernel.org
2250 S:      Maintained
2251 F:      drivers/counter/microchip-tcb-capture.c
2252
2253 ARM/MIOA701 MACHINE SUPPORT
2254 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2256 S:      Maintained
2257 F:      arch/arm/mach-pxa/mioa701.c
2258
2259 ARM/MStar/Sigmastar Armv7 SoC support
2260 M:      Daniel Palmer <daniel@thingy.jp>
2261 M:      Romain Perier <romain.perier@gmail.com>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 W:      http://linux-chenxing.org/
2265 T:      git git://github.com/linux-chenxing/linux.git
2266 F:      Documentation/devicetree/bindings/arm/mstar/*
2267 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2268 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2269 F:      arch/arm/boot/dts/mstar-*
2270 F:      arch/arm/mach-mstar/
2271 F:      drivers/clk/mstar/
2272 F:      drivers/gpio/gpio-msc313.c
2273 F:      drivers/watchdog/msc313e_wdt.c
2274 F:      include/dt-bindings/clock/mstar-*
2275 F:      include/dt-bindings/gpio/msc313-gpio.h
2276
2277 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2278 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2279 S:      Maintained
2280
2281 ARM/NOMADIK/Ux500 ARCHITECTURES
2282 M:      Linus Walleij <linus.walleij@linaro.org>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 S:      Maintained
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2286 F:      Documentation/devicetree/bindings/arm/ste-*
2287 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2288 F:      Documentation/devicetree/bindings/arm/ux500/
2289 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2290 F:      arch/arm/boot/dts/ste-*
2291 F:      arch/arm/mach-nomadik/
2292 F:      arch/arm/mach-ux500/
2293 F:      drivers/clk/clk-nomadik.c
2294 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2295 F:      drivers/dma/ste_dma40*
2296 F:      drivers/hwspinlock/u8500_hsem.c
2297 F:      drivers/i2c/busses/i2c-nomadik.c
2298 F:      drivers/iio/adc/ab8500-gpadc.c
2299 F:      drivers/mfd/ab8500*
2300 F:      drivers/mfd/abx500*
2301 F:      drivers/mfd/db8500*
2302 F:      drivers/pinctrl/nomadik/
2303 F:      drivers/rtc/rtc-ab8500.c
2304 F:      drivers/rtc/rtc-pl031.c
2305 F:      drivers/soc/ux500/
2306
2307 ARM/NUVOTON NPCM ARCHITECTURE
2308 M:      Avi Fishman <avifishman70@gmail.com>
2309 M:      Tomer Maimon <tmaimon77@gmail.com>
2310 M:      Tali Perry <tali.perry1@gmail.com>
2311 R:      Patrick Venture <venture@google.com>
2312 R:      Nancy Yuen <yuenn@google.com>
2313 R:      Benjamin Fair <benjaminfair@google.com>
2314 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2315 S:      Supported
2316 F:      Documentation/devicetree/bindings/*/*/*npcm*
2317 F:      Documentation/devicetree/bindings/*/*npcm*
2318 F:      arch/arm/boot/dts/nuvoton-npcm*
2319 F:      arch/arm/mach-npcm/
2320 F:      drivers/*/*npcm*
2321 F:      drivers/*/*/*npcm*
2322 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2323
2324 ARM/NUVOTON WPCM450 ARCHITECTURE
2325 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      Documentation/devicetree/bindings/*/*wpcm*
2329 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2330 F:      arch/arm/mach-npcm/wpcm450.c
2331 F:      drivers/*/*wpcm*
2332
2333 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2334 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2335 S:      Orphan
2336 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2337 F:      arch/arm/mach-s3c/gta02.h
2338 F:      arch/arm/mach-s3c/mach-gta02.c
2339
2340 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2341 M:      Alexander Clouter <alex@digriz.org.uk>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 W:      http://www.digriz.org.uk/ts78xx/kernel
2345 F:      arch/arm/mach-orion5x/ts78xx-*
2346
2347 ARM/OXNAS platform support
2348 M:      Neil Armstrong <narmstrong@baylibre.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2351 S:      Maintained
2352 F:      arch/arm/boot/dts/ox8*.dts*
2353 F:      arch/arm/mach-oxnas/
2354 F:      drivers/power/reset/oxnas-restart.c
2355 N:      oxnas
2356
2357 ARM/PALM TREO SUPPORT
2358 M:      Tomas Cech <sleep_walker@suse.com>
2359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 W:      http://hackndev.com
2362 F:      arch/arm/mach-pxa/palmtreo.*
2363
2364 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2365 M:      Marek Vasut <marek.vasut@gmail.com>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 W:      http://hackndev.com
2369 F:      arch/arm/mach-pxa/include/mach/palmld.h
2370 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2371 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2372 F:      arch/arm/mach-pxa/palmld.c
2373 F:      arch/arm/mach-pxa/palmt5.*
2374 F:      arch/arm/mach-pxa/palmtc.c
2375 F:      arch/arm/mach-pxa/palmte2.*
2376 F:      arch/arm/mach-pxa/palmtx.c
2377
2378 ARM/PALMZ72 SUPPORT
2379 M:      Sergey Lapin <slapin@ossfans.org>
2380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2381 S:      Maintained
2382 W:      http://hackndev.com
2383 F:      arch/arm/mach-pxa/palmz72.*
2384
2385 ARM/PLEB SUPPORT
2386 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2387 S:      Maintained
2388 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2389
2390 ARM/PT DIGITAL BOARD PORT
2391 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 W:      http://www.armlinux.org.uk/
2395
2396 ARM/QUALCOMM SUPPORT
2397 M:      Andy Gross <agross@kernel.org>
2398 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2399 L:      linux-arm-msm@vger.kernel.org
2400 S:      Maintained
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2402 F:      Documentation/devicetree/bindings/*/qcom*
2403 F:      Documentation/devicetree/bindings/soc/qcom/
2404 F:      arch/arm/boot/dts/qcom-*.dts
2405 F:      arch/arm/boot/dts/qcom-*.dtsi
2406 F:      arch/arm/mach-qcom/
2407 F:      arch/arm64/boot/dts/qcom/
2408 F:      drivers/*/*/qcom*
2409 F:      drivers/*/*/qcom/
2410 F:      drivers/*/pm8???-*
2411 F:      drivers/*/qcom*
2412 F:      drivers/*/qcom/
2413 F:      drivers/bluetooth/btqcomsmd.c
2414 F:      drivers/clocksource/timer-qcom.c
2415 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2416 F:      drivers/extcon/extcon-qcom*
2417 F:      drivers/i2c/busses/i2c-qcom-geni.c
2418 F:      drivers/i2c/busses/i2c-qup.c
2419 F:      drivers/iommu/msm*
2420 F:      drivers/mfd/ssbi.c
2421 F:      drivers/mmc/host/mmci_qcom*
2422 F:      drivers/mmc/host/sdhci-msm.c
2423 F:      drivers/pci/controller/dwc/pcie-qcom.c
2424 F:      drivers/phy/qualcomm/
2425 F:      drivers/power/*/msm*
2426 F:      drivers/reset/reset-qcom-*
2427 F:      drivers/scsi/ufs/ufs-qcom*
2428 F:      drivers/spi/spi-geni-qcom.c
2429 F:      drivers/spi/spi-qcom-qspi.c
2430 F:      drivers/spi/spi-qup.c
2431 F:      drivers/tty/serial/msm_serial.c
2432 F:      drivers/usb/dwc3/dwc3-qcom.c
2433 F:      include/dt-bindings/*/qcom*
2434 F:      include/linux/*/qcom*
2435 F:      include/linux/soc/qcom/
2436
2437 ARM/RADISYS ENP2611 MACHINE SUPPORT
2438 M:      Lennert Buytenhek <kernel@wantstofly.org>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 S:      Maintained
2441
2442 ARM/RDA MICRO ARCHITECTURE
2443 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 F:      Documentation/devicetree/bindings/arm/rda.yaml
2448 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2449 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2450 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2451 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2452 F:      arch/arm/boot/dts/rda8810pl-*
2453 F:      drivers/clocksource/timer-rda.c
2454 F:      drivers/gpio/gpio-rda.c
2455 F:      drivers/irqchip/irq-rda-intc.c
2456 F:      drivers/tty/serial/rda-uart.c
2457
2458 ARM/REALTEK ARCHITECTURE
2459 M:      Andreas Färber <afaerber@suse.de>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2462 S:      Maintained
2463 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2464 F:      arch/arm/boot/dts/rtd*
2465 F:      arch/arm/mach-realtek/
2466 F:      arch/arm64/boot/dts/realtek/
2467
2468 ARM/RENESAS ARM64 ARCHITECTURE
2469 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2470 M:      Magnus Damm <magnus.damm@gmail.com>
2471 L:      linux-renesas-soc@vger.kernel.org
2472 S:      Supported
2473 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2475 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2476 F:      arch/arm64/boot/dts/renesas/
2477 F:      drivers/soc/renesas/
2478 F:      include/linux/soc/renesas/
2479
2480 ARM/RISCPC ARCHITECTURE
2481 M:      Russell King <linux@armlinux.org.uk>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://www.armlinux.org.uk/
2485 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2486 F:      arch/arm/include/asm/hardware/ioc.h
2487 F:      arch/arm/include/asm/hardware/iomd.h
2488 F:      arch/arm/include/asm/hardware/memc.h
2489 F:      arch/arm/mach-rpc/
2490 F:      drivers/net/ethernet/8390/etherh.c
2491 F:      drivers/net/ethernet/i825xx/ether1*
2492 F:      drivers/net/ethernet/seeq/ether3*
2493 F:      drivers/scsi/arm/
2494
2495 ARM/Rockchip SoC support
2496 M:      Heiko Stuebner <heiko@sntech.de>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 L:      linux-rockchip@lists.infradead.org
2499 S:      Maintained
2500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2501 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2502 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2503 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2504 F:      arch/arm/boot/dts/rk3*
2505 F:      arch/arm/boot/dts/rv1108*
2506 F:      arch/arm/mach-rockchip/
2507 F:      drivers/*/*/*rockchip*
2508 F:      drivers/*/*rockchip*
2509 F:      drivers/clk/rockchip/
2510 F:      drivers/i2c/busses/i2c-rk3x.c
2511 F:      sound/soc/rockchip/
2512 N:      rockchip
2513
2514 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2515 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 L:      linux-samsung-soc@vger.kernel.org
2518 S:      Maintained
2519 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2520 F:      Documentation/arm/samsung/
2521 F:      Documentation/devicetree/bindings/arm/samsung/
2522 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2523 F:      arch/arm/boot/dts/exynos*
2524 F:      arch/arm/boot/dts/s3c*
2525 F:      arch/arm/boot/dts/s5p*
2526 F:      arch/arm/mach-exynos*/
2527 F:      arch/arm/mach-s3c/
2528 F:      arch/arm/mach-s5p*/
2529 F:      arch/arm64/boot/dts/exynos/
2530 F:      drivers/*/*/*s3c24*
2531 F:      drivers/*/*s3c24*
2532 F:      drivers/*/*s3c64xx*
2533 F:      drivers/*/*s5pv210*
2534 F:      drivers/clocksource/samsung_pwm_timer.c
2535 F:      drivers/memory/samsung/
2536 F:      drivers/pwm/pwm-samsung.c
2537 F:      drivers/soc/samsung/
2538 F:      drivers/tty/serial/samsung*
2539 F:      include/clocksource/samsung_pwm.h
2540 F:      include/linux/platform_data/*s3c*
2541 F:      include/linux/serial_s3c.h
2542 F:      include/linux/soc/samsung/
2543 N:      exynos
2544 N:      s3c2410
2545 N:      s3c64xx
2546 N:      s5pv210
2547
2548 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2549 M:      Andrzej Hajda <a.hajda@samsung.com>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 L:      linux-media@vger.kernel.org
2552 S:      Maintained
2553 F:      drivers/media/platform/s5p-g2d/
2554
2555 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2556 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2557 L:      linux-samsung-soc@vger.kernel.org
2558 L:      linux-media@vger.kernel.org
2559 S:      Maintained
2560 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2561 F:      drivers/media/cec/platform/s5p/
2562
2563 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2564 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2565 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2566 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2568 L:      linux-media@vger.kernel.org
2569 S:      Maintained
2570 F:      drivers/media/platform/s5p-jpeg/
2571
2572 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2573 M:      Andrzej Hajda <a.hajda@samsung.com>
2574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575 L:      linux-media@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/media/platform/s5p-mfc/
2578
2579 ARM/SHMOBILE ARM ARCHITECTURE
2580 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2581 M:      Magnus Damm <magnus.damm@gmail.com>
2582 L:      linux-renesas-soc@vger.kernel.org
2583 S:      Supported
2584 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2586 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2587 F:      arch/arm/boot/dts/emev2*
2588 F:      arch/arm/boot/dts/gr-peach*
2589 F:      arch/arm/boot/dts/iwg20d-q7*
2590 F:      arch/arm/boot/dts/r7s*
2591 F:      arch/arm/boot/dts/r8a*
2592 F:      arch/arm/boot/dts/r9a*
2593 F:      arch/arm/boot/dts/sh*
2594 F:      arch/arm/configs/shmobile_defconfig
2595 F:      arch/arm/include/debug/renesas-scif.S
2596 F:      arch/arm/mach-shmobile/
2597 F:      drivers/soc/renesas/
2598 F:      include/linux/soc/renesas/
2599
2600 ARM/SOCFPGA ARCHITECTURE
2601 M:      Dinh Nguyen <dinguyen@kernel.org>
2602 S:      Maintained
2603 W:      http://www.rocketboards.org
2604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2605 F:      arch/arm/boot/dts/socfpga*
2606 F:      arch/arm/configs/socfpga_defconfig
2607 F:      arch/arm/mach-socfpga/
2608 F:      arch/arm64/boot/dts/altera/
2609 F:      arch/arm64/boot/dts/intel/
2610
2611 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2612 M:      Dinh Nguyen <dinguyen@kernel.org>
2613 S:      Maintained
2614 F:      drivers/clk/socfpga/
2615
2616 ARM/SOCFPGA EDAC SUPPORT
2617 M:      Dinh Nguyen <dinguyen@kernel.org>
2618 S:      Maintained
2619 F:      drivers/edac/altera_edac.[ch]
2620
2621 ARM/SPREADTRUM SoC SUPPORT
2622 M:      Orson Zhai <orsonzhai@gmail.com>
2623 M:      Baolin Wang <baolin.wang7@gmail.com>
2624 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2625 S:      Maintained
2626 F:      arch/arm64/boot/dts/sprd
2627 N:      sprd
2628 N:      sc27xx
2629 N:      sc2731
2630
2631 ARM/STI ARCHITECTURE
2632 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634 S:      Maintained
2635 W:      http://www.stlinux.com
2636 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2637 F:      arch/arm/boot/dts/sti*
2638 F:      arch/arm/mach-sti/
2639 F:      drivers/ata/ahci_st.c
2640 F:      drivers/char/hw_random/st-rng.c
2641 F:      drivers/clocksource/arm_global_timer.c
2642 F:      drivers/clocksource/clksrc_st_lpc.c
2643 F:      drivers/cpufreq/sti-cpufreq.c
2644 F:      drivers/dma/st_fdma*
2645 F:      drivers/i2c/busses/i2c-st.c
2646 F:      drivers/media/platform/sti/c8sectpfe/
2647 F:      drivers/media/rc/st_rc.c
2648 F:      drivers/mmc/host/sdhci-st.c
2649 F:      drivers/phy/st/phy-miphy28lp.c
2650 F:      drivers/phy/st/phy-stih407-usb.c
2651 F:      drivers/pinctrl/pinctrl-st.c
2652 F:      drivers/remoteproc/st_remoteproc.c
2653 F:      drivers/remoteproc/st_slim_rproc.c
2654 F:      drivers/reset/sti/
2655 F:      drivers/rtc/rtc-st-lpc.c
2656 F:      drivers/tty/serial/st-asc.c
2657 F:      drivers/usb/dwc3/dwc3-st.c
2658 F:      drivers/usb/host/ehci-st.c
2659 F:      drivers/usb/host/ohci-st.c
2660 F:      drivers/watchdog/st_lpc_wdt.c
2661 F:      include/linux/remoteproc/st_slim_rproc.h
2662
2663 ARM/STM32 ARCHITECTURE
2664 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2665 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2666 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2670 F:      arch/arm/boot/dts/stm32*
2671 F:      arch/arm/mach-stm32/
2672 F:      drivers/clocksource/armv7m_systick.c
2673 N:      stm32
2674 N:      stm
2675
2676 ARM/Synaptics SoC support
2677 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2678 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681 F:      arch/arm/boot/dts/berlin*
2682 F:      arch/arm/mach-berlin/
2683 F:      arch/arm64/boot/dts/synaptics/
2684
2685 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2686 M:      Lennert Buytenhek <kernel@wantstofly.org>
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689
2690 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2691 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2692 L:      linux-tegra@vger.kernel.org
2693 L:      linux-media@vger.kernel.org
2694 S:      Maintained
2695 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2696 F:      drivers/media/cec/platform/tegra/
2697
2698 ARM/TETON BGA MACHINE SUPPORT
2699 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2701 S:      Maintained
2702
2703 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2704 M:      Santosh Shilimkar <ssantosh@kernel.org>
2705 L:      linux-kernel@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/memory/*emif*
2708
2709 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2710 M:      Santosh Shilimkar <ssantosh@kernel.org>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 S:      Maintained
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2714 F:      arch/arm/boot/dts/keystone-*
2715 F:      arch/arm/mach-keystone/
2716
2717 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2718 M:      Santosh Shilimkar <ssantosh@kernel.org>
2719 L:      linux-kernel@vger.kernel.org
2720 S:      Maintained
2721 F:      drivers/clk/keystone/
2722
2723 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 L:      linux-kernel@vger.kernel.org
2727 S:      Maintained
2728 F:      drivers/clocksource/timer-keystone.c
2729
2730 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2731 M:      Santosh Shilimkar <ssantosh@kernel.org>
2732 L:      linux-kernel@vger.kernel.org
2733 S:      Maintained
2734 F:      drivers/power/reset/keystone-reset.c
2735
2736 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2737 M:      Nishanth Menon <nm@ti.com>
2738 M:      Vignesh Raghavendra <vigneshr@ti.com>
2739 M:      Tero Kristo <kristo@kernel.org>
2740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2741 S:      Supported
2742 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2743 F:      arch/arm64/boot/dts/ti/Makefile
2744 F:      arch/arm64/boot/dts/ti/k3-*
2745 F:      include/dt-bindings/pinctrl/k3.h
2746
2747 ARM/THECUS N2100 MACHINE SUPPORT
2748 M:      Lennert Buytenhek <kernel@wantstofly.org>
2749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2750 S:      Maintained
2751
2752 ARM/TOSA MACHINE SUPPORT
2753 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2754 M:      Dirk Opfer <dirk@opfer-online.de>
2755 S:      Maintained
2756
2757 ARM/TOSHIBA VISCONTI ARCHITECTURE
2758 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 S:      Supported
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2762 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2763 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2764 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2765 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2766 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2767 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2768 F:      arch/arm64/boot/dts/toshiba/
2769 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2770 F:      drivers/gpio/gpio-visconti.c
2771 F:      drivers/pci/controller/dwc/pcie-visconti.c
2772 F:      drivers/pinctrl/visconti/
2773 F:      drivers/watchdog/visconti_wdt.c
2774 N:      visconti
2775
2776 ARM/UNIPHIER ARCHITECTURE
2777 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2778 M:      Masami Hiramatsu <mhiramat@kernel.org>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Maintained
2781 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2782 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2783 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2784 F:      arch/arm/boot/dts/uniphier*
2785 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2786 F:      arch/arm/mach-uniphier/
2787 F:      arch/arm/mm/cache-uniphier.c
2788 F:      arch/arm64/boot/dts/socionext/uniphier*
2789 F:      drivers/bus/uniphier-system-bus.c
2790 F:      drivers/clk/uniphier/
2791 F:      drivers/dma/uniphier-mdmac.c
2792 F:      drivers/gpio/gpio-uniphier.c
2793 F:      drivers/i2c/busses/i2c-uniphier*
2794 F:      drivers/irqchip/irq-uniphier-aidet.c
2795 F:      drivers/mmc/host/uniphier-sd.c
2796 F:      drivers/pinctrl/uniphier/
2797 F:      drivers/reset/reset-uniphier.c
2798 F:      drivers/tty/serial/8250/8250_uniphier.c
2799 N:      uniphier
2800
2801 ARM/VERSATILE EXPRESS PLATFORM
2802 M:      Liviu Dudau <liviu.dudau@arm.com>
2803 M:      Sudeep Holla <sudeep.holla@arm.com>
2804 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      */*/*/vexpress*
2808 F:      */*/vexpress*
2809 F:      arch/arm/boot/dts/vexpress*
2810 F:      arch/arm/mach-vexpress/
2811 F:      arch/arm64/boot/dts/arm/
2812 F:      drivers/clk/versatile/clk-vexpress-osc.c
2813 F:      drivers/clocksource/timer-versatile.c
2814 N:      mps2
2815
2816 ARM/VFP SUPPORT
2817 M:      Russell King <linux@armlinux.org.uk>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Maintained
2820 W:      http://www.armlinux.org.uk/
2821 F:      arch/arm/vfp/
2822
2823 ARM/VOIPAC PXA270 SUPPORT
2824 M:      Marek Vasut <marek.vasut@gmail.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2828 F:      arch/arm/mach-pxa/vpac270.c
2829
2830 ARM/VT8500 ARM ARCHITECTURE
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2832 S:      Orphan
2833 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2834 F:      arch/arm/mach-vt8500/
2835 F:      drivers/clocksource/timer-vt8500.c
2836 F:      drivers/i2c/busses/i2c-wmt.c
2837 F:      drivers/mmc/host/wmt-sdmmc.c
2838 F:      drivers/pwm/pwm-vt8500.c
2839 F:      drivers/rtc/rtc-vt8500.c
2840 F:      drivers/tty/serial/vt8500_serial.c
2841 F:      drivers/usb/host/ehci-platform.c
2842 F:      drivers/usb/host/uhci-platform.c
2843 F:      drivers/video/fbdev/vt8500lcdfb.*
2844 F:      drivers/video/fbdev/wm8505fb*
2845 F:      drivers/video/fbdev/wmt_ge_rops.*
2846
2847 ARM/ZIPIT Z2 SUPPORT
2848 M:      Marek Vasut <marek.vasut@gmail.com>
2849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2850 S:      Maintained
2851 F:      arch/arm/mach-pxa/include/mach/z2.h
2852 F:      arch/arm/mach-pxa/z2.c
2853
2854 ARM/ZYNQ ARCHITECTURE
2855 M:      Michal Simek <michal.simek@xilinx.com>
2856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2857 S:      Supported
2858 W:      http://wiki.xilinx.com
2859 T:      git https://github.com/Xilinx/linux-xlnx.git
2860 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2861 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2862 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2863 F:      arch/arm/mach-zynq/
2864 F:      drivers/clocksource/timer-cadence-ttc.c
2865 F:      drivers/cpuidle/cpuidle-zynq.c
2866 F:      drivers/edac/synopsys_edac.c
2867 F:      drivers/i2c/busses/i2c-cadence.c
2868 F:      drivers/i2c/busses/i2c-xiic.c
2869 F:      drivers/mmc/host/sdhci-of-arasan.c
2870 N:      zynq
2871 N:      xilinx
2872
2873 ARM64 PORT (AARCH64 ARCHITECTURE)
2874 M:      Catalin Marinas <catalin.marinas@arm.com>
2875 M:      Will Deacon <will@kernel.org>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Maintained
2878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2879 F:      Documentation/arm64/
2880 F:      arch/arm64/
2881 F:      tools/testing/selftests/arm64/
2882 X:      arch/arm64/boot/dts/
2883
2884 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2885 M:      George McCollister <george.mccollister@gmail.com>
2886 L:      netdev@vger.kernel.org
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2889 F:      drivers/net/dsa/xrs700x/*
2890 F:      net/dsa/tag_xrs700x.c
2891
2892 AS3645A LED FLASH CONTROLLER DRIVER
2893 M:      Sakari Ailus <sakari.ailus@iki.fi>
2894 L:      linux-leds@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/leds/flash/leds-as3645a.c
2897
2898 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2899 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2900 L:      linux-media@vger.kernel.org
2901 S:      Maintained
2902 T:      git git://linuxtv.org/media_tree.git
2903 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2904 F:      drivers/media/i2c/ak7375.c
2905
2906 ASAHI KASEI AK8974 DRIVER
2907 M:      Linus Walleij <linus.walleij@linaro.org>
2908 L:      linux-iio@vger.kernel.org
2909 S:      Supported
2910 W:      http://www.akm.com/
2911 F:      drivers/iio/magnetometer/ak8974.c
2912
2913 ASC7621 HARDWARE MONITOR DRIVER
2914 M:      George Joseph <george.joseph@fairview5.com>
2915 L:      linux-hwmon@vger.kernel.org
2916 S:      Maintained
2917 F:      Documentation/hwmon/asc7621.rst
2918 F:      drivers/hwmon/asc7621.c
2919
2920 ASPEED PINCTRL DRIVERS
2921 M:      Andrew Jeffery <andrew@aj.id.au>
2922 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2923 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2924 L:      linux-gpio@vger.kernel.org
2925 S:      Maintained
2926 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2927 F:      drivers/pinctrl/aspeed/
2928
2929 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2930 M:      Eddie James <eajames@linux.ibm.com>
2931 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2932 S:      Maintained
2933 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2934 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2935 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2936
2937 ASPEED SD/MMC DRIVER
2938 M:      Andrew Jeffery <andrew@aj.id.au>
2939 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2940 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2941 L:      linux-mmc@vger.kernel.org
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2944 F:      drivers/mmc/host/sdhci-of-aspeed*
2945
2946 ASPEED VIDEO ENGINE DRIVER
2947 M:      Eddie James <eajames@linux.ibm.com>
2948 L:      linux-media@vger.kernel.org
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 S:      Maintained
2951 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2952 F:      drivers/media/platform/aspeed-video.c
2953
2954 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2955 M:      Corentin Chary <corentin.chary@gmail.com>
2956 L:      acpi4asus-user@lists.sourceforge.net
2957 L:      platform-driver-x86@vger.kernel.org
2958 S:      Maintained
2959 W:      http://acpi4asus.sf.net
2960 F:      drivers/platform/x86/asus*.c
2961 F:      drivers/platform/x86/eeepc*.c
2962
2963 ASUS WIRELESS RADIO CONTROL DRIVER
2964 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2965 L:      platform-driver-x86@vger.kernel.org
2966 S:      Maintained
2967 F:      drivers/platform/x86/asus-wireless.c
2968
2969 ASYMMETRIC KEYS
2970 M:      David Howells <dhowells@redhat.com>
2971 L:      keyrings@vger.kernel.org
2972 S:      Maintained
2973 F:      Documentation/crypto/asymmetric-keys.rst
2974 F:      crypto/asymmetric_keys/
2975 F:      include/crypto/pkcs7.h
2976 F:      include/crypto/public_key.h
2977 F:      include/linux/verification.h
2978
2979 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2980 R:      Dan Williams <dan.j.williams@intel.com>
2981 S:      Odd fixes
2982 W:      http://sourceforge.net/projects/xscaleiop
2983 F:      Documentation/crypto/async-tx-api.rst
2984 F:      crypto/async_tx/
2985 F:      include/linux/async_tx.h
2986
2987 AT24 EEPROM DRIVER
2988 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2989 L:      linux-i2c@vger.kernel.org
2990 S:      Maintained
2991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2992 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2993 F:      drivers/misc/eeprom/at24.c
2994
2995 ATA OVER ETHERNET (AOE) DRIVER
2996 M:      "Justin Sanders" <justin@coraid.com>
2997 S:      Supported
2998 W:      http://www.openaoe.org/
2999 F:      Documentation/admin-guide/aoe/
3000 F:      drivers/block/aoe/
3001
3002 ATC260X PMIC MFD DRIVER
3003 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3004 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3005 L:      linux-actions@lists.infradead.org
3006 S:      Maintained
3007 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3008 F:      drivers/input/misc/atc260x-onkey.c
3009 F:      drivers/mfd/atc260*
3010 F:      drivers/power/reset/atc260x-poweroff.c
3011 F:      drivers/regulator/atc260x-regulator.c
3012 F:      include/linux/mfd/atc260x/*
3013
3014 ATHEROS 71XX/9XXX GPIO DRIVER
3015 M:      Alban Bedel <albeu@free.fr>
3016 S:      Maintained
3017 W:      https://github.com/AlbanBedel/linux
3018 T:      git git://github.com/AlbanBedel/linux
3019 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3020 F:      drivers/gpio/gpio-ath79.c
3021
3022 ATHEROS 71XX/9XXX USB PHY DRIVER
3023 M:      Alban Bedel <albeu@free.fr>
3024 S:      Maintained
3025 W:      https://github.com/AlbanBedel/linux
3026 T:      git git://github.com/AlbanBedel/linux
3027 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3028 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3029
3030 ATHEROS ATH GENERIC UTILITIES
3031 M:      Kalle Valo <kvalo@codeaurora.org>
3032 L:      linux-wireless@vger.kernel.org
3033 S:      Supported
3034 F:      drivers/net/wireless/ath/*
3035
3036 ATHEROS ATH5K WIRELESS DRIVER
3037 M:      Jiri Slaby <jirislaby@kernel.org>
3038 M:      Nick Kossifidis <mickflemm@gmail.com>
3039 M:      Luis Chamberlain <mcgrof@kernel.org>
3040 L:      linux-wireless@vger.kernel.org
3041 S:      Maintained
3042 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3043 F:      drivers/net/wireless/ath/ath5k/
3044
3045 ATHEROS ATH6KL WIRELESS DRIVER
3046 M:      Kalle Valo <kvalo@codeaurora.org>
3047 L:      linux-wireless@vger.kernel.org
3048 S:      Supported
3049 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3051 F:      drivers/net/wireless/ath/ath6kl/
3052
3053 ATI_REMOTE2 DRIVER
3054 M:      Ville Syrjala <syrjala@sci.fi>
3055 S:      Maintained
3056 F:      drivers/input/misc/ati_remote2.c
3057
3058 ATK0110 HWMON DRIVER
3059 M:      Luca Tettamanti <kronos.it@gmail.com>
3060 L:      linux-hwmon@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/hwmon/asus_atk0110.c
3063
3064 ATLX ETHERNET DRIVERS
3065 M:      Chris Snook <chris.snook@gmail.com>
3066 L:      netdev@vger.kernel.org
3067 S:      Maintained
3068 W:      http://sourceforge.net/projects/atl1
3069 W:      http://atl1.sourceforge.net
3070 F:      drivers/net/ethernet/atheros/
3071
3072 ATM
3073 M:      Chas Williams <3chas3@gmail.com>
3074 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3075 L:      netdev@vger.kernel.org
3076 S:      Maintained
3077 W:      http://linux-atm.sourceforge.net
3078 F:      drivers/atm/
3079 F:      include/linux/atm*
3080 F:      include/uapi/linux/atm*
3081
3082 ATMEL MACB ETHERNET DRIVER
3083 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3084 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3085 S:      Supported
3086 F:      drivers/net/ethernet/cadence/
3087
3088 ATMEL MAXTOUCH DRIVER
3089 M:      Nick Dyer <nick@shmanahar.org>
3090 S:      Maintained
3091 T:      git git://github.com/ndyer/linux.git
3092 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3093 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3094
3095 ATMEL WIRELESS DRIVER
3096 M:      Simon Kelley <simon@thekelleys.org.uk>
3097 L:      linux-wireless@vger.kernel.org
3098 S:      Maintained
3099 W:      http://www.thekelleys.org.uk/atmel
3100 W:      http://atmelwlandriver.sourceforge.net/
3101 F:      drivers/net/wireless/atmel/atmel*
3102
3103 ATOMIC INFRASTRUCTURE
3104 M:      Will Deacon <will@kernel.org>
3105 M:      Peter Zijlstra <peterz@infradead.org>
3106 R:      Boqun Feng <boqun.feng@gmail.com>
3107 L:      linux-kernel@vger.kernel.org
3108 S:      Maintained
3109 F:      arch/*/include/asm/atomic*.h
3110 F:      include/*/atomic*.h
3111 F:      include/linux/refcount.h
3112 F:      Documentation/atomic_*.txt
3113 F:      scripts/atomic/
3114
3115 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3116 M:      Bradley Grove <linuxdrivers@attotech.com>
3117 L:      linux-scsi@vger.kernel.org
3118 S:      Supported
3119 W:      http://www.attotech.com
3120 F:      drivers/scsi/esas2r
3121
3122 ATUSB IEEE 802.15.4 RADIO DRIVER
3123 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3124 L:      linux-wpan@vger.kernel.org
3125 S:      Maintained
3126 F:      drivers/net/ieee802154/at86rf230.h
3127 F:      drivers/net/ieee802154/atusb.c
3128 F:      drivers/net/ieee802154/atusb.h
3129
3130 AUDIT SUBSYSTEM
3131 M:      Paul Moore <paul@paul-moore.com>
3132 M:      Eric Paris <eparis@redhat.com>
3133 L:      linux-audit@redhat.com (moderated for non-subscribers)
3134 S:      Supported
3135 W:      https://github.com/linux-audit
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3137 F:      include/asm-generic/audit_*.h
3138 F:      include/linux/audit.h
3139 F:      include/uapi/linux/audit.h
3140 F:      kernel/audit*
3141 F:      lib/*audit.c
3142
3143 AUXILIARY DISPLAY DRIVERS
3144 M:      Miguel Ojeda <ojeda@kernel.org>
3145 S:      Maintained
3146 F:      drivers/auxdisplay/
3147 F:      include/linux/cfag12864b.h
3148
3149 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3150 M:      Andreas Klinger <ak@it-klinger.de>
3151 L:      linux-iio@vger.kernel.org
3152 S:      Maintained
3153 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3154 F:      drivers/iio/adc/hx711.c
3155
3156 AX.25 NETWORK LAYER
3157 M:      Ralf Baechle <ralf@linux-mips.org>
3158 L:      linux-hams@vger.kernel.org
3159 S:      Maintained
3160 W:      http://www.linux-ax25.org/
3161 F:      include/net/ax25.h
3162 F:      include/uapi/linux/ax25.h
3163 F:      net/ax25/
3164
3165 AXENTIA ARM DEVICES
3166 M:      Peter Rosin <peda@axentia.se>
3167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3168 S:      Maintained
3169 F:      arch/arm/boot/dts/at91-linea.dtsi
3170 F:      arch/arm/boot/dts/at91-natte.dtsi
3171 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3172 F:      arch/arm/boot/dts/at91-tse850-3.dts
3173
3174 AXENTIA ASOC DRIVERS
3175 M:      Peter Rosin <peda@axentia.se>
3176 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3177 S:      Maintained
3178 F:      Documentation/devicetree/bindings/sound/axentia,*
3179 F:      sound/soc/atmel/tse850-pcm5142.c
3180
3181 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3182 M:      Nuno Sá <nuno.sa@analog.com>
3183 L:      linux-hwmon@vger.kernel.org
3184 S:      Supported
3185 W:      http://ez.analog.com/community/linux-device-drivers
3186 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3187 F:      drivers/hwmon/axi-fan-control.c
3188
3189 AXXIA I2C CONTROLLER
3190 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3191 L:      linux-i2c@vger.kernel.org
3192 S:      Maintained
3193 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3194 F:      drivers/i2c/busses/i2c-axxia.c
3195
3196 AZ6007 DVB DRIVER
3197 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3198 L:      linux-media@vger.kernel.org
3199 S:      Maintained
3200 W:      https://linuxtv.org
3201 T:      git git://linuxtv.org/media_tree.git
3202 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3203
3204 AZTECH FM RADIO RECEIVER DRIVER
3205 M:      Hans Verkuil <hverkuil@xs4all.nl>
3206 L:      linux-media@vger.kernel.org
3207 S:      Maintained
3208 W:      https://linuxtv.org
3209 T:      git git://linuxtv.org/media_tree.git
3210 F:      drivers/media/radio/radio-aztech*
3211
3212 B43 WIRELESS DRIVER
3213 L:      linux-wireless@vger.kernel.org
3214 L:      b43-dev@lists.infradead.org
3215 S:      Odd Fixes
3216 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3217 F:      drivers/net/wireless/broadcom/b43/
3218
3219 B43LEGACY WIRELESS DRIVER
3220 M:      Larry Finger <Larry.Finger@lwfinger.net>
3221 L:      linux-wireless@vger.kernel.org
3222 L:      b43-dev@lists.infradead.org
3223 S:      Maintained
3224 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3225 F:      drivers/net/wireless/broadcom/b43legacy/
3226
3227 BACKLIGHT CLASS/SUBSYSTEM
3228 M:      Lee Jones <lee.jones@linaro.org>
3229 M:      Daniel Thompson <daniel.thompson@linaro.org>
3230 M:      Jingoo Han <jingoohan1@gmail.com>
3231 L:      dri-devel@lists.freedesktop.org
3232 S:      Maintained
3233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3234 F:      Documentation/ABI/stable/sysfs-class-backlight
3235 F:      Documentation/ABI/testing/sysfs-class-backlight
3236 F:      Documentation/devicetree/bindings/leds/backlight
3237 F:      drivers/video/backlight/
3238 F:      include/linux/backlight.h
3239 F:      include/linux/pwm_backlight.h
3240
3241 BATMAN ADVANCED
3242 M:      Marek Lindner <mareklindner@neomailbox.ch>
3243 M:      Simon Wunderlich <sw@simonwunderlich.de>
3244 M:      Antonio Quartulli <a@unstable.cc>
3245 M:      Sven Eckelmann <sven@narfation.org>
3246 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3247 S:      Maintained
3248 W:      https://www.open-mesh.org/
3249 Q:      https://patchwork.open-mesh.org/project/batman/list/
3250 B:      https://www.open-mesh.org/projects/batman-adv/issues
3251 C:      ircs://irc.hackint.org/batadv
3252 T:      git https://git.open-mesh.org/linux-merge.git
3253 F:      Documentation/networking/batman-adv.rst
3254 F:      include/uapi/linux/batadv_packet.h
3255 F:      include/uapi/linux/batman_adv.h
3256 F:      net/batman-adv/
3257
3258 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3259 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3260 L:      linux-hams@vger.kernel.org
3261 S:      Maintained
3262 W:      http://www.baycom.org/~tom/ham/ham.html
3263 F:      drivers/net/hamradio/baycom*
3264
3265 BCACHE (BLOCK LAYER CACHE)
3266 M:      Coly Li <colyli@suse.de>
3267 M:      Kent Overstreet <kent.overstreet@gmail.com>
3268 L:      linux-bcache@vger.kernel.org
3269 S:      Maintained
3270 W:      http://bcache.evilpiepirate.org
3271 C:      irc://irc.oftc.net/bcache
3272 F:      drivers/md/bcache/
3273
3274 BDISP ST MEDIA DRIVER
3275 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3276 L:      linux-media@vger.kernel.org
3277 S:      Supported
3278 W:      https://linuxtv.org
3279 T:      git git://linuxtv.org/media_tree.git
3280 F:      drivers/media/platform/sti/bdisp
3281
3282 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3283 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3284 L:      netdev@vger.kernel.org
3285 S:      Maintained
3286 F:      drivers/net/ethernet/ec_bhf.c
3287
3288 BEFS FILE SYSTEM
3289 M:      Luis de Bethencourt <luisbg@kernel.org>
3290 M:      Salah Triki <salah.triki@gmail.com>
3291 S:      Maintained
3292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3293 F:      Documentation/filesystems/befs.rst
3294 F:      fs/befs/
3295
3296 BFQ I/O SCHEDULER
3297 M:      Paolo Valente <paolo.valente@linaro.org>
3298 M:      Jens Axboe <axboe@kernel.dk>
3299 L:      linux-block@vger.kernel.org
3300 S:      Maintained
3301 F:      Documentation/block/bfq-iosched.rst
3302 F:      block/bfq-*
3303
3304 BFS FILE SYSTEM
3305 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3306 S:      Maintained
3307 F:      Documentation/filesystems/bfs.rst
3308 F:      fs/bfs/
3309 F:      include/uapi/linux/bfs_fs.h
3310
3311 BITMAP API
3312 M:      Yury Norov <yury.norov@gmail.com>
3313 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3314 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3315 S:      Maintained
3316 F:      include/asm-generic/bitops/find.h
3317 F:      include/linux/bitmap.h
3318 F:      lib/bitmap.c
3319 F:      lib/find_bit.c
3320 F:      lib/find_bit_benchmark.c
3321 F:      lib/test_bitmap.c
3322 F:      tools/include/asm-generic/bitops/find.h
3323 F:      tools/include/linux/bitmap.h
3324 F:      tools/lib/bitmap.c
3325 F:      tools/lib/find_bit.c
3326
3327 BLINKM RGB LED DRIVER
3328 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3329 S:      Maintained
3330 F:      drivers/leds/leds-blinkm.c
3331
3332 BLOCK LAYER
3333 M:      Jens Axboe <axboe@kernel.dk>
3334 L:      linux-block@vger.kernel.org
3335 S:      Maintained
3336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3337 F:      block/
3338 F:      drivers/block/
3339 F:      include/linux/blk*
3340 F:      kernel/trace/blktrace.c
3341 F:      lib/sbitmap.c
3342
3343 BLOCK2MTD DRIVER
3344 M:      Joern Engel <joern@lazybastard.org>
3345 L:      linux-mtd@lists.infradead.org
3346 S:      Maintained
3347 F:      drivers/mtd/devices/block2mtd.c
3348
3349 BLUETOOTH DRIVERS
3350 M:      Marcel Holtmann <marcel@holtmann.org>
3351 M:      Johan Hedberg <johan.hedberg@gmail.com>
3352 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3353 L:      linux-bluetooth@vger.kernel.org
3354 S:      Supported
3355 W:      http://www.bluez.org/
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3358 F:      drivers/bluetooth/
3359
3360 BLUETOOTH SUBSYSTEM
3361 M:      Marcel Holtmann <marcel@holtmann.org>
3362 M:      Johan Hedberg <johan.hedberg@gmail.com>
3363 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3364 L:      linux-bluetooth@vger.kernel.org
3365 S:      Supported
3366 W:      http://www.bluez.org/
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3369 F:      include/net/bluetooth/
3370 F:      net/bluetooth/
3371
3372 BONDING DRIVER
3373 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3374 M:      Veaceslav Falico <vfalico@gmail.com>
3375 M:      Andy Gospodarek <andy@greyhouse.net>
3376 L:      netdev@vger.kernel.org
3377 S:      Supported
3378 W:      http://sourceforge.net/projects/bonding/
3379 F:      drivers/net/bonding/
3380 F:      include/net/bonding.h
3381 F:      include/uapi/linux/if_bonding.h
3382
3383 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3384 M:      Dan Robertson <dan@dlrobertson.com>
3385 L:      linux-iio@vger.kernel.org
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3388 F:      drivers/iio/accel/bma400*
3389
3390 BPF (Safe dynamic programs and tools)
3391 M:      Alexei Starovoitov <ast@kernel.org>
3392 M:      Daniel Borkmann <daniel@iogearbox.net>
3393 M:      Andrii Nakryiko <andrii@kernel.org>
3394 R:      Martin KaFai Lau <kafai@fb.com>
3395 R:      Song Liu <songliubraving@fb.com>
3396 R:      Yonghong Song <yhs@fb.com>
3397 R:      John Fastabend <john.fastabend@gmail.com>
3398 R:      KP Singh <kpsingh@kernel.org>
3399 L:      netdev@vger.kernel.org
3400 L:      bpf@vger.kernel.org
3401 S:      Supported
3402 W:      https://bpf.io/
3403 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3406 F:      Documentation/bpf/
3407 F:      Documentation/networking/filter.rst
3408 F:      Documentation/userspace-api/ebpf/
3409 F:      arch/*/net/*
3410 F:      include/linux/bpf*
3411 F:      include/linux/btf*
3412 F:      include/linux/filter.h
3413 F:      include/trace/events/xdp.h
3414 F:      include/uapi/linux/bpf*
3415 F:      include/uapi/linux/btf*
3416 F:      include/uapi/linux/filter.h
3417 F:      kernel/bpf/
3418 F:      kernel/trace/bpf_trace.c
3419 F:      lib/test_bpf.c
3420 F:      net/bpf/
3421 F:      net/core/filter.c
3422 F:      net/sched/act_bpf.c
3423 F:      net/sched/cls_bpf.c
3424 F:      samples/bpf/
3425 F:      scripts/bpf_doc.py
3426 F:      tools/bpf/
3427 F:      tools/lib/bpf/
3428 F:      tools/testing/selftests/bpf/
3429 N:      bpf
3430 K:      bpf
3431
3432 BPF JIT for ARM
3433 M:      Shubham Bansal <illusionist.neo@gmail.com>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/arm/net/
3438
3439 BPF JIT for ARM64
3440 M:      Daniel Borkmann <daniel@iogearbox.net>
3441 M:      Alexei Starovoitov <ast@kernel.org>
3442 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3443 L:      netdev@vger.kernel.org
3444 L:      bpf@vger.kernel.org
3445 S:      Supported
3446 F:      arch/arm64/net/
3447
3448 BPF JIT for MIPS (32-BIT AND 64-BIT)
3449 M:      Paul Burton <paulburton@kernel.org>
3450 L:      netdev@vger.kernel.org
3451 L:      bpf@vger.kernel.org
3452 S:      Maintained
3453 F:      arch/mips/net/
3454
3455 BPF JIT for NFP NICs
3456 M:      Jakub Kicinski <kuba@kernel.org>
3457 L:      netdev@vger.kernel.org
3458 L:      bpf@vger.kernel.org
3459 S:      Supported
3460 F:      drivers/net/ethernet/netronome/nfp/bpf/
3461
3462 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3463 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3464 L:      netdev@vger.kernel.org
3465 L:      bpf@vger.kernel.org
3466 S:      Maintained
3467 F:      arch/powerpc/net/
3468
3469 BPF JIT for RISC-V (32-bit)
3470 M:      Luke Nelson <luke.r.nels@gmail.com>
3471 M:      Xi Wang <xi.wang@gmail.com>
3472 L:      netdev@vger.kernel.org
3473 L:      bpf@vger.kernel.org
3474 S:      Maintained
3475 F:      arch/riscv/net/
3476 X:      arch/riscv/net/bpf_jit_comp64.c
3477
3478 BPF JIT for RISC-V (64-bit)
3479 M:      Björn Töpel <bjorn@kernel.org>
3480 L:      netdev@vger.kernel.org
3481 L:      bpf@vger.kernel.org
3482 S:      Maintained
3483 F:      arch/riscv/net/
3484 X:      arch/riscv/net/bpf_jit_comp32.c
3485
3486 BPF JIT for S390
3487 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3488 M:      Heiko Carstens <hca@linux.ibm.com>
3489 M:      Vasily Gorbik <gor@linux.ibm.com>
3490 L:      netdev@vger.kernel.org
3491 L:      bpf@vger.kernel.org
3492 S:      Maintained
3493 F:      arch/s390/net/
3494 X:      arch/s390/net/pnet.c
3495
3496 BPF JIT for SPARC (32-BIT AND 64-BIT)
3497 M:      David S. Miller <davem@davemloft.net>
3498 L:      netdev@vger.kernel.org
3499 L:      bpf@vger.kernel.org
3500 S:      Maintained
3501 F:      arch/sparc/net/
3502
3503 BPF JIT for X86 32-BIT
3504 M:      Wang YanQing <udknight@gmail.com>
3505 L:      netdev@vger.kernel.org
3506 L:      bpf@vger.kernel.org
3507 S:      Maintained
3508 F:      arch/x86/net/bpf_jit_comp32.c
3509
3510 BPF JIT for X86 64-BIT
3511 M:      Alexei Starovoitov <ast@kernel.org>
3512 M:      Daniel Borkmann <daniel@iogearbox.net>
3513 L:      netdev@vger.kernel.org
3514 L:      bpf@vger.kernel.org
3515 S:      Supported
3516 F:      arch/x86/net/
3517 X:      arch/x86/net/bpf_jit_comp32.c
3518
3519 BPF LSM (Security Audit and Enforcement using BPF)
3520 M:      KP Singh <kpsingh@kernel.org>
3521 R:      Florent Revest <revest@chromium.org>
3522 R:      Brendan Jackman <jackmanb@chromium.org>
3523 L:      bpf@vger.kernel.org
3524 S:      Maintained
3525 F:      Documentation/bpf/bpf_lsm.rst
3526 F:      include/linux/bpf_lsm.h
3527 F:      kernel/bpf/bpf_lsm.c
3528 F:      security/bpf/
3529
3530 BROADCOM B44 10/100 ETHERNET DRIVER
3531 M:      Michael Chan <michael.chan@broadcom.com>
3532 L:      netdev@vger.kernel.org
3533 S:      Supported
3534 F:      drivers/net/ethernet/broadcom/b44.*
3535
3536 BROADCOM B53 ETHERNET SWITCH DRIVER
3537 M:      Florian Fainelli <f.fainelli@gmail.com>
3538 L:      netdev@vger.kernel.org
3539 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3540 S:      Supported
3541 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3542 F:      drivers/net/dsa/b53/*
3543 F:      include/linux/dsa/brcm.h
3544 F:      include/linux/platform_data/b53.h
3545
3546 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3547 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3548 L:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3551 S:      Maintained
3552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3553 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3554 F:      drivers/pci/controller/pcie-brcmstb.c
3555 F:      drivers/staging/vc04_services
3556 N:      bcm2711
3557 N:      bcm283*
3558
3559 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3560 M:      Florian Fainelli <f.fainelli@gmail.com>
3561 M:      Ray Jui <rjui@broadcom.com>
3562 M:      Scott Branden <sbranden@broadcom.com>
3563 M:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Maintained
3565 T:      git git://github.com/broadcom/mach-bcm
3566 F:      arch/arm/mach-bcm/
3567 N:      bcm281*
3568 N:      bcm113*
3569 N:      bcm216*
3570 N:      kona
3571
3572 BROADCOM BCM2711 HEVC DECODER
3573 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3574 L:      linux-media@vger.kernel.org
3575 S:      Maintained
3576 F:      Documentation/devicetree/bindings/media/rpivid_hevc.jaml
3577 F:      drivers/staging/media/rpivid
3578
3579 BROADCOM BCM2835 CAMERA DRIVER
3580 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3581 L:      linux-media@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/media/platform/bcm2835/
3584 F:      Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
3585
3586 BROADCOM BCM2835 ISP DRIVER
3587 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3588 L:      linux-media@vger.kernel.org
3589 S:      Maintained
3590 F:      Documentation/media/uapi/v4l/pixfmt-meta-bcm2835-isp-stats.rst
3591 F:      Documentation/media/v4l-drivers/bcm2835-isp.rst
3592 F:      drivers/staging/vc04_services/bcm2835-isp
3593 F:      include/uapi/linux/bcm2835-isp.h
3594
3595 BROADCOM BCM47XX MIPS ARCHITECTURE
3596 M:      Hauke Mehrtens <hauke@hauke-m.de>
3597 M:      Rafał Miłecki <zajec5@gmail.com>
3598 L:      linux-mips@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/mips/brcm/
3601 F:      arch/mips/bcm47xx/*
3602 F:      arch/mips/include/asm/mach-bcm47xx/*
3603
3604 BROADCOM BCM4908 ETHERNET DRIVER
3605 M:      Rafał Miłecki <rafal@milecki.pl>
3606 M:      bcm-kernel-feedback-list@broadcom.com
3607 L:      netdev@vger.kernel.org
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3610 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3611 F:      drivers/net/ethernet/broadcom/unimac.h
3612
3613 BROADCOM BCM5301X ARM ARCHITECTURE
3614 M:      Hauke Mehrtens <hauke@hauke-m.de>
3615 M:      Rafał Miłecki <zajec5@gmail.com>
3616 M:      bcm-kernel-feedback-list@broadcom.com
3617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3618 S:      Maintained
3619 F:      arch/arm/boot/dts/bcm470*
3620 F:      arch/arm/boot/dts/bcm5301*
3621 F:      arch/arm/boot/dts/bcm953012*
3622 F:      arch/arm/mach-bcm/bcm_5301x.c
3623
3624 BROADCOM BCM53573 ARM ARCHITECTURE
3625 M:      Rafał Miłecki <rafal@milecki.pl>
3626 L:      bcm-kernel-feedback-list@broadcom.com
3627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3628 S:      Maintained
3629 F:      arch/arm/boot/dts/bcm47189*
3630 F:      arch/arm/boot/dts/bcm53573*
3631
3632 BROADCOM BCM63XX ARM ARCHITECTURE
3633 M:      Florian Fainelli <f.fainelli@gmail.com>
3634 M:      bcm-kernel-feedback-list@broadcom.com
3635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3636 S:      Maintained
3637 T:      git git://github.com/broadcom/stblinux.git
3638 N:      bcm63xx
3639
3640 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3641 M:      Kevin Cernekee <cernekee@gmail.com>
3642 L:      linux-usb@vger.kernel.org
3643 S:      Maintained
3644 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3645
3646 BROADCOM BCM7XXX ARM ARCHITECTURE
3647 M:      Florian Fainelli <f.fainelli@gmail.com>
3648 M:      bcm-kernel-feedback-list@broadcom.com
3649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3650 S:      Maintained
3651 T:      git git://github.com/broadcom/stblinux.git
3652 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3653 F:      arch/arm/boot/dts/bcm7*.dts*
3654 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3655 F:      arch/arm/mach-bcm/*brcmstb*
3656 F:      arch/arm/mm/cache-b15-rac.c
3657 F:      drivers/bus/brcmstb_gisb.c
3658 F:      drivers/pci/controller/pcie-brcmstb.c
3659 N:      brcmstb
3660
3661 BROADCOM BDC DRIVER
3662 M:      Al Cooper <alcooperx@gmail.com>
3663 L:      linux-usb@vger.kernel.org
3664 L:      bcm-kernel-feedback-list@broadcom.com
3665 S:      Maintained
3666 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3667 F:      drivers/usb/gadget/udc/bdc/
3668
3669 BROADCOM BMIPS CPUFREQ DRIVER
3670 M:      Markus Mayer <mmayer@broadcom.com>
3671 M:      bcm-kernel-feedback-list@broadcom.com
3672 L:      linux-pm@vger.kernel.org
3673 S:      Maintained
3674 F:      drivers/cpufreq/bmips-cpufreq.c
3675
3676 BROADCOM BMIPS MIPS ARCHITECTURE
3677 M:      Florian Fainelli <f.fainelli@gmail.com>
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 L:      linux-mips@vger.kernel.org
3680 S:      Maintained
3681 T:      git git://github.com/broadcom/stblinux.git
3682 F:      arch/mips/bmips/*
3683 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3684 F:      arch/mips/include/asm/mach-bmips/*
3685 F:      arch/mips/kernel/*bmips*
3686 F:      drivers/soc/bcm/bcm63xx
3687 F:      drivers/irqchip/irq-bcm63*
3688 F:      drivers/irqchip/irq-bcm7*
3689 F:      drivers/irqchip/irq-brcmstb*
3690 F:      include/linux/bcm963xx_nvram.h
3691 F:      include/linux/bcm963xx_tag.h
3692
3693 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3694 M:      Rasesh Mody <rmody@marvell.com>
3695 M:      GR-Linux-NIC-Dev@marvell.com
3696 L:      netdev@vger.kernel.org
3697 S:      Supported
3698 F:      drivers/net/ethernet/broadcom/bnx2.*
3699 F:      drivers/net/ethernet/broadcom/bnx2_*
3700
3701 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3702 M:      Saurav Kashyap <skashyap@marvell.com>
3703 M:      Javed Hasan <jhasan@marvell.com>
3704 M:      GR-QLogic-Storage-Upstream@marvell.com
3705 L:      linux-scsi@vger.kernel.org
3706 S:      Supported
3707 F:      drivers/scsi/bnx2fc/
3708
3709 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3710 M:      Nilesh Javali <njavali@marvell.com>
3711 M:      Manish Rangankar <mrangankar@marvell.com>
3712 M:      GR-QLogic-Storage-Upstream@marvell.com
3713 L:      linux-scsi@vger.kernel.org
3714 S:      Supported
3715 F:      drivers/scsi/bnx2i/
3716
3717 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3718 M:      Ariel Elior <aelior@marvell.com>
3719 M:      Sudarsana Kalluru <skalluru@marvell.com>
3720 M:      GR-everest-linux-l2@marvell.com
3721 L:      netdev@vger.kernel.org
3722 S:      Supported
3723 F:      drivers/net/ethernet/broadcom/bnx2x/
3724
3725 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3726 M:      Michael Chan <michael.chan@broadcom.com>
3727 L:      netdev@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/net/ethernet/broadcom/bnxt/
3730
3731 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3732 M:      Arend van Spriel <aspriel@gmail.com>
3733 M:      Franky Lin <franky.lin@broadcom.com>
3734 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3735 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3736 M:      Wright Feng <wright.feng@infineon.com>
3737 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3738 L:      linux-wireless@vger.kernel.org
3739 L:      brcm80211-dev-list.pdl@broadcom.com
3740 L:      SHA-cyfmac-dev-list@infineon.com
3741 S:      Supported
3742 F:      drivers/net/wireless/broadcom/brcm80211/
3743
3744 BROADCOM BRCMSTB GPIO DRIVER
3745 M:      Gregory Fong <gregory.0xf0@gmail.com>
3746 L:      bcm-kernel-feedback-list@broadcom.com
3747 S:      Supported
3748 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3749 F:      drivers/gpio/gpio-brcmstb.c
3750
3751 BROADCOM BRCMSTB I2C DRIVER
3752 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3753 L:      linux-i2c@vger.kernel.org
3754 L:      bcm-kernel-feedback-list@broadcom.com
3755 S:      Supported
3756 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3757 F:      drivers/i2c/busses/i2c-brcmstb.c
3758
3759 BROADCOM BRCMSTB UART DRIVER
3760 M:      Al Cooper <alcooperx@gmail.com>
3761 L:      linux-serial@vger.kernel.org
3762 L:      bcm-kernel-feedback-list@broadcom.com
3763 S:      Maintained
3764 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3765 F:      drivers/tty/serial/8250/8250_bcm7271.c
3766
3767 BROADCOM BRCMSTB USB EHCI DRIVER
3768 M:      Al Cooper <alcooperx@gmail.com>
3769 L:      linux-usb@vger.kernel.org
3770 L:      bcm-kernel-feedback-list@broadcom.com
3771 S:      Maintained
3772 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3773 F:      drivers/usb/host/ehci-brcm.*
3774
3775 BROADCOM BRCMSTB USB PIN MAP DRIVER
3776 M:      Al Cooper <alcooperx@gmail.com>
3777 L:      linux-usb@vger.kernel.org
3778 L:      bcm-kernel-feedback-list@broadcom.com
3779 S:      Maintained
3780 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3781 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3782
3783 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3784 M:      Al Cooper <alcooperx@gmail.com>
3785 L:      linux-kernel@vger.kernel.org
3786 L:      bcm-kernel-feedback-list@broadcom.com
3787 S:      Maintained
3788 F:      drivers/phy/broadcom/phy-brcm-usb*
3789
3790 BROADCOM ETHERNET PHY DRIVERS
3791 M:      Florian Fainelli <f.fainelli@gmail.com>
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 L:      netdev@vger.kernel.org
3794 S:      Supported
3795 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3796 F:      drivers/net/phy/bcm*.[ch]
3797 F:      drivers/net/phy/broadcom.c
3798 F:      include/linux/brcmphy.h
3799
3800 BROADCOM GENET ETHERNET DRIVER
3801 M:      Doug Berger <opendmb@gmail.com>
3802 M:      Florian Fainelli <f.fainelli@gmail.com>
3803 L:      bcm-kernel-feedback-list@broadcom.com
3804 L:      netdev@vger.kernel.org
3805 S:      Supported
3806 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3807 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3808 F:      drivers/net/ethernet/broadcom/genet/
3809 F:      drivers/net/ethernet/broadcom/unimac.h
3810 F:      drivers/net/mdio/mdio-bcm-unimac.c
3811 F:      include/linux/platform_data/bcmgenet.h
3812 F:      include/linux/platform_data/mdio-bcm-unimac.h
3813
3814 BROADCOM IPROC ARM ARCHITECTURE
3815 M:      Ray Jui <rjui@broadcom.com>
3816 M:      Scott Branden <sbranden@broadcom.com>
3817 M:      bcm-kernel-feedback-list@broadcom.com
3818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3819 S:      Maintained
3820 T:      git git://github.com/broadcom/cygnus-linux.git
3821 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3822 F:      arch/arm64/boot/dts/broadcom/stingray/*
3823 F:      drivers/clk/bcm/clk-ns*
3824 F:      drivers/clk/bcm/clk-sr*
3825 F:      drivers/pinctrl/bcm/pinctrl-ns*
3826 F:      include/dt-bindings/clock/bcm-sr*
3827 N:      iproc
3828 N:      cygnus
3829 N:      bcm[-_]nsp
3830 N:      bcm9113*
3831 N:      bcm9583*
3832 N:      bcm9585*
3833 N:      bcm9586*
3834 N:      bcm988312
3835 N:      bcm113*
3836 N:      bcm583*
3837 N:      bcm585*
3838 N:      bcm586*
3839 N:      bcm88312
3840 N:      hr2
3841 N:      stingray
3842
3843 BROADCOM IPROC GBIT ETHERNET DRIVER
3844 M:      Rafał Miłecki <rafal@milecki.pl>
3845 M:      bcm-kernel-feedback-list@broadcom.com
3846 L:      netdev@vger.kernel.org
3847 S:      Maintained
3848 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3849 F:      drivers/net/ethernet/broadcom/bgmac*
3850 F:      drivers/net/ethernet/broadcom/unimac.h
3851
3852 BROADCOM KONA GPIO DRIVER
3853 M:      Ray Jui <rjui@broadcom.com>
3854 L:      bcm-kernel-feedback-list@broadcom.com
3855 S:      Supported
3856 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3857 F:      drivers/gpio/gpio-bcm-kona.c
3858
3859 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3860 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3861 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3862 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3863 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3864 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3865 L:      linux-scsi@vger.kernel.org
3866 S:      Supported
3867 W:      https://www.broadcom.com/support/storage
3868 F:      drivers/scsi/mpi3mr/
3869
3870 BROADCOM NETXTREME-E ROCE DRIVER
3871 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3872 L:      linux-rdma@vger.kernel.org
3873 S:      Supported
3874 W:      http://www.broadcom.com
3875 F:      drivers/infiniband/hw/bnxt_re/
3876 F:      include/uapi/rdma/bnxt_re-abi.h
3877
3878 BROADCOM NVRAM DRIVER
3879 M:      Rafał Miłecki <zajec5@gmail.com>
3880 L:      linux-mips@vger.kernel.org
3881 S:      Maintained
3882 F:      drivers/firmware/broadcom/*
3883
3884 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3885 M:      Rafał Miłecki <rafal@milecki.pl>
3886 M:      Florian Fainelli <f.fainelli@gmail.com>
3887 M:      bcm-kernel-feedback-list@broadcom.com
3888 L:      linux-pm@vger.kernel.org
3889 S:      Maintained
3890 T:      git git://github.com/broadcom/stblinux.git
3891 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3892 F:      include/dt-bindings/soc/bcm-pmb.h
3893
3894 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3895 M:      Rafał Miłecki <zajec5@gmail.com>
3896 L:      linux-wireless@vger.kernel.org
3897 S:      Maintained
3898 F:      drivers/bcma/
3899 F:      include/linux/bcma/
3900
3901 BROADCOM SPI DRIVER
3902 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3903 M:      bcm-kernel-feedback-list@broadcom.com
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3906 F:      drivers/spi/spi-bcm-qspi.*
3907 F:      drivers/spi/spi-brcmstb-qspi.c
3908 F:      drivers/spi/spi-iproc-qspi.c
3909
3910 BROADCOM STB AVS CPUFREQ DRIVER
3911 M:      Markus Mayer <mmayer@broadcom.com>
3912 M:      bcm-kernel-feedback-list@broadcom.com
3913 L:      linux-pm@vger.kernel.org
3914 S:      Maintained
3915 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3916 F:      drivers/cpufreq/brcmstb*
3917
3918 BROADCOM STB AVS TMON DRIVER
3919 M:      Markus Mayer <mmayer@broadcom.com>
3920 M:      bcm-kernel-feedback-list@broadcom.com
3921 L:      linux-pm@vger.kernel.org
3922 S:      Maintained
3923 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3924 F:      drivers/thermal/broadcom/brcmstb*
3925
3926 BROADCOM STB DPFE DRIVER
3927 M:      Markus Mayer <mmayer@broadcom.com>
3928 M:      bcm-kernel-feedback-list@broadcom.com
3929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3930 S:      Maintained
3931 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3932 F:      drivers/memory/brcmstb_dpfe.c
3933
3934 BROADCOM STB NAND FLASH DRIVER
3935 M:      Brian Norris <computersforpeace@gmail.com>
3936 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3937 L:      linux-mtd@lists.infradead.org
3938 L:      bcm-kernel-feedback-list@broadcom.com
3939 S:      Maintained
3940 F:      drivers/mtd/nand/raw/brcmnand/
3941
3942 BROADCOM STB PCIE DRIVER
3943 M:      Jim Quinlan <jim2101024@gmail.com>
3944 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3945 M:      Florian Fainelli <f.fainelli@gmail.com>
3946 M:      bcm-kernel-feedback-list@broadcom.com
3947 L:      linux-pci@vger.kernel.org
3948 S:      Maintained
3949 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3950 F:      drivers/pci/controller/pcie-brcmstb.c
3951
3952 BROADCOM SYSTEMPORT ETHERNET DRIVER
3953 M:      Florian Fainelli <f.fainelli@gmail.com>
3954 L:      bcm-kernel-feedback-list@broadcom.com
3955 L:      netdev@vger.kernel.org
3956 S:      Supported
3957 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3958 F:      drivers/net/ethernet/broadcom/unimac.h
3959
3960 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3961 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3962 M:      Prashant Sreedharan <prashant@broadcom.com>
3963 M:      Michael Chan <mchan@broadcom.com>
3964 L:      netdev@vger.kernel.org
3965 S:      Supported
3966 F:      drivers/net/ethernet/broadcom/tg3.*
3967
3968 BROADCOM VK DRIVER
3969 M:      Scott Branden <scott.branden@broadcom.com>
3970 L:      bcm-kernel-feedback-list@broadcom.com
3971 S:      Supported
3972 F:      drivers/misc/bcm-vk/
3973 F:      include/uapi/linux/misc/bcm_vk.h
3974
3975 BROCADE BFA FC SCSI DRIVER
3976 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3977 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3978 L:      linux-scsi@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/scsi/bfa/
3981
3982 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3983 M:      Rasesh Mody <rmody@marvell.com>
3984 M:      Sudarsana Kalluru <skalluru@marvell.com>
3985 M:      GR-Linux-NIC-Dev@marvell.com
3986 L:      netdev@vger.kernel.org
3987 S:      Supported
3988 F:      drivers/net/ethernet/brocade/bna/
3989
3990 BSG (block layer generic sg v4 driver)
3991 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      block/bsg.c
3995 F:      include/linux/bsg.h
3996 F:      include/uapi/linux/bsg.h
3997
3998 BT87X AUDIO DRIVER
3999 M:      Clemens Ladisch <clemens@ladisch.de>
4000 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4001 S:      Maintained
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4003 F:      Documentation/sound/cards/bt87x.rst
4004 F:      sound/pci/bt87x.c
4005
4006 BT8XXGPIO DRIVER
4007 M:      Michael Buesch <m@bues.ch>
4008 S:      Maintained
4009 W:      http://bu3sch.de/btgpio.php
4010 F:      drivers/gpio/gpio-bt8xx.c
4011
4012 BTRFS FILE SYSTEM
4013 M:      Chris Mason <clm@fb.com>
4014 M:      Josef Bacik <josef@toxicpanda.com>
4015 M:      David Sterba <dsterba@suse.com>
4016 L:      linux-btrfs@vger.kernel.org
4017 S:      Maintained
4018 W:      http://btrfs.wiki.kernel.org/
4019 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4020 C:      irc://irc.libera.chat/btrfs
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4022 F:      Documentation/filesystems/btrfs.rst
4023 F:      fs/btrfs/
4024 F:      include/linux/btrfs*
4025 F:      include/uapi/linux/btrfs*
4026
4027 BTTV VIDEO4LINUX DRIVER
4028 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4029 L:      linux-media@vger.kernel.org
4030 S:      Odd fixes
4031 W:      https://linuxtv.org
4032 T:      git git://linuxtv.org/media_tree.git
4033 F:      Documentation/driver-api/media/drivers/bttv*
4034 F:      drivers/media/pci/bt8xx/bttv*
4035
4036 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4037 M:      Chanwoo Choi <cw00.choi@samsung.com>
4038 L:      linux-pm@vger.kernel.org
4039 L:      linux-samsung-soc@vger.kernel.org
4040 S:      Maintained
4041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4042 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4043 F:      drivers/devfreq/exynos-bus.c
4044
4045 BUSLOGIC SCSI DRIVER
4046 M:      Khalid Aziz <khalid@gonehiking.org>
4047 L:      linux-scsi@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/scsi/BusLogic.*
4050 F:      drivers/scsi/FlashPoint.*
4051
4052 C-MEDIA CMI8788 DRIVER
4053 M:      Clemens Ladisch <clemens@ladisch.de>
4054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4055 S:      Maintained
4056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4057 F:      sound/pci/oxygen/
4058
4059 C-SKY ARCHITECTURE
4060 M:      Guo Ren <guoren@kernel.org>
4061 L:      linux-csky@vger.kernel.org
4062 S:      Supported
4063 T:      git https://github.com/c-sky/csky-linux.git
4064 F:      Documentation/devicetree/bindings/csky/
4065 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4066 F:      Documentation/devicetree/bindings/timer/csky,*
4067 F:      arch/csky/
4068 F:      drivers/clocksource/timer-gx6605s.c
4069 F:      drivers/clocksource/timer-mp-csky.c
4070 F:      drivers/irqchip/irq-csky-*
4071 N:      csky
4072 K:      csky
4073
4074 CA8210 IEEE-802.15.4 RADIO DRIVER
4075 M:      Harry Morris <h.morris@cascoda.com>
4076 L:      linux-wpan@vger.kernel.org
4077 S:      Maintained
4078 W:      https://github.com/Cascoda/ca8210-linux.git
4079 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4080 F:      drivers/net/ieee802154/ca8210.c
4081
4082 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4083 M:      Damien Le Moal <damien.lemoal@wdc.com>
4084 L:      linux-riscv@lists.infradead.org
4085 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4086 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4087 F:      drivers/pinctrl/pinctrl-k210.c
4088
4089 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4090 M:      Damien Le Moal <damien.lemoal@wdc.com>
4091 L:      linux-kernel@vger.kernel.org
4092 L:      linux-riscv@lists.infradead.org
4093 S:      Maintained
4094 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4095 F:      drivers/reset/reset-k210.c
4096
4097 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4098 M:      Damien Le Moal <damien.lemoal@wdc.com>
4099 L:      linux-riscv@lists.infradead.org
4100 S:      Maintained
4101 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4102 F:      drivers/soc/canaan/
4103 F:      include/soc/canaan/
4104
4105 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4106 M:      David Howells <dhowells@redhat.com>
4107 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4108 S:      Supported
4109 F:      Documentation/filesystems/caching/cachefiles.rst
4110 F:      fs/cachefiles/
4111
4112 CADENCE MIPI-CSI2 BRIDGES
4113 M:      Maxime Ripard <mripard@kernel.org>
4114 L:      linux-media@vger.kernel.org
4115 S:      Maintained
4116 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4117 F:      drivers/media/platform/cadence/cdns-csi2*
4118
4119 CADENCE NAND DRIVER
4120 L:      linux-mtd@lists.infradead.org
4121 S:      Orphan
4122 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4123 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4124
4125 CADENCE USB3 DRD IP DRIVER
4126 M:      Peter Chen <peter.chen@kernel.org>
4127 M:      Pawel Laszczak <pawell@cadence.com>
4128 R:      Roger Quadros <rogerq@kernel.org>
4129 R:      Aswath Govindraju <a-govindraju@ti.com>
4130 L:      linux-usb@vger.kernel.org
4131 S:      Maintained
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4133 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4134 F:      drivers/usb/cdns3/
4135 X:      drivers/usb/cdns3/cdnsp*
4136
4137 CADENCE USBSSP DRD IP DRIVER
4138 M:      Pawel Laszczak <pawell@cadence.com>
4139 L:      linux-usb@vger.kernel.org
4140 S:      Maintained
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4142 F:      drivers/usb/cdns3/
4143 X:      drivers/usb/cdns3/cdns3*
4144
4145 CADET FM/AM RADIO RECEIVER DRIVER
4146 M:      Hans Verkuil <hverkuil@xs4all.nl>
4147 L:      linux-media@vger.kernel.org
4148 S:      Maintained
4149 W:      https://linuxtv.org
4150 T:      git git://linuxtv.org/media_tree.git
4151 F:      drivers/media/radio/radio-cadet*
4152
4153 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4154 L:      linux-media@vger.kernel.org
4155 S:      Orphan
4156 T:      git git://linuxtv.org/media_tree.git
4157 F:      Documentation/admin-guide/media/cafe_ccic*
4158 F:      drivers/media/platform/marvell-ccic/
4159
4160 CAIF NETWORK LAYER
4161 L:      netdev@vger.kernel.org
4162 S:      Orphan
4163 F:      Documentation/networking/caif/
4164 F:      drivers/net/caif/
4165 F:      include/net/caif/
4166 F:      include/uapi/linux/caif/
4167 F:      net/caif/
4168
4169 CAKE QDISC
4170 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4171 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4172 S:      Maintained
4173 F:      net/sched/sch_cake.c
4174
4175 CAN NETWORK DRIVERS
4176 M:      Wolfgang Grandegger <wg@grandegger.com>
4177 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4178 L:      linux-can@vger.kernel.org
4179 S:      Maintained
4180 W:      https://github.com/linux-can
4181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4183 F:      Documentation/devicetree/bindings/net/can/
4184 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4185 F:      drivers/net/can/
4186 F:      drivers/phy/phy-can-transceiver.c
4187 F:      include/linux/can/bittiming.h
4188 F:      include/linux/can/dev.h
4189 F:      include/linux/can/led.h
4190 F:      include/linux/can/length.h
4191 F:      include/linux/can/platform/
4192 F:      include/linux/can/rx-offload.h
4193 F:      include/uapi/linux/can/error.h
4194 F:      include/uapi/linux/can/netlink.h
4195 F:      include/uapi/linux/can/vxcan.h
4196
4197 CAN NETWORK LAYER
4198 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4199 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4200 L:      linux-can@vger.kernel.org
4201 S:      Maintained
4202 W:      https://github.com/linux-can
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4205 F:      Documentation/networking/can.rst
4206 F:      include/linux/can/can-ml.h
4207 F:      include/linux/can/core.h
4208 F:      include/linux/can/skb.h
4209 F:      include/net/netns/can.h
4210 F:      include/uapi/linux/can.h
4211 F:      include/uapi/linux/can/bcm.h
4212 F:      include/uapi/linux/can/gw.h
4213 F:      include/uapi/linux/can/isotp.h
4214 F:      include/uapi/linux/can/raw.h
4215 F:      net/can/
4216
4217 CAN-J1939 NETWORK LAYER
4218 M:      Robin van der Gracht <robin@protonic.nl>
4219 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4220 R:      kernel@pengutronix.de
4221 L:      linux-can@vger.kernel.org
4222 S:      Maintained
4223 F:      Documentation/networking/j1939.rst
4224 F:      include/uapi/linux/can/j1939.h
4225 F:      net/can/j1939/
4226
4227 CAPABILITIES
4228 M:      Serge Hallyn <serge@hallyn.com>
4229 L:      linux-security-module@vger.kernel.org
4230 S:      Supported
4231 F:      include/linux/capability.h
4232 F:      include/uapi/linux/capability.h
4233 F:      kernel/capability.c
4234 F:      security/commoncap.c
4235
4236 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4237 M:      Kevin Tsai <ktsai@capellamicro.com>
4238 S:      Maintained
4239 F:      drivers/iio/light/cm*
4240
4241 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4242 M:      Christian Lamparter <chunkeey@googlemail.com>
4243 L:      linux-wireless@vger.kernel.org
4244 S:      Maintained
4245 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4246 F:      drivers/net/wireless/ath/carl9170/
4247
4248 CAVIUM I2C DRIVER
4249 M:      Robert Richter <rric@kernel.org>
4250 S:      Odd Fixes
4251 W:      http://www.marvell.com
4252 F:      drivers/i2c/busses/i2c-octeon*
4253 F:      drivers/i2c/busses/i2c-thunderx*
4254
4255 CAVIUM LIQUIDIO NETWORK DRIVER
4256 M:      Derek Chickles <dchickles@marvell.com>
4257 M:      Satanand Burla <sburla@marvell.com>
4258 M:      Felix Manlunas <fmanlunas@marvell.com>
4259 L:      netdev@vger.kernel.org
4260 S:      Supported
4261 W:      http://www.marvell.com
4262 F:      drivers/net/ethernet/cavium/liquidio/
4263
4264 CAVIUM MMC DRIVER
4265 M:      Robert Richter <rric@kernel.org>
4266 S:      Odd Fixes
4267 W:      http://www.marvell.com
4268 F:      drivers/mmc/host/cavium*
4269
4270 CAVIUM OCTEON-TX CRYPTO DRIVER
4271 M:      George Cherian <gcherian@marvell.com>
4272 L:      linux-crypto@vger.kernel.org
4273 S:      Supported
4274 W:      http://www.marvell.com
4275 F:      drivers/crypto/cavium/cpt/
4276
4277 CAVIUM THUNDERX2 ARM64 SOC
4278 M:      Robert Richter <rric@kernel.org>
4279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4280 S:      Odd Fixes
4281 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4282 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4283
4284 CBS/ETF/TAPRIO QDISCS
4285 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4286 S:      Maintained
4287 L:      netdev@vger.kernel.org
4288 F:      net/sched/sch_cbs.c
4289 F:      net/sched/sch_etf.c
4290 F:      net/sched/sch_taprio.c
4291
4292 CC2520 IEEE-802.15.4 RADIO DRIVER
4293 M:      Varka Bhadram <varkabhadram@gmail.com>
4294 L:      linux-wpan@vger.kernel.org
4295 S:      Maintained
4296 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4297 F:      drivers/net/ieee802154/cc2520.c
4298 F:      include/linux/spi/cc2520.h
4299
4300 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4301 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4302 L:      linux-crypto@vger.kernel.org
4303 S:      Supported
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305 F:      drivers/crypto/ccree/
4306
4307 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4308 M:      Hadar Gat <hadar.gat@arm.com>
4309 L:      linux-crypto@vger.kernel.org
4310 S:      Supported
4311 F:      drivers/char/hw_random/cctrng.c
4312 F:      drivers/char/hw_random/cctrng.h
4313 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4314 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4315
4316 CEC FRAMEWORK
4317 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4318 L:      linux-media@vger.kernel.org
4319 S:      Supported
4320 W:      http://linuxtv.org
4321 T:      git git://linuxtv.org/media_tree.git
4322 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4323 F:      Documentation/devicetree/bindings/media/cec.txt
4324 F:      Documentation/driver-api/media/cec-core.rst
4325 F:      Documentation/userspace-api/media/cec
4326 F:      drivers/media/cec/
4327 F:      drivers/media/rc/keymaps/rc-cec.c
4328 F:      include/media/cec-notifier.h
4329 F:      include/media/cec.h
4330 F:      include/uapi/linux/cec-funcs.h
4331 F:      include/uapi/linux/cec.h
4332
4333 CEC GPIO DRIVER
4334 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4335 L:      linux-media@vger.kernel.org
4336 S:      Supported
4337 W:      http://linuxtv.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4340 F:      drivers/media/cec/platform/cec-gpio/
4341
4342 CELL BROADBAND ENGINE ARCHITECTURE
4343 M:      Arnd Bergmann <arnd@arndb.de>
4344 L:      linuxppc-dev@lists.ozlabs.org
4345 S:      Supported
4346 W:      http://www.ibm.com/developerworks/power/cell/
4347 F:      arch/powerpc/include/asm/cell*.h
4348 F:      arch/powerpc/include/asm/spu*.h
4349 F:      arch/powerpc/include/uapi/asm/spu*.h
4350 F:      arch/powerpc/platforms/cell/
4351
4352 CELLWISE CW2015 BATTERY DRIVER
4353 M:      Tobias Schrammm <t.schramm@manjaro.org>
4354 S:      Maintained
4355 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4356 F:      drivers/power/supply/cw2015_battery.c
4357
4358 CEPH COMMON CODE (LIBCEPH)
4359 M:      Ilya Dryomov <idryomov@gmail.com>
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 L:      ceph-devel@vger.kernel.org
4362 S:      Supported
4363 W:      http://ceph.com/
4364 T:      git git://github.com/ceph/ceph-client.git
4365 F:      include/linux/ceph/
4366 F:      include/linux/crush/
4367 F:      net/ceph/
4368
4369 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4370 M:      Jeff Layton <jlayton@kernel.org>
4371 M:      Ilya Dryomov <idryomov@gmail.com>
4372 L:      ceph-devel@vger.kernel.org
4373 S:      Supported
4374 W:      http://ceph.com/
4375 T:      git git://github.com/ceph/ceph-client.git
4376 F:      Documentation/filesystems/ceph.rst
4377 F:      fs/ceph/
4378
4379 CERTIFICATE HANDLING
4380 M:      David Howells <dhowells@redhat.com>
4381 M:      David Woodhouse <dwmw2@infradead.org>
4382 L:      keyrings@vger.kernel.org
4383 S:      Maintained
4384 F:      Documentation/admin-guide/module-signing.rst
4385 F:      certs/
4386 F:      scripts/extract-cert.c
4387 F:      scripts/sign-file.c
4388
4389 CFAG12864B LCD DRIVER
4390 M:      Miguel Ojeda <ojeda@kernel.org>
4391 S:      Maintained
4392 F:      drivers/auxdisplay/cfag12864b.c
4393 F:      include/linux/cfag12864b.h
4394
4395 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4396 M:      Miguel Ojeda <ojeda@kernel.org>
4397 S:      Maintained
4398 F:      drivers/auxdisplay/cfag12864bfb.c
4399 F:      include/linux/cfag12864b.h
4400
4401 CHAR and MISC DRIVERS
4402 M:      Arnd Bergmann <arnd@arndb.de>
4403 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4404 S:      Supported
4405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4406 F:      drivers/char/
4407 F:      drivers/misc/
4408 F:      include/linux/miscdevice.h
4409 X:      drivers/char/agp/
4410 X:      drivers/char/hw_random/
4411 X:      drivers/char/ipmi/
4412 X:      drivers/char/random.c
4413 X:      drivers/char/tpm/
4414
4415 CHECKPATCH
4416 M:      Andy Whitcroft <apw@canonical.com>
4417 M:      Joe Perches <joe@perches.com>
4418 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4419 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4420 S:      Maintained
4421 F:      scripts/checkpatch.pl
4422
4423 CHECKPATCH DOCUMENTATION
4424 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4425 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4426 R:      Joe Perches <joe@perches.com>
4427 S:      Maintained
4428 F:      Documentation/dev-tools/checkpatch.rst
4429
4430 CHINESE DOCUMENTATION
4431 M:      Alex Shi <alexs@kernel.org>
4432 S:      Maintained
4433 F:      Documentation/translations/zh_CN/
4434
4435 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4436 M:      Peter Chen <peter.chen@kernel.org>
4437 L:      linux-usb@vger.kernel.org
4438 S:      Maintained
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4440 F:      drivers/usb/chipidea/
4441
4442 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4443 M:      Hans de Goede <hdegoede@redhat.com>
4444 L:      linux-input@vger.kernel.org
4445 S:      Maintained
4446 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4447 F:      drivers/input/touchscreen/chipone_icn8318.c
4448
4449 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4450 M:      Hans de Goede <hdegoede@redhat.com>
4451 L:      linux-input@vger.kernel.org
4452 S:      Maintained
4453 F:      drivers/input/touchscreen/chipone_icn8505.c
4454
4455 CHROME HARDWARE PLATFORM SUPPORT
4456 M:      Benson Leung <bleung@chromium.org>
4457 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4458 S:      Maintained
4459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4460 F:      drivers/platform/chrome/
4461
4462 CHROMEOS EC CODEC DRIVER
4463 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4464 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4465 R:      Guenter Roeck <groeck@chromium.org>
4466 S:      Maintained
4467 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4468 F:      sound/soc/codecs/cros_ec_codec.*
4469
4470 CHROMEOS EC SUBDRIVERS
4471 M:      Benson Leung <bleung@chromium.org>
4472 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4473 R:      Guenter Roeck <groeck@chromium.org>
4474 S:      Maintained
4475 F:      drivers/power/supply/cros_usbpd-charger.c
4476 N:      cros_ec
4477 N:      cros-ec
4478
4479 CHRONTEL CH7322 CEC DRIVER
4480 M:      Jeff Chase <jnchase@google.com>
4481 L:      linux-media@vger.kernel.org
4482 S:      Maintained
4483 T:      git git://linuxtv.org/media_tree.git
4484 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4485 F:      drivers/media/cec/i2c/ch7322.c
4486
4487 CIRRUS LOGIC AUDIO CODEC DRIVERS
4488 M:      James Schulman <james.schulman@cirrus.com>
4489 M:      David Rhodes <david.rhodes@cirrus.com>
4490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4491 L:      patches@opensource.cirrus.com
4492 S:      Maintained
4493 F:      sound/soc/codecs/cs*
4494
4495 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4496 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4497 L:      netdev@vger.kernel.org
4498 S:      Maintained
4499 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4500
4501 CIRRUS LOGIC LOCHNAGAR DRIVER
4502 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4503 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4504 L:      patches@opensource.cirrus.com
4505 S:      Supported
4506 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4507 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4511 F:      Documentation/hwmon/lochnagar.rst
4512 F:      drivers/clk/clk-lochnagar.c
4513 F:      drivers/hwmon/lochnagar-hwmon.c
4514 F:      drivers/mfd/lochnagar-i2c.c
4515 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4516 F:      drivers/regulator/lochnagar-regulator.c
4517 F:      include/dt-bindings/clk/lochnagar.h
4518 F:      include/dt-bindings/pinctrl/lochnagar.h
4519 F:      include/linux/mfd/lochnagar*
4520 F:      sound/soc/codecs/lochnagar-sc.c
4521
4522 CIRRUS LOGIC MADERA CODEC DRIVERS
4523 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4524 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4525 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4526 L:      patches@opensource.cirrus.com
4527 S:      Supported
4528 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4529 T:      git https://github.com/CirrusLogic/linux-drivers.git
4530 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4531 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4533 F:      drivers/gpio/gpio-madera*
4534 F:      drivers/irqchip/irq-madera*
4535 F:      drivers/mfd/cs47l*
4536 F:      drivers/mfd/madera*
4537 F:      drivers/pinctrl/cirrus/*
4538 F:      include/dt-bindings/sound/madera*
4539 F:      include/linux/irqchip/irq-madera*
4540 F:      include/linux/mfd/madera/*
4541 F:      include/sound/madera*
4542 F:      sound/soc/codecs/cs47l*
4543 F:      sound/soc/codecs/madera*
4544
4545 CISCO FCOE HBA DRIVER
4546 M:      Satish Kharat <satishkh@cisco.com>
4547 M:      Sesidhar Baddela <sebaddel@cisco.com>
4548 M:      Karan Tilak Kumar <kartilak@cisco.com>
4549 L:      linux-scsi@vger.kernel.org
4550 S:      Supported
4551 F:      drivers/scsi/fnic/
4552
4553 CISCO SCSI HBA DRIVER
4554 M:      Karan Tilak Kumar <kartilak@cisco.com>
4555 M:      Sesidhar Baddela <sebaddel@cisco.com>
4556 L:      linux-scsi@vger.kernel.org
4557 S:      Supported
4558 F:      drivers/scsi/snic/
4559
4560 CISCO VIC ETHERNET NIC DRIVER
4561 M:      Christian Benvenuti <benve@cisco.com>
4562 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4563 S:      Supported
4564 F:      drivers/net/ethernet/cisco/enic/
4565
4566 CISCO VIC LOW LATENCY NIC DRIVER
4567 M:      Christian Benvenuti <benve@cisco.com>
4568 M:      Nelson Escobar <neescoba@cisco.com>
4569 S:      Supported
4570 F:      drivers/infiniband/hw/usnic/
4571
4572 CLANG-FORMAT FILE
4573 M:      Miguel Ojeda <ojeda@kernel.org>
4574 S:      Maintained
4575 F:      .clang-format
4576
4577 CLANG/LLVM BUILD SUPPORT
4578 M:      Nathan Chancellor <nathan@kernel.org>
4579 M:      Nick Desaulniers <ndesaulniers@google.com>
4580 L:      llvm@lists.linux.dev
4581 S:      Supported
4582 W:      https://clangbuiltlinux.github.io/
4583 B:      https://github.com/ClangBuiltLinux/linux/issues
4584 C:      irc://irc.libera.chat/clangbuiltlinux
4585 F:      Documentation/kbuild/llvm.rst
4586 F:      include/linux/compiler-clang.h
4587 F:      scripts/Makefile.clang
4588 F:      scripts/clang-tools/
4589 K:      \b(?i:clang|llvm)\b
4590
4591 CLANG CONTROL FLOW INTEGRITY SUPPORT
4592 M:      Sami Tolvanen <samitolvanen@google.com>
4593 M:      Kees Cook <keescook@chromium.org>
4594 R:      Nathan Chancellor <nathan@kernel.org>
4595 R:      Nick Desaulniers <ndesaulniers@google.com>
4596 L:      llvm@lists.linux.dev
4597 S:      Supported
4598 B:      https://github.com/ClangBuiltLinux/linux/issues
4599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4600 F:      include/linux/cfi.h
4601 F:      kernel/cfi.c
4602
4603 CLEANCACHE API
4604 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4605 L:      linux-kernel@vger.kernel.org
4606 S:      Maintained
4607 F:      include/linux/cleancache.h
4608 F:      mm/cleancache.c
4609
4610 CLK API
4611 M:      Russell King <linux@armlinux.org.uk>
4612 L:      linux-clk@vger.kernel.org
4613 S:      Maintained
4614 F:      include/linux/clk.h
4615
4616 CLOCKSOURCE, CLOCKEVENT DRIVERS
4617 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4618 M:      Thomas Gleixner <tglx@linutronix.de>
4619 L:      linux-kernel@vger.kernel.org
4620 S:      Supported
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4622 F:      Documentation/devicetree/bindings/timer/
4623 F:      drivers/clocksource/
4624
4625 CMPC ACPI DRIVER
4626 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4627 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4628 L:      platform-driver-x86@vger.kernel.org
4629 S:      Supported
4630 F:      drivers/platform/x86/classmate-laptop.c
4631
4632 COBALT MEDIA DRIVER
4633 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4634 L:      linux-media@vger.kernel.org
4635 S:      Supported
4636 W:      https://linuxtv.org
4637 T:      git git://linuxtv.org/media_tree.git
4638 F:      drivers/media/pci/cobalt/
4639
4640 COCCINELLE/Semantic Patches (SmPL)
4641 M:      Julia Lawall <Julia.Lawall@inria.fr>
4642 M:      Gilles Muller <Gilles.Muller@inria.fr>
4643 M:      Nicolas Palix <nicolas.palix@imag.fr>
4644 M:      Michal Marek <michal.lkml@markovi.net>
4645 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4646 S:      Supported
4647 W:      http://coccinelle.lip6.fr/
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4649 F:      Documentation/dev-tools/coccinelle.rst
4650 F:      scripts/coccicheck
4651 F:      scripts/coccinelle/
4652
4653 CODA FILE SYSTEM
4654 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4655 M:      coda@cs.cmu.edu
4656 L:      codalist@coda.cs.cmu.edu
4657 S:      Maintained
4658 W:      http://www.coda.cs.cmu.edu/
4659 F:      Documentation/filesystems/coda.rst
4660 F:      fs/coda/
4661 F:      include/linux/coda*.h
4662 F:      include/uapi/linux/coda*.h
4663
4664 CODA V4L2 MEM2MEM DRIVER
4665 M:      Philipp Zabel <p.zabel@pengutronix.de>
4666 L:      linux-media@vger.kernel.org
4667 S:      Maintained
4668 F:      Documentation/devicetree/bindings/media/coda.yaml
4669 F:      drivers/media/platform/coda/
4670
4671 CODE OF CONDUCT
4672 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4673 S:      Supported
4674 F:      Documentation/process/code-of-conduct-interpretation.rst
4675 F:      Documentation/process/code-of-conduct.rst
4676
4677 COMEDI DRIVERS
4678 M:      Ian Abbott <abbotti@mev.co.uk>
4679 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4680 S:      Odd Fixes
4681 F:      drivers/comedi/
4682
4683 COMMON CLK FRAMEWORK
4684 M:      Michael Turquette <mturquette@baylibre.com>
4685 M:      Stephen Boyd <sboyd@kernel.org>
4686 L:      linux-clk@vger.kernel.org
4687 S:      Maintained
4688 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4690 F:      Documentation/devicetree/bindings/clock/
4691 F:      drivers/clk/
4692 F:      include/linux/clk-pr*
4693 F:      include/linux/clk/
4694 F:      include/linux/of_clk.h
4695 X:      drivers/clk/clkdev.c
4696
4697 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4698 M:      Steve French <sfrench@samba.org>
4699 L:      linux-cifs@vger.kernel.org
4700 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4701 S:      Supported
4702 W:      http://linux-cifs.samba.org/
4703 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4704 F:      Documentation/admin-guide/cifs/
4705 F:      fs/cifs/
4706 F:      fs/smbfs_common/
4707
4708 COMPACTPCI HOTPLUG CORE
4709 M:      Scott Murray <scott@spiteful.org>
4710 L:      linux-pci@vger.kernel.org
4711 S:      Maintained
4712 F:      drivers/pci/hotplug/cpci_hotplug*
4713
4714 COMPACTPCI HOTPLUG GENERIC DRIVER
4715 M:      Scott Murray <scott@spiteful.org>
4716 L:      linux-pci@vger.kernel.org
4717 S:      Maintained
4718 F:      drivers/pci/hotplug/cpcihp_generic.c
4719
4720 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4721 M:      Scott Murray <scott@spiteful.org>
4722 L:      linux-pci@vger.kernel.org
4723 S:      Maintained
4724 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4725
4726 COMPAL LAPTOP SUPPORT
4727 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4728 L:      platform-driver-x86@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/platform/x86/compal-laptop.c
4731
4732 COMPILER ATTRIBUTES
4733 M:      Miguel Ojeda <ojeda@kernel.org>
4734 R:      Nick Desaulniers <ndesaulniers@google.com>
4735 S:      Maintained
4736 F:      include/linux/compiler_attributes.h
4737
4738 COMPUTE EXPRESS LINK (CXL)
4739 M:      Alison Schofield <alison.schofield@intel.com>
4740 M:      Vishal Verma <vishal.l.verma@intel.com>
4741 M:      Ira Weiny <ira.weiny@intel.com>
4742 M:      Ben Widawsky <ben.widawsky@intel.com>
4743 M:      Dan Williams <dan.j.williams@intel.com>
4744 L:      linux-cxl@vger.kernel.org
4745 S:      Maintained
4746 F:      drivers/cxl/
4747 F:      include/uapi/linux/cxl_mem.h
4748
4749 CONEXANT ACCESSRUNNER USB DRIVER
4750 L:      accessrunner-general@lists.sourceforge.net
4751 S:      Orphan
4752 W:      http://accessrunner.sourceforge.net/
4753 F:      drivers/usb/atm/cxacru.c
4754
4755 CONFIGFS
4756 M:      Joel Becker <jlbec@evilplan.org>
4757 M:      Christoph Hellwig <hch@lst.de>
4758 S:      Supported
4759 T:      git git://git.infradead.org/users/hch/configfs.git
4760 F:      fs/configfs/
4761 F:      include/linux/configfs.h
4762 F:      samples/configfs/
4763
4764 CONSOLE SUBSYSTEM
4765 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4766 S:      Supported
4767 F:      drivers/video/console/
4768 F:      include/linux/console*
4769
4770 CONTEXT TRACKING
4771 M:      Frederic Weisbecker <frederic@kernel.org>
4772 S:      Maintained
4773 F:      kernel/context_tracking.c
4774 F:      include/linux/context_tracking*
4775
4776 CONTROL GROUP (CGROUP)
4777 M:      Tejun Heo <tj@kernel.org>
4778 M:      Zefan Li <lizefan.x@bytedance.com>
4779 M:      Johannes Weiner <hannes@cmpxchg.org>
4780 L:      cgroups@vger.kernel.org
4781 S:      Maintained
4782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4783 F:      Documentation/admin-guide/cgroup-v1/
4784 F:      Documentation/admin-guide/cgroup-v2.rst
4785 F:      include/linux/cgroup*
4786 F:      kernel/cgroup/
4787
4788 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4789 M:      Tejun Heo <tj@kernel.org>
4790 M:      Jens Axboe <axboe@kernel.dk>
4791 L:      cgroups@vger.kernel.org
4792 L:      linux-block@vger.kernel.org
4793 T:      git git://git.kernel.dk/linux-block
4794 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4795 F:      block/bfq-cgroup.c
4796 F:      block/blk-cgroup.c
4797 F:      block/blk-iolatency.c
4798 F:      block/blk-throttle.c
4799 F:      include/linux/blk-cgroup.h
4800
4801 CONTROL GROUP - CPUSET
4802 M:      Zefan Li <lizefan.x@bytedance.com>
4803 L:      cgroups@vger.kernel.org
4804 S:      Maintained
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4806 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4807 F:      include/linux/cpuset.h
4808 F:      kernel/cgroup/cpuset.c
4809
4810 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4811 M:      Johannes Weiner <hannes@cmpxchg.org>
4812 M:      Michal Hocko <mhocko@kernel.org>
4813 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4814 L:      cgroups@vger.kernel.org
4815 L:      linux-mm@kvack.org
4816 S:      Maintained
4817 F:      mm/memcontrol.c
4818 F:      mm/swap_cgroup.c
4819
4820 CORETEMP HARDWARE MONITORING DRIVER
4821 M:      Fenghua Yu <fenghua.yu@intel.com>
4822 L:      linux-hwmon@vger.kernel.org
4823 S:      Maintained
4824 F:      Documentation/hwmon/coretemp.rst
4825 F:      drivers/hwmon/coretemp.c
4826
4827 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4828 M:      Marius Zachmann <mail@mariuszachmann.de>
4829 L:      linux-hwmon@vger.kernel.org
4830 S:      Maintained
4831 F:      drivers/hwmon/corsair-cpro.c
4832
4833 CORSAIR-PSU HARDWARE MONITOR DRIVER
4834 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4835 L:      linux-hwmon@vger.kernel.org
4836 S:      Maintained
4837 F:      Documentation/hwmon/corsair-psu.rst
4838 F:      drivers/hwmon/corsair-psu.c
4839
4840 COSA/SRP SYNC SERIAL DRIVER
4841 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4842 S:      Maintained
4843 W:      http://www.fi.muni.cz/~kas/cosa/
4844 F:      drivers/net/wan/cosa*
4845
4846 COUNTER SUBSYSTEM
4847 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4848 L:      linux-iio@vger.kernel.org
4849 S:      Maintained
4850 F:      Documentation/ABI/testing/sysfs-bus-counter
4851 F:      Documentation/driver-api/generic-counter.rst
4852 F:      drivers/counter/
4853 F:      include/linux/counter.h
4854 F:      include/linux/counter_enum.h
4855
4856 CP2615 I2C DRIVER
4857 M:      Bence Csókás <bence98@sch.bme.hu>
4858 S:      Maintained
4859 F:      drivers/i2c/busses/i2c-cp2615.c
4860
4861 CPMAC ETHERNET DRIVER
4862 M:      Florian Fainelli <f.fainelli@gmail.com>
4863 L:      netdev@vger.kernel.org
4864 S:      Maintained
4865 F:      drivers/net/ethernet/ti/cpmac.c
4866
4867 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4868 M:      Viresh Kumar <viresh.kumar@linaro.org>
4869 M:      Sudeep Holla <sudeep.holla@arm.com>
4870 L:      linux-pm@vger.kernel.org
4871 S:      Maintained
4872 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4873 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4874
4875 CPU FREQUENCY SCALING FRAMEWORK
4876 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4877 M:      Viresh Kumar <viresh.kumar@linaro.org>
4878 L:      linux-pm@vger.kernel.org
4879 S:      Maintained
4880 B:      https://bugzilla.kernel.org
4881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4883 F:      Documentation/admin-guide/pm/cpufreq.rst
4884 F:      Documentation/admin-guide/pm/intel_pstate.rst
4885 F:      Documentation/cpu-freq/
4886 F:      Documentation/devicetree/bindings/cpufreq/
4887 F:      drivers/cpufreq/
4888 F:      include/linux/cpufreq.h
4889 F:      include/linux/sched/cpufreq.h
4890 F:      kernel/sched/cpufreq*.c
4891 F:      tools/testing/selftests/cpufreq/
4892
4893 CPU IDLE TIME MANAGEMENT FRAMEWORK
4894 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4895 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 B:      https://bugzilla.kernel.org
4899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4900 F:      Documentation/admin-guide/pm/cpuidle.rst
4901 F:      Documentation/driver-api/pm/cpuidle.rst
4902 F:      drivers/cpuidle/
4903 F:      include/linux/cpuidle.h
4904
4905 CPU POWER MONITORING SUBSYSTEM
4906 M:      Thomas Renninger <trenn@suse.com>
4907 M:      Shuah Khan <shuah@kernel.org>
4908 M:      Shuah Khan <skhan@linuxfoundation.org>
4909 L:      linux-pm@vger.kernel.org
4910 S:      Maintained
4911 F:      tools/power/cpupower/
4912
4913 CPUID/MSR DRIVER
4914 M:      "H. Peter Anvin" <hpa@zytor.com>
4915 S:      Maintained
4916 F:      arch/x86/kernel/cpuid.c
4917 F:      arch/x86/kernel/msr.c
4918
4919 CPUIDLE DRIVER - ARM BIG LITTLE
4920 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4924 S:      Maintained
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      drivers/cpuidle/cpuidle-big_little.c
4927
4928 CPUIDLE DRIVER - ARM EXYNOS
4929 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4930 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4931 M:      Kukjin Kim <kgene@kernel.org>
4932 L:      linux-pm@vger.kernel.org
4933 L:      linux-samsung-soc@vger.kernel.org
4934 S:      Supported
4935 F:      arch/arm/mach-exynos/pm.c
4936 F:      drivers/cpuidle/cpuidle-exynos.c
4937 F:      include/linux/platform_data/cpuidle-exynos.h
4938
4939 CPUIDLE DRIVER - ARM PSCI
4940 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4941 M:      Sudeep Holla <sudeep.holla@arm.com>
4942 L:      linux-pm@vger.kernel.org
4943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4944 S:      Supported
4945 F:      drivers/cpuidle/cpuidle-psci.c
4946
4947 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4948 M:      Ulf Hansson <ulf.hansson@linaro.org>
4949 L:      linux-pm@vger.kernel.org
4950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4951 S:      Supported
4952 F:      drivers/cpuidle/cpuidle-psci.h
4953 F:      drivers/cpuidle/cpuidle-psci-domain.c
4954
4955 CRAMFS FILESYSTEM
4956 M:      Nicolas Pitre <nico@fluxnic.net>
4957 S:      Maintained
4958 F:      Documentation/filesystems/cramfs.rst
4959 F:      fs/cramfs/
4960
4961 CREATIVE SB0540
4962 M:      Bastien Nocera <hadess@hadess.net>
4963 L:      linux-input@vger.kernel.org
4964 S:      Maintained
4965 F:      drivers/hid/hid-creative-sb0540.c
4966
4967 CRYPTO API
4968 M:      Herbert Xu <herbert@gondor.apana.org.au>
4969 M:      "David S. Miller" <davem@davemloft.net>
4970 L:      linux-crypto@vger.kernel.org
4971 S:      Maintained
4972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4974 F:      Documentation/crypto/
4975 F:      Documentation/devicetree/bindings/crypto/
4976 F:      arch/*/crypto/
4977 F:      crypto/
4978 F:      drivers/crypto/
4979 F:      include/crypto/
4980 F:      include/linux/crypto*
4981 F:      lib/crypto/
4982
4983 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4984 M:      Neil Horman <nhorman@tuxdriver.com>
4985 L:      linux-crypto@vger.kernel.org
4986 S:      Maintained
4987 F:      crypto/ansi_cprng.c
4988 F:      crypto/rng.c
4989
4990 CS3308 MEDIA DRIVER
4991 M:      Hans Verkuil <hverkuil@xs4all.nl>
4992 L:      linux-media@vger.kernel.org
4993 S:      Odd Fixes
4994 W:      http://linuxtv.org
4995 T:      git git://linuxtv.org/media_tree.git
4996 F:      drivers/media/i2c/cs3308.c
4997
4998 CS5535 Audio ALSA driver
4999 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5000 S:      Maintained
5001 F:      sound/pci/cs5535audio/
5002
5003 CSI DRIVERS FOR ALLWINNER V3s
5004 M:      Yong Deng <yong.deng@magewell.com>
5005 L:      linux-media@vger.kernel.org
5006 S:      Maintained
5007 T:      git git://linuxtv.org/media_tree.git
5008 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5009 F:      drivers/media/platform/sunxi/sun6i-csi/
5010
5011 CW1200 WLAN driver
5012 M:      Solomon Peachy <pizza@shaftnet.org>
5013 S:      Maintained
5014 F:      drivers/net/wireless/st/cw1200/
5015
5016 CX18 VIDEO4LINUX DRIVER
5017 M:      Andy Walls <awalls@md.metrocast.net>
5018 L:      linux-media@vger.kernel.org
5019 S:      Maintained
5020 W:      https://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/pci/cx18/
5023 F:      include/uapi/linux/ivtv*
5024
5025 CX2341X MPEG ENCODER HELPER MODULE
5026 M:      Hans Verkuil <hverkuil@xs4all.nl>
5027 L:      linux-media@vger.kernel.org
5028 S:      Maintained
5029 W:      https://linuxtv.org
5030 T:      git git://linuxtv.org/media_tree.git
5031 F:      drivers/media/common/cx2341x*
5032 F:      include/media/drv-intf/cx2341x.h
5033
5034 CX24120 MEDIA DRIVER
5035 M:      Jemma Denson <jdenson@gmail.com>
5036 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5037 L:      linux-media@vger.kernel.org
5038 S:      Maintained
5039 W:      https://linuxtv.org
5040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5041 F:      drivers/media/dvb-frontends/cx24120*
5042
5043 CX88 VIDEO4LINUX DRIVER
5044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5045 L:      linux-media@vger.kernel.org
5046 S:      Odd fixes
5047 W:      https://linuxtv.org
5048 T:      git git://linuxtv.org/media_tree.git
5049 F:      Documentation/driver-api/media/drivers/cx88*
5050 F:      drivers/media/pci/cx88/
5051
5052 CXD2820R MEDIA DRIVER
5053 M:      Antti Palosaari <crope@iki.fi>
5054 L:      linux-media@vger.kernel.org
5055 S:      Maintained
5056 W:      https://linuxtv.org
5057 W:      http://palosaari.fi/linux/
5058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5059 T:      git git://linuxtv.org/anttip/media_tree.git
5060 F:      drivers/media/dvb-frontends/cxd2820r*
5061
5062 CXGB3 ETHERNET DRIVER (CXGB3)
5063 M:      Raju Rangoju <rajur@chelsio.com>
5064 L:      netdev@vger.kernel.org
5065 S:      Supported
5066 W:      http://www.chelsio.com
5067 F:      drivers/net/ethernet/chelsio/cxgb3/
5068
5069 CXGB3 ISCSI DRIVER (CXGB3I)
5070 M:      Karen Xie <kxie@chelsio.com>
5071 L:      linux-scsi@vger.kernel.org
5072 S:      Supported
5073 W:      http://www.chelsio.com
5074 F:      drivers/scsi/cxgbi/cxgb3i
5075
5076 CXGB4 CRYPTO DRIVER (chcr)
5077 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5078 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5079 M:      Rohit Maheshwari <rohitm@chelsio.com>
5080 L:      linux-crypto@vger.kernel.org
5081 S:      Supported
5082 W:      http://www.chelsio.com
5083 F:      drivers/crypto/chelsio
5084
5085 CXGB4 INLINE CRYPTO DRIVER
5086 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5087 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5088 M:      Rohit Maheshwari <rohitm@chelsio.com>
5089 L:      netdev@vger.kernel.org
5090 S:      Supported
5091 W:      http://www.chelsio.com
5092 F:      drivers/net/ethernet/chelsio/inline_crypto/
5093
5094 CXGB4 ETHERNET DRIVER (CXGB4)
5095 M:      Raju Rangoju <rajur@chelsio.com>
5096 L:      netdev@vger.kernel.org
5097 S:      Supported
5098 W:      http://www.chelsio.com
5099 F:      drivers/net/ethernet/chelsio/cxgb4/
5100
5101 CXGB4 ISCSI DRIVER (CXGB4I)
5102 M:      Karen Xie <kxie@chelsio.com>
5103 L:      linux-scsi@vger.kernel.org
5104 S:      Supported
5105 W:      http://www.chelsio.com
5106 F:      drivers/scsi/cxgbi/cxgb4i
5107
5108 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5109 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5110 L:      linux-rdma@vger.kernel.org
5111 S:      Supported
5112 W:      http://www.openfabrics.org
5113 F:      drivers/infiniband/hw/cxgb4/
5114 F:      include/uapi/rdma/cxgb4-abi.h
5115
5116 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5117 M:      Raju Rangoju <rajur@chelsio.com>
5118 L:      netdev@vger.kernel.org
5119 S:      Supported
5120 W:      http://www.chelsio.com
5121 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5122
5123 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5124 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5125 M:      Andrew Donnellan <ajd@linux.ibm.com>
5126 L:      linuxppc-dev@lists.ozlabs.org
5127 S:      Supported
5128 F:      Documentation/ABI/testing/sysfs-class-cxl
5129 F:      Documentation/powerpc/cxl.rst
5130 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5131 F:      drivers/misc/cxl/
5132 F:      include/misc/cxl*
5133 F:      include/uapi/misc/cxl.h
5134
5135 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5136 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5137 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5138 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5139 L:      linux-scsi@vger.kernel.org
5140 S:      Supported
5141 F:      Documentation/powerpc/cxlflash.rst
5142 F:      drivers/scsi/cxlflash/
5143 F:      include/uapi/scsi/cxlflash_ioctl.h
5144
5145 CYBERPRO FB DRIVER
5146 M:      Russell King <linux@armlinux.org.uk>
5147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5148 S:      Maintained
5149 W:      http://www.armlinux.org.uk/
5150 F:      drivers/video/fbdev/cyber2000fb.*
5151
5152 CYCLADES PC300 DRIVER
5153 S:      Orphan
5154 F:      drivers/net/wan/pc300*
5155
5156 CYPRESS_FIRMWARE MEDIA DRIVER
5157 M:      Antti Palosaari <crope@iki.fi>
5158 L:      linux-media@vger.kernel.org
5159 S:      Maintained
5160 W:      https://linuxtv.org
5161 W:      http://palosaari.fi/linux/
5162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5163 T:      git git://linuxtv.org/anttip/media_tree.git
5164 F:      drivers/media/common/cypress_firmware*
5165
5166 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5167 M:      Linus Walleij <linus.walleij@linaro.org>
5168 L:      linux-input@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/input/touchscreen/cy8ctma140.c
5171
5172 CYTTSP TOUCHSCREEN DRIVER
5173 M:      Linus Walleij <linus.walleij@linaro.org>
5174 L:      linux-input@vger.kernel.org
5175 S:      Maintained
5176 F:      drivers/input/touchscreen/cyttsp*
5177
5178 D-LINK DIR-685 TOUCHKEYS DRIVER
5179 M:      Linus Walleij <linus.walleij@linaro.org>
5180 L:      linux-input@vger.kernel.org
5181 S:      Supported
5182 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5183
5184 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5185 M:      Joshua Kinard <kumba@gentoo.org>
5186 S:      Maintained
5187 F:      drivers/rtc/rtc-ds1685.c
5188 F:      include/linux/rtc/ds1685.h
5189
5190 DAMA SLAVE for AX.25
5191 M:      Joerg Reuter <jreuter@yaina.de>
5192 L:      linux-hams@vger.kernel.org
5193 S:      Maintained
5194 W:      http://yaina.de/jreuter/
5195 W:      http://www.qsl.net/dl1bke/
5196 F:      net/ax25/af_ax25.c
5197 F:      net/ax25/ax25_dev.c
5198 F:      net/ax25/ax25_ds_*
5199 F:      net/ax25/ax25_in.c
5200 F:      net/ax25/ax25_out.c
5201 F:      net/ax25/ax25_timer.c
5202 F:      net/ax25/sysctl_net_ax25.c
5203
5204 DATA ACCESS MONITOR
5205 M:      SeongJae Park <sjpark@amazon.de>
5206 L:      linux-mm@kvack.org
5207 S:      Maintained
5208 F:      Documentation/admin-guide/mm/damon/
5209 F:      Documentation/vm/damon/
5210 F:      include/linux/damon.h
5211 F:      include/trace/events/damon.h
5212 F:      mm/damon/
5213 F:      tools/testing/selftests/damon/
5214
5215 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5216 L:      netdev@vger.kernel.org
5217 S:      Orphan
5218 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5219 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5220
5221 DC390/AM53C974 SCSI driver
5222 M:      Hannes Reinecke <hare@suse.com>
5223 L:      linux-scsi@vger.kernel.org
5224 S:      Maintained
5225 F:      drivers/scsi/am53c974.c
5226
5227 DC395x SCSI driver
5228 M:      Oliver Neukum <oliver@neukum.org>
5229 M:      Ali Akcaagac <aliakc@web.de>
5230 M:      Jamie Lenehan <lenehan@twibble.org>
5231 L:      dc395x@twibble.org
5232 S:      Maintained
5233 W:      http://twibble.org/dist/dc395x/
5234 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5235 F:      Documentation/scsi/dc395x.rst
5236 F:      drivers/scsi/dc395x.*
5237
5238 DCCP PROTOCOL
5239 L:      dccp@vger.kernel.org
5240 S:      Orphan
5241 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5242 F:      include/linux/dccp.h
5243 F:      include/linux/tfrc.h
5244 F:      include/uapi/linux/dccp.h
5245 F:      net/dccp/
5246
5247 DECnet NETWORK LAYER
5248 L:      linux-decnet-user@lists.sourceforge.net
5249 S:      Orphan
5250 W:      http://linux-decnet.sourceforge.net
5251 F:      Documentation/networking/decnet.rst
5252 F:      net/decnet/
5253
5254 DECSTATION PLATFORM SUPPORT
5255 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5256 L:      linux-mips@vger.kernel.org
5257 S:      Maintained
5258 W:      http://www.linux-mips.org/wiki/DECstation
5259 F:      arch/mips/dec/
5260 F:      arch/mips/include/asm/dec/
5261 F:      arch/mips/include/asm/mach-dec/
5262
5263 DEFXX FDDI NETWORK DRIVER
5264 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5265 S:      Maintained
5266 F:      drivers/net/fddi/defxx.*
5267
5268 DEFZA FDDI NETWORK DRIVER
5269 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5270 S:      Maintained
5271 F:      drivers/net/fddi/defza.*
5272
5273 DEINTERLACE DRIVERS FOR ALLWINNER H3
5274 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5275 L:      linux-media@vger.kernel.org
5276 S:      Maintained
5277 T:      git git://linuxtv.org/media_tree.git
5278 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5279 F:      drivers/media/platform/sunxi/sun8i-di/
5280
5281 DELL LAPTOP DRIVER
5282 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5283 M:      Pali Rohár <pali@kernel.org>
5284 L:      platform-driver-x86@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/platform/x86/dell/dell-laptop.c
5287
5288 DELL LAPTOP FREEFALL DRIVER
5289 M:      Pali Rohár <pali@kernel.org>
5290 S:      Maintained
5291 F:      drivers/platform/x86/dell/dell-smo8800.c
5292
5293 DELL LAPTOP RBTN DRIVER
5294 M:      Pali Rohár <pali@kernel.org>
5295 S:      Maintained
5296 F:      drivers/platform/x86/dell/dell-rbtn.*
5297
5298 DELL LAPTOP SMM DRIVER
5299 M:      Pali Rohár <pali@kernel.org>
5300 S:      Maintained
5301 F:      drivers/hwmon/dell-smm-hwmon.c
5302 F:      include/uapi/linux/i8k.h
5303
5304 DELL REMOTE BIOS UPDATE DRIVER
5305 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5306 L:      platform-driver-x86@vger.kernel.org
5307 S:      Maintained
5308 F:      drivers/platform/x86/dell/dell_rbu.c
5309
5310 DELL SMBIOS DRIVER
5311 M:      Pali Rohár <pali@kernel.org>
5312 L:      Dell.Client.Kernel@dell.com
5313 L:      platform-driver-x86@vger.kernel.org
5314 S:      Maintained
5315 F:      drivers/platform/x86/dell/dell-smbios.*
5316
5317 DELL SMBIOS SMM DRIVER
5318 L:      Dell.Client.Kernel@dell.com
5319 L:      platform-driver-x86@vger.kernel.org
5320 S:      Maintained
5321 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5322
5323 DELL SMBIOS WMI DRIVER
5324 L:      Dell.Client.Kernel@dell.com
5325 L:      platform-driver-x86@vger.kernel.org
5326 S:      Maintained
5327 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5328 F:      tools/wmi/dell-smbios-example.c
5329
5330 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      Documentation/driver-api/dcdbas.rst
5335 F:      drivers/platform/x86/dell/dcdbas.*
5336
5337 DELL WMI DESCRIPTOR DRIVER
5338 L:      Dell.Client.Kernel@dell.com
5339 S:      Maintained
5340 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5341
5342 DELL WMI SYSMAN DRIVER
5343 M:      Divya Bharathi <divya.bharathi@dell.com>
5344 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5345 L:      Dell.Client.Kernel@dell.com
5346 L:      platform-driver-x86@vger.kernel.org
5347 S:      Maintained
5348 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5349 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5350
5351 DELL WMI NOTIFICATIONS DRIVER
5352 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5353 M:      Pali Rohár <pali@kernel.org>
5354 S:      Maintained
5355 F:      drivers/platform/x86/dell/dell-wmi-base.c
5356
5357 DELL WMI HARDWARE PRIVACY SUPPORT
5358 M:      Perry Yuan <Perry.Yuan@dell.com>
5359 L:      Dell.Client.Kernel@dell.com
5360 L:      platform-driver-x86@vger.kernel.org
5361 S:      Maintained
5362 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5363
5364 DELTA ST MEDIA DRIVER
5365 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5366 L:      linux-media@vger.kernel.org
5367 S:      Supported
5368 W:      https://linuxtv.org
5369 T:      git git://linuxtv.org/media_tree.git
5370 F:      drivers/media/platform/sti/delta
5371
5372 DELTA DPS920AB PSU DRIVER
5373 M:      Robert Marko <robert.marko@sartura.hr>
5374 L:      linux-hwmon@vger.kernel.org
5375 S:      Maintained
5376 F:      Documentation/hwmon/dps920ab.rst
5377 F:      drivers/hwmon/pmbus/dps920ab.c
5378
5379 DENALI NAND DRIVER
5380 L:      linux-mtd@lists.infradead.org
5381 S:      Orphan
5382 F:      drivers/mtd/nand/raw/denali*
5383
5384 DESIGNWARE EDMA CORE IP DRIVER
5385 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5386 L:      dmaengine@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/dma/dw-edma/
5389 F:      include/linux/dma/edma.h
5390
5391 DESIGNWARE XDATA IP DRIVER
5392 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5393 L:      linux-pci@vger.kernel.org
5394 S:      Maintained
5395 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5396 F:      drivers/misc/dw-xdata-pcie.c
5397
5398 DESIGNWARE USB2 DRD IP DRIVER
5399 M:      Minas Harutyunyan <hminas@synopsys.com>
5400 L:      linux-usb@vger.kernel.org
5401 S:      Maintained
5402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5403 F:      drivers/usb/dwc2/
5404
5405 DESIGNWARE USB3 DRD IP DRIVER
5406 M:      Felipe Balbi <balbi@kernel.org>
5407 L:      linux-usb@vger.kernel.org
5408 S:      Maintained
5409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5410 F:      drivers/usb/dwc3/
5411
5412 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5413 M:      Andreas Klinger <ak@it-klinger.de>
5414 L:      linux-iio@vger.kernel.org
5415 S:      Maintained
5416 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5417 F:      drivers/iio/proximity/srf*.c
5418
5419 DEVICE COREDUMP (DEV_COREDUMP)
5420 M:      Johannes Berg <johannes@sipsolutions.net>
5421 L:      linux-kernel@vger.kernel.org
5422 S:      Maintained
5423 F:      drivers/base/devcoredump.c
5424 F:      include/linux/devcoredump.h
5425
5426 DEVICE DEPENDENCY HELPER SCRIPT
5427 M:      Saravana Kannan <saravanak@google.com>
5428 L:      linux-kernel@vger.kernel.org
5429 S:      Maintained
5430 F:      scripts/dev-needs.sh
5431
5432 DEVICE DIRECT ACCESS (DAX)
5433 M:      Dan Williams <dan.j.williams@intel.com>
5434 M:      Vishal Verma <vishal.l.verma@intel.com>
5435 M:      Dave Jiang <dave.jiang@intel.com>
5436 L:      nvdimm@lists.linux.dev
5437 S:      Supported
5438 F:      drivers/dax/
5439
5440 DEVICE FREQUENCY (DEVFREQ)
5441 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5442 M:      Kyungmin Park <kyungmin.park@samsung.com>
5443 M:      Chanwoo Choi <cw00.choi@samsung.com>
5444 L:      linux-pm@vger.kernel.org
5445 S:      Maintained
5446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5447 F:      Documentation/devicetree/bindings/devfreq/
5448 F:      drivers/devfreq/
5449 F:      include/linux/devfreq.h
5450 F:      include/trace/events/devfreq.h
5451
5452 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5453 M:      Chanwoo Choi <cw00.choi@samsung.com>
5454 L:      linux-pm@vger.kernel.org
5455 S:      Supported
5456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5457 F:      Documentation/devicetree/bindings/devfreq/event/
5458 F:      drivers/devfreq/devfreq-event.c
5459 F:      drivers/devfreq/event/
5460 F:      include/dt-bindings/pmu/exynos_ppmu.h
5461 F:      include/linux/devfreq-event.h
5462
5463 DEVICE NUMBER REGISTRY
5464 M:      Torben Mathiasen <device@lanana.org>
5465 S:      Maintained
5466 W:      http://lanana.org/docs/device-list/index.html
5467
5468 DEVICE RESOURCE MANAGEMENT HELPERS
5469 M:      Hans de Goede <hdegoede@redhat.com>
5470 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5471 S:      Maintained
5472 F:      include/linux/devm-helpers.h
5473
5474 DEVICE-MAPPER  (LVM)
5475 M:      Alasdair Kergon <agk@redhat.com>
5476 M:      Mike Snitzer <snitzer@redhat.com>
5477 M:      dm-devel@redhat.com
5478 L:      dm-devel@redhat.com
5479 S:      Maintained
5480 W:      http://sources.redhat.com/dm
5481 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5483 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5484 F:      Documentation/admin-guide/device-mapper/
5485 F:      drivers/md/Kconfig
5486 F:      drivers/md/Makefile
5487 F:      drivers/md/dm*
5488 F:      drivers/md/persistent-data/
5489 F:      include/linux/device-mapper.h
5490 F:      include/linux/dm-*.h
5491 F:      include/uapi/linux/dm-*.h
5492
5493 DEVLINK
5494 M:      Jiri Pirko <jiri@nvidia.com>
5495 L:      netdev@vger.kernel.org
5496 S:      Supported
5497 F:      Documentation/networking/devlink
5498 F:      include/net/devlink.h
5499 F:      include/uapi/linux/devlink.h
5500 F:      net/core/devlink.c
5501
5502 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5503 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5504 L:      kernel@dh-electronics.com
5505 S:      Maintained
5506 F:      arch/arm/boot/dts/imx6*-dhcom-*
5507
5508 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5509 M:      Marek Vasut <marex@denx.de>
5510 L:      kernel@dh-electronics.com
5511 S:      Maintained
5512 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5514
5515 DIALOG SEMICONDUCTOR DRIVERS
5516 M:      Support Opensource <support.opensource@diasemi.com>
5517 S:      Supported
5518 W:      http://www.dialog-semiconductor.com/products
5519 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5520 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5521 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5522 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5523 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5524 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5525 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5526 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5527 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5528 F:      Documentation/hwmon/da90??.rst
5529 F:      drivers/gpio/gpio-da90??.c
5530 F:      drivers/hwmon/da90??-hwmon.c
5531 F:      drivers/iio/adc/da91??-*.c
5532 F:      drivers/input/misc/da72??.[ch]
5533 F:      drivers/input/misc/da90??_onkey.c
5534 F:      drivers/input/touchscreen/da9052_tsi.c
5535 F:      drivers/leds/leds-da90??.c
5536 F:      drivers/mfd/da903x.c
5537 F:      drivers/mfd/da90??-*.c
5538 F:      drivers/mfd/da91??-*.c
5539 F:      drivers/pinctrl/pinctrl-da90??.c
5540 F:      drivers/power/supply/da9052-battery.c
5541 F:      drivers/power/supply/da91??-*.c
5542 F:      drivers/regulator/da9???-regulator.[ch]
5543 F:      drivers/regulator/slg51000-regulator.[ch]
5544 F:      drivers/rtc/rtc-da90??.c
5545 F:      drivers/thermal/da90??-thermal.c
5546 F:      drivers/video/backlight/da90??_bl.c
5547 F:      drivers/watchdog/da90??_wdt.c
5548 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5549 F:      include/linux/mfd/da903x.h
5550 F:      include/linux/mfd/da9052/
5551 F:      include/linux/mfd/da9055/
5552 F:      include/linux/mfd/da9062/
5553 F:      include/linux/mfd/da9063/
5554 F:      include/linux/mfd/da9150/
5555 F:      include/linux/regulator/da9211.h
5556 F:      include/sound/da[79]*.h
5557 F:      sound/soc/codecs/da[79]*.[ch]
5558
5559 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5560 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5561 L:      linux-gpio@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/gpio/gpio-gpio-mm.c
5564
5565 DIOLAN U2C-12 I2C DRIVER
5566 M:      Guenter Roeck <linux@roeck-us.net>
5567 L:      linux-i2c@vger.kernel.org
5568 S:      Maintained
5569 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5570
5571 DIRECTORY NOTIFICATION (DNOTIFY)
5572 M:      Jan Kara <jack@suse.cz>
5573 R:      Amir Goldstein <amir73il@gmail.com>
5574 L:      linux-fsdevel@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/filesystems/dnotify.rst
5577 F:      fs/notify/dnotify/
5578 F:      include/linux/dnotify.h
5579
5580 DISK GEOMETRY AND PARTITION HANDLING
5581 M:      Andries Brouwer <aeb@cwi.nl>
5582 S:      Maintained
5583 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5584 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5585 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5586
5587 DISKQUOTA
5588 M:      Jan Kara <jack@suse.com>
5589 S:      Maintained
5590 F:      Documentation/filesystems/quota.rst
5591 F:      fs/quota/
5592 F:      include/linux/quota*.h
5593 F:      include/uapi/linux/quota*.h
5594
5595 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5596 M:      Bernie Thompson <bernie@plugable.com>
5597 L:      linux-fbdev@vger.kernel.org
5598 S:      Maintained
5599 W:      http://plugable.com/category/projects/udlfb/
5600 F:      Documentation/fb/udlfb.rst
5601 F:      drivers/video/fbdev/udlfb.c
5602 F:      include/video/udlfb.h
5603
5604 DISTRIBUTED LOCK MANAGER (DLM)
5605 M:      Christine Caulfield <ccaulfie@redhat.com>
5606 M:      David Teigland <teigland@redhat.com>
5607 L:      cluster-devel@redhat.com
5608 S:      Supported
5609 W:      http://sources.redhat.com/cluster/
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5611 F:      fs/dlm/
5612
5613 DMA BUFFER SHARING FRAMEWORK
5614 M:      Sumit Semwal <sumit.semwal@linaro.org>
5615 M:      Christian König <christian.koenig@amd.com>
5616 L:      linux-media@vger.kernel.org
5617 L:      dri-devel@lists.freedesktop.org
5618 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5619 S:      Maintained
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      Documentation/driver-api/dma-buf.rst
5622 F:      drivers/dma-buf/
5623 F:      include/linux/*fence.h
5624 F:      include/linux/dma-buf*
5625 F:      include/linux/dma-resv.h
5626 K:      \bdma_(?:buf|fence|resv)\b
5627
5628 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5629 M:      Vinod Koul <vkoul@kernel.org>
5630 L:      dmaengine@vger.kernel.org
5631 S:      Maintained
5632 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5634 F:      Documentation/devicetree/bindings/dma/
5635 F:      Documentation/driver-api/dmaengine/
5636 F:      drivers/dma/
5637 F:      include/linux/dma/
5638 F:      include/linux/dmaengine.h
5639 F:      include/linux/of_dma.h
5640
5641 DMA MAPPING HELPERS
5642 M:      Christoph Hellwig <hch@lst.de>
5643 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5644 R:      Robin Murphy <robin.murphy@arm.com>
5645 L:      iommu@lists.linux-foundation.org
5646 L:      iommu@lists.linux.dev
5647 S:      Supported
5648 W:      http://git.infradead.org/users/hch/dma-mapping.git
5649 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5650 F:      include/asm-generic/dma-mapping.h
5651 F:      include/linux/dma-direct.h
5652 F:      include/linux/dma-mapping.h
5653 F:      include/linux/dma-map-ops.h
5654 F:      kernel/dma/
5655
5656 DMA MAPPING BENCHMARK
5657 M:      Barry Song <song.bao.hua@hisilicon.com>
5658 L:      iommu@lists.linux-foundation.org
5659 L:      iommu@lists.linux.dev
5660 F:      kernel/dma/map_benchmark.c
5661 F:      tools/testing/selftests/dma/
5662
5663 DMA-BUF HEAPS FRAMEWORK
5664 M:      Sumit Semwal <sumit.semwal@linaro.org>
5665 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5666 R:      Liam Mark <lmark@codeaurora.org>
5667 R:      Laura Abbott <labbott@redhat.com>
5668 R:      Brian Starkey <Brian.Starkey@arm.com>
5669 R:      John Stultz <john.stultz@linaro.org>
5670 L:      linux-media@vger.kernel.org
5671 L:      dri-devel@lists.freedesktop.org
5672 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5673 S:      Maintained
5674 T:      git git://anongit.freedesktop.org/drm/drm-misc
5675 F:      drivers/dma-buf/dma-heap.c
5676 F:      drivers/dma-buf/heaps/*
5677 F:      include/linux/dma-heap.h
5678 F:      include/uapi/linux/dma-heap.h
5679
5680 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5681 M:      Lukasz Luba <lukasz.luba@arm.com>
5682 L:      linux-pm@vger.kernel.org
5683 L:      linux-samsung-soc@vger.kernel.org
5684 S:      Maintained
5685 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5686 F:      drivers/memory/samsung/exynos5422-dmc.c
5687
5688 DME1737 HARDWARE MONITOR DRIVER
5689 M:      Juerg Haefliger <juergh@gmail.com>
5690 L:      linux-hwmon@vger.kernel.org
5691 S:      Maintained
5692 F:      Documentation/hwmon/dme1737.rst
5693 F:      drivers/hwmon/dme1737.c
5694
5695 DMI/SMBIOS SUPPORT
5696 M:      Jean Delvare <jdelvare@suse.com>
5697 S:      Maintained
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5699 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5700 F:      drivers/firmware/dmi-id.c
5701 F:      drivers/firmware/dmi_scan.c
5702 F:      include/linux/dmi.h
5703
5704 DOCUMENTATION
5705 M:      Jonathan Corbet <corbet@lwn.net>
5706 L:      linux-doc@vger.kernel.org
5707 S:      Maintained
5708 P:      Documentation/doc-guide/maintainer-profile.rst
5709 T:      git git://git.lwn.net/linux.git docs-next
5710 F:      Documentation/
5711 F:      scripts/documentation-file-ref-check
5712 F:      scripts/kernel-doc
5713 F:      scripts/sphinx-pre-install
5714 X:      Documentation/ABI/
5715 X:      Documentation/admin-guide/media/
5716 X:      Documentation/devicetree/
5717 X:      Documentation/driver-api/media/
5718 X:      Documentation/firmware-guide/acpi/
5719 X:      Documentation/i2c/
5720 X:      Documentation/power/
5721 X:      Documentation/spi/
5722 X:      Documentation/userspace-api/media/
5723
5724 DOCUMENTATION REPORTING ISSUES
5725 M:      Thorsten Leemhuis <linux@leemhuis.info>
5726 L:      linux-doc@vger.kernel.org
5727 S:      Maintained
5728 F:      Documentation/admin-guide/reporting-issues.rst
5729
5730 DOCUMENTATION SCRIPTS
5731 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5732 L:      linux-doc@vger.kernel.org
5733 S:      Maintained
5734 F:      Documentation/sphinx/parse-headers.pl
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/sphinx-pre-install
5737
5738 DOCUMENTATION/ITALIAN
5739 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5740 L:      linux-doc@vger.kernel.org
5741 S:      Maintained
5742 F:      Documentation/translations/it_IT
5743
5744 DONGWOON DW9714 LENS VOICE COIL DRIVER
5745 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5746 L:      linux-media@vger.kernel.org
5747 S:      Maintained
5748 T:      git git://linuxtv.org/media_tree.git
5749 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5750 F:      drivers/media/i2c/dw9714.c
5751
5752 DONGWOON DW9768 LENS VOICE COIL DRIVER
5753 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5754 L:      linux-media@vger.kernel.org
5755 S:      Maintained
5756 T:      git git://linuxtv.org/media_tree.git
5757 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5758 F:      drivers/media/i2c/dw9768.c
5759
5760 DONGWOON DW9807 LENS VOICE COIL DRIVER
5761 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5762 L:      linux-media@vger.kernel.org
5763 S:      Maintained
5764 T:      git git://linuxtv.org/media_tree.git
5765 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5766 F:      drivers/media/i2c/dw9807-vcm.c
5767
5768 DOUBLETALK DRIVER
5769 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5770 L:      blinux-list@redhat.com
5771 S:      Maintained
5772 F:      drivers/char/dtlk.c
5773 F:      include/linux/dtlk.h
5774
5775 DPAA2 DATAPATH I/O (DPIO) DRIVER
5776 M:      Roy Pledge <Roy.Pledge@nxp.com>
5777 L:      linux-kernel@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/soc/fsl/dpio
5780
5781 DPAA2 ETHERNET DRIVER
5782 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5783 L:      netdev@vger.kernel.org
5784 S:      Maintained
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5786 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5787 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5788 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5793 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5794
5795 DPAA2 ETHERNET SWITCH DRIVER
5796 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5797 L:      netdev@vger.kernel.org
5798 S:      Maintained
5799 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5801 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5802
5803 DPT_I2O SCSI RAID DRIVER
5804 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5805 L:      linux-scsi@vger.kernel.org
5806 S:      Maintained
5807 W:      http://www.adaptec.com/
5808 F:      drivers/scsi/dpt*
5809 F:      drivers/scsi/dpt/
5810
5811 DRBD DRIVER
5812 M:      Philipp Reisner <philipp.reisner@linbit.com>
5813 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5814 L:      drbd-dev@lists.linbit.com
5815 S:      Supported
5816 W:      http://www.drbd.org
5817 T:      git git://git.linbit.com/linux-drbd.git
5818 T:      git git://git.linbit.com/drbd-8.4.git
5819 F:      Documentation/admin-guide/blockdev/
5820 F:      drivers/block/drbd/
5821 F:      lib/lru_cache.c
5822
5823 DRIVER COMPONENT FRAMEWORK
5824 L:      dri-devel@lists.freedesktop.org
5825 F:      drivers/base/component.c
5826 F:      include/linux/component.h
5827
5828 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5829 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5830 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5831 S:      Supported
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5833 F:      Documentation/core-api/kobject.rst
5834 F:      drivers/base/
5835 F:      fs/debugfs/
5836 F:      fs/sysfs/
5837 F:      include/linux/debugfs.h
5838 F:      include/linux/kobj*
5839 F:      lib/kobj*
5840
5841 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5842 M:      Nishanth Menon <nm@ti.com>
5843 L:      linux-pm@vger.kernel.org
5844 S:      Maintained
5845 F:      drivers/soc/ti/smartreflex.c
5846 F:      include/linux/power/smartreflex.h
5847
5848 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5849 M:      Maxime Ripard <mripard@kernel.org>
5850 M:      Chen-Yu Tsai <wens@csie.org>
5851 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5852 L:      dri-devel@lists.freedesktop.org
5853 S:      Supported
5854 T:      git git://anongit.freedesktop.org/drm/drm-misc
5855 F:      drivers/gpu/drm/sun4i/sun8i*
5856
5857 DRM DRIVER FOR ARM PL111 CLCD
5858 M:      Emma Anholt <emma@anholt.net>
5859 S:      Supported
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      drivers/gpu/drm/pl111/
5862
5863 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5864 M:      Linus Walleij <linus.walleij@linaro.org>
5865 S:      Maintained
5866 T:      git git://anongit.freedesktop.org/drm/drm-misc
5867 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5868 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5869
5870 DRM DRIVER FOR ASPEED BMC GFX
5871 M:      Joel Stanley <joel@jms.id.au>
5872 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5873 S:      Supported
5874 T:      git git://anongit.freedesktop.org/drm/drm-misc
5875 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5876 F:      drivers/gpu/drm/aspeed/
5877
5878 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5879 M:      Dave Airlie <airlied@redhat.com>
5880 R:      Thomas Zimmermann <tzimmermann@suse.de>
5881 L:      dri-devel@lists.freedesktop.org
5882 S:      Supported
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      drivers/gpu/drm/ast/
5885
5886 DRM DRIVER FOR BOCHS VIRTUAL GPU
5887 M:      Gerd Hoffmann <kraxel@redhat.com>
5888 L:      virtualization@lists.linux-foundation.org
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      drivers/gpu/drm/tiny/bochs.c
5892
5893 DRM DRIVER FOR BOE HIMAX8279D PANELS
5894 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5895 S:      Maintained
5896 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5897 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5898
5899 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5900 M:      Jagan Teki <jagan@amarulasolutions.com>
5901 S:      Maintained
5902 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5903 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5904
5905 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5906 M:      Linus Walleij <linus.walleij@linaro.org>
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      drivers/gpu/drm/tve200/
5910
5911 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5912 M:      Icenowy Zheng <icenowy@aosc.io>
5913 S:      Maintained
5914 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5915 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5916
5917 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5918 M:      Jagan Teki <jagan@amarulasolutions.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5921 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5922
5923 DRM DRIVER FOR GENERIC USB DISPLAY
5924 M:      Noralf Trønnes <noralf@tronnes.org>
5925 S:      Maintained
5926 W:      https://github.com/notro/gud/wiki
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 F:      drivers/gpu/drm/gud/
5929 F:      include/drm/gud.h
5930
5931 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5932 M:      Hans de Goede <hdegoede@redhat.com>
5933 S:      Maintained
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      drivers/gpu/drm/tiny/gm12u320.c
5936
5937 DRM DRIVER FOR HX8357D PANELS
5938 M:      Emma Anholt <emma@anholt.net>
5939 S:      Maintained
5940 T:      git git://anongit.freedesktop.org/drm/drm-misc
5941 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5942 F:      drivers/gpu/drm/tiny/hx8357d.c
5943
5944 DRM DRIVER FOR ILITEK ILI9225 PANELS
5945 M:      David Lechner <david@lechnology.com>
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5949 F:      drivers/gpu/drm/tiny/ili9225.c
5950
5951 DRM DRIVER FOR ILITEK ILI9486 PANELS
5952 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5953 S:      Maintained
5954 T:      git git://anongit.freedesktop.org/drm/drm-misc
5955 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5956 F:      drivers/gpu/drm/tiny/ili9486.c
5957
5958 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5959 S:      Orphan / Obsolete
5960 F:      drivers/gpu/drm/i810/
5961 F:      include/uapi/drm/i810_drm.h
5962
5963 DRM DRIVER FOR LVDS PANELS
5964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5965 L:      dri-devel@lists.freedesktop.org
5966 T:      git git://anongit.freedesktop.org/drm/drm-misc
5967 S:      Maintained
5968 F:      drivers/gpu/drm/panel/panel-lvds.c
5969 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5970
5971 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5972 M:      Guido Günther <agx@sigxcpu.org>
5973 R:      Purism Kernel Team <kernel@puri.sm>
5974 S:      Maintained
5975 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5976 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5977
5978 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5979 S:      Orphan / Obsolete
5980 F:      drivers/gpu/drm/mga/
5981 F:      include/uapi/drm/mga_drm.h
5982
5983 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5984 M:      Dave Airlie <airlied@redhat.com>
5985 R:      Thomas Zimmermann <tzimmermann@suse.de>
5986 L:      dri-devel@lists.freedesktop.org
5987 S:      Supported
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      drivers/gpu/drm/mgag200/
5990
5991 DRM DRIVER FOR MI0283QT
5992 M:      Noralf Trønnes <noralf@tronnes.org>
5993 S:      Maintained
5994 T:      git git://anongit.freedesktop.org/drm/drm-misc
5995 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5996 F:      drivers/gpu/drm/tiny/mi0283qt.c
5997
5998 DRM DRIVER FOR MIPI DBI compatible panels
5999 M:      Noralf Trønnes <noralf@tronnes.org>
6000 S:      Maintained
6001 W:      https://github.com/notro/panel-mipi-dbi/wiki
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6004 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6005
6006 DRM DRIVER FOR MSM ADRENO GPU
6007 M:      Rob Clark <robdclark@gmail.com>
6008 M:      Sean Paul <sean@poorly.run>
6009 L:      linux-arm-msm@vger.kernel.org
6010 L:      dri-devel@lists.freedesktop.org
6011 L:      freedreno@lists.freedesktop.org
6012 S:      Maintained
6013 T:      git https://gitlab.freedesktop.org/drm/msm.git
6014 F:      Documentation/devicetree/bindings/display/msm/
6015 F:      drivers/gpu/drm/msm/
6016 F:      include/uapi/drm/msm_drm.h
6017
6018 DRM DRIVER FOR NOVATEK NT35510 PANELS
6019 M:      Linus Walleij <linus.walleij@linaro.org>
6020 S:      Maintained
6021 T:      git git://anongit.freedesktop.org/drm/drm-misc
6022 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6023 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6024
6025 DRM DRIVER FOR NOVATEK NT36672A PANELS
6026 M:      Sumit Semwal <sumit.semwal@linaro.org>
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6030 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6031
6032 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6033 M:      Ben Skeggs <bskeggs@redhat.com>
6034 L:      dri-devel@lists.freedesktop.org
6035 L:      nouveau@lists.freedesktop.org
6036 S:      Supported
6037 T:      git git://github.com/skeggsb/linux
6038 F:      drivers/gpu/drm/nouveau/
6039 F:      include/uapi/drm/nouveau_drm.h
6040
6041 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6042 M:      Stefan Mavrodiev <stefan@olimex.com>
6043 S:      Maintained
6044 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6045 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6046
6047 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6048 M:      Noralf Trønnes <noralf@tronnes.org>
6049 S:      Maintained
6050 T:      git git://anongit.freedesktop.org/drm/drm-misc
6051 F:      Documentation/devicetree/bindings/display/repaper.txt
6052 F:      drivers/gpu/drm/tiny/repaper.c
6053
6054 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 S:      Obsolete
6059 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/tiny/cirrus.c
6062
6063 DRM DRIVER FOR QXL VIRTUAL GPU
6064 M:      Dave Airlie <airlied@redhat.com>
6065 M:      Gerd Hoffmann <kraxel@redhat.com>
6066 L:      virtualization@lists.linux-foundation.org
6067 L:      spice-devel@lists.freedesktop.org
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      drivers/gpu/drm/qxl/
6071 F:      include/uapi/drm/qxl_drm.h
6072
6073 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6074 S:      Orphan / Obsolete
6075 F:      drivers/gpu/drm/r128/
6076 F:      include/uapi/drm/r128_drm.h
6077
6078 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6079 M:      Robert Chiras <robert.chiras@nxp.com>
6080 S:      Maintained
6081 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6082 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6083
6084 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6085 M:      Linus Walleij <linus.walleij@linaro.org>
6086 S:      Maintained
6087 T:      git git://anongit.freedesktop.org/drm/drm-misc
6088 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6089 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6090
6091 DRM DRIVER FOR SITRONIX ST7703 PANELS
6092 M:      Guido Günther <agx@sigxcpu.org>
6093 R:      Purism Kernel Team <kernel@puri.sm>
6094 R:      Ondrej Jirman <megous@megous.com>
6095 S:      Maintained
6096 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6097 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6098
6099 DRM DRIVER FOR SAVAGE VIDEO CARDS
6100 S:      Orphan / Obsolete
6101 F:      drivers/gpu/drm/savage/
6102 F:      include/uapi/drm/savage_drm.h
6103
6104 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6105 M:      Thomas Zimmermann <tzimmermann@suse.de>
6106 L:      dri-devel@lists.freedesktop.org
6107 S:      Maintained
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      drivers/gpu/drm/tiny/simpledrm.c
6110
6111 DRM DRIVER FOR SIS VIDEO CARDS
6112 S:      Orphan / Obsolete
6113 F:      drivers/gpu/drm/sis/
6114 F:      include/uapi/drm/sis_drm.h
6115
6116 DRM DRIVER FOR SITRONIX ST7586 PANELS
6117 M:      David Lechner <david@lechnology.com>
6118 S:      Maintained
6119 T:      git git://anongit.freedesktop.org/drm/drm-misc
6120 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6121 F:      drivers/gpu/drm/tiny/st7586.c
6122
6123 DRM DRIVER FOR SITRONIX ST7701 PANELS
6124 M:      Jagan Teki <jagan@amarulasolutions.com>
6125 S:      Maintained
6126 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6127 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6128
6129 DRM DRIVER FOR SITRONIX ST7735R PANELS
6130 M:      David Lechner <david@lechnology.com>
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6134 F:      drivers/gpu/drm/tiny/st7735r.c
6135
6136 DRM DRIVER FOR SONY ACX424AKP PANELS
6137 M:      Linus Walleij <linus.walleij@linaro.org>
6138 S:      Maintained
6139 T:      git git://anongit.freedesktop.org/drm/drm-misc
6140 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6141
6142 DRM DRIVER FOR ST-ERICSSON MCDE
6143 M:      Linus Walleij <linus.walleij@linaro.org>
6144 S:      Maintained
6145 T:      git git://anongit.freedesktop.org/drm/drm-misc
6146 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6147 F:      drivers/gpu/drm/mcde/
6148
6149 DRM DRIVER FOR TDFX VIDEO CARDS
6150 S:      Orphan / Obsolete
6151 F:      drivers/gpu/drm/tdfx/
6152
6153 DRM DRIVER FOR TPO TPG110 PANELS
6154 M:      Linus Walleij <linus.walleij@linaro.org>
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6158 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6159
6160 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6161 M:      Dave Airlie <airlied@redhat.com>
6162 R:      Sean Paul <sean@poorly.run>
6163 R:      Thomas Zimmermann <tzimmermann@suse.de>
6164 L:      dri-devel@lists.freedesktop.org
6165 S:      Supported
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/udl/
6168
6169 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6170 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6171 M:      Melissa Wen <melissa.srw@gmail.com>
6172 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6173 R:      Daniel Vetter <daniel@ffwll.ch>
6174 L:      dri-devel@lists.freedesktop.org
6175 S:      Maintained
6176 T:      git git://anongit.freedesktop.org/drm/drm-misc
6177 F:      Documentation/gpu/vkms.rst
6178 F:      drivers/gpu/drm/vkms/
6179
6180 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6181 M:      Hans de Goede <hdegoede@redhat.com>
6182 L:      dri-devel@lists.freedesktop.org
6183 S:      Maintained
6184 T:      git git://anongit.freedesktop.org/drm/drm-misc
6185 F:      drivers/gpu/drm/vboxvideo/
6186
6187 DRM DRIVER FOR VMWARE VIRTUAL GPU
6188 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6189 M:      Zack Rusin <zackr@vmware.com>
6190 L:      dri-devel@lists.freedesktop.org
6191 S:      Supported
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 F:      drivers/gpu/drm/vmwgfx/
6194 F:      include/uapi/drm/vmwgfx_drm.h
6195
6196 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6197 M:      Linus Walleij <linus.walleij@linaro.org>
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6201 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6202
6203 DRM DRIVERS
6204 M:      David Airlie <airlied@linux.ie>
6205 M:      Daniel Vetter <daniel@ffwll.ch>
6206 L:      dri-devel@lists.freedesktop.org
6207 S:      Maintained
6208 B:      https://gitlab.freedesktop.org/drm
6209 C:      irc://irc.oftc.net/dri-devel
6210 T:      git git://anongit.freedesktop.org/drm/drm
6211 F:      Documentation/devicetree/bindings/display/
6212 F:      Documentation/devicetree/bindings/gpu/
6213 F:      Documentation/gpu/
6214 F:      drivers/gpu/
6215 F:      include/drm/
6216 F:      include/linux/vga*
6217 F:      include/uapi/drm/
6218
6219 DRM DRIVERS AND MISC GPU PATCHES
6220 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6221 M:      Maxime Ripard <mripard@kernel.org>
6222 M:      Thomas Zimmermann <tzimmermann@suse.de>
6223 S:      Maintained
6224 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6225 T:      git git://anongit.freedesktop.org/drm/drm-misc
6226 F:      Documentation/gpu/
6227 F:      drivers/gpu/drm/*
6228 F:      drivers/gpu/vga/
6229 F:      include/drm/drm*
6230 F:      include/linux/vga*
6231 F:      include/uapi/drm/drm*
6232
6233 DRM DRIVERS FOR ALLWINNER A10
6234 M:      Maxime Ripard <mripard@kernel.org>
6235 M:      Chen-Yu Tsai <wens@csie.org>
6236 L:      dri-devel@lists.freedesktop.org
6237 S:      Supported
6238 T:      git git://anongit.freedesktop.org/drm/drm-misc
6239 F:      Documentation/devicetree/bindings/display/allwinner*
6240 F:      drivers/gpu/drm/sun4i/
6241
6242 DRM DRIVERS FOR AMLOGIC SOCS
6243 M:      Neil Armstrong <narmstrong@baylibre.com>
6244 L:      dri-devel@lists.freedesktop.org
6245 L:      linux-amlogic@lists.infradead.org
6246 S:      Supported
6247 W:      http://linux-meson.com/
6248 T:      git git://anongit.freedesktop.org/drm/drm-misc
6249 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6250 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6251 F:      Documentation/gpu/meson.rst
6252 F:      drivers/gpu/drm/meson/
6253
6254 DRM DRIVERS FOR ATMEL HLCDC
6255 M:      Sam Ravnborg <sam@ravnborg.org>
6256 M:      Boris Brezillon <bbrezillon@kernel.org>
6257 L:      dri-devel@lists.freedesktop.org
6258 S:      Supported
6259 T:      git git://anongit.freedesktop.org/drm/drm-misc
6260 F:      Documentation/devicetree/bindings/display/atmel/
6261 F:      drivers/gpu/drm/atmel-hlcdc/
6262
6263 DRM DRIVERS FOR BRIDGE CHIPS
6264 M:      Andrzej Hajda <a.hajda@samsung.com>
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 M:      Robert Foss <robert.foss@linaro.org>
6267 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6268 R:      Jonas Karlman <jonas@kwiboo.se>
6269 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6270 S:      Maintained
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      drivers/gpu/drm/bridge/
6273
6274 DRM DRIVERS FOR EXYNOS
6275 M:      Inki Dae <inki.dae@samsung.com>
6276 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6277 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6278 M:      Kyungmin Park <kyungmin.park@samsung.com>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6282 F:      Documentation/devicetree/bindings/display/exynos/
6283 F:      drivers/gpu/drm/exynos/
6284 F:      include/uapi/drm/exynos_drm.h
6285
6286 DRM DRIVERS FOR FREESCALE DCU
6287 M:      Stefan Agner <stefan@agner.ch>
6288 M:      Alison Wang <alison.wang@nxp.com>
6289 L:      dri-devel@lists.freedesktop.org
6290 S:      Supported
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6293 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6294 F:      drivers/gpu/drm/fsl-dcu/
6295
6296 DRM DRIVERS FOR FREESCALE IMX
6297 M:      Philipp Zabel <p.zabel@pengutronix.de>
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 F:      Documentation/devicetree/bindings/display/imx/
6301 F:      drivers/gpu/drm/imx/
6302 F:      drivers/gpu/ipu-v3/
6303
6304 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6305 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6306 L:      dri-devel@lists.freedesktop.org
6307 S:      Maintained
6308 T:      git git://github.com/patjak/drm-gma500
6309 F:      drivers/gpu/drm/gma500/
6310
6311 DRM DRIVERS FOR HISILICON
6312 M:      Xinliang Liu <xinliang.liu@linaro.org>
6313 M:      Tian Tao  <tiantao6@hisilicon.com>
6314 R:      John Stultz <john.stultz@linaro.org>
6315 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6316 R:      Chen Feng <puck.chen@hisilicon.com>
6317 L:      dri-devel@lists.freedesktop.org
6318 S:      Maintained
6319 T:      git git://anongit.freedesktop.org/drm/drm-misc
6320 F:      Documentation/devicetree/bindings/display/hisilicon/
6321 F:      drivers/gpu/drm/hisilicon/
6322
6323 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6324 M:      Deepak Rawat <drawat.floss@gmail.com>
6325 L:      linux-hyperv@vger.kernel.org
6326 L:      dri-devel@lists.freedesktop.org
6327 S:      Maintained
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      drivers/gpu/drm/hyperv
6330
6331 DRM DRIVERS FOR LIMA
6332 M:      Qiang Yu <yuq825@gmail.com>
6333 L:      dri-devel@lists.freedesktop.org
6334 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6335 S:      Maintained
6336 T:      git git://anongit.freedesktop.org/drm/drm-misc
6337 F:      drivers/gpu/drm/lima/
6338 F:      include/uapi/drm/lima_drm.h
6339
6340 DRM DRIVERS FOR MEDIATEK
6341 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6342 M:      Philipp Zabel <p.zabel@pengutronix.de>
6343 L:      dri-devel@lists.freedesktop.org
6344 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6345 S:      Supported
6346 F:      Documentation/devicetree/bindings/display/mediatek/
6347 F:      drivers/gpu/drm/mediatek/
6348 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6349 F:      drivers/phy/mediatek/phy-mtk-mipi*
6350
6351 DRM DRIVERS FOR NVIDIA TEGRA
6352 M:      Thierry Reding <thierry.reding@gmail.com>
6353 L:      dri-devel@lists.freedesktop.org
6354 L:      linux-tegra@vger.kernel.org
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/tegra/linux.git
6357 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6358 F:      drivers/gpu/drm/tegra/
6359 F:      drivers/gpu/host1x/
6360 F:      include/linux/host1x.h
6361 F:      include/uapi/drm/tegra_drm.h
6362
6363 DRM DRIVERS FOR RENESAS
6364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6365 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6366 L:      dri-devel@lists.freedesktop.org
6367 L:      linux-renesas-soc@vger.kernel.org
6368 S:      Supported
6369 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6370 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6371 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6372 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6373 F:      drivers/gpu/drm/rcar-du/
6374 F:      drivers/gpu/drm/shmobile/
6375 F:      include/linux/platform_data/shmob_drm.h
6376
6377 DRM DRIVERS FOR ROCKCHIP
6378 M:      Sandy Huang <hjc@rock-chips.com>
6379 M:      Heiko Stübner <heiko@sntech.de>
6380 L:      dri-devel@lists.freedesktop.org
6381 S:      Maintained
6382 T:      git git://anongit.freedesktop.org/drm/drm-misc
6383 F:      Documentation/devicetree/bindings/display/rockchip/
6384 F:      drivers/gpu/drm/rockchip/
6385
6386 DRM DRIVERS FOR STI
6387 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6388 L:      dri-devel@lists.freedesktop.org
6389 S:      Maintained
6390 T:      git git://anongit.freedesktop.org/drm/drm-misc
6391 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6392 F:      drivers/gpu/drm/sti
6393
6394 DRM DRIVERS FOR STM
6395 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6396 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6397 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6398 L:      dri-devel@lists.freedesktop.org
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6402 F:      drivers/gpu/drm/stm
6403
6404 DRM DRIVERS FOR TI KEYSTONE
6405 M:      Jyri Sarha <jyri.sarha@iki.fi>
6406 M:      Tomi Valkeinen <tomba@kernel.org>
6407 L:      dri-devel@lists.freedesktop.org
6408 S:      Maintained
6409 T:      git git://anongit.freedesktop.org/drm/drm-misc
6410 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6411 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6412 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6413 F:      drivers/gpu/drm/tidss/
6414
6415 DRM DRIVERS FOR TI LCDC
6416 M:      Jyri Sarha <jyri.sarha@iki.fi>
6417 R:      Tomi Valkeinen <tomba@kernel.org>
6418 L:      dri-devel@lists.freedesktop.org
6419 S:      Maintained
6420 F:      Documentation/devicetree/bindings/display/tilcdc/
6421 F:      drivers/gpu/drm/tilcdc/
6422
6423 DRM DRIVERS FOR TI OMAP
6424 M:      Tomi Valkeinen <tomba@kernel.org>
6425 L:      dri-devel@lists.freedesktop.org
6426 S:      Maintained
6427 F:      Documentation/devicetree/bindings/display/ti/
6428 F:      drivers/gpu/drm/omapdrm/
6429
6430 DRM DRIVERS FOR V3D
6431 M:      Emma Anholt <emma@anholt.net>
6432 S:      Supported
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6435 F:      drivers/gpu/drm/v3d/
6436 F:      include/uapi/drm/v3d_drm.h
6437
6438 DRM DRIVERS FOR VC4
6439 M:      Emma Anholt <emma@anholt.net>
6440 M:      Maxime Ripard <mripard@kernel.org>
6441 S:      Supported
6442 T:      git git://github.com/anholt/linux
6443 T:      git git://anongit.freedesktop.org/drm/drm-misc
6444 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6445 F:      drivers/gpu/drm/vc4/
6446 F:      include/uapi/drm/vc4_drm.h
6447
6448 DRM DRIVERS FOR VIVANTE GPU IP
6449 M:      Lucas Stach <l.stach@pengutronix.de>
6450 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6451 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6452 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6453 L:      dri-devel@lists.freedesktop.org
6454 S:      Maintained
6455 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6456 F:      drivers/gpu/drm/etnaviv/
6457 F:      include/uapi/drm/etnaviv_drm.h
6458
6459 DRM DRIVERS FOR XEN
6460 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6461 L:      dri-devel@lists.freedesktop.org
6462 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6463 S:      Supported
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      Documentation/gpu/xen-front.rst
6466 F:      drivers/gpu/drm/xen/
6467
6468 DRM DRIVERS FOR XILINX
6469 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6470 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://anongit.freedesktop.org/drm/drm-misc
6474 F:      Documentation/devicetree/bindings/display/xlnx/
6475 F:      drivers/gpu/drm/xlnx/
6476
6477 DRM PANEL DRIVERS
6478 M:      Thierry Reding <thierry.reding@gmail.com>
6479 R:      Sam Ravnborg <sam@ravnborg.org>
6480 L:      dri-devel@lists.freedesktop.org
6481 S:      Maintained
6482 T:      git git://anongit.freedesktop.org/drm/drm-misc
6483 F:      Documentation/devicetree/bindings/display/panel/
6484 F:      drivers/gpu/drm/drm_panel.c
6485 F:      drivers/gpu/drm/panel/
6486 F:      include/drm/drm_panel.h
6487
6488 DRM TTM SUBSYSTEM
6489 M:      Christian Koenig <christian.koenig@amd.com>
6490 M:      Huang Rui <ray.huang@amd.com>
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Maintained
6493 T:      git git://anongit.freedesktop.org/drm/drm-misc
6494 F:      drivers/gpu/drm/ttm/
6495 F:      include/drm/ttm/
6496
6497 DSBR100 USB FM RADIO DRIVER
6498 M:      Alexey Klimov <klimov.linux@gmail.com>
6499 L:      linux-media@vger.kernel.org
6500 S:      Maintained
6501 T:      git git://linuxtv.org/media_tree.git
6502 F:      drivers/media/radio/dsbr100.c
6503
6504 DT3155 MEDIA DRIVER
6505 M:      Hans Verkuil <hverkuil@xs4all.nl>
6506 L:      linux-media@vger.kernel.org
6507 S:      Odd Fixes
6508 W:      https://linuxtv.org
6509 T:      git git://linuxtv.org/media_tree.git
6510 F:      drivers/media/pci/dt3155/
6511
6512 DVB_USB_AF9015 MEDIA DRIVER
6513 M:      Antti Palosaari <crope@iki.fi>
6514 L:      linux-media@vger.kernel.org
6515 S:      Maintained
6516 W:      https://linuxtv.org
6517 W:      http://palosaari.fi/linux/
6518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6519 T:      git git://linuxtv.org/anttip/media_tree.git
6520 F:      drivers/media/usb/dvb-usb-v2/af9015*
6521
6522 DVB_USB_AF9035 MEDIA DRIVER
6523 M:      Antti Palosaari <crope@iki.fi>
6524 L:      linux-media@vger.kernel.org
6525 S:      Maintained
6526 W:      https://linuxtv.org
6527 W:      http://palosaari.fi/linux/
6528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6529 T:      git git://linuxtv.org/anttip/media_tree.git
6530 F:      drivers/media/usb/dvb-usb-v2/af9035*
6531
6532 DVB_USB_ANYSEE MEDIA DRIVER
6533 M:      Antti Palosaari <crope@iki.fi>
6534 L:      linux-media@vger.kernel.org
6535 S:      Maintained
6536 W:      https://linuxtv.org
6537 W:      http://palosaari.fi/linux/
6538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6539 T:      git git://linuxtv.org/anttip/media_tree.git
6540 F:      drivers/media/usb/dvb-usb-v2/anysee*
6541
6542 DVB_USB_AU6610 MEDIA DRIVER
6543 M:      Antti Palosaari <crope@iki.fi>
6544 L:      linux-media@vger.kernel.org
6545 S:      Maintained
6546 W:      https://linuxtv.org
6547 W:      http://palosaari.fi/linux/
6548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6549 T:      git git://linuxtv.org/anttip/media_tree.git
6550 F:      drivers/media/usb/dvb-usb-v2/au6610*
6551
6552 DVB_USB_CE6230 MEDIA DRIVER
6553 M:      Antti Palosaari <crope@iki.fi>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 W:      https://linuxtv.org
6557 W:      http://palosaari.fi/linux/
6558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6559 T:      git git://linuxtv.org/anttip/media_tree.git
6560 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6561
6562 DVB_USB_CXUSB MEDIA DRIVER
6563 M:      Michael Krufky <mkrufky@linuxtv.org>
6564 L:      linux-media@vger.kernel.org
6565 S:      Maintained
6566 W:      https://linuxtv.org
6567 W:      http://github.com/mkrufky
6568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6569 T:      git git://linuxtv.org/media_tree.git
6570 F:      drivers/media/usb/dvb-usb/cxusb*
6571
6572 DVB_USB_EC168 MEDIA DRIVER
6573 M:      Antti Palosaari <crope@iki.fi>
6574 L:      linux-media@vger.kernel.org
6575 S:      Maintained
6576 W:      https://linuxtv.org
6577 W:      http://palosaari.fi/linux/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 T:      git git://linuxtv.org/anttip/media_tree.git
6580 F:      drivers/media/usb/dvb-usb-v2/ec168*
6581
6582 DVB_USB_GL861 MEDIA DRIVER
6583 M:      Antti Palosaari <crope@iki.fi>
6584 L:      linux-media@vger.kernel.org
6585 S:      Maintained
6586 W:      https://linuxtv.org
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 T:      git git://linuxtv.org/anttip/media_tree.git
6589 F:      drivers/media/usb/dvb-usb-v2/gl861*
6590
6591 DVB_USB_MXL111SF MEDIA DRIVER
6592 M:      Michael Krufky <mkrufky@linuxtv.org>
6593 L:      linux-media@vger.kernel.org
6594 S:      Maintained
6595 W:      https://linuxtv.org
6596 W:      http://github.com/mkrufky
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6599 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6600
6601 DVB_USB_RTL28XXU MEDIA DRIVER
6602 M:      Antti Palosaari <crope@iki.fi>
6603 L:      linux-media@vger.kernel.org
6604 S:      Maintained
6605 W:      https://linuxtv.org
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6610
6611 DVB_USB_V2 MEDIA DRIVER
6612 M:      Antti Palosaari <crope@iki.fi>
6613 L:      linux-media@vger.kernel.org
6614 S:      Maintained
6615 W:      https://linuxtv.org
6616 W:      http://palosaari.fi/linux/
6617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6618 T:      git git://linuxtv.org/anttip/media_tree.git
6619 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6620 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6621
6622 DYNAMIC DEBUG
6623 M:      Jason Baron <jbaron@akamai.com>
6624 S:      Maintained
6625 F:      include/linux/dynamic_debug.h
6626 F:      lib/dynamic_debug.c
6627
6628 DYNAMIC INTERRUPT MODERATION
6629 M:      Tal Gilboa <talgi@nvidia.com>
6630 S:      Maintained
6631 F:      Documentation/networking/net_dim.rst
6632 F:      include/linux/dim.h
6633 F:      lib/dim/
6634
6635 DZ DECSTATION DZ11 SERIAL DRIVER
6636 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6637 S:      Maintained
6638 F:      drivers/tty/serial/dz.*
6639
6640 E3X0 POWER BUTTON DRIVER
6641 M:      Moritz Fischer <moritz.fischer@ettus.com>
6642 L:      usrp-users@lists.ettus.com
6643 S:      Supported
6644 W:      http://www.ettus.com
6645 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6646 F:      drivers/input/misc/e3x0-button.c
6647
6648 E4000 MEDIA DRIVER
6649 M:      Antti Palosaari <crope@iki.fi>
6650 L:      linux-media@vger.kernel.org
6651 S:      Maintained
6652 W:      https://linuxtv.org
6653 W:      http://palosaari.fi/linux/
6654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6655 T:      git git://linuxtv.org/anttip/media_tree.git
6656 F:      drivers/media/tuners/e4000*
6657
6658 EARTH_PT1 MEDIA DRIVER
6659 M:      Akihiro Tsukada <tskd08@gmail.com>
6660 L:      linux-media@vger.kernel.org
6661 S:      Odd Fixes
6662 F:      drivers/media/pci/pt1/
6663
6664 EARTH_PT3 MEDIA DRIVER
6665 M:      Akihiro Tsukada <tskd08@gmail.com>
6666 L:      linux-media@vger.kernel.org
6667 S:      Odd Fixes
6668 F:      drivers/media/pci/pt3/
6669
6670 EC100 MEDIA DRIVER
6671 M:      Antti Palosaari <crope@iki.fi>
6672 L:      linux-media@vger.kernel.org
6673 S:      Maintained
6674 W:      https://linuxtv.org
6675 W:      http://palosaari.fi/linux/
6676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6677 T:      git git://linuxtv.org/anttip/media_tree.git
6678 F:      drivers/media/dvb-frontends/ec100*
6679
6680 ECRYPT FILE SYSTEM
6681 M:      Tyler Hicks <code@tyhicks.com>
6682 L:      ecryptfs@vger.kernel.org
6683 S:      Odd Fixes
6684 W:      http://ecryptfs.org
6685 W:      https://launchpad.net/ecryptfs
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6687 F:      Documentation/filesystems/ecryptfs.rst
6688 F:      fs/ecryptfs/
6689
6690 EDAC-AMD64
6691 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Supported
6694 F:      drivers/edac/amd64_edac*
6695 F:      drivers/edac/mce_amd*
6696
6697 EDAC-ARMADA
6698 M:      Jan Luebbe <jlu@pengutronix.de>
6699 L:      linux-edac@vger.kernel.org
6700 S:      Maintained
6701 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6702 F:      drivers/edac/armada_xp_*
6703
6704 EDAC-AST2500
6705 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6706 S:      Supported
6707 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6708 F:      drivers/edac/aspeed_edac.c
6709
6710 EDAC-BLUEFIELD
6711 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6712 S:      Supported
6713 F:      drivers/edac/bluefield_edac.c
6714
6715 EDAC-CALXEDA
6716 M:      Andre Przywara <andre.przywara@arm.com>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/edac/highbank*
6720
6721 EDAC-CAVIUM OCTEON
6722 M:      Ralf Baechle <ralf@linux-mips.org>
6723 L:      linux-edac@vger.kernel.org
6724 L:      linux-mips@vger.kernel.org
6725 S:      Supported
6726 F:      drivers/edac/octeon_edac*
6727
6728 EDAC-CAVIUM THUNDERX
6729 M:      Robert Richter <rric@kernel.org>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Odd Fixes
6732 F:      drivers/edac/thunderx_edac*
6733
6734 EDAC-CORE
6735 M:      Borislav Petkov <bp@alien8.de>
6736 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6737 M:      Tony Luck <tony.luck@intel.com>
6738 R:      James Morse <james.morse@arm.com>
6739 R:      Robert Richter <rric@kernel.org>
6740 L:      linux-edac@vger.kernel.org
6741 S:      Supported
6742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6743 F:      Documentation/admin-guide/ras.rst
6744 F:      Documentation/driver-api/edac.rst
6745 F:      drivers/edac/
6746 F:      include/linux/edac.h
6747
6748 EDAC-DMC520
6749 M:      Lei Wang <lewan@microsoft.com>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Supported
6752 F:      drivers/edac/dmc520_edac.c
6753
6754 EDAC-E752X
6755 M:      Mark Gross <mark.gross@intel.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/edac/e752x_edac.c
6759
6760 EDAC-E7XXX
6761 L:      linux-edac@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/edac/e7xxx_edac.c
6764
6765 EDAC-FSL_DDR
6766 M:      York Sun <york.sun@nxp.com>
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/fsl_ddr_edac.*
6770
6771 EDAC-GHES
6772 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/edac/ghes_edac.c
6776
6777 EDAC-I10NM
6778 M:      Tony Luck <tony.luck@intel.com>
6779 L:      linux-edac@vger.kernel.org
6780 S:      Maintained
6781 F:      drivers/edac/i10nm_base.c
6782
6783 EDAC-I3000
6784 L:      linux-edac@vger.kernel.org
6785 S:      Orphan
6786 F:      drivers/edac/i3000_edac.c
6787
6788 EDAC-I5000
6789 L:      linux-edac@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/edac/i5000_edac.c
6792
6793 EDAC-I5400
6794 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6795 L:      linux-edac@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/edac/i5400_edac.c
6798
6799 EDAC-I7300
6800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/i7300_edac.c
6804
6805 EDAC-I7CORE
6806 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/i7core_edac.c
6810
6811 EDAC-I82443BXGX
6812 M:      Tim Small <tim@buttersideup.com>
6813 L:      linux-edac@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/edac/i82443bxgx_edac.c
6816
6817 EDAC-I82975X
6818 M:      "Arvind R." <arvino55@gmail.com>
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i82975x_edac.c
6822
6823 EDAC-IE31200
6824 M:      Jason Baron <jbaron@akamai.com>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/ie31200_edac.c
6828
6829 EDAC-IGEN6
6830 M:      Tony Luck <tony.luck@intel.com>
6831 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/igen6_edac.c
6835
6836 EDAC-MPC85XX
6837 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/mpc85xx_edac.[ch]
6841
6842 EDAC-PASEMI
6843 M:      Egor Martovetsky <egor@pasemi.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/pasemi_edac.c
6847
6848 EDAC-PND2
6849 M:      Tony Luck <tony.luck@intel.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/pnd2_edac.[ch]
6853
6854 EDAC-QCOM
6855 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6856 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6857 L:      linux-arm-msm@vger.kernel.org
6858 L:      linux-edac@vger.kernel.org
6859 S:      Maintained
6860 F:      drivers/edac/qcom_edac.c
6861
6862 EDAC-R82600
6863 M:      Tim Small <tim@buttersideup.com>
6864 L:      linux-edac@vger.kernel.org
6865 S:      Maintained
6866 F:      drivers/edac/r82600_edac.c
6867
6868 EDAC-SBRIDGE
6869 M:      Tony Luck <tony.luck@intel.com>
6870 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6871 L:      linux-edac@vger.kernel.org
6872 S:      Maintained
6873 F:      drivers/edac/sb_edac.c
6874
6875 EDAC-SIFIVE
6876 M:      Yash Shah <yash.shah@sifive.com>
6877 L:      linux-edac@vger.kernel.org
6878 S:      Supported
6879 F:      drivers/edac/sifive_edac.c
6880
6881 EDAC-SKYLAKE
6882 M:      Tony Luck <tony.luck@intel.com>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Maintained
6885 F:      drivers/edac/skx_*.[ch]
6886
6887 EDAC-TI
6888 M:      Tero Kristo <kristo@kernel.org>
6889 L:      linux-edac@vger.kernel.org
6890 S:      Odd Fixes
6891 F:      drivers/edac/ti_edac.c
6892
6893 EDIROL UA-101/UA-1000 DRIVER
6894 M:      Clemens Ladisch <clemens@ladisch.de>
6895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6896 S:      Maintained
6897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6898 F:      sound/usb/misc/ua101.c
6899
6900 EFI TEST DRIVER
6901 M:      Ivan Hu <ivan.hu@canonical.com>
6902 M:      Ard Biesheuvel <ardb@kernel.org>
6903 L:      linux-efi@vger.kernel.org
6904 S:      Maintained
6905 F:      drivers/firmware/efi/test/
6906
6907 EFI VARIABLE FILESYSTEM
6908 M:      Matthew Garrett <matthew.garrett@nebula.com>
6909 M:      Jeremy Kerr <jk@ozlabs.org>
6910 M:      Ard Biesheuvel <ardb@kernel.org>
6911 L:      linux-efi@vger.kernel.org
6912 S:      Maintained
6913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6914 F:      fs/efivarfs/
6915
6916 EFIFB FRAMEBUFFER DRIVER
6917 M:      Peter Jones <pjones@redhat.com>
6918 L:      linux-fbdev@vger.kernel.org
6919 S:      Maintained
6920 F:      drivers/video/fbdev/efifb.c
6921
6922 EFS FILESYSTEM
6923 S:      Orphan
6924 W:      http://aeschi.ch.eu.org/efs/
6925 F:      fs/efs/
6926
6927 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6928 M:      Douglas Miller <dougmill@linux.ibm.com>
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/net/ethernet/ibm/ehea/
6932
6933 EM28XX VIDEO4LINUX DRIVER
6934 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6935 L:      linux-media@vger.kernel.org
6936 S:      Maintained
6937 W:      https://linuxtv.org
6938 T:      git git://linuxtv.org/media_tree.git
6939 F:      Documentation/admin-guide/media/em28xx*
6940 F:      drivers/media/usb/em28xx/
6941
6942 EMBEDDED LINUX
6943 M:      Matt Mackall <mpm@selenic.com>
6944 M:      David Woodhouse <dwmw2@infradead.org>
6945 L:      linux-embedded@vger.kernel.org
6946 S:      Maintained
6947
6948 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6949 M:      Adrian Hunter <adrian.hunter@intel.com>
6950 M:      Ritesh Harjani <riteshh@codeaurora.org>
6951 M:      Asutosh Das <asutoshd@codeaurora.org>
6952 L:      linux-mmc@vger.kernel.org
6953 S:      Maintained
6954 F:      drivers/mmc/host/cqhci*
6955
6956 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6957 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6958 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6959 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6960 L:      linux-scsi@vger.kernel.org
6961 S:      Supported
6962 W:      http://www.broadcom.com
6963 F:      drivers/scsi/be2iscsi/
6964
6965 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6966 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6967 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6968 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6969 L:      netdev@vger.kernel.org
6970 S:      Supported
6971 W:      http://www.emulex.com
6972 F:      drivers/net/ethernet/emulex/benet/
6973
6974 EMULEX ONECONNECT ROCE DRIVER
6975 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6976 L:      linux-rdma@vger.kernel.org
6977 S:      Odd Fixes
6978 W:      http://www.broadcom.com
6979 F:      drivers/infiniband/hw/ocrdma/
6980 F:      include/uapi/rdma/ocrdma-abi.h
6981
6982 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6983 M:      James Smart <james.smart@broadcom.com>
6984 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6985 L:      linux-scsi@vger.kernel.org
6986 S:      Supported
6987 W:      http://www.broadcom.com
6988 F:      drivers/scsi/lpfc/
6989
6990 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6991 M:      James Smart <james.smart@broadcom.com>
6992 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6993 L:      linux-scsi@vger.kernel.org
6994 L:      target-devel@vger.kernel.org
6995 S:      Supported
6996 W:      http://www.broadcom.com
6997 F:      drivers/scsi/elx/
6998
6999 ENE CB710 FLASH CARD READER DRIVER
7000 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7001 S:      Maintained
7002 F:      drivers/misc/cb710/
7003 F:      drivers/mmc/host/cb710-mmc.*
7004 F:      include/linux/cb710.h
7005
7006 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7007 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7008 S:      Maintained
7009 F:      drivers/media/rc/ene_ir.*
7010
7011 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7012 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7013 L:      linuxppc-dev@lists.ozlabs.org
7014 S:      Maintained
7015 F:      drivers/tty/ehv_bytechan.c
7016
7017 EPSON S1D13XXX FRAMEBUFFER DRIVER
7018 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7019 S:      Maintained
7020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7021 F:      drivers/video/fbdev/s1d13xxxfb.c
7022 F:      include/video/s1d13xxxfb.h
7023
7024 EROFS FILE SYSTEM
7025 M:      Gao Xiang <xiang@kernel.org>
7026 M:      Chao Yu <chao@kernel.org>
7027 L:      linux-erofs@lists.ozlabs.org
7028 S:      Maintained
7029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7030 F:      Documentation/filesystems/erofs.rst
7031 F:      fs/erofs/
7032 F:      include/trace/events/erofs.h
7033
7034 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7035 M:      Jeff Layton <jlayton@kernel.org>
7036 S:      Maintained
7037 F:      include/linux/errseq.h
7038 F:      lib/errseq.c
7039
7040 ET131X NETWORK DRIVER
7041 M:      Mark Einon <mark.einon@gmail.com>
7042 S:      Odd Fixes
7043 F:      drivers/net/ethernet/agere/
7044
7045 ETAS ES58X CAN/USB DRIVER
7046 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7047 L:      linux-can@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/net/can/usb/etas_es58x/
7050
7051 ETHERNET BRIDGE
7052 M:      Roopa Prabhu <roopa@nvidia.com>
7053 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7054 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7055 L:      netdev@vger.kernel.org
7056 S:      Maintained
7057 W:      http://www.linuxfoundation.org/en/Net:Bridge
7058 F:      include/linux/netfilter_bridge/
7059 F:      net/bridge/
7060
7061 ETHERNET PHY LIBRARY
7062 M:      Andrew Lunn <andrew@lunn.ch>
7063 M:      Heiner Kallweit <hkallweit1@gmail.com>
7064 R:      Russell King <linux@armlinux.org.uk>
7065 L:      netdev@vger.kernel.org
7066 S:      Maintained
7067 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7068 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7069 F:      Documentation/devicetree/bindings/net/mdio*
7070 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7071 F:      Documentation/networking/phy.rst
7072 F:      drivers/net/mdio/
7073 F:      drivers/net/mdio/acpi_mdio.c
7074 F:      drivers/net/mdio/fwnode_mdio.c
7075 F:      drivers/net/mdio/of_mdio.c
7076 F:      drivers/net/pcs/
7077 F:      drivers/net/phy/
7078 F:      include/dt-bindings/net/qca-ar803x.h
7079 F:      include/linux/*mdio*.h
7080 F:      include/linux/mdio/*.h
7081 F:      include/linux/of_net.h
7082 F:      include/linux/phy.h
7083 F:      include/linux/phy_fixed.h
7084 F:      include/linux/platform_data/mdio-bcm-unimac.h
7085 F:      include/linux/platform_data/mdio-gpio.h
7086 F:      include/trace/events/mdio.h
7087 F:      include/uapi/linux/mdio.h
7088 F:      include/uapi/linux/mii.h
7089 F:      net/core/of_net.c
7090
7091 EXFAT FILE SYSTEM
7092 M:      Namjae Jeon <linkinjeon@kernel.org>
7093 M:      Sungjong Seo <sj1557.seo@samsung.com>
7094 L:      linux-fsdevel@vger.kernel.org
7095 S:      Maintained
7096 F:      fs/exfat/
7097
7098 EXT2 FILE SYSTEM
7099 M:      Jan Kara <jack@suse.com>
7100 L:      linux-ext4@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/filesystems/ext2.rst
7103 F:      fs/ext2/
7104 F:      include/linux/ext2*
7105
7106 EXT4 FILE SYSTEM
7107 M:      "Theodore Ts'o" <tytso@mit.edu>
7108 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7109 L:      linux-ext4@vger.kernel.org
7110 S:      Maintained
7111 W:      http://ext4.wiki.kernel.org
7112 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7114 F:      Documentation/filesystems/ext4/
7115 F:      fs/ext4/
7116 F:      include/trace/events/ext4.h
7117
7118 Extended Verification Module (EVM)
7119 M:      Mimi Zohar <zohar@linux.ibm.com>
7120 L:      linux-integrity@vger.kernel.org
7121 S:      Supported
7122 F:      security/integrity/evm/
7123
7124 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7125 M:      Ard Biesheuvel <ardb@kernel.org>
7126 L:      linux-efi@vger.kernel.org
7127 S:      Maintained
7128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7129 F:      Documentation/admin-guide/efi-stub.rst
7130 F:      arch/*/include/asm/efi.h
7131 F:      arch/*/kernel/efi.c
7132 F:      arch/arm/boot/compressed/efi-header.S
7133 F:      arch/arm64/kernel/efi-entry.S
7134 F:      arch/x86/platform/efi/
7135 F:      drivers/firmware/efi/
7136 F:      include/linux/efi*.h
7137
7138 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7139 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7140 M:      Chanwoo Choi <cw00.choi@samsung.com>
7141 L:      linux-kernel@vger.kernel.org
7142 S:      Maintained
7143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7144 F:      Documentation/devicetree/bindings/extcon/
7145 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7146 F:      drivers/extcon/
7147 F:      include/linux/extcon.h
7148 F:      include/linux/extcon/
7149
7150 EXTRA BOOT CONFIG
7151 M:      Masami Hiramatsu <mhiramat@kernel.org>
7152 S:      Maintained
7153 F:      Documentation/admin-guide/bootconfig.rst
7154 F:      fs/proc/bootconfig.c
7155 F:      include/linux/bootconfig.h
7156 F:      lib/bootconfig.c
7157 F:      tools/bootconfig/*
7158 F:      tools/bootconfig/scripts/*
7159
7160 EXYNOS DP DRIVER
7161 M:      Jingoo Han <jingoohan1@gmail.com>
7162 L:      dri-devel@lists.freedesktop.org
7163 S:      Maintained
7164 F:      drivers/gpu/drm/exynos/exynos_dp*
7165
7166 EXYNOS SYSMMU (IOMMU) driver
7167 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7168 L:      iommu@lists.linux-foundation.org
7169 L:      iommu@lists.linux.dev
7170 S:      Maintained
7171 F:      drivers/iommu/exynos-iommu.c
7172
7173 F2FS FILE SYSTEM
7174 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7175 M:      Chao Yu <chao@kernel.org>
7176 L:      linux-f2fs-devel@lists.sourceforge.net
7177 S:      Maintained
7178 W:      https://f2fs.wiki.kernel.org/
7179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7180 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7181 F:      Documentation/filesystems/f2fs.rst
7182 F:      fs/f2fs/
7183 F:      include/linux/f2fs_fs.h
7184 F:      include/trace/events/f2fs.h
7185 F:      include/uapi/linux/f2fs.h
7186
7187 F71805F HARDWARE MONITORING DRIVER
7188 M:      Jean Delvare <jdelvare@suse.com>
7189 L:      linux-hwmon@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/hwmon/f71805f.rst
7192 F:      drivers/hwmon/f71805f.c
7193
7194 FADDR2LINE
7195 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7196 S:      Maintained
7197 F:      scripts/faddr2line
7198
7199 FAILOVER MODULE
7200 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7201 L:      netdev@vger.kernel.org
7202 S:      Supported
7203 F:      Documentation/networking/failover.rst
7204 F:      include/net/failover.h
7205 F:      net/core/failover.c
7206
7207 FANOTIFY
7208 M:      Jan Kara <jack@suse.cz>
7209 R:      Amir Goldstein <amir73il@gmail.com>
7210 R:      Matthew Bobrowski <repnop@google.com>
7211 L:      linux-fsdevel@vger.kernel.org
7212 S:      Maintained
7213 F:      fs/notify/fanotify/
7214 F:      include/linux/fanotify.h
7215 F:      include/uapi/linux/fanotify.h
7216
7217 FARSYNC SYNCHRONOUS DRIVER
7218 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7219 S:      Supported
7220 W:      http://www.farsite.co.uk/
7221 F:      drivers/net/wan/farsync.*
7222
7223 FAULT INJECTION SUPPORT
7224 M:      Akinobu Mita <akinobu.mita@gmail.com>
7225 S:      Supported
7226 F:      Documentation/fault-injection/
7227 F:      lib/fault-inject.c
7228
7229 FBTFT Framebuffer drivers
7230 L:      dri-devel@lists.freedesktop.org
7231 L:      linux-fbdev@vger.kernel.org
7232 S:      Orphan
7233 F:      drivers/staging/fbtft/
7234
7235 FC0011 TUNER DRIVER
7236 M:      Michael Buesch <m@bues.ch>
7237 L:      linux-media@vger.kernel.org
7238 S:      Maintained
7239 F:      drivers/media/tuners/fc0011.c
7240 F:      drivers/media/tuners/fc0011.h
7241
7242 FC2580 MEDIA DRIVER
7243 M:      Antti Palosaari <crope@iki.fi>
7244 L:      linux-media@vger.kernel.org
7245 S:      Maintained
7246 W:      https://linuxtv.org
7247 W:      http://palosaari.fi/linux/
7248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7249 T:      git git://linuxtv.org/anttip/media_tree.git
7250 F:      drivers/media/tuners/fc2580*
7251
7252 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7253 M:      Hannes Reinecke <hare@suse.de>
7254 L:      linux-scsi@vger.kernel.org
7255 S:      Supported
7256 W:      www.Open-FCoE.org
7257 F:      drivers/scsi/fcoe/
7258 F:      drivers/scsi/libfc/
7259 F:      include/scsi/fc/
7260 F:      include/scsi/libfc.h
7261 F:      include/scsi/libfcoe.h
7262 F:      include/uapi/scsi/fc/
7263
7264 FILE LOCKING (flock() and fcntl()/lockf())
7265 M:      Jeff Layton <jlayton@kernel.org>
7266 M:      "J. Bruce Fields" <bfields@fieldses.org>
7267 L:      linux-fsdevel@vger.kernel.org
7268 S:      Maintained
7269 F:      fs/fcntl.c
7270 F:      fs/locks.c
7271 F:      include/linux/fcntl.h
7272 F:      include/uapi/linux/fcntl.h
7273
7274 FILESYSTEM DIRECT ACCESS (DAX)
7275 M:      Dan Williams <dan.j.williams@intel.com>
7276 R:      Matthew Wilcox <willy@infradead.org>
7277 R:      Jan Kara <jack@suse.cz>
7278 L:      linux-fsdevel@vger.kernel.org
7279 L:      nvdimm@lists.linux.dev
7280 S:      Supported
7281 F:      fs/dax.c
7282 F:      include/linux/dax.h
7283 F:      include/trace/events/fs_dax.h
7284
7285 FILESYSTEMS (VFS and infrastructure)
7286 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7287 L:      linux-fsdevel@vger.kernel.org
7288 S:      Maintained
7289 F:      fs/*
7290 F:      include/linux/fs.h
7291 F:      include/linux/fs_types.h
7292 F:      include/uapi/linux/fs.h
7293 F:      include/uapi/linux/openat2.h
7294 X:      fs/io-wq.c
7295 X:      fs/io-wq.h
7296 X:      fs/io_uring.c
7297
7298 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7299 M:      Riku Voipio <riku.voipio@iki.fi>
7300 L:      linux-hwmon@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/hwmon/f75375s.c
7303 F:      include/linux/f75375s.h
7304
7305 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7306 M:      Clemens Ladisch <clemens@ladisch.de>
7307 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7309 S:      Maintained
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7311 F:      include/uapi/sound/firewire.h
7312 F:      sound/firewire/
7313
7314 FIREWIRE MEDIA DRIVERS (firedtv)
7315 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7316 L:      linux-media@vger.kernel.org
7317 L:      linux1394-devel@lists.sourceforge.net
7318 S:      Maintained
7319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7320 F:      drivers/media/firewire/
7321
7322 FIREWIRE SBP-2 TARGET
7323 M:      Chris Boot <bootc@bootc.net>
7324 L:      linux-scsi@vger.kernel.org
7325 L:      target-devel@vger.kernel.org
7326 L:      linux1394-devel@lists.sourceforge.net
7327 S:      Maintained
7328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7329 F:      drivers/target/sbp/
7330
7331 FIREWIRE SUBSYSTEM
7332 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7333 L:      linux1394-devel@lists.sourceforge.net
7334 S:      Maintained
7335 W:      http://ieee1394.wiki.kernel.org/
7336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7337 F:      drivers/firewire/
7338 F:      include/linux/firewire.h
7339 F:      include/uapi/linux/firewire*.h
7340 F:      tools/firewire/
7341
7342 FIRMWARE FRAMEWORK FOR ARMV8-A
7343 M:      Sudeep Holla <sudeep.holla@arm.com>
7344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7345 S:      Maintained
7346 F:      drivers/firmware/arm_ffa/
7347 F:      include/linux/arm_ffa.h
7348
7349 FIRMWARE LOADER (request_firmware)
7350 M:      Luis Chamberlain <mcgrof@kernel.org>
7351 L:      linux-kernel@vger.kernel.org
7352 S:      Maintained
7353 F:      Documentation/firmware_class/
7354 F:      drivers/base/firmware_loader/
7355 F:      include/linux/firmware.h
7356
7357 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7358 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7359 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7360 S:      Maintained
7361 F:      drivers/block/rsxx/
7362
7363 FLEXTIMER FTM-QUADDEC DRIVER
7364 M:      Patrick Havelange <patrick.havelange@essensium.com>
7365 L:      linux-iio@vger.kernel.org
7366 S:      Maintained
7367 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7368 F:      drivers/counter/ftm-quaddec.c
7369
7370 FLOPPY DRIVER
7371 M:      Denis Efremov <efremov@linux.com>
7372 L:      linux-block@vger.kernel.org
7373 S:      Odd Fixes
7374 F:      drivers/block/floppy.c
7375
7376 FLYSKY FSIA6B RC RECEIVER
7377 M:      Markus Koch <markus@notsyncing.net>
7378 L:      linux-input@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/input/joystick/fsia6b.c
7381
7382 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7383 M:      Geoffrey D. Bennett <g@b4.vu>
7384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7385 S:      Maintained
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7387 F:      sound/usb/mixer_scarlett_gen2.c
7388
7389 FORCEDETH GIGABIT ETHERNET DRIVER
7390 M:      Rain River <rain.1986.08.12@gmail.com>
7391 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7392 L:      netdev@vger.kernel.org
7393 S:      Maintained
7394 F:      drivers/net/ethernet/nvidia/*
7395
7396 FPGA DFL DRIVERS
7397 M:      Wu Hao <hao.wu@intel.com>
7398 R:      Tom Rix <trix@redhat.com>
7399 L:      linux-fpga@vger.kernel.org
7400 S:      Maintained
7401 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7402 F:      Documentation/fpga/dfl.rst
7403 F:      drivers/fpga/dfl*
7404 F:      drivers/uio/uio_dfl.c
7405 F:      include/linux/dfl.h
7406 F:      include/uapi/linux/fpga-dfl.h
7407
7408 FPGA MANAGER FRAMEWORK
7409 M:      Moritz Fischer <mdf@kernel.org>
7410 M:      Wu Hao <hao.wu@intel.com>
7411 M:      Xu Yilun <yilun.xu@intel.com>
7412 R:      Tom Rix <trix@redhat.com>
7413 L:      linux-fpga@vger.kernel.org
7414 S:      Maintained
7415 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7417 F:      Documentation/devicetree/bindings/fpga/
7418 F:      Documentation/driver-api/fpga/
7419 F:      Documentation/fpga/
7420 F:      drivers/fpga/
7421 F:      include/linux/fpga/
7422
7423 FPU EMULATOR
7424 M:      Bill Metzenthen <billm@melbpc.org.au>
7425 S:      Maintained
7426 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7427 F:      arch/x86/math-emu/
7428
7429 FRAMEBUFFER LAYER
7430 L:      dri-devel@lists.freedesktop.org
7431 L:      linux-fbdev@vger.kernel.org
7432 S:      Orphan
7433 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7434 T:      git git://anongit.freedesktop.org/drm/drm-misc
7435 F:      Documentation/fb/
7436 F:      drivers/video/
7437 F:      include/linux/fb.h
7438 F:      include/uapi/linux/fb.h
7439 F:      include/uapi/video/
7440 F:      include/video/
7441
7442 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7443 M:      Horia Geantă <horia.geanta@nxp.com>
7444 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7445 L:      linux-crypto@vger.kernel.org
7446 S:      Maintained
7447 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7448 F:      drivers/crypto/caam/
7449
7450 FREESCALE COLDFIRE M5441X MMC DRIVER
7451 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7452 L:      linux-mmc@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7455 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7456
7457 FREESCALE DIU FRAMEBUFFER DRIVER
7458 M:      Timur Tabi <timur@kernel.org>
7459 L:      linux-fbdev@vger.kernel.org
7460 S:      Maintained
7461 F:      drivers/video/fbdev/fsl-diu-fb.*
7462
7463 FREESCALE DMA DRIVER
7464 M:      Li Yang <leoyang.li@nxp.com>
7465 M:      Zhang Wei <zw@zh-kernel.org>
7466 L:      linuxppc-dev@lists.ozlabs.org
7467 S:      Maintained
7468 F:      drivers/dma/fsldma.*
7469
7470 FREESCALE DSPI DRIVER
7471 M:      Vladimir Oltean <olteanv@gmail.com>
7472 L:      linux-spi@vger.kernel.org
7473 S:      Maintained
7474 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7475 F:      drivers/spi/spi-fsl-dspi.c
7476 F:      include/linux/spi/spi-fsl-dspi.h
7477
7478 FREESCALE ENETC ETHERNET DRIVERS
7479 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7480 L:      netdev@vger.kernel.org
7481 S:      Maintained
7482 F:      drivers/net/ethernet/freescale/enetc/
7483
7484 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7485 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7486 L:      netdev@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7489 F:      drivers/net/ethernet/freescale/gianfar*
7490
7491 FREESCALE GPMI NAND DRIVER
7492 M:      Han Xu <han.xu@nxp.com>
7493 L:      linux-mtd@lists.infradead.org
7494 S:      Maintained
7495 F:      drivers/mtd/nand/raw/gpmi-nand/*
7496
7497 FREESCALE I2C CPM DRIVER
7498 M:      Jochen Friedrich <jochen@scram.de>
7499 L:      linuxppc-dev@lists.ozlabs.org
7500 L:      linux-i2c@vger.kernel.org
7501 S:      Maintained
7502 F:      drivers/i2c/busses/i2c-cpm.c
7503
7504 FREESCALE IMX / MXC FEC DRIVER
7505 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7506 L:      netdev@vger.kernel.org
7507 S:      Maintained
7508 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7509 F:      drivers/net/ethernet/freescale/fec.h
7510 F:      drivers/net/ethernet/freescale/fec_main.c
7511 F:      drivers/net/ethernet/freescale/fec_ptp.c
7512
7513 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7514 M:      Sascha Hauer <s.hauer@pengutronix.de>
7515 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7516 L:      linux-fbdev@vger.kernel.org
7517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7518 S:      Maintained
7519 F:      drivers/video/fbdev/imxfb.c
7520 F:      include/linux/platform_data/video-imxfb.h
7521
7522 FREESCALE IMX DDR PMU DRIVER
7523 M:      Frank Li <Frank.li@nxp.com>
7524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7525 S:      Maintained
7526 F:      Documentation/admin-guide/perf/imx-ddr.rst
7527 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7528 F:      drivers/perf/fsl_imx8_ddr_perf.c
7529
7530 FREESCALE IMX I2C DRIVER
7531 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7532 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7533 L:      linux-i2c@vger.kernel.org
7534 S:      Maintained
7535 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7536 F:      drivers/i2c/busses/i2c-imx.c
7537
7538 FREESCALE IMX LPI2C DRIVER
7539 M:      Dong Aisheng <aisheng.dong@nxp.com>
7540 L:      linux-i2c@vger.kernel.org
7541 L:      linux-imx@nxp.com
7542 S:      Maintained
7543 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7544 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7545
7546 FREESCALE MPC I2C DRIVER
7547 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7548 L:      linux-i2c@vger.kernel.org
7549 S:      Maintained
7550 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7551 F:      drivers/i2c/busses/i2c-mpc.c
7552
7553 FREESCALE QORIQ DPAA ETHERNET DRIVER
7554 M:      Madalin Bucur <madalin.bucur@nxp.com>
7555 L:      netdev@vger.kernel.org
7556 S:      Maintained
7557 F:      drivers/net/ethernet/freescale/dpaa
7558
7559 FREESCALE QORIQ DPAA FMAN DRIVER
7560 M:      Madalin Bucur <madalin.bucur@nxp.com>
7561 L:      netdev@vger.kernel.org
7562 S:      Maintained
7563 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7564 F:      drivers/net/ethernet/freescale/fman
7565
7566 FREESCALE QORIQ PTP CLOCK DRIVER
7567 M:      Yangbo Lu <yangbo.lu@nxp.com>
7568 L:      netdev@vger.kernel.org
7569 S:      Maintained
7570 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7571 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7572 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7573 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7574 F:      drivers/ptp/ptp_qoriq.c
7575 F:      drivers/ptp/ptp_qoriq_debugfs.c
7576 F:      include/linux/fsl/ptp_qoriq.h
7577
7578 FREESCALE QUAD SPI DRIVER
7579 M:      Han Xu <han.xu@nxp.com>
7580 L:      linux-spi@vger.kernel.org
7581 S:      Maintained
7582 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7583 F:      drivers/spi/spi-fsl-qspi.c
7584
7585 FREESCALE QUICC ENGINE LIBRARY
7586 M:      Qiang Zhao <qiang.zhao@nxp.com>
7587 L:      linuxppc-dev@lists.ozlabs.org
7588 S:      Maintained
7589 F:      drivers/soc/fsl/qe/
7590 F:      include/soc/fsl/*qe*.h
7591 F:      include/soc/fsl/*ucc*.h
7592
7593 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7594 M:      Li Yang <leoyang.li@nxp.com>
7595 L:      netdev@vger.kernel.org
7596 L:      linuxppc-dev@lists.ozlabs.org
7597 S:      Maintained
7598 F:      drivers/net/ethernet/freescale/ucc_geth*
7599
7600 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7601 M:      Zhao Qiang <qiang.zhao@nxp.com>
7602 L:      netdev@vger.kernel.org
7603 L:      linuxppc-dev@lists.ozlabs.org
7604 S:      Maintained
7605 F:      drivers/net/wan/fsl_ucc_hdlc*
7606
7607 FREESCALE QUICC ENGINE UCC UART DRIVER
7608 M:      Timur Tabi <timur@kernel.org>
7609 L:      linuxppc-dev@lists.ozlabs.org
7610 S:      Maintained
7611 F:      drivers/tty/serial/ucc_uart.c
7612
7613 FREESCALE SOC DRIVERS
7614 M:      Li Yang <leoyang.li@nxp.com>
7615 L:      linuxppc-dev@lists.ozlabs.org
7616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7617 S:      Maintained
7618 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7619 F:      Documentation/devicetree/bindings/soc/fsl/
7620 F:      drivers/soc/fsl/
7621 F:      include/linux/fsl/
7622
7623 FREESCALE SOC FS_ENET DRIVER
7624 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7625 L:      linuxppc-dev@lists.ozlabs.org
7626 L:      netdev@vger.kernel.org
7627 S:      Maintained
7628 F:      drivers/net/ethernet/freescale/fs_enet/
7629 F:      include/linux/fs_enet_pd.h
7630
7631 FREESCALE SOC SOUND DRIVERS
7632 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7633 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7634 R:      Fabio Estevam <festevam@gmail.com>
7635 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7637 L:      linuxppc-dev@lists.ozlabs.org
7638 S:      Maintained
7639 F:      sound/soc/fsl/fsl*
7640 F:      sound/soc/fsl/imx*
7641 F:      sound/soc/fsl/mpc8610_hpcd.c
7642
7643 FREESCALE USB PERIPHERAL DRIVERS
7644 M:      Li Yang <leoyang.li@nxp.com>
7645 L:      linux-usb@vger.kernel.org
7646 L:      linuxppc-dev@lists.ozlabs.org
7647 S:      Maintained
7648 F:      drivers/usb/gadget/udc/fsl*
7649
7650 FREESCALE USB PHY DRIVER
7651 M:      Ran Wang <ran.wang_1@nxp.com>
7652 L:      linux-usb@vger.kernel.org
7653 L:      linuxppc-dev@lists.ozlabs.org
7654 S:      Maintained
7655 F:      drivers/usb/phy/phy-fsl-usb*
7656
7657 FREEVXFS FILESYSTEM
7658 M:      Christoph Hellwig <hch@infradead.org>
7659 S:      Maintained
7660 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7661 F:      fs/freevxfs/
7662
7663 FREEZER
7664 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7665 M:      Pavel Machek <pavel@ucw.cz>
7666 L:      linux-pm@vger.kernel.org
7667 S:      Supported
7668 F:      Documentation/power/freezing-of-tasks.rst
7669 F:      include/linux/freezer.h
7670 F:      kernel/freezer.c
7671
7672 FRONTSWAP API
7673 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7674 L:      linux-kernel@vger.kernel.org
7675 S:      Maintained
7676 F:      include/linux/frontswap.h
7677 F:      mm/frontswap.c
7678
7679 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7680 M:      David Howells <dhowells@redhat.com>
7681 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7682 S:      Supported
7683 F:      Documentation/filesystems/caching/
7684 F:      fs/fscache/
7685 F:      include/linux/fscache*.h
7686
7687 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7688 M:      Theodore Y. Ts'o <tytso@mit.edu>
7689 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7690 M:      Eric Biggers <ebiggers@kernel.org>
7691 L:      linux-fscrypt@vger.kernel.org
7692 S:      Supported
7693 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7694 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7695 F:      Documentation/filesystems/fscrypt.rst
7696 F:      fs/crypto/
7697 F:      include/linux/fscrypt*.h
7698 F:      include/uapi/linux/fscrypt.h
7699
7700 FSI SUBSYSTEM
7701 M:      Jeremy Kerr <jk@ozlabs.org>
7702 M:      Joel Stanley <joel@jms.id.au>
7703 R:      Alistar Popple <alistair@popple.id.au>
7704 R:      Eddie James <eajames@linux.ibm.com>
7705 L:      linux-fsi@lists.ozlabs.org
7706 S:      Supported
7707 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7709 F:      drivers/fsi/
7710 F:      include/linux/fsi*.h
7711 F:      include/trace/events/fsi*.h
7712
7713 FSI-ATTACHED I2C DRIVER
7714 M:      Eddie James <eajames@linux.ibm.com>
7715 L:      linux-i2c@vger.kernel.org
7716 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7717 S:      Maintained
7718 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7719 F:      drivers/i2c/busses/i2c-fsi.c
7720
7721 FSI-ATTACHED SPI DRIVER
7722 M:      Eddie James <eajames@linux.ibm.com>
7723 L:      linux-spi@vger.kernel.org
7724 S:      Maintained
7725 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7726 F:      drivers/spi/spi-fsi.c
7727
7728 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7729 M:      Jan Kara <jack@suse.cz>
7730 R:      Amir Goldstein <amir73il@gmail.com>
7731 L:      linux-fsdevel@vger.kernel.org
7732 S:      Maintained
7733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7734 F:      fs/notify/
7735 F:      include/linux/fsnotify*.h
7736
7737 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7738 M:      Eric Biggers <ebiggers@kernel.org>
7739 M:      Theodore Y. Ts'o <tytso@mit.edu>
7740 L:      linux-fscrypt@vger.kernel.org
7741 S:      Supported
7742 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7743 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7744 F:      Documentation/filesystems/fsverity.rst
7745 F:      fs/verity/
7746 F:      include/linux/fsverity.h
7747 F:      include/uapi/linux/fsverity.h
7748
7749 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7750 M:      Michael Zaidman <michael.zaidman@gmail.com>
7751 L:      linux-i2c@vger.kernel.org
7752 L:      linux-input@vger.kernel.org
7753 S:      Maintained
7754 F:      drivers/hid/hid-ft260.c
7755
7756 FUJITSU LAPTOP EXTRAS
7757 M:      Jonathan Woithe <jwoithe@just42.net>
7758 L:      platform-driver-x86@vger.kernel.org
7759 S:      Maintained
7760 F:      drivers/platform/x86/fujitsu-laptop.c
7761
7762 FUJITSU M-5MO LS CAMERA ISP DRIVER
7763 M:      Kyungmin Park <kyungmin.park@samsung.com>
7764 M:      Heungjun Kim <riverful.kim@samsung.com>
7765 L:      linux-media@vger.kernel.org
7766 S:      Maintained
7767 F:      drivers/media/i2c/m5mols/
7768 F:      include/media/i2c/m5mols.h
7769
7770 FUJITSU TABLET EXTRAS
7771 M:      Robert Gerlach <khnz@gmx.de>
7772 L:      platform-driver-x86@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/platform/x86/fujitsu-tablet.c
7775
7776 FUSE: FILESYSTEM IN USERSPACE
7777 M:      Miklos Szeredi <miklos@szeredi.hu>
7778 L:      linux-fsdevel@vger.kernel.org
7779 S:      Maintained
7780 W:      https://github.com/libfuse/
7781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7782 F:      Documentation/filesystems/fuse.rst
7783 F:      fs/fuse/
7784 F:      include/uapi/linux/fuse.h
7785
7786 FUTEX SUBSYSTEM
7787 M:      Thomas Gleixner <tglx@linutronix.de>
7788 M:      Ingo Molnar <mingo@redhat.com>
7789 R:      Peter Zijlstra <peterz@infradead.org>
7790 R:      Darren Hart <dvhart@infradead.org>
7791 R:      Davidlohr Bueso <dave@stgolabs.net>
7792 L:      linux-kernel@vger.kernel.org
7793 S:      Maintained
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7795 F:      Documentation/locking/*futex*
7796 F:      include/asm-generic/futex.h
7797 F:      include/linux/futex.h
7798 F:      include/uapi/linux/futex.h
7799 F:      kernel/futex.c
7800 F:      tools/perf/bench/futex*
7801 F:      tools/testing/selftests/futex/
7802
7803 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7804 M:      Tim Harvey <tharvey@gateworks.com>
7805 M:      Robert Jones <rjones@gateworks.com>
7806 S:      Maintained
7807 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7808 F:      drivers/mfd/gateworks-gsc.c
7809 F:      include/linux/mfd/gsc.h
7810 F:      Documentation/hwmon/gsc-hwmon.rst
7811 F:      drivers/hwmon/gsc-hwmon.c
7812 F:      include/linux/platform_data/gsc_hwmon.h
7813
7814 GCC PLUGINS
7815 M:      Kees Cook <keescook@chromium.org>
7816 L:      linux-hardening@vger.kernel.org
7817 S:      Maintained
7818 F:      Documentation/kbuild/gcc-plugins.rst
7819 F:      scripts/Makefile.gcc-plugins
7820 F:      scripts/gcc-plugins/
7821
7822 GCOV BASED KERNEL PROFILING
7823 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7824 S:      Maintained
7825 F:      Documentation/dev-tools/gcov.rst
7826 F:      kernel/gcov/
7827
7828 GDB KERNEL DEBUGGING HELPER SCRIPTS
7829 M:      Jan Kiszka <jan.kiszka@siemens.com>
7830 M:      Kieran Bingham <kbingham@kernel.org>
7831 S:      Supported
7832 F:      scripts/gdb/
7833
7834 GEMINI CRYPTO DRIVER
7835 M:      Corentin Labbe <clabbe@baylibre.com>
7836 L:      linux-crypto@vger.kernel.org
7837 S:      Maintained
7838 F:      drivers/crypto/gemini/
7839
7840 GEMTEK FM RADIO RECEIVER DRIVER
7841 M:      Hans Verkuil <hverkuil@xs4all.nl>
7842 L:      linux-media@vger.kernel.org
7843 S:      Maintained
7844 W:      https://linuxtv.org
7845 T:      git git://linuxtv.org/media_tree.git
7846 F:      drivers/media/radio/radio-gemtek*
7847
7848 GENERIC ARCHITECTURE TOPOLOGY
7849 M:      Sudeep Holla <sudeep.holla@arm.com>
7850 L:      linux-kernel@vger.kernel.org
7851 S:      Maintained
7852 F:      drivers/base/arch_topology.c
7853 F:      include/linux/arch_topology.h
7854
7855 GENERIC ENTRY CODE
7856 M:      Thomas Gleixner <tglx@linutronix.de>
7857 M:      Peter Zijlstra <peterz@infradead.org>
7858 M:      Andy Lutomirski <luto@kernel.org>
7859 L:      linux-kernel@vger.kernel.org
7860 S:      Maintained
7861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7862 F:      include/linux/entry-common.h
7863 F:      include/linux/entry-kvm.h
7864 F:      kernel/entry/
7865
7866 GENERIC GPIO I2C DRIVER
7867 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7868 S:      Supported
7869 F:      drivers/i2c/busses/i2c-gpio.c
7870 F:      include/linux/platform_data/i2c-gpio.h
7871
7872 GENERIC GPIO I2C MULTIPLEXER DRIVER
7873 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7874 L:      linux-i2c@vger.kernel.org
7875 S:      Supported
7876 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7877 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7878 F:      include/linux/platform_data/i2c-mux-gpio.h
7879
7880 GENERIC HDLC (WAN) DRIVERS
7881 M:      Krzysztof Halasa <khc@pm.waw.pl>
7882 S:      Maintained
7883 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7884 F:      drivers/net/wan/c101.c
7885 F:      drivers/net/wan/hd6457*
7886 F:      drivers/net/wan/hdlc*
7887 F:      drivers/net/wan/n2.c
7888 F:      drivers/net/wan/pc300too.c
7889 F:      drivers/net/wan/pci200syn.c
7890 F:      drivers/net/wan/wanxl*
7891
7892 GENERIC INCLUDE/ASM HEADER FILES
7893 M:      Arnd Bergmann <arnd@arndb.de>
7894 L:      linux-arch@vger.kernel.org
7895 S:      Maintained
7896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7897 F:      include/asm-generic/
7898 F:      include/uapi/asm-generic/
7899
7900 GENERIC PHY FRAMEWORK
7901 M:      Kishon Vijay Abraham I <kishon@ti.com>
7902 M:      Vinod Koul <vkoul@kernel.org>
7903 L:      linux-phy@lists.infradead.org
7904 S:      Supported
7905 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7907 F:      Documentation/devicetree/bindings/phy/
7908 F:      drivers/phy/
7909 F:      include/linux/phy/
7910
7911 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7912 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7913 S:      Supported
7914 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7915
7916 GENERIC PM DOMAINS
7917 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7918 M:      Kevin Hilman <khilman@kernel.org>
7919 M:      Ulf Hansson <ulf.hansson@linaro.org>
7920 L:      linux-pm@vger.kernel.org
7921 S:      Supported
7922 F:      Documentation/devicetree/bindings/power/power?domain*
7923 F:      drivers/base/power/domain*.c
7924 F:      include/linux/pm_domain.h
7925
7926 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7927 M:      Eugen Hristev <eugen.hristev@microchip.com>
7928 L:      linux-input@vger.kernel.org
7929 S:      Maintained
7930 F:      drivers/input/touchscreen/resistive-adc-touch.c
7931
7932 GENERIC STRING LIBRARY
7933 R:      Andy Shevchenko <andy@kernel.org>
7934 S:      Maintained
7935 F:      lib/string.c
7936 F:      lib/string_helpers.c
7937 F:      lib/test_string.c
7938 F:      lib/test-string_helpers.c
7939
7940 GENERIC UIO DRIVER FOR PCI DEVICES
7941 M:      "Michael S. Tsirkin" <mst@redhat.com>
7942 L:      kvm@vger.kernel.org
7943 S:      Supported
7944 F:      drivers/uio/uio_pci_generic.c
7945
7946 GENERIC VDSO LIBRARY
7947 M:      Andy Lutomirski <luto@kernel.org>
7948 M:      Thomas Gleixner <tglx@linutronix.de>
7949 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7950 L:      linux-kernel@vger.kernel.org
7951 S:      Maintained
7952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7953 F:      include/asm-generic/vdso/vsyscall.h
7954 F:      include/vdso/
7955 F:      kernel/time/vsyscall.c
7956 F:      lib/vdso/
7957
7958 GENWQE (IBM Generic Workqueue Card)
7959 M:      Frank Haverkamp <haver@linux.ibm.com>
7960 S:      Supported
7961 F:      drivers/misc/genwqe/
7962
7963 GET_MAINTAINER SCRIPT
7964 M:      Joe Perches <joe@perches.com>
7965 S:      Maintained
7966 F:      scripts/get_maintainer.pl
7967
7968 GFS2 FILE SYSTEM
7969 M:      Bob Peterson <rpeterso@redhat.com>
7970 M:      Andreas Gruenbacher <agruenba@redhat.com>
7971 L:      cluster-devel@redhat.com
7972 S:      Supported
7973 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7975 F:      Documentation/filesystems/gfs2*
7976 F:      fs/gfs2/
7977 F:      include/uapi/linux/gfs2_ondisk.h
7978
7979 GIGABYTE WMI DRIVER
7980 M:      Thomas Weißschuh <thomas@weissschuh.net>
7981 L:      platform-driver-x86@vger.kernel.org
7982 S:      Maintained
7983 F:      drivers/platform/x86/gigabyte-wmi.c
7984
7985 GNSS SUBSYSTEM
7986 M:      Johan Hovold <johan@kernel.org>
7987 S:      Maintained
7988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7989 F:      Documentation/ABI/testing/sysfs-class-gnss
7990 F:      Documentation/devicetree/bindings/gnss/
7991 F:      drivers/gnss/
7992 F:      include/linux/gnss.h
7993
7994 GO7007 MPEG CODEC
7995 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7996 L:      linux-media@vger.kernel.org
7997 S:      Maintained
7998 F:      drivers/media/usb/go7007/
7999
8000 GOODIX TOUCHSCREEN
8001 M:      Bastien Nocera <hadess@hadess.net>
8002 L:      linux-input@vger.kernel.org
8003 S:      Maintained
8004 F:      drivers/input/touchscreen/goodix.c
8005
8006 GOOGLE ETHERNET DRIVERS
8007 M:      Jeroen de Borst <jeroendb@google.com>
8008 R:      Catherine Sullivan <csully@google.com>
8009 R:      David Awogbemila <awogbemila@google.com>
8010 L:      netdev@vger.kernel.org
8011 S:      Supported
8012 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8013 F:      drivers/net/ethernet/google
8014
8015 GPD POCKET FAN DRIVER
8016 M:      Hans de Goede <hdegoede@redhat.com>
8017 L:      platform-driver-x86@vger.kernel.org
8018 S:      Maintained
8019 F:      drivers/platform/x86/gpd-pocket-fan.c
8020
8021 GPIO ACPI SUPPORT
8022 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8023 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8024 L:      linux-gpio@vger.kernel.org
8025 L:      linux-acpi@vger.kernel.org
8026 S:      Maintained
8027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8028 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8029 F:      drivers/gpio/gpiolib-acpi.c
8030 F:      drivers/gpio/gpiolib-acpi.h
8031
8032 GPIO AGGREGATOR
8033 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8034 L:      linux-gpio@vger.kernel.org
8035 S:      Supported
8036 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8037 F:      drivers/gpio/gpio-aggregator.c
8038
8039 GPIO IR Transmitter
8040 M:      Sean Young <sean@mess.org>
8041 L:      linux-media@vger.kernel.org
8042 S:      Maintained
8043 F:      drivers/media/rc/gpio-ir-tx.c
8044
8045 GPIO MOCKUP DRIVER
8046 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8047 L:      linux-gpio@vger.kernel.org
8048 S:      Maintained
8049 F:      drivers/gpio/gpio-mockup.c
8050 F:      tools/testing/selftests/gpio/
8051
8052 GPIO REGMAP
8053 R:      Michael Walle <michael@walle.cc>
8054 S:      Maintained
8055 F:      drivers/gpio/gpio-regmap.c
8056 F:      include/linux/gpio/regmap.h
8057
8058 GPIO SUBSYSTEM
8059 M:      Linus Walleij <linus.walleij@linaro.org>
8060 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8061 L:      linux-gpio@vger.kernel.org
8062 S:      Maintained
8063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8064 F:      Documentation/ABI/obsolete/sysfs-gpio
8065 F:      Documentation/ABI/testing/gpio-cdev
8066 F:      Documentation/admin-guide/gpio/
8067 F:      Documentation/devicetree/bindings/gpio/
8068 F:      Documentation/driver-api/gpio/
8069 F:      drivers/gpio/
8070 F:      include/asm-generic/gpio.h
8071 F:      include/linux/gpio.h
8072 F:      include/linux/gpio/
8073 F:      include/linux/of_gpio.h
8074 F:      include/uapi/linux/gpio.h
8075 F:      tools/gpio/
8076
8077 GRE DEMULTIPLEXER DRIVER
8078 M:      Dmitry Kozlov <xeb@mail.ru>
8079 L:      netdev@vger.kernel.org
8080 S:      Maintained
8081 F:      include/net/gre.h
8082 F:      net/ipv4/gre_demux.c
8083 F:      net/ipv4/gre_offload.c
8084
8085 GRETH 10/100/1G Ethernet MAC device driver
8086 M:      Andreas Larsson <andreas@gaisler.com>
8087 L:      netdev@vger.kernel.org
8088 S:      Maintained
8089 F:      drivers/net/ethernet/aeroflex/
8090
8091 GREYBUS AUDIO PROTOCOLS DRIVERS
8092 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8093 M:      Mark Greer <mgreer@animalcreek.com>
8094 S:      Maintained
8095 F:      drivers/staging/greybus/audio_apbridgea.c
8096 F:      drivers/staging/greybus/audio_apbridgea.h
8097 F:      drivers/staging/greybus/audio_codec.c
8098 F:      drivers/staging/greybus/audio_codec.h
8099 F:      drivers/staging/greybus/audio_gb.c
8100 F:      drivers/staging/greybus/audio_manager.c
8101 F:      drivers/staging/greybus/audio_manager.h
8102 F:      drivers/staging/greybus/audio_manager_module.c
8103 F:      drivers/staging/greybus/audio_manager_private.h
8104 F:      drivers/staging/greybus/audio_manager_sysfs.c
8105 F:      drivers/staging/greybus/audio_module.c
8106 F:      drivers/staging/greybus/audio_topology.c
8107
8108 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8109 M:      Viresh Kumar <vireshk@kernel.org>
8110 S:      Maintained
8111 F:      drivers/staging/greybus/authentication.c
8112 F:      drivers/staging/greybus/bootrom.c
8113 F:      drivers/staging/greybus/firmware.h
8114 F:      drivers/staging/greybus/fw-core.c
8115 F:      drivers/staging/greybus/fw-download.c
8116 F:      drivers/staging/greybus/fw-management.c
8117 F:      drivers/staging/greybus/greybus_authentication.h
8118 F:      drivers/staging/greybus/greybus_firmware.h
8119 F:      drivers/staging/greybus/hid.c
8120 F:      drivers/staging/greybus/i2c.c
8121 F:      drivers/staging/greybus/spi.c
8122 F:      drivers/staging/greybus/spilib.c
8123 F:      drivers/staging/greybus/spilib.h
8124
8125 GREYBUS LOOPBACK DRIVER
8126 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8127 S:      Maintained
8128 F:      drivers/staging/greybus/loopback.c
8129
8130 GREYBUS PLATFORM DRIVERS
8131 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8132 S:      Maintained
8133 F:      drivers/staging/greybus/arche-apb-ctrl.c
8134 F:      drivers/staging/greybus/arche-platform.c
8135 F:      drivers/staging/greybus/arche_platform.h
8136
8137 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8138 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8139 S:      Maintained
8140 F:      drivers/staging/greybus/gpio.c
8141 F:      drivers/staging/greybus/light.c
8142 F:      drivers/staging/greybus/power_supply.c
8143 F:      drivers/staging/greybus/sdio.c
8144 F:      drivers/staging/greybus/spi.c
8145 F:      drivers/staging/greybus/spilib.c
8146
8147 GREYBUS SUBSYSTEM
8148 M:      Johan Hovold <johan@kernel.org>
8149 M:      Alex Elder <elder@kernel.org>
8150 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8151 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8152 S:      Maintained
8153 F:      drivers/greybus/
8154 F:      drivers/staging/greybus/
8155 F:      include/linux/greybus.h
8156 F:      include/linux/greybus/
8157
8158 GREYBUS UART PROTOCOLS DRIVERS
8159 M:      David Lin <dtwlin@gmail.com>
8160 S:      Maintained
8161 F:      drivers/staging/greybus/log.c
8162 F:      drivers/staging/greybus/uart.c
8163
8164 GS1662 VIDEO SERIALIZER
8165 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8166 L:      linux-media@vger.kernel.org
8167 S:      Maintained
8168 T:      git git://linuxtv.org/media_tree.git
8169 F:      drivers/media/spi/gs1662.c
8170
8171 GSPCA FINEPIX SUBDRIVER
8172 M:      Frank Zago <frank@zago.net>
8173 L:      linux-media@vger.kernel.org
8174 S:      Maintained
8175 T:      git git://linuxtv.org/media_tree.git
8176 F:      drivers/media/usb/gspca/finepix.c
8177
8178 GSPCA GL860 SUBDRIVER
8179 M:      Olivier Lorin <o.lorin@laposte.net>
8180 L:      linux-media@vger.kernel.org
8181 S:      Maintained
8182 T:      git git://linuxtv.org/media_tree.git
8183 F:      drivers/media/usb/gspca/gl860/
8184
8185 GSPCA M5602 SUBDRIVER
8186 M:      Erik Andren <erik.andren@gmail.com>
8187 L:      linux-media@vger.kernel.org
8188 S:      Maintained
8189 T:      git git://linuxtv.org/media_tree.git
8190 F:      drivers/media/usb/gspca/m5602/
8191
8192 GSPCA PAC207 SONIXB SUBDRIVER
8193 M:      Hans Verkuil <hverkuil@xs4all.nl>
8194 L:      linux-media@vger.kernel.org
8195 S:      Odd Fixes
8196 T:      git git://linuxtv.org/media_tree.git
8197 F:      drivers/media/usb/gspca/pac207.c
8198
8199 GSPCA SN9C20X SUBDRIVER
8200 M:      Brian Johnson <brijohn@gmail.com>
8201 L:      linux-media@vger.kernel.org
8202 S:      Maintained
8203 T:      git git://linuxtv.org/media_tree.git
8204 F:      drivers/media/usb/gspca/sn9c20x.c
8205
8206 GSPCA T613 SUBDRIVER
8207 M:      Leandro Costantino <lcostantino@gmail.com>
8208 L:      linux-media@vger.kernel.org
8209 S:      Maintained
8210 T:      git git://linuxtv.org/media_tree.git
8211 F:      drivers/media/usb/gspca/t613.c
8212
8213 GSPCA USB WEBCAM DRIVER
8214 M:      Hans Verkuil <hverkuil@xs4all.nl>
8215 L:      linux-media@vger.kernel.org
8216 S:      Odd Fixes
8217 T:      git git://linuxtv.org/media_tree.git
8218 F:      drivers/media/usb/gspca/
8219
8220 GTP (GPRS Tunneling Protocol)
8221 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8222 M:      Harald Welte <laforge@gnumonks.org>
8223 L:      osmocom-net-gprs@lists.osmocom.org
8224 S:      Maintained
8225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8226 F:      drivers/net/gtp.c
8227
8228 GUID PARTITION TABLE (GPT)
8229 M:      Davidlohr Bueso <dave@stgolabs.net>
8230 L:      linux-efi@vger.kernel.org
8231 S:      Maintained
8232 F:      block/partitions/efi.*
8233
8234 H8/300 ARCHITECTURE
8235 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8236 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8237 S:      Maintained
8238 W:      http://uclinux-h8.sourceforge.jp
8239 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8240 F:      arch/h8300/
8241 F:      drivers/clk/h8300/
8242 F:      drivers/clocksource/h8300_*.c
8243 F:      drivers/irqchip/irq-renesas-h8*.c
8244
8245 HABANALABS PCI DRIVER
8246 M:      Oded Gabbay <ogabbay@kernel.org>
8247 S:      Supported
8248 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8249 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8250 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8251 F:      drivers/misc/habanalabs/
8252 F:      include/uapi/misc/habanalabs.h
8253
8254 HACKRF MEDIA DRIVER
8255 M:      Antti Palosaari <crope@iki.fi>
8256 L:      linux-media@vger.kernel.org
8257 S:      Maintained
8258 W:      https://linuxtv.org
8259 W:      http://palosaari.fi/linux/
8260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8261 T:      git git://linuxtv.org/anttip/media_tree.git
8262 F:      drivers/media/usb/hackrf/
8263
8264 HANTRO VPU CODEC DRIVER
8265 M:      Ezequiel Garcia <ezequiel@collabora.com>
8266 M:      Philipp Zabel <p.zabel@pengutronix.de>
8267 L:      linux-media@vger.kernel.org
8268 L:      linux-rockchip@lists.infradead.org
8269 S:      Maintained
8270 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8271 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8272 F:      drivers/staging/media/hantro/
8273
8274 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8275 M:      Frank Seidel <frank@f-seidel.de>
8276 L:      platform-driver-x86@vger.kernel.org
8277 S:      Maintained
8278 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8279 F:      drivers/platform/x86/hdaps.c
8280
8281 HARDWARE MONITORING
8282 M:      Jean Delvare <jdelvare@suse.com>
8283 M:      Guenter Roeck <linux@roeck-us.net>
8284 L:      linux-hwmon@vger.kernel.org
8285 S:      Maintained
8286 W:      http://hwmon.wiki.kernel.org/
8287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8288 F:      Documentation/devicetree/bindings/hwmon/
8289 F:      Documentation/hwmon/
8290 F:      drivers/hwmon/
8291 F:      include/linux/hwmon*.h
8292 F:      include/trace/events/hwmon*.h
8293 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8294
8295 HARDWARE RANDOM NUMBER GENERATOR CORE
8296 M:      Matt Mackall <mpm@selenic.com>
8297 M:      Herbert Xu <herbert@gondor.apana.org.au>
8298 L:      linux-crypto@vger.kernel.org
8299 S:      Odd fixes
8300 F:      Documentation/admin-guide/hw_random.rst
8301 F:      Documentation/devicetree/bindings/rng/
8302 F:      drivers/char/hw_random/
8303 F:      include/linux/hw_random.h
8304
8305 HARDWARE SPINLOCK CORE
8306 M:      Ohad Ben-Cohen <ohad@wizery.com>
8307 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8308 R:      Baolin Wang <baolin.wang7@gmail.com>
8309 L:      linux-remoteproc@vger.kernel.org
8310 S:      Maintained
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8312 F:      Documentation/devicetree/bindings/hwlock/
8313 F:      Documentation/locking/hwspinlock.rst
8314 F:      drivers/hwspinlock/
8315 F:      include/linux/hwspinlock.h
8316
8317 HARDWARE TRACING FACILITIES
8318 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8319 S:      Maintained
8320 F:      drivers/hwtracing/
8321
8322 HARMONY SOUND DRIVER
8323 L:      linux-parisc@vger.kernel.org
8324 S:      Maintained
8325 F:      sound/parisc/harmony.*
8326
8327 HDPVR USB VIDEO ENCODER DRIVER
8328 M:      Hans Verkuil <hverkuil@xs4all.nl>
8329 L:      linux-media@vger.kernel.org
8330 S:      Odd Fixes
8331 W:      https://linuxtv.org
8332 T:      git git://linuxtv.org/media_tree.git
8333 F:      drivers/media/usb/hdpvr/
8334
8335 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8336 M:      Matt Hsiao <matt.hsiao@hpe.com>
8337 S:      Supported
8338 F:      drivers/misc/hpilo.[ch]
8339
8340 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8341 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8342 S:      Supported
8343 F:      Documentation/watchdog/hpwdt.rst
8344 F:      drivers/watchdog/hpwdt.c
8345
8346 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8347 M:      Don Brace <don.brace@microchip.com>
8348 L:      storagedev@microchip.com
8349 L:      linux-scsi@vger.kernel.org
8350 S:      Supported
8351 F:      Documentation/scsi/hpsa.rst
8352 F:      drivers/scsi/hpsa*.[ch]
8353 F:      include/linux/cciss*.h
8354 F:      include/uapi/linux/cciss*.h
8355
8356 HFI1 DRIVER
8357 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8358 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8359 L:      linux-rdma@vger.kernel.org
8360 S:      Supported
8361 F:      drivers/infiniband/hw/hfi1
8362
8363 HFS FILESYSTEM
8364 L:      linux-fsdevel@vger.kernel.org
8365 S:      Orphan
8366 F:      Documentation/filesystems/hfs.rst
8367 F:      fs/hfs/
8368
8369 HFSPLUS FILESYSTEM
8370 L:      linux-fsdevel@vger.kernel.org
8371 S:      Orphan
8372 F:      Documentation/filesystems/hfsplus.rst
8373 F:      fs/hfsplus/
8374
8375 HGA FRAMEBUFFER DRIVER
8376 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8377 L:      linux-nvidia@lists.surfsouth.com
8378 S:      Maintained
8379 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8380 F:      drivers/video/fbdev/hgafb.c
8381
8382 HIBERNATION (aka Software Suspend, aka swsusp)
8383 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8384 M:      Pavel Machek <pavel@ucw.cz>
8385 L:      linux-pm@vger.kernel.org
8386 S:      Supported
8387 B:      https://bugzilla.kernel.org
8388 F:      arch/*/include/asm/suspend*.h
8389 F:      arch/x86/power/
8390 F:      drivers/base/power/
8391 F:      include/linux/freezer.h
8392 F:      include/linux/pm.h
8393 F:      include/linux/suspend.h
8394 F:      kernel/power/
8395
8396 HID CORE LAYER
8397 M:      Jiri Kosina <jikos@kernel.org>
8398 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8399 L:      linux-input@vger.kernel.org
8400 S:      Maintained
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8402 F:      drivers/hid/
8403 F:      include/linux/hid*
8404 F:      include/uapi/linux/hid*
8405
8406 HID PLAYSTATION DRIVER
8407 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8408 L:      linux-input@vger.kernel.org
8409 S:      Supported
8410 F:      drivers/hid/hid-playstation.c
8411
8412 HID SENSOR HUB DRIVERS
8413 M:      Jiri Kosina <jikos@kernel.org>
8414 M:      Jonathan Cameron <jic23@kernel.org>
8415 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8416 L:      linux-input@vger.kernel.org
8417 L:      linux-iio@vger.kernel.org
8418 S:      Maintained
8419 F:      Documentation/hid/hid-sensor*
8420 F:      drivers/hid/hid-sensor-*
8421 F:      drivers/iio/*/hid-*
8422 F:      include/linux/hid-sensor-*
8423
8424 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8425 M:      Thomas Gleixner <tglx@linutronix.de>
8426 L:      linux-kernel@vger.kernel.org
8427 S:      Maintained
8428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8429 F:      Documentation/timers/
8430 F:      include/linux/clockchips.h
8431 F:      include/linux/hrtimer.h
8432 F:      kernel/time/clockevents.c
8433 F:      kernel/time/hrtimer.c
8434 F:      kernel/time/timer_*.c
8435
8436 HIGH-SPEED SCC DRIVER FOR AX.25
8437 L:      linux-hams@vger.kernel.org
8438 S:      Orphan
8439 F:      drivers/net/hamradio/dmascc.c
8440 F:      drivers/net/hamradio/scc.c
8441
8442 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8443 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8444 S:      Supported
8445 W:      http://www.highpoint-tech.com
8446 F:      Documentation/scsi/hptiop.rst
8447 F:      drivers/scsi/hptiop.c
8448
8449 HIPPI
8450 M:      Jes Sorensen <jes@trained-monkey.org>
8451 L:      linux-hippi@sunsite.dk
8452 S:      Maintained
8453 F:      drivers/net/hippi/
8454 F:      include/linux/hippidevice.h
8455 F:      include/uapi/linux/if_hippi.h
8456 F:      net/802/hippi.c
8457
8458 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8459 M:      Kurt Kanzenbach <kurt@linutronix.de>
8460 L:      netdev@vger.kernel.org
8461 S:      Maintained
8462 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8463 F:      drivers/net/dsa/hirschmann/*
8464 F:      include/linux/platform_data/hirschmann-hellcreek.h
8465 F:      net/dsa/tag_hellcreek.c
8466
8467 HISILICON DMA DRIVER
8468 M:      Zhou Wang <wangzhou1@hisilicon.com>
8469 L:      dmaengine@vger.kernel.org
8470 S:      Maintained
8471 F:      drivers/dma/hisi_dma.c
8472
8473 HISILICON GPIO DRIVER
8474 M:      Luo Jiaxing <luojiaxing@huawei.com>
8475 L:      linux-gpio@vger.kernel.org
8476 S:      Maintained
8477 F:      drivers/gpio/gpio-hisi.c
8478
8479 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8480 M:      Zaibo Xu <xuzaibo@huawei.com>
8481 L:      linux-crypto@vger.kernel.org
8482 S:      Maintained
8483 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8484 F:      drivers/crypto/hisilicon/hpre/hpre.h
8485 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8486 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8487
8488 HISILICON I2C CONTROLLER DRIVER
8489 M:      Yicong Yang <yangyicong@hisilicon.com>
8490 L:      linux-i2c@vger.kernel.org
8491 S:      Maintained
8492 W:      https://www.hisilicon.com
8493 F:      drivers/i2c/busses/i2c-hisi.c
8494
8495 HISILICON LPC BUS DRIVER
8496 M:      john.garry@huawei.com
8497 S:      Maintained
8498 W:      http://www.hisilicon.com
8499 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8500 F:      drivers/bus/hisi_lpc.c
8501
8502 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8503 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8504 M:      Salil Mehta <salil.mehta@huawei.com>
8505 L:      netdev@vger.kernel.org
8506 S:      Maintained
8507 W:      http://www.hisilicon.com
8508 F:      drivers/net/ethernet/hisilicon/hns3/
8509
8510 HISILICON NETWORK SUBSYSTEM DRIVER
8511 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8512 M:      Salil Mehta <salil.mehta@huawei.com>
8513 L:      netdev@vger.kernel.org
8514 S:      Maintained
8515 W:      http://www.hisilicon.com
8516 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8517 F:      drivers/net/ethernet/hisilicon/
8518
8519 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8520 M:      John Stultz <john.stultz@linaro.org>
8521 L:      linux-kernel@vger.kernel.org
8522 S:      Maintained
8523 F:      drivers/misc/hisi_hikey_usb.c
8524 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8525
8526 HISILICON PMU DRIVER
8527 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8528 S:      Supported
8529 W:      http://www.hisilicon.com
8530 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8531 F:      drivers/perf/hisilicon
8532
8533 HISILICON QM AND ZIP Controller DRIVER
8534 M:      Zhou Wang <wangzhou1@hisilicon.com>
8535 L:      linux-crypto@vger.kernel.org
8536 S:      Maintained
8537 F:      Documentation/ABI/testing/debugfs-hisi-zip
8538 F:      drivers/crypto/hisilicon/qm.c
8539 F:      drivers/crypto/hisilicon/qm.h
8540 F:      drivers/crypto/hisilicon/sgl.c
8541 F:      drivers/crypto/hisilicon/zip/
8542
8543 HISILICON ROCE DRIVER
8544 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8545 M:      Weihang Li <liweihang@huawei.com>
8546 L:      linux-rdma@vger.kernel.org
8547 S:      Maintained
8548 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8549 F:      drivers/infiniband/hw/hns/
8550
8551 HISILICON SAS Controller
8552 M:      John Garry <john.garry@huawei.com>
8553 S:      Supported
8554 W:      http://www.hisilicon.com
8555 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8556 F:      drivers/scsi/hisi_sas/
8557
8558 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8559 M:      Zaibo Xu <xuzaibo@huawei.com>
8560 L:      linux-crypto@vger.kernel.org
8561 S:      Maintained
8562 F:      Documentation/ABI/testing/debugfs-hisi-sec
8563 F:      drivers/crypto/hisilicon/sec2/sec.h
8564 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8565 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8566 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8567
8568 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8569 M:      Jay Fang <f.fangjian@huawei.com>
8570 L:      linux-spi@vger.kernel.org
8571 S:      Maintained
8572 W:      http://www.hisilicon.com
8573 F:      drivers/spi/spi-hisi-kunpeng.c
8574
8575 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8576 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8577 L:      linux-kernel@vger.kernel.org
8578 S:      Maintained
8579 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8580 F:      drivers/spmi/hisi-spmi-controller.c
8581
8582 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8583 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8584 L:      linux-kernel@vger.kernel.org
8585 S:      Maintained
8586 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8587 F:      drivers/mfd/hi6421-spmi-pmic.c
8588
8589 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8590 M:      Zaibo Xu <xuzaibo@huawei.com>
8591 S:      Maintained
8592 F:      drivers/crypto/hisilicon/trng/trng.c
8593
8594 HISILICON V3XX SPI NOR FLASH Controller Driver
8595 M:      John Garry <john.garry@huawei.com>
8596 S:      Maintained
8597 W:      http://www.hisilicon.com
8598 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8599
8600 HMM - Heterogeneous Memory Management
8601 M:      Jérôme Glisse <jglisse@redhat.com>
8602 L:      linux-mm@kvack.org
8603 S:      Maintained
8604 F:      Documentation/vm/hmm.rst
8605 F:      include/linux/hmm*
8606 F:      lib/test_hmm*
8607 F:      mm/hmm*
8608 F:      tools/testing/selftests/vm/*hmm*
8609
8610 HOST AP DRIVER
8611 M:      Jouni Malinen <j@w1.fi>
8612 L:      linux-wireless@vger.kernel.org
8613 S:      Obsolete
8614 W:      http://w1.fi/hostap-driver.html
8615 F:      drivers/net/wireless/intersil/hostap/
8616
8617 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8618 L:      platform-driver-x86@vger.kernel.org
8619 S:      Orphan
8620 F:      drivers/platform/x86/tc1100-wmi.c
8621
8622 HPET:   High Precision Event Timers driver
8623 M:      Clemens Ladisch <clemens@ladisch.de>
8624 S:      Maintained
8625 F:      Documentation/timers/hpet.rst
8626 F:      drivers/char/hpet.c
8627 F:      include/linux/hpet.h
8628 F:      include/uapi/linux/hpet.h
8629
8630 HPET:   x86
8631 S:      Orphan
8632 F:      arch/x86/include/asm/hpet.h
8633 F:      arch/x86/kernel/hpet.c
8634
8635 HPFS FILESYSTEM
8636 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8637 S:      Maintained
8638 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8639 F:      fs/hpfs/
8640
8641 HSI SUBSYSTEM
8642 M:      Sebastian Reichel <sre@kernel.org>
8643 S:      Maintained
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8645 F:      Documentation/ABI/testing/sysfs-bus-hsi
8646 F:      Documentation/driver-api/hsi.rst
8647 F:      drivers/hsi/
8648 F:      include/linux/hsi/
8649 F:      include/uapi/linux/hsi/
8650
8651 HSO 3G MODEM DRIVER
8652 L:      linux-usb@vger.kernel.org
8653 S:      Orphan
8654 F:      drivers/net/usb/hso.c
8655
8656 HSR NETWORK PROTOCOL
8657 L:      netdev@vger.kernel.org
8658 S:      Orphan
8659 F:      net/hsr/
8660
8661 HT16K33 LED CONTROLLER DRIVER
8662 M:      Robin van der Gracht <robin@protonic.nl>
8663 S:      Maintained
8664 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8665 F:      drivers/auxdisplay/ht16k33.c
8666
8667 HTCPEN TOUCHSCREEN DRIVER
8668 M:      Pau Oliva Fora <pof@eslack.org>
8669 L:      linux-input@vger.kernel.org
8670 S:      Maintained
8671 F:      drivers/input/touchscreen/htcpen.c
8672
8673 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8674 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8675 L:      linux-iio@vger.kernel.org
8676 S:      Maintained
8677 W:      http://www.st.com/
8678 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8679 F:      drivers/iio/humidity/hts221*
8680
8681 HUAWEI ETHERNET DRIVER
8682 L:      netdev@vger.kernel.org
8683 S:      Orphan
8684 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8685 F:      drivers/net/ethernet/huawei/hinic/
8686
8687 HUGETLB FILESYSTEM
8688 M:      Mike Kravetz <mike.kravetz@oracle.com>
8689 L:      linux-mm@kvack.org
8690 S:      Maintained
8691 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8692 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8693 F:      Documentation/vm/hugetlbfs_reserv.rst
8694 F:      fs/hugetlbfs/
8695 F:      include/linux/hugetlb.h
8696 F:      mm/hugetlb.c
8697
8698 HVA ST MEDIA DRIVER
8699 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8700 L:      linux-media@vger.kernel.org
8701 S:      Supported
8702 W:      https://linuxtv.org
8703 T:      git git://linuxtv.org/media_tree.git
8704 F:      drivers/media/platform/sti/hva
8705
8706 HWPOISON MEMORY FAILURE HANDLING
8707 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8708 L:      linux-mm@kvack.org
8709 S:      Maintained
8710 F:      mm/hwpoison-inject.c
8711 F:      mm/memory-failure.c
8712
8713 HYCON HY46XX TOUCHSCREEN SUPPORT
8714 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8715 L:      linux-input@vger.kernel.org
8716 S:      Maintained
8717 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8718 F:      drivers/input/touchscreen/hycon-hy46xx.c
8719
8720 HYGON PROCESSOR SUPPORT
8721 M:      Pu Wen <puwen@hygon.cn>
8722 L:      linux-kernel@vger.kernel.org
8723 S:      Maintained
8724 F:      arch/x86/kernel/cpu/hygon.c
8725
8726 HYNIX HI556 SENSOR DRIVER
8727 M:      Shawn Tu <shawnx.tu@intel.com>
8728 L:      linux-media@vger.kernel.org
8729 S:      Maintained
8730 T:      git git://linuxtv.org/media_tree.git
8731 F:      drivers/media/i2c/hi556.c
8732
8733 Hyper-V/Azure CORE AND DRIVERS
8734 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8735 M:      Haiyang Zhang <haiyangz@microsoft.com>
8736 M:      Stephen Hemminger <sthemmin@microsoft.com>
8737 M:      Wei Liu <wei.liu@kernel.org>
8738 M:      Dexuan Cui <decui@microsoft.com>
8739 L:      linux-hyperv@vger.kernel.org
8740 S:      Supported
8741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8742 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8743 F:      Documentation/ABI/testing/debugfs-hyperv
8744 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8745 F:      arch/arm64/hyperv
8746 F:      arch/arm64/include/asm/hyperv-tlfs.h
8747 F:      arch/arm64/include/asm/mshyperv.h
8748 F:      arch/x86/hyperv
8749 F:      arch/x86/include/asm/hyperv-tlfs.h
8750 F:      arch/x86/include/asm/mshyperv.h
8751 F:      arch/x86/include/asm/trace/hyperv.h
8752 F:      arch/x86/kernel/cpu/mshyperv.c
8753 F:      drivers/clocksource/hyperv_timer.c
8754 F:      drivers/hid/hid-hyperv.c
8755 F:      drivers/hv/
8756 F:      drivers/input/serio/hyperv-keyboard.c
8757 F:      drivers/iommu/hyperv-iommu.c
8758 F:      drivers/net/ethernet/microsoft/
8759 F:      drivers/net/hyperv/
8760 F:      drivers/pci/controller/pci-hyperv-intf.c
8761 F:      drivers/pci/controller/pci-hyperv.c
8762 F:      drivers/scsi/storvsc_drv.c
8763 F:      drivers/uio/uio_hv_generic.c
8764 F:      drivers/video/fbdev/hyperv_fb.c
8765 F:      include/asm-generic/hyperv-tlfs.h
8766 F:      include/asm-generic/mshyperv.h
8767 F:      include/clocksource/hyperv_timer.h
8768 F:      include/linux/hyperv.h
8769 F:      include/uapi/linux/hyperv.h
8770 F:      net/vmw_vsock/hyperv_transport.c
8771 F:      tools/hv/
8772
8773 HYPERBUS SUPPORT
8774 M:      Vignesh Raghavendra <vigneshr@ti.com>
8775 L:      linux-mtd@lists.infradead.org
8776 S:      Supported
8777 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8778 C:      irc://irc.oftc.net/mtd
8779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8780 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8781 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8782 F:      drivers/mtd/hyperbus/
8783 F:      include/linux/mtd/hyperbus.h
8784
8785 HYPERVISOR VIRTUAL CONSOLE DRIVER
8786 L:      linuxppc-dev@lists.ozlabs.org
8787 S:      Odd Fixes
8788 F:      drivers/tty/hvc/
8789
8790 I2C ACPI SUPPORT
8791 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8792 L:      linux-i2c@vger.kernel.org
8793 L:      linux-acpi@vger.kernel.org
8794 S:      Maintained
8795 F:      drivers/i2c/i2c-core-acpi.c
8796
8797 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8798 M:      Ajay Gupta <ajayg@nvidia.com>
8799 L:      linux-i2c@vger.kernel.org
8800 S:      Maintained
8801 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8802 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8803
8804 I2C MUXES
8805 M:      Peter Rosin <peda@axentia.se>
8806 L:      linux-i2c@vger.kernel.org
8807 S:      Maintained
8808 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8809 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8810 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8811 F:      Documentation/i2c/i2c-topology.rst
8812 F:      Documentation/i2c/muxes/
8813 F:      drivers/i2c/i2c-mux.c
8814 F:      drivers/i2c/muxes/
8815 F:      include/linux/i2c-mux.h
8816
8817 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8818 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8819 L:      linux-i2c@vger.kernel.org
8820 S:      Maintained
8821 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8822 F:      drivers/i2c/busses/i2c-mv64xxx.c
8823
8824 I2C OVER PARALLEL PORT
8825 M:      Jean Delvare <jdelvare@suse.com>
8826 L:      linux-i2c@vger.kernel.org
8827 S:      Maintained
8828 F:      Documentation/i2c/busses/i2c-parport.rst
8829 F:      drivers/i2c/busses/i2c-parport.c
8830
8831 I2C SUBSYSTEM
8832 M:      Wolfram Sang <wsa@kernel.org>
8833 L:      linux-i2c@vger.kernel.org
8834 S:      Maintained
8835 W:      https://i2c.wiki.kernel.org/
8836 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8838 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8839 F:      Documentation/i2c/
8840 F:      drivers/i2c/*
8841 F:      include/linux/i2c-dev.h
8842 F:      include/linux/i2c-smbus.h
8843 F:      include/linux/i2c.h
8844 F:      include/uapi/linux/i2c-*.h
8845 F:      include/uapi/linux/i2c.h
8846
8847 I2C SUBSYSTEM HOST DRIVERS
8848 L:      linux-i2c@vger.kernel.org
8849 S:      Odd Fixes
8850 W:      https://i2c.wiki.kernel.org/
8851 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8853 F:      Documentation/devicetree/bindings/i2c/
8854 F:      drivers/i2c/algos/
8855 F:      drivers/i2c/busses/
8856
8857 I2C-TAOS-EVM DRIVER
8858 M:      Jean Delvare <jdelvare@suse.com>
8859 L:      linux-i2c@vger.kernel.org
8860 S:      Maintained
8861 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8862 F:      drivers/i2c/busses/i2c-taos-evm.c
8863
8864 I2C-TINY-USB DRIVER
8865 M:      Till Harbaum <till@harbaum.org>
8866 L:      linux-i2c@vger.kernel.org
8867 S:      Maintained
8868 W:      http://www.harbaum.org/till/i2c_tiny_usb
8869 F:      drivers/i2c/busses/i2c-tiny-usb.c
8870
8871 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8872 M:      Jean Delvare <jdelvare@suse.com>
8873 L:      linux-i2c@vger.kernel.org
8874 S:      Maintained
8875 F:      Documentation/i2c/busses/i2c-ali1535.rst
8876 F:      Documentation/i2c/busses/i2c-ali1563.rst
8877 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8878 F:      Documentation/i2c/busses/i2c-amd756.rst
8879 F:      Documentation/i2c/busses/i2c-amd8111.rst
8880 F:      Documentation/i2c/busses/i2c-i801.rst
8881 F:      Documentation/i2c/busses/i2c-nforce2.rst
8882 F:      Documentation/i2c/busses/i2c-piix4.rst
8883 F:      Documentation/i2c/busses/i2c-sis5595.rst
8884 F:      Documentation/i2c/busses/i2c-sis630.rst
8885 F:      Documentation/i2c/busses/i2c-sis96x.rst
8886 F:      Documentation/i2c/busses/i2c-via.rst
8887 F:      Documentation/i2c/busses/i2c-viapro.rst
8888 F:      drivers/i2c/busses/i2c-ali1535.c
8889 F:      drivers/i2c/busses/i2c-ali1563.c
8890 F:      drivers/i2c/busses/i2c-ali15x3.c
8891 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8892 F:      drivers/i2c/busses/i2c-amd756.c
8893 F:      drivers/i2c/busses/i2c-amd8111.c
8894 F:      drivers/i2c/busses/i2c-i801.c
8895 F:      drivers/i2c/busses/i2c-isch.c
8896 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8897 F:      drivers/i2c/busses/i2c-nforce2.c
8898 F:      drivers/i2c/busses/i2c-piix4.c
8899 F:      drivers/i2c/busses/i2c-sis5595.c
8900 F:      drivers/i2c/busses/i2c-sis630.c
8901 F:      drivers/i2c/busses/i2c-sis96x.c
8902 F:      drivers/i2c/busses/i2c-via.c
8903 F:      drivers/i2c/busses/i2c-viapro.c
8904
8905 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8906 M:      Hans de Goede <hdegoede@redhat.com>
8907 L:      linux-i2c@vger.kernel.org
8908 S:      Maintained
8909 F:      drivers/i2c/busses/i2c-cht-wc.c
8910
8911 I2C/SMBUS ISMT DRIVER
8912 M:      Seth Heasley <seth.heasley@intel.com>
8913 M:      Neil Horman <nhorman@tuxdriver.com>
8914 L:      linux-i2c@vger.kernel.org
8915 F:      Documentation/i2c/busses/i2c-ismt.rst
8916 F:      drivers/i2c/busses/i2c-ismt.c
8917
8918 I2C/SMBUS STUB DRIVER
8919 M:      Jean Delvare <jdelvare@suse.com>
8920 L:      linux-i2c@vger.kernel.org
8921 S:      Maintained
8922 F:      drivers/i2c/i2c-stub.c
8923
8924 I3C DRIVER FOR CADENCE I3C MASTER IP
8925 M:      Przemysław Gaj <pgaj@cadence.com>
8926 S:      Maintained
8927 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8928 F:      drivers/i3c/master/i3c-master-cdns.c
8929
8930 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8931 M:      Vitor Soares <vitor.soares@synopsys.com>
8932 S:      Maintained
8933 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8934 F:      drivers/i3c/master/dw*
8935
8936 I3C SUBSYSTEM
8937 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8938 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8939 S:      Maintained
8940 C:      irc://chat.freenode.net/linux-i3c
8941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8942 F:      Documentation/ABI/testing/sysfs-bus-i3c
8943 F:      Documentation/devicetree/bindings/i3c/
8944 F:      Documentation/driver-api/i3c
8945 F:      drivers/i3c/
8946 F:      include/linux/i3c/
8947
8948 IA64 (Itanium) PLATFORM
8949 L:      linux-ia64@vger.kernel.org
8950 S:      Orphan
8951 F:      Documentation/ia64/
8952 F:      arch/ia64/
8953
8954 IBM Power 842 compression accelerator
8955 M:      Haren Myneni <haren@us.ibm.com>
8956 S:      Supported
8957 F:      crypto/842.c
8958 F:      drivers/crypto/nx/Kconfig
8959 F:      drivers/crypto/nx/Makefile
8960 F:      drivers/crypto/nx/nx-842*
8961 F:      include/linux/sw842.h
8962 F:      lib/842/
8963
8964 IBM Power in-Nest Crypto Acceleration
8965 M:      Breno Leitão <leitao@debian.org>
8966 M:      Nayna Jain <nayna@linux.ibm.com>
8967 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8968 L:      linux-crypto@vger.kernel.org
8969 S:      Supported
8970 F:      drivers/crypto/nx/Kconfig
8971 F:      drivers/crypto/nx/Makefile
8972 F:      drivers/crypto/nx/nx-aes*
8973 F:      drivers/crypto/nx/nx-sha*
8974 F:      drivers/crypto/nx/nx.*
8975 F:      drivers/crypto/nx/nx_csbcpb.h
8976 F:      drivers/crypto/nx/nx_debugfs.c
8977
8978 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8979 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8980 L:      linux-pci@vger.kernel.org
8981 L:      linuxppc-dev@lists.ozlabs.org
8982 S:      Supported
8983 F:      drivers/pci/hotplug/rpadlpar*
8984
8985 IBM Power Linux RAID adapter
8986 M:      Brian King <brking@us.ibm.com>
8987 S:      Supported
8988 F:      drivers/scsi/ipr.*
8989
8990 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8991 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8992 L:      linux-pci@vger.kernel.org
8993 L:      linuxppc-dev@lists.ozlabs.org
8994 S:      Supported
8995 F:      drivers/pci/hotplug/rpaphp*
8996
8997 IBM Power SRIOV Virtual NIC Device Driver
8998 M:      Dany Madden <drt@linux.ibm.com>
8999 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9000 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9001 L:      netdev@vger.kernel.org
9002 S:      Supported
9003 F:      drivers/net/ethernet/ibm/ibmvnic.*
9004
9005 IBM Power Virtual Accelerator Switchboard
9006 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9007 L:      linuxppc-dev@lists.ozlabs.org
9008 S:      Supported
9009 F:      arch/powerpc/include/asm/vas.h
9010 F:      arch/powerpc/platforms/powernv/copy-paste.h
9011 F:      arch/powerpc/platforms/powernv/vas*
9012
9013 IBM Power Virtual Ethernet Device Driver
9014 M:      Cristobal Forno <cforno12@linux.ibm.com>
9015 L:      netdev@vger.kernel.org
9016 S:      Supported
9017 F:      drivers/net/ethernet/ibm/ibmveth.*
9018
9019 IBM Power Virtual FC Device Drivers
9020 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9021 L:      linux-scsi@vger.kernel.org
9022 S:      Supported
9023 F:      drivers/scsi/ibmvscsi/ibmvfc*
9024
9025 IBM Power Virtual Management Channel Driver
9026 M:      Brad Warrum <bwarrum@linux.ibm.com>
9027 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9028 S:      Supported
9029 F:      drivers/misc/ibmvmc.*
9030
9031 IBM Power Virtual SCSI Device Drivers
9032 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9033 L:      linux-scsi@vger.kernel.org
9034 S:      Supported
9035 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9036 F:      include/scsi/viosrp.h
9037
9038 IBM Power Virtual SCSI Device Target Driver
9039 M:      Michael Cyr <mikecyr@linux.ibm.com>
9040 L:      linux-scsi@vger.kernel.org
9041 L:      target-devel@vger.kernel.org
9042 S:      Supported
9043 F:      drivers/scsi/ibmvscsi_tgt/
9044
9045 IBM Power VMX Cryptographic instructions
9046 M:      Breno Leitão <leitao@debian.org>
9047 M:      Nayna Jain <nayna@linux.ibm.com>
9048 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9049 L:      linux-crypto@vger.kernel.org
9050 S:      Supported
9051 F:      drivers/crypto/vmx/Kconfig
9052 F:      drivers/crypto/vmx/Makefile
9053 F:      drivers/crypto/vmx/aes*
9054 F:      drivers/crypto/vmx/ghash*
9055 F:      drivers/crypto/vmx/ppc-xlate.pl
9056 F:      drivers/crypto/vmx/vmx.c
9057
9058 IBM ServeRAID RAID DRIVER
9059 S:      Orphan
9060 F:      drivers/scsi/ips.*
9061
9062 ICH LPC AND GPIO DRIVER
9063 M:      Peter Tyser <ptyser@xes-inc.com>
9064 S:      Maintained
9065 F:      drivers/gpio/gpio-ich.c
9066 F:      drivers/mfd/lpc_ich.c
9067
9068 ICY I2C DRIVER
9069 M:      Max Staudt <max@enpas.org>
9070 L:      linux-i2c@vger.kernel.org
9071 S:      Maintained
9072 F:      drivers/i2c/busses/i2c-icy.c
9073
9074 IDEAPAD LAPTOP EXTRAS DRIVER
9075 M:      Ike Panhc <ike.pan@canonical.com>
9076 L:      platform-driver-x86@vger.kernel.org
9077 S:      Maintained
9078 W:      http://launchpad.net/ideapad-laptop
9079 F:      drivers/platform/x86/ideapad-laptop.c
9080
9081 IDEAPAD LAPTOP SLIDEBAR DRIVER
9082 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9083 L:      linux-input@vger.kernel.org
9084 S:      Maintained
9085 W:      https://github.com/o2genum/ideapad-slidebar
9086 F:      drivers/input/misc/ideapad_slidebar.c
9087
9088 IDT VersaClock 5 CLOCK DRIVER
9089 M:      Luca Ceresoli <luca@lucaceresoli.net>
9090 S:      Maintained
9091 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9092 F:      drivers/clk/clk-versaclock5.c
9093
9094 IEEE 802.15.4 SUBSYSTEM
9095 M:      Alexander Aring <alex.aring@gmail.com>
9096 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9097 L:      linux-wpan@vger.kernel.org
9098 S:      Maintained
9099 W:      https://linux-wpan.org/
9100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9102 F:      Documentation/networking/ieee802154.rst
9103 F:      drivers/net/ieee802154/
9104 F:      include/linux/ieee802154.h
9105 F:      include/linux/nl802154.h
9106 F:      include/net/af_ieee802154.h
9107 F:      include/net/cfg802154.h
9108 F:      include/net/ieee802154_netdev.h
9109 F:      include/net/mac802154.h
9110 F:      include/net/nl802154.h
9111 F:      net/ieee802154/
9112 F:      net/mac802154/
9113
9114 IFE PROTOCOL
9115 M:      Yotam Gigi <yotam.gi@gmail.com>
9116 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9117 F:      include/net/ife.h
9118 F:      include/uapi/linux/ife.h
9119 F:      net/ife
9120
9121 IGORPLUG-USB IR RECEIVER
9122 M:      Sean Young <sean@mess.org>
9123 L:      linux-media@vger.kernel.org
9124 S:      Maintained
9125 F:      drivers/media/rc/igorplugusb.c
9126
9127 IGUANAWORKS USB IR TRANSCEIVER
9128 M:      Sean Young <sean@mess.org>
9129 L:      linux-media@vger.kernel.org
9130 S:      Maintained
9131 F:      drivers/media/rc/iguanair.c
9132
9133 IIO DIGITAL POTENTIOMETER DAC
9134 M:      Peter Rosin <peda@axentia.se>
9135 L:      linux-iio@vger.kernel.org
9136 S:      Maintained
9137 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9138 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9139 F:      drivers/iio/dac/dpot-dac.c
9140
9141 IIO ENVELOPE DETECTOR
9142 M:      Peter Rosin <peda@axentia.se>
9143 L:      linux-iio@vger.kernel.org
9144 S:      Maintained
9145 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9146 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9147 F:      drivers/iio/adc/envelope-detector.c
9148
9149 IIO MULTIPLEXER
9150 M:      Peter Rosin <peda@axentia.se>
9151 L:      linux-iio@vger.kernel.org
9152 S:      Maintained
9153 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9154 F:      drivers/iio/multiplexer/iio-mux.c
9155
9156 IIO SCMI BASED DRIVER
9157 M:      Jyoti Bhayana <jbhayana@google.com>
9158 L:      linux-iio@vger.kernel.org
9159 S:      Maintained
9160 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9161
9162 IIO SUBSYSTEM AND DRIVERS
9163 M:      Jonathan Cameron <jic23@kernel.org>
9164 R:      Lars-Peter Clausen <lars@metafoo.de>
9165 L:      linux-iio@vger.kernel.org
9166 S:      Maintained
9167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9168 F:      Documentation/ABI/testing/configfs-iio*
9169 F:      Documentation/ABI/testing/sysfs-bus-iio*
9170 F:      Documentation/devicetree/bindings/iio/
9171 F:      drivers/iio/
9172 F:      drivers/staging/iio/
9173 F:      include/linux/iio/
9174 F:      tools/iio/
9175
9176 IIO UNIT CONVERTER
9177 M:      Peter Rosin <peda@axentia.se>
9178 L:      linux-iio@vger.kernel.org
9179 S:      Maintained
9180 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9181 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9182 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9183 F:      drivers/iio/afe/iio-rescale.c
9184
9185 IKANOS/ADI EAGLE ADSL USB DRIVER
9186 M:      Matthieu Castet <castet.matthieu@free.fr>
9187 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9188 S:      Maintained
9189 F:      drivers/usb/atm/ueagle-atm.c
9190
9191 IMGTEC ASCII LCD DRIVER
9192 M:      Paul Burton <paulburton@kernel.org>
9193 S:      Maintained
9194 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9195 F:      drivers/auxdisplay/img-ascii-lcd.c
9196
9197 IMGTEC IR DECODER DRIVER
9198 S:      Orphan
9199 F:      drivers/media/rc/img-ir/
9200
9201 IMON SOUNDGRAPH USB IR RECEIVER
9202 M:      Sean Young <sean@mess.org>
9203 L:      linux-media@vger.kernel.org
9204 S:      Maintained
9205 F:      drivers/media/rc/imon.c
9206 F:      drivers/media/rc/imon_raw.c
9207
9208 IMS TWINTURBO FRAMEBUFFER DRIVER
9209 L:      linux-fbdev@vger.kernel.org
9210 S:      Orphan
9211 F:      drivers/video/fbdev/imsttfb.c
9212
9213 INA209 HARDWARE MONITOR DRIVER
9214 M:      Guenter Roeck <linux@roeck-us.net>
9215 L:      linux-hwmon@vger.kernel.org
9216 S:      Maintained
9217 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9218 F:      Documentation/hwmon/ina209.rst
9219 F:      drivers/hwmon/ina209.c
9220
9221 INA2XX HARDWARE MONITOR DRIVER
9222 M:      Guenter Roeck <linux@roeck-us.net>
9223 L:      linux-hwmon@vger.kernel.org
9224 S:      Maintained
9225 F:      Documentation/hwmon/ina2xx.rst
9226 F:      drivers/hwmon/ina2xx.c
9227 F:      include/linux/platform_data/ina2xx.h
9228
9229 INDUSTRY PACK SUBSYSTEM (IPACK)
9230 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9231 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9232 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9233 L:      industrypack-devel@lists.sourceforge.net
9234 S:      Maintained
9235 W:      http://industrypack.sourceforge.net
9236 F:      drivers/ipack/
9237
9238 INFINEON DPS310 Driver
9239 M:      Eddie James <eajames@linux.ibm.com>
9240 L:      linux-iio@vger.kernel.org
9241 S:      Maintained
9242 F:      drivers/iio/pressure/dps310.c
9243
9244 INFINIBAND SUBSYSTEM
9245 M:      Doug Ledford <dledford@redhat.com>
9246 M:      Jason Gunthorpe <jgg@nvidia.com>
9247 L:      linux-rdma@vger.kernel.org
9248 S:      Supported
9249 W:      https://github.com/linux-rdma/rdma-core
9250 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9252 F:      Documentation/devicetree/bindings/infiniband/
9253 F:      Documentation/infiniband/
9254 F:      drivers/infiniband/
9255 F:      include/rdma/
9256 F:      include/trace/events/ib_mad.h
9257 F:      include/trace/events/ib_umad.h
9258 F:      include/uapi/linux/if_infiniband.h
9259 F:      include/uapi/rdma/
9260 F:      samples/bpf/ibumad_kern.c
9261 F:      samples/bpf/ibumad_user.c
9262
9263 INGENIC JZ4780 NAND DRIVER
9264 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9265 L:      linux-mtd@lists.infradead.org
9266 L:      linux-mips@vger.kernel.org
9267 S:      Maintained
9268 F:      drivers/mtd/nand/raw/ingenic/
9269
9270 INGENIC JZ47xx SoCs
9271 M:      Paul Cercueil <paul@crapouillou.net>
9272 L:      linux-mips@vger.kernel.org
9273 S:      Maintained
9274 F:      arch/mips/boot/dts/ingenic/
9275 F:      arch/mips/generic/board-ingenic.c
9276 F:      arch/mips/include/asm/mach-ingenic/
9277 F:      arch/mips/ingenic/Kconfig
9278 F:      drivers/clk/ingenic/
9279 F:      drivers/dma/dma-jz4780.c
9280 F:      drivers/gpu/drm/ingenic/
9281 F:      drivers/i2c/busses/i2c-jz4780.c
9282 F:      drivers/iio/adc/ingenic-adc.c
9283 F:      drivers/irqchip/irq-ingenic.c
9284 F:      drivers/memory/jz4780-nemc.c
9285 F:      drivers/mmc/host/jz4740_mmc.c
9286 F:      drivers/mtd/nand/raw/ingenic/
9287 F:      drivers/pinctrl/pinctrl-ingenic.c
9288 F:      drivers/power/supply/ingenic-battery.c
9289 F:      drivers/pwm/pwm-jz4740.c
9290 F:      drivers/remoteproc/ingenic_rproc.c
9291 F:      drivers/rtc/rtc-jz4740.c
9292 F:      drivers/tty/serial/8250/8250_ingenic.c
9293 F:      drivers/usb/musb/jz4740.c
9294 F:      drivers/watchdog/jz4740_wdt.c
9295 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9296 F:      include/linux/mfd/ingenic-tcu.h
9297 F:      sound/soc/codecs/jz47*
9298 F:      sound/soc/jz4740/
9299
9300 INOTIFY
9301 M:      Jan Kara <jack@suse.cz>
9302 R:      Amir Goldstein <amir73il@gmail.com>
9303 L:      linux-fsdevel@vger.kernel.org
9304 S:      Maintained
9305 F:      Documentation/filesystems/inotify.rst
9306 F:      fs/notify/inotify/
9307 F:      include/linux/inotify.h
9308 F:      include/uapi/linux/inotify.h
9309
9310 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9311 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9312 L:      linux-input@vger.kernel.org
9313 S:      Maintained
9314 Q:      http://patchwork.kernel.org/project/linux-input/list/
9315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9316 F:      Documentation/devicetree/bindings/input/
9317 F:      Documentation/devicetree/bindings/serio/
9318 F:      Documentation/input/
9319 F:      drivers/input/
9320 F:      include/linux/input.h
9321 F:      include/linux/input/
9322 F:      include/uapi/linux/input-event-codes.h
9323 F:      include/uapi/linux/input.h
9324
9325 INPUT MULTITOUCH (MT) PROTOCOL
9326 M:      Henrik Rydberg <rydberg@bitmath.org>
9327 L:      linux-input@vger.kernel.org
9328 S:      Odd fixes
9329 F:      Documentation/input/multi-touch-protocol.rst
9330 F:      drivers/input/input-mt.c
9331 K:      \b(ABS|SYN)_MT_
9332
9333 INSIDE SECURE CRYPTO DRIVER
9334 M:      Antoine Tenart <atenart@kernel.org>
9335 L:      linux-crypto@vger.kernel.org
9336 S:      Maintained
9337 F:      drivers/crypto/inside-secure/
9338
9339 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9340 M:      Mimi Zohar <zohar@linux.ibm.com>
9341 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9342 L:      linux-integrity@vger.kernel.org
9343 S:      Supported
9344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9345 F:      security/integrity/ima/
9346
9347 INTEL 810/815 FRAMEBUFFER DRIVER
9348 M:      Antonino Daplas <adaplas@gmail.com>
9349 L:      linux-fbdev@vger.kernel.org
9350 S:      Maintained
9351 F:      drivers/video/fbdev/i810/
9352
9353 INTEL ASoC DRIVERS
9354 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9355 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9356 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9357 M:      Jie Yang <yang.jie@linux.intel.com>
9358 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9359 S:      Supported
9360 F:      sound/soc/intel/
9361
9362 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9363 M:      Hans de Goede <hdegoede@redhat.com>
9364 L:      platform-driver-x86@vger.kernel.org
9365 S:      Maintained
9366 F:      drivers/platform/x86/intel/atomisp2/pm.c
9367
9368 INTEL ATOMISP2 LED DRIVER
9369 M:      Hans de Goede <hdegoede@redhat.com>
9370 L:      platform-driver-x86@vger.kernel.org
9371 S:      Maintained
9372 F:      drivers/platform/x86/intel/atomisp2/led.c
9373
9374 INTEL BIOS SAR INT1092 DRIVER
9375 M:      Shravan Sudhakar <s.shravan@intel.com>
9376 M:      Intel Corporation <linuxwwan@intel.com>
9377 L:      platform-driver-x86@vger.kernel.org
9378 S:      Maintained
9379 F:      drivers/platform/x86/intel/int1092/
9380
9381 INTEL BROXTON PMC DRIVER
9382 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9383 M:      Zha Qipeng <qipeng.zha@intel.com>
9384 S:      Maintained
9385 F:      drivers/mfd/intel_pmc_bxt.c
9386 F:      include/linux/mfd/intel_pmc_bxt.h
9387
9388 INTEL C600 SERIES SAS CONTROLLER DRIVER
9389 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9390 L:      linux-scsi@vger.kernel.org
9391 S:      Supported
9392 T:      git git://git.code.sf.net/p/intel-sas/isci
9393 F:      drivers/scsi/isci/
9394
9395 INTEL CPU family model numbers
9396 M:      Tony Luck <tony.luck@intel.com>
9397 M:      x86@kernel.org
9398 L:      linux-kernel@vger.kernel.org
9399 S:      Supported
9400 F:      arch/x86/include/asm/intel-family.h
9401
9402 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9403 M:      Jani Nikula <jani.nikula@linux.intel.com>
9404 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9405 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9406 L:      intel-gfx@lists.freedesktop.org
9407 S:      Supported
9408 W:      https://01.org/linuxgraphics/
9409 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9410 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9411 C:      irc://irc.oftc.net/intel-gfx
9412 T:      git git://anongit.freedesktop.org/drm-intel
9413 F:      Documentation/gpu/i915.rst
9414 F:      drivers/gpu/drm/i915/
9415 F:      include/drm/i915*
9416 F:      include/uapi/drm/i915_drm.h
9417
9418 INTEL ETHERNET DRIVERS
9419 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9420 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9421 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9422 S:      Supported
9423 W:      http://www.intel.com/support/feedback.htm
9424 W:      http://e1000.sourceforge.net/
9425 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9428 F:      Documentation/networking/device_drivers/ethernet/intel/
9429 F:      drivers/net/ethernet/intel/
9430 F:      drivers/net/ethernet/intel/*/
9431 F:      include/linux/avf/virtchnl.h
9432 F:      include/linux/net/intel/iidc.h
9433
9434 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9435 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9436 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9437 L:      linux-rdma@vger.kernel.org
9438 S:      Supported
9439 F:      drivers/infiniband/hw/irdma/
9440 F:      include/uapi/rdma/irdma-abi.h
9441
9442 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9443 M:      Maik Broemme <mbroemme@libmpq.org>
9444 L:      linux-fbdev@vger.kernel.org
9445 S:      Maintained
9446 F:      Documentation/fb/intelfb.rst
9447 F:      drivers/video/fbdev/intelfb/
9448
9449 INTEL GPIO DRIVERS
9450 M:      Andy Shevchenko <andy@kernel.org>
9451 L:      linux-gpio@vger.kernel.org
9452 S:      Maintained
9453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9454 F:      drivers/gpio/gpio-ich.c
9455 F:      drivers/gpio/gpio-merrifield.c
9456 F:      drivers/gpio/gpio-ml-ioh.c
9457 F:      drivers/gpio/gpio-pch.c
9458 F:      drivers/gpio/gpio-sch.c
9459 F:      drivers/gpio/gpio-sodaville.c
9460
9461 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9462 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9463 M:      Zhi Wang <zhi.a.wang@intel.com>
9464 L:      intel-gvt-dev@lists.freedesktop.org
9465 L:      intel-gfx@lists.freedesktop.org
9466 S:      Supported
9467 W:      https://01.org/igvt-g
9468 T:      git https://github.com/intel/gvt-linux.git
9469 F:      drivers/gpu/drm/i915/gvt/
9470
9471 INTEL HID EVENT DRIVER
9472 M:      Alex Hung <alex.hung@canonical.com>
9473 L:      platform-driver-x86@vger.kernel.org
9474 S:      Maintained
9475 F:      drivers/platform/x86/intel/hid.c
9476
9477 INTEL I/OAT DMA DRIVER
9478 M:      Dave Jiang <dave.jiang@intel.com>
9479 R:      Dan Williams <dan.j.williams@intel.com>
9480 L:      dmaengine@vger.kernel.org
9481 S:      Supported
9482 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9483 F:      drivers/dma/ioat*
9484
9485 INTEL IADX DRIVER
9486 M:      Dave Jiang <dave.jiang@intel.com>
9487 L:      dmaengine@vger.kernel.org
9488 S:      Supported
9489 F:      drivers/dma/idxd/*
9490 F:      include/uapi/linux/idxd.h
9491
9492 INTEL IDLE DRIVER
9493 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9494 M:      Len Brown <lenb@kernel.org>
9495 L:      linux-pm@vger.kernel.org
9496 S:      Supported
9497 B:      https://bugzilla.kernel.org
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9499 F:      drivers/idle/intel_idle.c
9500
9501 INTEL INTEGRATED SENSOR HUB DRIVER
9502 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9503 M:      Jiri Kosina <jikos@kernel.org>
9504 L:      linux-input@vger.kernel.org
9505 S:      Maintained
9506 F:      drivers/hid/intel-ish-hid/
9507
9508 INTEL IOMMU (VT-d)
9509 M:      David Woodhouse <dwmw2@infradead.org>
9510 M:      Lu Baolu <baolu.lu@linux.intel.com>
9511 L:      iommu@lists.linux-foundation.org
9512 L:      iommu@lists.linux.dev
9513 S:      Supported
9514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9515 F:      drivers/iommu/intel/
9516 F:      include/linux/intel-iommu.h
9517 F:      include/linux/intel-svm.h
9518
9519 INTEL IOP-ADMA DMA DRIVER
9520 R:      Dan Williams <dan.j.williams@intel.com>
9521 S:      Odd fixes
9522 F:      drivers/dma/iop-adma.c
9523
9524 INTEL IPU3 CSI-2 CIO2 DRIVER
9525 M:      Yong Zhi <yong.zhi@intel.com>
9526 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9527 M:      Bingbu Cao <bingbu.cao@intel.com>
9528 M:      Dan Scally <djrscally@gmail.com>
9529 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9530 L:      linux-media@vger.kernel.org
9531 S:      Maintained
9532 T:      git git://linuxtv.org/media_tree.git
9533 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9534 F:      drivers/media/pci/intel/ipu3/
9535
9536 INTEL IPU3 CSI-2 IMGU DRIVER
9537 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9538 R:      Bingbu Cao <bingbu.cao@intel.com>
9539 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9540 L:      linux-media@vger.kernel.org
9541 S:      Maintained
9542 F:      Documentation/admin-guide/media/ipu3.rst
9543 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9544 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9545 F:      drivers/staging/media/ipu3/
9546
9547 INTEL IXP4XX CRYPTO SUPPORT
9548 M:      Corentin Labbe <clabbe@baylibre.com>
9549 L:      linux-crypto@vger.kernel.org
9550 S:      Maintained
9551 F:      drivers/crypto/ixp4xx_crypto.c
9552
9553 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9554 M:      Krzysztof Halasa <khalasa@piap.pl>
9555 S:      Maintained
9556 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9557 F:      drivers/net/wan/ixp4xx_hss.c
9558 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9559 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9560 F:      include/linux/soc/ixp4xx/npe.h
9561 F:      include/linux/soc/ixp4xx/qmgr.h
9562
9563 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9564 M:      Deepak Saxena <dsaxena@plexity.net>
9565 S:      Maintained
9566 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9567 F:      drivers/char/hw_random/ixp4xx-rng.c
9568
9569 INTEL KEEM BAY DRM DRIVER
9570 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9571 M:      Edmund Dea <edmund.j.dea@intel.com>
9572 S:      Maintained
9573 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9574 F:      drivers/gpu/drm/kmb/
9575
9576 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9577 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9578 S:      Maintained
9579 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9580 F:      drivers/crypto/keembay/Kconfig
9581 F:      drivers/crypto/keembay/Makefile
9582 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9583 F:      drivers/crypto/keembay/ocs-aes.c
9584 F:      drivers/crypto/keembay/ocs-aes.h
9585
9586 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9587 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9588 M:      Declan Murphy <declan.murphy@intel.com>
9589 S:      Maintained
9590 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9591 F:      drivers/crypto/keembay/Kconfig
9592 F:      drivers/crypto/keembay/Makefile
9593 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9594 F:      drivers/crypto/keembay/ocs-hcu.c
9595 F:      drivers/crypto/keembay/ocs-hcu.h
9596
9597 INTEL MANAGEMENT ENGINE (mei)
9598 M:      Tomas Winkler <tomas.winkler@intel.com>
9599 L:      linux-kernel@vger.kernel.org
9600 S:      Supported
9601 F:      Documentation/driver-api/mei/*
9602 F:      drivers/misc/mei/
9603 F:      drivers/watchdog/mei_wdt.c
9604 F:      include/linux/mei_cl_bus.h
9605 F:      include/uapi/linux/mei.h
9606 F:      samples/mei/*
9607
9608 INTEL MAX 10 BMC MFD DRIVER
9609 M:      Xu Yilun <yilun.xu@intel.com>
9610 R:      Tom Rix <trix@redhat.com>
9611 S:      Maintained
9612 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9613 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9614 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9615 F:      drivers/mfd/intel-m10-bmc.c
9616 F:      include/linux/mfd/intel-m10-bmc.h
9617
9618 INTEL MENLOW THERMAL DRIVER
9619 M:      Sujith Thomas <sujith.thomas@intel.com>
9620 L:      linux-pm@vger.kernel.org
9621 S:      Supported
9622 W:      https://01.org/linux-acpi
9623 F:      drivers/thermal/intel/intel_menlow.c
9624
9625 INTEL P-Unit IPC DRIVER
9626 M:      Zha Qipeng <qipeng.zha@intel.com>
9627 L:      platform-driver-x86@vger.kernel.org
9628 S:      Maintained
9629 F:      arch/x86/include/asm/intel_punit_ipc.h
9630 F:      drivers/platform/x86/intel/punit_ipc.c
9631
9632 INTEL PMC CORE DRIVER
9633 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9634 M:      David E Box <david.e.box@intel.com>
9635 L:      platform-driver-x86@vger.kernel.org
9636 S:      Maintained
9637 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9638 F:      drivers/platform/x86/intel/pmc/
9639
9640 INTEL PMIC GPIO DRIVERS
9641 M:      Andy Shevchenko <andy@kernel.org>
9642 S:      Maintained
9643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9644 F:      drivers/gpio/gpio-*cove.c
9645
9646 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9647 M:      Andy Shevchenko <andy@kernel.org>
9648 S:      Maintained
9649 F:      drivers/mfd/intel_soc_pmic*
9650 F:      include/linux/mfd/intel_soc_pmic*
9651
9652 INTEL PMT DRIVER
9653 M:      "David E. Box" <david.e.box@linux.intel.com>
9654 S:      Maintained
9655 F:      drivers/mfd/intel_pmt.c
9656 F:      drivers/platform/x86/intel/pmt/
9657
9658 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9659 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9660 L:      linux-wireless@vger.kernel.org
9661 S:      Maintained
9662 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9663 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9664 F:      drivers/net/wireless/intel/ipw2x00/
9665
9666 INTEL PSTATE DRIVER
9667 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9668 M:      Len Brown <lenb@kernel.org>
9669 L:      linux-pm@vger.kernel.org
9670 S:      Supported
9671 F:      drivers/cpufreq/intel_pstate.c
9672
9673 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9674 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9675 L:      linux-iio@vger.kernel.org
9676 F:      drivers/counter/intel-qep.c
9677
9678 INTEL SCU DRIVERS
9679 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9680 S:      Maintained
9681 F:      arch/x86/include/asm/intel_scu_ipc.h
9682 F:      drivers/platform/x86/intel_scu_*
9683
9684 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9685 M:      Daniel Scally <djrscally@gmail.com>
9686 S:      Maintained
9687 F:      drivers/platform/x86/intel/int3472/
9688
9689 INTEL SPEED SELECT TECHNOLOGY
9690 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9691 L:      platform-driver-x86@vger.kernel.org
9692 S:      Maintained
9693 F:      drivers/platform/x86/intel/speed_select_if/
9694 F:      include/uapi/linux/isst_if.h
9695 F:      tools/power/x86/intel-speed-select/
9696
9697 INTEL STRATIX10 FIRMWARE DRIVERS
9698 M:      Dinh Nguyen <dinguyen@kernel.org>
9699 L:      linux-kernel@vger.kernel.org
9700 S:      Maintained
9701 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9702 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9703 F:      drivers/firmware/stratix10-rsu.c
9704 F:      drivers/firmware/stratix10-svc.c
9705 F:      include/linux/firmware/intel/stratix10-smc.h
9706 F:      include/linux/firmware/intel/stratix10-svc-client.h
9707
9708 INTEL TELEMETRY DRIVER
9709 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9710 M:      "David E. Box" <david.e.box@linux.intel.com>
9711 L:      platform-driver-x86@vger.kernel.org
9712 S:      Maintained
9713 F:      arch/x86/include/asm/intel_telemetry.h
9714 F:      drivers/platform/x86/intel/telemetry/
9715
9716 INTEL UNCORE FREQUENCY CONTROL
9717 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9718 L:      platform-driver-x86@vger.kernel.org
9719 S:      Maintained
9720 F:      drivers/platform/x86/intel/uncore-frequency.c
9721
9722 INTEL VIRTUAL BUTTON DRIVER
9723 M:      AceLan Kao <acelan.kao@canonical.com>
9724 L:      platform-driver-x86@vger.kernel.org
9725 S:      Maintained
9726 F:      drivers/platform/x86/intel/vbtn.c
9727
9728 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9729 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9730 L:      linux-wireless@vger.kernel.org
9731 S:      Supported
9732 F:      drivers/net/wireless/intel/iwlegacy/
9733
9734 INTEL WIRELESS WIFI LINK (iwlwifi)
9735 M:      Luca Coelho <luciano.coelho@intel.com>
9736 L:      linux-wireless@vger.kernel.org
9737 S:      Supported
9738 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9740 F:      drivers/net/wireless/intel/iwlwifi/
9741
9742 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9743 M:      Jithu Joseph <jithu.joseph@intel.com>
9744 R:      Maurice Ma <maurice.ma@intel.com>
9745 S:      Maintained
9746 W:      https://slimbootloader.github.io/security/firmware-update.html
9747 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9748
9749 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9750 L:      Dell.Client.Kernel@dell.com
9751 S:      Maintained
9752 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9753
9754 INTEL WWAN IOSM DRIVER
9755 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9756 M:      Intel Corporation <linuxwwan@intel.com>
9757 L:      netdev@vger.kernel.org
9758 S:      Maintained
9759 F:      drivers/net/wwan/iosm/
9760
9761 INTEL(R) TRACE HUB
9762 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9763 S:      Supported
9764 F:      Documentation/trace/intel_th.rst
9765 F:      drivers/hwtracing/intel_th/
9766 F:      include/linux/intel_th.h
9767
9768 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9769 M:      Ning Sun <ning.sun@intel.com>
9770 L:      tboot-devel@lists.sourceforge.net
9771 S:      Supported
9772 W:      http://tboot.sourceforge.net
9773 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9774 F:      Documentation/x86/intel_txt.rst
9775 F:      arch/x86/kernel/tboot.c
9776 F:      include/linux/tboot.h
9777
9778 INTEL SGX
9779 M:      Jarkko Sakkinen <jarkko@kernel.org>
9780 R:      Dave Hansen <dave.hansen@linux.intel.com>
9781 L:      linux-sgx@vger.kernel.org
9782 S:      Supported
9783 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9785 F:      Documentation/x86/sgx.rst
9786 F:      arch/x86/entry/vdso/vsgx.S
9787 F:      arch/x86/include/asm/sgx.h
9788 F:      arch/x86/include/uapi/asm/sgx.h
9789 F:      arch/x86/kernel/cpu/sgx/*
9790 F:      tools/testing/selftests/sgx/*
9791 K:      \bSGX_
9792
9793 INTERCONNECT API
9794 M:      Georgi Djakov <djakov@kernel.org>
9795 L:      linux-pm@vger.kernel.org
9796 S:      Maintained
9797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9798 F:      Documentation/devicetree/bindings/interconnect/
9799 F:      Documentation/driver-api/interconnect.rst
9800 F:      drivers/interconnect/
9801 F:      include/dt-bindings/interconnect/
9802 F:      include/linux/interconnect-provider.h
9803 F:      include/linux/interconnect.h
9804
9805 INTERRUPT COUNTER DRIVER
9806 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9807 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9808 L:      linux-iio@vger.kernel.org
9809 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9810 F:      drivers/counter/interrupt-cnt.c
9811
9812 INVENSENSE ICM-426xx IMU DRIVER
9813 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9814 L:      linux-iio@vger.kernel.org
9815 S:      Maintained
9816 W:      https://invensense.tdk.com/
9817 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9818 F:      drivers/iio/imu/inv_icm42600/
9819
9820 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9821 M:      Linus Walleij <linus.walleij@linaro.org>
9822 L:      linux-iio@vger.kernel.org
9823 S:      Maintained
9824 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9825 F:      drivers/iio/gyro/mpu3050*
9826
9827 IOC3 ETHERNET DRIVER
9828 M:      Ralf Baechle <ralf@linux-mips.org>
9829 L:      linux-mips@vger.kernel.org
9830 S:      Maintained
9831 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9832
9833 IOMAP FILESYSTEM LIBRARY
9834 M:      Christoph Hellwig <hch@infradead.org>
9835 M:      Darrick J. Wong <djwong@kernel.org>
9836 M:      linux-xfs@vger.kernel.org
9837 M:      linux-fsdevel@vger.kernel.org
9838 L:      linux-xfs@vger.kernel.org
9839 L:      linux-fsdevel@vger.kernel.org
9840 S:      Supported
9841 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9842 F:      fs/iomap/
9843 F:      include/linux/iomap.h
9844
9845 IOMMU DRIVERS
9846 M:      Joerg Roedel <joro@8bytes.org>
9847 M:      Will Deacon <will@kernel.org>
9848 L:      iommu@lists.linux-foundation.org
9849 L:      iommu@lists.linux.dev
9850 S:      Maintained
9851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9852 F:      Documentation/devicetree/bindings/iommu/
9853 F:      Documentation/userspace-api/iommu.rst
9854 F:      drivers/iommu/
9855 F:      include/linux/iommu.h
9856 F:      include/linux/iova.h
9857 F:      include/linux/of_iommu.h
9858 F:      include/uapi/linux/iommu.h
9859
9860 IO_URING
9861 M:      Jens Axboe <axboe@kernel.dk>
9862 R:      Pavel Begunkov <asml.silence@gmail.com>
9863 L:      io-uring@vger.kernel.org
9864 S:      Maintained
9865 T:      git git://git.kernel.dk/linux-block
9866 T:      git git://git.kernel.dk/liburing
9867 F:      fs/io-wq.c
9868 F:      fs/io-wq.h
9869 F:      fs/io_uring.c
9870 F:      include/linux/io_uring.h
9871 F:      include/uapi/linux/io_uring.h
9872 F:      tools/io_uring/
9873
9874 IPMI SUBSYSTEM
9875 M:      Corey Minyard <minyard@acm.org>
9876 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9877 S:      Supported
9878 W:      http://openipmi.sourceforge.net/
9879 F:      Documentation/driver-api/ipmi.rst
9880 F:      Documentation/devicetree/bindings/ipmi/
9881 F:      drivers/char/ipmi/
9882 F:      include/linux/ipmi*
9883 F:      include/uapi/linux/ipmi*
9884
9885 IPS SCSI RAID DRIVER
9886 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9887 L:      linux-scsi@vger.kernel.org
9888 S:      Maintained
9889 W:      http://www.adaptec.com/
9890 F:      drivers/scsi/ips*
9891
9892 IPVS
9893 M:      Simon Horman <horms@verge.net.au>
9894 M:      Julian Anastasov <ja@ssi.bg>
9895 L:      netdev@vger.kernel.org
9896 L:      lvs-devel@vger.kernel.org
9897 S:      Maintained
9898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9900 F:      Documentation/networking/ipvs-sysctl.rst
9901 F:      include/net/ip_vs.h
9902 F:      include/uapi/linux/ip_vs.h
9903 F:      net/netfilter/ipvs/
9904
9905 IPWIRELESS DRIVER
9906 M:      Jiri Kosina <jikos@kernel.org>
9907 M:      David Sterba <dsterba@suse.com>
9908 S:      Odd Fixes
9909 F:      drivers/tty/ipwireless/
9910
9911 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9912 M:      Marc Zyngier <maz@kernel.org>
9913 S:      Maintained
9914 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9915 F:      Documentation/core-api/irq/irq-domain.rst
9916 F:      include/linux/irqdomain.h
9917 F:      kernel/irq/irqdomain.c
9918 F:      kernel/irq/msi.c
9919
9920 IRQ SUBSYSTEM
9921 M:      Thomas Gleixner <tglx@linutronix.de>
9922 L:      linux-kernel@vger.kernel.org
9923 S:      Maintained
9924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9925 F:      kernel/irq/
9926
9927 IRQCHIP DRIVERS
9928 M:      Thomas Gleixner <tglx@linutronix.de>
9929 M:      Marc Zyngier <maz@kernel.org>
9930 L:      linux-kernel@vger.kernel.org
9931 S:      Maintained
9932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9933 F:      Documentation/devicetree/bindings/interrupt-controller/
9934 F:      drivers/irqchip/
9935
9936 ISA
9937 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9938 S:      Maintained
9939 F:      Documentation/driver-api/isa.rst
9940 F:      drivers/base/isa.c
9941 F:      include/linux/isa.h
9942
9943 ISA RADIO MODULE
9944 M:      Hans Verkuil <hverkuil@xs4all.nl>
9945 L:      linux-media@vger.kernel.org
9946 S:      Maintained
9947 W:      https://linuxtv.org
9948 T:      git git://linuxtv.org/media_tree.git
9949 F:      drivers/media/radio/radio-isa*
9950
9951 ISAPNP
9952 M:      Jaroslav Kysela <perex@perex.cz>
9953 S:      Maintained
9954 F:      Documentation/driver-api/isapnp.rst
9955 F:      drivers/pnp/isapnp/
9956 F:      include/linux/isapnp.h
9957
9958 ISCSI
9959 M:      Lee Duncan <lduncan@suse.com>
9960 M:      Chris Leech <cleech@redhat.com>
9961 L:      open-iscsi@googlegroups.com
9962 L:      linux-scsi@vger.kernel.org
9963 S:      Maintained
9964 W:      www.open-iscsi.com
9965 F:      drivers/scsi/*iscsi*
9966 F:      include/scsi/*iscsi*
9967
9968 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9969 M:      Peter Jones <pjones@redhat.com>
9970 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9971 S:      Maintained
9972 F:      drivers/firmware/iscsi_ibft*
9973
9974 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9975 M:      Sagi Grimberg <sagi@grimberg.me>
9976 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9977 L:      linux-rdma@vger.kernel.org
9978 S:      Supported
9979 W:      http://www.openfabrics.org
9980 W:      www.open-iscsi.org
9981 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9982 F:      drivers/infiniband/ulp/iser/
9983
9984 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9985 M:      Sagi Grimberg <sagi@grimberg.me>
9986 L:      linux-rdma@vger.kernel.org
9987 L:      target-devel@vger.kernel.org
9988 S:      Supported
9989 W:      http://www.linux-iscsi.org
9990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9991 F:      drivers/infiniband/ulp/isert
9992
9993 ISDN/CMTP OVER BLUETOOTH
9994 M:      Karsten Keil <isdn@linux-pingi.de>
9995 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9996 L:      netdev@vger.kernel.org
9997 S:      Odd Fixes
9998 W:      http://www.isdn4linux.de
9999 F:      Documentation/isdn/
10000 F:      drivers/isdn/capi/
10001 F:      include/linux/isdn/
10002 F:      include/uapi/linux/isdn/
10003 F:      net/bluetooth/cmtp/
10004
10005 ISDN/mISDN SUBSYSTEM
10006 M:      Karsten Keil <isdn@linux-pingi.de>
10007 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10008 L:      netdev@vger.kernel.org
10009 S:      Maintained
10010 W:      http://www.isdn4linux.de
10011 F:      drivers/isdn/Kconfig
10012 F:      drivers/isdn/Makefile
10013 F:      drivers/isdn/hardware/
10014 F:      drivers/isdn/mISDN/
10015
10016 IT87 HARDWARE MONITORING DRIVER
10017 M:      Jean Delvare <jdelvare@suse.com>
10018 L:      linux-hwmon@vger.kernel.org
10019 S:      Maintained
10020 F:      Documentation/hwmon/it87.rst
10021 F:      drivers/hwmon/it87.c
10022
10023 IT913X MEDIA DRIVER
10024 M:      Antti Palosaari <crope@iki.fi>
10025 L:      linux-media@vger.kernel.org
10026 S:      Maintained
10027 W:      https://linuxtv.org
10028 W:      http://palosaari.fi/linux/
10029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10030 T:      git git://linuxtv.org/anttip/media_tree.git
10031 F:      drivers/media/tuners/it913x*
10032
10033 ITE IT66121 HDMI BRIDGE DRIVER
10034 M:      Phong LE <ple@baylibre.com>
10035 M:      Neil Armstrong <narmstrong@baylibre.com>
10036 S:      Maintained
10037 T:      git git://anongit.freedesktop.org/drm/drm-misc
10038 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10039 F:      drivers/gpu/drm/bridge/ite-it66121.c
10040
10041 IVTV VIDEO4LINUX DRIVER
10042 M:      Andy Walls <awalls@md.metrocast.net>
10043 L:      linux-media@vger.kernel.org
10044 S:      Maintained
10045 W:      https://linuxtv.org
10046 T:      git git://linuxtv.org/media_tree.git
10047 F:      Documentation/admin-guide/media/ivtv*
10048 F:      drivers/media/pci/ivtv/
10049 F:      include/uapi/linux/ivtv*
10050
10051 IX2505V MEDIA DRIVER
10052 M:      Malcolm Priestley <tvboxspy@gmail.com>
10053 L:      linux-media@vger.kernel.org
10054 S:      Maintained
10055 W:      https://linuxtv.org
10056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10057 F:      drivers/media/dvb-frontends/ix2505v*
10058
10059 JAILHOUSE HYPERVISOR INTERFACE
10060 M:      Jan Kiszka <jan.kiszka@siemens.com>
10061 L:      jailhouse-dev@googlegroups.com
10062 S:      Maintained
10063 F:      arch/x86/include/asm/jailhouse_para.h
10064 F:      arch/x86/kernel/jailhouse.c
10065
10066 JC42.4 TEMPERATURE SENSOR DRIVER
10067 M:      Guenter Roeck <linux@roeck-us.net>
10068 L:      linux-hwmon@vger.kernel.org
10069 S:      Maintained
10070 F:      Documentation/hwmon/jc42.rst
10071 F:      drivers/hwmon/jc42.c
10072
10073 JFS FILESYSTEM
10074 M:      Dave Kleikamp <shaggy@kernel.org>
10075 L:      jfs-discussion@lists.sourceforge.net
10076 S:      Maintained
10077 W:      http://jfs.sourceforge.net/
10078 T:      git git://github.com/kleikamp/linux-shaggy.git
10079 F:      Documentation/admin-guide/jfs.rst
10080 F:      fs/jfs/
10081
10082 JME NETWORK DRIVER
10083 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10084 L:      netdev@vger.kernel.org
10085 S:      Maintained
10086 F:      drivers/net/ethernet/jme.*
10087
10088 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10089 M:      David Woodhouse <dwmw2@infradead.org>
10090 M:      Richard Weinberger <richard@nod.at>
10091 L:      linux-mtd@lists.infradead.org
10092 S:      Odd Fixes
10093 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10094 T:      git git://git.infradead.org/ubifs-2.6.git
10095 F:      fs/jffs2/
10096 F:      include/uapi/linux/jffs2.h
10097
10098 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10099 M:      "Theodore Ts'o" <tytso@mit.edu>
10100 M:      Jan Kara <jack@suse.com>
10101 L:      linux-ext4@vger.kernel.org
10102 S:      Maintained
10103 F:      fs/jbd2/
10104 F:      include/linux/jbd2.h
10105
10106 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10107 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10108 L:      linux-media@vger.kernel.org
10109 S:      Maintained
10110 F:      drivers/media/platform/rcar_jpu.c
10111
10112 JSM Neo PCI based serial card
10113 L:      linux-serial@vger.kernel.org
10114 S:      Orphan
10115 F:      drivers/tty/serial/jsm/
10116
10117 K10TEMP HARDWARE MONITORING DRIVER
10118 M:      Clemens Ladisch <clemens@ladisch.de>
10119 L:      linux-hwmon@vger.kernel.org
10120 S:      Maintained
10121 F:      Documentation/hwmon/k10temp.rst
10122 F:      drivers/hwmon/k10temp.c
10123
10124 K8TEMP HARDWARE MONITORING DRIVER
10125 M:      Rudolf Marek <r.marek@assembler.cz>
10126 L:      linux-hwmon@vger.kernel.org
10127 S:      Maintained
10128 F:      Documentation/hwmon/k8temp.rst
10129 F:      drivers/hwmon/k8temp.c
10130
10131 KASAN
10132 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10133 R:      Alexander Potapenko <glider@google.com>
10134 R:      Andrey Konovalov <andreyknvl@gmail.com>
10135 R:      Dmitry Vyukov <dvyukov@google.com>
10136 L:      kasan-dev@googlegroups.com
10137 S:      Maintained
10138 F:      Documentation/dev-tools/kasan.rst
10139 F:      arch/*/include/asm/*kasan.h
10140 F:      arch/*/mm/kasan_init*
10141 F:      include/linux/kasan*.h
10142 F:      lib/Kconfig.kasan
10143 F:      lib/test_kasan*.c
10144 F:      mm/kasan/
10145 F:      scripts/Makefile.kasan
10146
10147 KCONFIG
10148 M:      Masahiro Yamada <masahiroy@kernel.org>
10149 L:      linux-kbuild@vger.kernel.org
10150 S:      Maintained
10151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10152 F:      Documentation/kbuild/kconfig*
10153 F:      scripts/Kconfig.include
10154 F:      scripts/kconfig/
10155
10156 KCOV
10157 R:      Dmitry Vyukov <dvyukov@google.com>
10158 R:      Andrey Konovalov <andreyknvl@gmail.com>
10159 L:      kasan-dev@googlegroups.com
10160 S:      Maintained
10161 F:      Documentation/dev-tools/kcov.rst
10162 F:      include/linux/kcov.h
10163 F:      include/uapi/linux/kcov.h
10164 F:      kernel/kcov.c
10165 F:      scripts/Makefile.kcov
10166
10167 KCSAN
10168 M:      Marco Elver <elver@google.com>
10169 R:      Dmitry Vyukov <dvyukov@google.com>
10170 L:      kasan-dev@googlegroups.com
10171 S:      Maintained
10172 F:      Documentation/dev-tools/kcsan.rst
10173 F:      include/linux/kcsan*.h
10174 F:      kernel/kcsan/
10175 F:      lib/Kconfig.kcsan
10176 F:      scripts/Makefile.kcsan
10177
10178 KDUMP
10179 M:      Dave Young <dyoung@redhat.com>
10180 M:      Baoquan He <bhe@redhat.com>
10181 R:      Vivek Goyal <vgoyal@redhat.com>
10182 L:      kexec@lists.infradead.org
10183 S:      Maintained
10184 W:      http://lse.sourceforge.net/kdump/
10185 F:      Documentation/admin-guide/kdump/
10186 F:      fs/proc/vmcore.c
10187 F:      include/linux/crash_core.h
10188 F:      include/linux/crash_dump.h
10189 F:      include/uapi/linux/vmcore.h
10190 F:      kernel/crash_*.c
10191
10192 KEENE FM RADIO TRANSMITTER DRIVER
10193 M:      Hans Verkuil <hverkuil@xs4all.nl>
10194 L:      linux-media@vger.kernel.org
10195 S:      Maintained
10196 W:      https://linuxtv.org
10197 T:      git git://linuxtv.org/media_tree.git
10198 F:      drivers/media/radio/radio-keene*
10199
10200 KERNEL AUTOMOUNTER
10201 M:      Ian Kent <raven@themaw.net>
10202 L:      autofs@vger.kernel.org
10203 S:      Maintained
10204 F:      fs/autofs/
10205
10206 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10207 M:      Masahiro Yamada <masahiroy@kernel.org>
10208 M:      Michal Marek <michal.lkml@markovi.net>
10209 R:      Nick Desaulniers <ndesaulniers@google.com>
10210 L:      linux-kbuild@vger.kernel.org
10211 S:      Maintained
10212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10213 F:      Documentation/kbuild/
10214 F:      Makefile
10215 F:      scripts/*vmlinux*
10216 F:      scripts/Kbuild*
10217 F:      scripts/Makefile*
10218 F:      scripts/basic/
10219 F:      scripts/dummy-tools/
10220 F:      scripts/mk*
10221 F:      scripts/mod/
10222 F:      scripts/package/
10223
10224 KERNEL JANITORS
10225 L:      kernel-janitors@vger.kernel.org
10226 S:      Odd Fixes
10227 W:      http://kernelnewbies.org/KernelJanitors
10228
10229 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10230 M:      "J. Bruce Fields" <bfields@fieldses.org>
10231 M:      Chuck Lever <chuck.lever@oracle.com>
10232 L:      linux-nfs@vger.kernel.org
10233 S:      Supported
10234 W:      http://nfs.sourceforge.net/
10235 T:      git git://linux-nfs.org/~bfields/linux.git
10236 F:      fs/lockd/
10237 F:      fs/nfs_common/
10238 F:      fs/nfsd/
10239 F:      include/linux/lockd/
10240 F:      include/linux/sunrpc/
10241 F:      include/uapi/linux/nfsd/
10242 F:      include/uapi/linux/sunrpc/
10243 F:      net/sunrpc/
10244 F:      Documentation/filesystems/nfs/
10245
10246 KERNEL REGRESSIONS
10247 M:      Thorsten Leemhuis <linux@leemhuis.info>
10248 L:      regressions@lists.linux.dev
10249 S:      Supported
10250
10251 KERNEL SELFTEST FRAMEWORK
10252 M:      Shuah Khan <shuah@kernel.org>
10253 M:      Shuah Khan <skhan@linuxfoundation.org>
10254 L:      linux-kselftest@vger.kernel.org
10255 S:      Maintained
10256 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10258 F:      Documentation/dev-tools/kselftest*
10259 F:      tools/testing/selftests/
10260
10261 KERNEL SMB3 SERVER (KSMBD)
10262 M:      Namjae Jeon <linkinjeon@kernel.org>
10263 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10264 M:      Steve French <sfrench@samba.org>
10265 M:      Hyunchul Lee <hyc.lee@gmail.com>
10266 L:      linux-cifs@vger.kernel.org
10267 S:      Maintained
10268 T:      git git://git.samba.org/ksmbd.git
10269 F:      fs/ksmbd/
10270 F:      fs/smbfs_common/
10271
10272 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10273 M:      Brendan Higgins <brendanhiggins@google.com>
10274 L:      linux-kselftest@vger.kernel.org
10275 L:      kunit-dev@googlegroups.com
10276 S:      Maintained
10277 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10278 F:      Documentation/dev-tools/kunit/
10279 F:      include/kunit/
10280 F:      lib/kunit/
10281 F:      tools/testing/kunit/
10282
10283 KERNEL USERMODE HELPER
10284 M:      Luis Chamberlain <mcgrof@kernel.org>
10285 L:      linux-kernel@vger.kernel.org
10286 S:      Maintained
10287 F:      include/linux/umh.h
10288 F:      kernel/umh.c
10289
10290 KERNEL VIRTUAL MACHINE (KVM)
10291 M:      Paolo Bonzini <pbonzini@redhat.com>
10292 L:      kvm@vger.kernel.org
10293 S:      Supported
10294 W:      http://www.linux-kvm.org
10295 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10296 F:      Documentation/virt/kvm/
10297 F:      include/asm-generic/kvm*
10298 F:      include/kvm/iodev.h
10299 F:      include/linux/kvm*
10300 F:      include/trace/events/kvm.h
10301 F:      include/uapi/asm-generic/kvm*
10302 F:      include/uapi/linux/kvm*
10303 F:      tools/kvm/
10304 F:      tools/testing/selftests/kvm/
10305 F:      virt/kvm/*
10306
10307 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10308 M:      Marc Zyngier <maz@kernel.org>
10309 R:      James Morse <james.morse@arm.com>
10310 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10311 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10313 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10314 S:      Maintained
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10316 F:      arch/arm64/include/asm/kvm*
10317 F:      arch/arm64/include/uapi/asm/kvm*
10318 F:      arch/arm64/kvm/
10319 F:      include/kvm/arm_*
10320 F:      tools/testing/selftests/kvm/*/aarch64/
10321 F:      tools/testing/selftests/kvm/aarch64/
10322
10323 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10324 M:      Huacai Chen <chenhuacai@kernel.org>
10325 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10326 L:      linux-mips@vger.kernel.org
10327 L:      kvm@vger.kernel.org
10328 S:      Maintained
10329 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10330 F:      arch/mips/include/asm/kvm*
10331 F:      arch/mips/include/uapi/asm/kvm*
10332 F:      arch/mips/kvm/
10333
10334 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10335 M:      Paul Mackerras <paulus@ozlabs.org>
10336 L:      kvm-ppc@vger.kernel.org
10337 S:      Supported
10338 W:      http://www.linux-kvm.org/
10339 T:      git git://github.com/agraf/linux-2.6.git
10340 F:      arch/powerpc/include/asm/kvm*
10341 F:      arch/powerpc/include/uapi/asm/kvm*
10342 F:      arch/powerpc/kernel/kvm*
10343 F:      arch/powerpc/kvm/
10344
10345 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10346 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10347 M:      Janosch Frank <frankja@linux.ibm.com>
10348 R:      David Hildenbrand <david@redhat.com>
10349 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10350 L:      kvm@vger.kernel.org
10351 S:      Supported
10352 W:      http://www.ibm.com/developerworks/linux/linux390/
10353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10354 F:      Documentation/virt/kvm/s390*
10355 F:      arch/s390/include/asm/gmap.h
10356 F:      arch/s390/include/asm/kvm*
10357 F:      arch/s390/include/uapi/asm/kvm*
10358 F:      arch/s390/kernel/uv.c
10359 F:      arch/s390/kvm/
10360 F:      arch/s390/mm/gmap.c
10361 F:      tools/testing/selftests/kvm/*/s390x/
10362 F:      tools/testing/selftests/kvm/s390x/
10363
10364 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10365 M:      Paolo Bonzini <pbonzini@redhat.com>
10366 R:      Sean Christopherson <seanjc@google.com>
10367 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10368 R:      Wanpeng Li <wanpengli@tencent.com>
10369 R:      Jim Mattson <jmattson@google.com>
10370 R:      Joerg Roedel <joro@8bytes.org>
10371 L:      kvm@vger.kernel.org
10372 S:      Supported
10373 W:      http://www.linux-kvm.org
10374 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10375 F:      arch/x86/include/asm/kvm*
10376 F:      arch/x86/include/asm/pvclock-abi.h
10377 F:      arch/x86/include/asm/svm.h
10378 F:      arch/x86/include/asm/vmx*.h
10379 F:      arch/x86/include/uapi/asm/kvm*
10380 F:      arch/x86/include/uapi/asm/svm.h
10381 F:      arch/x86/include/uapi/asm/vmx.h
10382 F:      arch/x86/kernel/kvm.c
10383 F:      arch/x86/kernel/kvmclock.c
10384 F:      arch/x86/kvm/
10385 F:      arch/x86/kvm/*/
10386
10387 KERNFS
10388 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10389 M:      Tejun Heo <tj@kernel.org>
10390 S:      Supported
10391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10392 F:      fs/kernfs/
10393 F:      include/linux/kernfs.h
10394
10395 KEXEC
10396 M:      Eric Biederman <ebiederm@xmission.com>
10397 L:      kexec@lists.infradead.org
10398 S:      Maintained
10399 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10400 F:      include/linux/kexec.h
10401 F:      include/uapi/linux/kexec.h
10402 F:      kernel/kexec*
10403
10404 KEYS-ENCRYPTED
10405 M:      Mimi Zohar <zohar@linux.ibm.com>
10406 L:      linux-integrity@vger.kernel.org
10407 L:      keyrings@vger.kernel.org
10408 S:      Supported
10409 F:      Documentation/security/keys/trusted-encrypted.rst
10410 F:      include/keys/encrypted-type.h
10411 F:      security/keys/encrypted-keys/
10412
10413 KEYS-TRUSTED
10414 M:      James Bottomley <jejb@linux.ibm.com>
10415 M:      Jarkko Sakkinen <jarkko@kernel.org>
10416 M:      Mimi Zohar <zohar@linux.ibm.com>
10417 L:      linux-integrity@vger.kernel.org
10418 L:      keyrings@vger.kernel.org
10419 S:      Supported
10420 F:      Documentation/security/keys/trusted-encrypted.rst
10421 F:      include/keys/trusted-type.h
10422 F:      include/keys/trusted_tpm.h
10423 F:      security/keys/trusted-keys/
10424
10425 KEYS-TRUSTED-TEE
10426 M:      Sumit Garg <sumit.garg@linaro.org>
10427 L:      linux-integrity@vger.kernel.org
10428 L:      keyrings@vger.kernel.org
10429 S:      Supported
10430 F:      include/keys/trusted_tee.h
10431 F:      security/keys/trusted-keys/trusted_tee.c
10432
10433 KEYS/KEYRINGS
10434 M:      David Howells <dhowells@redhat.com>
10435 M:      Jarkko Sakkinen <jarkko@kernel.org>
10436 L:      keyrings@vger.kernel.org
10437 S:      Maintained
10438 F:      Documentation/security/keys/core.rst
10439 F:      include/keys/
10440 F:      include/linux/key-type.h
10441 F:      include/linux/key.h
10442 F:      include/linux/keyctl.h
10443 F:      include/uapi/linux/keyctl.h
10444 F:      security/keys/
10445
10446 KFENCE
10447 M:      Alexander Potapenko <glider@google.com>
10448 M:      Marco Elver <elver@google.com>
10449 R:      Dmitry Vyukov <dvyukov@google.com>
10450 L:      kasan-dev@googlegroups.com
10451 S:      Maintained
10452 F:      Documentation/dev-tools/kfence.rst
10453 F:      arch/*/include/asm/kfence.h
10454 F:      include/linux/kfence.h
10455 F:      lib/Kconfig.kfence
10456 F:      mm/kfence/
10457
10458 KFIFO
10459 M:      Stefani Seibold <stefani@seibold.net>
10460 S:      Maintained
10461 F:      include/linux/kfifo.h
10462 F:      lib/kfifo.c
10463 F:      samples/kfifo/
10464
10465 KGDB / KDB /debug_core
10466 M:      Jason Wessel <jason.wessel@windriver.com>
10467 M:      Daniel Thompson <daniel.thompson@linaro.org>
10468 R:      Douglas Anderson <dianders@chromium.org>
10469 L:      kgdb-bugreport@lists.sourceforge.net
10470 S:      Maintained
10471 W:      http://kgdb.wiki.kernel.org/
10472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10473 F:      Documentation/dev-tools/kgdb.rst
10474 F:      drivers/misc/kgdbts.c
10475 F:      drivers/tty/serial/kgdboc.c
10476 F:      include/linux/kdb.h
10477 F:      include/linux/kgdb.h
10478 F:      kernel/debug/
10479
10480 KHADAS MCU MFD DRIVER
10481 M:      Neil Armstrong <narmstrong@baylibre.com>
10482 L:      linux-amlogic@lists.infradead.org
10483 S:      Maintained
10484 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10485 F:      drivers/mfd/khadas-mcu.c
10486 F:      include/linux/mfd/khadas-mcu.h
10487 F:      drivers/thermal/khadas_mcu_fan.c
10488
10489 KMEMLEAK
10490 M:      Catalin Marinas <catalin.marinas@arm.com>
10491 S:      Maintained
10492 F:      Documentation/dev-tools/kmemleak.rst
10493 F:      include/linux/kmemleak.h
10494 F:      mm/kmemleak.c
10495 F:      samples/kmemleak/kmemleak-test.c
10496
10497 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10498 M:      Luis Chamberlain <mcgrof@kernel.org>
10499 L:      linux-kernel@vger.kernel.org
10500 S:      Maintained
10501 F:      include/linux/kmod.h
10502 F:      kernel/kmod.c
10503 F:      lib/test_kmod.c
10504 F:      tools/testing/selftests/kmod/
10505
10506 KPROBES
10507 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10508 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10509 M:      "David S. Miller" <davem@davemloft.net>
10510 M:      Masami Hiramatsu <mhiramat@kernel.org>
10511 S:      Maintained
10512 F:      Documentation/trace/kprobes.rst
10513 F:      include/asm-generic/kprobes.h
10514 F:      include/linux/kprobes.h
10515 F:      kernel/kprobes.c
10516
10517 KS0108 LCD CONTROLLER DRIVER
10518 M:      Miguel Ojeda <ojeda@kernel.org>
10519 S:      Maintained
10520 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10521 F:      drivers/auxdisplay/ks0108.c
10522 F:      include/linux/ks0108.h
10523
10524 KTD253 BACKLIGHT DRIVER
10525 M:      Linus Walleij <linus.walleij@linaro.org>
10526 S:      Maintained
10527 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10528 F:      drivers/video/backlight/ktd253-backlight.c
10529
10530 KTEST
10531 M:      Steven Rostedt <rostedt@goodmis.org>
10532 M:      John Hawley <warthog9@eaglescrag.net>
10533 S:      Maintained
10534 F:      tools/testing/ktest
10535
10536 L3MDEV
10537 M:      David Ahern <dsahern@kernel.org>
10538 L:      netdev@vger.kernel.org
10539 S:      Maintained
10540 F:      include/net/l3mdev.h
10541 F:      net/l3mdev
10542
10543 L7 BPF FRAMEWORK
10544 M:      John Fastabend <john.fastabend@gmail.com>
10545 M:      Daniel Borkmann <daniel@iogearbox.net>
10546 M:      Jakub Sitnicki <jakub@cloudflare.com>
10547 M:      Lorenz Bauer <lmb@cloudflare.com>
10548 L:      netdev@vger.kernel.org
10549 L:      bpf@vger.kernel.org
10550 S:      Maintained
10551 F:      include/linux/skmsg.h
10552 F:      net/core/skmsg.c
10553 F:      net/core/sock_map.c
10554 F:      net/ipv4/tcp_bpf.c
10555 F:      net/ipv4/udp_bpf.c
10556 F:      net/unix/unix_bpf.c
10557
10558 LANDLOCK SECURITY MODULE
10559 M:      Mickaël Salaün <mic@digikod.net>
10560 L:      linux-security-module@vger.kernel.org
10561 S:      Supported
10562 W:      https://landlock.io
10563 T:      git https://github.com/landlock-lsm/linux.git
10564 F:      Documentation/security/landlock.rst
10565 F:      Documentation/userspace-api/landlock.rst
10566 F:      include/uapi/linux/landlock.h
10567 F:      samples/landlock/
10568 F:      security/landlock/
10569 F:      tools/testing/selftests/landlock/
10570 K:      landlock
10571 K:      LANDLOCK
10572
10573 LANTIQ / INTEL Ethernet drivers
10574 M:      Hauke Mehrtens <hauke@hauke-m.de>
10575 L:      netdev@vger.kernel.org
10576 S:      Maintained
10577 F:      drivers/net/dsa/lantiq_gswip.c
10578 F:      drivers/net/dsa/lantiq_pce.h
10579 F:      drivers/net/ethernet/lantiq_xrx200.c
10580 F:      net/dsa/tag_gswip.c
10581
10582 LANTIQ MIPS ARCHITECTURE
10583 M:      John Crispin <john@phrozen.org>
10584 L:      linux-mips@vger.kernel.org
10585 S:      Maintained
10586 F:      arch/mips/lantiq
10587 F:      drivers/soc/lantiq
10588
10589 LASI 53c700 driver for PARISC
10590 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10591 L:      linux-scsi@vger.kernel.org
10592 S:      Maintained
10593 F:      Documentation/scsi/53c700.rst
10594 F:      drivers/scsi/53c700*
10595
10596 LEAKING_ADDRESSES
10597 M:      Tobin C. Harding <me@tobin.cc>
10598 M:      Tycho Andersen <tycho@tycho.pizza>
10599 L:      linux-hardening@vger.kernel.org
10600 S:      Maintained
10601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10602 F:      scripts/leaking_addresses.pl
10603
10604 LED SUBSYSTEM
10605 M:      Pavel Machek <pavel@ucw.cz>
10606 L:      linux-leds@vger.kernel.org
10607 S:      Maintained
10608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10609 F:      Documentation/devicetree/bindings/leds/
10610 F:      drivers/leds/
10611 F:      include/linux/leds.h
10612
10613 LEGACY EEPROM DRIVER
10614 M:      Jean Delvare <jdelvare@suse.com>
10615 S:      Maintained
10616 F:      Documentation/misc-devices/eeprom.rst
10617 F:      drivers/misc/eeprom/eeprom.c
10618
10619 LEGO MINDSTORMS EV3
10620 R:      David Lechner <david@lechnology.com>
10621 S:      Maintained
10622 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10623 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10624 F:      drivers/power/supply/lego_ev3_battery.c
10625
10626 LEGO USB Tower driver
10627 M:      Juergen Stuber <starblue@users.sourceforge.net>
10628 L:      legousb-devel@lists.sourceforge.net
10629 S:      Maintained
10630 W:      http://legousb.sourceforge.net/
10631 F:      drivers/usb/misc/legousbtower.c
10632
10633 LG LAPTOP EXTRAS
10634 M:      Matan Ziv-Av <matan@svgalib.org>
10635 L:      platform-driver-x86@vger.kernel.org
10636 S:      Maintained
10637 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10638 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10639 F:      drivers/platform/x86/lg-laptop.c
10640
10641 LG2160 MEDIA DRIVER
10642 M:      Michael Krufky <mkrufky@linuxtv.org>
10643 L:      linux-media@vger.kernel.org
10644 S:      Maintained
10645 W:      https://linuxtv.org
10646 W:      http://github.com/mkrufky
10647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10648 T:      git git://linuxtv.org/mkrufky/tuners.git
10649 F:      drivers/media/dvb-frontends/lg2160.*
10650
10651 LGDT3305 MEDIA DRIVER
10652 M:      Michael Krufky <mkrufky@linuxtv.org>
10653 L:      linux-media@vger.kernel.org
10654 S:      Maintained
10655 W:      https://linuxtv.org
10656 W:      http://github.com/mkrufky
10657 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10658 T:      git git://linuxtv.org/mkrufky/tuners.git
10659 F:      drivers/media/dvb-frontends/lgdt3305.*
10660
10661 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10662 M:      Viresh Kumar <vireshk@kernel.org>
10663 L:      linux-ide@vger.kernel.org
10664 S:      Maintained
10665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10666 F:      drivers/ata/pata_arasan_cf.c
10667 F:      include/linux/pata_arasan_cf_data.h
10668
10669 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10670 M:      Linus Walleij <linus.walleij@linaro.org>
10671 L:      linux-ide@vger.kernel.org
10672 S:      Maintained
10673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10674 F:      drivers/ata/pata_ftide010.c
10675 F:      drivers/ata/sata_gemini.c
10676 F:      drivers/ata/sata_gemini.h
10677
10678 LIBATA SATA AHCI PLATFORM devices support
10679 M:      Hans de Goede <hdegoede@redhat.com>
10680 M:      Jens Axboe <axboe@kernel.dk>
10681 L:      linux-ide@vger.kernel.org
10682 S:      Maintained
10683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10684 F:      drivers/ata/ahci_platform.c
10685 F:      drivers/ata/libahci_platform.c
10686 F:      include/linux/ahci_platform.h
10687
10688 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10689 M:      Mikael Pettersson <mikpelinux@gmail.com>
10690 L:      linux-ide@vger.kernel.org
10691 S:      Maintained
10692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10693 F:      drivers/ata/sata_promise.*
10694
10695 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10696 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10697 L:      linux-ide@vger.kernel.org
10698 S:      Maintained
10699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10700 F:      Documentation/devicetree/bindings/ata/
10701 F:      drivers/ata/
10702 F:      include/linux/ata.h
10703 F:      include/linux/libata.h
10704
10705 LIBLOCKDEP
10706 M:      Sasha Levin <alexander.levin@microsoft.com>
10707 S:      Maintained
10708 F:      tools/lib/lockdep/
10709
10710 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10711 M:      Dan Williams <dan.j.williams@intel.com>
10712 M:      Vishal Verma <vishal.l.verma@intel.com>
10713 M:      Dave Jiang <dave.jiang@intel.com>
10714 L:      nvdimm@lists.linux.dev
10715 S:      Supported
10716 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10717 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10718 F:      drivers/nvdimm/blk.c
10719 F:      drivers/nvdimm/region_devs.c
10720
10721 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10722 M:      Vishal Verma <vishal.l.verma@intel.com>
10723 M:      Dan Williams <dan.j.williams@intel.com>
10724 M:      Dave Jiang <dave.jiang@intel.com>
10725 L:      nvdimm@lists.linux.dev
10726 S:      Supported
10727 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10728 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10729 F:      drivers/nvdimm/btt*
10730
10731 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10732 M:      Dan Williams <dan.j.williams@intel.com>
10733 M:      Vishal Verma <vishal.l.verma@intel.com>
10734 M:      Dave Jiang <dave.jiang@intel.com>
10735 L:      nvdimm@lists.linux.dev
10736 S:      Supported
10737 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10738 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10739 F:      drivers/nvdimm/pmem*
10740
10741 LIBNVDIMM: DEVICETREE BINDINGS
10742 M:      Oliver O'Halloran <oohall@gmail.com>
10743 L:      nvdimm@lists.linux.dev
10744 S:      Supported
10745 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10746 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10747 F:      drivers/nvdimm/of_pmem.c
10748
10749 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10750 M:      Dan Williams <dan.j.williams@intel.com>
10751 M:      Vishal Verma <vishal.l.verma@intel.com>
10752 M:      Dave Jiang <dave.jiang@intel.com>
10753 M:      Ira Weiny <ira.weiny@intel.com>
10754 L:      nvdimm@lists.linux.dev
10755 S:      Supported
10756 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10757 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10759 F:      drivers/acpi/nfit/*
10760 F:      drivers/nvdimm/*
10761 F:      include/linux/libnvdimm.h
10762 F:      include/linux/nd.h
10763 F:      include/uapi/linux/ndctl.h
10764 F:      tools/testing/nvdimm/
10765
10766 LICENSES and SPDX stuff
10767 M:      Thomas Gleixner <tglx@linutronix.de>
10768 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10769 L:      linux-spdx@vger.kernel.org
10770 S:      Maintained
10771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10772 F:      COPYING
10773 F:      Documentation/process/license-rules.rst
10774 F:      LICENSES/
10775 F:      scripts/spdxcheck-test.sh
10776 F:      scripts/spdxcheck.py
10777
10778 LINEAR RANGES HELPERS
10779 M:      Mark Brown <broonie@kernel.org>
10780 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10781 F:      lib/linear_ranges.c
10782 F:      lib/test_linear_ranges.c
10783 F:      include/linux/linear_range.h
10784
10785 LINUX FOR POWER MACINTOSH
10786 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10787 L:      linuxppc-dev@lists.ozlabs.org
10788 S:      Odd Fixes
10789 F:      arch/powerpc/platforms/powermac/
10790 F:      drivers/macintosh/
10791
10792 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10793 M:      Michael Ellerman <mpe@ellerman.id.au>
10794 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10795 R:      Paul Mackerras <paulus@samba.org>
10796 L:      linuxppc-dev@lists.ozlabs.org
10797 S:      Supported
10798 W:      https://github.com/linuxppc/wiki/wiki
10799 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10801 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10802 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10803 F:      Documentation/devicetree/bindings/powerpc/
10804 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10805 F:      Documentation/powerpc/
10806 F:      arch/powerpc/
10807 F:      drivers/*/*/*pasemi*
10808 F:      drivers/*/*pasemi*
10809 F:      drivers/char/tpm/tpm_ibmvtpm*
10810 F:      drivers/crypto/nx/
10811 F:      drivers/crypto/vmx/
10812 F:      drivers/i2c/busses/i2c-opal.c
10813 F:      drivers/net/ethernet/ibm/ibmveth.*
10814 F:      drivers/net/ethernet/ibm/ibmvnic.*
10815 F:      drivers/pci/hotplug/pnv_php.c
10816 F:      drivers/pci/hotplug/rpa*
10817 F:      drivers/rtc/rtc-opal.c
10818 F:      drivers/scsi/ibmvscsi/
10819 F:      drivers/tty/hvc/hvc_opal.c
10820 F:      drivers/watchdog/wdrtas.c
10821 F:      tools/testing/selftests/powerpc
10822 N:      /pmac
10823 N:      powermac
10824 N:      powernv
10825 N:      [^a-z0-9]ps3
10826 N:      pseries
10827
10828 LINUX FOR POWERPC EMBEDDED MPC5XXX
10829 M:      Anatolij Gustschin <agust@denx.de>
10830 L:      linuxppc-dev@lists.ozlabs.org
10831 S:      Odd Fixes
10832 F:      arch/powerpc/platforms/512x/
10833 F:      arch/powerpc/platforms/52xx/
10834
10835 LINUX FOR POWERPC EMBEDDED PPC4XX
10836 L:      linuxppc-dev@lists.ozlabs.org
10837 S:      Orphan
10838 F:      arch/powerpc/platforms/40x/
10839 F:      arch/powerpc/platforms/44x/
10840
10841 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10842 M:      Scott Wood <oss@buserror.net>
10843 L:      linuxppc-dev@lists.ozlabs.org
10844 S:      Odd fixes
10845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10846 F:      Documentation/devicetree/bindings/powerpc/fsl/
10847 F:      arch/powerpc/platforms/83xx/
10848 F:      arch/powerpc/platforms/85xx/
10849
10850 LINUX FOR POWERPC EMBEDDED PPC8XX
10851 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10852 L:      linuxppc-dev@lists.ozlabs.org
10853 S:      Maintained
10854 F:      arch/powerpc/platforms/8xx/
10855
10856 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10857 M:      Kees Cook <keescook@chromium.org>
10858 S:      Maintained
10859 F:      drivers/misc/lkdtm/*
10860 F:      tools/testing/selftests/lkdtm/*
10861
10862 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10863 M:      Alan Stern <stern@rowland.harvard.edu>
10864 M:      Andrea Parri <parri.andrea@gmail.com>
10865 M:      Will Deacon <will@kernel.org>
10866 M:      Peter Zijlstra <peterz@infradead.org>
10867 M:      Boqun Feng <boqun.feng@gmail.com>
10868 M:      Nicholas Piggin <npiggin@gmail.com>
10869 M:      David Howells <dhowells@redhat.com>
10870 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10871 M:      Luc Maranget <luc.maranget@inria.fr>
10872 M:      "Paul E. McKenney" <paulmck@kernel.org>
10873 R:      Akira Yokosawa <akiyks@gmail.com>
10874 R:      Daniel Lustig <dlustig@nvidia.com>
10875 R:      Joel Fernandes <joel@joelfernandes.org>
10876 L:      linux-kernel@vger.kernel.org
10877 L:      linux-arch@vger.kernel.org
10878 S:      Supported
10879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10880 F:      Documentation/atomic_bitops.txt
10881 F:      Documentation/atomic_t.txt
10882 F:      Documentation/core-api/refcount-vs-atomic.rst
10883 F:      Documentation/litmus-tests/
10884 F:      Documentation/memory-barriers.txt
10885 F:      tools/memory-model/
10886
10887 LIS3LV02D ACCELEROMETER DRIVER
10888 M:      Eric Piel <eric.piel@tremplin-utc.net>
10889 S:      Maintained
10890 F:      Documentation/misc-devices/lis3lv02d.rst
10891 F:      drivers/misc/lis3lv02d/
10892 F:      drivers/platform/x86/hp_accel.c
10893
10894 LIST KUNIT TEST
10895 M:      David Gow <davidgow@google.com>
10896 L:      linux-kselftest@vger.kernel.org
10897 L:      kunit-dev@googlegroups.com
10898 S:      Maintained
10899 F:      lib/list-test.c
10900
10901 LITEX PLATFORM
10902 M:      Karol Gugala <kgugala@antmicro.com>
10903 M:      Mateusz Holenko <mholenko@antmicro.com>
10904 S:      Maintained
10905 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10906 F:      arch/openrisc/boot/dts/or1klitex.dts
10907 F:      drivers/soc/litex/litex_soc_ctrl.c
10908 F:      drivers/tty/serial/liteuart.c
10909 F:      include/linux/litex.h
10910
10911 LIVE PATCHING
10912 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10913 M:      Jiri Kosina <jikos@kernel.org>
10914 M:      Miroslav Benes <mbenes@suse.cz>
10915 M:      Petr Mladek <pmladek@suse.com>
10916 R:      Joe Lawrence <joe.lawrence@redhat.com>
10917 L:      live-patching@vger.kernel.org
10918 S:      Maintained
10919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10920 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10921 F:      Documentation/livepatch/
10922 F:      arch/powerpc/include/asm/livepatch.h
10923 F:      arch/s390/include/asm/livepatch.h
10924 F:      arch/x86/include/asm/livepatch.h
10925 F:      include/linux/livepatch.h
10926 F:      kernel/livepatch/
10927 F:      lib/livepatch/
10928 F:      samples/livepatch/
10929 F:      tools/testing/selftests/livepatch/
10930
10931 LLC (802.2)
10932 L:      netdev@vger.kernel.org
10933 S:      Odd fixes
10934 F:      include/linux/llc.h
10935 F:      include/net/llc*
10936 F:      include/uapi/linux/llc.h
10937 F:      net/llc/
10938
10939 LM73 HARDWARE MONITOR DRIVER
10940 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10941 L:      linux-hwmon@vger.kernel.org
10942 S:      Maintained
10943 F:      drivers/hwmon/lm73.c
10944
10945 LM78 HARDWARE MONITOR DRIVER
10946 M:      Jean Delvare <jdelvare@suse.com>
10947 L:      linux-hwmon@vger.kernel.org
10948 S:      Maintained
10949 F:      Documentation/hwmon/lm78.rst
10950 F:      drivers/hwmon/lm78.c
10951
10952 LM83 HARDWARE MONITOR DRIVER
10953 M:      Jean Delvare <jdelvare@suse.com>
10954 L:      linux-hwmon@vger.kernel.org
10955 S:      Maintained
10956 F:      Documentation/hwmon/lm83.rst
10957 F:      drivers/hwmon/lm83.c
10958
10959 LM90 HARDWARE MONITOR DRIVER
10960 M:      Jean Delvare <jdelvare@suse.com>
10961 L:      linux-hwmon@vger.kernel.org
10962 S:      Maintained
10963 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10964 F:      Documentation/hwmon/lm90.rst
10965 F:      drivers/hwmon/lm90.c
10966 F:      include/dt-bindings/thermal/lm90.h
10967
10968 LM95234 HARDWARE MONITOR DRIVER
10969 M:      Guenter Roeck <linux@roeck-us.net>
10970 L:      linux-hwmon@vger.kernel.org
10971 S:      Maintained
10972 F:      Documentation/hwmon/lm95234.rst
10973 F:      drivers/hwmon/lm95234.c
10974
10975 LME2510 MEDIA DRIVER
10976 M:      Malcolm Priestley <tvboxspy@gmail.com>
10977 L:      linux-media@vger.kernel.org
10978 S:      Maintained
10979 W:      https://linuxtv.org
10980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10981 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10982
10983 LOADPIN SECURITY MODULE
10984 M:      Kees Cook <keescook@chromium.org>
10985 S:      Supported
10986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10987 F:      Documentation/admin-guide/LSM/LoadPin.rst
10988 F:      security/loadpin/
10989
10990 LOCKING PRIMITIVES
10991 M:      Peter Zijlstra <peterz@infradead.org>
10992 M:      Ingo Molnar <mingo@redhat.com>
10993 M:      Will Deacon <will@kernel.org>
10994 R:      Waiman Long <longman@redhat.com>
10995 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10996 L:      linux-kernel@vger.kernel.org
10997 S:      Maintained
10998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10999 F:      Documentation/locking/
11000 F:      arch/*/include/asm/spinlock*.h
11001 F:      include/linux/lockdep.h
11002 F:      include/linux/mutex*.h
11003 F:      include/linux/rwlock*.h
11004 F:      include/linux/rwsem*.h
11005 F:      include/linux/seqlock.h
11006 F:      include/linux/spinlock*.h
11007 F:      kernel/locking/
11008 F:      lib/locking*.[ch]
11009 X:      kernel/locking/locktorture.c
11010
11011 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11012 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11013 L:      linux-ntfs-dev@lists.sourceforge.net
11014 S:      Maintained
11015 W:      http://www.linux-ntfs.org/content/view/19/37/
11016 F:      Documentation/admin-guide/ldm.rst
11017 F:      block/partitions/ldm.*
11018
11019 LOGITECH HID GAMING KEYBOARDS
11020 M:      Hans de Goede <hdegoede@redhat.com>
11021 L:      linux-input@vger.kernel.org
11022 S:      Maintained
11023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11024 F:      drivers/hid/hid-lg-g15.c
11025
11026 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11027 M:      Adrien Grassein <adrien.grassein@gmail.com>
11028 S:      Maintained
11029 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11030 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11031
11032 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11033 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11034 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11035 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11036 L:      MPT-FusionLinux.pdl@broadcom.com
11037 L:      linux-scsi@vger.kernel.org
11038 S:      Supported
11039 W:      http://www.avagotech.com/support/
11040 F:      drivers/message/fusion/
11041 F:      drivers/scsi/mpt3sas/
11042
11043 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11044 M:      Matthew Wilcox <willy@infradead.org>
11045 L:      linux-scsi@vger.kernel.org
11046 S:      Maintained
11047 F:      drivers/scsi/sym53c8xx_2/
11048
11049 LTC1660 DAC DRIVER
11050 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11051 L:      linux-iio@vger.kernel.org
11052 S:      Maintained
11053 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11054 F:      drivers/iio/dac/ltc1660.c
11055
11056 LTC2947 HARDWARE MONITOR DRIVER
11057 M:      Nuno Sá <nuno.sa@analog.com>
11058 L:      linux-hwmon@vger.kernel.org
11059 S:      Supported
11060 W:      http://ez.analog.com/community/linux-device-drivers
11061 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11062 F:      drivers/hwmon/ltc2947-core.c
11063 F:      drivers/hwmon/ltc2947-i2c.c
11064 F:      drivers/hwmon/ltc2947-spi.c
11065 F:      drivers/hwmon/ltc2947.h
11066
11067 LTC2983 IIO TEMPERATURE DRIVER
11068 M:      Nuno Sá <nuno.sa@analog.com>
11069 L:      linux-iio@vger.kernel.org
11070 S:      Supported
11071 W:      http://ez.analog.com/community/linux-device-drivers
11072 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11073 F:      drivers/iio/temperature/ltc2983.c
11074
11075 LTC4261 HARDWARE MONITOR DRIVER
11076 M:      Guenter Roeck <linux@roeck-us.net>
11077 L:      linux-hwmon@vger.kernel.org
11078 S:      Maintained
11079 F:      Documentation/hwmon/ltc4261.rst
11080 F:      drivers/hwmon/ltc4261.c
11081
11082 LTC4306 I2C MULTIPLEXER DRIVER
11083 M:      Michael Hennerich <michael.hennerich@analog.com>
11084 L:      linux-i2c@vger.kernel.org
11085 S:      Supported
11086 W:      http://ez.analog.com/community/linux-device-drivers
11087 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11088 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11089
11090 LTP (Linux Test Project)
11091 M:      Mike Frysinger <vapier@gentoo.org>
11092 M:      Cyril Hrubis <chrubis@suse.cz>
11093 M:      Wanlong Gao <wanlong.gao@gmail.com>
11094 M:      Jan Stancek <jstancek@redhat.com>
11095 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11096 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11097 L:      ltp@lists.linux.it (subscribers-only)
11098 S:      Maintained
11099 W:      http://linux-test-project.github.io/
11100 T:      git git://github.com/linux-test-project/ltp.git
11101
11102 LYNX PCS MODULE
11103 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11104 L:      netdev@vger.kernel.org
11105 S:      Supported
11106 F:      drivers/net/pcs/pcs-lynx.c
11107 F:      include/linux/pcs-lynx.h
11108
11109 M68K ARCHITECTURE
11110 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11111 L:      linux-m68k@lists.linux-m68k.org
11112 S:      Maintained
11113 W:      http://www.linux-m68k.org/
11114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11115 F:      arch/m68k/
11116 F:      drivers/zorro/
11117
11118 M68K ON APPLE MACINTOSH
11119 M:      Joshua Thompson <funaho@jurai.org>
11120 L:      linux-m68k@lists.linux-m68k.org
11121 S:      Maintained
11122 W:      http://www.mac.linux-m68k.org/
11123 F:      arch/m68k/mac/
11124 F:      drivers/macintosh/adb-iop.c
11125 F:      drivers/macintosh/via-macii.c
11126
11127 M68K ON HP9000/300
11128 M:      Philip Blundell <philb@gnu.org>
11129 S:      Maintained
11130 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11131 F:      arch/m68k/hp300/
11132
11133 M88DS3103 MEDIA DRIVER
11134 M:      Antti Palosaari <crope@iki.fi>
11135 L:      linux-media@vger.kernel.org
11136 S:      Maintained
11137 W:      https://linuxtv.org
11138 W:      http://palosaari.fi/linux/
11139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11140 T:      git git://linuxtv.org/anttip/media_tree.git
11141 F:      drivers/media/dvb-frontends/m88ds3103*
11142
11143 M88RS2000 MEDIA DRIVER
11144 M:      Malcolm Priestley <tvboxspy@gmail.com>
11145 L:      linux-media@vger.kernel.org
11146 S:      Maintained
11147 W:      https://linuxtv.org
11148 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11149 F:      drivers/media/dvb-frontends/m88rs2000*
11150
11151 MA901 MASTERKIT USB FM RADIO DRIVER
11152 M:      Alexey Klimov <klimov.linux@gmail.com>
11153 L:      linux-media@vger.kernel.org
11154 S:      Maintained
11155 T:      git git://linuxtv.org/media_tree.git
11156 F:      drivers/media/radio/radio-ma901.c
11157
11158 MAC80211
11159 M:      Johannes Berg <johannes@sipsolutions.net>
11160 L:      linux-wireless@vger.kernel.org
11161 S:      Maintained
11162 W:      https://wireless.wiki.kernel.org/
11163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11165 F:      Documentation/networking/mac80211-injection.rst
11166 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11167 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11168 F:      include/net/mac80211.h
11169 F:      net/mac80211/
11170
11171 MAILBOX API
11172 M:      Jassi Brar <jassisinghbrar@gmail.com>
11173 L:      linux-kernel@vger.kernel.org
11174 S:      Maintained
11175 F:      drivers/mailbox/
11176 F:      include/linux/mailbox_client.h
11177 F:      include/linux/mailbox_controller.h
11178 F:      include/dt-bindings/mailbox/
11179 F:      Documentation/devicetree/bindings/mailbox/
11180
11181 MAILBOX ARM MHUv2
11182 M:      Viresh Kumar <viresh.kumar@linaro.org>
11183 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11184 L:      linux-kernel@vger.kernel.org
11185 S:      Maintained
11186 F:      drivers/mailbox/arm_mhuv2.c
11187 F:      include/linux/mailbox/arm_mhuv2_message.h
11188 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11189
11190 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11191 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11192 M:      Matt Johnston <matt@codeconstruct.com.au>
11193 L:      netdev@vger.kernel.org
11194 S:      Maintained
11195 F:      Documentation/networking/mctp.rst
11196 F:      drivers/net/mctp/
11197 F:      include/net/mctp.h
11198 F:      include/net/mctpdevice.h
11199 F:      include/net/netns/mctp.h
11200 F:      net/mctp/
11201
11202 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11203 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11204 L:      linux-man@vger.kernel.org
11205 S:      Maintained
11206 W:      http://www.kernel.org/doc/man-pages
11207
11208 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11209 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11210 L:      linux-mips@vger.kernel.org
11211 S:      Maintained
11212 F:      arch/mips/boot/dts/img/pistachio*
11213
11214 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11215 M:      Andrew Lunn <andrew@lunn.ch>
11216 M:      Vivien Didelot <vivien.didelot@gmail.com>
11217 L:      netdev@vger.kernel.org
11218 S:      Maintained
11219 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11220 F:      Documentation/networking/devlink/mv88e6xxx.rst
11221 F:      drivers/net/dsa/mv88e6xxx/
11222 F:      include/linux/dsa/mv88e6xxx.h
11223 F:      include/linux/platform_data/mv88e6xxx.h
11224
11225 MARVELL ARMADA 3700 PHY DRIVERS
11226 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11227 S:      Maintained
11228 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11229 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11230 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11231 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11232
11233 MARVELL ARMADA DRM SUPPORT
11234 M:      Russell King <linux@armlinux.org.uk>
11235 S:      Maintained
11236 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11237 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11238 F:      Documentation/devicetree/bindings/display/armada/
11239 F:      drivers/gpu/drm/armada/
11240 F:      include/uapi/drm/armada_drm.h
11241
11242 MARVELL CRYPTO DRIVER
11243 M:      Boris Brezillon <bbrezillon@kernel.org>
11244 M:      Arnaud Ebalard <arno@natisbad.org>
11245 M:      Srujana Challa <schalla@marvell.com>
11246 L:      linux-crypto@vger.kernel.org
11247 S:      Maintained
11248 F:      drivers/crypto/marvell/
11249 F:      include/linux/soc/marvell/octeontx2/
11250
11251 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11252 M:      Mirko Lindner <mlindner@marvell.com>
11253 M:      Stephen Hemminger <stephen@networkplumber.org>
11254 L:      netdev@vger.kernel.org
11255 S:      Maintained
11256 F:      drivers/net/ethernet/marvell/sk*
11257
11258 MARVELL LIBERTAS WIRELESS DRIVER
11259 L:      libertas-dev@lists.infradead.org
11260 S:      Orphan
11261 F:      drivers/net/wireless/marvell/libertas/
11262
11263 MARVELL MACCHIATOBIN SUPPORT
11264 M:      Russell King <linux@armlinux.org.uk>
11265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11266 S:      Maintained
11267 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11268
11269 MARVELL MV643XX ETHERNET DRIVER
11270 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11271 L:      netdev@vger.kernel.org
11272 S:      Maintained
11273 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11274 F:      include/linux/mv643xx.h
11275
11276 MARVELL MV88X3310 PHY DRIVER
11277 M:      Russell King <linux@armlinux.org.uk>
11278 M:      Marek Behún <kabel@kernel.org>
11279 L:      netdev@vger.kernel.org
11280 S:      Maintained
11281 F:      drivers/net/phy/marvell10g.c
11282
11283 MARVELL MVEBU THERMAL DRIVER
11284 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11285 S:      Maintained
11286 F:      drivers/thermal/armada_thermal.c
11287
11288 MARVELL MVNETA ETHERNET DRIVER
11289 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11290 L:      netdev@vger.kernel.org
11291 S:      Maintained
11292 F:      drivers/net/ethernet/marvell/mvneta.*
11293
11294 MARVELL MVPP2 ETHERNET DRIVER
11295 M:      Marcin Wojtas <mw@semihalf.com>
11296 M:      Russell King <linux@armlinux.org.uk>
11297 L:      netdev@vger.kernel.org
11298 S:      Maintained
11299 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11300 F:      drivers/net/ethernet/marvell/mvpp2/
11301
11302 MARVELL MWIFIEX WIRELESS DRIVER
11303 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11304 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11305 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11306 M:      Xinming Hu <huxinming820@gmail.com>
11307 L:      linux-wireless@vger.kernel.org
11308 S:      Maintained
11309 F:      drivers/net/wireless/marvell/mwifiex/
11310
11311 MARVELL MWL8K WIRELESS DRIVER
11312 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11313 L:      linux-wireless@vger.kernel.org
11314 S:      Odd Fixes
11315 F:      drivers/net/wireless/marvell/mwl8k.c
11316
11317 MARVELL NAND CONTROLLER DRIVER
11318 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11319 L:      linux-mtd@lists.infradead.org
11320 S:      Maintained
11321 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11322 F:      drivers/mtd/nand/raw/marvell_nand.c
11323
11324 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11325 M:      Sunil Goutham <sgoutham@marvell.com>
11326 M:      Geetha sowjanya <gakula@marvell.com>
11327 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11328 M:      hariprasad <hkelam@marvell.com>
11329 L:      netdev@vger.kernel.org
11330 S:      Supported
11331 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11332 F:      include/linux/soc/marvell/octeontx2/
11333
11334 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11335 M:      Sunil Goutham <sgoutham@marvell.com>
11336 M:      Linu Cherian <lcherian@marvell.com>
11337 M:      Geetha sowjanya <gakula@marvell.com>
11338 M:      Jerin Jacob <jerinj@marvell.com>
11339 M:      hariprasad <hkelam@marvell.com>
11340 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11341 L:      netdev@vger.kernel.org
11342 S:      Supported
11343 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11344 F:      drivers/net/ethernet/marvell/octeontx2/af/
11345
11346 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11347 M:      Taras Chornyi <tchornyi@marvell.com>
11348 S:      Supported
11349 W:      https://github.com/Marvell-switching/switchdev-prestera
11350 F:      drivers/net/ethernet/marvell/prestera/
11351
11352 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11353 M:      Nicolas Pitre <nico@fluxnic.net>
11354 S:      Odd Fixes
11355 F:      drivers/mmc/host/mvsdio.*
11356
11357 MARVELL USB MDIO CONTROLLER DRIVER
11358 M:      Tobias Waldekranz <tobias@waldekranz.com>
11359 L:      netdev@vger.kernel.org
11360 S:      Maintained
11361 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11362 F:      drivers/net/mdio/mdio-mvusb.c
11363
11364 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11365 M:      Hu Ziji <huziji@marvell.com>
11366 L:      linux-mmc@vger.kernel.org
11367 S:      Supported
11368 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11369 F:      drivers/mmc/host/sdhci-xenon*
11370
11371 MATROX FRAMEBUFFER DRIVER
11372 L:      linux-fbdev@vger.kernel.org
11373 S:      Orphan
11374 F:      drivers/video/fbdev/matrox/matroxfb_*
11375 F:      include/uapi/linux/matroxfb.h
11376
11377 MAX15301 DRIVER
11378 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11379 L:      linux-hwmon@vger.kernel.org
11380 S:      Maintained
11381 F:      Documentation/hwmon/max15301.rst
11382 F:      drivers/hwmon/pmbus/max15301.c
11383
11384 MAX16065 HARDWARE MONITOR DRIVER
11385 M:      Guenter Roeck <linux@roeck-us.net>
11386 L:      linux-hwmon@vger.kernel.org
11387 S:      Maintained
11388 F:      Documentation/hwmon/max16065.rst
11389 F:      drivers/hwmon/max16065.c
11390
11391 MAX2175 SDR TUNER DRIVER
11392 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11393 L:      linux-media@vger.kernel.org
11394 S:      Maintained
11395 T:      git git://linuxtv.org/media_tree.git
11396 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11397 F:      Documentation/userspace-api/media/drivers/max2175.rst
11398 F:      drivers/media/i2c/max2175*
11399 F:      include/uapi/linux/max2175.h
11400
11401 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11402 L:      linux-hwmon@vger.kernel.org
11403 S:      Orphan
11404 F:      Documentation/hwmon/max6650.rst
11405 F:      drivers/hwmon/max6650.c
11406
11407 MAX6697 HARDWARE MONITOR DRIVER
11408 M:      Guenter Roeck <linux@roeck-us.net>
11409 L:      linux-hwmon@vger.kernel.org
11410 S:      Maintained
11411 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11412 F:      Documentation/hwmon/max6697.rst
11413 F:      drivers/hwmon/max6697.c
11414 F:      include/linux/platform_data/max6697.h
11415
11416 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11417 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11418 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11419 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11420 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11421 L:      linux-media@vger.kernel.org
11422 S:      Maintained
11423 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11424 F:      drivers/media/i2c/max9286.c
11425
11426 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11427 M:      Peter Rosin <peda@axentia.se>
11428 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11429 S:      Maintained
11430 F:      Documentation/devicetree/bindings/sound/max9860.txt
11431 F:      sound/soc/codecs/max9860.*
11432
11433 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11434 M:      Andreas Klinger <ak@it-klinger.de>
11435 L:      linux-iio@vger.kernel.org
11436 S:      Maintained
11437 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11438 F:      drivers/iio/proximity/mb1232.c
11439
11440 MAXIM MAX77650 PMIC MFD DRIVER
11441 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11442 L:      linux-kernel@vger.kernel.org
11443 S:      Maintained
11444 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11445 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11446 F:      drivers/gpio/gpio-max77650.c
11447 F:      drivers/input/misc/max77650-onkey.c
11448 F:      drivers/leds/leds-max77650.c
11449 F:      drivers/mfd/max77650.c
11450 F:      drivers/power/supply/max77650-charger.c
11451 F:      drivers/regulator/max77650-regulator.c
11452 F:      include/linux/mfd/max77650.h
11453
11454 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11455 M:      Javier Martinez Canillas <javier@dowhile0.org>
11456 L:      linux-kernel@vger.kernel.org
11457 S:      Supported
11458 F:      Documentation/devicetree/bindings/*/*max77802.txt
11459 F:      drivers/regulator/max77802-regulator.c
11460 F:      include/dt-bindings/*/*max77802.h
11461
11462 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11463 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11464 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11465 L:      linux-pm@vger.kernel.org
11466 S:      Supported
11467 F:      drivers/power/supply/max14577_charger.c
11468 F:      drivers/power/supply/max77693_charger.c
11469
11470 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11471 M:      Chanwoo Choi <cw00.choi@samsung.com>
11472 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11473 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11474 L:      linux-kernel@vger.kernel.org
11475 S:      Supported
11476 F:      Documentation/devicetree/bindings/*/max77686.txt
11477 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11478 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11479 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11480 F:      drivers/*/max14577*.c
11481 F:      drivers/*/max77686*.c
11482 F:      drivers/*/max77693*.c
11483 F:      drivers/clk/clk-max77686.c
11484 F:      drivers/extcon/extcon-max14577.c
11485 F:      drivers/extcon/extcon-max77693.c
11486 F:      drivers/rtc/rtc-max77686.c
11487 F:      include/linux/mfd/max14577*.h
11488 F:      include/linux/mfd/max77686*.h
11489 F:      include/linux/mfd/max77693*.h
11490
11491 MAXIRADIO FM RADIO RECEIVER DRIVER
11492 M:      Hans Verkuil <hverkuil@xs4all.nl>
11493 L:      linux-media@vger.kernel.org
11494 S:      Maintained
11495 W:      https://linuxtv.org
11496 T:      git git://linuxtv.org/media_tree.git
11497 F:      drivers/media/radio/radio-maxiradio*
11498
11499 MAXLINEAR ETHERNET PHY DRIVER
11500 M:      Xu Liang <lxu@maxlinear.com>
11501 L:      netdev@vger.kernel.org
11502 S:      Supported
11503 F:      drivers/net/phy/mxl-gpy.c
11504
11505 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11506 R:      Yasushi SHOJI <yashi@spacecubics.com>
11507 L:      linux-can@vger.kernel.org
11508 S:      Maintained
11509 F:      drivers/net/can/usb/mcba_usb.c
11510
11511 MCAN MMIO DEVICE DRIVER
11512 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11513 L:      linux-can@vger.kernel.org
11514 S:      Maintained
11515 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11516 F:      drivers/net/can/m_can/m_can.c
11517 F:      drivers/net/can/m_can/m_can.h
11518 F:      drivers/net/can/m_can/m_can_platform.c
11519
11520 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11521 M:      Rishi Gupta <gupt21@gmail.com>
11522 L:      linux-i2c@vger.kernel.org
11523 L:      linux-input@vger.kernel.org
11524 S:      Maintained
11525 F:      drivers/hid/hid-mcp2221.c
11526
11527 MCP251XFD SPI-CAN NETWORK DRIVER
11528 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11529 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11530 R:      Thomas Kopp <thomas.kopp@microchip.com>
11531 L:      linux-can@vger.kernel.org
11532 S:      Maintained
11533 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11534 F:      drivers/net/can/spi/mcp251xfd/
11535
11536 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11537 M:      Peter Rosin <peda@axentia.se>
11538 L:      linux-iio@vger.kernel.org
11539 S:      Maintained
11540 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11541 F:      drivers/iio/potentiometer/mcp4018.c
11542 F:      drivers/iio/potentiometer/mcp4531.c
11543
11544 MCR20A IEEE-802.15.4 RADIO DRIVER
11545 M:      Xue Liu <liuxuenetmail@gmail.com>
11546 L:      linux-wpan@vger.kernel.org
11547 S:      Maintained
11548 W:      https://github.com/xueliu/mcr20a-linux
11549 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11550 F:      drivers/net/ieee802154/mcr20a.c
11551 F:      drivers/net/ieee802154/mcr20a.h
11552
11553 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11554 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11555 L:      linux-iio@vger.kernel.org
11556 S:      Maintained
11557 F:      drivers/iio/dac/cio-dac.c
11558
11559 MEDIA CONTROLLER FRAMEWORK
11560 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11561 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11562 L:      linux-media@vger.kernel.org
11563 S:      Supported
11564 W:      https://www.linuxtv.org
11565 T:      git git://linuxtv.org/media_tree.git
11566 F:      drivers/media/mc/
11567 F:      include/media/media-*.h
11568 F:      include/uapi/linux/media.h
11569
11570 MEDIA DRIVER FOR FREESCALE IMX PXP
11571 M:      Philipp Zabel <p.zabel@pengutronix.de>
11572 L:      linux-media@vger.kernel.org
11573 S:      Maintained
11574 T:      git git://linuxtv.org/media_tree.git
11575 F:      drivers/media/platform/imx-pxp.[ch]
11576
11577 MEDIA DRIVERS FOR ASCOT2E
11578 M:      Sergey Kozlov <serjk@netup.ru>
11579 M:      Abylay Ospan <aospan@netup.ru>
11580 L:      linux-media@vger.kernel.org
11581 S:      Supported
11582 W:      https://linuxtv.org
11583 W:      http://netup.tv/
11584 T:      git git://linuxtv.org/media_tree.git
11585 F:      drivers/media/dvb-frontends/ascot2e*
11586
11587 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11588 M:      Jasmin Jessich <jasmin@anw.at>
11589 L:      linux-media@vger.kernel.org
11590 S:      Maintained
11591 W:      https://linuxtv.org
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      drivers/media/dvb-frontends/cxd2099*
11594
11595 MEDIA DRIVERS FOR CXD2841ER
11596 M:      Sergey Kozlov <serjk@netup.ru>
11597 M:      Abylay Ospan <aospan@netup.ru>
11598 L:      linux-media@vger.kernel.org
11599 S:      Supported
11600 W:      https://linuxtv.org
11601 W:      http://netup.tv/
11602 T:      git git://linuxtv.org/media_tree.git
11603 F:      drivers/media/dvb-frontends/cxd2841er*
11604
11605 MEDIA DRIVERS FOR CXD2880
11606 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11607 L:      linux-media@vger.kernel.org
11608 S:      Supported
11609 W:      http://linuxtv.org/
11610 T:      git git://linuxtv.org/media_tree.git
11611 F:      drivers/media/dvb-frontends/cxd2880/*
11612 F:      drivers/media/spi/cxd2880*
11613
11614 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11615 L:      linux-media@vger.kernel.org
11616 S:      Orphan
11617 W:      https://linuxtv.org
11618 T:      git git://linuxtv.org/media_tree.git
11619 F:      drivers/media/pci/ddbridge/*
11620
11621 MEDIA DRIVERS FOR FREESCALE IMX
11622 M:      Steve Longerbeam <slongerbeam@gmail.com>
11623 M:      Philipp Zabel <p.zabel@pengutronix.de>
11624 L:      linux-media@vger.kernel.org
11625 S:      Maintained
11626 T:      git git://linuxtv.org/media_tree.git
11627 F:      Documentation/admin-guide/media/imx.rst
11628 F:      Documentation/devicetree/bindings/media/imx.txt
11629 F:      drivers/staging/media/imx/
11630 F:      include/linux/imx-media.h
11631 F:      include/media/imx.h
11632
11633 MEDIA DRIVERS FOR FREESCALE IMX7
11634 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11635 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11636 L:      linux-media@vger.kernel.org
11637 S:      Maintained
11638 T:      git git://linuxtv.org/media_tree.git
11639 F:      Documentation/admin-guide/media/imx7.rst
11640 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11641 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11642 F:      drivers/staging/media/imx/imx7-media-csi.c
11643 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11644
11645 MEDIA DRIVERS FOR HELENE
11646 M:      Abylay Ospan <aospan@netup.ru>
11647 L:      linux-media@vger.kernel.org
11648 S:      Supported
11649 W:      https://linuxtv.org
11650 W:      http://netup.tv/
11651 T:      git git://linuxtv.org/media_tree.git
11652 F:      drivers/media/dvb-frontends/helene*
11653
11654 MEDIA DRIVERS FOR HORUS3A
11655 M:      Sergey Kozlov <serjk@netup.ru>
11656 M:      Abylay Ospan <aospan@netup.ru>
11657 L:      linux-media@vger.kernel.org
11658 S:      Supported
11659 W:      https://linuxtv.org
11660 W:      http://netup.tv/
11661 T:      git git://linuxtv.org/media_tree.git
11662 F:      drivers/media/dvb-frontends/horus3a*
11663
11664 MEDIA DRIVERS FOR LNBH25
11665 M:      Sergey Kozlov <serjk@netup.ru>
11666 M:      Abylay Ospan <aospan@netup.ru>
11667 L:      linux-media@vger.kernel.org
11668 S:      Supported
11669 W:      https://linuxtv.org
11670 W:      http://netup.tv/
11671 T:      git git://linuxtv.org/media_tree.git
11672 F:      drivers/media/dvb-frontends/lnbh25*
11673
11674 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11675 L:      linux-media@vger.kernel.org
11676 S:      Orphan
11677 W:      https://linuxtv.org
11678 T:      git git://linuxtv.org/media_tree.git
11679 F:      drivers/media/dvb-frontends/mxl5xx*
11680
11681 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11682 M:      Sergey Kozlov <serjk@netup.ru>
11683 M:      Abylay Ospan <aospan@netup.ru>
11684 L:      linux-media@vger.kernel.org
11685 S:      Supported
11686 W:      https://linuxtv.org
11687 W:      http://netup.tv/
11688 T:      git git://linuxtv.org/media_tree.git
11689 F:      drivers/media/pci/netup_unidvb/*
11690
11691 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11692 M:      Dmitry Osipenko <digetx@gmail.com>
11693 L:      linux-media@vger.kernel.org
11694 L:      linux-tegra@vger.kernel.org
11695 S:      Maintained
11696 T:      git git://linuxtv.org/media_tree.git
11697 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11698 F:      drivers/staging/media/tegra-vde/
11699
11700 MEDIA DRIVERS FOR RENESAS - CEU
11701 M:      Jacopo Mondi <jacopo@jmondi.org>
11702 L:      linux-media@vger.kernel.org
11703 L:      linux-renesas-soc@vger.kernel.org
11704 S:      Supported
11705 T:      git git://linuxtv.org/media_tree.git
11706 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11707 F:      drivers/media/platform/renesas-ceu.c
11708 F:      include/media/drv-intf/renesas-ceu.h
11709
11710 MEDIA DRIVERS FOR RENESAS - DRIF
11711 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11712 L:      linux-media@vger.kernel.org
11713 L:      linux-renesas-soc@vger.kernel.org
11714 S:      Supported
11715 T:      git git://linuxtv.org/media_tree.git
11716 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11717 F:      drivers/media/platform/rcar_drif.c
11718
11719 MEDIA DRIVERS FOR RENESAS - FCP
11720 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11721 L:      linux-media@vger.kernel.org
11722 L:      linux-renesas-soc@vger.kernel.org
11723 S:      Supported
11724 T:      git git://linuxtv.org/media_tree.git
11725 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11726 F:      drivers/media/platform/rcar-fcp.c
11727 F:      include/media/rcar-fcp.h
11728
11729 MEDIA DRIVERS FOR RENESAS - FDP1
11730 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11731 L:      linux-media@vger.kernel.org
11732 L:      linux-renesas-soc@vger.kernel.org
11733 S:      Supported
11734 T:      git git://linuxtv.org/media_tree.git
11735 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11736 F:      drivers/media/platform/rcar_fdp1.c
11737
11738 MEDIA DRIVERS FOR RENESAS - VIN
11739 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11740 L:      linux-media@vger.kernel.org
11741 L:      linux-renesas-soc@vger.kernel.org
11742 S:      Supported
11743 T:      git git://linuxtv.org/media_tree.git
11744 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11745 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11746 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11747 F:      drivers/media/platform/rcar-vin/
11748
11749 MEDIA DRIVERS FOR RENESAS - VSP1
11750 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11751 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11752 L:      linux-media@vger.kernel.org
11753 L:      linux-renesas-soc@vger.kernel.org
11754 S:      Supported
11755 T:      git git://linuxtv.org/media_tree.git
11756 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11757 F:      drivers/media/platform/vsp1/
11758
11759 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11760 L:      linux-media@vger.kernel.org
11761 S:      Orphan
11762 W:      https://linuxtv.org
11763 T:      git git://linuxtv.org/media_tree.git
11764 F:      drivers/media/dvb-frontends/stv0910*
11765
11766 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11767 L:      linux-media@vger.kernel.org
11768 S:      Orphan
11769 W:      https://linuxtv.org
11770 T:      git git://linuxtv.org/media_tree.git
11771 F:      drivers/media/dvb-frontends/stv6111*
11772
11773 MEDIA DRIVERS FOR STM32 - DCMI
11774 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11775 L:      linux-media@vger.kernel.org
11776 S:      Supported
11777 T:      git git://linuxtv.org/media_tree.git
11778 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11779 F:      drivers/media/platform/stm32/stm32-dcmi.c
11780
11781 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11782 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11783 L:      linux-media@vger.kernel.org
11784 S:      Maintained
11785 W:      https://linuxtv.org
11786 Q:      http://patchwork.kernel.org/project/linux-media/list/
11787 T:      git git://linuxtv.org/media_tree.git
11788 F:      Documentation/admin-guide/media/
11789 F:      Documentation/devicetree/bindings/media/
11790 F:      Documentation/driver-api/media/
11791 F:      Documentation/userspace-api/media/
11792 F:      drivers/media/
11793 F:      drivers/staging/media/
11794 F:      include/linux/platform_data/media/
11795 F:      include/media/
11796 F:      include/uapi/linux/dvb/
11797 F:      include/uapi/linux/ivtv*
11798 F:      include/uapi/linux/media.h
11799 F:      include/uapi/linux/meye.h
11800 F:      include/uapi/linux/uvcvideo.h
11801 F:      include/uapi/linux/v4l2-*
11802 F:      include/uapi/linux/videodev2.h
11803
11804 MEDIATEK BLUETOOTH DRIVER
11805 M:      Sean Wang <sean.wang@mediatek.com>
11806 L:      linux-bluetooth@vger.kernel.org
11807 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11808 S:      Maintained
11809 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11810 F:      drivers/bluetooth/btmtkuart.c
11811
11812 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11813 M:      Sean Wang <sean.wang@mediatek.com>
11814 L:      linux-pm@vger.kernel.org
11815 S:      Maintained
11816 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11817 F:      drivers/power/reset/mt6323-poweroff.c
11818
11819 MEDIATEK CIR DRIVER
11820 M:      Sean Wang <sean.wang@mediatek.com>
11821 S:      Maintained
11822 F:      drivers/media/rc/mtk-cir.c
11823
11824 MEDIATEK DMA DRIVER
11825 M:      Sean Wang <sean.wang@mediatek.com>
11826 L:      dmaengine@vger.kernel.org
11827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11828 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11829 S:      Maintained
11830 F:      Documentation/devicetree/bindings/dma/mtk-*
11831 F:      drivers/dma/mediatek/
11832
11833 MEDIATEK ETHERNET DRIVER
11834 M:      Felix Fietkau <nbd@nbd.name>
11835 M:      John Crispin <john@phrozen.org>
11836 M:      Sean Wang <sean.wang@mediatek.com>
11837 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11838 L:      netdev@vger.kernel.org
11839 S:      Maintained
11840 F:      drivers/net/ethernet/mediatek/
11841
11842 MEDIATEK I2C CONTROLLER DRIVER
11843 M:      Qii Wang <qii.wang@mediatek.com>
11844 L:      linux-i2c@vger.kernel.org
11845 S:      Maintained
11846 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11847 F:      drivers/i2c/busses/i2c-mt65xx.c
11848
11849 MEDIATEK IOMMU DRIVER
11850 M:      Yong Wu <yong.wu@mediatek.com>
11851 L:      iommu@lists.linux-foundation.org
11852 L:      iommu@lists.linux.dev
11853 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11854 S:      Supported
11855 F:      Documentation/devicetree/bindings/iommu/mediatek*
11856 F:      drivers/iommu/mtk_iommu*
11857 F:      include/dt-bindings/memory/mt*-port.h
11858
11859 MEDIATEK JPEG DRIVER
11860 M:      Rick Chang <rick.chang@mediatek.com>
11861 M:      Bin Liu <bin.liu@mediatek.com>
11862 S:      Supported
11863 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11864 F:      drivers/media/platform/mtk-jpeg/
11865
11866 MEDIATEK MDP DRIVER
11867 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11868 M:      Houlong Wei <houlong.wei@mediatek.com>
11869 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11870 S:      Supported
11871 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11872 F:      drivers/media/platform/mtk-mdp/
11873 F:      drivers/media/platform/mtk-vpu/
11874
11875 MEDIATEK MEDIA DRIVER
11876 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11877 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11878 S:      Supported
11879 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11880 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11881 F:      drivers/media/platform/mtk-vcodec/
11882 F:      drivers/media/platform/mtk-vpu/
11883
11884 MEDIATEK MMC/SD/SDIO DRIVER
11885 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11886 S:      Maintained
11887 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11888 F:      drivers/mmc/host/mtk-sd.c
11889
11890 MEDIATEK MT76 WIRELESS LAN DRIVER
11891 M:      Felix Fietkau <nbd@nbd.name>
11892 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11893 R:      Ryder Lee <ryder.lee@mediatek.com>
11894 L:      linux-wireless@vger.kernel.org
11895 S:      Maintained
11896 F:      drivers/net/wireless/mediatek/mt76/
11897
11898 MEDIATEK MT7601U WIRELESS LAN DRIVER
11899 M:      Jakub Kicinski <kubakici@wp.pl>
11900 L:      linux-wireless@vger.kernel.org
11901 S:      Maintained
11902 F:      drivers/net/wireless/mediatek/mt7601u/
11903
11904 MEDIATEK MT7621 CLOCK DRIVER
11905 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11908 F:      drivers/clk/ralink/clk-mt7621.c
11909
11910 MEDIATEK MT7621/28/88 I2C DRIVER
11911 M:      Stefan Roese <sr@denx.de>
11912 L:      linux-i2c@vger.kernel.org
11913 S:      Maintained
11914 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11915 F:      drivers/i2c/busses/i2c-mt7621.c
11916
11917 MEDIATEK MT7621 PHY PCI DRIVER
11918 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11919 S:      Maintained
11920 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11921 F:      drivers/phy/ralink/phy-mt7621-pci.c
11922
11923 MEDIATEK NAND CONTROLLER DRIVER
11924 L:      linux-mtd@lists.infradead.org
11925 S:      Orphan
11926 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11927 F:      drivers/mtd/nand/raw/mtk_*
11928
11929 MEDIATEK PMIC LED DRIVER
11930 M:      Sean Wang <sean.wang@mediatek.com>
11931 S:      Maintained
11932 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11933 F:      drivers/leds/leds-mt6323.c
11934
11935 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11936 M:      Sean Wang <sean.wang@mediatek.com>
11937 S:      Maintained
11938 F:      drivers/char/hw_random/mtk-rng.c
11939
11940 MEDIATEK SWITCH DRIVER
11941 M:      Sean Wang <sean.wang@mediatek.com>
11942 M:      Landen Chao <Landen.Chao@mediatek.com>
11943 M:      DENG Qingfang <dqfext@gmail.com>
11944 L:      netdev@vger.kernel.org
11945 S:      Maintained
11946 F:      drivers/net/dsa/mt7530.*
11947 F:      net/dsa/tag_mtk.c
11948
11949 MEDIATEK USB3 DRD IP DRIVER
11950 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11951 L:      linux-usb@vger.kernel.org
11952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11953 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11954 S:      Maintained
11955 F:      Documentation/devicetree/bindings/usb/mediatek,*
11956 F:      drivers/usb/host/xhci-mtk*
11957 F:      drivers/usb/mtu3/
11958
11959 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11960 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11961 M:      Martin Donnelly <martin.donnelly@ge.com>
11962 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11963 S:      Maintained
11964 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11965 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11966
11967 MEGARAID SCSI/SAS DRIVERS
11968 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11969 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11970 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11971 L:      megaraidlinux.pdl@broadcom.com
11972 L:      linux-scsi@vger.kernel.org
11973 S:      Maintained
11974 W:      http://www.avagotech.com/support/
11975 F:      Documentation/scsi/megaraid.rst
11976 F:      drivers/scsi/megaraid.*
11977 F:      drivers/scsi/megaraid/
11978
11979 MELEXIS MLX90614 DRIVER
11980 M:      Crt Mori <cmo@melexis.com>
11981 L:      linux-iio@vger.kernel.org
11982 S:      Supported
11983 W:      http://www.melexis.com
11984 F:      drivers/iio/temperature/mlx90614.c
11985
11986 MELEXIS MLX90632 DRIVER
11987 M:      Crt Mori <cmo@melexis.com>
11988 L:      linux-iio@vger.kernel.org
11989 S:      Supported
11990 W:      http://www.melexis.com
11991 F:      drivers/iio/temperature/mlx90632.c
11992
11993 MELFAS MIP4 TOUCHSCREEN DRIVER
11994 M:      Sangwon Jee <jeesw@melfas.com>
11995 S:      Supported
11996 W:      http://www.melfas.com
11997 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11998 F:      drivers/input/touchscreen/melfas_mip4.c
11999
12000 MELLANOX BLUEFIELD I2C DRIVER
12001 M:      Khalil Blaiech <kblaiech@nvidia.com>
12002 L:      linux-i2c@vger.kernel.org
12003 S:      Supported
12004 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12005 F:      drivers/i2c/busses/i2c-mlxbf.c
12006
12007 MELLANOX ETHERNET DRIVER (mlx4_en)
12008 M:      Tariq Toukan <tariqt@nvidia.com>
12009 L:      netdev@vger.kernel.org
12010 S:      Supported
12011 W:      http://www.mellanox.com
12012 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12013 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12014
12015 MELLANOX ETHERNET DRIVER (mlx5e)
12016 M:      Saeed Mahameed <saeedm@nvidia.com>
12017 L:      netdev@vger.kernel.org
12018 S:      Supported
12019 W:      http://www.mellanox.com
12020 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12021 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12022
12023 MELLANOX ETHERNET INNOVA DRIVERS
12024 R:      Boris Pismenny <borisp@nvidia.com>
12025 L:      netdev@vger.kernel.org
12026 S:      Supported
12027 W:      http://www.mellanox.com
12028 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12029 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12030 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12031 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12032 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12033
12034 MELLANOX ETHERNET SWITCH DRIVERS
12035 M:      Jiri Pirko <jiri@nvidia.com>
12036 M:      Ido Schimmel <idosch@nvidia.com>
12037 L:      netdev@vger.kernel.org
12038 S:      Supported
12039 W:      http://www.mellanox.com
12040 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12041 F:      drivers/net/ethernet/mellanox/mlxsw/
12042 F:      tools/testing/selftests/drivers/net/mlxsw/
12043
12044 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12045 M:      mlxsw@nvidia.com
12046 L:      netdev@vger.kernel.org
12047 S:      Supported
12048 W:      http://www.mellanox.com
12049 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12050 F:      drivers/net/ethernet/mellanox/mlxfw/
12051
12052 MELLANOX HARDWARE PLATFORM SUPPORT
12053 M:      Hans de Goede <hdegoede@redhat.com>
12054 M:      Mark Gross <mgross@linux.intel.com>
12055 M:      Vadim Pasternak <vadimp@nvidia.com>
12056 L:      platform-driver-x86@vger.kernel.org
12057 S:      Supported
12058 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12059 F:      drivers/platform/mellanox/
12060 F:      include/linux/platform_data/mlxreg.h
12061
12062 MELLANOX MLX4 core VPI driver
12063 M:      Tariq Toukan <tariqt@nvidia.com>
12064 L:      netdev@vger.kernel.org
12065 L:      linux-rdma@vger.kernel.org
12066 S:      Supported
12067 W:      http://www.mellanox.com
12068 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12069 F:      drivers/net/ethernet/mellanox/mlx4/
12070 F:      include/linux/mlx4/
12071
12072 MELLANOX MLX4 IB driver
12073 M:      Yishai Hadas <yishaih@nvidia.com>
12074 L:      linux-rdma@vger.kernel.org
12075 S:      Supported
12076 W:      http://www.mellanox.com
12077 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12078 F:      drivers/infiniband/hw/mlx4/
12079 F:      include/linux/mlx4/
12080 F:      include/uapi/rdma/mlx4-abi.h
12081
12082 MELLANOX MLX5 core VPI driver
12083 M:      Saeed Mahameed <saeedm@nvidia.com>
12084 M:      Leon Romanovsky <leonro@nvidia.com>
12085 L:      netdev@vger.kernel.org
12086 L:      linux-rdma@vger.kernel.org
12087 S:      Supported
12088 W:      http://www.mellanox.com
12089 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12090 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12091 F:      drivers/net/ethernet/mellanox/mlx5/core/
12092 F:      include/linux/mlx5/
12093
12094 MELLANOX MLX5 IB driver
12095 M:      Leon Romanovsky <leonro@nvidia.com>
12096 L:      linux-rdma@vger.kernel.org
12097 S:      Supported
12098 W:      http://www.mellanox.com
12099 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12100 F:      drivers/infiniband/hw/mlx5/
12101 F:      include/linux/mlx5/
12102 F:      include/uapi/rdma/mlx5-abi.h
12103
12104 MELLANOX MLXCPLD I2C AND MUX DRIVER
12105 M:      Vadim Pasternak <vadimp@nvidia.com>
12106 M:      Michael Shych <michaelsh@nvidia.com>
12107 L:      linux-i2c@vger.kernel.org
12108 S:      Supported
12109 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12110 F:      drivers/i2c/busses/i2c-mlxcpld.c
12111 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12112
12113 MELLANOX MLXCPLD LED DRIVER
12114 M:      Vadim Pasternak <vadimp@nvidia.com>
12115 L:      linux-leds@vger.kernel.org
12116 S:      Supported
12117 F:      Documentation/leds/leds-mlxcpld.rst
12118 F:      drivers/leds/leds-mlxcpld.c
12119 F:      drivers/leds/leds-mlxreg.c
12120
12121 MELLANOX PLATFORM DRIVER
12122 M:      Vadim Pasternak <vadimp@nvidia.com>
12123 L:      platform-driver-x86@vger.kernel.org
12124 S:      Supported
12125 F:      drivers/platform/x86/mlx-platform.c
12126
12127 MEMBARRIER SUPPORT
12128 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12129 M:      "Paul E. McKenney" <paulmck@kernel.org>
12130 L:      linux-kernel@vger.kernel.org
12131 S:      Supported
12132 F:      arch/powerpc/include/asm/membarrier.h
12133 F:      include/uapi/linux/membarrier.h
12134 F:      kernel/sched/membarrier.c
12135
12136 MEMBLOCK
12137 M:      Mike Rapoport <rppt@linux.ibm.com>
12138 L:      linux-mm@kvack.org
12139 S:      Maintained
12140 F:      Documentation/core-api/boot-time-mm.rst
12141 F:      include/linux/memblock.h
12142 F:      mm/memblock.c
12143
12144 MEMORY CONTROLLER DRIVERS
12145 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12146 L:      linux-kernel@vger.kernel.org
12147 S:      Maintained
12148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12149 F:      Documentation/devicetree/bindings/memory-controllers/
12150 F:      drivers/memory/
12151 F:      include/dt-bindings/memory/
12152 F:      include/memory/
12153
12154 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12155 M:      Dmitry Osipenko <digetx@gmail.com>
12156 L:      linux-pm@vger.kernel.org
12157 L:      linux-tegra@vger.kernel.org
12158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12159 S:      Maintained
12160 F:      drivers/devfreq/tegra30-devfreq.c
12161
12162 MEMORY MANAGEMENT
12163 M:      Andrew Morton <akpm@linux-foundation.org>
12164 L:      linux-mm@kvack.org
12165 S:      Maintained
12166 W:      http://www.linux-mm.org
12167 T:      quilt https://ozlabs.org/~akpm/mmotm/
12168 T:      quilt https://ozlabs.org/~akpm/mmots/
12169 T:      git git://github.com/hnaz/linux-mm.git
12170 F:      include/linux/gfp.h
12171 F:      include/linux/memory_hotplug.h
12172 F:      include/linux/mm.h
12173 F:      include/linux/mmzone.h
12174 F:      include/linux/pagewalk.h
12175 F:      include/linux/vmalloc.h
12176 F:      mm/
12177 F:      tools/testing/selftests/vm/
12178
12179 MEMORY TECHNOLOGY DEVICES (MTD)
12180 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12181 M:      Richard Weinberger <richard@nod.at>
12182 M:      Vignesh Raghavendra <vigneshr@ti.com>
12183 L:      linux-mtd@lists.infradead.org
12184 S:      Maintained
12185 W:      http://www.linux-mtd.infradead.org/
12186 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12187 C:      irc://irc.oftc.net/mtd
12188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12190 F:      Documentation/devicetree/bindings/mtd/
12191 F:      drivers/mtd/
12192 F:      include/linux/mtd/
12193 F:      include/uapi/mtd/
12194
12195 MEN A21 WATCHDOG DRIVER
12196 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12197 L:      linux-watchdog@vger.kernel.org
12198 S:      Maintained
12199 F:      drivers/watchdog/mena21_wdt.c
12200
12201 MEN CHAMELEON BUS (mcb)
12202 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12203 S:      Maintained
12204 F:      Documentation/driver-api/men-chameleon-bus.rst
12205 F:      drivers/mcb/
12206 F:      include/linux/mcb.h
12207
12208 MEN F21BMC (Board Management Controller)
12209 M:      Andreas Werner <andreas.werner@men.de>
12210 S:      Supported
12211 F:      Documentation/hwmon/menf21bmc.rst
12212 F:      drivers/hwmon/menf21bmc_hwmon.c
12213 F:      drivers/leds/leds-menf21bmc.c
12214 F:      drivers/mfd/menf21bmc.c
12215 F:      drivers/watchdog/menf21bmc_wdt.c
12216
12217 MEN Z069 WATCHDOG DRIVER
12218 M:      Johannes Thumshirn <jth@kernel.org>
12219 L:      linux-watchdog@vger.kernel.org
12220 S:      Maintained
12221 F:      drivers/watchdog/menz69_wdt.c
12222
12223 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12224 M:      Neil Armstrong <narmstrong@baylibre.com>
12225 L:      linux-media@vger.kernel.org
12226 L:      linux-amlogic@lists.infradead.org
12227 S:      Supported
12228 W:      http://linux-meson.com/
12229 T:      git git://linuxtv.org/media_tree.git
12230 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12231 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12232 F:      drivers/media/cec/platform/meson/ao-cec.c
12233
12234 MESON GE2D DRIVER FOR AMLOGIC SOCS
12235 M:      Neil Armstrong <narmstrong@baylibre.com>
12236 L:      linux-media@vger.kernel.org
12237 L:      linux-amlogic@lists.infradead.org
12238 S:      Supported
12239 T:      git git://linuxtv.org/media_tree.git
12240 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12241 F:      drivers/media/platform/meson/ge2d/
12242
12243 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12244 M:      Liang Yang <liang.yang@amlogic.com>
12245 L:      linux-mtd@lists.infradead.org
12246 S:      Maintained
12247 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12248 F:      drivers/mtd/nand/raw/meson_*
12249
12250 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12251 M:      Neil Armstrong <narmstrong@baylibre.com>
12252 L:      linux-media@vger.kernel.org
12253 L:      linux-amlogic@lists.infradead.org
12254 S:      Supported
12255 T:      git git://linuxtv.org/media_tree.git
12256 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12257 F:      drivers/staging/media/meson/vdec/
12258
12259 METHODE UDPU SUPPORT
12260 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12261 S:      Maintained
12262 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12263
12264 MHI BUS
12265 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12266 M:      Hemant Kumar <hemantk@codeaurora.org>
12267 L:      linux-arm-msm@vger.kernel.org
12268 S:      Maintained
12269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12270 F:      Documentation/ABI/stable/sysfs-bus-mhi
12271 F:      Documentation/mhi/
12272 F:      drivers/bus/mhi/
12273 F:      include/linux/mhi.h
12274
12275 MICROBLAZE ARCHITECTURE
12276 M:      Michal Simek <monstr@monstr.eu>
12277 S:      Supported
12278 W:      http://www.monstr.eu/fdt/
12279 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12280 F:      arch/microblaze/
12281
12282 MICROCHIP AT91 DMA DRIVERS
12283 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12284 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12286 L:      dmaengine@vger.kernel.org
12287 S:      Supported
12288 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12289 F:      drivers/dma/at_hdmac.c
12290 F:      drivers/dma/at_hdmac_regs.h
12291 F:      drivers/dma/at_xdmac.c
12292 F:      include/dt-bindings/dma/at91.h
12293
12294 MICROCHIP AT91 SERIAL DRIVER
12295 M:      Richard Genoud <richard.genoud@gmail.com>
12296 S:      Maintained
12297 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12298 F:      drivers/tty/serial/atmel_serial.c
12299 F:      drivers/tty/serial/atmel_serial.h
12300
12301 MICROCHIP AT91 USART MFD DRIVER
12302 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12303 L:      linux-kernel@vger.kernel.org
12304 S:      Supported
12305 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12306 F:      drivers/mfd/at91-usart.c
12307 F:      include/dt-bindings/mfd/at91-usart.h
12308
12309 MICROCHIP AT91 USART SPI DRIVER
12310 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12311 L:      linux-spi@vger.kernel.org
12312 S:      Supported
12313 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12314 F:      drivers/spi/spi-at91-usart.c
12315
12316 MICROCHIP AUDIO ASOC DRIVERS
12317 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12318 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12319 S:      Supported
12320 F:      sound/soc/atmel
12321
12322 MICROCHIP ECC DRIVER
12323 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12324 L:      linux-crypto@vger.kernel.org
12325 S:      Maintained
12326 F:      drivers/crypto/atmel-ecc.*
12327
12328 MICROCHIP I2C DRIVER
12329 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12330 L:      linux-i2c@vger.kernel.org
12331 S:      Supported
12332 F:      drivers/i2c/busses/i2c-at91-*.c
12333 F:      drivers/i2c/busses/i2c-at91.h
12334
12335 MICROCHIP ISC DRIVER
12336 M:      Eugen Hristev <eugen.hristev@microchip.com>
12337 L:      linux-media@vger.kernel.org
12338 S:      Supported
12339 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12340 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12341 F:      drivers/media/platform/atmel/atmel-isc-base.c
12342 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12343 F:      drivers/media/platform/atmel/atmel-isc.h
12344 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12345 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12346 F:      include/linux/atmel-isc-media.h
12347
12348 MICROCHIP ISI DRIVER
12349 M:      Eugen Hristev <eugen.hristev@microchip.com>
12350 L:      linux-media@vger.kernel.org
12351 S:      Supported
12352 F:      drivers/media/platform/atmel/atmel-isi.c
12353 F:      drivers/media/platform/atmel/atmel-isi.h
12354
12355 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12356 M:      Woojung Huh <woojung.huh@microchip.com>
12357 M:      UNGLinuxDriver@microchip.com
12358 L:      netdev@vger.kernel.org
12359 S:      Maintained
12360 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12361 F:      drivers/net/dsa/microchip/*
12362 F:      include/linux/platform_data/microchip-ksz.h
12363 F:      net/dsa/tag_ksz.c
12364
12365 MICROCHIP LAN743X ETHERNET DRIVER
12366 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12367 M:      UNGLinuxDriver@microchip.com
12368 L:      netdev@vger.kernel.org
12369 S:      Maintained
12370 F:      drivers/net/ethernet/microchip/lan743x_*
12371
12372 MICROCHIP LCDFB DRIVER
12373 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12374 L:      linux-fbdev@vger.kernel.org
12375 S:      Maintained
12376 F:      drivers/video/fbdev/atmel_lcdfb.c
12377 F:      include/video/atmel_lcdc.h
12378
12379 MICROCHIP MCP16502 PMIC DRIVER
12380 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12382 S:      Supported
12383 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12384 F:      drivers/regulator/mcp16502.c
12385
12386 MICROCHIP MCP3911 ADC DRIVER
12387 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12388 M:      Kent Gustavsson <kent@minoris.se>
12389 L:      linux-iio@vger.kernel.org
12390 S:      Supported
12391 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12392 F:      drivers/iio/adc/mcp3911.c
12393
12394 MICROCHIP MMC/SD/SDIO MCI DRIVER
12395 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12396 S:      Maintained
12397 F:      drivers/mmc/host/atmel-mci.c
12398
12399 MICROCHIP NAND DRIVER
12400 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12401 L:      linux-mtd@lists.infradead.org
12402 S:      Supported
12403 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12404 F:      drivers/mtd/nand/raw/atmel/*
12405
12406 MICROCHIP PWM DRIVER
12407 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12409 L:      linux-pwm@vger.kernel.org
12410 S:      Supported
12411 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12412 F:      drivers/pwm/pwm-atmel.c
12413
12414 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12415 M:      Eugen Hristev <eugen.hristev@microchip.com>
12416 L:      linux-iio@vger.kernel.org
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12419 F:      drivers/iio/adc/at91-sama5d2_adc.c
12420 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12421
12422 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12423 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12424 S:      Supported
12425 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12426
12427 MICROCHIP SPI DRIVER
12428 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12429 S:      Supported
12430 F:      drivers/spi/spi-atmel.*
12431
12432 MICROCHIP SSC DRIVER
12433 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12435 S:      Supported
12436 F:      drivers/misc/atmel-ssc.c
12437 F:      include/linux/atmel-ssc.h
12438
12439 MICROCHIP USB251XB DRIVER
12440 M:      Richard Leitner <richard.leitner@skidata.com>
12441 L:      linux-usb@vger.kernel.org
12442 S:      Maintained
12443 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12444 F:      drivers/usb/misc/usb251xb.c
12445
12446 MICROCHIP USBA UDC DRIVER
12447 M:      Cristian Birsan <cristian.birsan@microchip.com>
12448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12449 S:      Supported
12450 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12451
12452 MICROCHIP WILC1000 WIFI DRIVER
12453 M:      Ajay Singh <ajay.kathat@microchip.com>
12454 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12455 L:      linux-wireless@vger.kernel.org
12456 S:      Supported
12457 F:      drivers/net/wireless/microchip/wilc1000/
12458
12459 MICROSEMI MIPS SOCS
12460 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12461 M:      UNGLinuxDriver@microchip.com
12462 L:      linux-mips@vger.kernel.org
12463 S:      Supported
12464 F:      Documentation/devicetree/bindings/mips/mscc.txt
12465 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12466 F:      arch/mips/boot/dts/mscc/
12467 F:      arch/mips/configs/generic/board-ocelot.config
12468 F:      arch/mips/generic/board-ocelot.c
12469
12470 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12471 M:      Don Brace <don.brace@microchip.com>
12472 L:      storagedev@microchip.com
12473 L:      linux-scsi@vger.kernel.org
12474 S:      Supported
12475 F:      Documentation/scsi/smartpqi.rst
12476 F:      drivers/scsi/smartpqi/Kconfig
12477 F:      drivers/scsi/smartpqi/Makefile
12478 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12479 F:      include/linux/cciss*.h
12480 F:      include/uapi/linux/cciss*.h
12481
12482 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12483 M:      Maximilian Luz <luzmaximilian@gmail.com>
12484 L:      linux-pm@vger.kernel.org
12485 L:      platform-driver-x86@vger.kernel.org
12486 S:      Maintained
12487 F:      drivers/power/supply/surface_battery.c
12488 F:      drivers/power/supply/surface_charger.c
12489
12490 MICROSOFT SURFACE DTX DRIVER
12491 M:      Maximilian Luz <luzmaximilian@gmail.com>
12492 L:      platform-driver-x86@vger.kernel.org
12493 S:      Maintained
12494 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12495 F:      drivers/platform/surface/surface_dtx.c
12496 F:      include/uapi/linux/surface_aggregator/dtx.h
12497
12498 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12499 M:      Maximilian Luz <luzmaximilian@gmail.com>
12500 L:      platform-driver-x86@vger.kernel.org
12501 S:      Maintained
12502 F:      drivers/platform/surface/surface_gpe.c
12503
12504 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12505 M:      Hans de Goede <hdegoede@redhat.com>
12506 M:      Mark Gross <mgross@linux.intel.com>
12507 M:      Maximilian Luz <luzmaximilian@gmail.com>
12508 L:      platform-driver-x86@vger.kernel.org
12509 S:      Maintained
12510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12511 F:      drivers/platform/surface/
12512
12513 MICROSOFT SURFACE HID TRANSPORT DRIVER
12514 M:      Maximilian Luz <luzmaximilian@gmail.com>
12515 L:      linux-input@vger.kernel.org
12516 L:      platform-driver-x86@vger.kernel.org
12517 S:      Maintained
12518 F:      drivers/hid/surface-hid/
12519
12520 MICROSOFT SURFACE HOT-PLUG DRIVER
12521 M:      Maximilian Luz <luzmaximilian@gmail.com>
12522 L:      platform-driver-x86@vger.kernel.org
12523 S:      Maintained
12524 F:      drivers/platform/surface/surface_hotplug.c
12525
12526 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12527 M:      Maximilian Luz <luzmaximilian@gmail.com>
12528 L:      platform-driver-x86@vger.kernel.org
12529 S:      Maintained
12530 F:      drivers/platform/surface/surface_platform_profile.c
12531
12532 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12533 M:      Chen Yu <yu.c.chen@intel.com>
12534 L:      platform-driver-x86@vger.kernel.org
12535 S:      Supported
12536 F:      drivers/platform/surface/surfacepro3_button.c
12537
12538 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12539 M:      Maximilian Luz <luzmaximilian@gmail.com>
12540 L:      platform-driver-x86@vger.kernel.org
12541 S:      Maintained
12542 W:      https://github.com/linux-surface/surface-aggregator-module
12543 C:      irc://irc.libera.chat/linux-surface
12544 F:      Documentation/driver-api/surface_aggregator/
12545 F:      drivers/platform/surface/aggregator/
12546 F:      drivers/platform/surface/surface_acpi_notify.c
12547 F:      drivers/platform/surface/surface_aggregator_cdev.c
12548 F:      drivers/platform/surface/surface_aggregator_registry.c
12549 F:      include/linux/surface_acpi_notify.h
12550 F:      include/linux/surface_aggregator/
12551 F:      include/uapi/linux/surface_aggregator/
12552
12553 MICROTEK X6 SCANNER
12554 M:      Oliver Neukum <oliver@neukum.org>
12555 S:      Maintained
12556 F:      drivers/usb/image/microtek.*
12557
12558 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12559 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12560 M:      Luka Perkov <luka.perkov@sartura.hr>
12561 S:      Maintained
12562 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12563 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12564 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12565 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12566 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12567 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12568
12569 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12570 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12571 L:      linux-media@vger.kernel.org
12572 S:      Maintained
12573 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12574 F:      Documentation/driver-api/media/drivers/ccs/
12575 F:      Documentation/userspace-api/media/drivers/ccs.rst
12576 F:      drivers/media/i2c/ccs-pll.c
12577 F:      drivers/media/i2c/ccs-pll.h
12578 F:      drivers/media/i2c/ccs/
12579 F:      include/uapi/linux/ccs.h
12580 F:      include/uapi/linux/smiapp.h
12581
12582 MIPS
12583 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12584 L:      linux-mips@vger.kernel.org
12585 S:      Maintained
12586 W:      http://www.linux-mips.org/
12587 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12589 F:      Documentation/devicetree/bindings/mips/
12590 F:      Documentation/mips/
12591 F:      arch/mips/
12592 F:      drivers/platform/mips/
12593
12594 MIPS BOSTON DEVELOPMENT BOARD
12595 M:      Paul Burton <paulburton@kernel.org>
12596 L:      linux-mips@vger.kernel.org
12597 S:      Maintained
12598 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12599 F:      arch/mips/boot/dts/img/boston.dts
12600 F:      arch/mips/configs/generic/board-boston.config
12601 F:      drivers/clk/imgtec/clk-boston.c
12602 F:      include/dt-bindings/clock/boston-clock.h
12603
12604 MIPS CORE DRIVERS
12605 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12606 M:      Serge Semin <fancer.lancer@gmail.com>
12607 L:      linux-mips@vger.kernel.org
12608 S:      Supported
12609 F:      drivers/bus/mips_cdmm.c
12610 F:      drivers/clocksource/mips-gic-timer.c
12611 F:      drivers/cpuidle/cpuidle-cps.c
12612 F:      drivers/irqchip/irq-mips-cpu.c
12613 F:      drivers/irqchip/irq-mips-gic.c
12614
12615 MIPS GENERIC PLATFORM
12616 M:      Paul Burton <paulburton@kernel.org>
12617 L:      linux-mips@vger.kernel.org
12618 S:      Supported
12619 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12620 F:      arch/mips/generic/
12621 F:      arch/mips/tools/generic-board-config.sh
12622
12623 MIPS RINT INSTRUCTION EMULATION
12624 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12625 L:      linux-mips@vger.kernel.org
12626 S:      Supported
12627 F:      arch/mips/math-emu/dp_rint.c
12628 F:      arch/mips/math-emu/sp_rint.c
12629
12630 MIPS/LOONGSON1 ARCHITECTURE
12631 M:      Keguang Zhang <keguang.zhang@gmail.com>
12632 L:      linux-mips@vger.kernel.org
12633 S:      Maintained
12634 F:      arch/mips/include/asm/mach-loongson32/
12635 F:      arch/mips/loongson32/
12636 F:      drivers/*/*/*loongson1*
12637 F:      drivers/*/*loongson1*
12638
12639 MIPS/LOONGSON2EF ARCHITECTURE
12640 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12641 L:      linux-mips@vger.kernel.org
12642 S:      Maintained
12643 F:      arch/mips/include/asm/mach-loongson2ef/
12644 F:      arch/mips/loongson2ef/
12645 F:      drivers/cpufreq/loongson2_cpufreq.c
12646
12647 MIPS/LOONGSON64 ARCHITECTURE
12648 M:      Huacai Chen <chenhuacai@kernel.org>
12649 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12650 L:      linux-mips@vger.kernel.org
12651 S:      Maintained
12652 F:      arch/mips/include/asm/mach-loongson64/
12653 F:      arch/mips/loongson64/
12654 F:      drivers/irqchip/irq-loongson*
12655 F:      drivers/platform/mips/cpu_hwmon.c
12656
12657 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12658 M:      Hans Verkuil <hverkuil@xs4all.nl>
12659 L:      linux-media@vger.kernel.org
12660 S:      Odd Fixes
12661 W:      https://linuxtv.org
12662 T:      git git://linuxtv.org/media_tree.git
12663 F:      drivers/media/radio/radio-miropcm20*
12664
12665 MMP SUPPORT
12666 R:      Lubomir Rintel <lkundrak@v3.sk>
12667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12668 S:      Odd Fixes
12669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12670 F:      arch/arm/boot/dts/mmp*
12671 F:      arch/arm/mach-mmp/
12672 F:      include/linux/soc/mmp/
12673
12674 MMP USB PHY DRIVERS
12675 R:      Lubomir Rintel <lkundrak@v3.sk>
12676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12677 S:      Maintained
12678 F:      drivers/phy/marvell/phy-mmp3-usb.c
12679 F:      drivers/phy/marvell/phy-pxa-usb.c
12680
12681 MMU GATHER AND TLB INVALIDATION
12682 M:      Will Deacon <will@kernel.org>
12683 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12684 M:      Andrew Morton <akpm@linux-foundation.org>
12685 M:      Nick Piggin <npiggin@gmail.com>
12686 M:      Peter Zijlstra <peterz@infradead.org>
12687 L:      linux-arch@vger.kernel.org
12688 L:      linux-mm@kvack.org
12689 S:      Maintained
12690 F:      arch/*/include/asm/tlb.h
12691 F:      include/asm-generic/tlb.h
12692 F:      mm/mmu_gather.c
12693
12694 MN88472 MEDIA DRIVER
12695 M:      Antti Palosaari <crope@iki.fi>
12696 L:      linux-media@vger.kernel.org
12697 S:      Maintained
12698 W:      https://linuxtv.org
12699 W:      http://palosaari.fi/linux/
12700 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12701 F:      drivers/media/dvb-frontends/mn88472*
12702
12703 MN88473 MEDIA DRIVER
12704 M:      Antti Palosaari <crope@iki.fi>
12705 L:      linux-media@vger.kernel.org
12706 S:      Maintained
12707 W:      https://linuxtv.org
12708 W:      http://palosaari.fi/linux/
12709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12710 F:      drivers/media/dvb-frontends/mn88473*
12711
12712 MODULE SUPPORT
12713 M:      Luis Chamberlain <mcgrof@kernel.org>
12714 M:      Jessica Yu <jeyu@kernel.org>
12715 S:      Maintained
12716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12717 F:      include/linux/module.h
12718 F:      kernel/module.c
12719
12720 MONOLITHIC POWER SYSTEM PMIC DRIVER
12721 M:      Saravanan Sekar <sravanhome@gmail.com>
12722 S:      Maintained
12723 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12724 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12725 F:      drivers/iio/adc/mp2629_adc.c
12726 F:      drivers/mfd/mp2629.c
12727 F:      drivers/power/supply/mp2629_charger.c
12728 F:      drivers/regulator/mp5416.c
12729 F:      drivers/regulator/mpq7920.c
12730 F:      drivers/regulator/mpq7920.h
12731 F:      include/linux/mfd/mp2629.h
12732
12733 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12734 S:      Orphan
12735 W:      http://popies.net/meye/
12736 F:      Documentation/userspace-api/media/drivers/meye*
12737 F:      drivers/media/pci/meye/
12738 F:      include/uapi/linux/meye.h
12739
12740 MOTORCOMM PHY DRIVER
12741 M:      Peter Geis <pgwipeout@gmail.com>
12742 L:      netdev@vger.kernel.org
12743 S:      Maintained
12744 F:      drivers/net/phy/motorcomm.c
12745
12746 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12747 M:      Jiri Slaby <jirislaby@kernel.org>
12748 S:      Maintained
12749 F:      Documentation/driver-api/serial/moxa-smartio.rst
12750 F:      drivers/tty/mxser.*
12751
12752 MR800 AVERMEDIA USB FM RADIO DRIVER
12753 M:      Alexey Klimov <klimov.linux@gmail.com>
12754 L:      linux-media@vger.kernel.org
12755 S:      Maintained
12756 T:      git git://linuxtv.org/media_tree.git
12757 F:      drivers/media/radio/radio-mr800.c
12758
12759 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12760 M:      Alan Ott <alan@signal11.us>
12761 L:      linux-wpan@vger.kernel.org
12762 S:      Maintained
12763 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12764 F:      drivers/net/ieee802154/mrf24j40.c
12765
12766 MSI LAPTOP SUPPORT
12767 M:      "Lee, Chun-Yi" <jlee@suse.com>
12768 L:      platform-driver-x86@vger.kernel.org
12769 S:      Maintained
12770 F:      drivers/platform/x86/msi-laptop.c
12771
12772 MSI WMI SUPPORT
12773 L:      platform-driver-x86@vger.kernel.org
12774 S:      Orphan
12775 F:      drivers/platform/x86/msi-wmi.c
12776
12777 MSI001 MEDIA DRIVER
12778 M:      Antti Palosaari <crope@iki.fi>
12779 L:      linux-media@vger.kernel.org
12780 S:      Maintained
12781 W:      https://linuxtv.org
12782 W:      http://palosaari.fi/linux/
12783 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12784 T:      git git://linuxtv.org/anttip/media_tree.git
12785 F:      drivers/media/tuners/msi001*
12786
12787 MSI2500 MEDIA DRIVER
12788 M:      Antti Palosaari <crope@iki.fi>
12789 L:      linux-media@vger.kernel.org
12790 S:      Maintained
12791 W:      https://linuxtv.org
12792 W:      http://palosaari.fi/linux/
12793 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12794 T:      git git://linuxtv.org/anttip/media_tree.git
12795 F:      drivers/media/usb/msi2500/
12796
12797 MSTAR INTERRUPT CONTROLLER DRIVER
12798 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12799 M:      Daniel Palmer <daniel@thingy.jp>
12800 S:      Maintained
12801 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12802 F:      drivers/irqchip/irq-mst-intc.c
12803
12804 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12805 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12806 L:      linux-mtd@lists.infradead.org
12807 S:      Maintained
12808 F:      drivers/mtd/devices/docg3*
12809
12810 MT9M032 APTINA SENSOR DRIVER
12811 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12812 L:      linux-media@vger.kernel.org
12813 S:      Maintained
12814 T:      git git://linuxtv.org/media_tree.git
12815 F:      drivers/media/i2c/mt9m032.c
12816 F:      include/media/i2c/mt9m032.h
12817
12818 MT9P031 APTINA CAMERA SENSOR
12819 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12820 L:      linux-media@vger.kernel.org
12821 S:      Maintained
12822 T:      git git://linuxtv.org/media_tree.git
12823 F:      drivers/media/i2c/mt9p031.c
12824 F:      include/media/i2c/mt9p031.h
12825
12826 MT9T001 APTINA CAMERA SENSOR
12827 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12828 L:      linux-media@vger.kernel.org
12829 S:      Maintained
12830 T:      git git://linuxtv.org/media_tree.git
12831 F:      drivers/media/i2c/mt9t001.c
12832 F:      include/media/i2c/mt9t001.h
12833
12834 MT9T112 APTINA CAMERA SENSOR
12835 M:      Jacopo Mondi <jacopo@jmondi.org>
12836 L:      linux-media@vger.kernel.org
12837 S:      Odd Fixes
12838 T:      git git://linuxtv.org/media_tree.git
12839 F:      drivers/media/i2c/mt9t112.c
12840 F:      include/media/i2c/mt9t112.h
12841
12842 MT9V032 APTINA CAMERA SENSOR
12843 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12844 L:      linux-media@vger.kernel.org
12845 S:      Maintained
12846 T:      git git://linuxtv.org/media_tree.git
12847 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12848 F:      drivers/media/i2c/mt9v032.c
12849 F:      include/media/i2c/mt9v032.h
12850
12851 MT9V111 APTINA CAMERA SENSOR
12852 M:      Jacopo Mondi <jacopo@jmondi.org>
12853 L:      linux-media@vger.kernel.org
12854 S:      Maintained
12855 T:      git git://linuxtv.org/media_tree.git
12856 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12857 F:      drivers/media/i2c/mt9v111.c
12858
12859 MULTIFUNCTION DEVICES (MFD)
12860 M:      Lee Jones <lee.jones@linaro.org>
12861 S:      Supported
12862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12863 F:      Documentation/devicetree/bindings/mfd/
12864 F:      drivers/mfd/
12865 F:      include/dt-bindings/mfd/
12866 F:      include/linux/mfd/
12867
12868 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12869 S:      Orphan
12870 F:      drivers/mmc/host/mmc_spi.c
12871 F:      include/linux/spi/mmc_spi.h
12872
12873 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12874 M:      Ulf Hansson <ulf.hansson@linaro.org>
12875 L:      linux-mmc@vger.kernel.org
12876 S:      Maintained
12877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12878 F:      Documentation/devicetree/bindings/mmc/
12879 F:      drivers/mmc/
12880 F:      include/linux/mmc/
12881 F:      include/uapi/linux/mmc/
12882
12883 MULTIPLEXER SUBSYSTEM
12884 M:      Peter Rosin <peda@axentia.se>
12885 S:      Maintained
12886 F:      Documentation/ABI/testing/sysfs-class-mux*
12887 F:      Documentation/devicetree/bindings/mux/
12888 F:      drivers/mux/
12889 F:      include/dt-bindings/mux/
12890 F:      include/linux/mux/
12891
12892 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12893 M:      Bin Liu <b-liu@ti.com>
12894 L:      linux-usb@vger.kernel.org
12895 S:      Maintained
12896 F:      drivers/usb/musb/
12897
12898 MXL301RF MEDIA DRIVER
12899 M:      Akihiro Tsukada <tskd08@gmail.com>
12900 L:      linux-media@vger.kernel.org
12901 S:      Odd Fixes
12902 F:      drivers/media/tuners/mxl301rf*
12903
12904 MXL5007T MEDIA DRIVER
12905 M:      Michael Krufky <mkrufky@linuxtv.org>
12906 L:      linux-media@vger.kernel.org
12907 S:      Maintained
12908 W:      https://linuxtv.org
12909 W:      http://github.com/mkrufky
12910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12911 T:      git git://linuxtv.org/mkrufky/tuners.git
12912 F:      drivers/media/tuners/mxl5007t.*
12913
12914 MXSFB DRM DRIVER
12915 M:      Marek Vasut <marex@denx.de>
12916 M:      Stefan Agner <stefan@agner.ch>
12917 L:      dri-devel@lists.freedesktop.org
12918 S:      Supported
12919 T:      git git://anongit.freedesktop.org/drm/drm-misc
12920 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12921 F:      drivers/gpu/drm/mxsfb/
12922
12923 MYLEX DAC960 PCI RAID Controller
12924 M:      Hannes Reinecke <hare@kernel.org>
12925 L:      linux-scsi@vger.kernel.org
12926 S:      Supported
12927 F:      drivers/scsi/myrb.*
12928 F:      drivers/scsi/myrs.*
12929
12930 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12931 M:      Chris Lee <christopher.lee@cspi.com>
12932 L:      netdev@vger.kernel.org
12933 S:      Supported
12934 W:      https://www.cspi.com/ethernet-products/support/downloads/
12935 F:      drivers/net/ethernet/myricom/myri10ge/
12936
12937 NAND FLASH SUBSYSTEM
12938 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12939 R:      Richard Weinberger <richard@nod.at>
12940 L:      linux-mtd@lists.infradead.org
12941 S:      Maintained
12942 W:      http://www.linux-mtd.infradead.org/
12943 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12944 C:      irc://irc.oftc.net/mtd
12945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12946 F:      drivers/mtd/nand/
12947 F:      include/linux/mtd/*nand*.h
12948
12949 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12950 M:      Daniel Mack <zonque@gmail.com>
12951 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12952 S:      Maintained
12953 W:      http://www.native-instruments.com
12954 F:      sound/usb/caiaq/
12955
12956 NATSEMI ETHERNET DRIVER (DP8381x)
12957 S:      Orphan
12958 F:      drivers/net/ethernet/natsemi/natsemi.c
12959
12960 NCR 5380 SCSI DRIVERS
12961 M:      Finn Thain <fthain@linux-m68k.org>
12962 M:      Michael Schmitz <schmitzmic@gmail.com>
12963 L:      linux-scsi@vger.kernel.org
12964 S:      Maintained
12965 F:      Documentation/scsi/g_NCR5380.rst
12966 F:      drivers/scsi/NCR5380.*
12967 F:      drivers/scsi/arm/cumana_1.c
12968 F:      drivers/scsi/arm/oak.c
12969 F:      drivers/scsi/atari_scsi.*
12970 F:      drivers/scsi/dmx3191d.c
12971 F:      drivers/scsi/g_NCR5380.*
12972 F:      drivers/scsi/mac_scsi.*
12973 F:      drivers/scsi/sun3_scsi.*
12974 F:      drivers/scsi/sun3_scsi_vme.c
12975
12976 NCSI LIBRARY
12977 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12978 S:      Maintained
12979 F:      net/ncsi/
12980
12981 NCT6775 HARDWARE MONITOR DRIVER
12982 M:      Guenter Roeck <linux@roeck-us.net>
12983 L:      linux-hwmon@vger.kernel.org
12984 S:      Maintained
12985 F:      Documentation/hwmon/nct6775.rst
12986 F:      drivers/hwmon/nct6775.c
12987
12988 NETDEVSIM
12989 M:      Jakub Kicinski <kuba@kernel.org>
12990 S:      Maintained
12991 F:      drivers/net/netdevsim/*
12992
12993 NETEM NETWORK EMULATOR
12994 M:      Stephen Hemminger <stephen@networkplumber.org>
12995 L:      netdev@vger.kernel.org
12996 S:      Maintained
12997 F:      net/sched/sch_netem.c
12998
12999 NETERION 10GbE DRIVERS (s2io/vxge)
13000 M:      Jon Mason <jdmason@kudzu.us>
13001 L:      netdev@vger.kernel.org
13002 S:      Supported
13003 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13004 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13005 F:      drivers/net/ethernet/neterion/
13006
13007 NETFILTER
13008 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13009 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13010 M:      Florian Westphal <fw@strlen.de>
13011 L:      netfilter-devel@vger.kernel.org
13012 L:      coreteam@netfilter.org
13013 S:      Maintained
13014 W:      http://www.netfilter.org/
13015 W:      http://www.iptables.org/
13016 W:      http://www.nftables.org/
13017 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13018 C:      irc://irc.libera.chat/netfilter
13019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13021 F:      include/linux/netfilter*
13022 F:      include/linux/netfilter/
13023 F:      include/net/netfilter/
13024 F:      include/uapi/linux/netfilter*
13025 F:      include/uapi/linux/netfilter/
13026 F:      net/*/netfilter.c
13027 F:      net/*/netfilter/
13028 F:      net/bridge/br_netfilter*.c
13029 F:      net/netfilter/
13030
13031 NETROM NETWORK LAYER
13032 M:      Ralf Baechle <ralf@linux-mips.org>
13033 L:      linux-hams@vger.kernel.org
13034 S:      Maintained
13035 W:      http://www.linux-ax25.org/
13036 F:      include/net/netrom.h
13037 F:      include/uapi/linux/netrom.h
13038 F:      net/netrom/
13039
13040 NETRONIX EMBEDDED CONTROLLER
13041 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13042 S:      Maintained
13043 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13044 F:      drivers/mfd/ntxec.c
13045 F:      drivers/pwm/pwm-ntxec.c
13046 F:      drivers/rtc/rtc-ntxec.c
13047 F:      include/linux/mfd/ntxec.h
13048
13049 NETRONOME ETHERNET DRIVERS
13050 M:      Simon Horman <simon.horman@corigine.com>
13051 R:      Jakub Kicinski <kuba@kernel.org>
13052 L:      oss-drivers@corigine.com
13053 S:      Maintained
13054 F:      drivers/net/ethernet/netronome/
13055
13056 NETWORK BLOCK DEVICE (NBD)
13057 M:      Josef Bacik <josef@toxicpanda.com>
13058 L:      linux-block@vger.kernel.org
13059 L:      nbd@other.debian.org
13060 S:      Maintained
13061 F:      Documentation/admin-guide/blockdev/nbd.rst
13062 F:      drivers/block/nbd.c
13063 F:      include/trace/events/nbd.h
13064 F:      include/uapi/linux/nbd.h
13065
13066 NETWORK DROP MONITOR
13067 M:      Neil Horman <nhorman@tuxdriver.com>
13068 L:      netdev@vger.kernel.org
13069 S:      Maintained
13070 W:      https://fedorahosted.org/dropwatch/
13071 F:      include/uapi/linux/net_dropmon.h
13072 F:      net/core/drop_monitor.c
13073
13074 NETWORKING DRIVERS
13075 M:      "David S. Miller" <davem@davemloft.net>
13076 M:      Jakub Kicinski <kuba@kernel.org>
13077 L:      netdev@vger.kernel.org
13078 S:      Maintained
13079 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13082 F:      Documentation/devicetree/bindings/net/
13083 F:      drivers/connector/
13084 F:      drivers/net/
13085 F:      include/linux/etherdevice.h
13086 F:      include/linux/fcdevice.h
13087 F:      include/linux/fddidevice.h
13088 F:      include/linux/hippidevice.h
13089 F:      include/linux/if_*
13090 F:      include/linux/inetdevice.h
13091 F:      include/linux/netdevice.h
13092 F:      include/uapi/linux/if_*
13093 F:      include/uapi/linux/netdevice.h
13094
13095 NETWORKING DRIVERS (WIRELESS)
13096 M:      Kalle Valo <kvalo@codeaurora.org>
13097 L:      linux-wireless@vger.kernel.org
13098 S:      Maintained
13099 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13102 F:      Documentation/devicetree/bindings/net/wireless/
13103 F:      drivers/net/wireless/
13104
13105 NETWORKING [DSA]
13106 M:      Andrew Lunn <andrew@lunn.ch>
13107 M:      Vivien Didelot <vivien.didelot@gmail.com>
13108 M:      Florian Fainelli <f.fainelli@gmail.com>
13109 M:      Vladimir Oltean <olteanv@gmail.com>
13110 S:      Maintained
13111 F:      Documentation/devicetree/bindings/net/dsa/
13112 F:      drivers/net/dsa/
13113 F:      include/linux/dsa/
13114 F:      include/linux/platform_data/dsa.h
13115 F:      include/net/dsa.h
13116 F:      net/dsa/
13117
13118 NETWORKING [GENERAL]
13119 M:      "David S. Miller" <davem@davemloft.net>
13120 M:      Jakub Kicinski <kuba@kernel.org>
13121 L:      netdev@vger.kernel.org
13122 S:      Maintained
13123 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13124 B:      mailto:netdev@vger.kernel.org
13125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13127 F:      Documentation/networking/
13128 F:      include/linux/in.h
13129 F:      include/linux/net.h
13130 F:      include/linux/netdevice.h
13131 F:      include/net/
13132 F:      include/uapi/linux/in.h
13133 F:      include/uapi/linux/net.h
13134 F:      include/uapi/linux/net_namespace.h
13135 F:      include/uapi/linux/netdevice.h
13136 F:      lib/net_utils.c
13137 F:      lib/random32.c
13138 F:      net/
13139 F:      tools/testing/selftests/net/
13140
13141 NETWORKING [IPSEC]
13142 M:      Steffen Klassert <steffen.klassert@secunet.com>
13143 M:      Herbert Xu <herbert@gondor.apana.org.au>
13144 M:      "David S. Miller" <davem@davemloft.net>
13145 L:      netdev@vger.kernel.org
13146 S:      Maintained
13147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13149 F:      include/net/xfrm.h
13150 F:      include/uapi/linux/xfrm.h
13151 F:      net/ipv4/ah4.c
13152 F:      net/ipv4/esp4*
13153 F:      net/ipv4/ip_vti.c
13154 F:      net/ipv4/ipcomp.c
13155 F:      net/ipv4/xfrm*
13156 F:      net/ipv6/ah6.c
13157 F:      net/ipv6/esp6*
13158 F:      net/ipv6/ip6_vti.c
13159 F:      net/ipv6/ipcomp6.c
13160 F:      net/ipv6/xfrm*
13161 F:      net/key/
13162 F:      net/xfrm/
13163 F:      tools/testing/selftests/net/ipsec.c
13164
13165 NETWORKING [IPv4/IPv6]
13166 M:      "David S. Miller" <davem@davemloft.net>
13167 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13168 M:      David Ahern <dsahern@kernel.org>
13169 L:      netdev@vger.kernel.org
13170 S:      Maintained
13171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13172 F:      arch/x86/net/*
13173 F:      include/net/ip*
13174 F:      net/ipv4/
13175 F:      net/ipv6/
13176
13177 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13178 M:      Paul Moore <paul@paul-moore.com>
13179 L:      netdev@vger.kernel.org
13180 L:      linux-security-module@vger.kernel.org
13181 S:      Maintained
13182 W:      https://github.com/netlabel
13183 F:      Documentation/netlabel/
13184 F:      include/net/calipso.h
13185 F:      include/net/cipso_ipv4.h
13186 F:      include/net/netlabel.h
13187 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13188 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13189 F:      net/ipv4/cipso_ipv4.c
13190 F:      net/ipv6/calipso.c
13191 F:      net/netfilter/xt_CONNSECMARK.c
13192 F:      net/netfilter/xt_SECMARK.c
13193 F:      net/netlabel/
13194
13195 NETWORKING [MPTCP]
13196 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13197 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13198 L:      netdev@vger.kernel.org
13199 L:      mptcp@lists.linux.dev
13200 S:      Maintained
13201 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13202 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13203 F:      Documentation/networking/mptcp-sysctl.rst
13204 F:      include/net/mptcp.h
13205 F:      include/trace/events/mptcp.h
13206 F:      include/uapi/linux/mptcp.h
13207 F:      net/mptcp/
13208 F:      tools/testing/selftests/net/mptcp/
13209
13210 NETWORKING [TCP]
13211 M:      Eric Dumazet <edumazet@google.com>
13212 L:      netdev@vger.kernel.org
13213 S:      Maintained
13214 F:      include/linux/tcp.h
13215 F:      include/net/tcp.h
13216 F:      include/trace/events/tcp.h
13217 F:      include/uapi/linux/tcp.h
13218 F:      net/ipv4/syncookies.c
13219 F:      net/ipv4/tcp*.c
13220 F:      net/ipv6/syncookies.c
13221 F:      net/ipv6/tcp*.c
13222
13223 NETWORKING [TLS]
13224 M:      Boris Pismenny <borisp@nvidia.com>
13225 M:      John Fastabend <john.fastabend@gmail.com>
13226 M:      Daniel Borkmann <daniel@iogearbox.net>
13227 M:      Jakub Kicinski <kuba@kernel.org>
13228 L:      netdev@vger.kernel.org
13229 S:      Maintained
13230 F:      include/net/tls.h
13231 F:      include/uapi/linux/tls.h
13232 F:      net/tls/*
13233
13234 NETWORKING [WIRELESS]
13235 L:      linux-wireless@vger.kernel.org
13236 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13237
13238 NETXEN (1/10) GbE SUPPORT
13239 M:      Manish Chopra <manishc@marvell.com>
13240 M:      Rahul Verma <rahulv@marvell.com>
13241 M:      GR-Linux-NIC-Dev@marvell.com
13242 L:      netdev@vger.kernel.org
13243 S:      Supported
13244 F:      drivers/net/ethernet/qlogic/netxen/
13245
13246 NET_FAILOVER MODULE
13247 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13248 L:      netdev@vger.kernel.org
13249 S:      Supported
13250 F:      Documentation/networking/net_failover.rst
13251 F:      drivers/net/net_failover.c
13252 F:      include/net/net_failover.h
13253
13254 NEXTHOP
13255 M:      David Ahern <dsahern@kernel.org>
13256 L:      netdev@vger.kernel.org
13257 S:      Maintained
13258 F:      include/net/netns/nexthop.h
13259 F:      include/net/nexthop.h
13260 F:      include/uapi/linux/nexthop.h
13261 F:      net/ipv4/nexthop.c
13262
13263 NFC SUBSYSTEM
13264 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13265 L:      linux-nfc@lists.01.org (subscribers-only)
13266 L:      netdev@vger.kernel.org
13267 S:      Maintained
13268 F:      Documentation/devicetree/bindings/net/nfc/
13269 F:      drivers/nfc/
13270 F:      include/linux/platform_data/nfcmrvl.h
13271 F:      include/net/nfc/
13272 F:      include/uapi/linux/nfc.h
13273 F:      net/nfc/
13274
13275 NFC VIRTUAL NCI DEVICE DRIVER
13276 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13277 L:      netdev@vger.kernel.org
13278 L:      linux-nfc@lists.01.org (subscribers-only)
13279 S:      Supported
13280 F:      drivers/nfc/virtual_ncidev.c
13281 F:      tools/testing/selftests/nci/
13282
13283 NFS, SUNRPC, AND LOCKD CLIENTS
13284 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13285 M:      Anna Schumaker <anna.schumaker@netapp.com>
13286 L:      linux-nfs@vger.kernel.org
13287 S:      Maintained
13288 W:      http://client.linux-nfs.org
13289 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13290 F:      fs/lockd/
13291 F:      fs/nfs/
13292 F:      fs/nfs_common/
13293 F:      include/linux/lockd/
13294 F:      include/linux/nfs*
13295 F:      include/linux/sunrpc/
13296 F:      include/uapi/linux/nfs*
13297 F:      include/uapi/linux/sunrpc/
13298 F:      net/sunrpc/
13299 F:      Documentation/filesystems/nfs/
13300
13301 NILFS2 FILESYSTEM
13302 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13303 L:      linux-nilfs@vger.kernel.org
13304 S:      Supported
13305 W:      https://nilfs.sourceforge.io/
13306 W:      https://nilfs.osdn.jp/
13307 T:      git git://github.com/konis/nilfs2.git
13308 F:      Documentation/filesystems/nilfs2.rst
13309 F:      fs/nilfs2/
13310 F:      include/trace/events/nilfs2.h
13311 F:      include/uapi/linux/nilfs2_api.h
13312 F:      include/uapi/linux/nilfs2_ondisk.h
13313
13314 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13315 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13316 S:      Maintained
13317 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13318 F:      Documentation/scsi/NinjaSCSI.rst
13319 F:      drivers/scsi/pcmcia/nsp_*
13320
13321 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13322 M:      GOTO Masanori <gotom@debian.or.jp>
13323 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13324 S:      Maintained
13325 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13326 F:      Documentation/scsi/NinjaSCSI.rst
13327 F:      drivers/scsi/nsp32*
13328
13329 NIOS2 ARCHITECTURE
13330 M:      Dinh Nguyen <dinguyen@kernel.org>
13331 S:      Maintained
13332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13333 F:      arch/nios2/
13334
13335 NITRO ENCLAVES (NE)
13336 M:      Andra Paraschiv <andraprs@amazon.com>
13337 M:      Alexandru Vasile <lexnv@amazon.com>
13338 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13339 L:      linux-kernel@vger.kernel.org
13340 S:      Supported
13341 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13342 F:      Documentation/virt/ne_overview.rst
13343 F:      drivers/virt/nitro_enclaves/
13344 F:      include/linux/nitro_enclaves.h
13345 F:      include/uapi/linux/nitro_enclaves.h
13346 F:      samples/nitro_enclaves/
13347
13348 NOHZ, DYNTICKS SUPPORT
13349 M:      Frederic Weisbecker <fweisbec@gmail.com>
13350 M:      Thomas Gleixner <tglx@linutronix.de>
13351 M:      Ingo Molnar <mingo@kernel.org>
13352 L:      linux-kernel@vger.kernel.org
13353 S:      Maintained
13354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13355 F:      include/linux/sched/nohz.h
13356 F:      include/linux/tick.h
13357 F:      kernel/time/tick*.*
13358
13359 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13360 M:      Pavel Machek <pavel@ucw.cz>
13361 M:      Sakari Ailus <sakari.ailus@iki.fi>
13362 L:      linux-media@vger.kernel.org
13363 S:      Maintained
13364 F:      drivers/media/i2c/ad5820.c
13365 F:      drivers/media/i2c/et8ek8
13366
13367 NOKIA N900 POWER SUPPLY DRIVERS
13368 R:      Pali Rohár <pali@kernel.org>
13369 F:      drivers/power/supply/bq2415x_charger.c
13370 F:      drivers/power/supply/bq27xxx_battery.c
13371 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13372 F:      drivers/power/supply/isp1704_charger.c
13373 F:      drivers/power/supply/rx51_battery.c
13374 F:      include/linux/power/bq2415x_charger.h
13375 F:      include/linux/power/bq27xxx_battery.h
13376
13377 NOLIBC HEADER FILE
13378 M:      Willy Tarreau <w@1wt.eu>
13379 S:      Maintained
13380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13381 F:      tools/include/nolibc/
13382
13383 NSDEPS
13384 M:      Matthias Maennich <maennich@google.com>
13385 S:      Maintained
13386 F:      Documentation/core-api/symbol-namespaces.rst
13387 F:      scripts/nsdeps
13388
13389 NTB AMD DRIVER
13390 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13391 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13392 L:      linux-ntb@googlegroups.com
13393 S:      Supported
13394 F:      drivers/ntb/hw/amd/
13395
13396 NTB DRIVER CORE
13397 M:      Jon Mason <jdmason@kudzu.us>
13398 M:      Dave Jiang <dave.jiang@intel.com>
13399 M:      Allen Hubbe <allenbh@gmail.com>
13400 L:      linux-ntb@googlegroups.com
13401 S:      Supported
13402 W:      https://github.com/jonmason/ntb/wiki
13403 T:      git git://github.com/jonmason/ntb.git
13404 F:      drivers/net/ntb_netdev.c
13405 F:      drivers/ntb/
13406 F:      include/linux/ntb.h
13407 F:      include/linux/ntb_transport.h
13408 F:      tools/testing/selftests/ntb/
13409
13410 NTB IDT DRIVER
13411 M:      Serge Semin <fancer.lancer@gmail.com>
13412 L:      linux-ntb@googlegroups.com
13413 S:      Supported
13414 F:      drivers/ntb/hw/idt/
13415
13416 NTB INTEL DRIVER
13417 M:      Dave Jiang <dave.jiang@intel.com>
13418 L:      linux-ntb@googlegroups.com
13419 S:      Supported
13420 W:      https://github.com/davejiang/linux/wiki
13421 T:      git https://github.com/davejiang/linux.git
13422 F:      drivers/ntb/hw/intel/
13423
13424 NTFS FILESYSTEM
13425 M:      Anton Altaparmakov <anton@tuxera.com>
13426 L:      linux-ntfs-dev@lists.sourceforge.net
13427 S:      Supported
13428 W:      http://www.tuxera.com/
13429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13430 F:      Documentation/filesystems/ntfs.rst
13431 F:      fs/ntfs/
13432
13433 NTFS3 FILESYSTEM
13434 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13435 L:      ntfs3@lists.linux.dev
13436 S:      Supported
13437 W:      http://www.paragon-software.com/
13438 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13439 F:      Documentation/filesystems/ntfs3.rst
13440 F:      fs/ntfs3/
13441
13442 NUBUS SUBSYSTEM
13443 M:      Finn Thain <fthain@linux-m68k.org>
13444 L:      linux-m68k@lists.linux-m68k.org
13445 S:      Maintained
13446 F:      arch/*/include/asm/nubus.h
13447 F:      drivers/nubus/
13448 F:      include/linux/nubus.h
13449 F:      include/uapi/linux/nubus.h
13450
13451 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13452 M:      Antonino Daplas <adaplas@gmail.com>
13453 L:      linux-fbdev@vger.kernel.org
13454 S:      Maintained
13455 F:      drivers/video/fbdev/nvidia/
13456 F:      drivers/video/fbdev/riva/
13457
13458 NVM EXPRESS DRIVER
13459 M:      Keith Busch <kbusch@kernel.org>
13460 M:      Jens Axboe <axboe@fb.com>
13461 M:      Christoph Hellwig <hch@lst.de>
13462 M:      Sagi Grimberg <sagi@grimberg.me>
13463 L:      linux-nvme@lists.infradead.org
13464 S:      Supported
13465 W:      http://git.infradead.org/nvme.git
13466 T:      git://git.infradead.org/nvme.git
13467 F:      drivers/nvme/host/
13468 F:      include/linux/nvme.h
13469 F:      include/uapi/linux/nvme_ioctl.h
13470
13471 NVM EXPRESS FC TRANSPORT DRIVERS
13472 M:      James Smart <james.smart@broadcom.com>
13473 L:      linux-nvme@lists.infradead.org
13474 S:      Supported
13475 F:      drivers/nvme/host/fc.c
13476 F:      drivers/nvme/target/fc.c
13477 F:      drivers/nvme/target/fcloop.c
13478 F:      include/linux/nvme-fc-driver.h
13479 F:      include/linux/nvme-fc.h
13480
13481 NVM EXPRESS TARGET DRIVER
13482 M:      Christoph Hellwig <hch@lst.de>
13483 M:      Sagi Grimberg <sagi@grimberg.me>
13484 M:      Chaitanya Kulkarni <kch@nvidia.com>
13485 L:      linux-nvme@lists.infradead.org
13486 S:      Supported
13487 W:      http://git.infradead.org/nvme.git
13488 T:      git://git.infradead.org/nvme.git
13489 F:      drivers/nvme/target/
13490
13491 NVMEM FRAMEWORK
13492 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13493 S:      Maintained
13494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13495 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13496 F:      Documentation/devicetree/bindings/nvmem/
13497 F:      drivers/nvmem/
13498 F:      include/linux/nvmem-consumer.h
13499 F:      include/linux/nvmem-provider.h
13500
13501 NXP C45 TJA11XX PHY DRIVER
13502 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13503 L:      netdev@vger.kernel.org
13504 S:      Maintained
13505 F:      drivers/net/phy/nxp-c45-tja11xx.c
13506
13507 NXP FSPI DRIVER
13508 M:      Ashish Kumar <ashish.kumar@nxp.com>
13509 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13510 L:      linux-spi@vger.kernel.org
13511 S:      Maintained
13512 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13513 F:      drivers/spi/spi-nxp-fspi.c
13514
13515 NXP FXAS21002C DRIVER
13516 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13517 L:      linux-iio@vger.kernel.org
13518 S:      Maintained
13519 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13520 F:      drivers/iio/gyro/fxas21002c.h
13521 F:      drivers/iio/gyro/fxas21002c_core.c
13522 F:      drivers/iio/gyro/fxas21002c_i2c.c
13523 F:      drivers/iio/gyro/fxas21002c_spi.c
13524
13525 NXP i.MX CLOCK DRIVERS
13526 M:      Abel Vesa <abel.vesa@nxp.com>
13527 L:      linux-clk@vger.kernel.org
13528 L:      linux-imx@nxp.com
13529 S:      Maintained
13530 F:      drivers/clk/imx/
13531
13532 NXP i.MX 8MQ DCSS DRIVER
13533 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13534 R:      Lucas Stach <l.stach@pengutronix.de>
13535 L:      dri-devel@lists.freedesktop.org
13536 S:      Maintained
13537 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13538 F:      drivers/gpu/drm/imx/dcss/
13539
13540 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13541 M:      Jagan Teki <jagan@amarulasolutions.com>
13542 S:      Maintained
13543 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13544 F:      drivers/regulator/pf8x00-regulator.c
13545
13546 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13547 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13548 L:      linux-kernel@vger.kernel.org
13549 S:      Maintained
13550 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13551 F:      drivers/extcon/extcon-ptn5150.c
13552
13553 NXP SGTL5000 DRIVER
13554 M:      Fabio Estevam <festevam@gmail.com>
13555 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13556 S:      Maintained
13557 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13558 F:      sound/soc/codecs/sgtl5000*
13559
13560 NXP SJA1105 ETHERNET SWITCH DRIVER
13561 M:      Vladimir Oltean <olteanv@gmail.com>
13562 L:      linux-kernel@vger.kernel.org
13563 S:      Maintained
13564 F:      drivers/net/dsa/sja1105
13565 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13566
13567 NXP TDA998X DRM DRIVER
13568 M:      Russell King <linux@armlinux.org.uk>
13569 S:      Maintained
13570 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13571 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13572 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13573 F:      include/drm/i2c/tda998x.h
13574 F:      include/dt-bindings/display/tda998x.h
13575 K:      "nxp,tda998x"
13576
13577 NXP TFA9879 DRIVER
13578 M:      Peter Rosin <peda@axentia.se>
13579 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13580 S:      Maintained
13581 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13582 F:      sound/soc/codecs/tfa9879*
13583
13584 NXP/Goodix TFA989X (TFA1) DRIVER
13585 M:      Stephan Gerhold <stephan@gerhold.net>
13586 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13587 S:      Maintained
13588 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13589 F:      sound/soc/codecs/tfa989x.c
13590
13591 NXP-NCI NFC DRIVER
13592 R:      Charles Gorand <charles.gorand@effinnov.com>
13593 L:      linux-nfc@lists.01.org (subscribers-only)
13594 S:      Supported
13595 F:      drivers/nfc/nxp-nci
13596
13597 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13598 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13599 R:      NXP Linux Team <linux-imx@nxp.com>
13600 L:      linux-media@vger.kernel.org
13601 S:      Maintained
13602 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13603 F:      drivers/media/platform/imx-jpeg
13604
13605 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13606 M:      Jonas Malaco <jonas@protocubo.io>
13607 L:      linux-hwmon@vger.kernel.org
13608 S:      Maintained
13609 F:      Documentation/hwmon/nzxt-kraken2.rst
13610 F:      drivers/hwmon/nzxt-kraken2.c
13611
13612 OBJAGG
13613 M:      Jiri Pirko <jiri@nvidia.com>
13614 L:      netdev@vger.kernel.org
13615 S:      Supported
13616 F:      include/linux/objagg.h
13617 F:      lib/objagg.c
13618 F:      lib/test_objagg.c
13619
13620 OBJTOOL
13621 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13622 M:      Peter Zijlstra <peterz@infradead.org>
13623 S:      Supported
13624 F:      tools/objtool/
13625 F:      include/linux/objtool.h
13626
13627 OCELOT ETHERNET SWITCH DRIVER
13628 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13629 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13630 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13631 M:      UNGLinuxDriver@microchip.com
13632 L:      netdev@vger.kernel.org
13633 S:      Supported
13634 F:      drivers/net/dsa/ocelot/*
13635 F:      drivers/net/ethernet/mscc/
13636 F:      include/soc/mscc/ocelot*
13637 F:      net/dsa/tag_ocelot.c
13638 F:      net/dsa/tag_ocelot_8021q.c
13639 F:      tools/testing/selftests/drivers/net/ocelot/*
13640
13641 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13642 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13643 M:      Andrew Donnellan <ajd@linux.ibm.com>
13644 L:      linuxppc-dev@lists.ozlabs.org
13645 S:      Supported
13646 F:      Documentation/userspace-api/accelerators/ocxl.rst
13647 F:      arch/powerpc/include/asm/pnv-ocxl.h
13648 F:      arch/powerpc/platforms/powernv/ocxl.c
13649 F:      drivers/misc/ocxl/
13650 F:      include/misc/ocxl*
13651 F:      include/uapi/misc/ocxl.h
13652
13653 OMAP AUDIO SUPPORT
13654 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13655 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13656 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13657 L:      linux-omap@vger.kernel.org
13658 S:      Maintained
13659 F:      sound/soc/ti/n810.c
13660 F:      sound/soc/ti/omap*
13661 F:      sound/soc/ti/rx51.c
13662 F:      sound/soc/ti/sdma-pcm.*
13663
13664 OMAP CLOCK FRAMEWORK SUPPORT
13665 M:      Paul Walmsley <paul@pwsan.com>
13666 L:      linux-omap@vger.kernel.org
13667 S:      Maintained
13668 F:      arch/arm/*omap*/*clock*
13669
13670 OMAP DEVICE TREE SUPPORT
13671 M:      Benoît Cousson <bcousson@baylibre.com>
13672 M:      Tony Lindgren <tony@atomide.com>
13673 L:      linux-omap@vger.kernel.org
13674 L:      devicetree@vger.kernel.org
13675 S:      Maintained
13676 F:      arch/arm/boot/dts/*am3*
13677 F:      arch/arm/boot/dts/*am4*
13678 F:      arch/arm/boot/dts/*am5*
13679 F:      arch/arm/boot/dts/*dra7*
13680 F:      arch/arm/boot/dts/*omap*
13681 F:      arch/arm/boot/dts/logicpd-som-lv*
13682 F:      arch/arm/boot/dts/logicpd-torpedo*
13683
13684 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13685 L:      linux-omap@vger.kernel.org
13686 L:      linux-fbdev@vger.kernel.org
13687 S:      Orphan
13688 F:      Documentation/arm/omap/dss.rst
13689 F:      drivers/video/fbdev/omap2/
13690
13691 OMAP FRAMEBUFFER SUPPORT
13692 L:      linux-fbdev@vger.kernel.org
13693 L:      linux-omap@vger.kernel.org
13694 S:      Orphan
13695 F:      drivers/video/fbdev/omap/
13696
13697 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13698 M:      Roger Quadros <rogerq@kernel.org>
13699 M:      Tony Lindgren <tony@atomide.com>
13700 L:      linux-omap@vger.kernel.org
13701 S:      Maintained
13702 F:      arch/arm/mach-omap2/*gpmc*
13703 F:      drivers/memory/omap-gpmc.c
13704
13705 OMAP GPIO DRIVER
13706 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13707 M:      Santosh Shilimkar <ssantosh@kernel.org>
13708 M:      Kevin Hilman <khilman@kernel.org>
13709 L:      linux-omap@vger.kernel.org
13710 S:      Maintained
13711 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13712 F:      drivers/gpio/gpio-omap.c
13713
13714 OMAP HARDWARE SPINLOCK SUPPORT
13715 M:      Ohad Ben-Cohen <ohad@wizery.com>
13716 L:      linux-omap@vger.kernel.org
13717 S:      Maintained
13718 F:      drivers/hwspinlock/omap_hwspinlock.c
13719
13720 OMAP HS MMC SUPPORT
13721 L:      linux-mmc@vger.kernel.org
13722 L:      linux-omap@vger.kernel.org
13723 S:      Orphan
13724 F:      drivers/mmc/host/omap_hsmmc.c
13725
13726 OMAP HWMOD DATA
13727 M:      Paul Walmsley <paul@pwsan.com>
13728 L:      linux-omap@vger.kernel.org
13729 S:      Maintained
13730 F:      arch/arm/mach-omap2/omap_hwmod*data*
13731
13732 OMAP HWMOD SUPPORT
13733 M:      Benoît Cousson <bcousson@baylibre.com>
13734 M:      Paul Walmsley <paul@pwsan.com>
13735 L:      linux-omap@vger.kernel.org
13736 S:      Maintained
13737 F:      arch/arm/mach-omap2/omap_hwmod.*
13738
13739 OMAP I2C DRIVER
13740 M:      Vignesh R <vigneshr@ti.com>
13741 L:      linux-omap@vger.kernel.org
13742 L:      linux-i2c@vger.kernel.org
13743 S:      Maintained
13744 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13745 F:      drivers/i2c/busses/i2c-omap.c
13746
13747 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13749 L:      linux-media@vger.kernel.org
13750 S:      Maintained
13751 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13752 F:      drivers/media/platform/omap3isp/
13753 F:      drivers/staging/media/omap4iss/
13754
13755 OMAP MMC SUPPORT
13756 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13757 L:      linux-omap@vger.kernel.org
13758 S:      Odd Fixes
13759 F:      drivers/mmc/host/omap.c
13760
13761 OMAP POWER MANAGEMENT SUPPORT
13762 M:      Kevin Hilman <khilman@kernel.org>
13763 L:      linux-omap@vger.kernel.org
13764 S:      Maintained
13765 F:      arch/arm/*omap*/*pm*
13766 F:      drivers/cpufreq/omap-cpufreq.c
13767
13768 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13769 M:      Rajendra Nayak <rnayak@codeaurora.org>
13770 M:      Paul Walmsley <paul@pwsan.com>
13771 L:      linux-omap@vger.kernel.org
13772 S:      Maintained
13773 F:      arch/arm/mach-omap2/prm*
13774
13775 OMAP RANDOM NUMBER GENERATOR SUPPORT
13776 M:      Deepak Saxena <dsaxena@plexity.net>
13777 S:      Maintained
13778 F:      drivers/char/hw_random/omap-rng.c
13779
13780 OMAP USB SUPPORT
13781 L:      linux-usb@vger.kernel.org
13782 L:      linux-omap@vger.kernel.org
13783 S:      Orphan
13784 F:      arch/arm/*omap*/usb*
13785 F:      drivers/usb/*/*omap*
13786
13787 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13788 M:      Mark Jackson <mpfj@newflow.co.uk>
13789 L:      linux-omap@vger.kernel.org
13790 S:      Maintained
13791 F:      arch/arm/boot/dts/am335x-nano.dts
13792
13793 OMAP1 SUPPORT
13794 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13795 M:      Tony Lindgren <tony@atomide.com>
13796 L:      linux-omap@vger.kernel.org
13797 S:      Maintained
13798 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13800 F:      arch/arm/configs/omap1_defconfig
13801 F:      arch/arm/mach-omap1/
13802 F:      arch/arm/plat-omap/
13803 F:      drivers/i2c/busses/i2c-omap.c
13804 F:      include/linux/platform_data/ams-delta-fiq.h
13805 F:      include/linux/platform_data/i2c-omap.h
13806
13807 OMAP2+ SUPPORT
13808 M:      Tony Lindgren <tony@atomide.com>
13809 L:      linux-omap@vger.kernel.org
13810 S:      Maintained
13811 W:      http://www.muru.com/linux/omap/
13812 W:      http://linux.omap.com/
13813 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13815 F:      arch/arm/configs/omap2plus_defconfig
13816 F:      arch/arm/mach-omap2/
13817 F:      arch/arm/plat-omap/
13818 F:      drivers/bus/ti-sysc.c
13819 F:      drivers/i2c/busses/i2c-omap.c
13820 F:      drivers/irqchip/irq-omap-intc.c
13821 F:      drivers/mfd/*omap*.c
13822 F:      drivers/mfd/menelaus.c
13823 F:      drivers/mfd/palmas.c
13824 F:      drivers/mfd/tps65217.c
13825 F:      drivers/mfd/tps65218.c
13826 F:      drivers/mfd/tps65910.c
13827 F:      drivers/mfd/twl-core.[ch]
13828 F:      drivers/mfd/twl4030*.c
13829 F:      drivers/mfd/twl6030*.c
13830 F:      drivers/mfd/twl6040*.c
13831 F:      drivers/regulator/palmas-regulator*.c
13832 F:      drivers/regulator/pbias-regulator.c
13833 F:      drivers/regulator/tps65217-regulator.c
13834 F:      drivers/regulator/tps65218-regulator.c
13835 F:      drivers/regulator/tps65910-regulator.c
13836 F:      drivers/regulator/twl-regulator.c
13837 F:      drivers/regulator/twl6030-regulator.c
13838 F:      include/linux/platform_data/i2c-omap.h
13839 F:      include/linux/platform_data/ti-sysc.h
13840
13841 OMFS FILESYSTEM
13842 M:      Bob Copeland <me@bobcopeland.com>
13843 L:      linux-karma-devel@lists.sourceforge.net
13844 S:      Maintained
13845 F:      Documentation/filesystems/omfs.rst
13846 F:      fs/omfs/
13847
13848 OMNIKEY CARDMAN 4000 DRIVER
13849 M:      Harald Welte <laforge@gnumonks.org>
13850 S:      Maintained
13851 F:      drivers/char/pcmcia/cm4000_cs.c
13852 F:      include/linux/cm4000_cs.h
13853 F:      include/uapi/linux/cm4000_cs.h
13854
13855 OMNIKEY CARDMAN 4040 DRIVER
13856 M:      Harald Welte <laforge@gnumonks.org>
13857 S:      Maintained
13858 F:      drivers/char/pcmcia/cm4040_cs.*
13859
13860 OMNIVISION OV02A10 SENSOR DRIVER
13861 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13862 L:      linux-media@vger.kernel.org
13863 S:      Maintained
13864 T:      git git://linuxtv.org/media_tree.git
13865 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13866 F:      drivers/media/i2c/ov02a10.c
13867
13868 OMNIVISION OV13858 SENSOR DRIVER
13869 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13870 L:      linux-media@vger.kernel.org
13871 S:      Maintained
13872 T:      git git://linuxtv.org/media_tree.git
13873 F:      drivers/media/i2c/ov13858.c
13874
13875 OMNIVISION OV2680 SENSOR DRIVER
13876 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13877 L:      linux-media@vger.kernel.org
13878 S:      Maintained
13879 T:      git git://linuxtv.org/media_tree.git
13880 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13881 F:      drivers/media/i2c/ov2680.c
13882
13883 OMNIVISION OV2685 SENSOR DRIVER
13884 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13885 L:      linux-media@vger.kernel.org
13886 S:      Maintained
13887 T:      git git://linuxtv.org/media_tree.git
13888 F:      drivers/media/i2c/ov2685.c
13889
13890 OMNIVISION OV2740 SENSOR DRIVER
13891 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13892 R:      Shawn Tu <shawnx.tu@intel.com>
13893 R:      Bingbu Cao <bingbu.cao@intel.com>
13894 L:      linux-media@vger.kernel.org
13895 S:      Maintained
13896 T:      git git://linuxtv.org/media_tree.git
13897 F:      drivers/media/i2c/ov2740.c
13898
13899 OMNIVISION OV5640 SENSOR DRIVER
13900 M:      Steve Longerbeam <slongerbeam@gmail.com>
13901 L:      linux-media@vger.kernel.org
13902 S:      Maintained
13903 T:      git git://linuxtv.org/media_tree.git
13904 F:      drivers/media/i2c/ov5640.c
13905
13906 OMNIVISION OV5647 SENSOR DRIVER
13907 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13908 M:      Jacopo Mondi <jacopo@jmondi.org>
13909 L:      linux-media@vger.kernel.org
13910 S:      Maintained
13911 T:      git git://linuxtv.org/media_tree.git
13912 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13913 F:      drivers/media/i2c/ov5647.c
13914
13915 OMNIVISION OV5670 SENSOR DRIVER
13916 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13917 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13918 L:      linux-media@vger.kernel.org
13919 S:      Maintained
13920 T:      git git://linuxtv.org/media_tree.git
13921 F:      drivers/media/i2c/ov5670.c
13922
13923 OMNIVISION OV5675 SENSOR DRIVER
13924 M:      Shawn Tu <shawnx.tu@intel.com>
13925 L:      linux-media@vger.kernel.org
13926 S:      Maintained
13927 T:      git git://linuxtv.org/media_tree.git
13928 F:      drivers/media/i2c/ov5675.c
13929
13930 OMNIVISION OV5695 SENSOR DRIVER
13931 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13932 L:      linux-media@vger.kernel.org
13933 S:      Maintained
13934 T:      git git://linuxtv.org/media_tree.git
13935 F:      drivers/media/i2c/ov5695.c
13936
13937 OMNIVISION OV7670 SENSOR DRIVER
13938 L:      linux-media@vger.kernel.org
13939 S:      Orphan
13940 T:      git git://linuxtv.org/media_tree.git
13941 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13942 F:      drivers/media/i2c/ov7670.c
13943
13944 OMNIVISION OV772x SENSOR DRIVER
13945 M:      Jacopo Mondi <jacopo@jmondi.org>
13946 L:      linux-media@vger.kernel.org
13947 S:      Odd fixes
13948 T:      git git://linuxtv.org/media_tree.git
13949 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13950 F:      drivers/media/i2c/ov772x.c
13951 F:      include/media/i2c/ov772x.h
13952
13953 OMNIVISION OV7740 SENSOR DRIVER
13954 M:      Wenyou Yang <wenyou.yang@microchip.com>
13955 L:      linux-media@vger.kernel.org
13956 S:      Maintained
13957 T:      git git://linuxtv.org/media_tree.git
13958 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13959 F:      drivers/media/i2c/ov7740.c
13960
13961 OMNIVISION OV8856 SENSOR DRIVER
13962 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13963 L:      linux-media@vger.kernel.org
13964 S:      Maintained
13965 T:      git git://linuxtv.org/media_tree.git
13966 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13967 F:      drivers/media/i2c/ov8856.c
13968
13969 OMNIVISION OV9282 SENSOR DRIVER
13970 M:      Paul J. Murphy <paul.j.murphy@intel.com>
13971 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13972 L:      linux-media@vger.kernel.org
13973 S:      Maintained
13974 T:      git git://linuxtv.org/media_tree.git
13975 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13976 F:      drivers/media/i2c/ov9282.c
13977
13978 OMNIVISION OV9640 SENSOR DRIVER
13979 M:      Petr Cvek <petrcvekcz@gmail.com>
13980 L:      linux-media@vger.kernel.org
13981 S:      Maintained
13982 F:      drivers/media/i2c/ov9640.*
13983
13984 OMNIVISION OV9650 SENSOR DRIVER
13985 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13986 R:      Akinobu Mita <akinobu.mita@gmail.com>
13987 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13988 L:      linux-media@vger.kernel.org
13989 S:      Maintained
13990 T:      git git://linuxtv.org/media_tree.git
13991 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13992 F:      drivers/media/i2c/ov9650.c
13993
13994 OMNIVISION OV9734 SENSOR DRIVER
13995 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13996 R:      Bingbu Cao <bingbu.cao@intel.com>
13997 L:      linux-media@vger.kernel.org
13998 S:      Maintained
13999 T:      git git://linuxtv.org/media_tree.git
14000 F:      drivers/media/i2c/ov9734.c
14001
14002 ONENAND FLASH DRIVER
14003 M:      Kyungmin Park <kyungmin.park@samsung.com>
14004 L:      linux-mtd@lists.infradead.org
14005 S:      Maintained
14006 F:      drivers/mtd/nand/onenand/
14007 F:      include/linux/mtd/onenand*.h
14008
14009 ONION OMEGA2+ BOARD
14010 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14011 L:      linux-mips@vger.kernel.org
14012 S:      Maintained
14013 F:      arch/mips/boot/dts/ralink/omega2p.dts
14014
14015 OP-TEE DRIVER
14016 M:      Jens Wiklander <jens.wiklander@linaro.org>
14017 L:      op-tee@lists.trustedfirmware.org
14018 S:      Maintained
14019 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14020 F:      drivers/tee/optee/
14021
14022 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14023 M:      Sumit Garg <sumit.garg@linaro.org>
14024 L:      op-tee@lists.trustedfirmware.org
14025 S:      Maintained
14026 F:      drivers/char/hw_random/optee-rng.c
14027
14028 OPA-VNIC DRIVER
14029 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14030 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14031 L:      linux-rdma@vger.kernel.org
14032 S:      Supported
14033 F:      drivers/infiniband/ulp/opa_vnic
14034
14035 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14036 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14037 M:      Frank Rowand <frowand.list@gmail.com>
14038 L:      devicetree@vger.kernel.org
14039 S:      Maintained
14040 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14041 F:      Documentation/devicetree/overlay-notes.rst
14042 F:      drivers/of/overlay.c
14043 F:      drivers/of/resolver.c
14044 K:      of_overlay_notifier_
14045
14046 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14047 M:      Rob Herring <robh+dt@kernel.org>
14048 M:      Frank Rowand <frowand.list@gmail.com>
14049 L:      devicetree@vger.kernel.org
14050 S:      Maintained
14051 W:      http://www.devicetree.org/
14052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14053 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14054 F:      drivers/of/
14055 F:      include/linux/of*.h
14056 F:      scripts/dtc/
14057
14058 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14059 M:      Rob Herring <robh+dt@kernel.org>
14060 L:      devicetree@vger.kernel.org
14061 S:      Maintained
14062 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14064 F:      Documentation/devicetree/
14065 F:      arch/*/boot/dts/
14066 F:      include/dt-bindings/
14067
14068 OPENCOMPUTE PTP CLOCK DRIVER
14069 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14070 L:      netdev@vger.kernel.org
14071 S:      Maintained
14072 F:      drivers/ptp/ptp_ocp.c
14073
14074 OPENCORES I2C BUS DRIVER
14075 M:      Peter Korsgaard <peter@korsgaard.com>
14076 M:      Andrew Lunn <andrew@lunn.ch>
14077 L:      linux-i2c@vger.kernel.org
14078 S:      Maintained
14079 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14080 F:      Documentation/i2c/busses/i2c-ocores.rst
14081 F:      drivers/i2c/busses/i2c-ocores.c
14082 F:      include/linux/platform_data/i2c-ocores.h
14083
14084 OPENRISC ARCHITECTURE
14085 M:      Jonas Bonn <jonas@southpole.se>
14086 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14087 M:      Stafford Horne <shorne@gmail.com>
14088 L:      openrisc@lists.librecores.org
14089 S:      Maintained
14090 W:      http://openrisc.io
14091 T:      git git://github.com/openrisc/linux.git
14092 F:      Documentation/devicetree/bindings/openrisc/
14093 F:      Documentation/openrisc/
14094 F:      arch/openrisc/
14095 F:      drivers/irqchip/irq-ompic.c
14096 F:      drivers/irqchip/irq-or1k-*
14097
14098 OPENVSWITCH
14099 M:      Pravin B Shelar <pshelar@ovn.org>
14100 L:      netdev@vger.kernel.org
14101 L:      dev@openvswitch.org
14102 S:      Maintained
14103 W:      http://openvswitch.org
14104 F:      include/uapi/linux/openvswitch.h
14105 F:      net/openvswitch/
14106
14107 OPERATING PERFORMANCE POINTS (OPP)
14108 M:      Viresh Kumar <vireshk@kernel.org>
14109 M:      Nishanth Menon <nm@ti.com>
14110 M:      Stephen Boyd <sboyd@kernel.org>
14111 L:      linux-pm@vger.kernel.org
14112 S:      Maintained
14113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14114 F:      Documentation/devicetree/bindings/opp/
14115 F:      Documentation/power/opp.rst
14116 F:      drivers/opp/
14117 F:      include/linux/pm_opp.h
14118
14119 OPL4 DRIVER
14120 M:      Clemens Ladisch <clemens@ladisch.de>
14121 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14122 S:      Maintained
14123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14124 F:      sound/drivers/opl4/
14125
14126 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14127 M:      Mark Fasheh <mark@fasheh.com>
14128 M:      Joel Becker <jlbec@evilplan.org>
14129 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14130 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14131 S:      Supported
14132 W:      http://ocfs2.wiki.kernel.org
14133 F:      Documentation/filesystems/dlmfs.rst
14134 F:      Documentation/filesystems/ocfs2.rst
14135 F:      fs/ocfs2/
14136
14137 ORANGEFS FILESYSTEM
14138 M:      Mike Marshall <hubcap@omnibond.com>
14139 R:      Martin Brandenburg <martin@omnibond.com>
14140 L:      devel@lists.orangefs.org
14141 S:      Supported
14142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14143 F:      Documentation/filesystems/orangefs.rst
14144 F:      fs/orangefs/
14145
14146 ORINOCO DRIVER
14147 L:      linux-wireless@vger.kernel.org
14148 S:      Orphan
14149 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14150 W:      http://www.nongnu.org/orinoco/
14151 F:      drivers/net/wireless/intersil/orinoco/
14152
14153 OV2659 OMNIVISION SENSOR DRIVER
14154 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14155 L:      linux-media@vger.kernel.org
14156 S:      Maintained
14157 W:      https://linuxtv.org
14158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14159 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14160 F:      drivers/media/i2c/ov2659.c
14161 F:      include/media/i2c/ov2659.h
14162
14163 OVERLAY FILESYSTEM
14164 M:      Miklos Szeredi <miklos@szeredi.hu>
14165 L:      linux-unionfs@vger.kernel.org
14166 S:      Supported
14167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14168 F:      Documentation/filesystems/overlayfs.rst
14169 F:      fs/overlayfs/
14170
14171 P54 WIRELESS DRIVER
14172 M:      Christian Lamparter <chunkeey@googlemail.com>
14173 L:      linux-wireless@vger.kernel.org
14174 S:      Maintained
14175 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14176 F:      drivers/net/wireless/intersil/p54/
14177
14178 PACKING
14179 M:      Vladimir Oltean <olteanv@gmail.com>
14180 L:      netdev@vger.kernel.org
14181 S:      Supported
14182 F:      Documentation/core-api/packing.rst
14183 F:      include/linux/packing.h
14184 F:      lib/packing.c
14185
14186 PADATA PARALLEL EXECUTION MECHANISM
14187 M:      Steffen Klassert <steffen.klassert@secunet.com>
14188 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14189 L:      linux-crypto@vger.kernel.org
14190 L:      linux-kernel@vger.kernel.org
14191 S:      Maintained
14192 F:      Documentation/core-api/padata.rst
14193 F:      include/linux/padata.h
14194 F:      kernel/padata.c
14195
14196 PAGE POOL
14197 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14198 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14199 L:      netdev@vger.kernel.org
14200 S:      Supported
14201 F:      Documentation/networking/page_pool.rst
14202 F:      include/net/page_pool.h
14203 F:      include/trace/events/page_pool.h
14204 F:      net/core/page_pool.c
14205
14206 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14207 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14208 L:      platform-driver-x86@vger.kernel.org
14209 S:      Maintained
14210 F:      drivers/platform/x86/panasonic-laptop.c
14211
14212 PARALLAX PING IIO SENSOR DRIVER
14213 M:      Andreas Klinger <ak@it-klinger.de>
14214 L:      linux-iio@vger.kernel.org
14215 S:      Maintained
14216 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14217 F:      drivers/iio/proximity/ping.c
14218
14219 PARALLEL LCD/KEYPAD PANEL DRIVER
14220 M:      Willy Tarreau <willy@haproxy.com>
14221 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14222 S:      Odd Fixes
14223 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14224 F:      drivers/auxdisplay/panel.c
14225
14226 PARALLEL PORT SUBSYSTEM
14227 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14228 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14229 L:      linux-parport@lists.infradead.org (subscribers-only)
14230 S:      Maintained
14231 F:      Documentation/driver-api/parport*.rst
14232 F:      drivers/char/ppdev.c
14233 F:      drivers/parport/
14234 F:      include/linux/parport*.h
14235 F:      include/uapi/linux/ppdev.h
14236
14237 PARAVIRT_OPS INTERFACE
14238 M:      Juergen Gross <jgross@suse.com>
14239 M:      Deep Shah <sdeep@vmware.com>
14240 M:      "VMware, Inc." <pv-drivers@vmware.com>
14241 L:      virtualization@lists.linux-foundation.org
14242 S:      Supported
14243 F:      Documentation/virt/paravirt_ops.rst
14244 F:      arch/*/include/asm/paravirt*.h
14245 F:      arch/*/kernel/paravirt*
14246 F:      include/linux/hypervisor.h
14247
14248 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14249 M:      Tim Waugh <tim@cyberelk.net>
14250 L:      linux-parport@lists.infradead.org (subscribers-only)
14251 S:      Maintained
14252 F:      Documentation/admin-guide/blockdev/paride.rst
14253 F:      drivers/block/paride/
14254
14255 PARISC ARCHITECTURE
14256 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14257 M:      Helge Deller <deller@gmx.de>
14258 L:      linux-parisc@vger.kernel.org
14259 S:      Maintained
14260 W:      https://parisc.wiki.kernel.org
14261 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14264 F:      Documentation/parisc/
14265 F:      arch/parisc/
14266 F:      drivers/char/agp/parisc-agp.c
14267 F:      drivers/input/misc/hp_sdc_rtc.c
14268 F:      drivers/input/serio/gscps2.c
14269 F:      drivers/input/serio/hp_sdc*
14270 F:      drivers/parisc/
14271 F:      drivers/parport/parport_gsc.*
14272 F:      drivers/tty/serial/8250/8250_gsc.c
14273 F:      drivers/video/console/sti*
14274 F:      drivers/video/fbdev/sti*
14275 F:      drivers/video/logo/logo_parisc*
14276 F:      include/linux/hp_sdc.h
14277
14278 PARMAN
14279 M:      Jiri Pirko <jiri@nvidia.com>
14280 L:      netdev@vger.kernel.org
14281 S:      Supported
14282 F:      include/linux/parman.h
14283 F:      lib/parman.c
14284 F:      lib/test_parman.c
14285
14286 PC ENGINES APU BOARD DRIVER
14287 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14288 S:      Maintained
14289 F:      drivers/platform/x86/pcengines-apuv2.c
14290
14291 PC87360 HARDWARE MONITORING DRIVER
14292 M:      Jim Cromie <jim.cromie@gmail.com>
14293 L:      linux-hwmon@vger.kernel.org
14294 S:      Maintained
14295 F:      Documentation/hwmon/pc87360.rst
14296 F:      drivers/hwmon/pc87360.c
14297
14298 PC8736x GPIO DRIVER
14299 M:      Jim Cromie <jim.cromie@gmail.com>
14300 S:      Maintained
14301 F:      drivers/char/pc8736x_gpio.c
14302
14303 PC87427 HARDWARE MONITORING DRIVER
14304 M:      Jean Delvare <jdelvare@suse.com>
14305 L:      linux-hwmon@vger.kernel.org
14306 S:      Maintained
14307 F:      Documentation/hwmon/pc87427.rst
14308 F:      drivers/hwmon/pc87427.c
14309
14310 PCA9532 LED DRIVER
14311 M:      Riku Voipio <riku.voipio@iki.fi>
14312 S:      Maintained
14313 F:      drivers/leds/leds-pca9532.c
14314 F:      include/linux/leds-pca9532.h
14315
14316 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14317 M:      Guenter Roeck <linux@roeck-us.net>
14318 L:      linux-i2c@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14321
14322 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14323 M:      Khalid Aziz <khalid@gonehiking.org>
14324 S:      Maintained
14325 F:      drivers/firmware/pcdp.*
14326
14327 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14328 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14329 M:      Pali Rohár <pali@kernel.org>
14330 L:      linux-pci@vger.kernel.org
14331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14332 S:      Maintained
14333 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14334 F:      drivers/pci/controller/pci-aardvark.c
14335
14336 PCI DRIVER FOR ALTERA PCIE IP
14337 M:      Joyce Ooi <joyce.ooi@intel.com>
14338 L:      linux-pci@vger.kernel.org
14339 S:      Supported
14340 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14341 F:      drivers/pci/controller/pcie-altera.c
14342
14343 PCI DRIVER FOR APPLIEDMICRO XGENE
14344 M:      Toan Le <toan@os.amperecomputing.com>
14345 L:      linux-pci@vger.kernel.org
14346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14347 S:      Maintained
14348 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14349 F:      drivers/pci/controller/pci-xgene.c
14350
14351 PCI DRIVER FOR ARM VERSATILE PLATFORM
14352 M:      Rob Herring <robh@kernel.org>
14353 L:      linux-pci@vger.kernel.org
14354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14355 S:      Maintained
14356 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14357 F:      drivers/pci/controller/pci-versatile.c
14358
14359 PCI DRIVER FOR ARMADA 8K
14360 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14361 L:      linux-pci@vger.kernel.org
14362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14363 S:      Maintained
14364 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14365 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14366
14367 PCI DRIVER FOR CADENCE PCIE IP
14368 M:      Tom Joseph <tjoseph@cadence.com>
14369 L:      linux-pci@vger.kernel.org
14370 S:      Maintained
14371 F:      Documentation/devicetree/bindings/pci/cdns,*
14372 F:      drivers/pci/controller/cadence/
14373
14374 PCI DRIVER FOR FREESCALE LAYERSCAPE
14375 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14376 M:      Mingkai Hu <mingkai.hu@nxp.com>
14377 M:      Roy Zang <roy.zang@nxp.com>
14378 L:      linuxppc-dev@lists.ozlabs.org
14379 L:      linux-pci@vger.kernel.org
14380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14381 S:      Maintained
14382 F:      drivers/pci/controller/dwc/*layerscape*
14383
14384 PCI DRIVER FOR GENERIC OF HOSTS
14385 M:      Will Deacon <will@kernel.org>
14386 L:      linux-pci@vger.kernel.org
14387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14388 S:      Maintained
14389 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14390 F:      drivers/pci/controller/pci-host-common.c
14391 F:      drivers/pci/controller/pci-host-generic.c
14392
14393 PCI DRIVER FOR IMX6
14394 M:      Richard Zhu <hongxing.zhu@nxp.com>
14395 M:      Lucas Stach <l.stach@pengutronix.de>
14396 L:      linux-pci@vger.kernel.org
14397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14398 S:      Maintained
14399 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14400 F:      drivers/pci/controller/dwc/*imx6*
14401
14402 PCI DRIVER FOR FU740
14403 M:      Paul Walmsley <paul.walmsley@sifive.com>
14404 M:      Greentime Hu <greentime.hu@sifive.com>
14405 L:      linux-pci@vger.kernel.org
14406 S:      Maintained
14407 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14408 F:      drivers/pci/controller/dwc/pcie-fu740.c
14409
14410 PCI DRIVER FOR INTEL IXP4XX
14411 M:      Linus Walleij <linus.walleij@linaro.org>
14412 S:      Maintained
14413 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14414 F:      drivers/pci/controller/pci-ixp4xx.c
14415
14416 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14417 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14418 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14419 L:      linux-pci@vger.kernel.org
14420 S:      Supported
14421 F:      drivers/pci/controller/vmd.c
14422
14423 PCI DRIVER FOR MICROSEMI SWITCHTEC
14424 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14425 M:      Logan Gunthorpe <logang@deltatee.com>
14426 L:      linux-pci@vger.kernel.org
14427 S:      Maintained
14428 F:      Documentation/ABI/testing/sysfs-class-switchtec
14429 F:      Documentation/driver-api/switchtec.rst
14430 F:      drivers/ntb/hw/mscc/
14431 F:      drivers/pci/switch/switchtec*
14432 F:      include/linux/switchtec.h
14433 F:      include/uapi/linux/switchtec_ioctl.h
14434
14435 PCI DRIVER FOR MOBIVEIL PCIE IP
14436 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14437 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14438 L:      linux-pci@vger.kernel.org
14439 S:      Supported
14440 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14441 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14442
14443 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14444 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14445 L:      linux-pci@vger.kernel.org
14446 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14447 S:      Maintained
14448 F:      drivers/pci/controller/*mvebu*
14449
14450 PCI DRIVER FOR NVIDIA TEGRA
14451 M:      Thierry Reding <thierry.reding@gmail.com>
14452 L:      linux-tegra@vger.kernel.org
14453 L:      linux-pci@vger.kernel.org
14454 S:      Supported
14455 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14456 F:      drivers/pci/controller/pci-tegra.c
14457
14458 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14459 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14460 L:      linux-pci@vger.kernel.org
14461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14462 S:      Maintained
14463 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14464 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14465
14466 PCI DRIVER FOR RENESAS R-CAR
14467 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14468 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14469 L:      linux-pci@vger.kernel.org
14470 L:      linux-renesas-soc@vger.kernel.org
14471 S:      Maintained
14472 F:      Documentation/devicetree/bindings/pci/*rcar*
14473 F:      drivers/pci/controller/*rcar*
14474
14475 PCI DRIVER FOR SAMSUNG EXYNOS
14476 M:      Jingoo Han <jingoohan1@gmail.com>
14477 L:      linux-pci@vger.kernel.org
14478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14479 L:      linux-samsung-soc@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/pci/controller/dwc/pci-exynos.c
14482
14483 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14484 M:      Jingoo Han <jingoohan1@gmail.com>
14485 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14486 L:      linux-pci@vger.kernel.org
14487 S:      Maintained
14488 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14489 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14490 F:      drivers/pci/controller/dwc/*designware*
14491
14492 PCI DRIVER FOR TI DRA7XX/J721E
14493 M:      Kishon Vijay Abraham I <kishon@ti.com>
14494 L:      linux-omap@vger.kernel.org
14495 L:      linux-pci@vger.kernel.org
14496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14497 S:      Supported
14498 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14499 F:      drivers/pci/controller/cadence/pci-j721e.c
14500 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14501
14502 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14503 M:      Linus Walleij <linus.walleij@linaro.org>
14504 L:      linux-pci@vger.kernel.org
14505 S:      Maintained
14506 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14507 F:      drivers/pci/controller/pci-v3-semi.c
14508
14509 PCI ENDPOINT SUBSYSTEM
14510 M:      Kishon Vijay Abraham I <kishon@ti.com>
14511 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14512 R:      Krzysztof Wilczyński <kw@linux.com>
14513 L:      linux-pci@vger.kernel.org
14514 S:      Supported
14515 F:      Documentation/PCI/endpoint/*
14516 F:      Documentation/misc-devices/pci-endpoint-test.rst
14517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14518 F:      drivers/misc/pci_endpoint_test.c
14519 F:      drivers/pci/endpoint/
14520 F:      tools/pci/
14521
14522 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14523 M:      Russell Currey <ruscur@russell.cc>
14524 M:      Oliver O'Halloran <oohall@gmail.com>
14525 L:      linuxppc-dev@lists.ozlabs.org
14526 S:      Supported
14527 F:      Documentation/PCI/pci-error-recovery.rst
14528 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14529 F:      arch/powerpc/include/*/eeh*.h
14530 F:      arch/powerpc/kernel/eeh*.c
14531 F:      arch/powerpc/platforms/*/eeh*.c
14532 F:      drivers/pci/pcie/aer.c
14533 F:      drivers/pci/pcie/dpc.c
14534 F:      drivers/pci/pcie/err.c
14535
14536 PCI ERROR RECOVERY
14537 M:      Linas Vepstas <linasvepstas@gmail.com>
14538 L:      linux-pci@vger.kernel.org
14539 S:      Supported
14540 F:      Documentation/PCI/pci-error-recovery.rst
14541
14542 PCI MSI DRIVER FOR ALTERA MSI IP
14543 M:      Joyce Ooi <joyce.ooi@intel.com>
14544 L:      linux-pci@vger.kernel.org
14545 S:      Supported
14546 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14547 F:      drivers/pci/controller/pcie-altera-msi.c
14548
14549 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14550 M:      Toan Le <toan@os.amperecomputing.com>
14551 L:      linux-pci@vger.kernel.org
14552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14553 S:      Maintained
14554 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14555 F:      drivers/pci/controller/pci-xgene-msi.c
14556
14557 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14558 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14559 R:      Rob Herring <robh@kernel.org>
14560 R:      Krzysztof Wilczyński <kw@linux.com>
14561 L:      linux-pci@vger.kernel.org
14562 S:      Supported
14563 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14565 F:      drivers/pci/controller/
14566
14567 PCI SUBSYSTEM
14568 M:      Bjorn Helgaas <bhelgaas@google.com>
14569 L:      linux-pci@vger.kernel.org
14570 S:      Supported
14571 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14573 F:      Documentation/PCI/
14574 F:      Documentation/devicetree/bindings/pci/
14575 F:      arch/x86/kernel/early-quirks.c
14576 F:      arch/x86/kernel/quirks.c
14577 F:      arch/x86/pci/
14578 F:      drivers/acpi/pci*
14579 F:      drivers/pci/
14580 F:      include/asm-generic/pci*
14581 F:      include/linux/of_pci.h
14582 F:      include/linux/pci*
14583 F:      include/uapi/linux/pci*
14584 F:      lib/pci*
14585
14586 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14587 M:      Jonathan Chocron <jonnyc@amazon.com>
14588 L:      linux-pci@vger.kernel.org
14589 S:      Maintained
14590 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14591 F:      drivers/pci/controller/dwc/pcie-al.c
14592
14593 PCIE DRIVER FOR AMLOGIC MESON
14594 M:      Yue Wang <yue.wang@Amlogic.com>
14595 L:      linux-pci@vger.kernel.org
14596 L:      linux-amlogic@lists.infradead.org
14597 S:      Maintained
14598 F:      drivers/pci/controller/dwc/pci-meson.c
14599
14600 PCIE DRIVER FOR AXIS ARTPEC
14601 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14602 L:      linux-arm-kernel@axis.com
14603 L:      linux-pci@vger.kernel.org
14604 S:      Maintained
14605 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14606 F:      drivers/pci/controller/dwc/*artpec*
14607
14608 PCIE DRIVER FOR CAVIUM THUNDERX
14609 M:      Robert Richter <rric@kernel.org>
14610 L:      linux-pci@vger.kernel.org
14611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14612 S:      Odd Fixes
14613 F:      drivers/pci/controller/pci-thunder-*
14614
14615 PCIE DRIVER FOR HISILICON
14616 M:      Zhou Wang <wangzhou1@hisilicon.com>
14617 L:      linux-pci@vger.kernel.org
14618 S:      Maintained
14619 F:      drivers/pci/controller/dwc/pcie-hisi.c
14620
14621 PCIE DRIVER FOR HISILICON KIRIN
14622 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14623 M:      Binghui Wang <wangbinghui@hisilicon.com>
14624 L:      linux-pci@vger.kernel.org
14625 S:      Maintained
14626 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14627 F:      drivers/pci/controller/dwc/pcie-kirin.c
14628
14629 PCIE DRIVER FOR HISILICON STB
14630 M:      Shawn Guo <shawn.guo@linaro.org>
14631 L:      linux-pci@vger.kernel.org
14632 S:      Maintained
14633 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14634 F:      drivers/pci/controller/dwc/pcie-histb.c
14635
14636 PCIE DRIVER FOR INTEL KEEM BAY
14637 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14638 L:      linux-pci@vger.kernel.org
14639 S:      Supported
14640 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14641 F:      drivers/pci/controller/dwc/pcie-keembay.c
14642
14643 PCIE DRIVER FOR INTEL LGM GW SOC
14644 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14645 L:      linux-pci@vger.kernel.org
14646 S:      Maintained
14647 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14648 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14649
14650 PCIE DRIVER FOR MEDIATEK
14651 M:      Ryder Lee <ryder.lee@mediatek.com>
14652 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14653 L:      linux-pci@vger.kernel.org
14654 L:      linux-mediatek@lists.infradead.org
14655 S:      Supported
14656 F:      Documentation/devicetree/bindings/pci/mediatek*
14657 F:      drivers/pci/controller/*mediatek*
14658
14659 PCIE DRIVER FOR MICROCHIP
14660 M:      Daire McNamara <daire.mcnamara@microchip.com>
14661 L:      linux-pci@vger.kernel.org
14662 S:      Supported
14663 F:      Documentation/devicetree/bindings/pci/microchip*
14664 F:      drivers/pci/controller/*microchip*
14665
14666 PCIE DRIVER FOR QUALCOMM MSM
14667 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14668 L:      linux-pci@vger.kernel.org
14669 L:      linux-arm-msm@vger.kernel.org
14670 S:      Maintained
14671 F:      drivers/pci/controller/dwc/*qcom*
14672
14673 PCIE DRIVER FOR ROCKCHIP
14674 M:      Shawn Lin <shawn.lin@rock-chips.com>
14675 L:      linux-pci@vger.kernel.org
14676 L:      linux-rockchip@lists.infradead.org
14677 S:      Maintained
14678 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14679 F:      drivers/pci/controller/pcie-rockchip*
14680
14681 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14682 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14683 L:      linux-pci@vger.kernel.org
14684 S:      Maintained
14685 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14686 F:      drivers/pci/controller/dwc/pcie-uniphier*
14687
14688 PCIE DRIVER FOR ST SPEAR13XX
14689 M:      Pratyush Anand <pratyush.anand@gmail.com>
14690 L:      linux-pci@vger.kernel.org
14691 S:      Maintained
14692 F:      drivers/pci/controller/dwc/*spear*
14693
14694 PCMCIA SUBSYSTEM
14695 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14696 S:      Odd Fixes
14697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14698 F:      Documentation/pcmcia/
14699 F:      drivers/pcmcia/
14700 F:      include/pcmcia/
14701 F:      tools/pcmcia/
14702
14703 PCNET32 NETWORK DRIVER
14704 M:      Don Fry <pcnet32@frontier.com>
14705 L:      netdev@vger.kernel.org
14706 S:      Maintained
14707 F:      drivers/net/ethernet/amd/pcnet32.c
14708
14709 PCRYPT PARALLEL CRYPTO ENGINE
14710 M:      Steffen Klassert <steffen.klassert@secunet.com>
14711 L:      linux-crypto@vger.kernel.org
14712 S:      Maintained
14713 F:      crypto/pcrypt.c
14714 F:      include/crypto/pcrypt.h
14715
14716 PEAQ WMI HOTKEYS DRIVER
14717 M:      Hans de Goede <hdegoede@redhat.com>
14718 L:      platform-driver-x86@vger.kernel.org
14719 S:      Maintained
14720 F:      drivers/platform/x86/peaq-wmi.c
14721
14722 PENSANDO ETHERNET DRIVERS
14723 M:      Shannon Nelson <snelson@pensando.io>
14724 M:      drivers@pensando.io
14725 L:      netdev@vger.kernel.org
14726 S:      Supported
14727 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14728 F:      drivers/net/ethernet/pensando/
14729
14730 PER-CPU MEMORY ALLOCATOR
14731 M:      Dennis Zhou <dennis@kernel.org>
14732 M:      Tejun Heo <tj@kernel.org>
14733 M:      Christoph Lameter <cl@linux.com>
14734 L:      linux-mm@kvack.org
14735 S:      Maintained
14736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14737 F:      arch/*/include/asm/percpu.h
14738 F:      include/linux/percpu*.h
14739 F:      lib/percpu*.c
14740 F:      mm/percpu*.c
14741
14742 PER-TASK DELAY ACCOUNTING
14743 M:      Balbir Singh <bsingharora@gmail.com>
14744 S:      Maintained
14745 F:      include/linux/delayacct.h
14746 F:      kernel/delayacct.c
14747
14748 PERFORMANCE EVENTS SUBSYSTEM
14749 M:      Peter Zijlstra <peterz@infradead.org>
14750 M:      Ingo Molnar <mingo@redhat.com>
14751 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14752 R:      Mark Rutland <mark.rutland@arm.com>
14753 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14754 R:      Jiri Olsa <jolsa@redhat.com>
14755 R:      Namhyung Kim <namhyung@kernel.org>
14756 L:      linux-perf-users@vger.kernel.org
14757 L:      linux-kernel@vger.kernel.org
14758 S:      Supported
14759 W:      https://perf.wiki.kernel.org/
14760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14761 F:      arch/*/events/*
14762 F:      arch/*/events/*/*
14763 F:      arch/*/include/asm/perf_event.h
14764 F:      arch/*/kernel/*/*/perf_event*.c
14765 F:      arch/*/kernel/*/perf_event*.c
14766 F:      arch/*/kernel/perf_callchain.c
14767 F:      arch/*/kernel/perf_event*.c
14768 F:      include/linux/perf_event.h
14769 F:      include/uapi/linux/perf_event.h
14770 F:      kernel/events/*
14771 F:      tools/lib/perf/
14772 F:      tools/perf/
14773
14774 PERFORMANCE EVENTS TOOLING ARM64
14775 R:      John Garry <john.garry@huawei.com>
14776 R:      Will Deacon <will@kernel.org>
14777 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14778 R:      Leo Yan <leo.yan@linaro.org>
14779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14780 S:      Supported
14781 F:      tools/build/feature/test-libopencsd.c
14782 F:      tools/perf/arch/arm*/
14783 F:      tools/perf/pmu-events/arch/arm64/
14784 F:      tools/perf/util/arm-spe*
14785 F:      tools/perf/util/cs-etm*
14786
14787 PERSONALITY HANDLING
14788 M:      Christoph Hellwig <hch@infradead.org>
14789 L:      linux-abi-devel@lists.sourceforge.net
14790 S:      Maintained
14791 F:      include/linux/personality.h
14792 F:      include/uapi/linux/personality.h
14793
14794 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14795 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14796 L:      linux-input@vger.kernel.org
14797 S:      Maintained
14798 F:      Documentation/input/devices/pxrc.rst
14799 F:      drivers/input/joystick/pxrc.c
14800
14801 PHONET PROTOCOL
14802 M:      Remi Denis-Courmont <courmisch@gmail.com>
14803 S:      Supported
14804 F:      Documentation/networking/phonet.rst
14805 F:      include/linux/phonet.h
14806 F:      include/net/phonet/
14807 F:      include/uapi/linux/phonet.h
14808 F:      net/phonet/
14809
14810 PHRAM MTD DRIVER
14811 M:      Joern Engel <joern@lazybastard.org>
14812 L:      linux-mtd@lists.infradead.org
14813 S:      Maintained
14814 F:      drivers/mtd/devices/phram.c
14815
14816 PICOLCD HID DRIVER
14817 M:      Bruno Prémont <bonbons@linux-vserver.org>
14818 L:      linux-input@vger.kernel.org
14819 S:      Maintained
14820 F:      drivers/hid/hid-picolcd*
14821
14822 PIDFD API
14823 M:      Christian Brauner <christian@brauner.io>
14824 L:      linux-kernel@vger.kernel.org
14825 S:      Maintained
14826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14827 F:      samples/pidfd/
14828 F:      tools/testing/selftests/clone3/
14829 F:      tools/testing/selftests/pid_namespace/
14830 F:      tools/testing/selftests/pidfd/
14831 K:      (?i)pidfd
14832 K:      (?i)clone3
14833 K:      \b(clone_args|kernel_clone_args)\b
14834
14835 PIN CONTROL SUBSYSTEM
14836 M:      Linus Walleij <linus.walleij@linaro.org>
14837 L:      linux-gpio@vger.kernel.org
14838 S:      Maintained
14839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14840 F:      Documentation/devicetree/bindings/pinctrl/
14841 F:      Documentation/driver-api/pin-control.rst
14842 F:      drivers/pinctrl/
14843 F:      include/linux/pinctrl/
14844
14845 PIN CONTROLLER - AMD
14846 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14847 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14848 S:      Maintained
14849 F:      drivers/pinctrl/pinctrl-amd.c
14850
14851 PIN CONTROLLER - FREESCALE
14852 M:      Dong Aisheng <aisheng.dong@nxp.com>
14853 M:      Fabio Estevam <festevam@gmail.com>
14854 M:      Shawn Guo <shawnguo@kernel.org>
14855 M:      Stefan Agner <stefan@agner.ch>
14856 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14857 L:      linux-gpio@vger.kernel.org
14858 S:      Maintained
14859 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14860 F:      drivers/pinctrl/freescale/
14861
14862 PIN CONTROLLER - INTEL
14863 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14864 M:      Andy Shevchenko <andy@kernel.org>
14865 S:      Maintained
14866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14867 F:      drivers/pinctrl/intel/
14868
14869 PIN CONTROLLER - KEEMBAY
14870 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14871 S:      Supported
14872 F:      drivers/pinctrl/pinctrl-keembay*
14873
14874 PIN CONTROLLER - MEDIATEK
14875 M:      Sean Wang <sean.wang@kernel.org>
14876 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14877 S:      Maintained
14878 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14879 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14880 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14881 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14882 F:      drivers/pinctrl/mediatek/
14883
14884 PIN CONTROLLER - MICROCHIP AT91
14885 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14887 L:      linux-gpio@vger.kernel.org
14888 S:      Supported
14889 F:      drivers/gpio/gpio-sama5d2-piobu.c
14890 F:      drivers/pinctrl/pinctrl-at91*
14891
14892 PIN CONTROLLER - QUALCOMM
14893 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14894 L:      linux-arm-msm@vger.kernel.org
14895 S:      Maintained
14896 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14897 F:      drivers/pinctrl/qcom/
14898
14899 PIN CONTROLLER - RENESAS
14900 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14901 L:      linux-renesas-soc@vger.kernel.org
14902 S:      Supported
14903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14904 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14905 F:      drivers/pinctrl/renesas/
14906
14907 PIN CONTROLLER - SAMSUNG
14908 M:      Tomasz Figa <tomasz.figa@gmail.com>
14909 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14910 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14912 L:      linux-samsung-soc@vger.kernel.org
14913 S:      Maintained
14914 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14916 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14917 F:      drivers/pinctrl/samsung/
14918 F:      include/dt-bindings/pinctrl/samsung.h
14919
14920 PIN CONTROLLER - SINGLE
14921 M:      Tony Lindgren <tony@atomide.com>
14922 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14924 L:      linux-omap@vger.kernel.org
14925 S:      Maintained
14926 F:      drivers/pinctrl/pinctrl-single.c
14927
14928 PIN CONTROLLER - ST SPEAR
14929 M:      Viresh Kumar <vireshk@kernel.org>
14930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14931 S:      Maintained
14932 W:      http://www.st.com/spear
14933 F:      drivers/pinctrl/spear/
14934
14935 PKTCDVD DRIVER
14936 M:      linux-block@vger.kernel.org
14937 S:      Orphan
14938 F:      drivers/block/pktcdvd.c
14939 F:      include/linux/pktcdvd.h
14940 F:      include/uapi/linux/pktcdvd.h
14941
14942 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14943 M:      Tomasz Duszynski <tduszyns@gmail.com>
14944 S:      Maintained
14945 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14946 F:      drivers/iio/chemical/pms7003.c
14947
14948 PLDMFW LIBRARY
14949 M:      Jacob Keller <jacob.e.keller@intel.com>
14950 S:      Maintained
14951 F:      Documentation/driver-api/pldmfw/
14952 F:      include/linux/pldmfw.h
14953 F:      lib/pldmfw/
14954
14955 PLX DMA DRIVER
14956 M:      Logan Gunthorpe <logang@deltatee.com>
14957 S:      Maintained
14958 F:      drivers/dma/plx_dma.c
14959
14960 PM6764TR DRIVER
14961 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14962 L:      linux-hwmon@vger.kernel.org
14963 S:      Maintained
14964 F:      Documentation/hwmon/pm6764tr.rst
14965 F:      drivers/hwmon/pmbus/pm6764tr.c
14966
14967 PM-GRAPH UTILITY
14968 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14969 L:      linux-pm@vger.kernel.org
14970 S:      Supported
14971 W:      https://01.org/pm-graph
14972 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14973 T:      git git://github.com/intel/pm-graph
14974 F:      tools/power/pm-graph
14975
14976 PMBUS HARDWARE MONITORING DRIVERS
14977 M:      Guenter Roeck <linux@roeck-us.net>
14978 L:      linux-hwmon@vger.kernel.org
14979 S:      Maintained
14980 W:      http://hwmon.wiki.kernel.org/
14981 W:      http://www.roeck-us.net/linux/drivers/
14982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14983 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14984 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14985 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14986 F:      Documentation/hwmon/adm1275.rst
14987 F:      Documentation/hwmon/ibm-cffps.rst
14988 F:      Documentation/hwmon/ir35221.rst
14989 F:      Documentation/hwmon/lm25066.rst
14990 F:      Documentation/hwmon/ltc2978.rst
14991 F:      Documentation/hwmon/ltc3815.rst
14992 F:      Documentation/hwmon/max16064.rst
14993 F:      Documentation/hwmon/max20751.rst
14994 F:      Documentation/hwmon/max31785.rst
14995 F:      Documentation/hwmon/max34440.rst
14996 F:      Documentation/hwmon/max8688.rst
14997 F:      Documentation/hwmon/pmbus-core.rst
14998 F:      Documentation/hwmon/pmbus.rst
14999 F:      Documentation/hwmon/tps40422.rst
15000 F:      Documentation/hwmon/ucd9000.rst
15001 F:      Documentation/hwmon/ucd9200.rst
15002 F:      Documentation/hwmon/zl6100.rst
15003 F:      drivers/hwmon/pmbus/
15004 F:      include/linux/pmbus.h
15005
15006 PMC SIERRA MaxRAID DRIVER
15007 L:      linux-scsi@vger.kernel.org
15008 S:      Orphan
15009 W:      http://www.pmc-sierra.com/
15010 F:      drivers/scsi/pmcraid.*
15011
15012 PMC SIERRA PM8001 DRIVER
15013 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15014 L:      linux-scsi@vger.kernel.org
15015 S:      Supported
15016 F:      drivers/scsi/pm8001/
15017
15018 PNI RM3100 IIO DRIVER
15019 M:      Song Qiang <songqiang1304521@gmail.com>
15020 L:      linux-iio@vger.kernel.org
15021 S:      Maintained
15022 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15023 F:      drivers/iio/magnetometer/rm3100*
15024
15025 PNP SUPPORT
15026 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15027 L:      linux-acpi@vger.kernel.org
15028 S:      Maintained
15029 F:      drivers/pnp/
15030 F:      include/linux/pnp.h
15031
15032 POSIX CLOCKS and TIMERS
15033 M:      Thomas Gleixner <tglx@linutronix.de>
15034 L:      linux-kernel@vger.kernel.org
15035 S:      Maintained
15036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15037 F:      fs/timerfd.c
15038 F:      include/linux/time_namespace.h
15039 F:      include/linux/timer*
15040 F:      kernel/time/*timer*
15041 F:      kernel/time/namespace.c
15042
15043 POWER MANAGEMENT CORE
15044 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15045 L:      linux-pm@vger.kernel.org
15046 S:      Supported
15047 B:      https://bugzilla.kernel.org
15048 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15049 F:      drivers/base/power/
15050 F:      drivers/powercap/
15051 F:      include/linux/intel_rapl.h
15052 F:      include/linux/pm.h
15053 F:      include/linux/pm_*
15054 F:      include/linux/powercap.h
15055 F:      kernel/configs/nopm.config
15056
15057 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15058 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15059 L:      linux-pm@vger.kernel.org
15060 S:      Supported
15061 B:      https://bugzilla.kernel.org
15062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15063 F:      drivers/powercap/dtpm*
15064 F:      include/linux/dtpm.h
15065
15066 POWER STATE COORDINATION INTERFACE (PSCI)
15067 M:      Mark Rutland <mark.rutland@arm.com>
15068 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15070 S:      Maintained
15071 F:      drivers/firmware/psci/
15072 F:      include/linux/psci.h
15073 F:      include/uapi/linux/psci.h
15074
15075 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15076 M:      Sebastian Reichel <sre@kernel.org>
15077 L:      linux-pm@vger.kernel.org
15078 S:      Maintained
15079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15080 F:      Documentation/ABI/testing/sysfs-class-power
15081 F:      Documentation/devicetree/bindings/power/supply/
15082 F:      drivers/power/supply/
15083 F:      include/linux/power/
15084 F:      include/linux/power_supply.h
15085
15086 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15087 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15088 L:      linuxppc-dev@lists.ozlabs.org
15089 S:      Maintained
15090 F:      drivers/char/powernv-op-panel.c
15091
15092 PPP OVER ATM (RFC 2364)
15093 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15094 S:      Maintained
15095 F:      include/uapi/linux/atmppp.h
15096 F:      net/atm/pppoatm.c
15097
15098 PPP OVER ETHERNET
15099 M:      Michal Ostrowski <mostrows@earthlink.net>
15100 S:      Maintained
15101 F:      drivers/net/ppp/pppoe.c
15102 F:      drivers/net/ppp/pppox.c
15103
15104 PPP OVER L2TP
15105 M:      James Chapman <jchapman@katalix.com>
15106 S:      Maintained
15107 F:      include/linux/if_pppol2tp.h
15108 F:      include/uapi/linux/if_pppol2tp.h
15109 F:      net/l2tp/l2tp_ppp.c
15110
15111 PPP PROTOCOL DRIVERS AND COMPRESSORS
15112 M:      Paul Mackerras <paulus@samba.org>
15113 L:      linux-ppp@vger.kernel.org
15114 S:      Maintained
15115 F:      drivers/net/ppp/ppp_*
15116
15117 PPS SUPPORT
15118 M:      Rodolfo Giometti <giometti@enneenne.com>
15119 L:      linuxpps@ml.enneenne.com (subscribers-only)
15120 S:      Maintained
15121 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15122 F:      Documentation/ABI/testing/sysfs-pps
15123 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15124 F:      Documentation/driver-api/pps.rst
15125 F:      drivers/pps/
15126 F:      include/linux/pps*.h
15127 F:      include/uapi/linux/pps.h
15128
15129 PPTP DRIVER
15130 M:      Dmitry Kozlov <xeb@mail.ru>
15131 L:      netdev@vger.kernel.org
15132 S:      Maintained
15133 W:      http://sourceforge.net/projects/accel-pptp
15134 F:      drivers/net/ppp/pptp.c
15135
15136 PRESSURE STALL INFORMATION (PSI)
15137 M:      Johannes Weiner <hannes@cmpxchg.org>
15138 S:      Maintained
15139 F:      include/linux/psi*
15140 F:      kernel/sched/psi.c
15141
15142 PRINTK
15143 M:      Petr Mladek <pmladek@suse.com>
15144 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15145 R:      Steven Rostedt <rostedt@goodmis.org>
15146 R:      John Ogness <john.ogness@linutronix.de>
15147 S:      Maintained
15148 F:      include/linux/printk.h
15149 F:      kernel/printk/
15150
15151 PRINTK INDEXING
15152 R:      Chris Down <chris@chrisdown.name>
15153 S:      Maintained
15154 F:      kernel/printk/index.c
15155
15156 PROC FILESYSTEM
15157 L:      linux-kernel@vger.kernel.org
15158 L:      linux-fsdevel@vger.kernel.org
15159 S:      Maintained
15160 F:      Documentation/filesystems/proc.rst
15161 F:      fs/proc/
15162 F:      include/linux/proc_fs.h
15163 F:      tools/testing/selftests/proc/
15164
15165 PROC SYSCTL
15166 M:      Luis Chamberlain <mcgrof@kernel.org>
15167 M:      Kees Cook <keescook@chromium.org>
15168 M:      Iurii Zaikin <yzaikin@google.com>
15169 L:      linux-kernel@vger.kernel.org
15170 L:      linux-fsdevel@vger.kernel.org
15171 S:      Maintained
15172 F:      fs/proc/proc_sysctl.c
15173 F:      include/linux/sysctl.h
15174 F:      kernel/sysctl-test.c
15175 F:      kernel/sysctl.c
15176 F:      tools/testing/selftests/sysctl/
15177
15178 PS3 NETWORK SUPPORT
15179 M:      Geoff Levand <geoff@infradead.org>
15180 L:      netdev@vger.kernel.org
15181 L:      linuxppc-dev@lists.ozlabs.org
15182 S:      Maintained
15183 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15184
15185 PS3 PLATFORM SUPPORT
15186 M:      Geoff Levand <geoff@infradead.org>
15187 L:      linuxppc-dev@lists.ozlabs.org
15188 S:      Maintained
15189 F:      arch/powerpc/boot/ps3*
15190 F:      arch/powerpc/include/asm/lv1call.h
15191 F:      arch/powerpc/include/asm/ps3*.h
15192 F:      arch/powerpc/platforms/ps3/
15193 F:      drivers/*/ps3*
15194 F:      drivers/ps3/
15195 F:      drivers/rtc/rtc-ps3.c
15196 F:      drivers/usb/host/*ps3.c
15197 F:      sound/ppc/snd_ps3*
15198
15199 PS3VRAM DRIVER
15200 M:      Jim Paris <jim@jtan.com>
15201 M:      Geoff Levand <geoff@infradead.org>
15202 L:      linuxppc-dev@lists.ozlabs.org
15203 S:      Maintained
15204 F:      drivers/block/ps3vram.c
15205
15206 PSAMPLE PACKET SAMPLING SUPPORT
15207 M:      Yotam Gigi <yotam.gi@gmail.com>
15208 S:      Maintained
15209 F:      include/net/psample.h
15210 F:      include/uapi/linux/psample.h
15211 F:      net/psample
15212
15213 PSTORE FILESYSTEM
15214 M:      Kees Cook <keescook@chromium.org>
15215 M:      Anton Vorontsov <anton@enomsg.org>
15216 M:      Colin Cross <ccross@android.com>
15217 M:      Tony Luck <tony.luck@intel.com>
15218 S:      Maintained
15219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15220 F:      Documentation/admin-guide/ramoops.rst
15221 F:      Documentation/admin-guide/pstore-blk.rst
15222 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15223 F:      drivers/acpi/apei/erst.c
15224 F:      drivers/firmware/efi/efi-pstore.c
15225 F:      fs/pstore/
15226 F:      include/linux/pstore*
15227 K:      \b(pstore|ramoops)
15228
15229 PTP HARDWARE CLOCK SUPPORT
15230 M:      Richard Cochran <richardcochran@gmail.com>
15231 L:      netdev@vger.kernel.org
15232 S:      Maintained
15233 W:      http://linuxptp.sourceforge.net/
15234 F:      Documentation/ABI/testing/sysfs-ptp
15235 F:      Documentation/driver-api/ptp.rst
15236 F:      drivers/net/phy/dp83640*
15237 F:      drivers/ptp/*
15238 F:      include/linux/ptp_cl*
15239
15240 PTP VIRTUAL CLOCK SUPPORT
15241 M:      Yangbo Lu <yangbo.lu@nxp.com>
15242 L:      netdev@vger.kernel.org
15243 S:      Maintained
15244 F:      drivers/ptp/ptp_vclock.c
15245 F:      net/ethtool/phc_vclocks.c
15246
15247 PTRACE SUPPORT
15248 M:      Oleg Nesterov <oleg@redhat.com>
15249 S:      Maintained
15250 F:      arch/*/*/ptrace*.c
15251 F:      arch/*/include/asm/ptrace*.h
15252 F:      arch/*/ptrace*.c
15253 F:      include/asm-generic/syscall.h
15254 F:      include/linux/ptrace.h
15255 F:      include/linux/regset.h
15256 F:      include/linux/tracehook.h
15257 F:      include/uapi/linux/ptrace.h
15258 F:      include/uapi/linux/ptrace.h
15259 F:      kernel/ptrace.c
15260
15261 PULSE8-CEC DRIVER
15262 M:      Hans Verkuil <hverkuil@xs4all.nl>
15263 L:      linux-media@vger.kernel.org
15264 S:      Maintained
15265 T:      git git://linuxtv.org/media_tree.git
15266 F:      Documentation/admin-guide/media/pulse8-cec.rst
15267 F:      drivers/media/cec/usb/pulse8/
15268
15269 PVRUSB2 VIDEO4LINUX DRIVER
15270 M:      Mike Isely <isely@pobox.com>
15271 L:      pvrusb2@isely.net       (subscribers-only)
15272 L:      linux-media@vger.kernel.org
15273 S:      Maintained
15274 W:      http://www.isely.net/pvrusb2/
15275 T:      git git://linuxtv.org/media_tree.git
15276 F:      Documentation/driver-api/media/drivers/pvrusb2*
15277 F:      drivers/media/usb/pvrusb2/
15278
15279 PWC WEBCAM DRIVER
15280 M:      Hans Verkuil <hverkuil@xs4all.nl>
15281 L:      linux-media@vger.kernel.org
15282 S:      Odd Fixes
15283 T:      git git://linuxtv.org/media_tree.git
15284 F:      drivers/media/usb/pwc/*
15285 F:      include/trace/events/pwc.h
15286
15287 PWM FAN DRIVER
15288 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15289 L:      linux-hwmon@vger.kernel.org
15290 S:      Supported
15291 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15292 F:      Documentation/hwmon/pwm-fan.rst
15293 F:      drivers/hwmon/pwm-fan.c
15294
15295 PWM IR Transmitter
15296 M:      Sean Young <sean@mess.org>
15297 L:      linux-media@vger.kernel.org
15298 S:      Maintained
15299 F:      drivers/media/rc/pwm-ir-tx.c
15300
15301 PWM SUBSYSTEM
15302 M:      Thierry Reding <thierry.reding@gmail.com>
15303 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15304 M:      Lee Jones <lee.jones@linaro.org>
15305 L:      linux-pwm@vger.kernel.org
15306 S:      Maintained
15307 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15309 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15310 F:      Documentation/devicetree/bindings/pwm/
15311 F:      Documentation/driver-api/pwm.rst
15312 F:      drivers/gpio/gpio-mvebu.c
15313 F:      drivers/pwm/
15314 F:      drivers/video/backlight/pwm_bl.c
15315 F:      include/linux/pwm.h
15316 F:      include/linux/pwm_backlight.h
15317 K:      pwm_(config|apply_state|ops)
15318
15319 PXA GPIO DRIVER
15320 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15321 L:      linux-gpio@vger.kernel.org
15322 S:      Maintained
15323 F:      drivers/gpio/gpio-pxa.c
15324
15325 PXA MMCI DRIVER
15326 S:      Orphan
15327
15328 PXA RTC DRIVER
15329 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15330 L:      linux-rtc@vger.kernel.org
15331 S:      Maintained
15332
15333 PXA2xx/PXA3xx SUPPORT
15334 M:      Daniel Mack <daniel@zonque.org>
15335 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15336 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15338 S:      Maintained
15339 T:      git git://github.com/hzhuang1/linux.git
15340 T:      git git://github.com/rjarzmik/linux.git
15341 F:      arch/arm/boot/dts/pxa*
15342 F:      arch/arm/mach-pxa/
15343 F:      drivers/dma/pxa*
15344 F:      drivers/pcmcia/pxa2xx*
15345 F:      drivers/pinctrl/pxa/
15346 F:      drivers/spi/spi-pxa2xx*
15347 F:      drivers/usb/gadget/udc/pxa2*
15348 F:      include/sound/pxa2xx-lib.h
15349 F:      sound/arm/pxa*
15350 F:      sound/soc/pxa/
15351
15352 QAT DRIVER
15353 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15354 L:      qat-linux@intel.com
15355 S:      Supported
15356 F:      drivers/crypto/qat/
15357
15358 QCOM AUDIO (ASoC) DRIVERS
15359 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15360 M:      Banajit Goswami <bgoswami@codeaurora.org>
15361 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15362 S:      Supported
15363 F:      sound/soc/codecs/lpass-va-macro.c
15364 F:      sound/soc/codecs/lpass-wsa-macro.*
15365 F:      sound/soc/codecs/msm8916-wcd-analog.c
15366 F:      sound/soc/codecs/msm8916-wcd-digital.c
15367 F:      sound/soc/codecs/wcd9335.*
15368 F:      sound/soc/codecs/wcd934x.c
15369 F:      sound/soc/codecs/wcd-clsh-v2.*
15370 F:      sound/soc/codecs/wsa881x.c
15371 F:      sound/soc/qcom/
15372
15373 QCOM IPA DRIVER
15374 M:      Alex Elder <elder@kernel.org>
15375 L:      netdev@vger.kernel.org
15376 S:      Supported
15377 F:      drivers/net/ipa/
15378
15379 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15380 M:      Gabriel Somlo <somlo@cmu.edu>
15381 M:      "Michael S. Tsirkin" <mst@redhat.com>
15382 L:      qemu-devel@nongnu.org
15383 S:      Maintained
15384 F:      drivers/firmware/qemu_fw_cfg.c
15385 F:      include/uapi/linux/qemu_fw_cfg.h
15386
15387 QIB DRIVER
15388 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15389 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15390 L:      linux-rdma@vger.kernel.org
15391 S:      Supported
15392 F:      drivers/infiniband/hw/qib/
15393
15394 QLOGIC QL41xxx FCOE DRIVER
15395 M:      Saurav Kashyap <skashyap@marvell.com>
15396 M:      Javed Hasan <jhasan@marvell.com>
15397 M:      GR-QLogic-Storage-Upstream@marvell.com
15398 L:      linux-scsi@vger.kernel.org
15399 S:      Supported
15400 F:      drivers/scsi/qedf/
15401
15402 QLOGIC QL41xxx ISCSI DRIVER
15403 M:      Nilesh Javali <njavali@marvell.com>
15404 M:      Manish Rangankar <mrangankar@marvell.com>
15405 M:      GR-QLogic-Storage-Upstream@marvell.com
15406 L:      linux-scsi@vger.kernel.org
15407 S:      Supported
15408 F:      drivers/scsi/qedi/
15409
15410 QLOGIC QL4xxx ETHERNET DRIVER
15411 M:      Ariel Elior <aelior@marvell.com>
15412 M:      GR-everest-linux-l2@marvell.com
15413 L:      netdev@vger.kernel.org
15414 S:      Supported
15415 F:      drivers/net/ethernet/qlogic/qed/
15416 F:      drivers/net/ethernet/qlogic/qede/
15417 F:      include/linux/qed/
15418
15419 QLOGIC QL4xxx RDMA DRIVER
15420 M:      Michal Kalderon <mkalderon@marvell.com>
15421 M:      Ariel Elior <aelior@marvell.com>
15422 L:      linux-rdma@vger.kernel.org
15423 S:      Supported
15424 F:      drivers/infiniband/hw/qedr/
15425 F:      include/uapi/rdma/qedr-abi.h
15426
15427 QLOGIC QLA1280 SCSI DRIVER
15428 M:      Michael Reed <mdr@sgi.com>
15429 L:      linux-scsi@vger.kernel.org
15430 S:      Maintained
15431 F:      drivers/scsi/qla1280.[ch]
15432
15433 QLOGIC QLA2XXX FC-SCSI DRIVER
15434 M:      Nilesh Javali <njavali@marvell.com>
15435 M:      GR-QLogic-Storage-Upstream@marvell.com
15436 L:      linux-scsi@vger.kernel.org
15437 S:      Supported
15438 F:      drivers/scsi/qla2xxx/
15439
15440 QLOGIC QLA3XXX NETWORK DRIVER
15441 M:      GR-Linux-NIC-Dev@marvell.com
15442 L:      netdev@vger.kernel.org
15443 S:      Supported
15444 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15445
15446 QLOGIC QLA4XXX iSCSI DRIVER
15447 M:      Nilesh Javali <njavali@marvell.com>
15448 M:      Manish Rangankar <mrangankar@marvell.com>
15449 M:      GR-QLogic-Storage-Upstream@marvell.com
15450 L:      linux-scsi@vger.kernel.org
15451 S:      Supported
15452 F:      drivers/scsi/qla4xxx/
15453
15454 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15455 M:      Shahed Shaikh <shshaikh@marvell.com>
15456 M:      Manish Chopra <manishc@marvell.com>
15457 M:      GR-Linux-NIC-Dev@marvell.com
15458 L:      netdev@vger.kernel.org
15459 S:      Supported
15460 F:      drivers/net/ethernet/qlogic/qlcnic/
15461
15462 QLOGIC QLGE 10Gb ETHERNET DRIVER
15463 M:      Manish Chopra <manishc@marvell.com>
15464 M:      GR-Linux-NIC-Dev@marvell.com
15465 M:      Coiby Xu <coiby.xu@gmail.com>
15466 L:      netdev@vger.kernel.org
15467 S:      Supported
15468 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15469 F:      drivers/staging/qlge/
15470
15471 QM1D1B0004 MEDIA DRIVER
15472 M:      Akihiro Tsukada <tskd08@gmail.com>
15473 L:      linux-media@vger.kernel.org
15474 S:      Odd Fixes
15475 F:      drivers/media/tuners/qm1d1b0004*
15476
15477 QM1D1C0042 MEDIA DRIVER
15478 M:      Akihiro Tsukada <tskd08@gmail.com>
15479 L:      linux-media@vger.kernel.org
15480 S:      Odd Fixes
15481 F:      drivers/media/tuners/qm1d1c0042*
15482
15483 QNX4 FILESYSTEM
15484 M:      Anders Larsen <al@alarsen.net>
15485 S:      Maintained
15486 W:      http://www.alarsen.net/linux/qnx4fs/
15487 F:      fs/qnx4/
15488 F:      include/uapi/linux/qnx4_fs.h
15489 F:      include/uapi/linux/qnxtypes.h
15490
15491 QORIQ DPAA2 FSL-MC BUS DRIVER
15492 M:      Stuart Yoder <stuyoder@gmail.com>
15493 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15494 L:      linux-kernel@vger.kernel.org
15495 S:      Maintained
15496 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15497 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15498 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15499 F:      drivers/bus/fsl-mc/
15500 F:      include/uapi/linux/fsl_mc.h
15501
15502 QT1010 MEDIA DRIVER
15503 M:      Antti Palosaari <crope@iki.fi>
15504 L:      linux-media@vger.kernel.org
15505 S:      Maintained
15506 W:      https://linuxtv.org
15507 W:      http://palosaari.fi/linux/
15508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15509 T:      git git://linuxtv.org/anttip/media_tree.git
15510 F:      drivers/media/tuners/qt1010*
15511
15512 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15513 M:      Kalle Valo <kvalo@codeaurora.org>
15514 L:      ath10k@lists.infradead.org
15515 S:      Supported
15516 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15518 F:      drivers/net/wireless/ath/ath10k/
15519
15520 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15521 M:      Kalle Valo <kvalo@codeaurora.org>
15522 L:      ath11k@lists.infradead.org
15523 S:      Supported
15524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15525 F:      drivers/net/wireless/ath/ath11k/
15526
15527 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15528 M:      ath9k-devel@qca.qualcomm.com
15529 L:      linux-wireless@vger.kernel.org
15530 S:      Supported
15531 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15532 F:      drivers/net/wireless/ath/ath9k/
15533
15534 QUALCOMM CAMERA SUBSYSTEM DRIVER
15535 M:      Robert Foss <robert.foss@linaro.org>
15536 M:      Todor Tomov <todor.too@gmail.com>
15537 L:      linux-media@vger.kernel.org
15538 S:      Maintained
15539 F:      Documentation/admin-guide/media/qcom_camss.rst
15540 F:      Documentation/devicetree/bindings/media/*camss*
15541 F:      drivers/media/platform/qcom/camss/
15542
15543 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15544 M:      Niklas Cassel <nks@flawful.org>
15545 L:      linux-pm@vger.kernel.org
15546 L:      linux-arm-msm@vger.kernel.org
15547 S:      Maintained
15548 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15549 F:      drivers/soc/qcom/cpr.c
15550
15551 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15552 M:      Ilia Lin <ilia.lin@kernel.org>
15553 L:      linux-pm@vger.kernel.org
15554 S:      Maintained
15555 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15556 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15557
15558 QUALCOMM CRYPTO DRIVERS
15559 M:      Thara Gopinath <thara.gopinath@linaro.org>
15560 L:      linux-crypto@vger.kernel.org
15561 L:      linux-arm-msm@vger.kernel.org
15562 S:      Maintained
15563 F:      drivers/crypto/qce/
15564
15565 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15566 M:      Timur Tabi <timur@kernel.org>
15567 L:      netdev@vger.kernel.org
15568 S:      Maintained
15569 F:      drivers/net/ethernet/qualcomm/emac/
15570
15571 QUALCOMM ETHQOS ETHERNET DRIVER
15572 M:      Vinod Koul <vkoul@kernel.org>
15573 L:      netdev@vger.kernel.org
15574 S:      Maintained
15575 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15576 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15577
15578 QUALCOMM GENERIC INTERFACE I2C DRIVER
15579 M:      Akash Asthana <akashast@codeaurora.org>
15580 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15581 L:      linux-i2c@vger.kernel.org
15582 L:      linux-arm-msm@vger.kernel.org
15583 S:      Supported
15584 F:      drivers/i2c/busses/i2c-qcom-geni.c
15585
15586 QUALCOMM HEXAGON ARCHITECTURE
15587 M:      Brian Cain <bcain@codeaurora.org>
15588 L:      linux-hexagon@vger.kernel.org
15589 S:      Supported
15590 F:      arch/hexagon/
15591
15592 QUALCOMM HIDMA DRIVER
15593 M:      Sinan Kaya <okaya@kernel.org>
15594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15595 L:      linux-arm-msm@vger.kernel.org
15596 L:      dmaengine@vger.kernel.org
15597 S:      Supported
15598 F:      drivers/dma/qcom/hidma*
15599
15600 QUALCOMM I2C CCI DRIVER
15601 M:      Loic Poulain <loic.poulain@linaro.org>
15602 M:      Robert Foss <robert.foss@linaro.org>
15603 L:      linux-i2c@vger.kernel.org
15604 L:      linux-arm-msm@vger.kernel.org
15605 S:      Maintained
15606 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15607 F:      drivers/i2c/busses/i2c-qcom-cci.c
15608
15609 QUALCOMM IOMMU
15610 M:      Rob Clark <robdclark@gmail.com>
15611 L:      iommu@lists.linux-foundation.org
15612 L:      iommu@lists.linux.dev
15613 L:      linux-arm-msm@vger.kernel.org
15614 S:      Maintained
15615 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15616
15617 QUALCOMM IPC ROUTER (QRTR) DRIVER
15618 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15619 L:      linux-arm-msm@vger.kernel.org
15620 S:      Maintained
15621 F:      include/trace/events/qrtr.h
15622 F:      include/uapi/linux/qrtr.h
15623 F:      net/qrtr/
15624
15625 QUALCOMM IPCC MAILBOX DRIVER
15626 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15627 L:      linux-arm-msm@vger.kernel.org
15628 S:      Supported
15629 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15630 F:      drivers/mailbox/qcom-ipcc.c
15631 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15632
15633 QUALCOMM IPQ4019 USB PHY DRIVER
15634 M:      Robert Marko <robert.marko@sartura.hr>
15635 M:      Luka Perkov <luka.perkov@sartura.hr>
15636 L:      linux-arm-msm@vger.kernel.org
15637 S:      Maintained
15638 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15639 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15640
15641 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15642 M:      Robert Marko <robert.marko@sartura.hr>
15643 M:      Luka Perkov <luka.perkov@sartura.hr>
15644 L:      linux-arm-msm@vger.kernel.org
15645 S:      Maintained
15646 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15647 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15648
15649 QUALCOMM RMNET DRIVER
15650 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15651 M:      Sean Tranchetti <stranche@codeaurora.org>
15652 L:      netdev@vger.kernel.org
15653 S:      Maintained
15654 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15655 F:      drivers/net/ethernet/qualcomm/rmnet/
15656 F:      include/linux/if_rmnet.h
15657
15658 QUALCOMM TSENS THERMAL DRIVER
15659 M:      Amit Kucheria <amitk@kernel.org>
15660 M:      Thara Gopinath <thara.gopinath@linaro.org>
15661 L:      linux-pm@vger.kernel.org
15662 L:      linux-arm-msm@vger.kernel.org
15663 S:      Maintained
15664 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15665 F:      drivers/thermal/qcom/
15666
15667 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15668 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15669 L:      linux-media@vger.kernel.org
15670 L:      linux-arm-msm@vger.kernel.org
15671 S:      Maintained
15672 T:      git git://linuxtv.org/media_tree.git
15673 F:      Documentation/devicetree/bindings/media/*venus*
15674 F:      drivers/media/platform/qcom/venus/
15675
15676 QUALCOMM WCN36XX WIRELESS DRIVER
15677 M:      Kalle Valo <kvalo@codeaurora.org>
15678 L:      wcn36xx@lists.infradead.org
15679 S:      Supported
15680 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15681 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15682 F:      drivers/net/wireless/ath/wcn36xx/
15683
15684 QUANTENNA QTNFMAC WIRELESS DRIVER
15685 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15686 R:      Sergey Matyukevich <geomatsi@gmail.com>
15687 L:      linux-wireless@vger.kernel.org
15688 S:      Maintained
15689 F:      drivers/net/wireless/quantenna
15690
15691 RADEON and AMDGPU DRM DRIVERS
15692 M:      Alex Deucher <alexander.deucher@amd.com>
15693 M:      Christian König <christian.koenig@amd.com>
15694 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15695 L:      amd-gfx@lists.freedesktop.org
15696 S:      Supported
15697 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15698 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15699 C:      irc://irc.oftc.net/radeon
15700 F:      drivers/gpu/drm/amd/
15701 F:      drivers/gpu/drm/radeon/
15702 F:      include/uapi/drm/amdgpu_drm.h
15703 F:      include/uapi/drm/radeon_drm.h
15704
15705 RADEON FRAMEBUFFER DISPLAY DRIVER
15706 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15707 L:      linux-fbdev@vger.kernel.org
15708 S:      Maintained
15709 F:      drivers/video/fbdev/aty/radeon*
15710 F:      include/uapi/linux/radeonfb.h
15711
15712 RADIOSHARK RADIO DRIVER
15713 M:      Hans Verkuil <hverkuil@xs4all.nl>
15714 L:      linux-media@vger.kernel.org
15715 S:      Maintained
15716 T:      git git://linuxtv.org/media_tree.git
15717 F:      drivers/media/radio/radio-shark.c
15718
15719 RADIOSHARK2 RADIO DRIVER
15720 M:      Hans Verkuil <hverkuil@xs4all.nl>
15721 L:      linux-media@vger.kernel.org
15722 S:      Maintained
15723 T:      git git://linuxtv.org/media_tree.git
15724 F:      drivers/media/radio/radio-shark2.c
15725 F:      drivers/media/radio/radio-tea5777.c
15726
15727 RADOS BLOCK DEVICE (RBD)
15728 M:      Ilya Dryomov <idryomov@gmail.com>
15729 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15730 L:      ceph-devel@vger.kernel.org
15731 S:      Supported
15732 W:      http://ceph.com/
15733 T:      git git://github.com/ceph/ceph-client.git
15734 F:      Documentation/ABI/testing/sysfs-bus-rbd
15735 F:      drivers/block/rbd.c
15736 F:      drivers/block/rbd_types.h
15737
15738 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15739 M:      Paul Mackerras <paulus@samba.org>
15740 L:      linux-fbdev@vger.kernel.org
15741 S:      Maintained
15742 F:      drivers/video/fbdev/aty/aty128fb.c
15743
15744 RAINSHADOW-CEC DRIVER
15745 M:      Hans Verkuil <hverkuil@xs4all.nl>
15746 L:      linux-media@vger.kernel.org
15747 S:      Maintained
15748 T:      git git://linuxtv.org/media_tree.git
15749 F:      drivers/media/cec/usb/rainshadow/
15750
15751 RALINK MIPS ARCHITECTURE
15752 M:      John Crispin <john@phrozen.org>
15753 L:      linux-mips@vger.kernel.org
15754 S:      Maintained
15755 F:      arch/mips/ralink
15756
15757 RALINK RT2X00 WIRELESS LAN DRIVER
15758 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15759 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15760 L:      linux-wireless@vger.kernel.org
15761 S:      Maintained
15762 F:      drivers/net/wireless/ralink/rt2x00/
15763
15764 RAMDISK RAM BLOCK DEVICE DRIVER
15765 M:      Jens Axboe <axboe@kernel.dk>
15766 S:      Maintained
15767 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15768 F:      drivers/block/brd.c
15769
15770 RANCHU VIRTUAL BOARD FOR MIPS
15771 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15772 L:      linux-mips@vger.kernel.org
15773 S:      Supported
15774 F:      arch/mips/configs/generic/board-ranchu.config
15775 F:      arch/mips/generic/board-ranchu.c
15776
15777 RANDOM NUMBER DRIVER
15778 M:      "Theodore Ts'o" <tytso@mit.edu>
15779 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15780 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15781 S:      Maintained
15782 F:      drivers/char/random.c
15783
15784 RAPIDIO SUBSYSTEM
15785 M:      Matt Porter <mporter@kernel.crashing.org>
15786 M:      Alexandre Bounine <alex.bou9@gmail.com>
15787 S:      Maintained
15788 F:      drivers/rapidio/
15789
15790 RAS INFRASTRUCTURE
15791 M:      Tony Luck <tony.luck@intel.com>
15792 M:      Borislav Petkov <bp@alien8.de>
15793 L:      linux-edac@vger.kernel.org
15794 S:      Maintained
15795 F:      Documentation/admin-guide/ras.rst
15796 F:      drivers/ras/
15797 F:      include/linux/ras.h
15798 F:      include/ras/ras_event.h
15799
15800 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15801 L:      linux-wireless@vger.kernel.org
15802 S:      Orphan
15803 F:      drivers/net/wireless/ray*
15804
15805 RC-CORE / LIRC FRAMEWORK
15806 M:      Sean Young <sean@mess.org>
15807 L:      linux-media@vger.kernel.org
15808 S:      Maintained
15809 W:      http://linuxtv.org
15810 T:      git git://linuxtv.org/media_tree.git
15811 F:      Documentation/driver-api/media/rc-core.rst
15812 F:      Documentation/userspace-api/media/rc/
15813 F:      drivers/media/rc/
15814 F:      include/media/rc-map.h
15815 F:      include/media/rc-core.h
15816 F:      include/uapi/linux/lirc.h
15817
15818 RCMM REMOTE CONTROLS DECODER
15819 M:      Patrick Lerda <patrick9876@free.fr>
15820 S:      Maintained
15821 F:      drivers/media/rc/ir-rcmm-decoder.c
15822
15823 RCUTORTURE TEST FRAMEWORK
15824 M:      "Paul E. McKenney" <paulmck@kernel.org>
15825 M:      Josh Triplett <josh@joshtriplett.org>
15826 R:      Steven Rostedt <rostedt@goodmis.org>
15827 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15828 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15829 L:      rcu@vger.kernel.org
15830 S:      Supported
15831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15832 F:      tools/testing/selftests/rcutorture
15833
15834 RDACM20 Camera Sensor
15835 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15836 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15837 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15838 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15839 L:      linux-media@vger.kernel.org
15840 S:      Maintained
15841 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15842 F:      drivers/media/i2c/max9271.c
15843 F:      drivers/media/i2c/max9271.h
15844 F:      drivers/media/i2c/rdacm20.c
15845
15846 RDACM21 Camera Sensor
15847 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15848 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15849 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15850 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15851 L:      linux-media@vger.kernel.org
15852 S:      Maintained
15853 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15854 F:      drivers/media/i2c/max9271.c
15855 F:      drivers/media/i2c/max9271.h
15856 F:      drivers/media/i2c/rdacm21.c
15857
15858 RDC R-321X SoC
15859 M:      Florian Fainelli <florian@openwrt.org>
15860 S:      Maintained
15861
15862 RDC R6040 FAST ETHERNET DRIVER
15863 M:      Florian Fainelli <f.fainelli@gmail.com>
15864 L:      netdev@vger.kernel.org
15865 S:      Maintained
15866 F:      drivers/net/ethernet/rdc/r6040.c
15867
15868 RDMAVT - RDMA verbs software
15869 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15870 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15871 L:      linux-rdma@vger.kernel.org
15872 S:      Supported
15873 F:      drivers/infiniband/sw/rdmavt
15874
15875 RDS - RELIABLE DATAGRAM SOCKETS
15876 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15877 L:      netdev@vger.kernel.org
15878 L:      linux-rdma@vger.kernel.org
15879 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15880 S:      Supported
15881 W:      https://oss.oracle.com/projects/rds/
15882 F:      Documentation/networking/rds.rst
15883 F:      net/rds/
15884
15885 RDT - RESOURCE ALLOCATION
15886 M:      Fenghua Yu <fenghua.yu@intel.com>
15887 M:      Reinette Chatre <reinette.chatre@intel.com>
15888 L:      linux-kernel@vger.kernel.org
15889 S:      Supported
15890 F:      Documentation/x86/resctrl*
15891 F:      arch/x86/include/asm/resctrl.h
15892 F:      arch/x86/kernel/cpu/resctrl/
15893 F:      tools/testing/selftests/resctrl/
15894
15895 READ-COPY UPDATE (RCU)
15896 M:      "Paul E. McKenney" <paulmck@kernel.org>
15897 M:      Josh Triplett <josh@joshtriplett.org>
15898 R:      Steven Rostedt <rostedt@goodmis.org>
15899 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15900 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15901 R:      Joel Fernandes <joel@joelfernandes.org>
15902 L:      rcu@vger.kernel.org
15903 S:      Supported
15904 W:      http://www.rdrop.com/users/paulmck/RCU/
15905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15906 F:      Documentation/RCU/
15907 F:      include/linux/rcu*
15908 F:      kernel/rcu/
15909 X:      Documentation/RCU/torture.rst
15910 X:      include/linux/srcu*.h
15911 X:      kernel/rcu/srcu*.c
15912
15913 REAL TIME CLOCK (RTC) SUBSYSTEM
15914 M:      Alessandro Zummo <a.zummo@towertech.it>
15915 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15916 L:      linux-rtc@vger.kernel.org
15917 S:      Maintained
15918 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15920 F:      Documentation/admin-guide/rtc.rst
15921 F:      Documentation/devicetree/bindings/rtc/
15922 F:      drivers/rtc/
15923 F:      include/linux/platform_data/rtc-*
15924 F:      include/linux/rtc.h
15925 F:      include/linux/rtc/
15926 F:      include/uapi/linux/rtc.h
15927 F:      tools/testing/selftests/rtc/
15928
15929 REALTEK AUDIO CODECS
15930 M:      Oder Chiou <oder_chiou@realtek.com>
15931 S:      Maintained
15932 F:      include/sound/rt*.h
15933 F:      sound/soc/codecs/rt*
15934
15935 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15936 M:      Linus Walleij <linus.walleij@linaro.org>
15937 S:      Maintained
15938 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15939 F:      drivers/net/dsa/realtek-smi*
15940 F:      drivers/net/dsa/rtl83*
15941
15942 REALTEK WIRELESS DRIVER (rtlwifi family)
15943 M:      Ping-Ke Shih <pkshih@realtek.com>
15944 L:      linux-wireless@vger.kernel.org
15945 S:      Maintained
15946 W:      https://wireless.wiki.kernel.org/
15947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15948 F:      drivers/net/wireless/realtek/rtlwifi/
15949
15950 REALTEK WIRELESS DRIVER (rtw88)
15951 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15952 L:      linux-wireless@vger.kernel.org
15953 S:      Maintained
15954 F:      drivers/net/wireless/realtek/rtw88/
15955
15956 REDPINE WIRELESS DRIVER
15957 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15958 M:      Siva Rebbagondla <siva8118@gmail.com>
15959 L:      linux-wireless@vger.kernel.org
15960 S:      Maintained
15961 F:      drivers/net/wireless/rsi/
15962
15963 REGISTER MAP ABSTRACTION
15964 M:      Mark Brown <broonie@kernel.org>
15965 L:      linux-kernel@vger.kernel.org
15966 S:      Supported
15967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15968 F:      Documentation/devicetree/bindings/regmap/
15969 F:      drivers/base/regmap/
15970 F:      include/linux/regmap.h
15971
15972 REISERFS FILE SYSTEM
15973 L:      reiserfs-devel@vger.kernel.org
15974 S:      Supported
15975 F:      fs/reiserfs/
15976
15977 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15978 M:      Ohad Ben-Cohen <ohad@wizery.com>
15979 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15980 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15981 L:      linux-remoteproc@vger.kernel.org
15982 S:      Maintained
15983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15984 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15985 F:      Documentation/devicetree/bindings/remoteproc/
15986 F:      Documentation/staging/remoteproc.rst
15987 F:      drivers/remoteproc/
15988 F:      include/linux/remoteproc.h
15989 F:      include/linux/remoteproc/
15990
15991 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15992 M:      Ohad Ben-Cohen <ohad@wizery.com>
15993 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15994 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15995 L:      linux-remoteproc@vger.kernel.org
15996 S:      Maintained
15997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15998 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15999 F:      Documentation/staging/rpmsg.rst
16000 F:      drivers/rpmsg/
16001 F:      include/linux/rpmsg.h
16002 F:      include/linux/rpmsg/
16003 F:      include/uapi/linux/rpmsg.h
16004 F:      samples/rpmsg/
16005
16006 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16007 M:      Stephan Gerhold <stephan@gerhold.net>
16008 L:      netdev@vger.kernel.org
16009 L:      linux-remoteproc@vger.kernel.org
16010 S:      Maintained
16011 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16012
16013 RENESAS CLOCK DRIVERS
16014 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16015 L:      linux-renesas-soc@vger.kernel.org
16016 S:      Supported
16017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16018 F:      Documentation/devicetree/bindings/clock/renesas,*
16019 F:      drivers/clk/renesas/
16020
16021 RENESAS EMEV2 I2C DRIVER
16022 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16023 L:      linux-renesas-soc@vger.kernel.org
16024 S:      Supported
16025 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16026 F:      drivers/i2c/busses/i2c-emev2.c
16027
16028 RENESAS ETHERNET DRIVERS
16029 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16030 L:      netdev@vger.kernel.org
16031 L:      linux-renesas-soc@vger.kernel.org
16032 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16033 F:      drivers/net/ethernet/renesas/
16034 F:      include/linux/sh_eth.h
16035
16036 RENESAS R-CAR GYROADC DRIVER
16037 M:      Marek Vasut <marek.vasut@gmail.com>
16038 L:      linux-iio@vger.kernel.org
16039 S:      Supported
16040 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16041 F:      drivers/iio/adc/rcar-gyroadc.c
16042
16043 RENESAS R-CAR I2C DRIVERS
16044 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16045 L:      linux-renesas-soc@vger.kernel.org
16046 S:      Supported
16047 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16048 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16049 F:      drivers/i2c/busses/i2c-rcar.c
16050 F:      drivers/i2c/busses/i2c-sh_mobile.c
16051
16052 RENESAS R-CAR THERMAL DRIVERS
16053 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16054 L:      linux-renesas-soc@vger.kernel.org
16055 S:      Supported
16056 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16057 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16058 F:      drivers/thermal/rcar_gen3_thermal.c
16059 F:      drivers/thermal/rcar_thermal.c
16060
16061 RENESAS RIIC DRIVER
16062 M:      Chris Brandt <chris.brandt@renesas.com>
16063 L:      linux-renesas-soc@vger.kernel.org
16064 S:      Supported
16065 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16066 F:      drivers/i2c/busses/i2c-riic.c
16067
16068 RENESAS USB PHY DRIVER
16069 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16070 L:      linux-renesas-soc@vger.kernel.org
16071 S:      Maintained
16072 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16073
16074 RENESAS RZ/G2L A/D DRIVER
16075 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16076 L:      linux-iio@vger.kernel.org
16077 L:      linux-renesas-soc@vger.kernel.org
16078 S:      Supported
16079 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16080 F:      drivers/iio/adc/rzg2l_adc.c
16081
16082 RESET CONTROLLER FRAMEWORK
16083 M:      Philipp Zabel <p.zabel@pengutronix.de>
16084 S:      Maintained
16085 T:      git git://git.pengutronix.de/git/pza/linux
16086 F:      Documentation/devicetree/bindings/reset/
16087 F:      Documentation/driver-api/reset.rst
16088 F:      drivers/reset/
16089 F:      include/dt-bindings/reset/
16090 F:      include/linux/reset-controller.h
16091 F:      include/linux/reset.h
16092 F:      include/linux/reset/
16093 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16094
16095 RESTARTABLE SEQUENCES SUPPORT
16096 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16097 M:      Peter Zijlstra <peterz@infradead.org>
16098 M:      "Paul E. McKenney" <paulmck@kernel.org>
16099 M:      Boqun Feng <boqun.feng@gmail.com>
16100 L:      linux-kernel@vger.kernel.org
16101 S:      Supported
16102 F:      include/trace/events/rseq.h
16103 F:      include/uapi/linux/rseq.h
16104 F:      kernel/rseq.c
16105 F:      tools/testing/selftests/rseq/
16106
16107 RFKILL
16108 M:      Johannes Berg <johannes@sipsolutions.net>
16109 L:      linux-wireless@vger.kernel.org
16110 S:      Maintained
16111 W:      https://wireless.wiki.kernel.org/
16112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16114 F:      Documentation/ABI/stable/sysfs-class-rfkill
16115 F:      Documentation/driver-api/rfkill.rst
16116 F:      include/linux/rfkill.h
16117 F:      include/uapi/linux/rfkill.h
16118 F:      net/rfkill/
16119
16120 RHASHTABLE
16121 M:      Thomas Graf <tgraf@suug.ch>
16122 M:      Herbert Xu <herbert@gondor.apana.org.au>
16123 L:      netdev@vger.kernel.org
16124 S:      Maintained
16125 F:      include/linux/rhashtable-types.h
16126 F:      include/linux/rhashtable.h
16127 F:      lib/rhashtable.c
16128 F:      lib/test_rhashtable.c
16129
16130 RICOH R5C592 MEMORYSTICK DRIVER
16131 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16132 S:      Maintained
16133 F:      drivers/memstick/host/r592.*
16134
16135 RICOH SMARTMEDIA/XD DRIVER
16136 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16137 S:      Maintained
16138 F:      drivers/mtd/nand/raw/r852.c
16139 F:      drivers/mtd/nand/raw/r852.h
16140
16141 RISC-V ARCHITECTURE
16142 M:      Paul Walmsley <paul.walmsley@sifive.com>
16143 M:      Palmer Dabbelt <palmer@dabbelt.com>
16144 M:      Albert Ou <aou@eecs.berkeley.edu>
16145 L:      linux-riscv@lists.infradead.org
16146 S:      Supported
16147 P:      Documentation/riscv/patch-acceptance.rst
16148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16149 F:      arch/riscv/
16150 N:      riscv
16151 K:      riscv
16152
16153 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16154 M:      Lewis Hanly <lewis.hanly@microchip.com>
16155 L:      linux-riscv@lists.infradead.org
16156 S:      Supported
16157 F:      drivers/mailbox/mailbox-mpfs.c
16158 F:      drivers/soc/microchip/
16159 F:      include/soc/microchip/mpfs.h
16160
16161 RNBD BLOCK DRIVERS
16162 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16163 M:      Jack Wang <jinpu.wang@ionos.com>
16164 L:      linux-block@vger.kernel.org
16165 S:      Maintained
16166 F:      drivers/block/rnbd/
16167
16168 ROCCAT DRIVERS
16169 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16170 S:      Maintained
16171 W:      http://sourceforge.net/projects/roccat/
16172 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16173 F:      drivers/hid/hid-roccat*
16174 F:      include/linux/hid-roccat*
16175
16176 ROCKCHIP ISP V1 DRIVER
16177 M:      Helen Koike <helen.koike@collabora.com>
16178 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16179 L:      linux-media@vger.kernel.org
16180 L:      linux-rockchip@lists.infradead.org
16181 S:      Maintained
16182 F:      Documentation/admin-guide/media/rkisp1.rst
16183 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16184 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16185 F:      drivers/media/platform/rockchip/rkisp1
16186 F:      include/uapi/linux/rkisp1-config.h
16187
16188 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16189 M:      Jacob Chen <jacob-chen@iotwrt.com>
16190 M:      Ezequiel Garcia <ezequiel@collabora.com>
16191 L:      linux-media@vger.kernel.org
16192 L:      linux-rockchip@lists.infradead.org
16193 S:      Maintained
16194 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16195 F:      drivers/media/platform/rockchip/rga/
16196
16197 ROCKCHIP VIDEO DECODER DRIVER
16198 M:      Ezequiel Garcia <ezequiel@collabora.com>
16199 L:      linux-media@vger.kernel.org
16200 L:      linux-rockchip@lists.infradead.org
16201 S:      Maintained
16202 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16203 F:      drivers/staging/media/rkvdec/
16204
16205 ROCKER DRIVER
16206 M:      Jiri Pirko <jiri@resnulli.us>
16207 L:      netdev@vger.kernel.org
16208 S:      Supported
16209 F:      drivers/net/ethernet/rocker/
16210
16211 ROCKETPORT EXPRESS/INFINITY DRIVER
16212 M:      Kevin Cernekee <cernekee@gmail.com>
16213 L:      linux-serial@vger.kernel.org
16214 S:      Odd Fixes
16215 F:      drivers/tty/serial/rp2.*
16216
16217 ROHM BD99954 CHARGER IC
16218 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16219 L:      linux-power@fi.rohmeurope.com
16220 S:      Supported
16221 F:      drivers/power/supply/bd99954-charger.c
16222 F:      drivers/power/supply/bd99954-charger.h
16223
16224 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16225 M:      Tomasz Duszynski <tduszyns@gmail.com>
16226 S:      Maintained
16227 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16228 F:      drivers/iio/light/bh1750.c
16229
16230 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16231 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16232 L:      linux-kernel@vger.kernel.org
16233 L:      linux-renesas-soc@vger.kernel.org
16234 S:      Supported
16235 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16236 F:      drivers/gpio/gpio-bd9571mwv.c
16237 F:      drivers/mfd/bd9571mwv.c
16238 F:      drivers/regulator/bd9571mwv-regulator.c
16239 F:      include/linux/mfd/bd9571mwv.h
16240
16241 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16242 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16243 L:      linux-power@fi.rohmeurope.com
16244 S:      Supported
16245 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16246 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16247 F:      drivers/clk/clk-bd718x7.c
16248 F:      drivers/gpio/gpio-bd70528.c
16249 F:      drivers/gpio/gpio-bd71815.c
16250 F:      drivers/gpio/gpio-bd71828.c
16251 F:      drivers/mfd/rohm-bd70528.c
16252 F:      drivers/mfd/rohm-bd71828.c
16253 F:      drivers/mfd/rohm-bd718x7.c
16254 F:      drivers/mfd/rohm-bd9576.c
16255 F:      drivers/power/supply/bd70528-charger.c
16256 F:      drivers/regulator/bd70528-regulator.c
16257 F:      drivers/regulator/bd71815-regulator.c
16258 F:      drivers/regulator/bd71828-regulator.c
16259 F:      drivers/regulator/bd718x7-regulator.c
16260 F:      drivers/regulator/bd9576-regulator.c
16261 F:      drivers/regulator/rohm-regulator.c
16262 F:      drivers/rtc/rtc-bd70528.c
16263 F:      drivers/watchdog/bd70528_wdt.c
16264 F:      drivers/watchdog/bd9576_wdt.c
16265 F:      include/linux/mfd/rohm-bd70528.h
16266 F:      include/linux/mfd/rohm-bd71815.h
16267 F:      include/linux/mfd/rohm-bd71828.h
16268 F:      include/linux/mfd/rohm-bd718x7.h
16269 F:      include/linux/mfd/rohm-bd957x.h
16270 F:      include/linux/mfd/rohm-generic.h
16271 F:      include/linux/mfd/rohm-shared.h
16272
16273 ROSE NETWORK LAYER
16274 M:      Ralf Baechle <ralf@linux-mips.org>
16275 L:      linux-hams@vger.kernel.org
16276 S:      Maintained
16277 W:      http://www.linux-ax25.org/
16278 F:      include/net/rose.h
16279 F:      include/uapi/linux/rose.h
16280 F:      net/rose/
16281
16282 ROTATION DRIVER FOR ALLWINNER A83T
16283 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16284 L:      linux-media@vger.kernel.org
16285 S:      Maintained
16286 T:      git git://linuxtv.org/media_tree.git
16287 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16288 F:      drivers/media/platform/sunxi/sun8i-rotate/
16289
16290 RTL2830 MEDIA DRIVER
16291 M:      Antti Palosaari <crope@iki.fi>
16292 L:      linux-media@vger.kernel.org
16293 S:      Maintained
16294 W:      https://linuxtv.org
16295 W:      http://palosaari.fi/linux/
16296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16297 T:      git git://linuxtv.org/anttip/media_tree.git
16298 F:      drivers/media/dvb-frontends/rtl2830*
16299
16300 RTL2832 MEDIA DRIVER
16301 M:      Antti Palosaari <crope@iki.fi>
16302 L:      linux-media@vger.kernel.org
16303 S:      Maintained
16304 W:      https://linuxtv.org
16305 W:      http://palosaari.fi/linux/
16306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16307 T:      git git://linuxtv.org/anttip/media_tree.git
16308 F:      drivers/media/dvb-frontends/rtl2832*
16309
16310 RTL2832_SDR MEDIA DRIVER
16311 M:      Antti Palosaari <crope@iki.fi>
16312 L:      linux-media@vger.kernel.org
16313 S:      Maintained
16314 W:      https://linuxtv.org
16315 W:      http://palosaari.fi/linux/
16316 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16317 T:      git git://linuxtv.org/anttip/media_tree.git
16318 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16319
16320 RTL8180 WIRELESS DRIVER
16321 L:      linux-wireless@vger.kernel.org
16322 S:      Orphan
16323 W:      https://wireless.wiki.kernel.org/
16324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16325 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16326
16327 RTL8187 WIRELESS DRIVER
16328 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16329 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16330 M:      Larry Finger <Larry.Finger@lwfinger.net>
16331 L:      linux-wireless@vger.kernel.org
16332 S:      Maintained
16333 W:      https://wireless.wiki.kernel.org/
16334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16335 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16336
16337 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16338 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16339 L:      linux-wireless@vger.kernel.org
16340 S:      Maintained
16341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16342 F:      drivers/net/wireless/realtek/rtl8xxxu/
16343
16344 RTRS TRANSPORT DRIVERS
16345 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16346 M:      Jack Wang <jinpu.wang@ionos.com>
16347 L:      linux-rdma@vger.kernel.org
16348 S:      Maintained
16349 F:      drivers/infiniband/ulp/rtrs/
16350
16351 RXRPC SOCKETS (AF_RXRPC)
16352 M:      David Howells <dhowells@redhat.com>
16353 M:      Marc Dionne <marc.dionne@auristor.com>
16354 L:      linux-afs@lists.infradead.org
16355 S:      Supported
16356 W:      https://www.infradead.org/~dhowells/kafs/
16357 F:      Documentation/networking/rxrpc.rst
16358 F:      include/keys/rxrpc-type.h
16359 F:      include/net/af_rxrpc.h
16360 F:      include/trace/events/rxrpc.h
16361 F:      include/uapi/linux/rxrpc.h
16362 F:      net/rxrpc/
16363
16364 S3 SAVAGE FRAMEBUFFER DRIVER
16365 M:      Antonino Daplas <adaplas@gmail.com>
16366 L:      linux-fbdev@vger.kernel.org
16367 S:      Maintained
16368 F:      drivers/video/fbdev/savage/
16369
16370 S390
16371 M:      Heiko Carstens <hca@linux.ibm.com>
16372 M:      Vasily Gorbik <gor@linux.ibm.com>
16373 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16374 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16375 L:      linux-s390@vger.kernel.org
16376 S:      Supported
16377 W:      http://www.ibm.com/developerworks/linux/linux390/
16378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16379 F:      Documentation/driver-api/s390-drivers.rst
16380 F:      Documentation/s390/
16381 F:      arch/s390/
16382 F:      drivers/s390/
16383
16384 S390 COMMON I/O LAYER
16385 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16386 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16387 L:      linux-s390@vger.kernel.org
16388 S:      Supported
16389 W:      http://www.ibm.com/developerworks/linux/linux390/
16390 F:      drivers/s390/cio/
16391
16392 S390 DASD DRIVER
16393 M:      Stefan Haberland <sth@linux.ibm.com>
16394 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16395 L:      linux-s390@vger.kernel.org
16396 S:      Supported
16397 W:      http://www.ibm.com/developerworks/linux/linux390/
16398 F:      block/partitions/ibm.c
16399 F:      drivers/s390/block/dasd*
16400 F:      include/linux/dasd_mod.h
16401
16402 S390 IOMMU (PCI)
16403 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16404 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16405 L:      linux-s390@vger.kernel.org
16406 S:      Supported
16407 W:      http://www.ibm.com/developerworks/linux/linux390/
16408 F:      drivers/iommu/s390-iommu.c
16409
16410 S390 IUCV NETWORK LAYER
16411 M:      Julian Wiedmann <jwi@linux.ibm.com>
16412 M:      Karsten Graul <kgraul@linux.ibm.com>
16413 L:      linux-s390@vger.kernel.org
16414 L:      netdev@vger.kernel.org
16415 S:      Supported
16416 W:      http://www.ibm.com/developerworks/linux/linux390/
16417 F:      drivers/s390/net/*iucv*
16418 F:      include/net/iucv/
16419 F:      net/iucv/
16420
16421 S390 NETWORK DRIVERS
16422 M:      Julian Wiedmann <jwi@linux.ibm.com>
16423 M:      Karsten Graul <kgraul@linux.ibm.com>
16424 L:      linux-s390@vger.kernel.org
16425 L:      netdev@vger.kernel.org
16426 S:      Supported
16427 W:      http://www.ibm.com/developerworks/linux/linux390/
16428 F:      drivers/s390/net/
16429
16430 S390 PCI SUBSYSTEM
16431 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16432 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16433 L:      linux-s390@vger.kernel.org
16434 S:      Supported
16435 W:      http://www.ibm.com/developerworks/linux/linux390/
16436 F:      arch/s390/pci/
16437 F:      drivers/pci/hotplug/s390_pci_hpc.c
16438 F:      Documentation/s390/pci.rst
16439
16440 S390 VFIO AP DRIVER
16441 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16442 M:      Halil Pasic <pasic@linux.ibm.com>
16443 M:      Jason Herne <jjherne@linux.ibm.com>
16444 L:      linux-s390@vger.kernel.org
16445 S:      Supported
16446 W:      http://www.ibm.com/developerworks/linux/linux390/
16447 F:      Documentation/s390/vfio-ap.rst
16448 F:      drivers/s390/crypto/vfio_ap_drv.c
16449 F:      drivers/s390/crypto/vfio_ap_ops.c
16450 F:      drivers/s390/crypto/vfio_ap_private.h
16451
16452 S390 VFIO-CCW DRIVER
16453 M:      Eric Farman <farman@linux.ibm.com>
16454 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16455 R:      Halil Pasic <pasic@linux.ibm.com>
16456 L:      linux-s390@vger.kernel.org
16457 L:      kvm@vger.kernel.org
16458 S:      Supported
16459 F:      Documentation/s390/vfio-ccw.rst
16460 F:      drivers/s390/cio/vfio_ccw*
16461 F:      include/uapi/linux/vfio_ccw.h
16462
16463 S390 VFIO-PCI DRIVER
16464 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16465 M:      Eric Farman <farman@linux.ibm.com>
16466 L:      linux-s390@vger.kernel.org
16467 L:      kvm@vger.kernel.org
16468 S:      Supported
16469 F:      drivers/vfio/pci/vfio_pci_zdev.c
16470 F:      include/uapi/linux/vfio_zdev.h
16471
16472 S390 ZCRYPT DRIVER
16473 M:      Harald Freudenberger <freude@linux.ibm.com>
16474 L:      linux-s390@vger.kernel.org
16475 S:      Supported
16476 W:      http://www.ibm.com/developerworks/linux/linux390/
16477 F:      drivers/s390/crypto/
16478
16479 S390 ZFCP DRIVER
16480 M:      Steffen Maier <maier@linux.ibm.com>
16481 M:      Benjamin Block <bblock@linux.ibm.com>
16482 L:      linux-s390@vger.kernel.org
16483 S:      Supported
16484 W:      http://www.ibm.com/developerworks/linux/linux390/
16485 F:      drivers/s390/scsi/zfcp_*
16486
16487 S3C ADC BATTERY DRIVER
16488 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16489 L:      linux-samsung-soc@vger.kernel.org
16490 S:      Odd Fixes
16491 F:      drivers/power/supply/s3c_adc_battery.c
16492 F:      include/linux/s3c_adc_battery.h
16493
16494 S3C24XX SD/MMC Driver
16495 M:      Ben Dooks <ben-linux@fluff.org>
16496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16497 S:      Supported
16498 F:      drivers/mmc/host/s3cmci.*
16499
16500 SAA6588 RDS RECEIVER DRIVER
16501 M:      Hans Verkuil <hverkuil@xs4all.nl>
16502 L:      linux-media@vger.kernel.org
16503 S:      Odd Fixes
16504 W:      https://linuxtv.org
16505 T:      git git://linuxtv.org/media_tree.git
16506 F:      drivers/media/i2c/saa6588*
16507
16508 SAA7134 VIDEO4LINUX DRIVER
16509 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16510 L:      linux-media@vger.kernel.org
16511 S:      Odd fixes
16512 W:      https://linuxtv.org
16513 T:      git git://linuxtv.org/media_tree.git
16514 F:      Documentation/driver-api/media/drivers/saa7134*
16515 F:      drivers/media/pci/saa7134/
16516
16517 SAA7146 VIDEO4LINUX-2 DRIVER
16518 M:      Hans Verkuil <hverkuil@xs4all.nl>
16519 L:      linux-media@vger.kernel.org
16520 S:      Maintained
16521 T:      git git://linuxtv.org/media_tree.git
16522 F:      drivers/media/common/saa7146/
16523 F:      drivers/media/pci/saa7146/
16524 F:      include/media/drv-intf/saa7146*
16525
16526 SAFESETID SECURITY MODULE
16527 M:      Micah Morton <mortonm@chromium.org>
16528 S:      Supported
16529 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16530 F:      security/safesetid/
16531
16532 SAMSUNG AUDIO (ASoC) DRIVERS
16533 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16534 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16536 S:      Supported
16537 F:      Documentation/devicetree/bindings/sound/samsung*
16538 F:      sound/soc/samsung/
16539
16540 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16541 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16542 L:      linux-crypto@vger.kernel.org
16543 L:      linux-samsung-soc@vger.kernel.org
16544 S:      Maintained
16545 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16546 F:      drivers/crypto/exynos-rng.c
16547
16548 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16549 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16550 L:      linux-samsung-soc@vger.kernel.org
16551 S:      Maintained
16552 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16553 F:      drivers/char/hw_random/exynos-trng.c
16554
16555 SAMSUNG FRAMEBUFFER DRIVER
16556 M:      Jingoo Han <jingoohan1@gmail.com>
16557 L:      linux-fbdev@vger.kernel.org
16558 S:      Maintained
16559 F:      drivers/video/fbdev/s3c-fb.c
16560
16561 SAMSUNG INTERCONNECT DRIVERS
16562 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16563 M:      Artur Świgoń <a.swigon@samsung.com>
16564 L:      linux-pm@vger.kernel.org
16565 L:      linux-samsung-soc@vger.kernel.org
16566 S:      Supported
16567 F:      drivers/interconnect/samsung/
16568
16569 SAMSUNG LAPTOP DRIVER
16570 M:      Corentin Chary <corentin.chary@gmail.com>
16571 L:      platform-driver-x86@vger.kernel.org
16572 S:      Maintained
16573 F:      drivers/platform/x86/samsung-laptop.c
16574
16575 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16576 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16577 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16578 L:      linux-kernel@vger.kernel.org
16579 L:      linux-samsung-soc@vger.kernel.org
16580 S:      Supported
16581 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16582 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16583 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16584 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16585 F:      drivers/clk/clk-s2mps11.c
16586 F:      drivers/mfd/sec*.c
16587 F:      drivers/regulator/s2m*.c
16588 F:      drivers/regulator/s5m*.c
16589 F:      drivers/rtc/rtc-s5m.c
16590 F:      include/linux/mfd/samsung/
16591
16592 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16593 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16594 L:      linux-media@vger.kernel.org
16595 L:      linux-samsung-soc@vger.kernel.org
16596 S:      Maintained
16597 F:      drivers/media/platform/s3c-camif/
16598 F:      include/media/drv-intf/s3c_camif.h
16599
16600 SAMSUNG S3FWRN5 NFC DRIVER
16601 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16602 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16603 L:      linux-nfc@lists.01.org (subscribers-only)
16604 S:      Maintained
16605 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16606 F:      drivers/nfc/s3fwrn5
16607
16608 SAMSUNG S5C73M3 CAMERA DRIVER
16609 M:      Andrzej Hajda <a.hajda@samsung.com>
16610 L:      linux-media@vger.kernel.org
16611 S:      Supported
16612 F:      drivers/media/i2c/s5c73m3/*
16613
16614 SAMSUNG S5K5BAF CAMERA DRIVER
16615 M:      Andrzej Hajda <a.hajda@samsung.com>
16616 L:      linux-media@vger.kernel.org
16617 S:      Supported
16618 F:      drivers/media/i2c/s5k5baf.c
16619
16620 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16621 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16622 M:      Vladimir Zapolskiy <vz@mleia.com>
16623 L:      linux-crypto@vger.kernel.org
16624 L:      linux-samsung-soc@vger.kernel.org
16625 S:      Maintained
16626 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16627 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16628 F:      drivers/crypto/s5p-sss.c
16629
16630 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16631 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16632 L:      linux-media@vger.kernel.org
16633 S:      Supported
16634 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16635 F:      drivers/media/platform/exynos4-is/
16636
16637 SAMSUNG SOC CLOCK DRIVERS
16638 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16639 M:      Tomasz Figa <tomasz.figa@gmail.com>
16640 M:      Chanwoo Choi <cw00.choi@samsung.com>
16641 L:      linux-samsung-soc@vger.kernel.org
16642 S:      Supported
16643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16644 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16645 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16646 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16647 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16648 F:      drivers/clk/samsung/
16649 F:      include/dt-bindings/clock/exynos*.h
16650 F:      include/dt-bindings/clock/s3c*.h
16651 F:      include/dt-bindings/clock/s5p*.h
16652 F:      include/dt-bindings/clock/samsung,*.h
16653 F:      include/linux/clk/samsung.h
16654 F:      include/linux/platform_data/clk-s3c2410.h
16655
16656 SAMSUNG SPI DRIVERS
16657 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16658 M:      Andi Shyti <andi@etezian.org>
16659 L:      linux-spi@vger.kernel.org
16660 L:      linux-samsung-soc@vger.kernel.org
16661 S:      Maintained
16662 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16663 F:      drivers/spi/spi-s3c*
16664 F:      include/linux/platform_data/spi-s3c64xx.h
16665 F:      include/linux/spi/s3c24xx-fiq.h
16666
16667 SAMSUNG SXGBE DRIVERS
16668 M:      Byungho An <bh74.an@samsung.com>
16669 L:      netdev@vger.kernel.org
16670 S:      Supported
16671 F:      drivers/net/ethernet/samsung/sxgbe/
16672
16673 SAMSUNG THERMAL DRIVER
16674 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16675 L:      linux-pm@vger.kernel.org
16676 L:      linux-samsung-soc@vger.kernel.org
16677 S:      Supported
16678 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16679 F:      drivers/thermal/samsung/
16680
16681 SAMSUNG USB2 PHY DRIVER
16682 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16683 L:      linux-kernel@vger.kernel.org
16684 S:      Supported
16685 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16686 F:      Documentation/driver-api/phy/samsung-usb2.rst
16687 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16688 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16689 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16690 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16691 F:      drivers/phy/samsung/phy-samsung-usb2.c
16692 F:      drivers/phy/samsung/phy-samsung-usb2.h
16693
16694 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16695 M:      Paul Barker <paul.barker@sancloud.com>
16696 R:      Marc Murphy <marc.murphy@sancloud.com>
16697 S:      Supported
16698 F:      arch/arm/boot/dts/am335x-sancloud*
16699
16700 SC1200 WDT DRIVER
16701 M:      Zwane Mwaikambo <zwanem@gmail.com>
16702 S:      Maintained
16703 F:      drivers/watchdog/sc1200wdt.c
16704
16705 SCHEDULER
16706 M:      Ingo Molnar <mingo@redhat.com>
16707 M:      Peter Zijlstra <peterz@infradead.org>
16708 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16709 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16710 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16711 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16712 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16713 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16714 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16715 L:      linux-kernel@vger.kernel.org
16716 S:      Maintained
16717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16718 F:      include/linux/preempt.h
16719 F:      include/linux/sched.h
16720 F:      include/linux/wait.h
16721 F:      include/uapi/linux/sched.h
16722 F:      kernel/sched/
16723
16724 SCR24X CHIP CARD INTERFACE DRIVER
16725 M:      Lubomir Rintel <lkundrak@v3.sk>
16726 S:      Supported
16727 F:      drivers/char/pcmcia/scr24x_cs.c
16728
16729 SCSI RDMA PROTOCOL (SRP) INITIATOR
16730 M:      Bart Van Assche <bvanassche@acm.org>
16731 L:      linux-rdma@vger.kernel.org
16732 S:      Supported
16733 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16734 F:      drivers/infiniband/ulp/srp/
16735 F:      include/scsi/srp.h
16736
16737 SCSI RDMA PROTOCOL (SRP) TARGET
16738 M:      Bart Van Assche <bvanassche@acm.org>
16739 L:      linux-rdma@vger.kernel.org
16740 L:      target-devel@vger.kernel.org
16741 S:      Supported
16742 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16743 F:      drivers/infiniband/ulp/srpt/
16744
16745 SCSI SG DRIVER
16746 M:      Doug Gilbert <dgilbert@interlog.com>
16747 L:      linux-scsi@vger.kernel.org
16748 S:      Maintained
16749 W:      http://sg.danny.cz/sg
16750 F:      Documentation/scsi/scsi-generic.rst
16751 F:      drivers/scsi/sg.c
16752 F:      include/scsi/sg.h
16753
16754 SCSI SUBSYSTEM
16755 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16756 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16757 L:      linux-scsi@vger.kernel.org
16758 S:      Maintained
16759 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16762 F:      Documentation/devicetree/bindings/scsi/
16763 F:      drivers/scsi/
16764 F:      include/scsi/
16765
16766 SCSI TAPE DRIVER
16767 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16768 L:      linux-scsi@vger.kernel.org
16769 S:      Maintained
16770 F:      Documentation/scsi/st.rst
16771 F:      drivers/scsi/st.*
16772 F:      drivers/scsi/st_*.h
16773
16774 SCSI TARGET CORE USER DRIVER
16775 M:      Bodo Stroesser <bostroesser@gmail.com>
16776 L:      linux-scsi@vger.kernel.org
16777 L:      target-devel@vger.kernel.org
16778 S:      Supported
16779 F:      Documentation/target/tcmu-design.rst
16780 F:      drivers/target/target_core_user.c
16781 F:      include/uapi/linux/target_core_user.h
16782
16783 SCSI TARGET SUBSYSTEM
16784 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16785 L:      linux-scsi@vger.kernel.org
16786 L:      target-devel@vger.kernel.org
16787 S:      Supported
16788 W:      http://www.linux-iscsi.org
16789 Q:      https://patchwork.kernel.org/project/target-devel/list/
16790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16791 F:      Documentation/target/
16792 F:      drivers/target/
16793 F:      include/target/
16794
16795 SCTP PROTOCOL
16796 M:      Vlad Yasevich <vyasevich@gmail.com>
16797 M:      Neil Horman <nhorman@tuxdriver.com>
16798 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16799 L:      linux-sctp@vger.kernel.org
16800 S:      Maintained
16801 W:      http://lksctp.sourceforge.net
16802 F:      Documentation/networking/sctp.rst
16803 F:      include/linux/sctp.h
16804 F:      include/net/sctp/
16805 F:      include/uapi/linux/sctp.h
16806 F:      net/sctp/
16807
16808 SCx200 CPU SUPPORT
16809 M:      Jim Cromie <jim.cromie@gmail.com>
16810 S:      Odd Fixes
16811 F:      Documentation/i2c/busses/scx200_acb.rst
16812 F:      arch/x86/platform/scx200/
16813 F:      drivers/i2c/busses/scx200*
16814 F:      drivers/mtd/maps/scx200_docflash.c
16815 F:      drivers/watchdog/scx200_wdt.c
16816 F:      include/linux/scx200.h
16817
16818 SCx200 GPIO DRIVER
16819 M:      Jim Cromie <jim.cromie@gmail.com>
16820 S:      Maintained
16821 F:      drivers/char/scx200_gpio.c
16822 F:      include/linux/scx200_gpio.h
16823
16824 SCx200 HRT CLOCKSOURCE DRIVER
16825 M:      Jim Cromie <jim.cromie@gmail.com>
16826 S:      Maintained
16827 F:      drivers/clocksource/scx200_hrt.c
16828
16829 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16830 M:      Sascha Sommer <saschasommer@freenet.de>
16831 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16832 S:      Maintained
16833 F:      drivers/mmc/host/sdricoh_cs.c
16834
16835 SECO BOARDS CEC DRIVER
16836 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16837 S:      Maintained
16838 F:      drivers/media/cec/platform/seco/seco-cec.c
16839 F:      drivers/media/cec/platform/seco/seco-cec.h
16840
16841 SECURE COMPUTING
16842 M:      Kees Cook <keescook@chromium.org>
16843 R:      Andy Lutomirski <luto@amacapital.net>
16844 R:      Will Drewry <wad@chromium.org>
16845 S:      Supported
16846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16847 F:      Documentation/userspace-api/seccomp_filter.rst
16848 F:      include/linux/seccomp.h
16849 F:      include/uapi/linux/seccomp.h
16850 F:      kernel/seccomp.c
16851 F:      tools/testing/selftests/kselftest_harness.h
16852 F:      tools/testing/selftests/seccomp/*
16853 K:      \bsecure_computing
16854 K:      \bTIF_SECCOMP\b
16855
16856 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16857 M:      Al Cooper <alcooperx@gmail.com>
16858 L:      linux-mmc@vger.kernel.org
16859 L:      bcm-kernel-feedback-list@broadcom.com
16860 S:      Maintained
16861 F:      drivers/mmc/host/sdhci-brcmstb*
16862
16863 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16864 M:      Adrian Hunter <adrian.hunter@intel.com>
16865 L:      linux-mmc@vger.kernel.org
16866 S:      Maintained
16867 F:      drivers/mmc/host/sdhci*
16868 F:      include/linux/mmc/sdhci*
16869
16870 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16871 M:      Eugen Hristev <eugen.hristev@microchip.com>
16872 L:      linux-mmc@vger.kernel.org
16873 S:      Supported
16874 F:      drivers/mmc/host/sdhci-of-at91.c
16875
16876 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16877 M:      Ben Dooks <ben-linux@fluff.org>
16878 M:      Jaehoon Chung <jh80.chung@samsung.com>
16879 L:      linux-mmc@vger.kernel.org
16880 S:      Maintained
16881 F:      drivers/mmc/host/sdhci-s3c*
16882
16883 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16884 M:      Viresh Kumar <vireshk@kernel.org>
16885 L:      linux-mmc@vger.kernel.org
16886 S:      Maintained
16887 F:      drivers/mmc/host/sdhci-spear.c
16888
16889 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16890 M:      Kishon Vijay Abraham I <kishon@ti.com>
16891 L:      linux-mmc@vger.kernel.org
16892 S:      Maintained
16893 F:      drivers/mmc/host/sdhci-omap.c
16894
16895 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16896 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16897 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16898 L:      linux-block@vger.kernel.org
16899 S:      Supported
16900 F:      block/opal_proto.h
16901 F:      block/sed*
16902 F:      include/linux/sed*
16903 F:      include/uapi/linux/sed*
16904
16905 SECURITY CONTACT
16906 M:      Security Officers <security@kernel.org>
16907 S:      Supported
16908 F:      Documentation/admin-guide/security-bugs.rst
16909
16910 SECURITY SUBSYSTEM
16911 M:      James Morris <jmorris@namei.org>
16912 M:      "Serge E. Hallyn" <serge@hallyn.com>
16913 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16914 S:      Supported
16915 W:      http://kernsec.org/
16916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16917 F:      security/
16918 X:      security/selinux/
16919
16920 SELINUX SECURITY MODULE
16921 M:      Paul Moore <paul@paul-moore.com>
16922 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16923 M:      Eric Paris <eparis@parisplace.org>
16924 L:      selinux@vger.kernel.org
16925 S:      Supported
16926 W:      https://selinuxproject.org
16927 W:      https://github.com/SELinuxProject
16928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16929 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16930 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16931 F:      Documentation/admin-guide/LSM/SELinux.rst
16932 F:      include/trace/events/avc.h
16933 F:      include/uapi/linux/selinux_netlink.h
16934 F:      scripts/selinux/
16935 F:      security/selinux/
16936
16937 SENSABLE PHANTOM
16938 M:      Jiri Slaby <jirislaby@kernel.org>
16939 S:      Maintained
16940 F:      drivers/misc/phantom.c
16941 F:      include/uapi/linux/phantom.h
16942
16943 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16944 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16945 S:      Maintained
16946 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16947 F:      drivers/iio/chemical/scd30.h
16948 F:      drivers/iio/chemical/scd30_core.c
16949 F:      drivers/iio/chemical/scd30_i2c.c
16950 F:      drivers/iio/chemical/scd30_serial.c
16951
16952 SENSIRION SGP40 GAS SENSOR DRIVER
16953 M:      Andreas Klinger <ak@it-klinger.de>
16954 S:      Maintained
16955 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16956 F:      drivers/iio/chemical/sgp40.c
16957
16958 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16959 M:      Tomasz Duszynski <tduszyns@gmail.com>
16960 S:      Maintained
16961 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16962 F:      drivers/iio/chemical/sps30.c
16963 F:      drivers/iio/chemical/sps30_i2c.c
16964 F:      drivers/iio/chemical/sps30_serial.c
16965
16966 SERIAL DEVICE BUS
16967 M:      Rob Herring <robh@kernel.org>
16968 L:      linux-serial@vger.kernel.org
16969 S:      Maintained
16970 F:      Documentation/devicetree/bindings/serial/serial.yaml
16971 F:      drivers/tty/serdev/
16972 F:      include/linux/serdev.h
16973
16974 SERIAL DRIVERS
16975 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16976 L:      linux-serial@vger.kernel.org
16977 S:      Maintained
16978 F:      Documentation/devicetree/bindings/serial/
16979 F:      drivers/tty/serial/
16980
16981 SERIAL IR RECEIVER
16982 M:      Sean Young <sean@mess.org>
16983 L:      linux-media@vger.kernel.org
16984 S:      Maintained
16985 F:      drivers/media/rc/serial_ir.c
16986
16987 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16988 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16989 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16990 S:      Maintained
16991 F:      Documentation/devicetree/bindings/slimbus/
16992 F:      drivers/slimbus/
16993 F:      include/linux/slimbus.h
16994
16995 SFC NETWORK DRIVER
16996 M:      Edward Cree <ecree.xilinx@gmail.com>
16997 M:      Martin Habets <habetsm.xilinx@gmail.com>
16998 L:      netdev@vger.kernel.org
16999 S:      Supported
17000 F:      drivers/net/ethernet/sfc/
17001
17002 SFF/SFP/SFP+ MODULE SUPPORT
17003 M:      Russell King <linux@armlinux.org.uk>
17004 L:      netdev@vger.kernel.org
17005 S:      Maintained
17006 F:      drivers/net/phy/phylink.c
17007 F:      drivers/net/phy/sfp*
17008 F:      include/linux/mdio/mdio-i2c.h
17009 F:      include/linux/phylink.h
17010 F:      include/linux/sfp.h
17011 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)
17012
17013 SGI GRU DRIVER
17014 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17015 S:      Maintained
17016 F:      drivers/misc/sgi-gru/
17017
17018 SGI XP/XPC/XPNET DRIVER
17019 M:      Robin Holt <robinmholt@gmail.com>
17020 M:      Steve Wahl <steve.wahl@hpe.com>
17021 R:      Mike Travis <mike.travis@hpe.com>
17022 S:      Maintained
17023 F:      drivers/misc/sgi-xp/
17024
17025 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17026 M:      Karsten Graul <kgraul@linux.ibm.com>
17027 L:      linux-s390@vger.kernel.org
17028 S:      Supported
17029 W:      http://www.ibm.com/developerworks/linux/linux390/
17030 F:      net/smc/
17031
17032 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17033 M:      Linus Walleij <linus.walleij@linaro.org>
17034 L:      linux-iio@vger.kernel.org
17035 S:      Maintained
17036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17037 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17038 F:      drivers/iio/light/gp2ap002.c
17039
17040 SHARP RJ54N1CB0C SENSOR DRIVER
17041 M:      Jacopo Mondi <jacopo@jmondi.org>
17042 L:      linux-media@vger.kernel.org
17043 S:      Odd fixes
17044 T:      git git://linuxtv.org/media_tree.git
17045 F:      drivers/media/i2c/rj54n1cb0c.c
17046 F:      include/media/i2c/rj54n1cb0c.h
17047
17048 SH_VOU V4L2 OUTPUT DRIVER
17049 L:      linux-media@vger.kernel.org
17050 S:      Orphan
17051 F:      drivers/media/platform/sh_vou.c
17052 F:      include/media/drv-intf/sh_vou.h
17053
17054 SI2157 MEDIA DRIVER
17055 M:      Antti Palosaari <crope@iki.fi>
17056 L:      linux-media@vger.kernel.org
17057 S:      Maintained
17058 W:      https://linuxtv.org
17059 W:      http://palosaari.fi/linux/
17060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17061 T:      git git://linuxtv.org/anttip/media_tree.git
17062 F:      drivers/media/tuners/si2157*
17063
17064 SI2165 MEDIA DRIVER
17065 M:      Matthias Schwarzott <zzam@gentoo.org>
17066 L:      linux-media@vger.kernel.org
17067 S:      Maintained
17068 W:      https://linuxtv.org
17069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17070 F:      drivers/media/dvb-frontends/si2165*
17071
17072 SI2168 MEDIA DRIVER
17073 M:      Antti Palosaari <crope@iki.fi>
17074 L:      linux-media@vger.kernel.org
17075 S:      Maintained
17076 W:      https://linuxtv.org
17077 W:      http://palosaari.fi/linux/
17078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17079 T:      git git://linuxtv.org/anttip/media_tree.git
17080 F:      drivers/media/dvb-frontends/si2168*
17081
17082 SI470X FM RADIO RECEIVER I2C DRIVER
17083 M:      Hans Verkuil <hverkuil@xs4all.nl>
17084 L:      linux-media@vger.kernel.org
17085 S:      Odd Fixes
17086 W:      https://linuxtv.org
17087 T:      git git://linuxtv.org/media_tree.git
17088 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17089
17090 SI470X FM RADIO RECEIVER USB DRIVER
17091 M:      Hans Verkuil <hverkuil@xs4all.nl>
17092 L:      linux-media@vger.kernel.org
17093 S:      Maintained
17094 W:      https://linuxtv.org
17095 T:      git git://linuxtv.org/media_tree.git
17096 F:      drivers/media/radio/si470x/radio-si470x-common.c
17097 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17098 F:      drivers/media/radio/si470x/radio-si470x.h
17099
17100 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17101 M:      Eduardo Valentin <edubezval@gmail.com>
17102 L:      linux-media@vger.kernel.org
17103 S:      Odd Fixes
17104 W:      https://linuxtv.org
17105 T:      git git://linuxtv.org/media_tree.git
17106 F:      drivers/media/radio/si4713/si4713.?
17107
17108 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17109 M:      Eduardo Valentin <edubezval@gmail.com>
17110 L:      linux-media@vger.kernel.org
17111 S:      Odd Fixes
17112 W:      https://linuxtv.org
17113 T:      git git://linuxtv.org/media_tree.git
17114 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17115
17116 SI4713 FM RADIO TRANSMITTER USB DRIVER
17117 M:      Hans Verkuil <hverkuil@xs4all.nl>
17118 L:      linux-media@vger.kernel.org
17119 S:      Maintained
17120 W:      https://linuxtv.org
17121 T:      git git://linuxtv.org/media_tree.git
17122 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17123
17124 SIANO DVB DRIVER
17125 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17126 L:      linux-media@vger.kernel.org
17127 S:      Odd fixes
17128 W:      https://linuxtv.org
17129 T:      git git://linuxtv.org/media_tree.git
17130 F:      drivers/media/common/siano/
17131 F:      drivers/media/mmc/siano/
17132 F:      drivers/media/usb/siano/
17133 F:      drivers/media/usb/siano/
17134
17135 SIFIVE DRIVERS
17136 M:      Palmer Dabbelt <palmer@dabbelt.com>
17137 M:      Paul Walmsley <paul.walmsley@sifive.com>
17138 L:      linux-riscv@lists.infradead.org
17139 S:      Supported
17140 T:      git git://github.com/sifive/riscv-linux.git
17141 N:      sifive
17142 K:      [^@]sifive
17143
17144 SIFIVE FU540 SYSTEM-ON-CHIP
17145 M:      Paul Walmsley <paul.walmsley@sifive.com>
17146 M:      Palmer Dabbelt <palmer@dabbelt.com>
17147 L:      linux-riscv@lists.infradead.org
17148 S:      Supported
17149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17150 N:      fu540
17151 K:      fu540
17152
17153 SIFIVE PDMA DRIVER
17154 M:      Green Wan <green.wan@sifive.com>
17155 S:      Maintained
17156 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17157 F:      drivers/dma/sf-pdma/
17158
17159 SILEAD TOUCHSCREEN DRIVER
17160 M:      Hans de Goede <hdegoede@redhat.com>
17161 L:      linux-input@vger.kernel.org
17162 L:      platform-driver-x86@vger.kernel.org
17163 S:      Maintained
17164 F:      drivers/input/touchscreen/silead.c
17165 F:      drivers/platform/x86/touchscreen_dmi.c
17166
17167 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17168 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17169 S:      Supported
17170 F:      drivers/staging/wfx/
17171
17172 SILICON MOTION SM712 FRAME BUFFER DRIVER
17173 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17174 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17175 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17176 L:      linux-fbdev@vger.kernel.org
17177 S:      Maintained
17178 F:      Documentation/fb/sm712fb.rst
17179 F:      drivers/video/fbdev/sm712*
17180
17181 SILVACO I3C DUAL-ROLE MASTER
17182 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17183 M:      Conor Culhane <conor.culhane@silvaco.com>
17184 L:      linux-i3c@lists.infradead.org
17185 S:      Maintained
17186 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17187 F:      drivers/i3c/master/svc-i3c-master.c
17188
17189 SIMPLEFB FB DRIVER
17190 M:      Hans de Goede <hdegoede@redhat.com>
17191 L:      linux-fbdev@vger.kernel.org
17192 S:      Maintained
17193 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17194 F:      drivers/video/fbdev/simplefb.c
17195 F:      include/linux/platform_data/simplefb.h
17196
17197 SIMTEC EB110ATX (Chalice CATS)
17198 M:      Simtec Linux Team <linux@simtec.co.uk>
17199 S:      Supported
17200 W:      http://www.simtec.co.uk/products/EB110ATX/
17201
17202 SIMTEC EB2410ITX (BAST)
17203 M:      Simtec Linux Team <linux@simtec.co.uk>
17204 S:      Supported
17205 W:      http://www.simtec.co.uk/products/EB2410ITX/
17206 F:      arch/arm/mach-s3c/bast-ide.c
17207 F:      arch/arm/mach-s3c/bast-irq.c
17208 F:      arch/arm/mach-s3c/mach-bast.c
17209
17210 SIOX
17211 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17212 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17213 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17214 S:      Supported
17215 F:      drivers/gpio/gpio-siox.c
17216 F:      drivers/siox/*
17217 F:      include/trace/events/siox.h
17218
17219 SIPHASH PRF ROUTINES
17220 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17221 S:      Maintained
17222 F:      include/linux/siphash.h
17223 F:      lib/siphash.c
17224 F:      lib/test_siphash.c
17225
17226 SIS 190 ETHERNET DRIVER
17227 M:      Francois Romieu <romieu@fr.zoreil.com>
17228 L:      netdev@vger.kernel.org
17229 S:      Maintained
17230 F:      drivers/net/ethernet/sis/sis190.c
17231
17232 SIS 900/7016 FAST ETHERNET DRIVER
17233 M:      Daniele Venzano <venza@brownhat.org>
17234 L:      netdev@vger.kernel.org
17235 S:      Maintained
17236 W:      http://www.brownhat.org/sis900.html
17237 F:      drivers/net/ethernet/sis/sis900.*
17238
17239 SIS FRAMEBUFFER DRIVER
17240 M:      Thomas Winischhofer <thomas@winischhofer.net>
17241 S:      Maintained
17242 W:      http://www.winischhofer.net/linuxsisvga.shtml
17243 F:      Documentation/fb/sisfb.rst
17244 F:      drivers/video/fbdev/sis/
17245 F:      include/video/sisfb.h
17246
17247 SIS I2C TOUCHSCREEN DRIVER
17248 M:      Mika Penttilä <mika.penttila@nextfour.com>
17249 L:      linux-input@vger.kernel.org
17250 S:      Maintained
17251 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17252 F:      drivers/input/touchscreen/sis_i2c.c
17253
17254 SIS USB2VGA DRIVER
17255 M:      Thomas Winischhofer <thomas@winischhofer.net>
17256 S:      Maintained
17257 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17258 F:      drivers/usb/misc/sisusbvga/
17259
17260 SLAB ALLOCATOR
17261 M:      Christoph Lameter <cl@linux.com>
17262 M:      Pekka Enberg <penberg@kernel.org>
17263 M:      David Rientjes <rientjes@google.com>
17264 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17265 M:      Andrew Morton <akpm@linux-foundation.org>
17266 M:      Vlastimil Babka <vbabka@suse.cz>
17267 L:      linux-mm@kvack.org
17268 S:      Maintained
17269 F:      include/linux/sl?b*.h
17270 F:      mm/sl?b*
17271
17272 SLEEPABLE READ-COPY UPDATE (SRCU)
17273 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17274 M:      "Paul E. McKenney" <paulmck@kernel.org>
17275 M:      Josh Triplett <josh@joshtriplett.org>
17276 R:      Steven Rostedt <rostedt@goodmis.org>
17277 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17278 L:      rcu@vger.kernel.org
17279 S:      Supported
17280 W:      http://www.rdrop.com/users/paulmck/RCU/
17281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17282 F:      include/linux/srcu*.h
17283 F:      kernel/rcu/srcu*.c
17284
17285 SMACK SECURITY MODULE
17286 M:      Casey Schaufler <casey@schaufler-ca.com>
17287 L:      linux-security-module@vger.kernel.org
17288 S:      Maintained
17289 W:      http://schaufler-ca.com
17290 T:      git git://github.com/cschaufler/smack-next
17291 F:      Documentation/admin-guide/LSM/Smack.rst
17292 F:      security/smack/
17293
17294 SMC91x ETHERNET DRIVER
17295 M:      Nicolas Pitre <nico@fluxnic.net>
17296 S:      Odd Fixes
17297 F:      drivers/net/ethernet/smsc/smc91x.*
17298
17299 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17300 M:      Mark Rutland <mark.rutland@arm.com>
17301 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17302 M:      Sudeep Holla <sudeep.holla@arm.com>
17303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17304 S:      Maintained
17305 F:      drivers/firmware/smccc/
17306 F:      include/linux/arm-smccc.h
17307
17308 SMM665 HARDWARE MONITOR DRIVER
17309 M:      Guenter Roeck <linux@roeck-us.net>
17310 L:      linux-hwmon@vger.kernel.org
17311 S:      Maintained
17312 F:      Documentation/hwmon/smm665.rst
17313 F:      drivers/hwmon/smm665.c
17314
17315 SMSC EMC2103 HARDWARE MONITOR DRIVER
17316 M:      Steve Glendinning <steve.glendinning@shawell.net>
17317 L:      linux-hwmon@vger.kernel.org
17318 S:      Maintained
17319 F:      Documentation/hwmon/emc2103.rst
17320 F:      drivers/hwmon/emc2103.c
17321
17322 SMSC SCH5627 HARDWARE MONITOR DRIVER
17323 M:      Hans de Goede <hdegoede@redhat.com>
17324 L:      linux-hwmon@vger.kernel.org
17325 S:      Supported
17326 F:      Documentation/hwmon/sch5627.rst
17327 F:      drivers/hwmon/sch5627.c
17328
17329 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17330 M:      Steve Glendinning <steve.glendinning@shawell.net>
17331 L:      linux-fbdev@vger.kernel.org
17332 S:      Maintained
17333 F:      drivers/video/fbdev/smscufx.c
17334
17335 SMSC47B397 HARDWARE MONITOR DRIVER
17336 M:      Jean Delvare <jdelvare@suse.com>
17337 L:      linux-hwmon@vger.kernel.org
17338 S:      Maintained
17339 F:      Documentation/hwmon/smsc47b397.rst
17340 F:      drivers/hwmon/smsc47b397.c
17341
17342 SMSC911x ETHERNET DRIVER
17343 M:      Steve Glendinning <steve.glendinning@shawell.net>
17344 L:      netdev@vger.kernel.org
17345 S:      Maintained
17346 F:      drivers/net/ethernet/smsc/smsc911x.*
17347 F:      include/linux/smsc911x.h
17348
17349 SMSC9420 PCI ETHERNET DRIVER
17350 M:      Steve Glendinning <steve.glendinning@shawell.net>
17351 L:      netdev@vger.kernel.org
17352 S:      Maintained
17353 F:      drivers/net/ethernet/smsc/smsc9420.*
17354
17355 SOCIONEXT (SNI) AVE NETWORK DRIVER
17356 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17357 L:      netdev@vger.kernel.org
17358 S:      Maintained
17359 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17360 F:      drivers/net/ethernet/socionext/sni_ave.c
17361
17362 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17363 M:      Jassi Brar <jaswinder.singh@linaro.org>
17364 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17365 L:      netdev@vger.kernel.org
17366 S:      Maintained
17367 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17368 F:      drivers/net/ethernet/socionext/netsec.c
17369
17370 SOCIONEXT (SNI) Synquacer SPI DRIVER
17371 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17372 M:      Jassi Brar <jaswinder.singh@linaro.org>
17373 L:      linux-spi@vger.kernel.org
17374 S:      Maintained
17375 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17376 F:      drivers/spi/spi-synquacer.c
17377
17378 SOCIONEXT SYNQUACER I2C DRIVER
17379 M:      Ard Biesheuvel <ardb@kernel.org>
17380 L:      linux-i2c@vger.kernel.org
17381 S:      Maintained
17382 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17383 F:      drivers/i2c/busses/i2c-synquacer.c
17384
17385 SOCIONEXT UNIPHIER SOUND DRIVER
17386 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17387 S:      Orphan
17388 F:      sound/soc/uniphier/
17389
17390 SOEKRIS NET48XX LED SUPPORT
17391 M:      Chris Boot <bootc@bootc.net>
17392 S:      Maintained
17393 F:      drivers/leds/leds-net48xx.c
17394
17395 SOFT-IWARP DRIVER (siw)
17396 M:      Bernard Metzler <bmt@zurich.ibm.com>
17397 L:      linux-rdma@vger.kernel.org
17398 S:      Supported
17399 F:      drivers/infiniband/sw/siw/
17400 F:      include/uapi/rdma/siw-abi.h
17401
17402 SOFT-ROCE DRIVER (rxe)
17403 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17404 L:      linux-rdma@vger.kernel.org
17405 S:      Supported
17406 F:      drivers/infiniband/sw/rxe/
17407 F:      include/uapi/rdma/rdma_user_rxe.h
17408
17409 SOFTLOGIC 6x10 MPEG CODEC
17410 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17411 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17412 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17413 M:      Ismael Luceno <ismael@iodev.co.uk>
17414 L:      linux-media@vger.kernel.org
17415 S:      Supported
17416 F:      drivers/media/pci/solo6x10/
17417
17418 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17419 M:      James Morse <james.morse@arm.com>
17420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17421 S:      Maintained
17422 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17423 F:      drivers/firmware/arm_sdei.c
17424 F:      include/linux/arm_sdei.h
17425 F:      include/uapi/linux/arm_sdei.h
17426
17427 SOFTWARE NODES
17428 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17429 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17430 L:      linux-acpi@vger.kernel.org
17431 S:      Maintained
17432 F:      drivers/base/swnode.c
17433
17434 SOFTWARE RAID (Multiple Disks) SUPPORT
17435 M:      Song Liu <song@kernel.org>
17436 L:      linux-raid@vger.kernel.org
17437 S:      Supported
17438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17439 F:      drivers/md/Kconfig
17440 F:      drivers/md/Makefile
17441 F:      drivers/md/md*
17442 F:      drivers/md/raid*
17443 F:      include/linux/raid/
17444 F:      include/uapi/linux/raid/
17445
17446 SOLIDRUN CLEARFOG SUPPORT
17447 M:      Russell King <linux@armlinux.org.uk>
17448 S:      Maintained
17449 F:      arch/arm/boot/dts/armada-388-clearfog*
17450 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17451
17452 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17453 M:      Russell King <linux@armlinux.org.uk>
17454 S:      Maintained
17455 F:      arch/arm/boot/dts/imx6*-cubox-i*
17456 F:      arch/arm/boot/dts/imx6*-hummingboard*
17457 F:      arch/arm/boot/dts/imx6*-sr-*
17458
17459 SONIC NETWORK DRIVER
17460 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17461 L:      netdev@vger.kernel.org
17462 S:      Maintained
17463 F:      drivers/net/ethernet/natsemi/sonic.*
17464
17465 SONICS SILICON BACKPLANE DRIVER (SSB)
17466 M:      Michael Buesch <m@bues.ch>
17467 L:      linux-wireless@vger.kernel.org
17468 S:      Maintained
17469 F:      drivers/ssb/
17470 F:      include/linux/ssb/
17471
17472 SONY IMX208 SENSOR DRIVER
17473 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17474 L:      linux-media@vger.kernel.org
17475 S:      Maintained
17476 T:      git git://linuxtv.org/media_tree.git
17477 F:      drivers/media/i2c/imx208.c
17478
17479 SONY IMX214 SENSOR DRIVER
17480 M:      Ricardo Ribalda <ribalda@kernel.org>
17481 L:      linux-media@vger.kernel.org
17482 S:      Maintained
17483 T:      git git://linuxtv.org/media_tree.git
17484 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17485 F:      drivers/media/i2c/imx214.c
17486
17487 SONY IMX219 SENSOR DRIVER
17488 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17489 L:      linux-media@vger.kernel.org
17490 S:      Maintained
17491 T:      git git://linuxtv.org/media_tree.git
17492 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17493 F:      drivers/media/i2c/imx219.c
17494
17495 SONY IMX258 SENSOR DRIVER
17496 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17497 L:      linux-media@vger.kernel.org
17498 S:      Maintained
17499 T:      git git://linuxtv.org/media_tree.git
17500 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17501 F:      drivers/media/i2c/imx258.c
17502
17503 SONY IMX274 SENSOR DRIVER
17504 M:      Leon Luo <leonl@leopardimaging.com>
17505 L:      linux-media@vger.kernel.org
17506 S:      Maintained
17507 T:      git git://linuxtv.org/media_tree.git
17508 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17509 F:      drivers/media/i2c/imx274.c
17510
17511 SONY IMX290 SENSOR DRIVER
17512 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17513 L:      linux-media@vger.kernel.org
17514 S:      Maintained
17515 T:      git git://linuxtv.org/media_tree.git
17516 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17517 F:      drivers/media/i2c/imx290.c
17518
17519 SONY IMX296 SENSOR DRIVER
17520 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17521 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17522 L:      linux-media@vger.kernel.org
17523 S:      Maintained
17524 T:      git git://linuxtv.org/media_tree.git
17525 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
17526 F:      drivers/media/i2c/imx296.c
17527
17528 SONY IMX319 SENSOR DRIVER
17529 M:      Bingbu Cao <bingbu.cao@intel.com>
17530 L:      linux-media@vger.kernel.org
17531 S:      Maintained
17532 T:      git git://linuxtv.org/media_tree.git
17533 F:      drivers/media/i2c/imx319.c
17534
17535 SONY IMX334 SENSOR DRIVER
17536 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17537 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17538 L:      linux-media@vger.kernel.org
17539 S:      Maintained
17540 T:      git git://linuxtv.org/media_tree.git
17541 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17542 F:      drivers/media/i2c/imx334.c
17543
17544 SONY IMX335 SENSOR DRIVER
17545 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17546 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17547 L:      linux-media@vger.kernel.org
17548 S:      Maintained
17549 T:      git git://linuxtv.org/media_tree.git
17550 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17551 F:      drivers/media/i2c/imx335.c
17552
17553 SONY IMX355 SENSOR DRIVER
17554 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17555 L:      linux-media@vger.kernel.org
17556 S:      Maintained
17557 T:      git git://linuxtv.org/media_tree.git
17558 F:      drivers/media/i2c/imx355.c
17559
17560 SONY IMX412 SENSOR DRIVER
17561 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17562 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17563 L:      linux-media@vger.kernel.org
17564 S:      Maintained
17565 T:      git git://linuxtv.org/media_tree.git
17566 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17567 F:      drivers/media/i2c/imx412.c
17568
17569 SONY IMX477 SENSOR DRIVER
17570 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17571 L:      linux-media@vger.kernel.org
17572 S:      Maintained
17573 T:      git git://linuxtv.org/media_tree.git
17574 F:      Documentation/devicetree/bindings/media/i2c/imx378.yaml
17575 F:      Documentation/devicetree/bindings/media/i2c/imx477.yaml
17576 F:      drivers/media/i2c/imx477.c
17577
17578 SONY IMX519 SENSOR DRIVER
17579 M:      Arducam Kernel Maintenance <info@arducam.com>
17580 L:      linux-media@vger.kernel.org
17581 S:      Maintained
17582 T:      git git://linuxtv.org/media_tree.git
17583 F:      Documentation/devicetree/bindings/media/i2c/imx519.yaml
17584 F:      drivers/media/i2c/imx519.c
17585
17586 SONY MEMORYSTICK SUBSYSTEM
17587 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17588 M:      Alex Dubov <oakad@yahoo.com>
17589 M:      Ulf Hansson <ulf.hansson@linaro.org>
17590 L:      linux-mmc@vger.kernel.org
17591 S:      Maintained
17592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17593 F:      drivers/memstick/
17594 F:      include/linux/memstick.h
17595
17596 SONY VAIO CONTROL DEVICE DRIVER
17597 M:      Mattia Dongili <malattia@linux.it>
17598 L:      platform-driver-x86@vger.kernel.org
17599 S:      Maintained
17600 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17601 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17602 F:      drivers/char/sonypi.c
17603 F:      drivers/platform/x86/sony-laptop.c
17604 F:      include/linux/sony-laptop.h
17605
17606 SOUND
17607 M:      Jaroslav Kysela <perex@perex.cz>
17608 M:      Takashi Iwai <tiwai@suse.com>
17609 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17610 S:      Maintained
17611 W:      http://www.alsa-project.org/
17612 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17614 F:      Documentation/sound/
17615 F:      include/sound/
17616 F:      include/uapi/sound/
17617 F:      sound/
17618
17619 SOUND - COMPRESSED AUDIO
17620 M:      Vinod Koul <vkoul@kernel.org>
17621 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17622 S:      Supported
17623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17624 F:      Documentation/sound/designs/compress-offload.rst
17625 F:      include/sound/compress_driver.h
17626 F:      include/uapi/sound/compress_*
17627 F:      sound/core/compress_offload.c
17628 F:      sound/soc/soc-compress.c
17629
17630 SOUND - DMAENGINE HELPERS
17631 M:      Lars-Peter Clausen <lars@metafoo.de>
17632 S:      Supported
17633 F:      include/sound/dmaengine_pcm.h
17634 F:      sound/core/pcm_dmaengine.c
17635 F:      sound/soc/soc-generic-dmaengine-pcm.c
17636
17637 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17638 M:      Liam Girdwood <lgirdwood@gmail.com>
17639 M:      Mark Brown <broonie@kernel.org>
17640 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17641 S:      Supported
17642 W:      http://alsa-project.org/main/index.php/ASoC
17643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17644 F:      Documentation/devicetree/bindings/sound/
17645 F:      Documentation/sound/soc/
17646 F:      include/dt-bindings/sound/
17647 F:      include/sound/soc*
17648 F:      sound/soc/
17649
17650 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17651 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17652 M:      Liam Girdwood <lgirdwood@gmail.com>
17653 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17654 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17655 M:      Daniel Baluta <daniel.baluta@nxp.com>
17656 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17657 S:      Supported
17658 W:      https://github.com/thesofproject/linux/
17659 F:      sound/soc/sof/
17660
17661 SOUNDWIRE SUBSYSTEM
17662 M:      Vinod Koul <vkoul@kernel.org>
17663 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17664 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17665 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17666 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17667 S:      Supported
17668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17669 F:      Documentation/driver-api/soundwire/
17670 F:      drivers/soundwire/
17671 F:      include/linux/soundwire/
17672
17673 SP2 MEDIA DRIVER
17674 M:      Olli Salonen <olli.salonen@iki.fi>
17675 L:      linux-media@vger.kernel.org
17676 S:      Maintained
17677 W:      https://linuxtv.org
17678 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17679 F:      drivers/media/dvb-frontends/sp2*
17680
17681 SPARC + UltraSPARC (sparc/sparc64)
17682 M:      "David S. Miller" <davem@davemloft.net>
17683 L:      sparclinux@vger.kernel.org
17684 S:      Maintained
17685 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17688 F:      arch/sparc/
17689 F:      drivers/sbus/
17690
17691 SPARC SERIAL DRIVERS
17692 M:      "David S. Miller" <davem@davemloft.net>
17693 L:      sparclinux@vger.kernel.org
17694 S:      Maintained
17695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17697 F:      drivers/tty/serial/suncore.c
17698 F:      drivers/tty/serial/sunhv.c
17699 F:      drivers/tty/serial/sunsab.c
17700 F:      drivers/tty/serial/sunsab.h
17701 F:      drivers/tty/serial/sunsu.c
17702 F:      drivers/tty/serial/sunzilog.c
17703 F:      drivers/tty/serial/sunzilog.h
17704 F:      drivers/tty/vcc.c
17705 F:      include/linux/sunserialcore.h
17706
17707 SPARSE CHECKER
17708 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17709 L:      linux-sparse@vger.kernel.org
17710 S:      Maintained
17711 W:      https://sparse.docs.kernel.org/
17712 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17713 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17714 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17715 F:      include/linux/compiler.h
17716
17717 SPEAKUP CONSOLE SPEECH DRIVER
17718 M:      William Hubbs <w.d.hubbs@gmail.com>
17719 M:      Chris Brannon <chris@the-brannons.com>
17720 M:      Kirk Reiser <kirk@reisers.ca>
17721 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17722 L:      speakup@linux-speakup.org
17723 S:      Odd Fixes
17724 W:      http://www.linux-speakup.org/
17725 W:      https://github.com/linux-speakup/speakup
17726 B:      https://github.com/linux-speakup/speakup/issues
17727 F:      drivers/accessibility/speakup/
17728
17729 SPEAR CLOCK FRAMEWORK SUPPORT
17730 M:      Viresh Kumar <vireshk@kernel.org>
17731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17732 S:      Maintained
17733 W:      http://www.st.com/spear
17734 F:      drivers/clk/spear/
17735
17736 SPEAR PLATFORM SUPPORT
17737 M:      Viresh Kumar <vireshk@kernel.org>
17738 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17740 S:      Maintained
17741 W:      http://www.st.com/spear
17742 F:      arch/arm/boot/dts/spear*
17743 F:      arch/arm/mach-spear/
17744
17745 SPI NOR SUBSYSTEM
17746 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17747 R:      Michael Walle <michael@walle.cc>
17748 R:      Pratyush Yadav <p.yadav@ti.com>
17749 L:      linux-mtd@lists.infradead.org
17750 S:      Maintained
17751 W:      http://www.linux-mtd.infradead.org/
17752 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17753 C:      irc://irc.oftc.net/mtd
17754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17755 F:      drivers/mtd/spi-nor/
17756 F:      include/linux/mtd/spi-nor.h
17757
17758 SPI SUBSYSTEM
17759 M:      Mark Brown <broonie@kernel.org>
17760 L:      linux-spi@vger.kernel.org
17761 S:      Maintained
17762 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17764 F:      Documentation/devicetree/bindings/spi/
17765 F:      Documentation/spi/
17766 F:      drivers/spi/
17767 F:      include/linux/spi/
17768 F:      include/uapi/linux/spi/
17769 F:      tools/spi/
17770
17771 SPIDERNET NETWORK DRIVER for CELL
17772 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17773 M:      Geoff Levand <geoff@infradead.org>
17774 L:      netdev@vger.kernel.org
17775 L:      linuxppc-dev@lists.ozlabs.org
17776 S:      Maintained
17777 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17778 F:      drivers/net/ethernet/toshiba/spider_net*
17779
17780 SPMI SUBSYSTEM
17781 M:      Stephen Boyd <sboyd@kernel.org>
17782 L:      linux-kernel@vger.kernel.org
17783 S:      Maintained
17784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17785 F:      Documentation/devicetree/bindings/spmi/
17786 F:      drivers/spmi/
17787 F:      include/dt-bindings/spmi/spmi.h
17788 F:      include/linux/spmi.h
17789 F:      include/trace/events/spmi.h
17790
17791 SPU FILE SYSTEM
17792 M:      Jeremy Kerr <jk@ozlabs.org>
17793 L:      linuxppc-dev@lists.ozlabs.org
17794 S:      Supported
17795 W:      http://www.ibm.com/developerworks/power/cell/
17796 F:      Documentation/filesystems/spufs/spufs.rst
17797 F:      arch/powerpc/platforms/cell/spufs/
17798
17799 SQUASHFS FILE SYSTEM
17800 M:      Phillip Lougher <phillip@squashfs.org.uk>
17801 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17802 S:      Maintained
17803 W:      http://squashfs.org.uk
17804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17805 F:      Documentation/filesystems/squashfs.rst
17806 F:      fs/squashfs/
17807
17808 SRM (Alpha) environment access
17809 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17810 S:      Maintained
17811 F:      arch/alpha/kernel/srm_env.c
17812
17813 ST LSM6DSx IMU IIO DRIVER
17814 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17815 L:      linux-iio@vger.kernel.org
17816 S:      Maintained
17817 W:      http://www.st.com/
17818 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17819 F:      drivers/iio/imu/st_lsm6dsx/
17820
17821 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17822 M:      Mickael Guene <mickael.guene@st.com>
17823 L:      linux-media@vger.kernel.org
17824 S:      Maintained
17825 T:      git git://linuxtv.org/media_tree.git
17826 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17827 F:      drivers/media/i2c/st-mipid02.c
17828
17829 ST STM32 I2C/SMBUS DRIVER
17830 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17831 M:      Alain Volmat <alain.volmat@foss.st.com>
17832 L:      linux-i2c@vger.kernel.org
17833 S:      Maintained
17834 F:      drivers/i2c/busses/i2c-stm32*
17835
17836 ST STM32 SPI DRIVER
17837 M:      Alain Volmat <alain.volmat@foss.st.com>
17838 L:      linux-spi@vger.kernel.org
17839 S:      Maintained
17840 F:      drivers/spi/spi-stm32.c
17841
17842 ST STPDDC60 DRIVER
17843 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17844 L:      linux-hwmon@vger.kernel.org
17845 S:      Maintained
17846 F:      Documentation/hwmon/stpddc60.rst
17847 F:      drivers/hwmon/pmbus/stpddc60.c
17848
17849 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17850 M:      Song Qiang <songqiang1304521@gmail.com>
17851 L:      linux-iio@vger.kernel.org
17852 S:      Maintained
17853 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17854 F:      drivers/iio/proximity/vl53l0x-i2c.c
17855
17856 STABLE BRANCH
17857 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17858 M:      Sasha Levin <sashal@kernel.org>
17859 L:      stable@vger.kernel.org
17860 S:      Supported
17861 F:      Documentation/process/stable-kernel-rules.rst
17862
17863 STAGING - ATOMISP DRIVER
17864 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17865 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17866 L:      linux-media@vger.kernel.org
17867 S:      Maintained
17868 F:      drivers/staging/media/atomisp/
17869
17870 STAGING - FIELDBUS SUBSYSTEM
17871 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17872 S:      Maintained
17873 F:      drivers/staging/fieldbus/*
17874 F:      drivers/staging/fieldbus/Documentation/
17875
17876 STAGING - HMS ANYBUS-S BUS
17877 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17878 S:      Maintained
17879 F:      drivers/staging/fieldbus/anybuss/
17880
17881 STAGING - INDUSTRIAL IO
17882 M:      Jonathan Cameron <jic23@kernel.org>
17883 L:      linux-iio@vger.kernel.org
17884 S:      Odd Fixes
17885 F:      Documentation/devicetree/bindings/staging/iio/
17886 F:      drivers/staging/iio/
17887
17888 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17889 M:      Marc Dietrich <marvin24@gmx.de>
17890 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17891 L:      linux-tegra@vger.kernel.org
17892 S:      Maintained
17893 F:      drivers/staging/nvec/
17894
17895 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17896 M:      Jens Frederich <jfrederich@gmail.com>
17897 M:      Jon Nettleton <jon.nettleton@gmail.com>
17898 S:      Maintained
17899 W:      http://wiki.laptop.org/go/DCON
17900 F:      drivers/staging/olpc_dcon/
17901
17902 STAGING - REALTEK RTL8188EU DRIVERS
17903 M:      Larry Finger <Larry.Finger@lwfinger.net>
17904 M:      Phillip Potter <phil@philpotter.co.uk>
17905 S:      Supported
17906 F:      drivers/staging/r8188eu/
17907
17908 STAGING - REALTEK RTL8712U DRIVERS
17909 M:      Larry Finger <Larry.Finger@lwfinger.net>
17910 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17911 S:      Odd Fixes
17912 F:      drivers/staging/rtl8712/
17913
17914 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17915 M:      Michael Hennerich <michael.hennerich@analog.com>
17916 L:      linux-fbdev@vger.kernel.org
17917 S:      Supported
17918 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17919 F:      drivers/staging/fbtft/fb_seps525.c
17920
17921 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17922 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17923 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17924 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17925 L:      linux-fbdev@vger.kernel.org
17926 S:      Maintained
17927 F:      drivers/staging/sm750fb/
17928
17929 STAGING - VIA VT665X DRIVERS
17930 M:      Forest Bond <forest@alittletooquiet.net>
17931 S:      Odd Fixes
17932 F:      drivers/staging/vt665?/
17933
17934 STAGING SUBSYSTEM
17935 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17936 L:      linux-staging@lists.linux.dev
17937 S:      Supported
17938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17939 F:      drivers/staging/
17940
17941 STARFIRE/DURALAN NETWORK DRIVER
17942 M:      Ion Badulescu <ionut@badula.org>
17943 S:      Odd Fixes
17944 F:      drivers/net/ethernet/adaptec/starfire*
17945
17946 STATIC BRANCH/CALL
17947 M:      Peter Zijlstra <peterz@infradead.org>
17948 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17949 M:      Jason Baron <jbaron@akamai.com>
17950 R:      Steven Rostedt <rostedt@goodmis.org>
17951 R:      Ard Biesheuvel <ardb@kernel.org>
17952 S:      Supported
17953 F:      arch/*/include/asm/jump_label*.h
17954 F:      arch/*/include/asm/static_call*.h
17955 F:      arch/*/kernel/jump_label.c
17956 F:      arch/*/kernel/static_call.c
17957 F:      include/linux/jump_label*.h
17958 F:      include/linux/static_call*.h
17959 F:      kernel/jump_label.c
17960 F:      kernel/static_call.c
17961
17962 STI AUDIO (ASoC) DRIVERS
17963 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17965 S:      Maintained
17966 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17967 F:      sound/soc/sti/
17968
17969 STI CEC DRIVER
17970 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17971 S:      Maintained
17972 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17973 F:      drivers/media/cec/platform/sti/
17974
17975 STK1160 USB VIDEO CAPTURE DRIVER
17976 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17977 L:      linux-media@vger.kernel.org
17978 S:      Maintained
17979 T:      git git://linuxtv.org/media_tree.git
17980 F:      drivers/media/usb/stk1160/
17981
17982 STM32 AUDIO (ASoC) DRIVERS
17983 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17984 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17985 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17986 S:      Maintained
17987 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17988 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17989 F:      sound/soc/stm/
17990
17991 STM32 TIMER/LPTIMER DRIVERS
17992 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17993 S:      Maintained
17994 F:      Documentation/ABI/testing/*timer-stm32
17995 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17996 F:      drivers/*/stm32-*timer*
17997 F:      drivers/pwm/pwm-stm32*
17998 F:      include/linux/*/stm32-*tim*
17999
18000 STMMAC ETHERNET DRIVER
18001 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18002 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18003 M:      Jose Abreu <joabreu@synopsys.com>
18004 L:      netdev@vger.kernel.org
18005 S:      Supported
18006 W:      http://www.stlinux.com
18007 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18008 F:      drivers/net/ethernet/stmicro/stmmac/
18009
18010 SUN3/3X
18011 M:      Sam Creasey <sammy@sammy.net>
18012 S:      Maintained
18013 W:      http://sammy.net/sun3/
18014 F:      arch/m68k/include/asm/sun3*
18015 F:      arch/m68k/kernel/*sun3*
18016 F:      arch/m68k/sun3*/
18017 F:      drivers/net/ethernet/i825xx/sun3*
18018
18019 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18020 M:      Hans de Goede <hdegoede@redhat.com>
18021 L:      linux-input@vger.kernel.org
18022 S:      Maintained
18023 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18024 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18025
18026 SUNDANCE NETWORK DRIVER
18027 M:      Denis Kirjanov <kda@linux-powerpc.org>
18028 L:      netdev@vger.kernel.org
18029 S:      Maintained
18030 F:      drivers/net/ethernet/dlink/sundance.c
18031
18032 SUPERH
18033 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18034 M:      Rich Felker <dalias@libc.org>
18035 L:      linux-sh@vger.kernel.org
18036 S:      Maintained
18037 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18038 F:      Documentation/sh/
18039 F:      arch/sh/
18040 F:      drivers/sh/
18041
18042 SUSPEND TO RAM
18043 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18044 M:      Len Brown <len.brown@intel.com>
18045 M:      Pavel Machek <pavel@ucw.cz>
18046 L:      linux-pm@vger.kernel.org
18047 S:      Supported
18048 B:      https://bugzilla.kernel.org
18049 F:      Documentation/power/
18050 F:      arch/x86/kernel/acpi/
18051 F:      drivers/base/power/
18052 F:      include/linux/freezer.h
18053 F:      include/linux/pm.h
18054 F:      include/linux/suspend.h
18055 F:      kernel/power/
18056
18057 SVGA HANDLING
18058 M:      Martin Mares <mj@ucw.cz>
18059 L:      linux-video@atrey.karlin.mff.cuni.cz
18060 S:      Maintained
18061 F:      Documentation/admin-guide/svga.rst
18062 F:      arch/x86/boot/video*
18063
18064 SWIOTLB SUBSYSTEM
18065 M:      Christoph Hellwig <hch@infradead.org>
18066 L:      iommu@lists.linux-foundation.org
18067 L:      iommu@lists.linux.dev
18068 S:      Supported
18069 W:      http://git.infradead.org/users/hch/dma-mapping.git
18070 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18071 F:      arch/*/kernel/pci-swiotlb.c
18072 F:      include/linux/swiotlb.h
18073 F:      kernel/dma/swiotlb.c
18074
18075 SWITCHDEV
18076 M:      Jiri Pirko <jiri@resnulli.us>
18077 M:      Ivan Vecera <ivecera@redhat.com>
18078 L:      netdev@vger.kernel.org
18079 S:      Supported
18080 F:      include/net/switchdev.h
18081 F:      net/switchdev/
18082
18083 SY8106A REGULATOR DRIVER
18084 M:      Icenowy Zheng <icenowy@aosc.io>
18085 S:      Maintained
18086 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18087 F:      drivers/regulator/sy8106a-regulator.c
18088
18089 SYNC FILE FRAMEWORK
18090 M:      Sumit Semwal <sumit.semwal@linaro.org>
18091 R:      Gustavo Padovan <gustavo@padovan.org>
18092 L:      linux-media@vger.kernel.org
18093 L:      dri-devel@lists.freedesktop.org
18094 S:      Maintained
18095 T:      git git://anongit.freedesktop.org/drm/drm-misc
18096 F:      Documentation/driver-api/sync_file.rst
18097 F:      drivers/dma-buf/dma-fence*
18098 F:      drivers/dma-buf/sw_sync.c
18099 F:      drivers/dma-buf/sync_*
18100 F:      include/linux/sync_file.h
18101 F:      include/uapi/linux/sync_file.h
18102
18103 SYNOPSYS ARC ARCHITECTURE
18104 M:      Vineet Gupta <vgupta@kernel.org>
18105 L:      linux-snps-arc@lists.infradead.org
18106 S:      Supported
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18108 F:      Documentation/devicetree/bindings/arc/*
18109 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18110 F:      arch/arc/
18111 F:      drivers/clocksource/arc_timer.c
18112 F:      drivers/tty/serial/arc_uart.c
18113
18114 SYNOPSYS ARC HSDK SDP pll clock driver
18115 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18116 S:      Supported
18117 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18118 F:      drivers/clk/clk-hsdk-pll.c
18119
18120 SYNOPSYS ARC SDP clock driver
18121 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18122 S:      Supported
18123 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18124 F:      drivers/clk/axs10x/*
18125
18126 SYNOPSYS ARC SDP platform support
18127 M:      Alexey Brodkin <abrodkin@synopsys.com>
18128 S:      Supported
18129 F:      Documentation/devicetree/bindings/arc/axs10*
18130 F:      arch/arc/boot/dts/ax*
18131 F:      arch/arc/plat-axs10x
18132
18133 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18134 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18135 S:      Supported
18136 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18137 F:      drivers/reset/reset-axs10x.c
18138
18139 SYNOPSYS CREG GPIO DRIVER
18140 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18141 S:      Maintained
18142 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18143 F:      drivers/gpio/gpio-creg-snps.c
18144
18145 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18146 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18147 S:      Maintained
18148 F:      drivers/tty/serial/8250/8250_dw.c
18149 F:      drivers/tty/serial/8250/8250_dwlib.*
18150 F:      drivers/tty/serial/8250/8250_lpss.c
18151
18152 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18153 M:      Hoan Tran <hoan@os.amperecomputing.com>
18154 M:      Serge Semin <fancer.lancer@gmail.com>
18155 L:      linux-gpio@vger.kernel.org
18156 S:      Maintained
18157 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18158 F:      drivers/gpio/gpio-dwapb.c
18159
18160 SYNOPSYS DESIGNWARE APB SSI DRIVER
18161 M:      Serge Semin <fancer.lancer@gmail.com>
18162 L:      linux-spi@vger.kernel.org
18163 S:      Supported
18164 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18165 F:      drivers/spi/spi-dw*
18166
18167 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18168 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18169 S:      Maintained
18170 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18171 F:      drivers/dma/dw-axi-dmac/
18172
18173 SYNOPSYS DESIGNWARE DMAC DRIVER
18174 M:      Viresh Kumar <vireshk@kernel.org>
18175 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18176 S:      Maintained
18177 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18178 F:      drivers/dma/dw/
18179 F:      include/dt-bindings/dma/dw-dmac.h
18180 F:      include/linux/dma/dw.h
18181 F:      include/linux/platform_data/dma-dw.h
18182
18183 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18184 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18185 L:      netdev@vger.kernel.org
18186 S:      Supported
18187 F:      drivers/net/ethernet/synopsys/
18188
18189 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18190 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18191 L:      netdev@vger.kernel.org
18192 S:      Supported
18193 F:      drivers/net/pcs/pcs-xpcs.c
18194 F:      drivers/net/pcs/pcs-xpcs.h
18195 F:      include/linux/pcs/pcs-xpcs.h
18196
18197 SYNOPSYS DESIGNWARE I2C DRIVER
18198 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18199 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18200 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18201 L:      linux-i2c@vger.kernel.org
18202 S:      Maintained
18203 F:      drivers/i2c/busses/i2c-designware-*
18204
18205 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18206 M:      Jaehoon Chung <jh80.chung@samsung.com>
18207 L:      linux-mmc@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/mmc/host/dw_mmc*
18210
18211 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18212 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18213 S:      Supported
18214 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18215 F:      drivers/reset/reset-hsdk.c
18216 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18217
18218 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18219 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18220 M:      Manjunath M B <manjumb@synopsys.com>
18221 L:      linux-mmc@vger.kernel.org
18222 S:      Maintained
18223 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18224
18225 SYSTEM CONFIGURATION (SYSCON)
18226 M:      Lee Jones <lee.jones@linaro.org>
18227 M:      Arnd Bergmann <arnd@arndb.de>
18228 S:      Supported
18229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18230 F:      drivers/mfd/syscon.c
18231
18232 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18233 M:      Sudeep Holla <sudeep.holla@arm.com>
18234 R:      Cristian Marussi <cristian.marussi@arm.com>
18235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18236 S:      Maintained
18237 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18238 F:      drivers/clk/clk-sc[mp]i.c
18239 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18240 F:      drivers/firmware/arm_scmi/
18241 F:      drivers/firmware/arm_scpi.c
18242 F:      drivers/regulator/scmi-regulator.c
18243 F:      drivers/reset/reset-scmi.c
18244 F:      include/linux/sc[mp]i_protocol.h
18245 F:      include/trace/events/scmi.h
18246 F:      include/uapi/linux/virtio_scmi.h
18247
18248 SYSTEM RESET/SHUTDOWN DRIVERS
18249 M:      Sebastian Reichel <sre@kernel.org>
18250 L:      linux-pm@vger.kernel.org
18251 S:      Maintained
18252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18253 F:      Documentation/devicetree/bindings/power/reset/
18254 F:      drivers/power/reset/
18255
18256 SYSTEM TRACE MODULE CLASS
18257 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18258 S:      Maintained
18259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18260 F:      Documentation/trace/stm.rst
18261 F:      drivers/hwtracing/stm/
18262 F:      include/linux/stm.h
18263 F:      include/uapi/linux/stm.h
18264
18265 SYSTEM76 ACPI DRIVER
18266 M:      Jeremy Soller <jeremy@system76.com>
18267 M:      System76 Product Development <productdev@system76.com>
18268 L:      platform-driver-x86@vger.kernel.org
18269 S:      Maintained
18270 F:      drivers/platform/x86/system76_acpi.c
18271
18272 SYSV FILESYSTEM
18273 M:      Christoph Hellwig <hch@infradead.org>
18274 S:      Maintained
18275 F:      Documentation/filesystems/sysv-fs.rst
18276 F:      fs/sysv/
18277 F:      include/linux/sysv_fs.h
18278
18279 TASKSTATS STATISTICS INTERFACE
18280 M:      Balbir Singh <bsingharora@gmail.com>
18281 S:      Maintained
18282 F:      Documentation/accounting/taskstats*
18283 F:      include/linux/taskstats*
18284 F:      kernel/taskstats.c
18285
18286 TC subsystem
18287 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18288 M:      Cong Wang <xiyou.wangcong@gmail.com>
18289 M:      Jiri Pirko <jiri@resnulli.us>
18290 L:      netdev@vger.kernel.org
18291 S:      Maintained
18292 F:      include/net/pkt_cls.h
18293 F:      include/net/pkt_sched.h
18294 F:      include/net/tc_act/
18295 F:      include/uapi/linux/pkt_cls.h
18296 F:      include/uapi/linux/pkt_sched.h
18297 F:      include/uapi/linux/tc_act/
18298 F:      include/uapi/linux/tc_ematch/
18299 F:      net/sched/
18300
18301 TC90522 MEDIA DRIVER
18302 M:      Akihiro Tsukada <tskd08@gmail.com>
18303 L:      linux-media@vger.kernel.org
18304 S:      Odd Fixes
18305 F:      drivers/media/dvb-frontends/tc90522*
18306
18307 TCP LOW PRIORITY MODULE
18308 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18309 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18310 S:      Maintained
18311 W:      http://tcp-lp-mod.sourceforge.net/
18312 F:      net/ipv4/tcp_lp.c
18313
18314 TDA10071 MEDIA DRIVER
18315 M:      Antti Palosaari <crope@iki.fi>
18316 L:      linux-media@vger.kernel.org
18317 S:      Maintained
18318 W:      https://linuxtv.org
18319 W:      http://palosaari.fi/linux/
18320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18321 T:      git git://linuxtv.org/anttip/media_tree.git
18322 F:      drivers/media/dvb-frontends/tda10071*
18323
18324 TDA18212 MEDIA DRIVER
18325 M:      Antti Palosaari <crope@iki.fi>
18326 L:      linux-media@vger.kernel.org
18327 S:      Maintained
18328 W:      https://linuxtv.org
18329 W:      http://palosaari.fi/linux/
18330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18331 T:      git git://linuxtv.org/anttip/media_tree.git
18332 F:      drivers/media/tuners/tda18212*
18333
18334 TDA18218 MEDIA DRIVER
18335 M:      Antti Palosaari <crope@iki.fi>
18336 L:      linux-media@vger.kernel.org
18337 S:      Maintained
18338 W:      https://linuxtv.org
18339 W:      http://palosaari.fi/linux/
18340 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18341 T:      git git://linuxtv.org/anttip/media_tree.git
18342 F:      drivers/media/tuners/tda18218*
18343
18344 TDA18250 MEDIA DRIVER
18345 M:      Olli Salonen <olli.salonen@iki.fi>
18346 L:      linux-media@vger.kernel.org
18347 S:      Maintained
18348 W:      https://linuxtv.org
18349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18350 T:      git git://linuxtv.org/media_tree.git
18351 F:      drivers/media/tuners/tda18250*
18352
18353 TDA18271 MEDIA DRIVER
18354 M:      Michael Krufky <mkrufky@linuxtv.org>
18355 L:      linux-media@vger.kernel.org
18356 S:      Maintained
18357 W:      https://linuxtv.org
18358 W:      http://github.com/mkrufky
18359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18360 T:      git git://linuxtv.org/mkrufky/tuners.git
18361 F:      drivers/media/tuners/tda18271*
18362
18363 TDA1997x MEDIA DRIVER
18364 M:      Tim Harvey <tharvey@gateworks.com>
18365 L:      linux-media@vger.kernel.org
18366 S:      Maintained
18367 W:      https://linuxtv.org
18368 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18369 F:      drivers/media/i2c/tda1997x.*
18370
18371 TDA827x MEDIA DRIVER
18372 M:      Michael Krufky <mkrufky@linuxtv.org>
18373 L:      linux-media@vger.kernel.org
18374 S:      Maintained
18375 W:      https://linuxtv.org
18376 W:      http://github.com/mkrufky
18377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18378 T:      git git://linuxtv.org/mkrufky/tuners.git
18379 F:      drivers/media/tuners/tda8290.*
18380
18381 TDA8290 MEDIA DRIVER
18382 M:      Michael Krufky <mkrufky@linuxtv.org>
18383 L:      linux-media@vger.kernel.org
18384 S:      Maintained
18385 W:      https://linuxtv.org
18386 W:      http://github.com/mkrufky
18387 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18388 T:      git git://linuxtv.org/mkrufky/tuners.git
18389 F:      drivers/media/tuners/tda8290.*
18390
18391 TDA9840 MEDIA DRIVER
18392 M:      Hans Verkuil <hverkuil@xs4all.nl>
18393 L:      linux-media@vger.kernel.org
18394 S:      Maintained
18395 W:      https://linuxtv.org
18396 T:      git git://linuxtv.org/media_tree.git
18397 F:      drivers/media/i2c/tda9840*
18398
18399 TEA5761 TUNER DRIVER
18400 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18401 L:      linux-media@vger.kernel.org
18402 S:      Odd fixes
18403 W:      https://linuxtv.org
18404 T:      git git://linuxtv.org/media_tree.git
18405 F:      drivers/media/tuners/tea5761.*
18406
18407 TEA5767 TUNER DRIVER
18408 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18409 L:      linux-media@vger.kernel.org
18410 S:      Maintained
18411 W:      https://linuxtv.org
18412 T:      git git://linuxtv.org/media_tree.git
18413 F:      drivers/media/tuners/tea5767.*
18414
18415 TEA6415C MEDIA DRIVER
18416 M:      Hans Verkuil <hverkuil@xs4all.nl>
18417 L:      linux-media@vger.kernel.org
18418 S:      Maintained
18419 W:      https://linuxtv.org
18420 T:      git git://linuxtv.org/media_tree.git
18421 F:      drivers/media/i2c/tea6415c*
18422
18423 TEA6420 MEDIA DRIVER
18424 M:      Hans Verkuil <hverkuil@xs4all.nl>
18425 L:      linux-media@vger.kernel.org
18426 S:      Maintained
18427 W:      https://linuxtv.org
18428 T:      git git://linuxtv.org/media_tree.git
18429 F:      drivers/media/i2c/tea6420*
18430
18431 TEAM DRIVER
18432 M:      Jiri Pirko <jiri@resnulli.us>
18433 L:      netdev@vger.kernel.org
18434 S:      Supported
18435 F:      drivers/net/team/
18436 F:      include/linux/if_team.h
18437 F:      include/uapi/linux/if_team.h
18438
18439 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18440 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18441 S:      Maintained
18442 F:      arch/x86/platform/ts5500/
18443
18444 TECHNOTREND USB IR RECEIVER
18445 M:      Sean Young <sean@mess.org>
18446 L:      linux-media@vger.kernel.org
18447 S:      Maintained
18448 F:      drivers/media/rc/ttusbir.c
18449
18450 TECHWELL TW9910 VIDEO DECODER
18451 L:      linux-media@vger.kernel.org
18452 S:      Orphan
18453 F:      drivers/media/i2c/tw9910.c
18454 F:      include/media/i2c/tw9910.h
18455
18456 TEE SUBSYSTEM
18457 M:      Jens Wiklander <jens.wiklander@linaro.org>
18458 R:      Sumit Garg <sumit.garg@linaro.org>
18459 L:      op-tee@lists.trustedfirmware.org
18460 S:      Maintained
18461 F:      Documentation/staging/tee.rst
18462 F:      drivers/tee/
18463 F:      include/linux/tee_drv.h
18464 F:      include/uapi/linux/tee.h
18465
18466 TEGRA ARCHITECTURE SUPPORT
18467 M:      Thierry Reding <thierry.reding@gmail.com>
18468 M:      Jonathan Hunter <jonathanh@nvidia.com>
18469 L:      linux-tegra@vger.kernel.org
18470 S:      Supported
18471 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18473 N:      [^a-z]tegra
18474
18475 TEGRA CLOCK DRIVER
18476 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18477 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18478 S:      Supported
18479 F:      drivers/clk/tegra/
18480
18481 TEGRA DMA DRIVERS
18482 M:      Laxman Dewangan <ldewangan@nvidia.com>
18483 M:      Jon Hunter <jonathanh@nvidia.com>
18484 S:      Supported
18485 F:      drivers/dma/tegra*
18486
18487 TEGRA I2C DRIVER
18488 M:      Laxman Dewangan <ldewangan@nvidia.com>
18489 R:      Dmitry Osipenko <digetx@gmail.com>
18490 S:      Supported
18491 F:      drivers/i2c/busses/i2c-tegra.c
18492
18493 TEGRA IOMMU DRIVERS
18494 M:      Thierry Reding <thierry.reding@gmail.com>
18495 R:      Krishna Reddy <vdumpa@nvidia.com>
18496 L:      linux-tegra@vger.kernel.org
18497 S:      Supported
18498 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18499 F:      drivers/iommu/tegra*
18500
18501 TEGRA KBC DRIVER
18502 M:      Laxman Dewangan <ldewangan@nvidia.com>
18503 S:      Supported
18504 F:      drivers/input/keyboard/tegra-kbc.c
18505
18506 TEGRA NAND DRIVER
18507 M:      Stefan Agner <stefan@agner.ch>
18508 M:      Lucas Stach <dev@lynxeye.de>
18509 S:      Maintained
18510 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18511 F:      drivers/mtd/nand/raw/tegra_nand.c
18512
18513 TEGRA PWM DRIVER
18514 M:      Thierry Reding <thierry.reding@gmail.com>
18515 S:      Supported
18516 F:      drivers/pwm/pwm-tegra.c
18517
18518 TEGRA SERIAL DRIVER
18519 M:      Laxman Dewangan <ldewangan@nvidia.com>
18520 S:      Supported
18521 F:      drivers/tty/serial/serial-tegra.c
18522
18523 TEGRA SPI DRIVER
18524 M:      Laxman Dewangan <ldewangan@nvidia.com>
18525 S:      Supported
18526 F:      drivers/spi/spi-tegra*
18527
18528 TEGRA QUAD SPI DRIVER
18529 M:      Thierry Reding <thierry.reding@gmail.com>
18530 M:      Jonathan Hunter <jonathanh@nvidia.com>
18531 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18532 L:      linux-tegra@vger.kernel.org
18533 S:      Maintained
18534 F:      drivers/spi/spi-tegra210-quad.c
18535
18536 TEGRA VIDEO DRIVER
18537 M:      Thierry Reding <thierry.reding@gmail.com>
18538 M:      Jonathan Hunter <jonathanh@nvidia.com>
18539 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18540 L:      linux-media@vger.kernel.org
18541 L:      linux-tegra@vger.kernel.org
18542 S:      Maintained
18543 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18544 F:      drivers/staging/media/tegra-video/
18545
18546 TEGRA XUSB PADCTL DRIVER
18547 M:      JC Kuo <jckuo@nvidia.com>
18548 S:      Supported
18549 F:      drivers/phy/tegra/xusb*
18550
18551 TEHUTI ETHERNET DRIVER
18552 M:      Andy Gospodarek <andy@greyhouse.net>
18553 L:      netdev@vger.kernel.org
18554 S:      Supported
18555 F:      drivers/net/ethernet/tehuti/*
18556
18557 TELECOM CLOCK DRIVER FOR MCPL0010
18558 M:      Mark Gross <mark.gross@intel.com>
18559 S:      Supported
18560 F:      drivers/char/tlclk.c
18561
18562 TEMPO SEMICONDUCTOR DRIVERS
18563 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18564 S:      Maintained
18565 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18566 F:      sound/soc/codecs/tscs*.c
18567 F:      sound/soc/codecs/tscs*.h
18568
18569 TENSILICA XTENSA PORT (xtensa)
18570 M:      Chris Zankel <chris@zankel.net>
18571 M:      Max Filippov <jcmvbkbc@gmail.com>
18572 L:      linux-xtensa@linux-xtensa.org
18573 S:      Maintained
18574 T:      git git://github.com/czankel/xtensa-linux.git
18575 F:      arch/xtensa/
18576 F:      drivers/irqchip/irq-xtensa-*
18577
18578 TEXAS INSTRUMENTS ASoC DRIVERS
18579 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18580 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18581 S:      Maintained
18582 F:      sound/soc/ti/
18583
18584 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18585 M:      Ricardo Ribalda <ribalda@kernel.org>
18586 L:      linux-iio@vger.kernel.org
18587 S:      Supported
18588 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18589 F:      drivers/iio/dac/ti-dac7612.c
18590
18591 TEXAS INSTRUMENTS DMA DRIVERS
18592 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18593 L:      dmaengine@vger.kernel.org
18594 S:      Maintained
18595 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18596 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18597 F:      Documentation/devicetree/bindings/dma/ti/
18598 F:      drivers/dma/ti/
18599 X:      drivers/dma/ti/cppi41.c
18600 F:      include/linux/dma/k3-udma-glue.h
18601 F:      include/linux/dma/ti-cppi5.h
18602 F:      include/linux/dma/k3-psil.h
18603
18604 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18605 M:      Nishanth Menon <nm@ti.com>
18606 M:      Tero Kristo <kristo@kernel.org>
18607 M:      Santosh Shilimkar <ssantosh@kernel.org>
18608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18609 S:      Maintained
18610 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18611 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18612 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18613 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18614 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18615 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18616 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18617 F:      drivers/clk/keystone/sci-clk.c
18618 F:      drivers/firmware/ti_sci*
18619 F:      drivers/irqchip/irq-ti-sci-inta.c
18620 F:      drivers/irqchip/irq-ti-sci-intr.c
18621 F:      drivers/reset/reset-ti-sci.c
18622 F:      drivers/soc/ti/ti_sci_inta_msi.c
18623 F:      drivers/soc/ti/ti_sci_pm_domains.c
18624 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18625 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18626 F:      include/linux/soc/ti/ti_sci_protocol.h
18627
18628 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18629 M:      Robert Marko <robert.marko@sartura.hr>
18630 M:      Luka Perkov <luka.perkov@sartura.hr>
18631 L:      linux-hwmon@vger.kernel.org
18632 S:      Maintained
18633 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18634 F:      Documentation/hwmon/tps23861.rst
18635 F:      drivers/hwmon/tps23861.c
18636
18637 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18638 M:      Puranjay Mohan <puranjay12@gmail.com>
18639 L:      linux-iio@vger.kernel.org
18640 S:      Supported
18641 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18642 F:      drivers/iio/temperature/tmp117.c
18643
18644 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18645 M:      Hans Verkuil <hverkuil@xs4all.nl>
18646 L:      linux-media@vger.kernel.org
18647 S:      Maintained
18648 W:      https://linuxtv.org
18649 T:      git git://linuxtv.org/media_tree.git
18650 F:      drivers/media/radio/radio-raremono.c
18651
18652 THERMAL
18653 M:      Rafael J. Wysocki <rafael@kernel.org>
18654 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18655 R:      Amit Kucheria <amitk@kernel.org>
18656 R:      Zhang Rui <rui.zhang@intel.com>
18657 L:      linux-pm@vger.kernel.org
18658 S:      Supported
18659 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18661 F:      Documentation/devicetree/bindings/thermal/
18662 F:      drivers/thermal/
18663 F:      include/linux/cpu_cooling.h
18664 F:      include/linux/thermal.h
18665 F:      include/uapi/linux/thermal.h
18666 F:      tools/thermal/
18667
18668 THERMAL DRIVER FOR AMLOGIC SOCS
18669 M:      Guillaume La Roque <glaroque@baylibre.com>
18670 L:      linux-pm@vger.kernel.org
18671 L:      linux-amlogic@lists.infradead.org
18672 S:      Supported
18673 W:      http://linux-meson.com/
18674 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18675 F:      drivers/thermal/amlogic_thermal.c
18676
18677 THERMAL/CPU_COOLING
18678 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18679 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18680 M:      Viresh Kumar <viresh.kumar@linaro.org>
18681 R:      Lukasz Luba <lukasz.luba@arm.com>
18682 L:      linux-pm@vger.kernel.org
18683 S:      Supported
18684 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18685 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18686 F:      drivers/thermal/cpufreq_cooling.c
18687 F:      drivers/thermal/cpuidle_cooling.c
18688 F:      include/linux/cpu_cooling.h
18689
18690 THERMAL/POWER_ALLOCATOR
18691 M:      Lukasz Luba <lukasz.luba@arm.com>
18692 L:      linux-pm@vger.kernel.org
18693 S:      Maintained
18694 F:      Documentation/driver-api/thermal/power_allocator.rst
18695 F:      drivers/thermal/gov_power_allocator.c
18696 F:      include/trace/events/thermal_power_allocator.h
18697
18698 THINKPAD ACPI EXTRAS DRIVER
18699 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18700 L:      ibm-acpi-devel@lists.sourceforge.net
18701 L:      platform-driver-x86@vger.kernel.org
18702 S:      Maintained
18703 W:      http://ibm-acpi.sourceforge.net
18704 W:      http://thinkwiki.org/wiki/Ibm-acpi
18705 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18706 F:      drivers/platform/x86/thinkpad_acpi.c
18707
18708 THINKPAD LMI DRIVER
18709 M:      Mark Pearson <markpearson@lenovo.com>
18710 L:      platform-driver-x86@vger.kernel.org
18711 S:      Maintained
18712 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18713 F:      drivers/platform/x86/think-lmi.?
18714
18715 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18716 M:      Isaac Hazan <isaac.hazan@intel.com>
18717 L:      linux-usb@vger.kernel.org
18718 S:      Maintained
18719 F:      drivers/thunderbolt/dma_test.c
18720
18721 THUNDERBOLT DRIVER
18722 M:      Andreas Noever <andreas.noever@gmail.com>
18723 M:      Michael Jamet <michael.jamet@intel.com>
18724 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18725 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18726 L:      linux-usb@vger.kernel.org
18727 S:      Maintained
18728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18729 F:      Documentation/admin-guide/thunderbolt.rst
18730 F:      drivers/thunderbolt/
18731 F:      include/linux/thunderbolt.h
18732
18733 THUNDERBOLT NETWORK DRIVER
18734 M:      Michael Jamet <michael.jamet@intel.com>
18735 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18736 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18737 L:      netdev@vger.kernel.org
18738 S:      Maintained
18739 F:      drivers/net/thunderbolt.c
18740
18741 THUNDERX GPIO DRIVER
18742 M:      Robert Richter <rric@kernel.org>
18743 S:      Odd Fixes
18744 F:      drivers/gpio/gpio-thunderx.c
18745
18746 TI ADS131E0X ADC SERIES DRIVER
18747 M:      Tomislav Denis <tomislav.denis@avl.com>
18748 L:      linux-iio@vger.kernel.org
18749 S:      Maintained
18750 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18751 F:      drivers/iio/adc/ti-ads131e08.c
18752
18753 TI AM437X VPFE DRIVER
18754 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18755 L:      linux-media@vger.kernel.org
18756 S:      Maintained
18757 W:      https://linuxtv.org
18758 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18759 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18760 F:      drivers/media/platform/am437x/
18761
18762 TI BANDGAP AND THERMAL DRIVER
18763 M:      Eduardo Valentin <edubezval@gmail.com>
18764 M:      Keerthy <j-keerthy@ti.com>
18765 L:      linux-pm@vger.kernel.org
18766 L:      linux-omap@vger.kernel.org
18767 S:      Maintained
18768 F:      drivers/thermal/ti-soc-thermal/
18769
18770 TI BQ27XXX POWER SUPPLY DRIVER
18771 F:      drivers/power/supply/bq27xxx_battery.c
18772 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18773 F:      include/linux/power/bq27xxx_battery.h
18774
18775 TI CDCE706 CLOCK DRIVER
18776 M:      Max Filippov <jcmvbkbc@gmail.com>
18777 S:      Maintained
18778 F:      drivers/clk/clk-cdce706.c
18779
18780 TI CLOCK DRIVER
18781 M:      Tero Kristo <kristo@kernel.org>
18782 L:      linux-omap@vger.kernel.org
18783 S:      Odd Fixes
18784 F:      drivers/clk/ti/
18785 F:      include/linux/clk/ti.h
18786
18787 TI DAVINCI MACHINE SUPPORT
18788 M:      Sekhar Nori <nsekhar@ti.com>
18789 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18791 S:      Supported
18792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18793 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18794 F:      arch/arm/boot/dts/da850*
18795 F:      arch/arm/mach-davinci/
18796 F:      drivers/i2c/busses/i2c-davinci.c
18797
18798 TI DAVINCI SERIES CLOCK DRIVER
18799 M:      David Lechner <david@lechnology.com>
18800 R:      Sekhar Nori <nsekhar@ti.com>
18801 S:      Maintained
18802 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18803 F:      drivers/clk/davinci/
18804
18805 TI DAVINCI SERIES GPIO DRIVER
18806 M:      Keerthy <j-keerthy@ti.com>
18807 L:      linux-gpio@vger.kernel.org
18808 S:      Maintained
18809 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18810 F:      drivers/gpio/gpio-davinci.c
18811
18812 TI DAVINCI SERIES MEDIA DRIVER
18813 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18814 L:      linux-media@vger.kernel.org
18815 S:      Maintained
18816 W:      https://linuxtv.org
18817 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18818 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18819 F:      drivers/media/platform/davinci/
18820 F:      include/media/davinci/
18821
18822 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18823 R:      David Lechner <david@lechnology.com>
18824 L:      linux-iio@vger.kernel.org
18825 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18826 F:      drivers/counter/ti-eqep.c
18827
18828 TI ETHERNET SWITCH DRIVER (CPSW)
18829 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18830 L:      linux-omap@vger.kernel.org
18831 L:      netdev@vger.kernel.org
18832 S:      Maintained
18833 F:      drivers/net/ethernet/ti/cpsw*
18834 F:      drivers/net/ethernet/ti/davinci*
18835
18836 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18837 M:      Alex Dubov <oakad@yahoo.com>
18838 S:      Maintained
18839 W:      http://tifmxx.berlios.de/
18840 F:      drivers/memstick/host/tifm_ms.c
18841 F:      drivers/misc/tifm*
18842 F:      drivers/mmc/host/tifm_sd.c
18843 F:      include/linux/tifm.h
18844
18845 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18846 M:      Santosh Shilimkar <ssantosh@kernel.org>
18847 L:      linux-kernel@vger.kernel.org
18848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18849 S:      Maintained
18850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18851 F:      drivers/soc/ti/*
18852
18853 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18854 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18855 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18856 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18857 S:      Maintained
18858 F:      sound/soc/codecs/isabelle*
18859 F:      sound/soc/codecs/lm49453*
18860
18861 TI PCM3060 ASoC CODEC DRIVER
18862 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18864 S:      Maintained
18865 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18866 F:      sound/soc/codecs/pcm3060*
18867
18868 TI TAS571X FAMILY ASoC CODEC DRIVER
18869 M:      Kevin Cernekee <cernekee@chromium.org>
18870 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18871 S:      Odd Fixes
18872 F:      sound/soc/codecs/tas571x*
18873
18874 TI TRF7970A NFC DRIVER
18875 M:      Mark Greer <mgreer@animalcreek.com>
18876 L:      linux-wireless@vger.kernel.org
18877 L:      linux-nfc@lists.01.org (subscribers-only)
18878 S:      Supported
18879 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18880 F:      drivers/nfc/trf7970a.c
18881
18882 TI TSC2046 ADC DRIVER
18883 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18884 R:      kernel@pengutronix.de
18885 L:      linux-iio@vger.kernel.org
18886 S:      Maintained
18887 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18888 F:      drivers/iio/adc/ti-tsc2046.c
18889
18890 TI TWL4030 SERIES SOC CODEC DRIVER
18891 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18893 S:      Maintained
18894 F:      sound/soc/codecs/twl4030*
18895
18896 TI VPE/CAL DRIVERS
18897 M:      Benoit Parrot <bparrot@ti.com>
18898 L:      linux-media@vger.kernel.org
18899 S:      Maintained
18900 W:      http://linuxtv.org/
18901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18902 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18903 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18904 F:      drivers/media/platform/ti-vpe/
18905
18906 TI WILINK WIRELESS DRIVERS
18907 L:      linux-wireless@vger.kernel.org
18908 S:      Orphan
18909 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18910 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18912 F:      drivers/net/wireless/ti/
18913 F:      include/linux/wl12xx.h
18914
18915 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18916 M:      John Stultz <john.stultz@linaro.org>
18917 M:      Thomas Gleixner <tglx@linutronix.de>
18918 R:      Stephen Boyd <sboyd@kernel.org>
18919 L:      linux-kernel@vger.kernel.org
18920 S:      Supported
18921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18922 F:      include/linux/clocksource.h
18923 F:      include/linux/time.h
18924 F:      include/linux/timex.h
18925 F:      include/uapi/linux/time.h
18926 F:      include/uapi/linux/timex.h
18927 F:      kernel/time/alarmtimer.c
18928 F:      kernel/time/clocksource.c
18929 F:      kernel/time/ntp.c
18930 F:      kernel/time/time*.c
18931 F:      tools/testing/selftests/timers/
18932
18933 TIPC NETWORK LAYER
18934 M:      Jon Maloy <jmaloy@redhat.com>
18935 M:      Ying Xue <ying.xue@windriver.com>
18936 L:      netdev@vger.kernel.org (core kernel code)
18937 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18938 S:      Maintained
18939 W:      http://tipc.sourceforge.net/
18940 F:      include/uapi/linux/tipc*.h
18941 F:      net/tipc/
18942
18943 TLAN NETWORK DRIVER
18944 M:      Samuel Chessman <chessman@tux.org>
18945 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18946 S:      Maintained
18947 W:      http://sourceforge.net/projects/tlan/
18948 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18949 F:      drivers/net/ethernet/ti/tlan.*
18950
18951 TM6000 VIDEO4LINUX DRIVER
18952 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18953 L:      linux-media@vger.kernel.org
18954 S:      Odd fixes
18955 W:      https://linuxtv.org
18956 T:      git git://linuxtv.org/media_tree.git
18957 F:      Documentation/admin-guide/media/tm6000*
18958 F:      drivers/media/usb/tm6000/
18959
18960 TMIO/SDHI MMC DRIVER
18961 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18962 L:      linux-mmc@vger.kernel.org
18963 S:      Supported
18964 F:      drivers/mmc/host/renesas_sdhi*
18965 F:      drivers/mmc/host/tmio_mmc*
18966 F:      include/linux/mfd/tmio.h
18967
18968 TMP401 HARDWARE MONITOR DRIVER
18969 M:      Guenter Roeck <linux@roeck-us.net>
18970 L:      linux-hwmon@vger.kernel.org
18971 S:      Maintained
18972 F:      Documentation/hwmon/tmp401.rst
18973 F:      drivers/hwmon/tmp401.c
18974
18975 TMP513 HARDWARE MONITOR DRIVER
18976 M:      Eric Tremblay <etremblay@distech-controls.com>
18977 L:      linux-hwmon@vger.kernel.org
18978 S:      Maintained
18979 F:      Documentation/hwmon/tmp513.rst
18980 F:      drivers/hwmon/tmp513.c
18981
18982 TMPFS (SHMEM FILESYSTEM)
18983 M:      Hugh Dickins <hughd@google.com>
18984 L:      linux-mm@kvack.org
18985 S:      Maintained
18986 F:      include/linux/shmem_fs.h
18987 F:      mm/shmem.c
18988
18989 TOMOYO SECURITY MODULE
18990 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18991 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18992 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18993 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18994 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18995 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18996 S:      Maintained
18997 W:      https://tomoyo.osdn.jp/
18998 F:      security/tomoyo/
18999
19000 TOPSTAR LAPTOP EXTRAS DRIVER
19001 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19002 L:      platform-driver-x86@vger.kernel.org
19003 S:      Maintained
19004 F:      drivers/platform/x86/topstar-laptop.c
19005
19006 TORTURE-TEST MODULES
19007 M:      Davidlohr Bueso <dave@stgolabs.net>
19008 M:      "Paul E. McKenney" <paulmck@kernel.org>
19009 M:      Josh Triplett <josh@joshtriplett.org>
19010 L:      linux-kernel@vger.kernel.org
19011 S:      Supported
19012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19013 F:      Documentation/RCU/torture.rst
19014 F:      kernel/locking/locktorture.c
19015 F:      kernel/rcu/rcuscale.c
19016 F:      kernel/rcu/rcutorture.c
19017 F:      kernel/rcu/refscale.c
19018 F:      kernel/torture.c
19019
19020 TOSHIBA ACPI EXTRAS DRIVER
19021 M:      Azael Avalos <coproscefalo@gmail.com>
19022 L:      platform-driver-x86@vger.kernel.org
19023 S:      Maintained
19024 F:      drivers/platform/x86/toshiba_acpi.c
19025
19026 TOSHIBA BLUETOOTH DRIVER
19027 M:      Azael Avalos <coproscefalo@gmail.com>
19028 L:      platform-driver-x86@vger.kernel.org
19029 S:      Maintained
19030 F:      drivers/platform/x86/toshiba_bluetooth.c
19031
19032 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19033 M:      Azael Avalos <coproscefalo@gmail.com>
19034 L:      platform-driver-x86@vger.kernel.org
19035 S:      Maintained
19036 F:      drivers/platform/x86/toshiba_haps.c
19037
19038 TOSHIBA SMM DRIVER
19039 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19040 S:      Maintained
19041 W:      http://www.buzzard.org.uk/toshiba/
19042 F:      drivers/char/toshiba.c
19043 F:      include/linux/toshiba.h
19044 F:      include/uapi/linux/toshiba.h
19045
19046 TOSHIBA TC358743 DRIVER
19047 M:      Mats Randgaard <matrandg@cisco.com>
19048 L:      linux-media@vger.kernel.org
19049 S:      Maintained
19050 F:      drivers/media/i2c/tc358743*
19051 F:      include/media/i2c/tc358743.h
19052
19053 TOSHIBA WMI HOTKEYS DRIVER
19054 M:      Azael Avalos <coproscefalo@gmail.com>
19055 L:      platform-driver-x86@vger.kernel.org
19056 S:      Maintained
19057 F:      drivers/platform/x86/toshiba-wmi.c
19058
19059 TPM DEVICE DRIVER
19060 M:      Peter Huewe <peterhuewe@gmx.de>
19061 M:      Jarkko Sakkinen <jarkko@kernel.org>
19062 R:      Jason Gunthorpe <jgg@ziepe.ca>
19063 L:      linux-integrity@vger.kernel.org
19064 S:      Maintained
19065 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19066 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19068 F:      drivers/char/tpm/
19069
19070 TRACING
19071 M:      Steven Rostedt <rostedt@goodmis.org>
19072 M:      Ingo Molnar <mingo@redhat.com>
19073 S:      Maintained
19074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19075 F:      Documentation/trace/ftrace.rst
19076 F:      arch/*/*/*/ftrace.h
19077 F:      arch/*/kernel/ftrace.c
19078 F:      fs/tracefs/
19079 F:      include/*/ftrace.h
19080 F:      include/linux/trace*.h
19081 F:      include/trace/
19082 F:      kernel/trace/
19083 F:      tools/testing/selftests/ftrace/
19084
19085 TRACING MMIO ACCESSES (MMIOTRACE)
19086 M:      Steven Rostedt <rostedt@goodmis.org>
19087 M:      Ingo Molnar <mingo@kernel.org>
19088 R:      Karol Herbst <karolherbst@gmail.com>
19089 R:      Pekka Paalanen <ppaalanen@gmail.com>
19090 L:      linux-kernel@vger.kernel.org
19091 L:      nouveau@lists.freedesktop.org
19092 S:      Maintained
19093 F:      arch/x86/mm/kmmio.c
19094 F:      arch/x86/mm/mmio-mod.c
19095 F:      arch/x86/mm/testmmiotrace.c
19096 F:      include/linux/mmiotrace.h
19097 F:      kernel/trace/trace_mmiotrace.c
19098
19099 TRACING OS NOISE / LATENCY TRACERS
19100 M:      Steven Rostedt <rostedt@goodmis.org>
19101 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19102 S:      Maintained
19103 F:      kernel/trace/trace_osnoise.c
19104 F:      include/trace/events/osnoise.h
19105 F:      kernel/trace/trace_hwlat.c
19106 F:      kernel/trace/trace_irqsoff.c
19107 F:      kernel/trace/trace_sched_wakeup.c
19108 F:      Documentation/trace/osnoise-tracer.rst
19109 F:      Documentation/trace/timerlat-tracer.rst
19110 F:      Documentation/trace/hwlat_detector.rst
19111 F:      arch/*/kernel/trace.c
19112
19113 TRADITIONAL CHINESE DOCUMENTATION
19114 M:      Hu Haowen <src.res@email.cn>
19115 L:      linux-doc-tw-discuss@lists.sourceforge.net
19116 S:      Maintained
19117 W:      https://github.com/srcres258/linux-doc
19118 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19119 F:      Documentation/translations/zh_TW/
19120
19121 TRIVIAL PATCHES
19122 M:      Jiri Kosina <trivial@kernel.org>
19123 S:      Maintained
19124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19125 K:      ^Subject:.*(?i)trivial
19126
19127 TTY LAYER
19128 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19129 M:      Jiri Slaby <jirislaby@kernel.org>
19130 S:      Supported
19131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19132 F:      Documentation/driver-api/serial/
19133 F:      drivers/tty/
19134 F:      drivers/tty/serial/serial_core.c
19135 F:      include/linux/selection.h
19136 F:      include/linux/serial.h
19137 F:      include/linux/serial_core.h
19138 F:      include/linux/sysrq.h
19139 F:      include/linux/tty*.h
19140 F:      include/linux/vt.h
19141 F:      include/linux/vt_*.h
19142 F:      include/uapi/linux/serial.h
19143 F:      include/uapi/linux/serial_core.h
19144 F:      include/uapi/linux/tty.h
19145
19146 TUA9001 MEDIA DRIVER
19147 M:      Antti Palosaari <crope@iki.fi>
19148 L:      linux-media@vger.kernel.org
19149 S:      Maintained
19150 W:      https://linuxtv.org
19151 W:      http://palosaari.fi/linux/
19152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19153 T:      git git://linuxtv.org/anttip/media_tree.git
19154 F:      drivers/media/tuners/tua9001*
19155
19156 TULIP NETWORK DRIVERS
19157 L:      netdev@vger.kernel.org
19158 L:      linux-parisc@vger.kernel.org
19159 S:      Orphan
19160 F:      drivers/net/ethernet/dec/tulip/
19161
19162 TUN/TAP driver
19163 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19164 S:      Maintained
19165 W:      http://vtun.sourceforge.net/tun
19166 F:      Documentation/networking/tuntap.rst
19167 F:      arch/um/os-Linux/drivers/
19168
19169 TURBOCHANNEL SUBSYSTEM
19170 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19171 M:      Ralf Baechle <ralf@linux-mips.org>
19172 L:      linux-mips@vger.kernel.org
19173 S:      Maintained
19174 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19175 F:      drivers/tc/
19176 F:      include/linux/tc.h
19177
19178 TURBOSTAT UTILITY
19179 M:      "Len Brown" <lenb@kernel.org>
19180 L:      linux-pm@vger.kernel.org
19181 S:      Supported
19182 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19183 B:      https://bugzilla.kernel.org
19184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19185 F:      tools/power/x86/turbostat/
19186
19187 TW5864 VIDEO4LINUX DRIVER
19188 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19189 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19190 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19191 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19192 L:      linux-media@vger.kernel.org
19193 S:      Supported
19194 F:      drivers/media/pci/tw5864/
19195
19196 TW68 VIDEO4LINUX DRIVER
19197 M:      Hans Verkuil <hverkuil@xs4all.nl>
19198 L:      linux-media@vger.kernel.org
19199 S:      Odd Fixes
19200 W:      https://linuxtv.org
19201 T:      git git://linuxtv.org/media_tree.git
19202 F:      drivers/media/pci/tw68/
19203
19204 TW686X VIDEO4LINUX DRIVER
19205 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19206 L:      linux-media@vger.kernel.org
19207 S:      Maintained
19208 W:      http://linuxtv.org
19209 T:      git git://linuxtv.org/media_tree.git
19210 F:      drivers/media/pci/tw686x/
19211
19212 UACCE ACCELERATOR FRAMEWORK
19213 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19214 M:      Zhou Wang <wangzhou1@hisilicon.com>
19215 L:      linux-accelerators@lists.ozlabs.org
19216 L:      linux-kernel@vger.kernel.org
19217 S:      Maintained
19218 F:      Documentation/ABI/testing/sysfs-driver-uacce
19219 F:      Documentation/misc-devices/uacce.rst
19220 F:      drivers/misc/uacce/
19221 F:      include/linux/uacce.h
19222 F:      include/uapi/misc/uacce/
19223
19224 UBI FILE SYSTEM (UBIFS)
19225 M:      Richard Weinberger <richard@nod.at>
19226 L:      linux-mtd@lists.infradead.org
19227 S:      Supported
19228 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19231 F:      Documentation/filesystems/ubifs-authentication.rst
19232 F:      Documentation/filesystems/ubifs.rst
19233 F:      fs/ubifs/
19234
19235 UCLINUX (M68KNOMMU AND COLDFIRE)
19236 M:      Greg Ungerer <gerg@linux-m68k.org>
19237 L:      linux-m68k@lists.linux-m68k.org
19238 L:      uclinux-dev@uclinux.org  (subscribers-only)
19239 S:      Maintained
19240 W:      http://www.linux-m68k.org/
19241 W:      http://www.uclinux.org/
19242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19243 F:      arch/m68k/*/*_no.*
19244 F:      arch/m68k/68*/
19245 F:      arch/m68k/coldfire/
19246 F:      arch/m68k/include/asm/*_no.*
19247
19248 UDF FILESYSTEM
19249 M:      Jan Kara <jack@suse.com>
19250 S:      Maintained
19251 F:      Documentation/filesystems/udf.rst
19252 F:      fs/udf/
19253
19254 UDRAW TABLET
19255 M:      Bastien Nocera <hadess@hadess.net>
19256 L:      linux-input@vger.kernel.org
19257 S:      Maintained
19258 F:      drivers/hid/hid-udraw-ps3.c
19259
19260 UFS FILESYSTEM
19261 M:      Evgeniy Dushistov <dushistov@mail.ru>
19262 S:      Maintained
19263 F:      Documentation/admin-guide/ufs.rst
19264 F:      fs/ufs/
19265
19266 UHID USERSPACE HID IO DRIVER
19267 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19268 L:      linux-input@vger.kernel.org
19269 S:      Maintained
19270 F:      drivers/hid/uhid.c
19271 F:      include/uapi/linux/uhid.h
19272
19273 ULPI BUS
19274 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19275 L:      linux-usb@vger.kernel.org
19276 S:      Maintained
19277 F:      drivers/usb/common/ulpi.c
19278 F:      include/linux/ulpi/
19279
19280 UNICODE SUBSYSTEM
19281 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19282 L:      linux-fsdevel@vger.kernel.org
19283 S:      Supported
19284 F:      fs/unicode/
19285
19286 UNIFDEF
19287 M:      Tony Finch <dot@dotat.at>
19288 S:      Maintained
19289 W:      http://dotat.at/prog/unifdef
19290 F:      scripts/unifdef.c
19291
19292 UNIFORM CDROM DRIVER
19293 M:      Phillip Potter <phil@philpotter.co.uk>
19294 S:      Maintained
19295 F:      Documentation/cdrom/
19296 F:      drivers/cdrom/cdrom.c
19297 F:      include/linux/cdrom.h
19298 F:      include/uapi/linux/cdrom.h
19299
19300 UNISYS S-PAR DRIVERS
19301 M:      David Kershner <david.kershner@unisys.com>
19302 L:      sparmaintainer@unisys.com (Unisys internal)
19303 S:      Supported
19304 F:      drivers/staging/unisys/
19305 F:      drivers/visorbus/
19306 F:      include/linux/visorbus.h
19307
19308 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19309 R:      Alim Akhtar <alim.akhtar@samsung.com>
19310 R:      Avri Altman <avri.altman@wdc.com>
19311 L:      linux-scsi@vger.kernel.org
19312 S:      Supported
19313 F:      Documentation/scsi/ufs.rst
19314 F:      drivers/scsi/ufs/
19315
19316 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19317 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19318 L:      linux-scsi@vger.kernel.org
19319 S:      Supported
19320 F:      drivers/scsi/ufs/*dwc*
19321
19322 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19323 M:      Stanley Chu <stanley.chu@mediatek.com>
19324 L:      linux-scsi@vger.kernel.org
19325 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19326 S:      Maintained
19327 F:      drivers/scsi/ufs/ufs-mediatek*
19328
19329 UNSORTED BLOCK IMAGES (UBI)
19330 M:      Richard Weinberger <richard@nod.at>
19331 L:      linux-mtd@lists.infradead.org
19332 S:      Supported
19333 W:      http://www.linux-mtd.infradead.org/
19334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19336 F:      drivers/mtd/ubi/
19337 F:      include/linux/mtd/ubi.h
19338 F:      include/uapi/mtd/ubi-user.h
19339
19340 USB "USBNET" DRIVER FRAMEWORK
19341 M:      Oliver Neukum <oneukum@suse.com>
19342 L:      netdev@vger.kernel.org
19343 S:      Maintained
19344 W:      http://www.linux-usb.org/usbnet
19345 F:      drivers/net/usb/usbnet.c
19346 F:      include/linux/usb/usbnet.h
19347
19348 USB ACM DRIVER
19349 M:      Oliver Neukum <oneukum@suse.com>
19350 L:      linux-usb@vger.kernel.org
19351 S:      Maintained
19352 F:      Documentation/usb/acm.rst
19353 F:      drivers/usb/class/cdc-acm.*
19354
19355 USB APPLE MFI FASTCHARGE DRIVER
19356 M:      Bastien Nocera <hadess@hadess.net>
19357 L:      linux-usb@vger.kernel.org
19358 S:      Maintained
19359 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19360
19361 USB AR5523 WIRELESS DRIVER
19362 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19363 L:      linux-wireless@vger.kernel.org
19364 S:      Maintained
19365 F:      drivers/net/wireless/ath/ar5523/
19366
19367 USB ATTACHED SCSI
19368 M:      Oliver Neukum <oneukum@suse.com>
19369 L:      linux-usb@vger.kernel.org
19370 L:      linux-scsi@vger.kernel.org
19371 S:      Maintained
19372 F:      drivers/usb/storage/uas.c
19373
19374 USB CDC ETHERNET DRIVER
19375 M:      Oliver Neukum <oliver@neukum.org>
19376 L:      linux-usb@vger.kernel.org
19377 S:      Maintained
19378 F:      drivers/net/usb/cdc_*.c
19379 F:      include/uapi/linux/usb/cdc.h
19380
19381 USB CHAOSKEY DRIVER
19382 M:      Keith Packard <keithp@keithp.com>
19383 L:      linux-usb@vger.kernel.org
19384 S:      Maintained
19385 F:      drivers/usb/misc/chaoskey.c
19386
19387 USB CYPRESS C67X00 DRIVER
19388 L:      linux-usb@vger.kernel.org
19389 S:      Orphan
19390 F:      drivers/usb/c67x00/
19391
19392 USB DAVICOM DM9601 DRIVER
19393 M:      Peter Korsgaard <peter@korsgaard.com>
19394 L:      netdev@vger.kernel.org
19395 S:      Maintained
19396 W:      http://www.linux-usb.org/usbnet
19397 F:      drivers/net/usb/dm9601.c
19398
19399 USB EHCI DRIVER
19400 M:      Alan Stern <stern@rowland.harvard.edu>
19401 L:      linux-usb@vger.kernel.org
19402 S:      Maintained
19403 F:      Documentation/usb/ehci.rst
19404 F:      drivers/usb/host/ehci*
19405
19406 USB GADGET/PERIPHERAL SUBSYSTEM
19407 M:      Felipe Balbi <balbi@kernel.org>
19408 L:      linux-usb@vger.kernel.org
19409 S:      Maintained
19410 W:      http://www.linux-usb.org/gadget
19411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19412 F:      drivers/usb/gadget/
19413 F:      include/linux/usb/gadget*
19414
19415 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19416 M:      Jiri Kosina <jikos@kernel.org>
19417 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19418 L:      linux-usb@vger.kernel.org
19419 S:      Maintained
19420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19421 F:      Documentation/hid/hiddev.rst
19422 F:      drivers/hid/usbhid/
19423
19424 USB INTEL XHCI ROLE MUX DRIVER
19425 M:      Hans de Goede <hdegoede@redhat.com>
19426 L:      linux-usb@vger.kernel.org
19427 S:      Maintained
19428 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19429
19430 USB IP DRIVER FOR HISILICON KIRIN 960
19431 M:      Yu Chen <chenyu56@huawei.com>
19432 M:      Binghui Wang <wangbinghui@hisilicon.com>
19433 L:      linux-usb@vger.kernel.org
19434 S:      Maintained
19435 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19436 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19437
19438 USB IP DRIVER FOR HISILICON KIRIN 970
19439 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19440 L:      linux-usb@vger.kernel.org
19441 S:      Maintained
19442 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19443 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19444
19445 USB ISP116X DRIVER
19446 M:      Olav Kongas <ok@artecdesign.ee>
19447 L:      linux-usb@vger.kernel.org
19448 S:      Maintained
19449 F:      drivers/usb/host/isp116x*
19450 F:      include/linux/usb/isp116x.h
19451
19452 USB ISP1760 DRIVER
19453 M:      Rui Miguel Silva <rui.silva@linaro.org>
19454 L:      linux-usb@vger.kernel.org
19455 S:      Maintained
19456 F:      drivers/usb/isp1760/*
19457 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19458
19459 USB LAN78XX ETHERNET DRIVER
19460 M:      Woojung Huh <woojung.huh@microchip.com>
19461 M:      UNGLinuxDriver@microchip.com
19462 L:      netdev@vger.kernel.org
19463 S:      Maintained
19464 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19465 F:      drivers/net/usb/lan78xx.*
19466 F:      include/dt-bindings/net/microchip-lan78xx.h
19467
19468 USB MASS STORAGE DRIVER
19469 M:      Alan Stern <stern@rowland.harvard.edu>
19470 L:      linux-usb@vger.kernel.org
19471 L:      usb-storage@lists.one-eyed-alien.net
19472 S:      Maintained
19473 F:      drivers/usb/storage/
19474
19475 USB MIDI DRIVER
19476 M:      Clemens Ladisch <clemens@ladisch.de>
19477 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19478 S:      Maintained
19479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19480 F:      sound/usb/midi.*
19481
19482 USB NETWORKING DRIVERS
19483 L:      linux-usb@vger.kernel.org
19484 S:      Odd Fixes
19485 F:      drivers/net/usb/
19486
19487 USB OHCI DRIVER
19488 M:      Alan Stern <stern@rowland.harvard.edu>
19489 L:      linux-usb@vger.kernel.org
19490 S:      Maintained
19491 F:      Documentation/usb/ohci.rst
19492 F:      drivers/usb/host/ohci*
19493
19494 USB OTG FSM (Finite State Machine)
19495 M:      Peter Chen <peter.chen@kernel.org>
19496 L:      linux-usb@vger.kernel.org
19497 S:      Maintained
19498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19499 F:      drivers/usb/common/usb-otg-fsm.c
19500
19501 USB OVER IP DRIVER
19502 M:      Valentina Manea <valentina.manea.m@gmail.com>
19503 M:      Shuah Khan <shuah@kernel.org>
19504 M:      Shuah Khan <skhan@linuxfoundation.org>
19505 L:      linux-usb@vger.kernel.org
19506 S:      Maintained
19507 F:      Documentation/usb/usbip_protocol.rst
19508 F:      drivers/usb/usbip/
19509 F:      tools/testing/selftests/drivers/usb/usbip/
19510 F:      tools/usb/usbip/
19511
19512 USB PEGASUS DRIVER
19513 M:      Petko Manolov <petkan@nucleusys.com>
19514 L:      linux-usb@vger.kernel.org
19515 L:      netdev@vger.kernel.org
19516 S:      Maintained
19517 W:      https://github.com/petkan/pegasus
19518 T:      git git://github.com/petkan/pegasus.git
19519 F:      drivers/net/usb/pegasus.*
19520
19521 USB PHY LAYER
19522 M:      Felipe Balbi <balbi@kernel.org>
19523 L:      linux-usb@vger.kernel.org
19524 S:      Maintained
19525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19526 F:      drivers/usb/phy/
19527
19528 USB PRINTER DRIVER (usblp)
19529 M:      Pete Zaitcev <zaitcev@redhat.com>
19530 L:      linux-usb@vger.kernel.org
19531 S:      Supported
19532 F:      drivers/usb/class/usblp.c
19533
19534 USB RAW GADGET DRIVER
19535 R:      Andrey Konovalov <andreyknvl@gmail.com>
19536 L:      linux-usb@vger.kernel.org
19537 S:      Maintained
19538 F:      Documentation/usb/raw-gadget.rst
19539 F:      drivers/usb/gadget/legacy/raw_gadget.c
19540 F:      include/uapi/linux/usb/raw_gadget.h
19541
19542 USB QMI WWAN NETWORK DRIVER
19543 M:      Bjørn Mork <bjorn@mork.no>
19544 L:      netdev@vger.kernel.org
19545 S:      Maintained
19546 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19547 F:      drivers/net/usb/qmi_wwan.c
19548
19549 USB RTL8150 DRIVER
19550 M:      Petko Manolov <petkan@nucleusys.com>
19551 L:      linux-usb@vger.kernel.org
19552 L:      netdev@vger.kernel.org
19553 S:      Maintained
19554 W:      https://github.com/petkan/rtl8150
19555 T:      git git://github.com/petkan/rtl8150.git
19556 F:      drivers/net/usb/rtl8150.c
19557
19558 USB SERIAL SUBSYSTEM
19559 M:      Johan Hovold <johan@kernel.org>
19560 L:      linux-usb@vger.kernel.org
19561 S:      Maintained
19562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19563 F:      Documentation/usb/usb-serial.rst
19564 F:      drivers/usb/serial/
19565 F:      include/linux/usb/serial.h
19566
19567 USB SMSC75XX ETHERNET DRIVER
19568 M:      Steve Glendinning <steve.glendinning@shawell.net>
19569 L:      netdev@vger.kernel.org
19570 S:      Maintained
19571 F:      drivers/net/usb/smsc75xx.*
19572
19573 USB SMSC95XX ETHERNET DRIVER
19574 M:      Steve Glendinning <steve.glendinning@shawell.net>
19575 M:      UNGLinuxDriver@microchip.com
19576 L:      netdev@vger.kernel.org
19577 S:      Maintained
19578 F:      drivers/net/usb/smsc95xx.*
19579
19580 USB SUBSYSTEM
19581 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19582 L:      linux-usb@vger.kernel.org
19583 S:      Supported
19584 W:      http://www.linux-usb.org
19585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19586 F:      Documentation/devicetree/bindings/usb/
19587 F:      Documentation/usb/
19588 F:      drivers/usb/
19589 F:      include/linux/usb.h
19590 F:      include/linux/usb/
19591
19592 USB TYPEC BUS FOR ALTERNATE MODES
19593 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19594 L:      linux-usb@vger.kernel.org
19595 S:      Maintained
19596 F:      Documentation/ABI/testing/sysfs-bus-typec
19597 F:      Documentation/driver-api/usb/typec_bus.rst
19598 F:      drivers/usb/typec/altmodes/
19599 F:      include/linux/usb/typec_altmode.h
19600
19601 USB TYPEC CLASS
19602 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19603 L:      linux-usb@vger.kernel.org
19604 S:      Maintained
19605 F:      Documentation/ABI/testing/sysfs-class-typec
19606 F:      Documentation/driver-api/usb/typec.rst
19607 F:      drivers/usb/typec/
19608 F:      include/linux/usb/typec.h
19609
19610 USB TYPEC INTEL PMC MUX DRIVER
19611 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19612 L:      linux-usb@vger.kernel.org
19613 S:      Maintained
19614 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19615 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19616
19617 USB TYPEC PI3USB30532 MUX DRIVER
19618 M:      Hans de Goede <hdegoede@redhat.com>
19619 L:      linux-usb@vger.kernel.org
19620 S:      Maintained
19621 F:      drivers/usb/typec/mux/pi3usb30532.c
19622
19623 USB TYPEC PORT CONTROLLER DRIVERS
19624 M:      Guenter Roeck <linux@roeck-us.net>
19625 L:      linux-usb@vger.kernel.org
19626 S:      Maintained
19627 F:      drivers/usb/typec/tcpm/
19628
19629 USB UHCI DRIVER
19630 M:      Alan Stern <stern@rowland.harvard.edu>
19631 L:      linux-usb@vger.kernel.org
19632 S:      Maintained
19633 F:      drivers/usb/host/uhci*
19634
19635 USB VIDEO CLASS
19636 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19637 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19638 L:      linux-media@vger.kernel.org
19639 S:      Maintained
19640 W:      http://www.ideasonboard.org/uvc/
19641 T:      git git://linuxtv.org/media_tree.git
19642 F:      drivers/media/usb/uvc/
19643 F:      include/uapi/linux/uvcvideo.h
19644
19645 USB WEBCAM GADGET
19646 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19647 L:      linux-usb@vger.kernel.org
19648 S:      Maintained
19649 F:      drivers/usb/gadget/function/*uvc*
19650 F:      drivers/usb/gadget/legacy/webcam.c
19651 F:      include/uapi/linux/usb/g_uvc.h
19652
19653 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19654 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19655 L:      linux-wireless@vger.kernel.org
19656 S:      Maintained
19657 F:      drivers/net/wireless/rndis_wlan.c
19658
19659 USB XHCI DRIVER
19660 M:      Mathias Nyman <mathias.nyman@intel.com>
19661 L:      linux-usb@vger.kernel.org
19662 S:      Supported
19663 F:      drivers/usb/host/pci-quirks*
19664 F:      drivers/usb/host/xhci*
19665
19666 USB ZD1201 DRIVER
19667 L:      linux-wireless@vger.kernel.org
19668 S:      Orphan
19669 W:      http://linux-lc100020.sourceforge.net
19670 F:      drivers/net/wireless/zydas/zd1201.*
19671
19672 USB ZR364XX DRIVER
19673 M:      Antoine Jacquet <royale@zerezo.com>
19674 L:      linux-usb@vger.kernel.org
19675 L:      linux-media@vger.kernel.org
19676 S:      Maintained
19677 W:      http://royale.zerezo.com/zr364xx/
19678 T:      git git://linuxtv.org/media_tree.git
19679 F:      Documentation/admin-guide/media/zr364xx*
19680 F:      drivers/media/usb/zr364xx/
19681
19682 USER-MODE LINUX (UML)
19683 M:      Jeff Dike <jdike@addtoit.com>
19684 M:      Richard Weinberger <richard@nod.at>
19685 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19686 L:      linux-um@lists.infradead.org
19687 S:      Maintained
19688 W:      http://user-mode-linux.sourceforge.net
19689 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19691 F:      Documentation/virt/uml/
19692 F:      arch/um/
19693 F:      arch/x86/um/
19694 F:      fs/hostfs/
19695
19696 USERSPACE COPYIN/COPYOUT (UIOVEC)
19697 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19698 S:      Maintained
19699 F:      include/linux/uio.h
19700 F:      lib/iov_iter.c
19701
19702 USERSPACE DMA BUFFER DRIVER
19703 M:      Gerd Hoffmann <kraxel@redhat.com>
19704 L:      dri-devel@lists.freedesktop.org
19705 S:      Maintained
19706 T:      git git://anongit.freedesktop.org/drm/drm-misc
19707 F:      drivers/dma-buf/udmabuf.c
19708 F:      include/uapi/linux/udmabuf.h
19709
19710 USERSPACE I/O (UIO)
19711 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19712 S:      Maintained
19713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19714 F:      Documentation/driver-api/uio-howto.rst
19715 F:      drivers/uio/
19716 F:      include/linux/uio_driver.h
19717
19718 UTIL-LINUX PACKAGE
19719 M:      Karel Zak <kzak@redhat.com>
19720 L:      util-linux@vger.kernel.org
19721 S:      Maintained
19722 W:      http://en.wikipedia.org/wiki/Util-linux
19723 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19724
19725 UUID HELPERS
19726 M:      Christoph Hellwig <hch@lst.de>
19727 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19728 L:      linux-kernel@vger.kernel.org
19729 S:      Maintained
19730 T:      git git://git.infradead.org/users/hch/uuid.git
19731 F:      include/linux/uuid.h
19732 F:      include/uapi/linux/uuid.h
19733 F:      lib/test_uuid.c
19734 F:      lib/uuid.c
19735
19736 UV SYSFS DRIVER
19737 M:      Justin Ernst <justin.ernst@hpe.com>
19738 L:      platform-driver-x86@vger.kernel.org
19739 S:      Maintained
19740 F:      drivers/platform/x86/uv_sysfs.c
19741
19742 UVESAFB DRIVER
19743 M:      Michal Januszewski <spock@gentoo.org>
19744 L:      linux-fbdev@vger.kernel.org
19745 S:      Maintained
19746 W:      https://github.com/mjanusz/v86d
19747 F:      Documentation/fb/uvesafb.rst
19748 F:      drivers/video/fbdev/uvesafb.*
19749
19750 Ux500 CLOCK DRIVERS
19751 M:      Ulf Hansson <ulf.hansson@linaro.org>
19752 L:      linux-clk@vger.kernel.org
19753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19754 S:      Maintained
19755 F:      drivers/clk/ux500/
19756
19757 VF610 NAND DRIVER
19758 M:      Stefan Agner <stefan@agner.ch>
19759 L:      linux-mtd@lists.infradead.org
19760 S:      Supported
19761 F:      drivers/mtd/nand/raw/vf610_nfc.c
19762
19763 VFAT/FAT/MSDOS FILESYSTEM
19764 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19765 S:      Maintained
19766 F:      Documentation/filesystems/vfat.rst
19767 F:      fs/fat/
19768
19769 VFIO DRIVER
19770 M:      Alex Williamson <alex.williamson@redhat.com>
19771 R:      Cornelia Huck <cohuck@redhat.com>
19772 L:      kvm@vger.kernel.org
19773 S:      Maintained
19774 T:      git git://github.com/awilliam/linux-vfio.git
19775 F:      Documentation/driver-api/vfio.rst
19776 F:      drivers/vfio/
19777 F:      include/linux/vfio.h
19778 F:      include/linux/vfio_pci_core.h
19779 F:      include/uapi/linux/vfio.h
19780
19781 VFIO FSL-MC DRIVER
19782 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19783 L:      kvm@vger.kernel.org
19784 S:      Maintained
19785 F:      drivers/vfio/fsl-mc/
19786
19787 VFIO MEDIATED DEVICE DRIVERS
19788 M:      Kirti Wankhede <kwankhede@nvidia.com>
19789 L:      kvm@vger.kernel.org
19790 S:      Maintained
19791 F:      Documentation/driver-api/vfio-mediated-device.rst
19792 F:      drivers/vfio/mdev/
19793 F:      include/linux/mdev.h
19794 F:      samples/vfio-mdev/
19795
19796 VFIO PLATFORM DRIVER
19797 M:      Eric Auger <eric.auger@redhat.com>
19798 L:      kvm@vger.kernel.org
19799 S:      Maintained
19800 F:      drivers/vfio/platform/
19801
19802 VGA_SWITCHEROO
19803 R:      Lukas Wunner <lukas@wunner.de>
19804 S:      Maintained
19805 T:      git git://anongit.freedesktop.org/drm/drm-misc
19806 F:      Documentation/gpu/vga-switcheroo.rst
19807 F:      drivers/gpu/vga/vga_switcheroo.c
19808 F:      include/linux/vga_switcheroo.h
19809
19810 VIA RHINE NETWORK DRIVER
19811 S:      Maintained
19812 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19813 F:      drivers/net/ethernet/via/via-rhine.c
19814
19815 VIA SD/MMC CARD CONTROLLER DRIVER
19816 M:      Bruce Chang <brucechang@via.com.tw>
19817 M:      Harald Welte <HaraldWelte@viatech.com>
19818 S:      Maintained
19819 F:      drivers/mmc/host/via-sdmmc.c
19820
19821 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19822 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19823 L:      linux-fbdev@vger.kernel.org
19824 S:      Maintained
19825 F:      drivers/video/fbdev/via/
19826 F:      include/linux/via-core.h
19827 F:      include/linux/via-gpio.h
19828 F:      include/linux/via_i2c.h
19829
19830 VIA VELOCITY NETWORK DRIVER
19831 M:      Francois Romieu <romieu@fr.zoreil.com>
19832 L:      netdev@vger.kernel.org
19833 S:      Maintained
19834 F:      drivers/net/ethernet/via/via-velocity.*
19835
19836 VICODEC VIRTUAL CODEC DRIVER
19837 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19838 L:      linux-media@vger.kernel.org
19839 S:      Maintained
19840 W:      https://linuxtv.org
19841 T:      git git://linuxtv.org/media_tree.git
19842 F:      drivers/media/test-drivers/vicodec/*
19843
19844 VIDEO I2C POLLING DRIVER
19845 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19846 L:      linux-media@vger.kernel.org
19847 S:      Maintained
19848 F:      drivers/media/i2c/video-i2c.c
19849
19850 VIDEO MULTIPLEXER DRIVER
19851 M:      Philipp Zabel <p.zabel@pengutronix.de>
19852 L:      linux-media@vger.kernel.org
19853 S:      Maintained
19854 F:      drivers/media/platform/video-mux.c
19855
19856 VIDEOBUF2 FRAMEWORK
19857 M:      Tomasz Figa <tfiga@chromium.org>
19858 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19859 L:      linux-media@vger.kernel.org
19860 S:      Maintained
19861 F:      drivers/media/common/videobuf2/*
19862 F:      include/media/videobuf2-*
19863
19864 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19865 M:      Helen Koike <helen.koike@collabora.com>
19866 R:      Shuah Khan <skhan@linuxfoundation.org>
19867 L:      linux-media@vger.kernel.org
19868 S:      Maintained
19869 W:      https://linuxtv.org
19870 T:      git git://linuxtv.org/media_tree.git
19871 F:      drivers/media/test-drivers/vimc/*
19872
19873 VIRT LIB
19874 M:      Alex Williamson <alex.williamson@redhat.com>
19875 M:      Paolo Bonzini <pbonzini@redhat.com>
19876 L:      kvm@vger.kernel.org
19877 S:      Supported
19878 F:      virt/lib/
19879
19880 VIRTIO AND VHOST VSOCK DRIVER
19881 M:      Stefan Hajnoczi <stefanha@redhat.com>
19882 M:      Stefano Garzarella <sgarzare@redhat.com>
19883 L:      kvm@vger.kernel.org
19884 L:      virtualization@lists.linux-foundation.org
19885 L:      netdev@vger.kernel.org
19886 S:      Maintained
19887 F:      drivers/vhost/vsock.c
19888 F:      include/linux/virtio_vsock.h
19889 F:      include/uapi/linux/virtio_vsock.h
19890 F:      net/vmw_vsock/virtio_transport.c
19891 F:      net/vmw_vsock/virtio_transport_common.c
19892
19893 VIRTIO BLOCK AND SCSI DRIVERS
19894 M:      "Michael S. Tsirkin" <mst@redhat.com>
19895 M:      Jason Wang <jasowang@redhat.com>
19896 R:      Paolo Bonzini <pbonzini@redhat.com>
19897 R:      Stefan Hajnoczi <stefanha@redhat.com>
19898 L:      virtualization@lists.linux-foundation.org
19899 S:      Maintained
19900 F:      drivers/block/virtio_blk.c
19901 F:      drivers/scsi/virtio_scsi.c
19902 F:      drivers/vhost/scsi.c
19903 F:      include/uapi/linux/virtio_blk.h
19904 F:      include/uapi/linux/virtio_scsi.h
19905
19906 VIRTIO CONSOLE DRIVER
19907 M:      Amit Shah <amit@kernel.org>
19908 L:      virtualization@lists.linux-foundation.org
19909 S:      Maintained
19910 F:      drivers/char/virtio_console.c
19911 F:      include/linux/virtio_console.h
19912 F:      include/uapi/linux/virtio_console.h
19913
19914 VIRTIO CORE AND NET DRIVERS
19915 M:      "Michael S. Tsirkin" <mst@redhat.com>
19916 M:      Jason Wang <jasowang@redhat.com>
19917 L:      virtualization@lists.linux-foundation.org
19918 S:      Maintained
19919 F:      Documentation/devicetree/bindings/virtio/
19920 F:      drivers/block/virtio_blk.c
19921 F:      drivers/crypto/virtio/
19922 F:      drivers/net/virtio_net.c
19923 F:      drivers/vdpa/
19924 F:      drivers/virtio/
19925 F:      include/linux/vdpa.h
19926 F:      include/linux/virtio*.h
19927 F:      include/uapi/linux/virtio_*.h
19928 F:      tools/virtio/
19929
19930 VIRTIO BALLOON
19931 M:      "Michael S. Tsirkin" <mst@redhat.com>
19932 M:      David Hildenbrand <david@redhat.com>
19933 L:      virtualization@lists.linux-foundation.org
19934 S:      Maintained
19935 F:      drivers/virtio/virtio_balloon.c
19936 F:      include/uapi/linux/virtio_balloon.h
19937 F:      include/linux/balloon_compaction.h
19938 F:      mm/balloon_compaction.c
19939
19940 VIRTIO CRYPTO DRIVER
19941 M:      Gonglei <arei.gonglei@huawei.com>
19942 L:      virtualization@lists.linux-foundation.org
19943 L:      linux-crypto@vger.kernel.org
19944 S:      Maintained
19945 F:      drivers/crypto/virtio/
19946 F:      include/uapi/linux/virtio_crypto.h
19947
19948 VIRTIO DRIVERS FOR S390
19949 M:      Cornelia Huck <cohuck@redhat.com>
19950 M:      Halil Pasic <pasic@linux.ibm.com>
19951 L:      linux-s390@vger.kernel.org
19952 L:      virtualization@lists.linux-foundation.org
19953 L:      kvm@vger.kernel.org
19954 S:      Supported
19955 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19956 F:      drivers/s390/virtio/
19957
19958 VIRTIO FILE SYSTEM
19959 M:      Vivek Goyal <vgoyal@redhat.com>
19960 M:      Stefan Hajnoczi <stefanha@redhat.com>
19961 M:      Miklos Szeredi <miklos@szeredi.hu>
19962 L:      virtualization@lists.linux-foundation.org
19963 L:      linux-fsdevel@vger.kernel.org
19964 S:      Supported
19965 W:      https://virtio-fs.gitlab.io/
19966 F:      Documentation/filesystems/virtiofs.rst
19967 F:      fs/fuse/virtio_fs.c
19968 F:      include/uapi/linux/virtio_fs.h
19969
19970 VIRTIO GPIO DRIVER
19971 M:      Enrico Weigelt, metux IT consult <info@metux.net>
19972 M:      Viresh Kumar <vireshk@kernel.org>
19973 L:      linux-gpio@vger.kernel.org
19974 L:      virtualization@lists.linux-foundation.org
19975 S:      Maintained
19976 F:      drivers/gpio/gpio-virtio.c
19977 F:      include/uapi/linux/virtio_gpio.h
19978
19979 VIRTIO GPU DRIVER
19980 M:      David Airlie <airlied@linux.ie>
19981 M:      Gerd Hoffmann <kraxel@redhat.com>
19982 L:      dri-devel@lists.freedesktop.org
19983 L:      virtualization@lists.linux-foundation.org
19984 S:      Maintained
19985 T:      git git://anongit.freedesktop.org/drm/drm-misc
19986 F:      drivers/gpu/drm/virtio/
19987 F:      include/uapi/linux/virtio_gpu.h
19988
19989 VIRTIO HOST (VHOST)
19990 M:      "Michael S. Tsirkin" <mst@redhat.com>
19991 M:      Jason Wang <jasowang@redhat.com>
19992 L:      kvm@vger.kernel.org
19993 L:      virtualization@lists.linux-foundation.org
19994 L:      netdev@vger.kernel.org
19995 S:      Maintained
19996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19997 F:      drivers/vhost/
19998 F:      include/linux/vhost_iotlb.h
19999 F:      include/uapi/linux/vhost.h
20000
20001 VIRTIO INPUT DRIVER
20002 M:      Gerd Hoffmann <kraxel@redhat.com>
20003 S:      Maintained
20004 F:      drivers/virtio/virtio_input.c
20005 F:      include/uapi/linux/virtio_input.h
20006
20007 VIRTIO IOMMU DRIVER
20008 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20009 L:      virtualization@lists.linux-foundation.org
20010 S:      Maintained
20011 F:      drivers/iommu/virtio-iommu.c
20012 F:      include/uapi/linux/virtio_iommu.h
20013
20014 VIRTIO MEM DRIVER
20015 M:      David Hildenbrand <david@redhat.com>
20016 L:      virtualization@lists.linux-foundation.org
20017 S:      Maintained
20018 W:      https://virtio-mem.gitlab.io/
20019 F:      drivers/virtio/virtio_mem.c
20020 F:      include/uapi/linux/virtio_mem.h
20021
20022 VIRTIO SOUND DRIVER
20023 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20024 M:      "Michael S. Tsirkin" <mst@redhat.com>
20025 L:      virtualization@lists.linux-foundation.org
20026 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20027 S:      Maintained
20028 F:      include/uapi/linux/virtio_snd.h
20029 F:      sound/virtio/*
20030
20031 VIRTIO I2C DRIVER
20032 M:      Jie Deng <jie.deng@intel.com>
20033 M:      Viresh Kumar <viresh.kumar@linaro.org>
20034 L:      linux-i2c@vger.kernel.org
20035 L:      virtualization@lists.linux-foundation.org
20036 S:      Maintained
20037 F:      drivers/i2c/busses/i2c-virtio.c
20038 F:      include/uapi/linux/virtio_i2c.h
20039
20040 VIRTUAL BOX GUEST DEVICE DRIVER
20041 M:      Hans de Goede <hdegoede@redhat.com>
20042 M:      Arnd Bergmann <arnd@arndb.de>
20043 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20044 S:      Maintained
20045 F:      drivers/virt/vboxguest/
20046 F:      include/linux/vbox_utils.h
20047 F:      include/uapi/linux/vbox*.h
20048
20049 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20050 M:      Hans de Goede <hdegoede@redhat.com>
20051 L:      linux-fsdevel@vger.kernel.org
20052 S:      Maintained
20053 F:      fs/vboxsf/*
20054
20055 VIRTUAL SERIO DEVICE DRIVER
20056 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20057 S:      Maintained
20058 F:      drivers/input/serio/userio.c
20059 F:      include/uapi/linux/userio.h
20060
20061 VIVID VIRTUAL VIDEO DRIVER
20062 M:      Hans Verkuil <hverkuil@xs4all.nl>
20063 L:      linux-media@vger.kernel.org
20064 S:      Maintained
20065 W:      https://linuxtv.org
20066 T:      git git://linuxtv.org/media_tree.git
20067 F:      drivers/media/test-drivers/vivid/*
20068
20069 VIDTV VIRTUAL DIGITAL TV DRIVER
20070 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20071 L:      linux-media@vger.kernel.org
20072 S:      Maintained
20073 W:      https://linuxtv.org
20074 T:      git git://linuxtv.org/media_tree.git
20075 F:      drivers/media/test-drivers/vidtv/*
20076
20077 VLYNQ BUS
20078 M:      Florian Fainelli <f.fainelli@gmail.com>
20079 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20080 S:      Maintained
20081 F:      drivers/vlynq/vlynq.c
20082 F:      include/linux/vlynq.h
20083
20084 VME SUBSYSTEM
20085 M:      Martyn Welch <martyn@welchs.me.uk>
20086 M:      Manohar Vanga <manohar.vanga@gmail.com>
20087 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20088 L:      linux-kernel@vger.kernel.org
20089 S:      Maintained
20090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20091 F:      Documentation/driver-api/vme.rst
20092 F:      drivers/staging/vme/
20093 F:      drivers/vme/
20094 F:      include/linux/vme*
20095
20096 VM SOCKETS (AF_VSOCK)
20097 M:      Stefano Garzarella <sgarzare@redhat.com>
20098 L:      virtualization@lists.linux-foundation.org
20099 L:      netdev@vger.kernel.org
20100 S:      Maintained
20101 F:      drivers/net/vsockmon.c
20102 F:      include/net/af_vsock.h
20103 F:      include/uapi/linux/vm_sockets.h
20104 F:      include/uapi/linux/vm_sockets_diag.h
20105 F:      include/uapi/linux/vsockmon.h
20106 F:      net/vmw_vsock/
20107 F:      tools/testing/vsock/
20108
20109 VMWARE BALLOON DRIVER
20110 M:      Nadav Amit <namit@vmware.com>
20111 M:      "VMware, Inc." <pv-drivers@vmware.com>
20112 L:      linux-kernel@vger.kernel.org
20113 S:      Maintained
20114 F:      drivers/misc/vmw_balloon.c
20115
20116 VMWARE HYPERVISOR INTERFACE
20117 M:      Deep Shah <sdeep@vmware.com>
20118 M:      "VMware, Inc." <pv-drivers@vmware.com>
20119 L:      virtualization@lists.linux-foundation.org
20120 S:      Supported
20121 F:      arch/x86/include/asm/vmware.h
20122 F:      arch/x86/kernel/cpu/vmware.c
20123
20124 VMWARE PVRDMA DRIVER
20125 M:      Adit Ranadive <aditr@vmware.com>
20126 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20127 L:      linux-rdma@vger.kernel.org
20128 S:      Maintained
20129 F:      drivers/infiniband/hw/vmw_pvrdma/
20130
20131 VMware PVSCSI driver
20132 M:      Vishal Bhakta <vbhakta@vmware.com>
20133 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20134 L:      linux-scsi@vger.kernel.org
20135 S:      Maintained
20136 F:      drivers/scsi/vmw_pvscsi.c
20137 F:      drivers/scsi/vmw_pvscsi.h
20138
20139 VMWARE VIRTUAL PTP CLOCK DRIVER
20140 M:      Vivek Thampi <vithampi@vmware.com>
20141 M:      "VMware, Inc." <pv-drivers@vmware.com>
20142 L:      netdev@vger.kernel.org
20143 S:      Supported
20144 F:      drivers/ptp/ptp_vmw.c
20145
20146 VMWARE VMCI DRIVER
20147 M:      Jorgen Hansen <jhansen@vmware.com>
20148 M:      Vishnu Dasa <vdasa@vmware.com>
20149 L:      linux-kernel@vger.kernel.org
20150 L:      pv-drivers@vmware.com (private)
20151 S:      Maintained
20152 F:      drivers/misc/vmw_vmci/
20153
20154 VMWARE VMMOUSE SUBDRIVER
20155 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20156 M:      "VMware, Inc." <pv-drivers@vmware.com>
20157 L:      linux-input@vger.kernel.org
20158 S:      Maintained
20159 F:      drivers/input/mouse/vmmouse.c
20160 F:      drivers/input/mouse/vmmouse.h
20161
20162 VMWARE VMXNET3 ETHERNET DRIVER
20163 M:      Ronak Doshi <doshir@vmware.com>
20164 M:      pv-drivers@vmware.com
20165 L:      netdev@vger.kernel.org
20166 S:      Maintained
20167 F:      drivers/net/vmxnet3/
20168
20169 VOCORE VOCORE2 BOARD
20170 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20171 L:      linux-mips@vger.kernel.org
20172 S:      Maintained
20173 F:      arch/mips/boot/dts/ralink/vocore2.dts
20174
20175 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20176 M:      Liam Girdwood <lgirdwood@gmail.com>
20177 M:      Mark Brown <broonie@kernel.org>
20178 L:      linux-kernel@vger.kernel.org
20179 S:      Supported
20180 W:      http://www.slimlogic.co.uk/?p=48
20181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20182 F:      Documentation/devicetree/bindings/regulator/
20183 F:      Documentation/power/regulator/
20184 F:      drivers/regulator/
20185 F:      include/dt-bindings/regulator/
20186 F:      include/linux/regulator/
20187 K:      regulator_get_optional
20188
20189 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20190 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20191 F:      drivers/regulator/irq_helpers.c
20192
20193 VRF
20194 M:      David Ahern <dsahern@kernel.org>
20195 L:      netdev@vger.kernel.org
20196 S:      Maintained
20197 F:      Documentation/networking/vrf.rst
20198 F:      drivers/net/vrf.c
20199
20200 VSPRINTF
20201 M:      Petr Mladek <pmladek@suse.com>
20202 M:      Steven Rostedt <rostedt@goodmis.org>
20203 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20204 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20205 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20206 S:      Maintained
20207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20208 F:      Documentation/core-api/printk-formats.rst
20209 F:      lib/test_printf.c
20210 F:      lib/test_scanf.c
20211 F:      lib/vsprintf.c
20212
20213 VT1211 HARDWARE MONITOR DRIVER
20214 M:      Juerg Haefliger <juergh@gmail.com>
20215 L:      linux-hwmon@vger.kernel.org
20216 S:      Maintained
20217 F:      Documentation/hwmon/vt1211.rst
20218 F:      drivers/hwmon/vt1211.c
20219
20220 VT8231 HARDWARE MONITOR DRIVER
20221 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20222 L:      linux-hwmon@vger.kernel.org
20223 S:      Maintained
20224 F:      drivers/hwmon/vt8231.c
20225
20226 VUB300 USB to SDIO/SD/MMC bridge chip
20227 L:      linux-mmc@vger.kernel.org
20228 S:      Orphan
20229 F:      drivers/mmc/host/vub300.c
20230
20231 W1 DALLAS'S 1-WIRE BUS
20232 M:      Evgeniy Polyakov <zbr@ioremap.net>
20233 S:      Maintained
20234 F:      Documentation/devicetree/bindings/w1/
20235 F:      Documentation/w1/
20236 F:      drivers/w1/
20237 F:      include/linux/w1.h
20238
20239 W83791D HARDWARE MONITORING DRIVER
20240 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20241 L:      linux-hwmon@vger.kernel.org
20242 S:      Maintained
20243 F:      Documentation/hwmon/w83791d.rst
20244 F:      drivers/hwmon/w83791d.c
20245
20246 W83793 HARDWARE MONITORING DRIVER
20247 M:      Rudolf Marek <r.marek@assembler.cz>
20248 L:      linux-hwmon@vger.kernel.org
20249 S:      Maintained
20250 F:      Documentation/hwmon/w83793.rst
20251 F:      drivers/hwmon/w83793.c
20252
20253 W83795 HARDWARE MONITORING DRIVER
20254 M:      Jean Delvare <jdelvare@suse.com>
20255 L:      linux-hwmon@vger.kernel.org
20256 S:      Maintained
20257 F:      drivers/hwmon/w83795.c
20258
20259 W83L51xD SD/MMC CARD INTERFACE DRIVER
20260 M:      Pierre Ossman <pierre@ossman.eu>
20261 S:      Maintained
20262 F:      drivers/mmc/host/wbsd.*
20263
20264 WACOM PROTOCOL 4 SERIAL TABLETS
20265 M:      Julian Squires <julian@cipht.net>
20266 M:      Hans de Goede <hdegoede@redhat.com>
20267 L:      linux-input@vger.kernel.org
20268 S:      Maintained
20269 F:      drivers/input/tablet/wacom_serial4.c
20270
20271 WATCHDOG DEVICE DRIVERS
20272 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20273 M:      Guenter Roeck <linux@roeck-us.net>
20274 L:      linux-watchdog@vger.kernel.org
20275 S:      Maintained
20276 W:      http://www.linux-watchdog.org/
20277 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20278 F:      Documentation/devicetree/bindings/watchdog/
20279 F:      Documentation/watchdog/
20280 F:      drivers/watchdog/
20281 F:      include/linux/watchdog.h
20282 F:      include/uapi/linux/watchdog.h
20283
20284 WHISKEYCOVE PMIC GPIO DRIVER
20285 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20286 L:      linux-gpio@vger.kernel.org
20287 S:      Maintained
20288 F:      drivers/gpio/gpio-wcove.c
20289
20290 WHWAVE RTC DRIVER
20291 M:      Dianlong Li <long17.cool@163.com>
20292 L:      linux-rtc@vger.kernel.org
20293 S:      Maintained
20294 F:      drivers/rtc/rtc-sd3078.c
20295
20296 WIIMOTE HID DRIVER
20297 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20298 L:      linux-input@vger.kernel.org
20299 S:      Maintained
20300 F:      drivers/hid/hid-wiimote*
20301
20302 WILOCITY WIL6210 WIRELESS DRIVER
20303 M:      Maya Erez <merez@codeaurora.org>
20304 L:      linux-wireless@vger.kernel.org
20305 L:      wil6210@qti.qualcomm.com
20306 S:      Supported
20307 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20308 F:      drivers/net/wireless/ath/wil6210/
20309
20310 WINBOND CIR DRIVER
20311 M:      David Härdeman <david@hardeman.nu>
20312 S:      Maintained
20313 F:      drivers/media/rc/winbond-cir.c
20314
20315 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20316 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20317 L:      linux-watchdog@vger.kernel.org
20318 S:      Maintained
20319 F:      drivers/watchdog/ebc-c384_wdt.c
20320
20321 WINSYSTEMS WS16C48 GPIO DRIVER
20322 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20323 L:      linux-gpio@vger.kernel.org
20324 S:      Maintained
20325 F:      drivers/gpio/gpio-ws16c48.c
20326
20327 WIREGUARD SECURE NETWORK TUNNEL
20328 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20329 L:      wireguard@lists.zx2c4.com
20330 L:      netdev@vger.kernel.org
20331 S:      Maintained
20332 F:      drivers/net/wireguard/
20333 F:      tools/testing/selftests/wireguard/
20334
20335 WISTRON LAPTOP BUTTON DRIVER
20336 M:      Miloslav Trmac <mitr@volny.cz>
20337 S:      Maintained
20338 F:      drivers/input/misc/wistron_btns.c
20339
20340 WL3501 WIRELESS PCMCIA CARD DRIVER
20341 L:      linux-wireless@vger.kernel.org
20342 S:      Odd fixes
20343 F:      drivers/net/wireless/wl3501*
20344
20345 WOLFSON MICROELECTRONICS DRIVERS
20346 L:      patches@opensource.cirrus.com
20347 S:      Supported
20348 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20349 T:      git https://github.com/CirrusLogic/linux-drivers.git
20350 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20351 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20352 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20353 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20354 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20355 F:      Documentation/devicetree/bindings/sound/wm*
20356 F:      Documentation/hwmon/wm83??.rst
20357 F:      arch/arm/mach-s3c/mach-crag6410*
20358 F:      drivers/clk/clk-wm83*.c
20359 F:      drivers/gpio/gpio-*wm*.c
20360 F:      drivers/gpio/gpio-arizona.c
20361 F:      drivers/hwmon/wm83??-hwmon.c
20362 F:      drivers/input/misc/wm831x-on.c
20363 F:      drivers/input/touchscreen/wm831x-ts.c
20364 F:      drivers/input/touchscreen/wm97*.c
20365 F:      drivers/leds/leds-wm83*.c
20366 F:      drivers/mfd/arizona*
20367 F:      drivers/mfd/cs47l24*
20368 F:      drivers/mfd/wm*.c
20369 F:      drivers/power/supply/wm83*.c
20370 F:      drivers/regulator/arizona*
20371 F:      drivers/regulator/wm8*.c
20372 F:      drivers/rtc/rtc-wm83*.c
20373 F:      drivers/video/backlight/wm83*_bl.c
20374 F:      drivers/watchdog/wm83*_wdt.c
20375 F:      include/linux/mfd/arizona/
20376 F:      include/linux/mfd/wm831x/
20377 F:      include/linux/mfd/wm8350/
20378 F:      include/linux/mfd/wm8400*
20379 F:      include/linux/regulator/arizona*
20380 F:      include/linux/wm97xx.h
20381 F:      include/sound/wm????.h
20382 F:      sound/soc/codecs/arizona*
20383 F:      sound/soc/codecs/cs47l24*
20384 F:      sound/soc/codecs/wm*
20385
20386 WORKQUEUE
20387 M:      Tejun Heo <tj@kernel.org>
20388 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20389 S:      Maintained
20390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20391 F:      Documentation/core-api/workqueue.rst
20392 F:      include/linux/workqueue.h
20393 F:      kernel/workqueue.c
20394
20395 WWAN DRIVERS
20396 M:      Loic Poulain <loic.poulain@linaro.org>
20397 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20398 R:      Johannes Berg <johannes@sipsolutions.net>
20399 L:      netdev@vger.kernel.org
20400 S:      Maintained
20401 F:      drivers/net/wwan/
20402 F:      include/linux/wwan.h
20403 F:      include/uapi/linux/wwan.h
20404
20405 X-POWERS AXP288 PMIC DRIVERS
20406 M:      Hans de Goede <hdegoede@redhat.com>
20407 S:      Maintained
20408 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20409 N:      axp288
20410
20411 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20412 M:      Chen-Yu Tsai <wens@csie.org>
20413 L:      linux-kernel@vger.kernel.org
20414 S:      Maintained
20415 N:      axp[128]
20416
20417 X.25 STACK
20418 M:      Martin Schiller <ms@dev.tdt.de>
20419 L:      linux-x25@vger.kernel.org
20420 S:      Maintained
20421 F:      Documentation/networking/lapb-module.rst
20422 F:      Documentation/networking/x25*
20423 F:      drivers/net/wan/hdlc_x25.c
20424 F:      drivers/net/wan/lapbether.c
20425 F:      include/*/lapb.h
20426 F:      include/net/x25*
20427 F:      include/uapi/linux/x25.h
20428 F:      net/lapb/
20429 F:      net/x25/
20430
20431 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20432 M:      Thomas Gleixner <tglx@linutronix.de>
20433 M:      Ingo Molnar <mingo@redhat.com>
20434 M:      Borislav Petkov <bp@alien8.de>
20435 M:      Dave Hansen <dave.hansen@linux.intel.com>
20436 M:      x86@kernel.org
20437 R:      "H. Peter Anvin" <hpa@zytor.com>
20438 L:      linux-kernel@vger.kernel.org
20439 S:      Maintained
20440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20441 F:      Documentation/devicetree/bindings/x86/
20442 F:      Documentation/x86/
20443 F:      arch/x86/
20444
20445 X86 ENTRY CODE
20446 M:      Andy Lutomirski <luto@kernel.org>
20447 L:      linux-kernel@vger.kernel.org
20448 S:      Maintained
20449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20450 F:      arch/x86/entry/
20451
20452 X86 MCE INFRASTRUCTURE
20453 M:      Tony Luck <tony.luck@intel.com>
20454 M:      Borislav Petkov <bp@alien8.de>
20455 L:      linux-edac@vger.kernel.org
20456 S:      Maintained
20457 F:      arch/x86/kernel/cpu/mce/*
20458
20459 X86 MICROCODE UPDATE SUPPORT
20460 M:      Borislav Petkov <bp@alien8.de>
20461 S:      Maintained
20462 F:      arch/x86/kernel/cpu/microcode/*
20463
20464 X86 MM
20465 M:      Dave Hansen <dave.hansen@linux.intel.com>
20466 M:      Andy Lutomirski <luto@kernel.org>
20467 M:      Peter Zijlstra <peterz@infradead.org>
20468 L:      linux-kernel@vger.kernel.org
20469 S:      Maintained
20470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20471 F:      arch/x86/mm/
20472
20473 X86 PLATFORM DRIVERS
20474 M:      Hans de Goede <hdegoede@redhat.com>
20475 M:      Mark Gross <mgross@linux.intel.com>
20476 L:      platform-driver-x86@vger.kernel.org
20477 S:      Maintained
20478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20479 F:      drivers/platform/olpc/
20480 F:      drivers/platform/x86/
20481
20482 X86 PLATFORM DRIVERS - ARCH
20483 R:      Darren Hart <dvhart@infradead.org>
20484 R:      Andy Shevchenko <andy@infradead.org>
20485 L:      platform-driver-x86@vger.kernel.org
20486 L:      x86@kernel.org
20487 S:      Maintained
20488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20489 F:      arch/x86/platform
20490
20491 X86 PLATFORM UV HPE SUPERDOME FLEX
20492 M:      Steve Wahl <steve.wahl@hpe.com>
20493 R:      Mike Travis <mike.travis@hpe.com>
20494 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20495 R:      Russ Anderson <russ.anderson@hpe.com>
20496 S:      Supported
20497 F:      arch/x86/include/asm/uv/
20498 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20499 F:      arch/x86/platform/uv/
20500
20501 X86 VDSO
20502 M:      Andy Lutomirski <luto@kernel.org>
20503 L:      linux-kernel@vger.kernel.org
20504 S:      Maintained
20505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20506 F:      arch/x86/entry/vdso/
20507
20508 XARRAY
20509 M:      Matthew Wilcox <willy@infradead.org>
20510 L:      linux-fsdevel@vger.kernel.org
20511 S:      Supported
20512 F:      Documentation/core-api/xarray.rst
20513 F:      include/linux/idr.h
20514 F:      include/linux/xarray.h
20515 F:      lib/idr.c
20516 F:      lib/xarray.c
20517 F:      tools/testing/radix-tree
20518
20519 XBOX DVD IR REMOTE
20520 M:      Benjamin Valentin <benpicco@googlemail.com>
20521 S:      Maintained
20522 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20523 F:      drivers/media/rc/xbox_remote.c
20524
20525 XC2028/3028 TUNER DRIVER
20526 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20527 L:      linux-media@vger.kernel.org
20528 S:      Maintained
20529 W:      https://linuxtv.org
20530 T:      git git://linuxtv.org/media_tree.git
20531 F:      drivers/media/tuners/tuner-xc2028.*
20532
20533 XDP (eXpress Data Path)
20534 M:      Alexei Starovoitov <ast@kernel.org>
20535 M:      Daniel Borkmann <daniel@iogearbox.net>
20536 M:      David S. Miller <davem@davemloft.net>
20537 M:      Jakub Kicinski <kuba@kernel.org>
20538 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20539 M:      John Fastabend <john.fastabend@gmail.com>
20540 L:      netdev@vger.kernel.org
20541 L:      bpf@vger.kernel.org
20542 S:      Supported
20543 F:      include/net/xdp.h
20544 F:      include/net/xdp_priv.h
20545 F:      include/trace/events/xdp.h
20546 F:      kernel/bpf/cpumap.c
20547 F:      kernel/bpf/devmap.c
20548 F:      net/core/xdp.c
20549 F:      samples/bpf/xdp*
20550 F:      tools/testing/selftests/bpf/*xdp*
20551 F:      tools/testing/selftests/bpf/*/*xdp*
20552 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20553 F:      drivers/net/ethernet/*/*/*xdp*
20554 K:      (?:\b|_)xdp(?:\b|_)
20555
20556 XDP SOCKETS (AF_XDP)
20557 M:      Björn Töpel <bjorn@kernel.org>
20558 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20559 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20560 L:      netdev@vger.kernel.org
20561 L:      bpf@vger.kernel.org
20562 S:      Maintained
20563 F:      Documentation/networking/af_xdp.rst
20564 F:      include/net/xdp_sock*
20565 F:      include/net/xsk_buff_pool.h
20566 F:      include/uapi/linux/if_xdp.h
20567 F:      include/uapi/linux/xdp_diag.h
20568 F:      include/net/netns/xdp.h
20569 F:      net/xdp/
20570 F:      samples/bpf/xdpsock*
20571 F:      tools/lib/bpf/xsk*
20572
20573 XEN BLOCK SUBSYSTEM
20574 M:      Roger Pau Monné <roger.pau@citrix.com>
20575 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20576 S:      Supported
20577 F:      drivers/block/xen*
20578 F:      drivers/block/xen-blkback/*
20579
20580 XEN HYPERVISOR ARM
20581 M:      Stefano Stabellini <sstabellini@kernel.org>
20582 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20583 S:      Maintained
20584 F:      arch/arm/include/asm/xen/
20585 F:      arch/arm/xen/
20586
20587 XEN HYPERVISOR ARM64
20588 M:      Stefano Stabellini <sstabellini@kernel.org>
20589 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20590 S:      Maintained
20591 F:      arch/arm64/include/asm/xen/
20592 F:      arch/arm64/xen/
20593
20594 XEN HYPERVISOR INTERFACE
20595 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20596 M:      Juergen Gross <jgross@suse.com>
20597 R:      Stefano Stabellini <sstabellini@kernel.org>
20598 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20599 S:      Supported
20600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20601 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20602 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20603 F:      arch/x86/include/asm/pvclock-abi.h
20604 F:      arch/x86/include/asm/xen/
20605 F:      arch/x86/platform/pvh/
20606 F:      arch/x86/xen/
20607 F:      drivers/*/xen-*front.c
20608 F:      drivers/xen/
20609 F:      include/uapi/xen/
20610 F:      include/xen/
20611
20612 XEN NETWORK BACKEND DRIVER
20613 M:      Wei Liu <wei.liu@kernel.org>
20614 M:      Paul Durrant <paul@xen.org>
20615 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20616 L:      netdev@vger.kernel.org
20617 S:      Supported
20618 F:      drivers/net/xen-netback/*
20619
20620 XEN PCI SUBSYSTEM
20621 M:      Juergen Gross <jgross@suse.com>
20622 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20623 S:      Supported
20624 F:      arch/x86/pci/*xen*
20625 F:      drivers/pci/*xen*
20626
20627 XEN PVSCSI DRIVERS
20628 M:      Juergen Gross <jgross@suse.com>
20629 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20630 L:      linux-scsi@vger.kernel.org
20631 S:      Supported
20632 F:      drivers/scsi/xen-scsifront.c
20633 F:      drivers/xen/xen-scsiback.c
20634 F:      include/xen/interface/io/vscsiif.h
20635
20636 XEN SOUND FRONTEND DRIVER
20637 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20638 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20640 S:      Supported
20641 F:      sound/xen/*
20642
20643 XEN SWIOTLB SUBSYSTEM
20644 M:      Juergen Gross <jgross@suse.com>
20645 M:      Stefano Stabellini <sstabellini@kernel.org>
20646 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20647 L:      iommu@lists.linux-foundation.org
20648 L:      iommu@lists.linux.dev
20649 S:      Supported
20650 F:      arch/x86/xen/*swiotlb*
20651 F:      drivers/xen/*swiotlb*
20652
20653 XFS FILESYSTEM
20654 C:      irc://irc.oftc.net/xfs
20655 M:      Darrick J. Wong <djwong@kernel.org>
20656 M:      linux-xfs@vger.kernel.org
20657 L:      linux-xfs@vger.kernel.org
20658 S:      Supported
20659 W:      http://xfs.org/
20660 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20661 F:      Documentation/ABI/testing/sysfs-fs-xfs
20662 F:      Documentation/admin-guide/xfs.rst
20663 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20664 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20665 F:      fs/xfs/
20666 F:      include/uapi/linux/dqblk_xfs.h
20667 F:      include/uapi/linux/fsmap.h
20668
20669 XILINX AXI ETHERNET DRIVER
20670 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20671 S:      Maintained
20672 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20673
20674 XILINX CAN DRIVER
20675 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20676 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20677 L:      linux-can@vger.kernel.org
20678 S:      Maintained
20679 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20680 F:      drivers/net/can/xilinx_can.c
20681
20682 XILINX GPIO DRIVER
20683 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20684 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20685 R:      Michal Simek <michal.simek@xilinx.com>
20686 S:      Maintained
20687 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20688 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20689 F:      drivers/gpio/gpio-xilinx.c
20690 F:      drivers/gpio/gpio-zynq.c
20691
20692 XILINX SD-FEC IP CORES
20693 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20694 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20695 S:      Maintained
20696 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20697 F:      Documentation/misc-devices/xilinx_sdfec.rst
20698 F:      drivers/misc/Kconfig
20699 F:      drivers/misc/Makefile
20700 F:      drivers/misc/xilinx_sdfec.c
20701 F:      include/uapi/misc/xilinx_sdfec.h
20702
20703 XILINX UARTLITE SERIAL DRIVER
20704 M:      Peter Korsgaard <jacmet@sunsite.dk>
20705 L:      linux-serial@vger.kernel.org
20706 S:      Maintained
20707 F:      drivers/tty/serial/uartlite.c
20708
20709 XILINX VIDEO IP CORES
20710 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20711 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20712 L:      linux-media@vger.kernel.org
20713 S:      Supported
20714 T:      git git://linuxtv.org/media_tree.git
20715 F:      Documentation/devicetree/bindings/media/xilinx/
20716 F:      drivers/media/platform/xilinx/
20717 F:      include/uapi/linux/xilinx-v4l2-controls.h
20718
20719 XILINX ZYNQMP DPDMA DRIVER
20720 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20721 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20722 L:      dmaengine@vger.kernel.org
20723 S:      Supported
20724 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20725 F:      drivers/dma/xilinx/xilinx_dpdma.c
20726 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20727
20728 XILINX ZYNQMP PSGTR PHY DRIVER
20729 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20730 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20731 L:      linux-kernel@vger.kernel.org
20732 S:      Supported
20733 T:      git https://github.com/Xilinx/linux-xlnx.git
20734 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20735 F:      drivers/phy/xilinx/phy-zynqmp.c
20736
20737 XILLYBUS DRIVER
20738 M:      Eli Billauer <eli.billauer@gmail.com>
20739 L:      linux-kernel@vger.kernel.org
20740 S:      Supported
20741 F:      drivers/char/xillybus/
20742
20743 XLP9XX I2C DRIVER
20744 M:      George Cherian <gcherian@marvell.com>
20745 L:      linux-i2c@vger.kernel.org
20746 S:      Supported
20747 W:      http://www.marvell.com
20748 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20749 F:      drivers/i2c/busses/i2c-xlp9xx.c
20750
20751 XRA1403 GPIO EXPANDER
20752 M:      Nandor Han <nandor.han@ge.com>
20753 M:      Semi Malinen <semi.malinen@ge.com>
20754 L:      linux-gpio@vger.kernel.org
20755 S:      Maintained
20756 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20757 F:      drivers/gpio/gpio-xra1403.c
20758
20759 XTENSA XTFPGA PLATFORM SUPPORT
20760 M:      Max Filippov <jcmvbkbc@gmail.com>
20761 L:      linux-xtensa@linux-xtensa.org
20762 S:      Maintained
20763 F:      drivers/spi/spi-xtensa-xtfpga.c
20764 F:      sound/soc/xtensa/xtfpga-i2s.c
20765
20766 YAM DRIVER FOR AX.25
20767 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20768 L:      linux-hams@vger.kernel.org
20769 S:      Maintained
20770 F:      drivers/net/hamradio/yam*
20771 F:      include/linux/yam.h
20772
20773 YAMA SECURITY MODULE
20774 M:      Kees Cook <keescook@chromium.org>
20775 S:      Supported
20776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20777 F:      Documentation/admin-guide/LSM/Yama.rst
20778 F:      security/yama/
20779
20780 YEALINK PHONE DRIVER
20781 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20782 L:      usbb2k-api-dev@nongnu.org
20783 S:      Maintained
20784 F:      Documentation/input/devices/yealink.rst
20785 F:      drivers/input/misc/yealink.*
20786
20787 Z8530 DRIVER FOR AX.25
20788 M:      Joerg Reuter <jreuter@yaina.de>
20789 L:      linux-hams@vger.kernel.org
20790 S:      Maintained
20791 W:      http://yaina.de/jreuter/
20792 W:      http://www.qsl.net/dl1bke/
20793 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20794 F:      drivers/net/hamradio/*scc.c
20795 F:      drivers/net/hamradio/z8530.h
20796
20797 ZBUD COMPRESSED PAGE ALLOCATOR
20798 M:      Seth Jennings <sjenning@redhat.com>
20799 M:      Dan Streetman <ddstreet@ieee.org>
20800 L:      linux-mm@kvack.org
20801 S:      Maintained
20802 F:      mm/zbud.c
20803
20804 ZD1211RW WIRELESS DRIVER
20805 M:      Ulrich Kunitz <kune@deine-taler.de>
20806 L:      linux-wireless@vger.kernel.org
20807 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20808 S:      Maintained
20809 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20810 F:      drivers/net/wireless/zydas/zd1211rw/
20811
20812 ZD1301 MEDIA DRIVER
20813 M:      Antti Palosaari <crope@iki.fi>
20814 L:      linux-media@vger.kernel.org
20815 S:      Maintained
20816 W:      https://linuxtv.org/
20817 W:      http://palosaari.fi/linux/
20818 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20819 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20820
20821 ZD1301_DEMOD MEDIA DRIVER
20822 M:      Antti Palosaari <crope@iki.fi>
20823 L:      linux-media@vger.kernel.org
20824 S:      Maintained
20825 W:      https://linuxtv.org/
20826 W:      http://palosaari.fi/linux/
20827 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20828 F:      drivers/media/dvb-frontends/zd1301_demod*
20829
20830 ZHAOXIN PROCESSOR SUPPORT
20831 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20832 L:      linux-kernel@vger.kernel.org
20833 S:      Maintained
20834 F:      arch/x86/kernel/cpu/zhaoxin.c
20835
20836 ZONEFS FILESYSTEM
20837 M:      Damien Le Moal <damien.lemoal@wdc.com>
20838 M:      Naohiro Aota <naohiro.aota@wdc.com>
20839 R:      Johannes Thumshirn <jth@kernel.org>
20840 L:      linux-fsdevel@vger.kernel.org
20841 S:      Maintained
20842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20843 F:      Documentation/filesystems/zonefs.rst
20844 F:      fs/zonefs/
20845
20846 ZPOOL COMPRESSED PAGE STORAGE API
20847 M:      Dan Streetman <ddstreet@ieee.org>
20848 L:      linux-mm@kvack.org
20849 S:      Maintained
20850 F:      include/linux/zpool.h
20851 F:      mm/zpool.c
20852
20853 ZR36067 VIDEO FOR LINUX DRIVER
20854 M:      Corentin Labbe <clabbe@baylibre.com>
20855 L:      mjpeg-users@lists.sourceforge.net
20856 L:      linux-media@vger.kernel.org
20857 S:      Maintained
20858 W:      http://mjpeg.sourceforge.net/driver-zoran/
20859 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20860 F:      Documentation/driver-api/media/drivers/zoran.rst
20861 F:      drivers/staging/media/zoran/
20862
20863 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20864 M:      Minchan Kim <minchan@kernel.org>
20865 M:      Nitin Gupta <ngupta@vflare.org>
20866 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20867 L:      linux-kernel@vger.kernel.org
20868 S:      Maintained
20869 F:      Documentation/admin-guide/blockdev/zram.rst
20870 F:      drivers/block/zram/
20871
20872 ZS DECSTATION Z85C30 SERIAL DRIVER
20873 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20874 S:      Maintained
20875 F:      drivers/tty/serial/zs.*
20876
20877 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20878 M:      Minchan Kim <minchan@kernel.org>
20879 M:      Nitin Gupta <ngupta@vflare.org>
20880 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20881 L:      linux-mm@kvack.org
20882 S:      Maintained
20883 F:      Documentation/vm/zsmalloc.rst
20884 F:      include/linux/zsmalloc.h
20885 F:      mm/zsmalloc.c
20886
20887 ZSWAP COMPRESSED SWAP CACHING
20888 M:      Seth Jennings <sjenning@redhat.com>
20889 M:      Dan Streetman <ddstreet@ieee.org>
20890 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20891 L:      linux-mm@kvack.org
20892 S:      Maintained
20893 F:      mm/zswap.c
20894
20895 THE REST
20896 M:      Linus Torvalds <torvalds@linux-foundation.org>
20897 L:      linux-kernel@vger.kernel.org
20898 S:      Buried alive in reporters
20899 Q:      http://patchwork.kernel.org/project/LKML/list/
20900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20901 F:      *
20902 F:      */