Merge tag 'soc-5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[linux-2.6-microblaze.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 R:      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 R:      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 FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
585 M:      Michael Hennerich <michael.hennerich@analog.com>
586 S:      Supported
587 W:      http://wiki.analog.com/ADXL345
588 W:      http://ez.analog.com/community/linux-device-drivers
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
590 F:      drivers/input/misc/adxl34x.c
591
592 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://ez.analog.com/community/linux-device-drivers
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
597 F:      drivers/iio/accel/adxl372.c
598 F:      drivers/iio/accel/adxl372_i2c.c
599 F:      drivers/iio/accel/adxl372_spi.c
600
601 AF9013 MEDIA DRIVER
602 M:      Antti Palosaari <crope@iki.fi>
603 L:      linux-media@vger.kernel.org
604 S:      Maintained
605 W:      https://linuxtv.org
606 W:      http://palosaari.fi/linux/
607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
608 T:      git git://linuxtv.org/anttip/media_tree.git
609 F:      drivers/media/dvb-frontends/af9013*
610
611 AF9033 MEDIA DRIVER
612 M:      Antti Palosaari <crope@iki.fi>
613 L:      linux-media@vger.kernel.org
614 S:      Maintained
615 W:      https://linuxtv.org
616 W:      http://palosaari.fi/linux/
617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
618 T:      git git://linuxtv.org/anttip/media_tree.git
619 F:      drivers/media/dvb-frontends/af9033*
620
621 AFFS FILE SYSTEM
622 M:      David Sterba <dsterba@suse.com>
623 L:      linux-fsdevel@vger.kernel.org
624 S:      Odd Fixes
625 F:      Documentation/filesystems/affs.rst
626 F:      fs/affs/
627
628 AFS FILESYSTEM
629 M:      David Howells <dhowells@redhat.com>
630 M:      Marc Dionne <marc.dionne@auristor.com>
631 L:      linux-afs@lists.infradead.org
632 S:      Supported
633 W:      https://www.infradead.org/~dhowells/kafs/
634 F:      Documentation/filesystems/afs.rst
635 F:      fs/afs/
636 F:      include/trace/events/afs.h
637
638 AGPGART DRIVER
639 M:      David Airlie <airlied@linux.ie>
640 S:      Maintained
641 T:      git git://anongit.freedesktop.org/drm/drm
642 F:      drivers/char/agp/
643 F:      include/linux/agp*
644 F:      include/uapi/linux/agp*
645
646 AHA152X SCSI DRIVER
647 M:      "Juergen E. Fischer" <fischer@norbit.de>
648 L:      linux-scsi@vger.kernel.org
649 S:      Maintained
650 F:      drivers/scsi/aha152x*
651 F:      drivers/scsi/pcmcia/aha152x*
652
653 AIC7XXX / AIC79XX SCSI DRIVER
654 M:      Hannes Reinecke <hare@suse.com>
655 L:      linux-scsi@vger.kernel.org
656 S:      Maintained
657 F:      drivers/scsi/aic7xxx/
658
659 AIMSLAB FM RADIO RECEIVER DRIVER
660 M:      Hans Verkuil <hverkuil@xs4all.nl>
661 L:      linux-media@vger.kernel.org
662 S:      Maintained
663 W:      https://linuxtv.org
664 T:      git git://linuxtv.org/media_tree.git
665 F:      drivers/media/radio/radio-aimslab*
666
667 AIO
668 M:      Benjamin LaHaise <bcrl@kvack.org>
669 L:      linux-aio@kvack.org
670 S:      Supported
671 F:      fs/aio.c
672 F:      include/linux/*aio*.h
673
674 AIRSPY MEDIA DRIVER
675 M:      Antti Palosaari <crope@iki.fi>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 W:      https://linuxtv.org
679 W:      http://palosaari.fi/linux/
680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
681 T:      git git://linuxtv.org/anttip/media_tree.git
682 F:      drivers/media/usb/airspy/
683
684 ALACRITECH GIGABIT ETHERNET DRIVER
685 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
686 S:      Maintained
687 F:      drivers/net/ethernet/alacritech/*
688
689 ALCATEL SPEEDTOUCH USB DRIVER
690 M:      Duncan Sands <duncan.sands@free.fr>
691 L:      linux-usb@vger.kernel.org
692 S:      Maintained
693 W:      http://www.linux-usb.org/SpeedTouch/
694 F:      drivers/usb/atm/speedtch.c
695 F:      drivers/usb/atm/usbatm.c
696
697 ALCHEMY AU1XX0 MMC DRIVER
698 M:      Manuel Lauss <manuel.lauss@gmail.com>
699 S:      Maintained
700 F:      drivers/mmc/host/au1xmmc.c
701
702 ALI1563 I2C DRIVER
703 M:      Rudolf Marek <r.marek@assembler.cz>
704 L:      linux-i2c@vger.kernel.org
705 S:      Maintained
706 F:      Documentation/i2c/busses/i2c-ali1563.rst
707 F:      drivers/i2c/busses/i2c-ali1563.c
708
709 ALIENWARE WMI DRIVER
710 L:      Dell.Client.Kernel@dell.com
711 S:      Maintained
712 F:      drivers/platform/x86/dell/alienware-wmi.c
713
714 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
715 M:      Tomislav Denis <tomislav.denis@avl.com>
716 L:      linux-iio@vger.kernel.org
717 S:      Maintained
718 W:      http://www.allsensors.com/
719 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
720 F:      drivers/iio/pressure/dlhl60d.c
721
722 ALLEGRO DVT VIDEO IP CORE DRIVER
723 M:      Michael Tretter <m.tretter@pengutronix.de>
724 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
725 L:      linux-media@vger.kernel.org
726 S:      Maintained
727 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
728 F:      drivers/media/platform/allegro-dvt/
729
730 ALLWINNER A10 CSI DRIVER
731 M:      Maxime Ripard <mripard@kernel.org>
732 L:      linux-media@vger.kernel.org
733 S:      Maintained
734 T:      git git://linuxtv.org/media_tree.git
735 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
736 F:      drivers/media/platform/sunxi/sun4i-csi/
737
738 ALLWINNER CPUFREQ DRIVER
739 M:      Yangtao Li <tiny.windzz@gmail.com>
740 L:      linux-pm@vger.kernel.org
741 S:      Maintained
742 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
743 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
744
745 ALLWINNER CRYPTO DRIVERS
746 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
747 L:      linux-crypto@vger.kernel.org
748 S:      Maintained
749 F:      drivers/crypto/allwinner/
750
751 ALLWINNER HARDWARE SPINLOCK SUPPORT
752 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
755 F:      drivers/hwspinlock/sun6i_hwspinlock.c
756
757 ALLWINNER THERMAL DRIVER
758 M:      Vasily Khoruzhick <anarsoul@gmail.com>
759 M:      Yangtao Li <tiny.windzz@gmail.com>
760 L:      linux-pm@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
763 F:      drivers/thermal/sun8i_thermal.c
764
765 ALLWINNER VPU DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
768 L:      linux-media@vger.kernel.org
769 S:      Maintained
770 F:      drivers/staging/media/sunxi/cedrus/
771
772 ALPHA PORT
773 M:      Richard Henderson <rth@twiddle.net>
774 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
775 M:      Matt Turner <mattst88@gmail.com>
776 L:      linux-alpha@vger.kernel.org
777 S:      Odd Fixes
778 F:      arch/alpha/
779
780 ALPS PS/2 TOUCHPAD DRIVER
781 R:      Pali Rohár <pali@kernel.org>
782 F:      drivers/input/mouse/alps.*
783
784 ALTERA I2C CONTROLLER DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 S:      Maintained
787 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
788 F:      drivers/i2c/busses/i2c-altera.c
789
790 ALTERA MAILBOX DRIVER
791 M:      Mun Yew Tham <mun.yew.tham@intel.com>
792 S:      Maintained
793 F:      drivers/mailbox/mailbox-altera.c
794
795 ALTERA MSGDMA IP CORE DRIVER
796 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
797 R:      Stefan Roese <sr@denx.de>
798 L:      dmaengine@vger.kernel.org
799 S:      Odd Fixes
800 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
801 F:      drivers/dma/altera-msgdma.c
802
803 ALTERA PIO DRIVER
804 M:      Mun Yew Tham <mun.yew.tham@intel.com>
805 L:      linux-gpio@vger.kernel.org
806 S:      Maintained
807 F:      drivers/gpio/gpio-altera.c
808
809 ALTERA SYSTEM MANAGER DRIVER
810 M:      Thor Thayer <thor.thayer@linux.intel.com>
811 S:      Maintained
812 F:      drivers/mfd/altera-sysmgr.c
813 F:      include/linux/mfd/altera-sysmgr.h
814
815 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
816 M:      Thor Thayer <thor.thayer@linux.intel.com>
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera-a10sr.c
819 F:      drivers/mfd/altera-a10sr.c
820 F:      drivers/reset/reset-a10sr.c
821 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
822 F:      include/linux/mfd/altera-a10sr.h
823
824 ALTERA TRIPLE SPEED ETHERNET DRIVER
825 M:      Joyce Ooi <joyce.ooi@intel.com>
826 L:      netdev@vger.kernel.org
827 S:      Maintained
828 F:      drivers/net/ethernet/altera/
829
830 ALTERA UART/JTAG UART SERIAL DRIVERS
831 M:      Tobias Klauser <tklauser@distanz.ch>
832 L:      linux-serial@vger.kernel.org
833 S:      Maintained
834 F:      drivers/tty/serial/altera_jtaguart.c
835 F:      drivers/tty/serial/altera_uart.c
836 F:      include/linux/altera_jtaguart.h
837 F:      include/linux/altera_uart.h
838
839 AMAZON ANNAPURNA LABS FIC DRIVER
840 M:      Talel Shenhar <talel@amazon.com>
841 S:      Maintained
842 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
843 F:      drivers/irqchip/irq-al-fic.c
844
845 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
846 M:      Talel Shenhar <talel@amazon.com>
847 M:      Talel Shenhar <talelshenhar@gmail.com>
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
850 F:      drivers/edac/al_mc_edac.c
851
852 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
853 M:      Talel Shenhar <talel@amazon.com>
854 S:      Maintained
855 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
856 F:      drivers/thermal/thermal_mmio.c
857
858 AMAZON ETHERNET DRIVERS
859 M:      Netanel Belgazal <netanel@amazon.com>
860 M:      Arthur Kiyanovski <akiyano@amazon.com>
861 R:      Guy Tzalik <gtzalik@amazon.com>
862 R:      Saeed Bishara <saeedb@amazon.com>
863 L:      netdev@vger.kernel.org
864 S:      Supported
865 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
866 F:      drivers/net/ethernet/amazon/
867
868 AMAZON RDMA EFA DRIVER
869 M:      Gal Pressman <galpress@amazon.com>
870 R:      Yossi Leybovich <sleybo@amazon.com>
871 L:      linux-rdma@vger.kernel.org
872 S:      Supported
873 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
874 F:      drivers/infiniband/hw/efa/
875 F:      include/uapi/rdma/efa-abi.h
876
877 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
878 M:      Tom Lendacky <thomas.lendacky@amd.com>
879 M:      John Allen <john.allen@amd.com>
880 L:      linux-crypto@vger.kernel.org
881 S:      Supported
882 F:      drivers/crypto/ccp/
883 F:      include/linux/ccp.h
884
885 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
886 M:      Brijesh Singh <brijesh.singh@amd.com>
887 M:      Tom Lendacky <thomas.lendacky@amd.com>
888 L:      linux-crypto@vger.kernel.org
889 S:      Supported
890 F:      drivers/crypto/ccp/sev*
891 F:      include/uapi/linux/psp-sev.h
892
893 AMD DISPLAY CORE
894 M:      Harry Wentland <harry.wentland@amd.com>
895 M:      Leo Li <sunpeng.li@amd.com>
896 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
897 L:      amd-gfx@lists.freedesktop.org
898 S:      Supported
899 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
900 F:      drivers/gpu/drm/amd/display/
901
902 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
903 M:      Huang Rui <ray.huang@amd.com>
904 L:      linux-hwmon@vger.kernel.org
905 S:      Supported
906 F:      Documentation/hwmon/fam15h_power.rst
907 F:      drivers/hwmon/fam15h_power.c
908
909 AMD FCH GPIO DRIVER
910 M:      Enrico Weigelt, metux IT consult <info@metux.net>
911 L:      linux-gpio@vger.kernel.org
912 S:      Maintained
913 F:      drivers/gpio/gpio-amd-fch.c
914 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
915
916 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
917 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
918 S:      Orphan
919 F:      drivers/usb/gadget/udc/amd5536udc.*
920
921 AMD GEODE PROCESSOR/CHIPSET SUPPORT
922 M:      Andres Salomon <dilinger@queued.net>
923 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
924 S:      Supported
925 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
926 F:      arch/x86/include/asm/geode.h
927 F:      drivers/char/hw_random/geode-rng.c
928 F:      drivers/crypto/geode*
929 F:      drivers/video/fbdev/geode/
930
931 AMD IOMMU (AMD-VI)
932 M:      Joerg Roedel <joro@8bytes.org>
933 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
934 L:      iommu@lists.linux-foundation.org
935 S:      Maintained
936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
937 F:      drivers/iommu/amd/
938 F:      include/linux/amd-iommu.h
939
940 AMD KFD
941 M:      Felix Kuehling <Felix.Kuehling@amd.com>
942 L:      amd-gfx@lists.freedesktop.org
943 S:      Supported
944 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
945 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
946 F:      drivers/gpu/drm/amd/amdkfd/
947 F:      drivers/gpu/drm/amd/include/cik_structs.h
948 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
949 F:      drivers/gpu/drm/amd/include/v9_structs.h
950 F:      drivers/gpu/drm/amd/include/vi_structs.h
951 F:      include/uapi/linux/kfd_ioctl.h
952
953 AMD SPI DRIVER
954 M:      Sanjay R Mehta <sanju.mehta@amd.com>
955 S:      Maintained
956 F:      drivers/spi/spi-amd.c
957
958 AMD MP2 I2C DRIVER
959 M:      Elie Morisse <syniurge@gmail.com>
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
962 L:      linux-i2c@vger.kernel.org
963 S:      Maintained
964 F:      drivers/i2c/busses/i2c-amd-mp2*
965
966 AMD PMC DRIVER
967 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
968 L:      platform-driver-x86@vger.kernel.org
969 S:      Maintained
970 F:      drivers/platform/x86/amd-pmc.*
971
972 AMD POWERPLAY AND SWSMU
973 M:      Evan Quan <evan.quan@amd.com>
974 L:      amd-gfx@lists.freedesktop.org
975 S:      Supported
976 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
977 F:      drivers/gpu/drm/amd/pm/
978
979 AMD PTDMA DRIVER
980 M:      Sanjay R Mehta <sanju.mehta@amd.com>
981 L:      dmaengine@vger.kernel.org
982 S:      Maintained
983 F:      drivers/dma/ptdma/
984
985 AMD SEATTLE DEVICE TREE SUPPORT
986 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
987 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
988 M:      Tom Lendacky <thomas.lendacky@amd.com>
989 S:      Supported
990 F:      arch/arm64/boot/dts/amd/
991
992 AMD XGBE DRIVER
993 M:      Tom Lendacky <thomas.lendacky@amd.com>
994 L:      netdev@vger.kernel.org
995 S:      Supported
996 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
997 F:      drivers/net/ethernet/amd/xgbe/
998
999 AMD SENSOR FUSION HUB DRIVER
1000 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1001 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1002 L:      linux-input@vger.kernel.org
1003 S:      Maintained
1004 F:      Documentation/hid/amd-sfh*
1005 F:      drivers/hid/amd-sfh-hid/
1006
1007 AMS AS73211 DRIVER
1008 M:      Christian Eggers <ceggers@arri.de>
1009 L:      linux-iio@vger.kernel.org
1010 S:      Maintained
1011 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1012 F:      drivers/iio/light/as73211.c
1013
1014 AMT (Automatic Multicast Tunneling)
1015 M:      Taehee Yoo <ap420073@gmail.com>
1016 L:      netdev@vger.kernel.org
1017 S:      Maintained
1018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1020 F:      drivers/net/amt.c
1021
1022 ANALOG DEVICES INC AD7192 DRIVER
1023 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1024 L:      linux-iio@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1028 F:      drivers/iio/adc/ad7192.c
1029
1030 ANALOG DEVICES INC AD7292 DRIVER
1031 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1036 F:      drivers/iio/adc/ad7292.c
1037
1038 ANALOG DEVICES INC AD7768-1 DRIVER
1039 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1044 F:      drivers/iio/adc/ad7768-1.c
1045
1046 ANALOG DEVICES INC AD7780 DRIVER
1047 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1048 M:      Renato Lui Geh <renatogeh@gmail.com>
1049 L:      linux-iio@vger.kernel.org
1050 S:      Supported
1051 W:      http://ez.analog.com/community/linux-device-drivers
1052 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1053 F:      drivers/iio/adc/ad7780.c
1054
1055 ANALOG DEVICES INC AD9389B DRIVER
1056 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      drivers/media/i2c/ad9389b*
1060
1061 ANALOG DEVICES INC ADGS1408 DRIVER
1062 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1063 S:      Supported
1064 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1065 F:      drivers/mux/adgs1408.c
1066
1067 ANALOG DEVICES INC ADIN DRIVER
1068 M:      Michael Hennerich <michael.hennerich@analog.com>
1069 L:      netdev@vger.kernel.org
1070 S:      Supported
1071 W:      http://ez.analog.com/community/linux-device-drivers
1072 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1073 F:      drivers/net/phy/adin.c
1074
1075 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1076 M:      Nuno Sa <nuno.sa@analog.com>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Supported
1079 F:      drivers/iio/imu/adis.c
1080 F:      include/linux/iio/imu/adis.h
1081
1082 ANALOG DEVICES INC ADIS16460 DRIVER
1083 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1084 L:      linux-iio@vger.kernel.org
1085 S:      Supported
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1088 F:      drivers/iio/imu/adis16460.c
1089
1090 ANALOG DEVICES INC ADIS16475 DRIVER
1091 M:      Nuno Sa <nuno.sa@analog.com>
1092 L:      linux-iio@vger.kernel.org
1093 W:      http://ez.analog.com/community/linux-device-drivers
1094 S:      Supported
1095 F:      drivers/iio/imu/adis16475.c
1096 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1097
1098 ANALOG DEVICES INC ADM1177 DRIVER
1099 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1100 L:      linux-hwmon@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1104 F:      drivers/hwmon/adm1177.c
1105
1106 ANALOG DEVICES INC ADP5061 DRIVER
1107 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1108 L:      linux-pm@vger.kernel.org
1109 S:      Supported
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      drivers/power/supply/adp5061.c
1112
1113 ANALOG DEVICES INC ADV7180 DRIVER
1114 M:      Lars-Peter Clausen <lars@metafoo.de>
1115 L:      linux-media@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      drivers/media/i2c/adv7180.c
1119 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1120
1121 ANALOG DEVICES INC ADV748X DRIVER
1122 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1123 L:      linux-media@vger.kernel.org
1124 S:      Maintained
1125 F:      drivers/media/i2c/adv748x/*
1126
1127 ANALOG DEVICES INC ADV7511 DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/adv7511*
1132
1133 ANALOG DEVICES INC ADV7604 DRIVER
1134 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      drivers/media/i2c/adv7604*
1138 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1139
1140 ANALOG DEVICES INC ADV7842 DRIVER
1141 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1142 L:      linux-media@vger.kernel.org
1143 S:      Maintained
1144 F:      drivers/media/i2c/adv7842*
1145
1146 ANALOG DEVICES INC ADXRS290 DRIVER
1147 M:      Nishant Malpani <nish.malpani25@gmail.com>
1148 L:      linux-iio@vger.kernel.org
1149 S:      Supported
1150 F:      drivers/iio/gyro/adxrs290.c
1151 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1152
1153 ANALOG DEVICES INC ASOC CODEC DRIVERS
1154 M:      Lars-Peter Clausen <lars@metafoo.de>
1155 M:      Nuno Sá <nuno.sa@analog.com>
1156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1157 S:      Supported
1158 W:      http://wiki.analog.com/
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      sound/soc/codecs/ad1*
1161 F:      sound/soc/codecs/ad7*
1162 F:      sound/soc/codecs/adau*
1163 F:      sound/soc/codecs/adav*
1164 F:      sound/soc/codecs/sigmadsp.*
1165 F:      sound/soc/codecs/ssm*
1166
1167 ANALOG DEVICES INC DMA DRIVERS
1168 M:      Lars-Peter Clausen <lars@metafoo.de>
1169 S:      Supported
1170 W:      http://ez.analog.com/community/linux-device-drivers
1171 F:      drivers/dma/dma-axi-dmac.c
1172
1173 ANALOG DEVICES INC IIO DRIVERS
1174 M:      Lars-Peter Clausen <lars@metafoo.de>
1175 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1176 S:      Supported
1177 W:      http://wiki.analog.com/
1178 W:      http://ez.analog.com/community/linux-device-drivers
1179 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1180 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1181 F:      Documentation/devicetree/bindings/iio/*/adi,*
1182 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1183 F:      drivers/iio/*/ad*
1184 F:      drivers/iio/adc/ltc249*
1185 F:      drivers/iio/amplifiers/hmc425a.c
1186 F:      drivers/staging/iio/*/ad*
1187 X:      drivers/iio/*/adjd*
1188
1189 ANALOGBITS PLL LIBRARIES
1190 M:      Paul Walmsley <paul.walmsley@sifive.com>
1191 S:      Supported
1192 F:      drivers/clk/analogbits/*
1193 F:      include/linux/clk/analogbits*
1194
1195 ANDES ARCHITECTURE
1196 M:      Nick Hu <nickhu@andestech.com>
1197 M:      Greentime Hu <green.hu@gmail.com>
1198 M:      Vincent Chen <deanbo422@gmail.com>
1199 S:      Supported
1200 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1201 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1202 F:      Documentation/devicetree/bindings/nds32/
1203 F:      arch/nds32/
1204 N:      nds32
1205 K:      nds32
1206
1207 ANDROID CONFIG FRAGMENTS
1208 M:      Rob Herring <robh@kernel.org>
1209 S:      Supported
1210 F:      kernel/configs/android*
1211
1212 ANDROID DRIVERS
1213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1214 M:      Arve Hjønnevåg <arve@android.com>
1215 M:      Todd Kjos <tkjos@android.com>
1216 M:      Martijn Coenen <maco@android.com>
1217 M:      Joel Fernandes <joel@joelfernandes.org>
1218 M:      Christian Brauner <christian@brauner.io>
1219 M:      Hridya Valsaraju <hridya@google.com>
1220 M:      Suren Baghdasaryan <surenb@google.com>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Supported
1223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1224 F:      drivers/android/
1225 F:      drivers/staging/android/
1226
1227 ANDROID GOLDFISH PIC DRIVER
1228 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1229 S:      Supported
1230 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1231 F:      drivers/irqchip/irq-goldfish-pic.c
1232
1233 ANDROID GOLDFISH RTC DRIVER
1234 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1235 S:      Supported
1236 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1237 F:      drivers/rtc/rtc-goldfish.c
1238
1239 AOA (Apple Onboard Audio) ALSA DRIVER
1240 M:      Johannes Berg <johannes@sipsolutions.net>
1241 L:      linuxppc-dev@lists.ozlabs.org
1242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      sound/aoa/
1245
1246 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1247 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1248 L:      linux-iio@vger.kernel.org
1249 S:      Maintained
1250 F:      drivers/iio/adc/stx104.c
1251
1252 APM DRIVER
1253 M:      Jiri Kosina <jikos@kernel.org>
1254 S:      Odd fixes
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1256 F:      arch/x86/kernel/apm_32.c
1257 F:      drivers/char/apm-emulation.c
1258 F:      include/linux/apm_bios.h
1259 F:      include/uapi/linux/apm_bios.h
1260
1261 APPARMOR SECURITY MODULE
1262 M:      John Johansen <john.johansen@canonical.com>
1263 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1264 S:      Supported
1265 W:      wiki.apparmor.net
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1267 F:      Documentation/admin-guide/LSM/apparmor.rst
1268 F:      security/apparmor/
1269
1270 APPLE BCM5974 MULTITOUCH DRIVER
1271 M:      Henrik Rydberg <rydberg@bitmath.org>
1272 L:      linux-input@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/input/mouse/bcm5974.c
1275
1276 APPLE DART IOMMU DRIVER
1277 M:      Sven Peter <sven@svenpeter.dev>
1278 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1279 L:      iommu@lists.linux-foundation.org
1280 S:      Maintained
1281 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1282 F:      drivers/iommu/apple-dart.c
1283
1284 APPLE SMC DRIVER
1285 M:      Henrik Rydberg <rydberg@bitmath.org>
1286 L:      linux-hwmon@vger.kernel.org
1287 S:      Odd fixes
1288 F:      drivers/hwmon/applesmc.c
1289
1290 APPLETALK NETWORK LAYER
1291 L:      netdev@vger.kernel.org
1292 S:      Odd fixes
1293 F:      drivers/net/appletalk/
1294 F:      include/linux/atalk.h
1295 F:      include/uapi/linux/atalk.h
1296 F:      net/appletalk/
1297
1298 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1299 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1300 S:      Supported
1301 F:      arch/arm64/boot/dts/apm/
1302
1303 APPLIED MICRO (APM) X-GENE SOC EDAC
1304 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1307 F:      drivers/edac/xgene_edac.c
1308
1309 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1310 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1311 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1312 S:      Supported
1313 F:      drivers/net/ethernet/apm/xgene-v2/
1314
1315 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1316 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1317 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1318 M:      Quan Nguyen <quan@os.amperecomputing.com>
1319 S:      Supported
1320 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1321 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1322 F:      drivers/net/ethernet/apm/xgene/
1323 F:      drivers/net/mdio/mdio-xgene.c
1324
1325 APPLIED MICRO (APM) X-GENE SOC PMU
1326 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1327 S:      Supported
1328 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1329 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1330 F:      drivers/perf/xgene_pmu.c
1331
1332 APTINA CAMERA SENSOR PLL
1333 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1334 L:      linux-media@vger.kernel.org
1335 S:      Maintained
1336 F:      drivers/media/i2c/aptina-pll.*
1337
1338 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1339 M:      Aleksa Savic <savicaleksa83@gmail.com>
1340 L:      linux-hwmon@vger.kernel.org
1341 S:      Maintained
1342 F:      Documentation/hwmon/aquacomputer_d5next.rst
1343 F:      drivers/hwmon/aquacomputer_d5next.c
1344
1345 AQUANTIA ETHERNET DRIVER (atlantic)
1346 M:      Igor Russkikh <irusskikh@marvell.com>
1347 L:      netdev@vger.kernel.org
1348 S:      Supported
1349 W:      https://www.marvell.com/
1350 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1351 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1352 F:      drivers/net/ethernet/aquantia/atlantic/
1353
1354 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1355 M:      Egor Pomozov <epomozov@marvell.com>
1356 L:      netdev@vger.kernel.org
1357 S:      Supported
1358 W:      http://www.aquantia.com
1359 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1360
1361 ARASAN NAND CONTROLLER DRIVER
1362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1363 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1364 L:      linux-mtd@lists.infradead.org
1365 S:      Maintained
1366 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1367 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1368
1369 ARC FRAMEBUFFER DRIVER
1370 M:      Jaya Kumar <jayalk@intworks.biz>
1371 S:      Maintained
1372 F:      drivers/video/fbdev/arcfb.c
1373 F:      drivers/video/fbdev/core/fb_defio.c
1374
1375 ARC PGU DRM DRIVER
1376 M:      Alexey Brodkin <abrodkin@synopsys.com>
1377 S:      Supported
1378 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1379 F:      drivers/gpu/drm/tiny/arcpgu.c
1380
1381 ARCNET NETWORK LAYER
1382 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1383 L:      netdev@vger.kernel.org
1384 S:      Maintained
1385 F:      drivers/net/arcnet/
1386 F:      include/uapi/linux/if_arcnet.h
1387
1388 ARM ARCHITECTED TIMER DRIVER
1389 M:      Mark Rutland <mark.rutland@arm.com>
1390 M:      Marc Zyngier <maz@kernel.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/include/asm/arch_timer.h
1394 F:      arch/arm64/include/asm/arch_timer.h
1395 F:      drivers/clocksource/arm_arch_timer.c
1396
1397 ARM HDLCD DRM DRIVER
1398 M:      Liviu Dudau <liviu.dudau@arm.com>
1399 S:      Supported
1400 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1401 F:      drivers/gpu/drm/arm/hdlcd_*
1402
1403 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1404 M:      Linus Walleij <linus.walleij@linaro.org>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1408 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1409 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1410 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1411 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1412 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1413 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1414 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1415 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1416 F:      arch/arm/boot/dts/arm-realview-*
1417 F:      arch/arm/boot/dts/integrator*
1418 F:      arch/arm/boot/dts/versatile*
1419 F:      arch/arm/mach-integrator/
1420 F:      arch/arm/mach-realview/
1421 F:      arch/arm/mach-versatile/
1422 F:      arch/arm/plat-versatile/
1423 F:      drivers/bus/arm-integrator-lm.c
1424 F:      drivers/clk/versatile/
1425 F:      drivers/i2c/busses/i2c-versatile.c
1426 F:      drivers/irqchip/irq-versatile-fpga.c
1427 F:      drivers/mtd/maps/physmap-versatile.*
1428 F:      drivers/power/reset/arm-versatile-reboot.c
1429 F:      drivers/soc/versatile/
1430
1431 ARM KOMEDA DRM-KMS DRIVER
1432 M:      James (Qian) Wang <james.qian.wang@arm.com>
1433 M:      Liviu Dudau <liviu.dudau@arm.com>
1434 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1435 L:      Mali DP Maintainers <malidp@foss.arm.com>
1436 S:      Supported
1437 T:      git git://anongit.freedesktop.org/drm/drm-misc
1438 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1439 F:      Documentation/gpu/komeda-kms.rst
1440 F:      drivers/gpu/drm/arm/display/include/
1441 F:      drivers/gpu/drm/arm/display/komeda/
1442
1443 ARM MALI PANFROST DRM DRIVER
1444 M:      Rob Herring <robh@kernel.org>
1445 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1446 R:      Steven Price <steven.price@arm.com>
1447 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1448 L:      dri-devel@lists.freedesktop.org
1449 S:      Supported
1450 T:      git git://anongit.freedesktop.org/drm/drm-misc
1451 F:      drivers/gpu/drm/panfrost/
1452 F:      include/uapi/drm/panfrost_drm.h
1453
1454 ARM MALI-DP DRM DRIVER
1455 M:      Liviu Dudau <liviu.dudau@arm.com>
1456 M:      Brian Starkey <brian.starkey@arm.com>
1457 L:      Mali DP Maintainers <malidp@foss.arm.com>
1458 S:      Supported
1459 T:      git git://anongit.freedesktop.org/drm/drm-misc
1460 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1461 F:      Documentation/gpu/afbc.rst
1462 F:      drivers/gpu/drm/arm/
1463
1464 ARM MFM AND FLOPPY DRIVERS
1465 M:      Ian Molton <spyro@f2s.com>
1466 S:      Maintained
1467 F:      arch/arm/include/asm/floppy.h
1468 F:      arch/arm/mach-rpc/floppydma.S
1469
1470 ARM PMU PROFILING AND DEBUGGING
1471 M:      Will Deacon <will@kernel.org>
1472 M:      Mark Rutland <mark.rutland@arm.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1476 F:      Documentation/devicetree/bindings/perf/
1477 F:      arch/arm*/include/asm/hw_breakpoint.h
1478 F:      arch/arm*/include/asm/perf_event.h
1479 F:      arch/arm*/kernel/hw_breakpoint.c
1480 F:      arch/arm*/kernel/perf_*
1481 F:      drivers/perf/
1482 F:      include/linux/perf/arm_pmu.h
1483
1484 ARM PORT
1485 M:      Russell King <linux@armlinux.org.uk>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Odd Fixes
1488 W:      http://www.armlinux.org.uk/
1489 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1490 F:      arch/arm/
1491 X:      arch/arm/boot/dts/
1492
1493 ARM PRIMECELL AACI PL041 DRIVER
1494 M:      Russell King <linux@armlinux.org.uk>
1495 S:      Odd Fixes
1496 F:      sound/arm/aaci.*
1497
1498 ARM PRIMECELL BUS SUPPORT
1499 M:      Russell King <linux@armlinux.org.uk>
1500 S:      Odd Fixes
1501 F:      drivers/amba/
1502 F:      include/linux/amba/bus.h
1503
1504 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1505 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1506 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1507 L:      linux-mtd@lists.infradead.org
1508 S:      Maintained
1509 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1510 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1511
1512 ARM PRIMECELL PL35X SMC DRIVER
1513 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1514 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1518 F:      drivers/memory/pl353-smc.c
1519
1520 ARM PRIMECELL CLCD PL110 DRIVER
1521 M:      Russell King <linux@armlinux.org.uk>
1522 S:      Odd Fixes
1523 F:      drivers/video/fbdev/amba-clcd.*
1524
1525 ARM PRIMECELL KMI PL050 DRIVER
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/input/serio/ambakmi.*
1529 F:      include/linux/amba/kmi.h
1530
1531 ARM PRIMECELL MMCI PL180/1 DRIVER
1532 M:      Russell King <linux@armlinux.org.uk>
1533 S:      Odd Fixes
1534 F:      drivers/mmc/host/mmci.*
1535 F:      include/linux/amba/mmci.h
1536
1537 ARM PRIMECELL SSP PL022 SPI DRIVER
1538 M:      Linus Walleij <linus.walleij@linaro.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1542 F:      drivers/spi/spi-pl022.c
1543
1544 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/tty/serial/amba-pl01*.c
1548 F:      include/linux/amba/serial.h
1549
1550 ARM PRIMECELL VIC PL190/PL192 DRIVER
1551 M:      Linus Walleij <linus.walleij@linaro.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1555 F:      drivers/irqchip/irq-vic.c
1556
1557 ARM SMC WATCHDOG DRIVER
1558 M:      Julius Werner <jwerner@chromium.org>
1559 R:      Evan Benn <evanbenn@chromium.org>
1560 S:      Maintained
1561 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1562 F:      drivers/watchdog/arm_smc_wdt.c
1563
1564 ARM SMMU DRIVERS
1565 M:      Will Deacon <will@kernel.org>
1566 R:      Robin Murphy <robin.murphy@arm.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1570 F:      drivers/iommu/arm/
1571 F:      drivers/iommu/io-pgtable-arm*
1572
1573 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1574 M:      Arnd Bergmann <arnd@arndb.de>
1575 M:      Olof Johansson <olof@lixom.net>
1576 M:      soc@kernel.org
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1580 F:      arch/arm/boot/dts/Makefile
1581 F:      arch/arm64/boot/dts/Makefile
1582
1583 ARM SUB-ARCHITECTURES
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1587 F:      arch/arm/mach-*/
1588 F:      arch/arm/plat-*/
1589
1590 ARM/ACTIONS SEMI ARCHITECTURE
1591 M:      Andreas Färber <afaerber@suse.de>
1592 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      Documentation/devicetree/bindings/arm/actions.yaml
1597 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1598 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1599 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1600 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1601 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1602 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1603 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1604 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1605 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1606 F:      arch/arm/boot/dts/owl-*
1607 F:      arch/arm/mach-actions/
1608 F:      arch/arm64/boot/dts/actions/
1609 F:      drivers/clk/actions/
1610 F:      drivers/clocksource/timer-owl*
1611 F:      drivers/dma/owl-dma.c
1612 F:      drivers/i2c/busses/i2c-owl.c
1613 F:      drivers/irqchip/irq-owl-sirq.c
1614 F:      drivers/mmc/host/owl-mmc.c
1615 F:      drivers/net/ethernet/actions/
1616 F:      drivers/pinctrl/actions/*
1617 F:      drivers/soc/actions/
1618 F:      include/dt-bindings/power/owl-*
1619 F:      include/dt-bindings/reset/actions,*
1620 F:      include/linux/soc/actions/
1621 N:      owl
1622
1623 ARM/ADS SPHERE MACHINE SUPPORT
1624 M:      Lennert Buytenhek <kernel@wantstofly.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627
1628 ARM/AFEB9260 MACHINE SUPPORT
1629 M:      Sergey Lapin <slapin@ossfans.org>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632
1633 ARM/AJECO 1ARM MACHINE SUPPORT
1634 M:      Lennert Buytenhek <kernel@wantstofly.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637
1638 ARM/Allwinner SoC Clock Support
1639 M:      Emilio López <emilio@elopez.com.ar>
1640 S:      Maintained
1641 F:      drivers/clk/sunxi/
1642
1643 ARM/Allwinner sunXi SoC support
1644 M:      Maxime Ripard <mripard@kernel.org>
1645 M:      Chen-Yu Tsai <wens@csie.org>
1646 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1650 L:      linux-sunxi@lists.linux.dev
1651 F:      arch/arm/mach-sunxi/
1652 F:      arch/arm64/boot/dts/allwinner/
1653 F:      drivers/clk/sunxi-ng/
1654 F:      drivers/pinctrl/sunxi/
1655 F:      drivers/soc/sunxi/
1656 N:      allwinner
1657 N:      sun[x456789]i
1658 N:      sun50i
1659
1660 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1661 M:      Neil Armstrong <narmstrong@baylibre.com>
1662 M:      Jerome Brunet <jbrunet@baylibre.com>
1663 L:      linux-amlogic@lists.infradead.org
1664 S:      Maintained
1665 F:      Documentation/devicetree/bindings/clock/amlogic*
1666 F:      drivers/clk/meson/
1667 F:      include/dt-bindings/clock/gxbb*
1668 F:      include/dt-bindings/clock/meson*
1669
1670 ARM/Amlogic Meson SoC Crypto Drivers
1671 M:      Corentin Labbe <clabbe@baylibre.com>
1672 L:      linux-crypto@vger.kernel.org
1673 L:      linux-amlogic@lists.infradead.org
1674 S:      Maintained
1675 F:      Documentation/devicetree/bindings/crypto/amlogic*
1676 F:      drivers/crypto/amlogic/
1677
1678 ARM/Amlogic Meson SoC Sound Drivers
1679 M:      Jerome Brunet <jbrunet@baylibre.com>
1680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1681 S:      Maintained
1682 F:      Documentation/devicetree/bindings/sound/amlogic*
1683 F:      sound/soc/meson/
1684
1685 ARM/Amlogic Meson SoC support
1686 M:      Neil Armstrong <narmstrong@baylibre.com>
1687 M:      Kevin Hilman <khilman@baylibre.com>
1688 R:      Jerome Brunet <jbrunet@baylibre.com>
1689 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 L:      linux-amlogic@lists.infradead.org
1692 S:      Maintained
1693 W:      http://linux-meson.com/
1694 F:      arch/arm/boot/dts/meson*
1695 F:      arch/arm/mach-meson/
1696 F:      arch/arm64/boot/dts/amlogic/
1697 F:      drivers/mmc/host/meson*
1698 F:      drivers/pinctrl/meson/
1699 F:      drivers/rtc/rtc-meson*
1700 F:      drivers/soc/amlogic/
1701 N:      meson
1702
1703 ARM/Annapurna Labs ALPINE ARCHITECTURE
1704 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1705 M:      Antoine Tenart <atenart@kernel.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/boot/dts/alpine*
1709 F:      arch/arm/mach-alpine/
1710 F:      arch/arm64/boot/dts/amazon/
1711 F:      drivers/*/*alpine*
1712
1713 ARM/APPLE MACHINE SUPPORT
1714 M:      Hector Martin <marcan@marcan.st>
1715 M:      Sven Peter <sven@svenpeter.dev>
1716 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Maintained
1719 W:      https://asahilinux.org
1720 B:      https://github.com/AsahiLinux/linux/issues
1721 C:      irc://irc.oftc.net/asahi-dev
1722 T:      git https://github.com/AsahiLinux/linux.git
1723 F:      Documentation/devicetree/bindings/arm/apple.yaml
1724 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1725 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1726 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1727 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1728 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1729 F:      arch/arm64/boot/dts/apple/
1730 F:      drivers/i2c/busses/i2c-pasemi-core.c
1731 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1732 F:      drivers/irqchip/irq-apple-aic.c
1733 F:      drivers/mailbox/apple-mailbox.c
1734 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1735 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1736 F:      include/dt-bindings/pinctrl/apple.h
1737 F:      include/linux/apple-mailbox.h
1738
1739 ARM/ARTPEC MACHINE SUPPORT
1740 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1741 M:      Lars Persson <lars.persson@axis.com>
1742 L:      linux-arm-kernel@axis.com
1743 S:      Maintained
1744 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1745 F:      arch/arm/boot/dts/artpec6*
1746 F:      arch/arm/mach-artpec
1747 F:      drivers/clk/axis
1748 F:      drivers/crypto/axis
1749 F:      drivers/mmc/host/usdhi6rol0.c
1750 F:      drivers/pinctrl/pinctrl-artpec*
1751
1752 ARM/ASPEED I2C DRIVER
1753 M:      Brendan Higgins <brendanhiggins@google.com>
1754 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1755 R:      Joel Stanley <joel@jms.id.au>
1756 L:      linux-i2c@vger.kernel.org
1757 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1758 S:      Maintained
1759 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1760 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1761 F:      drivers/i2c/busses/i2c-aspeed.c
1762 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1763
1764 ARM/ASPEED MACHINE SUPPORT
1765 M:      Joel Stanley <joel@jms.id.au>
1766 R:      Andrew Jeffery <andrew@aj.id.au>
1767 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1768 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Supported
1770 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1772 F:      arch/arm/boot/dts/aspeed-*
1773 F:      arch/arm/mach-aspeed/
1774 N:      aspeed
1775
1776 ARM/BITMAIN ARCHITECTURE
1777 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 S:      Maintained
1780 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1781 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1782 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1783 F:      arch/arm64/boot/dts/bitmain/
1784 F:      drivers/clk/clk-bm1880.c
1785 F:      drivers/pinctrl/pinctrl-bm1880.c
1786
1787 ARM/CALXEDA HIGHBANK ARCHITECTURE
1788 M:      Andre Przywara <andre.przywara@arm.com>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      arch/arm/boot/dts/ecx-*.dts*
1792 F:      arch/arm/boot/dts/highbank.dts
1793 F:      arch/arm/mach-highbank/
1794
1795 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1796 M:      Krzysztof Halasa <khalasa@piap.pl>
1797 S:      Maintained
1798 F:      arch/arm/mach-cns3xxx/
1799
1800 ARM/CAVIUM THUNDER NETWORK DRIVER
1801 M:      Sunil Goutham <sgoutham@marvell.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Supported
1804 F:      drivers/net/ethernet/cavium/thunder/
1805
1806 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1807 M:      Lukasz Majewski <lukma@denx.de>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810 F:      arch/arm/mach-ep93xx/ts72xx.c
1811
1812 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1813 M:      Alexander Shiyan <shc_work@mail.ru>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Odd Fixes
1816 N:      clps711x
1817
1818 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1819 M:      Lennert Buytenhek <kernel@wantstofly.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822
1823 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1824 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1825 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 F:      arch/arm/mach-ep93xx/
1829 F:      arch/arm/mach-ep93xx/include/mach/
1830
1831 ARM/CLKDEV SUPPORT
1832 M:      Russell King <linux@armlinux.org.uk>
1833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1834 S:      Maintained
1835 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1836 F:      drivers/clk/clkdev.c
1837
1838 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1839 M:      Baruch Siach <baruch@tkos.co.il>
1840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1841 S:      Maintained
1842 F:      arch/arm/boot/dts/cx92755*
1843 N:      digicolor
1844
1845 ARM/CONTEC MICRO9 MACHINE SUPPORT
1846 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1847 S:      Maintained
1848 F:      arch/arm/mach-ep93xx/micro9.c
1849
1850 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1851 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1852 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1853 R:      Mike Leach <mike.leach@linaro.org>
1854 R:      Leo Yan <leo.yan@linaro.org>
1855 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1859 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1860 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1861 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1862 F:      Documentation/devicetree/bindings/arm/coresight.txt
1863 F:      Documentation/devicetree/bindings/arm/ete.yaml
1864 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1865 F:      Documentation/trace/coresight/*
1866 F:      drivers/hwtracing/coresight/*
1867 F:      include/dt-bindings/arm/coresight-cti-dt.h
1868 F:      include/linux/coresight*
1869 F:      tools/perf/arch/arm/util/auxtrace.c
1870 F:      tools/perf/arch/arm/util/cs-etm.c
1871 F:      tools/perf/arch/arm/util/cs-etm.h
1872 F:      tools/perf/arch/arm/util/pmu.c
1873 F:      tools/perf/util/cs-etm-decoder/*
1874 F:      tools/perf/util/cs-etm.*
1875
1876 ARM/CORGI MACHINE SUPPORT
1877 M:      Richard Purdie <rpurdie@rpsys.net>
1878 S:      Maintained
1879
1880 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1881 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1882 M:      Linus Walleij <linus.walleij@linaro.org>
1883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1884 S:      Maintained
1885 T:      git git://github.com/ulli-kroll/linux.git
1886 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1887 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1888 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1889 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1890 F:      arch/arm/boot/dts/gemini*
1891 F:      arch/arm/mach-gemini/
1892 F:      drivers/crypto/gemini/
1893 F:      drivers/net/ethernet/cortina/
1894 F:      drivers/pinctrl/pinctrl-gemini.c
1895 F:      drivers/rtc/rtc-ftrtc010.c
1896
1897 ARM/CZ.NIC TURRIS SUPPORT
1898 M:      Marek Behún <kabel@kernel.org>
1899 S:      Maintained
1900 W:      https://www.turris.cz/
1901 F:      Documentation/ABI/testing/debugfs-moxtet
1902 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1903 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1904 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1905 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1906 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1907 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1908 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1909 F:      drivers/bus/moxtet.c
1910 F:      drivers/firmware/turris-mox-rwtm.c
1911 F:      drivers/leds/leds-turris-omnia.c
1912 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1913 F:      drivers/gpio/gpio-moxtet.c
1914 F:      drivers/watchdog/armada_37xx_wdt.c
1915 F:      include/dt-bindings/bus/moxtet.h
1916 F:      include/linux/armada-37xx-rwtm-mailbox.h
1917 F:      include/linux/moxtet.h
1918
1919 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1920 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/mach-pxa/ezx.c
1924
1925 ARM/FARADAY FA526 PORT
1926 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 T:      git git://git.berlios.de/gemini-board
1930 F:      arch/arm/mm/*-fa*
1931
1932 ARM/FOOTBRIDGE ARCHITECTURE
1933 M:      Russell King <linux@armlinux.org.uk>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 W:      http://www.armlinux.org.uk/
1937 F:      arch/arm/include/asm/hardware/dec21285.h
1938 F:      arch/arm/mach-footbridge/
1939
1940 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1941 M:      Shawn Guo <shawnguo@kernel.org>
1942 M:      Sascha Hauer <s.hauer@pengutronix.de>
1943 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1944 R:      Fabio Estevam <festevam@gmail.com>
1945 R:      NXP Linux Team <linux-imx@nxp.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1949 X:      drivers/media/i2c/
1950 N:      imx
1951 N:      mxs
1952
1953 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1954 M:      Shawn Guo <shawnguo@kernel.org>
1955 M:      Li Yang <leoyang.li@nxp.com>
1956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1957 S:      Maintained
1958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1959 F:      arch/arm/boot/dts/ls1021a*
1960 F:      arch/arm64/boot/dts/freescale/fsl-*
1961 F:      arch/arm64/boot/dts/freescale/qoriq-*
1962
1963 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1964 M:      Shawn Guo <shawnguo@kernel.org>
1965 M:      Sascha Hauer <s.hauer@pengutronix.de>
1966 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1967 R:      Stefan Agner <stefan@agner.ch>
1968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S:      Maintained
1970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1971 F:      arch/arm/boot/dts/vf*
1972 F:      arch/arm/mach-imx/*vf610*
1973
1974 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1975 M:      Lennert Buytenhek <kernel@wantstofly.org>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/GUMSTIX MACHINE SUPPORT
1980 M:      Steve Sakoman <sakoman@gmail.com>
1981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1982 S:      Maintained
1983
1984 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1985 M:      Philipp Zabel <philipp.zabel@gmail.com>
1986 M:      Paul Parsons <lost.distance@yahoo.com>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 F:      arch/arm/mach-pxa/hx4700.c
1990 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1991 F:      sound/soc/pxa/hx4700.c
1992
1993 ARM/HISILICON SOC SUPPORT
1994 M:      Wei Xu <xuwei5@hisilicon.com>
1995 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1996 S:      Supported
1997 W:      http://www.hisilicon.com
1998 T:      git git://github.com/hisilicon/linux-hisi.git
1999 F:      arch/arm/boot/dts/hi3*
2000 F:      arch/arm/boot/dts/hip*
2001 F:      arch/arm/boot/dts/hisi*
2002 F:      arch/arm/mach-hisi/
2003 F:      arch/arm64/boot/dts/hisilicon/
2004
2005 ARM/HP JORNADA 7XX MACHINE SUPPORT
2006 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2007 S:      Maintained
2008 W:      www.jlime.com
2009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2010 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2011 F:      arch/arm/mach-sa1100/jornada720.c
2012
2013 ARM/IGEP MACHINE SUPPORT
2014 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2015 M:      Javier Martinez Canillas <javier@dowhile0.org>
2016 L:      linux-omap@vger.kernel.org
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Maintained
2019 F:      arch/arm/boot/dts/omap3-igep*
2020
2021 ARM/INCOME PXA270 SUPPORT
2022 M:      Marek Vasut <marek.vasut@gmail.com>
2023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2024 S:      Maintained
2025 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2026
2027 ARM/INTEL IOP32X ARM ARCHITECTURE
2028 M:      Lennert Buytenhek <kernel@wantstofly.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031
2032 ARM/INTEL IQ81342EX MACHINE SUPPORT
2033 M:      Lennert Buytenhek <kernel@wantstofly.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036
2037 ARM/INTEL IXDP2850 MACHINE SUPPORT
2038 M:      Lennert Buytenhek <kernel@wantstofly.org>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041
2042 ARM/INTEL IXP4XX ARM ARCHITECTURE
2043 M:      Linus Walleij <linusw@kernel.org>
2044 M:      Imre Kaloz <kaloz@openwrt.org>
2045 M:      Krzysztof Halasa <khalasa@piap.pl>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2049 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2050 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2051 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2052 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2053 F:      arch/arm/mach-ixp4xx/
2054 F:      drivers/bus/intel-ixp4xx-eb.c
2055 F:      drivers/clocksource/timer-ixp4xx.c
2056 F:      drivers/crypto/ixp4xx_crypto.c
2057 F:      drivers/gpio/gpio-ixp4xx.c
2058 F:      drivers/irqchip/irq-ixp4xx.c
2059 F:      include/linux/irqchip/irq-ixp4xx.h
2060 F:      include/linux/platform_data/timer-ixp4xx.h
2061
2062 ARM/INTEL KEEMBAY ARCHITECTURE
2063 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2064 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2065 S:      Maintained
2066 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2067 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2068 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2069
2070 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2071 M:      Jonathan Cameron <jic23@cam.ac.uk>
2072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2073 S:      Maintained
2074 F:      arch/arm/mach-pxa/stargate2.c
2075 F:      drivers/pcmcia/pxa2xx_stargate2.c
2076
2077 ARM/INTEL XSC3 (MANZANO) ARM CORE
2078 M:      Lennert Buytenhek <kernel@wantstofly.org>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081
2082 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2083 M:      Lennert Buytenhek <kernel@wantstofly.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086
2087 ARM/LG1K ARCHITECTURE
2088 M:      Chanho Min <chanho.min@lge.com>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 F:      arch/arm64/boot/dts/lg/
2092
2093 ARM/LOGICPD PXA270 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/LPC18XX ARCHITECTURE
2099 M:      Vladimir Zapolskiy <vz@mleia.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2103 F:      arch/arm/boot/dts/lpc43*
2104 F:      drivers/i2c/busses/i2c-lpc2k.c
2105 F:      drivers/memory/pl172.c
2106 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2107 F:      drivers/rtc/rtc-lpc24xx.c
2108 N:      lpc18xx
2109
2110 ARM/LPC32XX SOC SUPPORT
2111 M:      Vladimir Zapolskiy <vz@mleia.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2115 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2116 F:      arch/arm/boot/dts/lpc32*
2117 F:      arch/arm/mach-lpc32xx/
2118 F:      drivers/i2c/busses/i2c-pnx.c
2119 F:      drivers/net/ethernet/nxp/lpc_eth.c
2120 F:      drivers/usb/host/ohci-nxp.c
2121 F:      drivers/watchdog/pnx4008_wdt.c
2122 N:      lpc32xx
2123
2124 ARM/MAGICIAN MACHINE SUPPORT
2125 M:      Philipp Zabel <philipp.zabel@gmail.com>
2126 S:      Maintained
2127
2128 ARM/Marvell Dove/MV78xx0/Orion SOC support
2129 M:      Andrew Lunn <andrew@lunn.ch>
2130 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2131 M:      Gregory Clement <gregory.clement@bootlin.com>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2135 F:      Documentation/devicetree/bindings/soc/dove/
2136 F:      arch/arm/boot/dts/dove*
2137 F:      arch/arm/boot/dts/orion5x*
2138 F:      arch/arm/mach-dove/
2139 F:      arch/arm/mach-mv78xx0/
2140 F:      arch/arm/mach-orion5x/
2141 F:      arch/arm/plat-orion/
2142 F:      drivers/soc/dove/
2143
2144 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2145 M:      Andrew Lunn <andrew@lunn.ch>
2146 M:      Gregory Clement <gregory.clement@bootlin.com>
2147 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2149 S:      Maintained
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2151 F:      arch/arm/boot/dts/armada*
2152 F:      arch/arm/boot/dts/kirkwood*
2153 F:      arch/arm/configs/mvebu_*_defconfig
2154 F:      arch/arm/mach-mvebu/
2155 F:      arch/arm64/boot/dts/marvell/armada*
2156 F:      arch/arm64/boot/dts/marvell/cn913*
2157 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2158 F:      drivers/cpufreq/armada-8k-cpufreq.c
2159 F:      drivers/cpufreq/mvebu-cpufreq.c
2160 F:      drivers/irqchip/irq-armada-370-xp.c
2161 F:      drivers/irqchip/irq-mvebu-*
2162 F:      drivers/pinctrl/mvebu/
2163 F:      drivers/rtc/rtc-armada38x.c
2164
2165 ARM/Mediatek RTC DRIVER
2166 M:      Eddie Huang <eddie.huang@mediatek.com>
2167 M:      Sean Wang <sean.wang@mediatek.com>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2172 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2173 F:      drivers/rtc/rtc-mt2712.c
2174 F:      drivers/rtc/rtc-mt6397.c
2175 F:      drivers/rtc/rtc-mt7622.c
2176
2177 ARM/Mediatek SoC support
2178 M:      Matthias Brugger <matthias.bgg@gmail.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 W:      https://mtk.wiki.kernel.org/
2183 C:      irc://chat.freenode.net/linux-mediatek
2184 F:      arch/arm/boot/dts/mt6*
2185 F:      arch/arm/boot/dts/mt7*
2186 F:      arch/arm/boot/dts/mt8*
2187 F:      arch/arm/mach-mediatek/
2188 F:      arch/arm64/boot/dts/mediatek/
2189 F:      drivers/soc/mediatek/
2190 N:      mtk
2191 N:      mt[678]
2192 K:      mediatek
2193
2194 ARM/Mediatek USB3 PHY DRIVER
2195 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199 F:      Documentation/devicetree/bindings/phy/mediatek,*
2200 F:      drivers/phy/mediatek/
2201
2202 ARM/Microchip (AT91) SoC support
2203 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2204 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2205 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 S:      Supported
2208 W:      http://www.linux4sam.org
2209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2210 F:      arch/arm/boot/dts/at91*.dts
2211 F:      arch/arm/boot/dts/at91*.dtsi
2212 F:      arch/arm/boot/dts/sama*.dts
2213 F:      arch/arm/boot/dts/sama*.dtsi
2214 F:      arch/arm/include/debug/at91.S
2215 F:      arch/arm/mach-at91/
2216 F:      drivers/memory/atmel*
2217 F:      drivers/watchdog/sama5d4_wdt.c
2218 F:      include/soc/at91/
2219 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2220 X:      drivers/net/wireless/atmel/
2221 N:      at91
2222 N:      atmel
2223
2224 ARM/Microchip Sparx5 SoC support
2225 M:      Lars Povlsen <lars.povlsen@microchip.com>
2226 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2227 M:      UNGLinuxDriver@microchip.com
2228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2229 S:      Supported
2230 T:      git git://github.com/microchip-ung/linux-upstream.git
2231 F:      arch/arm64/boot/dts/microchip/
2232 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2233 N:      sparx5
2234
2235 Microchip Timer Counter Block (TCB) Capture Driver
2236 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 L:      linux-iio@vger.kernel.org
2239 S:      Maintained
2240 F:      drivers/counter/microchip-tcb-capture.c
2241
2242 ARM/MIOA701 MACHINE SUPPORT
2243 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 F:      arch/arm/mach-pxa/mioa701.c
2247
2248 ARM/MStar/Sigmastar Armv7 SoC support
2249 M:      Daniel Palmer <daniel@thingy.jp>
2250 M:      Romain Perier <romain.perier@gmail.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 W:      http://linux-chenxing.org/
2254 T:      git git://github.com/linux-chenxing/linux.git
2255 F:      Documentation/devicetree/bindings/arm/mstar/*
2256 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2257 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2258 F:      arch/arm/boot/dts/mstar-*
2259 F:      arch/arm/mach-mstar/
2260 F:      drivers/clk/mstar/
2261 F:      drivers/gpio/gpio-msc313.c
2262 F:      drivers/watchdog/msc313e_wdt.c
2263 F:      include/dt-bindings/clock/mstar-*
2264 F:      include/dt-bindings/gpio/msc313-gpio.h
2265
2266 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2267 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2268 S:      Maintained
2269
2270 ARM/NOMADIK/Ux500 ARCHITECTURES
2271 M:      Linus Walleij <linus.walleij@linaro.org>
2272 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2273 S:      Maintained
2274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2275 F:      Documentation/devicetree/bindings/arm/ste-*
2276 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2277 F:      Documentation/devicetree/bindings/arm/ux500/
2278 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2279 F:      arch/arm/boot/dts/ste-*
2280 F:      arch/arm/mach-nomadik/
2281 F:      arch/arm/mach-ux500/
2282 F:      drivers/clk/clk-nomadik.c
2283 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2284 F:      drivers/dma/ste_dma40*
2285 F:      drivers/hwspinlock/u8500_hsem.c
2286 F:      drivers/i2c/busses/i2c-nomadik.c
2287 F:      drivers/iio/adc/ab8500-gpadc.c
2288 F:      drivers/mfd/ab8500*
2289 F:      drivers/mfd/abx500*
2290 F:      drivers/mfd/db8500*
2291 F:      drivers/pinctrl/nomadik/
2292 F:      drivers/rtc/rtc-ab8500.c
2293 F:      drivers/rtc/rtc-pl031.c
2294 F:      drivers/soc/ux500/
2295
2296 ARM/NUVOTON NPCM ARCHITECTURE
2297 M:      Avi Fishman <avifishman70@gmail.com>
2298 M:      Tomer Maimon <tmaimon77@gmail.com>
2299 M:      Tali Perry <tali.perry1@gmail.com>
2300 R:      Patrick Venture <venture@google.com>
2301 R:      Nancy Yuen <yuenn@google.com>
2302 R:      Benjamin Fair <benjaminfair@google.com>
2303 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2304 S:      Supported
2305 F:      Documentation/devicetree/bindings/*/*/*npcm*
2306 F:      Documentation/devicetree/bindings/*/*npcm*
2307 F:      arch/arm/boot/dts/nuvoton-npcm*
2308 F:      arch/arm/mach-npcm/
2309 F:      drivers/*/*npcm*
2310 F:      drivers/*/*/*npcm*
2311 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2312
2313 ARM/NUVOTON WPCM450 ARCHITECTURE
2314 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2315 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2316 S:      Maintained
2317 F:      Documentation/devicetree/bindings/*/*wpcm*
2318 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2319 F:      arch/arm/mach-npcm/wpcm450.c
2320 F:      drivers/*/*wpcm*
2321
2322 ARM/NXP S32G ARCHITECTURE
2323 M:      Chester Lin <clin@suse.com>
2324 R:      Andreas Färber <afaerber@suse.de>
2325 R:      Matthias Brugger <mbrugger@suse.com>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2329
2330 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2331 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2332 S:      Orphan
2333 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2334 F:      arch/arm/mach-s3c/gta02.h
2335 F:      arch/arm/mach-s3c/mach-gta02.c
2336
2337 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2338 M:      Alexander Clouter <alex@digriz.org.uk>
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Maintained
2341 W:      http://www.digriz.org.uk/ts78xx/kernel
2342 F:      arch/arm/mach-orion5x/ts78xx-*
2343
2344 ARM/OXNAS platform support
2345 M:      Neil Armstrong <narmstrong@baylibre.com>
2346 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2347 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2348 S:      Maintained
2349 F:      arch/arm/boot/dts/ox8*.dts*
2350 F:      arch/arm/mach-oxnas/
2351 F:      drivers/power/reset/oxnas-restart.c
2352 N:      oxnas
2353
2354 ARM/PALM TREO SUPPORT
2355 M:      Tomas Cech <sleep_walker@suse.com>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 W:      http://hackndev.com
2359 F:      arch/arm/mach-pxa/palmtreo.*
2360
2361 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2362 M:      Marek Vasut <marek.vasut@gmail.com>
2363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2364 S:      Maintained
2365 W:      http://hackndev.com
2366 F:      arch/arm/mach-pxa/include/mach/palmld.h
2367 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2368 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2369 F:      arch/arm/mach-pxa/palmld.c
2370 F:      arch/arm/mach-pxa/palmt5.*
2371 F:      arch/arm/mach-pxa/palmtc.c
2372 F:      arch/arm/mach-pxa/palmte2.*
2373 F:      arch/arm/mach-pxa/palmtx.c
2374
2375 ARM/PALMZ72 SUPPORT
2376 M:      Sergey Lapin <slapin@ossfans.org>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 W:      http://hackndev.com
2380 F:      arch/arm/mach-pxa/palmz72.*
2381
2382 ARM/PLEB SUPPORT
2383 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2384 S:      Maintained
2385 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2386
2387 ARM/PT DIGITAL BOARD PORT
2388 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2390 S:      Maintained
2391 W:      http://www.armlinux.org.uk/
2392
2393 ARM/QUALCOMM SUPPORT
2394 M:      Andy Gross <agross@kernel.org>
2395 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2396 L:      linux-arm-msm@vger.kernel.org
2397 S:      Maintained
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2399 F:      Documentation/devicetree/bindings/*/qcom*
2400 F:      Documentation/devicetree/bindings/soc/qcom/
2401 F:      arch/arm/boot/dts/qcom-*.dts
2402 F:      arch/arm/boot/dts/qcom-*.dtsi
2403 F:      arch/arm/mach-qcom/
2404 F:      arch/arm64/boot/dts/qcom/
2405 F:      drivers/*/*/qcom*
2406 F:      drivers/*/*/qcom/
2407 F:      drivers/*/pm8???-*
2408 F:      drivers/*/qcom*
2409 F:      drivers/*/qcom/
2410 F:      drivers/bluetooth/btqcomsmd.c
2411 F:      drivers/clocksource/timer-qcom.c
2412 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2413 F:      drivers/extcon/extcon-qcom*
2414 F:      drivers/i2c/busses/i2c-qcom-geni.c
2415 F:      drivers/i2c/busses/i2c-qup.c
2416 F:      drivers/iommu/msm*
2417 F:      drivers/mfd/ssbi.c
2418 F:      drivers/mmc/host/mmci_qcom*
2419 F:      drivers/mmc/host/sdhci-msm.c
2420 F:      drivers/pci/controller/dwc/pcie-qcom.c
2421 F:      drivers/phy/qualcomm/
2422 F:      drivers/power/*/msm*
2423 F:      drivers/reset/reset-qcom-*
2424 F:      drivers/scsi/ufs/ufs-qcom*
2425 F:      drivers/spi/spi-geni-qcom.c
2426 F:      drivers/spi/spi-qcom-qspi.c
2427 F:      drivers/spi/spi-qup.c
2428 F:      drivers/tty/serial/msm_serial.c
2429 F:      drivers/usb/dwc3/dwc3-qcom.c
2430 F:      include/dt-bindings/*/qcom*
2431 F:      include/linux/*/qcom*
2432 F:      include/linux/soc/qcom/
2433
2434 ARM/RADISYS ENP2611 MACHINE SUPPORT
2435 M:      Lennert Buytenhek <kernel@wantstofly.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438
2439 ARM/RDA MICRO ARCHITECTURE
2440 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2442 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2443 S:      Maintained
2444 F:      Documentation/devicetree/bindings/arm/rda.yaml
2445 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2446 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2447 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2448 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2449 F:      arch/arm/boot/dts/rda8810pl-*
2450 F:      drivers/clocksource/timer-rda.c
2451 F:      drivers/gpio/gpio-rda.c
2452 F:      drivers/irqchip/irq-rda-intc.c
2453 F:      drivers/tty/serial/rda-uart.c
2454
2455 ARM/REALTEK ARCHITECTURE
2456 M:      Andreas Färber <afaerber@suse.de>
2457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2458 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2459 S:      Maintained
2460 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2461 F:      arch/arm/boot/dts/rtd*
2462 F:      arch/arm/mach-realtek/
2463 F:      arch/arm64/boot/dts/realtek/
2464
2465 ARM/RENESAS ARM64 ARCHITECTURE
2466 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2467 M:      Magnus Damm <magnus.damm@gmail.com>
2468 L:      linux-renesas-soc@vger.kernel.org
2469 S:      Supported
2470 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2472 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2473 F:      arch/arm64/boot/dts/renesas/
2474 F:      drivers/soc/renesas/
2475 F:      include/linux/soc/renesas/
2476
2477 ARM/RISCPC ARCHITECTURE
2478 M:      Russell King <linux@armlinux.org.uk>
2479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2480 S:      Maintained
2481 W:      http://www.armlinux.org.uk/
2482 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2483 F:      arch/arm/include/asm/hardware/ioc.h
2484 F:      arch/arm/include/asm/hardware/iomd.h
2485 F:      arch/arm/include/asm/hardware/memc.h
2486 F:      arch/arm/mach-rpc/
2487 F:      drivers/net/ethernet/8390/etherh.c
2488 F:      drivers/net/ethernet/i825xx/ether1*
2489 F:      drivers/net/ethernet/seeq/ether3*
2490 F:      drivers/scsi/arm/
2491
2492 ARM/Rockchip SoC support
2493 M:      Heiko Stuebner <heiko@sntech.de>
2494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2495 L:      linux-rockchip@lists.infradead.org
2496 S:      Maintained
2497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2498 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2499 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2500 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2501 F:      arch/arm/boot/dts/rk3*
2502 F:      arch/arm/boot/dts/rv1108*
2503 F:      arch/arm/mach-rockchip/
2504 F:      drivers/*/*/*rockchip*
2505 F:      drivers/*/*rockchip*
2506 F:      drivers/clk/rockchip/
2507 F:      drivers/i2c/busses/i2c-rk3x.c
2508 F:      sound/soc/rockchip/
2509 N:      rockchip
2510
2511 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2512 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 L:      linux-samsung-soc@vger.kernel.org
2515 S:      Maintained
2516 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2517 F:      Documentation/arm/samsung/
2518 F:      Documentation/devicetree/bindings/arm/samsung/
2519 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2520 F:      arch/arm/boot/dts/exynos*
2521 F:      arch/arm/boot/dts/s3c*
2522 F:      arch/arm/boot/dts/s5p*
2523 F:      arch/arm/mach-exynos*/
2524 F:      arch/arm/mach-s3c/
2525 F:      arch/arm/mach-s5p*/
2526 F:      arch/arm64/boot/dts/exynos/
2527 F:      drivers/*/*/*s3c24*
2528 F:      drivers/*/*s3c24*
2529 F:      drivers/*/*s3c64xx*
2530 F:      drivers/*/*s5pv210*
2531 F:      drivers/clocksource/samsung_pwm_timer.c
2532 F:      drivers/memory/samsung/
2533 F:      drivers/pwm/pwm-samsung.c
2534 F:      drivers/soc/samsung/
2535 F:      drivers/tty/serial/samsung*
2536 F:      include/clocksource/samsung_pwm.h
2537 F:      include/linux/platform_data/*s3c*
2538 F:      include/linux/serial_s3c.h
2539 F:      include/linux/soc/samsung/
2540 N:      exynos
2541 N:      s3c2410
2542 N:      s3c64xx
2543 N:      s5pv210
2544
2545 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2546 M:      Andrzej Hajda <a.hajda@samsung.com>
2547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2548 L:      linux-media@vger.kernel.org
2549 S:      Maintained
2550 F:      drivers/media/platform/s5p-g2d/
2551
2552 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2553 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2554 L:      linux-samsung-soc@vger.kernel.org
2555 L:      linux-media@vger.kernel.org
2556 S:      Maintained
2557 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2558 F:      drivers/media/cec/platform/s5p/
2559
2560 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2561 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2562 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2563 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2564 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2565 L:      linux-media@vger.kernel.org
2566 S:      Maintained
2567 F:      drivers/media/platform/s5p-jpeg/
2568
2569 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2570 M:      Andrzej Hajda <a.hajda@samsung.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 L:      linux-media@vger.kernel.org
2573 S:      Maintained
2574 F:      drivers/media/platform/s5p-mfc/
2575
2576 ARM/SHMOBILE ARM ARCHITECTURE
2577 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2578 M:      Magnus Damm <magnus.damm@gmail.com>
2579 L:      linux-renesas-soc@vger.kernel.org
2580 S:      Supported
2581 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2583 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2584 F:      arch/arm/boot/dts/emev2*
2585 F:      arch/arm/boot/dts/gr-peach*
2586 F:      arch/arm/boot/dts/iwg20d-q7*
2587 F:      arch/arm/boot/dts/r7s*
2588 F:      arch/arm/boot/dts/r8a*
2589 F:      arch/arm/boot/dts/r9a*
2590 F:      arch/arm/boot/dts/sh*
2591 F:      arch/arm/configs/shmobile_defconfig
2592 F:      arch/arm/include/debug/renesas-scif.S
2593 F:      arch/arm/mach-shmobile/
2594 F:      drivers/soc/renesas/
2595 F:      include/linux/soc/renesas/
2596
2597 ARM/SOCFPGA ARCHITECTURE
2598 M:      Dinh Nguyen <dinguyen@kernel.org>
2599 S:      Maintained
2600 W:      http://www.rocketboards.org
2601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2602 F:      arch/arm/boot/dts/socfpga*
2603 F:      arch/arm/configs/socfpga_defconfig
2604 F:      arch/arm/mach-socfpga/
2605 F:      arch/arm64/boot/dts/altera/
2606 F:      arch/arm64/boot/dts/intel/
2607
2608 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2609 M:      Dinh Nguyen <dinguyen@kernel.org>
2610 S:      Maintained
2611 F:      drivers/clk/socfpga/
2612
2613 ARM/SOCFPGA EDAC SUPPORT
2614 M:      Dinh Nguyen <dinguyen@kernel.org>
2615 S:      Maintained
2616 F:      drivers/edac/altera_edac.[ch]
2617
2618 ARM/SPREADTRUM SoC SUPPORT
2619 M:      Orson Zhai <orsonzhai@gmail.com>
2620 M:      Baolin Wang <baolin.wang7@gmail.com>
2621 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2622 S:      Maintained
2623 F:      arch/arm64/boot/dts/sprd
2624 N:      sprd
2625 N:      sc27xx
2626 N:      sc2731
2627
2628 ARM/STI ARCHITECTURE
2629 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2631 S:      Maintained
2632 W:      http://www.stlinux.com
2633 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2634 F:      arch/arm/boot/dts/sti*
2635 F:      arch/arm/mach-sti/
2636 F:      drivers/ata/ahci_st.c
2637 F:      drivers/char/hw_random/st-rng.c
2638 F:      drivers/clocksource/arm_global_timer.c
2639 F:      drivers/clocksource/clksrc_st_lpc.c
2640 F:      drivers/cpufreq/sti-cpufreq.c
2641 F:      drivers/dma/st_fdma*
2642 F:      drivers/i2c/busses/i2c-st.c
2643 F:      drivers/media/platform/sti/c8sectpfe/
2644 F:      drivers/media/rc/st_rc.c
2645 F:      drivers/mmc/host/sdhci-st.c
2646 F:      drivers/phy/st/phy-miphy28lp.c
2647 F:      drivers/phy/st/phy-stih407-usb.c
2648 F:      drivers/pinctrl/pinctrl-st.c
2649 F:      drivers/remoteproc/st_remoteproc.c
2650 F:      drivers/remoteproc/st_slim_rproc.c
2651 F:      drivers/reset/sti/
2652 F:      drivers/rtc/rtc-st-lpc.c
2653 F:      drivers/tty/serial/st-asc.c
2654 F:      drivers/usb/dwc3/dwc3-st.c
2655 F:      drivers/usb/host/ehci-st.c
2656 F:      drivers/usb/host/ohci-st.c
2657 F:      drivers/watchdog/st_lpc_wdt.c
2658 F:      include/linux/remoteproc/st_slim_rproc.h
2659
2660 ARM/STM32 ARCHITECTURE
2661 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2662 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2663 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2667 F:      arch/arm/boot/dts/stm32*
2668 F:      arch/arm/mach-stm32/
2669 F:      drivers/clocksource/armv7m_systick.c
2670 N:      stm32
2671 N:      stm
2672
2673 ARM/Synaptics SoC support
2674 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2675 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2677 S:      Maintained
2678 F:      arch/arm/boot/dts/berlin*
2679 F:      arch/arm/mach-berlin/
2680 F:      arch/arm64/boot/dts/synaptics/
2681
2682 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2683 M:      Lennert Buytenhek <kernel@wantstofly.org>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686
2687 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2688 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2689 L:      linux-tegra@vger.kernel.org
2690 L:      linux-media@vger.kernel.org
2691 S:      Maintained
2692 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2693 F:      drivers/media/cec/platform/tegra/
2694
2695 ARM/TETON BGA MACHINE SUPPORT
2696 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 S:      Maintained
2699
2700 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2701 M:      Santosh Shilimkar <ssantosh@kernel.org>
2702 L:      linux-kernel@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/memory/*emif*
2705
2706 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2707 M:      Santosh Shilimkar <ssantosh@kernel.org>
2708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2709 S:      Maintained
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2711 F:      arch/arm/boot/dts/keystone-*
2712 F:      arch/arm/mach-keystone/
2713
2714 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2715 M:      Santosh Shilimkar <ssantosh@kernel.org>
2716 L:      linux-kernel@vger.kernel.org
2717 S:      Maintained
2718 F:      drivers/clk/keystone/
2719
2720 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2721 M:      Santosh Shilimkar <ssantosh@kernel.org>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L:      linux-kernel@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/clocksource/timer-keystone.c
2726
2727 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2728 M:      Santosh Shilimkar <ssantosh@kernel.org>
2729 L:      linux-kernel@vger.kernel.org
2730 S:      Maintained
2731 F:      drivers/power/reset/keystone-reset.c
2732
2733 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2734 M:      Nishanth Menon <nm@ti.com>
2735 M:      Vignesh Raghavendra <vigneshr@ti.com>
2736 M:      Tero Kristo <kristo@kernel.org>
2737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2738 S:      Supported
2739 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2740 F:      arch/arm64/boot/dts/ti/Makefile
2741 F:      arch/arm64/boot/dts/ti/k3-*
2742 F:      include/dt-bindings/pinctrl/k3.h
2743
2744 ARM/THECUS N2100 MACHINE SUPPORT
2745 M:      Lennert Buytenhek <kernel@wantstofly.org>
2746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2747 S:      Maintained
2748
2749 ARM/TOSA MACHINE SUPPORT
2750 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2751 M:      Dirk Opfer <dirk@opfer-online.de>
2752 S:      Maintained
2753
2754 ARM/TOSHIBA VISCONTI ARCHITECTURE
2755 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2757 S:      Supported
2758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2759 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2760 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2761 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2762 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2763 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2764 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2765 F:      arch/arm64/boot/dts/toshiba/
2766 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2767 F:      drivers/gpio/gpio-visconti.c
2768 F:      drivers/pci/controller/dwc/pcie-visconti.c
2769 F:      drivers/pinctrl/visconti/
2770 F:      drivers/watchdog/visconti_wdt.c
2771 N:      visconti
2772
2773 ARM/UNIPHIER ARCHITECTURE
2774 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2775 M:      Masami Hiramatsu <mhiramat@kernel.org>
2776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2777 S:      Maintained
2778 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2779 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2780 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2781 F:      arch/arm/boot/dts/uniphier*
2782 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2783 F:      arch/arm/mach-uniphier/
2784 F:      arch/arm/mm/cache-uniphier.c
2785 F:      arch/arm64/boot/dts/socionext/uniphier*
2786 F:      drivers/bus/uniphier-system-bus.c
2787 F:      drivers/clk/uniphier/
2788 F:      drivers/dma/uniphier-mdmac.c
2789 F:      drivers/gpio/gpio-uniphier.c
2790 F:      drivers/i2c/busses/i2c-uniphier*
2791 F:      drivers/irqchip/irq-uniphier-aidet.c
2792 F:      drivers/mmc/host/uniphier-sd.c
2793 F:      drivers/pinctrl/uniphier/
2794 F:      drivers/reset/reset-uniphier.c
2795 F:      drivers/tty/serial/8250/8250_uniphier.c
2796 N:      uniphier
2797
2798 ARM/VERSATILE EXPRESS PLATFORM
2799 M:      Liviu Dudau <liviu.dudau@arm.com>
2800 M:      Sudeep Holla <sudeep.holla@arm.com>
2801 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2803 S:      Maintained
2804 F:      */*/*/vexpress*
2805 F:      */*/vexpress*
2806 F:      arch/arm/boot/dts/vexpress*
2807 F:      arch/arm/mach-vexpress/
2808 F:      arch/arm64/boot/dts/arm/
2809 F:      drivers/clk/versatile/clk-vexpress-osc.c
2810 F:      drivers/clocksource/timer-versatile.c
2811 N:      mps2
2812
2813 ARM/VFP SUPPORT
2814 M:      Russell King <linux@armlinux.org.uk>
2815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2816 S:      Maintained
2817 W:      http://www.armlinux.org.uk/
2818 F:      arch/arm/vfp/
2819
2820 ARM/VOIPAC PXA270 SUPPORT
2821 M:      Marek Vasut <marek.vasut@gmail.com>
2822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2823 S:      Maintained
2824 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2825 F:      arch/arm/mach-pxa/vpac270.c
2826
2827 ARM/VT8500 ARM ARCHITECTURE
2828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S:      Orphan
2830 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2831 F:      arch/arm/mach-vt8500/
2832 F:      drivers/clocksource/timer-vt8500.c
2833 F:      drivers/i2c/busses/i2c-wmt.c
2834 F:      drivers/mmc/host/wmt-sdmmc.c
2835 F:      drivers/pwm/pwm-vt8500.c
2836 F:      drivers/rtc/rtc-vt8500.c
2837 F:      drivers/tty/serial/vt8500_serial.c
2838 F:      drivers/usb/host/ehci-platform.c
2839 F:      drivers/usb/host/uhci-platform.c
2840 F:      drivers/video/fbdev/vt8500lcdfb.*
2841 F:      drivers/video/fbdev/wm8505fb*
2842 F:      drivers/video/fbdev/wmt_ge_rops.*
2843
2844 ARM/ZIPIT Z2 SUPPORT
2845 M:      Marek Vasut <marek.vasut@gmail.com>
2846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2847 S:      Maintained
2848 F:      arch/arm/mach-pxa/include/mach/z2.h
2849 F:      arch/arm/mach-pxa/z2.c
2850
2851 ARM/ZYNQ ARCHITECTURE
2852 M:      Michal Simek <michal.simek@xilinx.com>
2853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2854 S:      Supported
2855 W:      http://wiki.xilinx.com
2856 T:      git https://github.com/Xilinx/linux-xlnx.git
2857 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2858 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2859 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2860 F:      arch/arm/mach-zynq/
2861 F:      drivers/clocksource/timer-cadence-ttc.c
2862 F:      drivers/cpuidle/cpuidle-zynq.c
2863 F:      drivers/edac/synopsys_edac.c
2864 F:      drivers/i2c/busses/i2c-cadence.c
2865 F:      drivers/i2c/busses/i2c-xiic.c
2866 F:      drivers/mmc/host/sdhci-of-arasan.c
2867 N:      zynq
2868 N:      xilinx
2869
2870 ARM64 PORT (AARCH64 ARCHITECTURE)
2871 M:      Catalin Marinas <catalin.marinas@arm.com>
2872 M:      Will Deacon <will@kernel.org>
2873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2874 S:      Maintained
2875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2876 F:      Documentation/arm64/
2877 F:      arch/arm64/
2878 F:      tools/testing/selftests/arm64/
2879 X:      arch/arm64/boot/dts/
2880
2881 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2882 M:      George McCollister <george.mccollister@gmail.com>
2883 L:      netdev@vger.kernel.org
2884 S:      Maintained
2885 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2886 F:      drivers/net/dsa/xrs700x/*
2887 F:      net/dsa/tag_xrs700x.c
2888
2889 AS3645A LED FLASH CONTROLLER DRIVER
2890 M:      Sakari Ailus <sakari.ailus@iki.fi>
2891 L:      linux-leds@vger.kernel.org
2892 S:      Maintained
2893 F:      drivers/leds/flash/leds-as3645a.c
2894
2895 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2896 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2897 L:      linux-media@vger.kernel.org
2898 S:      Maintained
2899 T:      git git://linuxtv.org/media_tree.git
2900 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2901 F:      drivers/media/i2c/ak7375.c
2902
2903 ASAHI KASEI AK8974 DRIVER
2904 M:      Linus Walleij <linus.walleij@linaro.org>
2905 L:      linux-iio@vger.kernel.org
2906 S:      Supported
2907 W:      http://www.akm.com/
2908 F:      drivers/iio/magnetometer/ak8974.c
2909
2910 ASC7621 HARDWARE MONITOR DRIVER
2911 M:      George Joseph <george.joseph@fairview5.com>
2912 L:      linux-hwmon@vger.kernel.org
2913 S:      Maintained
2914 F:      Documentation/hwmon/asc7621.rst
2915 F:      drivers/hwmon/asc7621.c
2916
2917 ASIX AX88796C SPI ETHERNET ADAPTER
2918 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2919 S:      Maintained
2920 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2921 F:      drivers/net/ethernet/asix/ax88796c_*
2922
2923 ASPEED PINCTRL DRIVERS
2924 M:      Andrew Jeffery <andrew@aj.id.au>
2925 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2926 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2927 L:      linux-gpio@vger.kernel.org
2928 S:      Maintained
2929 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2930 F:      drivers/pinctrl/aspeed/
2931
2932 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2933 M:      Eddie James <eajames@linux.ibm.com>
2934 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2935 S:      Maintained
2936 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2937 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2938 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2939
2940 ASPEED SD/MMC DRIVER
2941 M:      Andrew Jeffery <andrew@aj.id.au>
2942 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2943 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2944 L:      linux-mmc@vger.kernel.org
2945 S:      Maintained
2946 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2947 F:      drivers/mmc/host/sdhci-of-aspeed*
2948
2949 ASPEED VIDEO ENGINE DRIVER
2950 M:      Eddie James <eajames@linux.ibm.com>
2951 L:      linux-media@vger.kernel.org
2952 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2953 S:      Maintained
2954 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2955 F:      drivers/media/platform/aspeed-video.c
2956
2957 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2958 M:      Corentin Chary <corentin.chary@gmail.com>
2959 L:      acpi4asus-user@lists.sourceforge.net
2960 L:      platform-driver-x86@vger.kernel.org
2961 S:      Maintained
2962 W:      http://acpi4asus.sf.net
2963 F:      drivers/platform/x86/asus*.c
2964 F:      drivers/platform/x86/eeepc*.c
2965
2966 ASUS WIRELESS RADIO CONTROL DRIVER
2967 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2968 L:      platform-driver-x86@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/platform/x86/asus-wireless.c
2971
2972 ASYMMETRIC KEYS
2973 M:      David Howells <dhowells@redhat.com>
2974 L:      keyrings@vger.kernel.org
2975 S:      Maintained
2976 F:      Documentation/crypto/asymmetric-keys.rst
2977 F:      crypto/asymmetric_keys/
2978 F:      include/crypto/pkcs7.h
2979 F:      include/crypto/public_key.h
2980 F:      include/linux/verification.h
2981
2982 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2983 R:      Dan Williams <dan.j.williams@intel.com>
2984 S:      Odd fixes
2985 W:      http://sourceforge.net/projects/xscaleiop
2986 F:      Documentation/crypto/async-tx-api.rst
2987 F:      crypto/async_tx/
2988 F:      include/linux/async_tx.h
2989
2990 AT24 EEPROM DRIVER
2991 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2992 L:      linux-i2c@vger.kernel.org
2993 S:      Maintained
2994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2995 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2996 F:      drivers/misc/eeprom/at24.c
2997
2998 ATA OVER ETHERNET (AOE) DRIVER
2999 M:      "Justin Sanders" <justin@coraid.com>
3000 S:      Supported
3001 W:      http://www.openaoe.org/
3002 F:      Documentation/admin-guide/aoe/
3003 F:      drivers/block/aoe/
3004
3005 ATC260X PMIC MFD DRIVER
3006 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3007 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3008 L:      linux-actions@lists.infradead.org
3009 S:      Maintained
3010 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3011 F:      drivers/input/misc/atc260x-onkey.c
3012 F:      drivers/mfd/atc260*
3013 F:      drivers/power/reset/atc260x-poweroff.c
3014 F:      drivers/regulator/atc260x-regulator.c
3015 F:      include/linux/mfd/atc260x/*
3016
3017 ATHEROS 71XX/9XXX GPIO DRIVER
3018 M:      Alban Bedel <albeu@free.fr>
3019 S:      Maintained
3020 W:      https://github.com/AlbanBedel/linux
3021 T:      git git://github.com/AlbanBedel/linux
3022 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3023 F:      drivers/gpio/gpio-ath79.c
3024
3025 ATHEROS 71XX/9XXX USB PHY DRIVER
3026 M:      Alban Bedel <albeu@free.fr>
3027 S:      Maintained
3028 W:      https://github.com/AlbanBedel/linux
3029 T:      git git://github.com/AlbanBedel/linux
3030 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3031 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3032
3033 ATHEROS ATH GENERIC UTILITIES
3034 M:      Kalle Valo <kvalo@codeaurora.org>
3035 L:      linux-wireless@vger.kernel.org
3036 S:      Supported
3037 F:      drivers/net/wireless/ath/*
3038
3039 ATHEROS ATH5K WIRELESS DRIVER
3040 M:      Jiri Slaby <jirislaby@kernel.org>
3041 M:      Nick Kossifidis <mickflemm@gmail.com>
3042 M:      Luis Chamberlain <mcgrof@kernel.org>
3043 L:      linux-wireless@vger.kernel.org
3044 S:      Maintained
3045 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3046 F:      drivers/net/wireless/ath/ath5k/
3047
3048 ATHEROS ATH6KL WIRELESS DRIVER
3049 M:      Kalle Valo <kvalo@codeaurora.org>
3050 L:      linux-wireless@vger.kernel.org
3051 S:      Supported
3052 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3054 F:      drivers/net/wireless/ath/ath6kl/
3055
3056 ATI_REMOTE2 DRIVER
3057 M:      Ville Syrjala <syrjala@sci.fi>
3058 S:      Maintained
3059 F:      drivers/input/misc/ati_remote2.c
3060
3061 ATK0110 HWMON DRIVER
3062 M:      Luca Tettamanti <kronos.it@gmail.com>
3063 L:      linux-hwmon@vger.kernel.org
3064 S:      Maintained
3065 F:      drivers/hwmon/asus_atk0110.c
3066
3067 ATLX ETHERNET DRIVERS
3068 M:      Chris Snook <chris.snook@gmail.com>
3069 L:      netdev@vger.kernel.org
3070 S:      Maintained
3071 W:      http://sourceforge.net/projects/atl1
3072 W:      http://atl1.sourceforge.net
3073 F:      drivers/net/ethernet/atheros/
3074
3075 ATM
3076 M:      Chas Williams <3chas3@gmail.com>
3077 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3078 L:      netdev@vger.kernel.org
3079 S:      Maintained
3080 W:      http://linux-atm.sourceforge.net
3081 F:      drivers/atm/
3082 F:      include/linux/atm*
3083 F:      include/uapi/linux/atm*
3084
3085 ATMEL MACB ETHERNET DRIVER
3086 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3087 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3088 S:      Supported
3089 F:      drivers/net/ethernet/cadence/
3090
3091 ATMEL MAXTOUCH DRIVER
3092 M:      Nick Dyer <nick@shmanahar.org>
3093 S:      Maintained
3094 T:      git git://github.com/ndyer/linux.git
3095 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3096 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3097
3098 ATMEL WIRELESS DRIVER
3099 M:      Simon Kelley <simon@thekelleys.org.uk>
3100 L:      linux-wireless@vger.kernel.org
3101 S:      Maintained
3102 W:      http://www.thekelleys.org.uk/atmel
3103 W:      http://atmelwlandriver.sourceforge.net/
3104 F:      drivers/net/wireless/atmel/atmel*
3105
3106 ATOMIC INFRASTRUCTURE
3107 M:      Will Deacon <will@kernel.org>
3108 M:      Peter Zijlstra <peterz@infradead.org>
3109 R:      Boqun Feng <boqun.feng@gmail.com>
3110 L:      linux-kernel@vger.kernel.org
3111 S:      Maintained
3112 F:      arch/*/include/asm/atomic*.h
3113 F:      include/*/atomic*.h
3114 F:      include/linux/refcount.h
3115 F:      Documentation/atomic_*.txt
3116 F:      scripts/atomic/
3117
3118 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3119 M:      Bradley Grove <linuxdrivers@attotech.com>
3120 L:      linux-scsi@vger.kernel.org
3121 S:      Supported
3122 W:      http://www.attotech.com
3123 F:      drivers/scsi/esas2r
3124
3125 ATUSB IEEE 802.15.4 RADIO DRIVER
3126 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3127 L:      linux-wpan@vger.kernel.org
3128 S:      Maintained
3129 F:      drivers/net/ieee802154/at86rf230.h
3130 F:      drivers/net/ieee802154/atusb.c
3131 F:      drivers/net/ieee802154/atusb.h
3132
3133 AUDIT SUBSYSTEM
3134 M:      Paul Moore <paul@paul-moore.com>
3135 M:      Eric Paris <eparis@redhat.com>
3136 L:      linux-audit@redhat.com (moderated for non-subscribers)
3137 S:      Supported
3138 W:      https://github.com/linux-audit
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3140 F:      include/asm-generic/audit_*.h
3141 F:      include/linux/audit.h
3142 F:      include/linux/audit_arch.h
3143 F:      include/uapi/linux/audit.h
3144 F:      kernel/audit*
3145 F:      lib/*audit.c
3146
3147 AUXILIARY DISPLAY DRIVERS
3148 M:      Miguel Ojeda <ojeda@kernel.org>
3149 S:      Maintained
3150 F:      drivers/auxdisplay/
3151 F:      include/linux/cfag12864b.h
3152
3153 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3154 M:      Andreas Klinger <ak@it-klinger.de>
3155 L:      linux-iio@vger.kernel.org
3156 S:      Maintained
3157 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3158 F:      drivers/iio/adc/hx711.c
3159
3160 AX.25 NETWORK LAYER
3161 M:      Ralf Baechle <ralf@linux-mips.org>
3162 L:      linux-hams@vger.kernel.org
3163 S:      Maintained
3164 W:      http://www.linux-ax25.org/
3165 F:      include/net/ax25.h
3166 F:      include/uapi/linux/ax25.h
3167 F:      net/ax25/
3168
3169 AXENTIA ARM DEVICES
3170 M:      Peter Rosin <peda@axentia.se>
3171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3172 S:      Maintained
3173 F:      arch/arm/boot/dts/at91-linea.dtsi
3174 F:      arch/arm/boot/dts/at91-natte.dtsi
3175 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3176 F:      arch/arm/boot/dts/at91-tse850-3.dts
3177
3178 AXENTIA ASOC DRIVERS
3179 M:      Peter Rosin <peda@axentia.se>
3180 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3181 S:      Maintained
3182 F:      Documentation/devicetree/bindings/sound/axentia,*
3183 F:      sound/soc/atmel/tse850-pcm5142.c
3184
3185 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3186 M:      Nuno Sá <nuno.sa@analog.com>
3187 L:      linux-hwmon@vger.kernel.org
3188 S:      Supported
3189 W:      http://ez.analog.com/community/linux-device-drivers
3190 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3191 F:      drivers/hwmon/axi-fan-control.c
3192
3193 AXXIA I2C CONTROLLER
3194 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3195 L:      linux-i2c@vger.kernel.org
3196 S:      Maintained
3197 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3198 F:      drivers/i2c/busses/i2c-axxia.c
3199
3200 AZ6007 DVB DRIVER
3201 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3202 L:      linux-media@vger.kernel.org
3203 S:      Maintained
3204 W:      https://linuxtv.org
3205 T:      git git://linuxtv.org/media_tree.git
3206 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3207
3208 AZTECH FM RADIO RECEIVER DRIVER
3209 M:      Hans Verkuil <hverkuil@xs4all.nl>
3210 L:      linux-media@vger.kernel.org
3211 S:      Maintained
3212 W:      https://linuxtv.org
3213 T:      git git://linuxtv.org/media_tree.git
3214 F:      drivers/media/radio/radio-aztech*
3215
3216 B43 WIRELESS DRIVER
3217 L:      linux-wireless@vger.kernel.org
3218 L:      b43-dev@lists.infradead.org
3219 S:      Odd Fixes
3220 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3221 F:      drivers/net/wireless/broadcom/b43/
3222
3223 B43LEGACY WIRELESS DRIVER
3224 M:      Larry Finger <Larry.Finger@lwfinger.net>
3225 L:      linux-wireless@vger.kernel.org
3226 L:      b43-dev@lists.infradead.org
3227 S:      Maintained
3228 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3229 F:      drivers/net/wireless/broadcom/b43legacy/
3230
3231 BACKLIGHT CLASS/SUBSYSTEM
3232 M:      Lee Jones <lee.jones@linaro.org>
3233 M:      Daniel Thompson <daniel.thompson@linaro.org>
3234 M:      Jingoo Han <jingoohan1@gmail.com>
3235 L:      dri-devel@lists.freedesktop.org
3236 S:      Maintained
3237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3238 F:      Documentation/ABI/stable/sysfs-class-backlight
3239 F:      Documentation/ABI/testing/sysfs-class-backlight
3240 F:      Documentation/devicetree/bindings/leds/backlight
3241 F:      drivers/video/backlight/
3242 F:      include/linux/backlight.h
3243 F:      include/linux/pwm_backlight.h
3244
3245 BARCO P50 GPIO DRIVER
3246 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3247 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3248 S:      Maintained
3249 F:      drivers/platform/x86/barco-p50-gpio.c
3250
3251 BATMAN ADVANCED
3252 M:      Marek Lindner <mareklindner@neomailbox.ch>
3253 M:      Simon Wunderlich <sw@simonwunderlich.de>
3254 M:      Antonio Quartulli <a@unstable.cc>
3255 M:      Sven Eckelmann <sven@narfation.org>
3256 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3257 S:      Maintained
3258 W:      https://www.open-mesh.org/
3259 Q:      https://patchwork.open-mesh.org/project/batman/list/
3260 B:      https://www.open-mesh.org/projects/batman-adv/issues
3261 C:      ircs://irc.hackint.org/batadv
3262 T:      git https://git.open-mesh.org/linux-merge.git
3263 F:      Documentation/networking/batman-adv.rst
3264 F:      include/uapi/linux/batadv_packet.h
3265 F:      include/uapi/linux/batman_adv.h
3266 F:      net/batman-adv/
3267
3268 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3269 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3270 L:      linux-hams@vger.kernel.org
3271 S:      Maintained
3272 W:      http://www.baycom.org/~tom/ham/ham.html
3273 F:      drivers/net/hamradio/baycom*
3274
3275 BCACHE (BLOCK LAYER CACHE)
3276 M:      Coly Li <colyli@suse.de>
3277 M:      Kent Overstreet <kent.overstreet@gmail.com>
3278 L:      linux-bcache@vger.kernel.org
3279 S:      Maintained
3280 W:      http://bcache.evilpiepirate.org
3281 C:      irc://irc.oftc.net/bcache
3282 F:      drivers/md/bcache/
3283
3284 BDISP ST MEDIA DRIVER
3285 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3286 L:      linux-media@vger.kernel.org
3287 S:      Supported
3288 W:      https://linuxtv.org
3289 T:      git git://linuxtv.org/media_tree.git
3290 F:      drivers/media/platform/sti/bdisp
3291
3292 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3293 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3294 L:      netdev@vger.kernel.org
3295 S:      Maintained
3296 F:      drivers/net/ethernet/ec_bhf.c
3297
3298 BEFS FILE SYSTEM
3299 M:      Luis de Bethencourt <luisbg@kernel.org>
3300 M:      Salah Triki <salah.triki@gmail.com>
3301 S:      Maintained
3302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3303 F:      Documentation/filesystems/befs.rst
3304 F:      fs/befs/
3305
3306 BFQ I/O SCHEDULER
3307 M:      Paolo Valente <paolo.valente@linaro.org>
3308 M:      Jens Axboe <axboe@kernel.dk>
3309 L:      linux-block@vger.kernel.org
3310 S:      Maintained
3311 F:      Documentation/block/bfq-iosched.rst
3312 F:      block/bfq-*
3313
3314 BFS FILE SYSTEM
3315 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3316 S:      Maintained
3317 F:      Documentation/filesystems/bfs.rst
3318 F:      fs/bfs/
3319 F:      include/uapi/linux/bfs_fs.h
3320
3321 BITMAP API
3322 M:      Yury Norov <yury.norov@gmail.com>
3323 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3324 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3325 S:      Maintained
3326 F:      include/asm-generic/bitops/find.h
3327 F:      include/linux/bitmap.h
3328 F:      lib/bitmap.c
3329 F:      lib/find_bit.c
3330 F:      lib/find_bit_benchmark.c
3331 F:      lib/test_bitmap.c
3332 F:      tools/include/asm-generic/bitops/find.h
3333 F:      tools/include/linux/bitmap.h
3334 F:      tools/lib/bitmap.c
3335 F:      tools/lib/find_bit.c
3336
3337 BLINKM RGB LED DRIVER
3338 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3339 S:      Maintained
3340 F:      drivers/leds/leds-blinkm.c
3341
3342 BLOCK LAYER
3343 M:      Jens Axboe <axboe@kernel.dk>
3344 L:      linux-block@vger.kernel.org
3345 S:      Maintained
3346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3347 F:      block/
3348 F:      drivers/block/
3349 F:      include/linux/blk*
3350 F:      kernel/trace/blktrace.c
3351 F:      lib/sbitmap.c
3352
3353 BLOCK2MTD DRIVER
3354 M:      Joern Engel <joern@lazybastard.org>
3355 L:      linux-mtd@lists.infradead.org
3356 S:      Maintained
3357 F:      drivers/mtd/devices/block2mtd.c
3358
3359 BLUETOOTH DRIVERS
3360 M:      Marcel Holtmann <marcel@holtmann.org>
3361 M:      Johan Hedberg <johan.hedberg@gmail.com>
3362 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3363 L:      linux-bluetooth@vger.kernel.org
3364 S:      Supported
3365 W:      http://www.bluez.org/
3366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3368 F:      drivers/bluetooth/
3369
3370 BLUETOOTH SUBSYSTEM
3371 M:      Marcel Holtmann <marcel@holtmann.org>
3372 M:      Johan Hedberg <johan.hedberg@gmail.com>
3373 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3374 L:      linux-bluetooth@vger.kernel.org
3375 S:      Supported
3376 W:      http://www.bluez.org/
3377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3379 F:      include/net/bluetooth/
3380 F:      net/bluetooth/
3381
3382 BONDING DRIVER
3383 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3384 M:      Veaceslav Falico <vfalico@gmail.com>
3385 M:      Andy Gospodarek <andy@greyhouse.net>
3386 L:      netdev@vger.kernel.org
3387 S:      Supported
3388 W:      http://sourceforge.net/projects/bonding/
3389 F:      drivers/net/bonding/
3390 F:      include/net/bonding.h
3391 F:      include/uapi/linux/if_bonding.h
3392
3393 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3394 M:      Dan Robertson <dan@dlrobertson.com>
3395 L:      linux-iio@vger.kernel.org
3396 S:      Maintained
3397 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3398 F:      drivers/iio/accel/bma400*
3399
3400 BPF (Safe dynamic programs and tools)
3401 M:      Alexei Starovoitov <ast@kernel.org>
3402 M:      Daniel Borkmann <daniel@iogearbox.net>
3403 M:      Andrii Nakryiko <andrii@kernel.org>
3404 R:      Martin KaFai Lau <kafai@fb.com>
3405 R:      Song Liu <songliubraving@fb.com>
3406 R:      Yonghong Song <yhs@fb.com>
3407 R:      John Fastabend <john.fastabend@gmail.com>
3408 R:      KP Singh <kpsingh@kernel.org>
3409 L:      netdev@vger.kernel.org
3410 L:      bpf@vger.kernel.org
3411 S:      Supported
3412 W:      https://bpf.io/
3413 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3416 F:      Documentation/bpf/
3417 F:      Documentation/networking/filter.rst
3418 F:      Documentation/userspace-api/ebpf/
3419 F:      arch/*/net/*
3420 F:      include/linux/bpf*
3421 F:      include/linux/btf*
3422 F:      include/linux/filter.h
3423 F:      include/trace/events/xdp.h
3424 F:      include/uapi/linux/bpf*
3425 F:      include/uapi/linux/btf*
3426 F:      include/uapi/linux/filter.h
3427 F:      kernel/bpf/
3428 F:      kernel/trace/bpf_trace.c
3429 F:      lib/test_bpf.c
3430 F:      net/bpf/
3431 F:      net/core/filter.c
3432 F:      net/sched/act_bpf.c
3433 F:      net/sched/cls_bpf.c
3434 F:      samples/bpf/
3435 F:      scripts/bpf_doc.py
3436 F:      tools/bpf/
3437 F:      tools/lib/bpf/
3438 F:      tools/testing/selftests/bpf/
3439 N:      bpf
3440 K:      bpf
3441
3442 BPF JIT for ARM
3443 M:      Shubham Bansal <illusionist.neo@gmail.com>
3444 L:      netdev@vger.kernel.org
3445 L:      bpf@vger.kernel.org
3446 S:      Maintained
3447 F:      arch/arm/net/
3448
3449 BPF JIT for ARM64
3450 M:      Daniel Borkmann <daniel@iogearbox.net>
3451 M:      Alexei Starovoitov <ast@kernel.org>
3452 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3453 L:      netdev@vger.kernel.org
3454 L:      bpf@vger.kernel.org
3455 S:      Supported
3456 F:      arch/arm64/net/
3457
3458 BPF JIT for MIPS (32-BIT AND 64-BIT)
3459 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3460 M:      Paul Burton <paulburton@kernel.org>
3461 L:      netdev@vger.kernel.org
3462 L:      bpf@vger.kernel.org
3463 S:      Maintained
3464 F:      arch/mips/net/
3465
3466 BPF JIT for NFP NICs
3467 M:      Jakub Kicinski <kuba@kernel.org>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Supported
3471 F:      drivers/net/ethernet/netronome/nfp/bpf/
3472
3473 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3474 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3475 L:      netdev@vger.kernel.org
3476 L:      bpf@vger.kernel.org
3477 S:      Maintained
3478 F:      arch/powerpc/net/
3479
3480 BPF JIT for RISC-V (32-bit)
3481 M:      Luke Nelson <luke.r.nels@gmail.com>
3482 M:      Xi Wang <xi.wang@gmail.com>
3483 L:      netdev@vger.kernel.org
3484 L:      bpf@vger.kernel.org
3485 S:      Maintained
3486 F:      arch/riscv/net/
3487 X:      arch/riscv/net/bpf_jit_comp64.c
3488
3489 BPF JIT for RISC-V (64-bit)
3490 M:      Björn Töpel <bjorn@kernel.org>
3491 L:      netdev@vger.kernel.org
3492 L:      bpf@vger.kernel.org
3493 S:      Maintained
3494 F:      arch/riscv/net/
3495 X:      arch/riscv/net/bpf_jit_comp32.c
3496
3497 BPF JIT for S390
3498 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3499 M:      Heiko Carstens <hca@linux.ibm.com>
3500 M:      Vasily Gorbik <gor@linux.ibm.com>
3501 L:      netdev@vger.kernel.org
3502 L:      bpf@vger.kernel.org
3503 S:      Maintained
3504 F:      arch/s390/net/
3505 X:      arch/s390/net/pnet.c
3506
3507 BPF JIT for SPARC (32-BIT AND 64-BIT)
3508 M:      David S. Miller <davem@davemloft.net>
3509 L:      netdev@vger.kernel.org
3510 L:      bpf@vger.kernel.org
3511 S:      Maintained
3512 F:      arch/sparc/net/
3513
3514 BPF JIT for X86 32-BIT
3515 M:      Wang YanQing <udknight@gmail.com>
3516 L:      netdev@vger.kernel.org
3517 L:      bpf@vger.kernel.org
3518 S:      Maintained
3519 F:      arch/x86/net/bpf_jit_comp32.c
3520
3521 BPF JIT for X86 64-BIT
3522 M:      Alexei Starovoitov <ast@kernel.org>
3523 M:      Daniel Borkmann <daniel@iogearbox.net>
3524 L:      netdev@vger.kernel.org
3525 L:      bpf@vger.kernel.org
3526 S:      Supported
3527 F:      arch/x86/net/
3528 X:      arch/x86/net/bpf_jit_comp32.c
3529
3530 BPF LSM (Security Audit and Enforcement using BPF)
3531 M:      KP Singh <kpsingh@kernel.org>
3532 R:      Florent Revest <revest@chromium.org>
3533 R:      Brendan Jackman <jackmanb@chromium.org>
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      Documentation/bpf/bpf_lsm.rst
3537 F:      include/linux/bpf_lsm.h
3538 F:      kernel/bpf/bpf_lsm.c
3539 F:      security/bpf/
3540
3541 BROADCOM B44 10/100 ETHERNET DRIVER
3542 M:      Michael Chan <michael.chan@broadcom.com>
3543 L:      netdev@vger.kernel.org
3544 S:      Supported
3545 F:      drivers/net/ethernet/broadcom/b44.*
3546
3547 BROADCOM B53 ETHERNET SWITCH DRIVER
3548 M:      Florian Fainelli <f.fainelli@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3551 S:      Supported
3552 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3553 F:      drivers/net/dsa/b53/*
3554 F:      include/linux/dsa/brcm.h
3555 F:      include/linux/platform_data/b53.h
3556
3557 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3558 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3559 L:      bcm-kernel-feedback-list@broadcom.com
3560 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3562 S:      Maintained
3563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3564 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3565 F:      drivers/pci/controller/pcie-brcmstb.c
3566 F:      drivers/staging/vc04_services
3567 N:      bcm2711
3568 N:      bcm283*
3569
3570 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3571 M:      Florian Fainelli <f.fainelli@gmail.com>
3572 M:      Ray Jui <rjui@broadcom.com>
3573 M:      Scott Branden <sbranden@broadcom.com>
3574 M:      bcm-kernel-feedback-list@broadcom.com
3575 S:      Maintained
3576 T:      git git://github.com/broadcom/mach-bcm
3577 F:      arch/arm/mach-bcm/
3578 N:      bcm281*
3579 N:      bcm113*
3580 N:      bcm216*
3581 N:      kona
3582
3583 BROADCOM BCM47XX MIPS ARCHITECTURE
3584 M:      Hauke Mehrtens <hauke@hauke-m.de>
3585 M:      Rafał Miłecki <zajec5@gmail.com>
3586 L:      linux-mips@vger.kernel.org
3587 S:      Maintained
3588 F:      Documentation/devicetree/bindings/mips/brcm/
3589 F:      arch/mips/bcm47xx/*
3590 F:      arch/mips/include/asm/mach-bcm47xx/*
3591
3592 BROADCOM BCM4908 ETHERNET DRIVER
3593 M:      Rafał Miłecki <rafal@milecki.pl>
3594 M:      bcm-kernel-feedback-list@broadcom.com
3595 L:      netdev@vger.kernel.org
3596 S:      Maintained
3597 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3598 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3599 F:      drivers/net/ethernet/broadcom/unimac.h
3600
3601 BROADCOM BCM5301X ARM ARCHITECTURE
3602 M:      Hauke Mehrtens <hauke@hauke-m.de>
3603 M:      Rafał Miłecki <zajec5@gmail.com>
3604 M:      bcm-kernel-feedback-list@broadcom.com
3605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3606 S:      Maintained
3607 F:      arch/arm/boot/dts/bcm470*
3608 F:      arch/arm/boot/dts/bcm5301*
3609 F:      arch/arm/boot/dts/bcm953012*
3610 F:      arch/arm/mach-bcm/bcm_5301x.c
3611
3612 BROADCOM BCM53573 ARM ARCHITECTURE
3613 M:      Rafał Miłecki <rafal@milecki.pl>
3614 L:      bcm-kernel-feedback-list@broadcom.com
3615 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3616 S:      Maintained
3617 F:      arch/arm/boot/dts/bcm47189*
3618 F:      arch/arm/boot/dts/bcm53573*
3619
3620 BROADCOM BCM63XX ARM ARCHITECTURE
3621 M:      Florian Fainelli <f.fainelli@gmail.com>
3622 M:      bcm-kernel-feedback-list@broadcom.com
3623 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3624 S:      Maintained
3625 T:      git git://github.com/broadcom/stblinux.git
3626 N:      bcm63xx
3627
3628 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3629 M:      Kevin Cernekee <cernekee@gmail.com>
3630 L:      linux-usb@vger.kernel.org
3631 S:      Maintained
3632 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3633
3634 BROADCOM BCM7XXX ARM ARCHITECTURE
3635 M:      Florian Fainelli <f.fainelli@gmail.com>
3636 M:      bcm-kernel-feedback-list@broadcom.com
3637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3638 S:      Maintained
3639 T:      git git://github.com/broadcom/stblinux.git
3640 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3641 F:      arch/arm/boot/dts/bcm7*.dts*
3642 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3643 F:      arch/arm/mach-bcm/*brcmstb*
3644 F:      arch/arm/mm/cache-b15-rac.c
3645 F:      drivers/bus/brcmstb_gisb.c
3646 F:      drivers/pci/controller/pcie-brcmstb.c
3647 N:      brcmstb
3648 N:      bcm7038
3649 N:      bcm7120
3650
3651 BROADCOM BDC DRIVER
3652 M:      Al Cooper <alcooperx@gmail.com>
3653 L:      linux-usb@vger.kernel.org
3654 L:      bcm-kernel-feedback-list@broadcom.com
3655 S:      Maintained
3656 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3657 F:      drivers/usb/gadget/udc/bdc/
3658
3659 BROADCOM BMIPS CPUFREQ DRIVER
3660 M:      Markus Mayer <mmayer@broadcom.com>
3661 M:      bcm-kernel-feedback-list@broadcom.com
3662 L:      linux-pm@vger.kernel.org
3663 S:      Maintained
3664 F:      drivers/cpufreq/bmips-cpufreq.c
3665
3666 BROADCOM BMIPS MIPS ARCHITECTURE
3667 M:      Florian Fainelli <f.fainelli@gmail.com>
3668 L:      bcm-kernel-feedback-list@broadcom.com
3669 L:      linux-mips@vger.kernel.org
3670 S:      Maintained
3671 T:      git git://github.com/broadcom/stblinux.git
3672 F:      arch/mips/bmips/*
3673 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3674 F:      arch/mips/include/asm/mach-bmips/*
3675 F:      arch/mips/kernel/*bmips*
3676 F:      drivers/soc/bcm/bcm63xx
3677 F:      drivers/irqchip/irq-bcm63*
3678 F:      drivers/irqchip/irq-bcm7*
3679 F:      drivers/irqchip/irq-brcmstb*
3680 F:      include/linux/bcm963xx_nvram.h
3681 F:      include/linux/bcm963xx_tag.h
3682
3683 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3684 M:      Rasesh Mody <rmody@marvell.com>
3685 M:      GR-Linux-NIC-Dev@marvell.com
3686 L:      netdev@vger.kernel.org
3687 S:      Supported
3688 F:      drivers/net/ethernet/broadcom/bnx2.*
3689 F:      drivers/net/ethernet/broadcom/bnx2_*
3690
3691 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3692 M:      Saurav Kashyap <skashyap@marvell.com>
3693 M:      Javed Hasan <jhasan@marvell.com>
3694 M:      GR-QLogic-Storage-Upstream@marvell.com
3695 L:      linux-scsi@vger.kernel.org
3696 S:      Supported
3697 F:      drivers/scsi/bnx2fc/
3698
3699 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3700 M:      Nilesh Javali <njavali@marvell.com>
3701 M:      Manish Rangankar <mrangankar@marvell.com>
3702 M:      GR-QLogic-Storage-Upstream@marvell.com
3703 L:      linux-scsi@vger.kernel.org
3704 S:      Supported
3705 F:      drivers/scsi/bnx2i/
3706
3707 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3708 M:      Ariel Elior <aelior@marvell.com>
3709 M:      Sudarsana Kalluru <skalluru@marvell.com>
3710 M:      GR-everest-linux-l2@marvell.com
3711 L:      netdev@vger.kernel.org
3712 S:      Supported
3713 F:      drivers/net/ethernet/broadcom/bnx2x/
3714
3715 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3716 M:      Michael Chan <michael.chan@broadcom.com>
3717 L:      netdev@vger.kernel.org
3718 S:      Supported
3719 F:      drivers/net/ethernet/broadcom/bnxt/
3720
3721 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3722 M:      Arend van Spriel <aspriel@gmail.com>
3723 M:      Franky Lin <franky.lin@broadcom.com>
3724 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3725 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3726 M:      Wright Feng <wright.feng@infineon.com>
3727 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3728 L:      linux-wireless@vger.kernel.org
3729 L:      brcm80211-dev-list.pdl@broadcom.com
3730 L:      SHA-cyfmac-dev-list@infineon.com
3731 S:      Supported
3732 F:      drivers/net/wireless/broadcom/brcm80211/
3733
3734 BROADCOM BRCMSTB GPIO DRIVER
3735 M:      Gregory Fong <gregory.0xf0@gmail.com>
3736 L:      bcm-kernel-feedback-list@broadcom.com
3737 S:      Supported
3738 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3739 F:      drivers/gpio/gpio-brcmstb.c
3740
3741 BROADCOM BRCMSTB I2C DRIVER
3742 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3743 L:      linux-i2c@vger.kernel.org
3744 L:      bcm-kernel-feedback-list@broadcom.com
3745 S:      Supported
3746 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3747 F:      drivers/i2c/busses/i2c-brcmstb.c
3748
3749 BROADCOM BRCMSTB UART DRIVER
3750 M:      Al Cooper <alcooperx@gmail.com>
3751 L:      linux-serial@vger.kernel.org
3752 L:      bcm-kernel-feedback-list@broadcom.com
3753 S:      Maintained
3754 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3755 F:      drivers/tty/serial/8250/8250_bcm7271.c
3756
3757 BROADCOM BRCMSTB USB EHCI DRIVER
3758 M:      Al Cooper <alcooperx@gmail.com>
3759 L:      linux-usb@vger.kernel.org
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Maintained
3762 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3763 F:      drivers/usb/host/ehci-brcm.*
3764
3765 BROADCOM BRCMSTB USB PIN MAP DRIVER
3766 M:      Al Cooper <alcooperx@gmail.com>
3767 L:      linux-usb@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Maintained
3770 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3771 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3772
3773 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-kernel@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      drivers/phy/broadcom/phy-brcm-usb*
3779
3780 BROADCOM ETHERNET PHY DRIVERS
3781 M:      Florian Fainelli <f.fainelli@gmail.com>
3782 L:      bcm-kernel-feedback-list@broadcom.com
3783 L:      netdev@vger.kernel.org
3784 S:      Supported
3785 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3786 F:      drivers/net/phy/bcm*.[ch]
3787 F:      drivers/net/phy/broadcom.c
3788 F:      include/linux/brcmphy.h
3789
3790 BROADCOM GENET ETHERNET DRIVER
3791 M:      Doug Berger <opendmb@gmail.com>
3792 M:      Florian Fainelli <f.fainelli@gmail.com>
3793 L:      bcm-kernel-feedback-list@broadcom.com
3794 L:      netdev@vger.kernel.org
3795 S:      Supported
3796 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3797 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3798 F:      drivers/net/ethernet/broadcom/genet/
3799 F:      drivers/net/ethernet/broadcom/unimac.h
3800 F:      drivers/net/mdio/mdio-bcm-unimac.c
3801 F:      include/linux/platform_data/bcmgenet.h
3802 F:      include/linux/platform_data/mdio-bcm-unimac.h
3803
3804 BROADCOM IPROC ARM ARCHITECTURE
3805 M:      Ray Jui <rjui@broadcom.com>
3806 M:      Scott Branden <sbranden@broadcom.com>
3807 M:      bcm-kernel-feedback-list@broadcom.com
3808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3809 S:      Maintained
3810 T:      git git://github.com/broadcom/cygnus-linux.git
3811 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3812 F:      arch/arm64/boot/dts/broadcom/stingray/*
3813 F:      drivers/clk/bcm/clk-ns*
3814 F:      drivers/clk/bcm/clk-sr*
3815 F:      drivers/pinctrl/bcm/pinctrl-ns*
3816 F:      include/dt-bindings/clock/bcm-sr*
3817 N:      iproc
3818 N:      cygnus
3819 N:      bcm[-_]nsp
3820 N:      bcm9113*
3821 N:      bcm9583*
3822 N:      bcm9585*
3823 N:      bcm9586*
3824 N:      bcm988312
3825 N:      bcm113*
3826 N:      bcm583*
3827 N:      bcm585*
3828 N:      bcm586*
3829 N:      bcm88312
3830 N:      hr2
3831 N:      stingray
3832
3833 BROADCOM IPROC GBIT ETHERNET DRIVER
3834 M:      Rafał Miłecki <rafal@milecki.pl>
3835 M:      bcm-kernel-feedback-list@broadcom.com
3836 L:      netdev@vger.kernel.org
3837 S:      Maintained
3838 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3839 F:      drivers/net/ethernet/broadcom/bgmac*
3840 F:      drivers/net/ethernet/broadcom/unimac.h
3841
3842 BROADCOM KONA GPIO DRIVER
3843 M:      Ray Jui <rjui@broadcom.com>
3844 L:      bcm-kernel-feedback-list@broadcom.com
3845 S:      Supported
3846 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3847 F:      drivers/gpio/gpio-bcm-kona.c
3848
3849 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3850 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3851 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3852 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3853 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3854 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3855 L:      linux-scsi@vger.kernel.org
3856 S:      Supported
3857 W:      https://www.broadcom.com/support/storage
3858 F:      drivers/scsi/mpi3mr/
3859
3860 BROADCOM NETXTREME-E ROCE DRIVER
3861 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3862 L:      linux-rdma@vger.kernel.org
3863 S:      Supported
3864 W:      http://www.broadcom.com
3865 F:      drivers/infiniband/hw/bnxt_re/
3866 F:      include/uapi/rdma/bnxt_re-abi.h
3867
3868 BROADCOM NVRAM DRIVER
3869 M:      Rafał Miłecki <zajec5@gmail.com>
3870 L:      linux-mips@vger.kernel.org
3871 S:      Maintained
3872 F:      drivers/firmware/broadcom/*
3873
3874 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3875 M:      Rafał Miłecki <rafal@milecki.pl>
3876 M:      Florian Fainelli <f.fainelli@gmail.com>
3877 M:      bcm-kernel-feedback-list@broadcom.com
3878 L:      linux-pm@vger.kernel.org
3879 S:      Maintained
3880 T:      git git://github.com/broadcom/stblinux.git
3881 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3882 F:      include/dt-bindings/soc/bcm-pmb.h
3883
3884 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3885 M:      Rafał Miłecki <zajec5@gmail.com>
3886 L:      linux-wireless@vger.kernel.org
3887 S:      Maintained
3888 F:      drivers/bcma/
3889 F:      include/linux/bcma/
3890
3891 BROADCOM SPI DRIVER
3892 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3893 M:      bcm-kernel-feedback-list@broadcom.com
3894 S:      Maintained
3895 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3896 F:      drivers/spi/spi-bcm-qspi.*
3897 F:      drivers/spi/spi-brcmstb-qspi.c
3898 F:      drivers/spi/spi-iproc-qspi.c
3899
3900 BROADCOM STB AVS CPUFREQ DRIVER
3901 M:      Markus Mayer <mmayer@broadcom.com>
3902 M:      bcm-kernel-feedback-list@broadcom.com
3903 L:      linux-pm@vger.kernel.org
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3906 F:      drivers/cpufreq/brcmstb*
3907
3908 BROADCOM STB AVS TMON DRIVER
3909 M:      Markus Mayer <mmayer@broadcom.com>
3910 M:      bcm-kernel-feedback-list@broadcom.com
3911 L:      linux-pm@vger.kernel.org
3912 S:      Maintained
3913 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3914 F:      drivers/thermal/broadcom/brcmstb*
3915
3916 BROADCOM STB DPFE DRIVER
3917 M:      Markus Mayer <mmayer@broadcom.com>
3918 M:      bcm-kernel-feedback-list@broadcom.com
3919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3920 S:      Maintained
3921 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3922 F:      drivers/memory/brcmstb_dpfe.c
3923
3924 BROADCOM STB NAND FLASH DRIVER
3925 M:      Brian Norris <computersforpeace@gmail.com>
3926 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3927 L:      linux-mtd@lists.infradead.org
3928 L:      bcm-kernel-feedback-list@broadcom.com
3929 S:      Maintained
3930 F:      drivers/mtd/nand/raw/brcmnand/
3931
3932 BROADCOM STB PCIE DRIVER
3933 M:      Jim Quinlan <jim2101024@gmail.com>
3934 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3935 M:      Florian Fainelli <f.fainelli@gmail.com>
3936 M:      bcm-kernel-feedback-list@broadcom.com
3937 L:      linux-pci@vger.kernel.org
3938 S:      Maintained
3939 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3940 F:      drivers/pci/controller/pcie-brcmstb.c
3941
3942 BROADCOM SYSTEMPORT ETHERNET DRIVER
3943 M:      Florian Fainelli <f.fainelli@gmail.com>
3944 L:      bcm-kernel-feedback-list@broadcom.com
3945 L:      netdev@vger.kernel.org
3946 S:      Supported
3947 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3948 F:      drivers/net/ethernet/broadcom/unimac.h
3949
3950 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3951 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3952 M:      Prashant Sreedharan <prashant@broadcom.com>
3953 M:      Michael Chan <mchan@broadcom.com>
3954 L:      netdev@vger.kernel.org
3955 S:      Supported
3956 F:      drivers/net/ethernet/broadcom/tg3.*
3957
3958 BROADCOM VK DRIVER
3959 M:      Scott Branden <scott.branden@broadcom.com>
3960 L:      bcm-kernel-feedback-list@broadcom.com
3961 S:      Supported
3962 F:      drivers/misc/bcm-vk/
3963 F:      include/uapi/linux/misc/bcm_vk.h
3964
3965 BROCADE BFA FC SCSI DRIVER
3966 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3967 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3968 L:      linux-scsi@vger.kernel.org
3969 S:      Supported
3970 F:      drivers/scsi/bfa/
3971
3972 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3973 M:      Rasesh Mody <rmody@marvell.com>
3974 M:      Sudarsana Kalluru <skalluru@marvell.com>
3975 M:      GR-Linux-NIC-Dev@marvell.com
3976 L:      netdev@vger.kernel.org
3977 S:      Supported
3978 F:      drivers/net/ethernet/brocade/bna/
3979
3980 BSG (block layer generic sg v4 driver)
3981 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3982 L:      linux-scsi@vger.kernel.org
3983 S:      Supported
3984 F:      block/bsg.c
3985 F:      include/linux/bsg.h
3986 F:      include/uapi/linux/bsg.h
3987
3988 BT87X AUDIO DRIVER
3989 M:      Clemens Ladisch <clemens@ladisch.de>
3990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3991 S:      Maintained
3992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3993 F:      Documentation/sound/cards/bt87x.rst
3994 F:      sound/pci/bt87x.c
3995
3996 BT8XXGPIO DRIVER
3997 M:      Michael Buesch <m@bues.ch>
3998 S:      Maintained
3999 W:      http://bu3sch.de/btgpio.php
4000 F:      drivers/gpio/gpio-bt8xx.c
4001
4002 BTRFS FILE SYSTEM
4003 M:      Chris Mason <clm@fb.com>
4004 M:      Josef Bacik <josef@toxicpanda.com>
4005 M:      David Sterba <dsterba@suse.com>
4006 L:      linux-btrfs@vger.kernel.org
4007 S:      Maintained
4008 W:      http://btrfs.wiki.kernel.org/
4009 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4010 C:      irc://irc.libera.chat/btrfs
4011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4012 F:      Documentation/filesystems/btrfs.rst
4013 F:      fs/btrfs/
4014 F:      include/linux/btrfs*
4015 F:      include/uapi/linux/btrfs*
4016
4017 BTTV VIDEO4LINUX DRIVER
4018 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4019 L:      linux-media@vger.kernel.org
4020 S:      Odd fixes
4021 W:      https://linuxtv.org
4022 T:      git git://linuxtv.org/media_tree.git
4023 F:      Documentation/driver-api/media/drivers/bttv*
4024 F:      drivers/media/pci/bt8xx/bttv*
4025
4026 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4027 M:      Chanwoo Choi <cw00.choi@samsung.com>
4028 L:      linux-pm@vger.kernel.org
4029 L:      linux-samsung-soc@vger.kernel.org
4030 S:      Maintained
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4032 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4033 F:      drivers/devfreq/exynos-bus.c
4034
4035 BUSLOGIC SCSI DRIVER
4036 M:      Khalid Aziz <khalid@gonehiking.org>
4037 L:      linux-scsi@vger.kernel.org
4038 S:      Maintained
4039 F:      drivers/scsi/BusLogic.*
4040 F:      drivers/scsi/FlashPoint.*
4041
4042 C-MEDIA CMI8788 DRIVER
4043 M:      Clemens Ladisch <clemens@ladisch.de>
4044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4045 S:      Maintained
4046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4047 F:      sound/pci/oxygen/
4048
4049 C-SKY ARCHITECTURE
4050 M:      Guo Ren <guoren@kernel.org>
4051 L:      linux-csky@vger.kernel.org
4052 S:      Supported
4053 T:      git https://github.com/c-sky/csky-linux.git
4054 F:      Documentation/devicetree/bindings/csky/
4055 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4056 F:      Documentation/devicetree/bindings/timer/csky,*
4057 F:      arch/csky/
4058 F:      drivers/clocksource/timer-gx6605s.c
4059 F:      drivers/clocksource/timer-mp-csky.c
4060 F:      drivers/irqchip/irq-csky-*
4061 N:      csky
4062 K:      csky
4063
4064 CA8210 IEEE-802.15.4 RADIO DRIVER
4065 M:      Harry Morris <h.morris@cascoda.com>
4066 L:      linux-wpan@vger.kernel.org
4067 S:      Maintained
4068 W:      https://github.com/Cascoda/ca8210-linux.git
4069 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4070 F:      drivers/net/ieee802154/ca8210.c
4071
4072 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4073 M:      Damien Le Moal <damien.lemoal@wdc.com>
4074 L:      linux-riscv@lists.infradead.org
4075 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4076 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4077 F:      drivers/pinctrl/pinctrl-k210.c
4078
4079 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4080 M:      Damien Le Moal <damien.lemoal@wdc.com>
4081 L:      linux-kernel@vger.kernel.org
4082 L:      linux-riscv@lists.infradead.org
4083 S:      Maintained
4084 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4085 F:      drivers/reset/reset-k210.c
4086
4087 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4088 M:      Damien Le Moal <damien.lemoal@wdc.com>
4089 L:      linux-riscv@lists.infradead.org
4090 S:      Maintained
4091 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4092 F:      drivers/soc/canaan/
4093 F:      include/soc/canaan/
4094
4095 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4096 M:      David Howells <dhowells@redhat.com>
4097 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4098 S:      Supported
4099 F:      Documentation/filesystems/caching/cachefiles.rst
4100 F:      fs/cachefiles/
4101
4102 CADENCE MIPI-CSI2 BRIDGES
4103 M:      Maxime Ripard <mripard@kernel.org>
4104 L:      linux-media@vger.kernel.org
4105 S:      Maintained
4106 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4107 F:      drivers/media/platform/cadence/cdns-csi2*
4108
4109 CADENCE NAND DRIVER
4110 L:      linux-mtd@lists.infradead.org
4111 S:      Orphan
4112 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4113 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4114
4115 CADENCE USB3 DRD IP DRIVER
4116 M:      Peter Chen <peter.chen@kernel.org>
4117 M:      Pawel Laszczak <pawell@cadence.com>
4118 R:      Roger Quadros <rogerq@kernel.org>
4119 R:      Aswath Govindraju <a-govindraju@ti.com>
4120 L:      linux-usb@vger.kernel.org
4121 S:      Maintained
4122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4123 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4124 F:      drivers/usb/cdns3/
4125 X:      drivers/usb/cdns3/cdnsp*
4126
4127 CADENCE USBSSP DRD IP DRIVER
4128 M:      Pawel Laszczak <pawell@cadence.com>
4129 L:      linux-usb@vger.kernel.org
4130 S:      Maintained
4131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4132 F:      drivers/usb/cdns3/
4133 X:      drivers/usb/cdns3/cdns3*
4134
4135 CADET FM/AM RADIO RECEIVER DRIVER
4136 M:      Hans Verkuil <hverkuil@xs4all.nl>
4137 L:      linux-media@vger.kernel.org
4138 S:      Maintained
4139 W:      https://linuxtv.org
4140 T:      git git://linuxtv.org/media_tree.git
4141 F:      drivers/media/radio/radio-cadet*
4142
4143 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4144 L:      linux-media@vger.kernel.org
4145 S:      Orphan
4146 T:      git git://linuxtv.org/media_tree.git
4147 F:      Documentation/admin-guide/media/cafe_ccic*
4148 F:      drivers/media/platform/marvell-ccic/
4149
4150 CAIF NETWORK LAYER
4151 L:      netdev@vger.kernel.org
4152 S:      Orphan
4153 F:      Documentation/networking/caif/
4154 F:      drivers/net/caif/
4155 F:      include/net/caif/
4156 F:      include/uapi/linux/caif/
4157 F:      net/caif/
4158
4159 CAKE QDISC
4160 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4161 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4162 S:      Maintained
4163 F:      net/sched/sch_cake.c
4164
4165 CAN NETWORK DRIVERS
4166 M:      Wolfgang Grandegger <wg@grandegger.com>
4167 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4168 L:      linux-can@vger.kernel.org
4169 S:      Maintained
4170 W:      https://github.com/linux-can
4171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4173 F:      Documentation/devicetree/bindings/net/can/
4174 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4175 F:      drivers/net/can/
4176 F:      drivers/phy/phy-can-transceiver.c
4177 F:      include/linux/can/bittiming.h
4178 F:      include/linux/can/dev.h
4179 F:      include/linux/can/led.h
4180 F:      include/linux/can/length.h
4181 F:      include/linux/can/platform/
4182 F:      include/linux/can/rx-offload.h
4183 F:      include/uapi/linux/can/error.h
4184 F:      include/uapi/linux/can/netlink.h
4185 F:      include/uapi/linux/can/vxcan.h
4186
4187 CAN NETWORK LAYER
4188 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4189 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4190 L:      linux-can@vger.kernel.org
4191 S:      Maintained
4192 W:      https://github.com/linux-can
4193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4195 F:      Documentation/networking/can.rst
4196 F:      include/linux/can/can-ml.h
4197 F:      include/linux/can/core.h
4198 F:      include/linux/can/skb.h
4199 F:      include/net/netns/can.h
4200 F:      include/uapi/linux/can.h
4201 F:      include/uapi/linux/can/bcm.h
4202 F:      include/uapi/linux/can/gw.h
4203 F:      include/uapi/linux/can/isotp.h
4204 F:      include/uapi/linux/can/raw.h
4205 F:      net/can/
4206
4207 CAN-J1939 NETWORK LAYER
4208 M:      Robin van der Gracht <robin@protonic.nl>
4209 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4210 R:      kernel@pengutronix.de
4211 L:      linux-can@vger.kernel.org
4212 S:      Maintained
4213 F:      Documentation/networking/j1939.rst
4214 F:      include/uapi/linux/can/j1939.h
4215 F:      net/can/j1939/
4216
4217 CAPABILITIES
4218 M:      Serge Hallyn <serge@hallyn.com>
4219 L:      linux-security-module@vger.kernel.org
4220 S:      Supported
4221 F:      include/linux/capability.h
4222 F:      include/uapi/linux/capability.h
4223 F:      kernel/capability.c
4224 F:      security/commoncap.c
4225
4226 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4227 M:      Kevin Tsai <ktsai@capellamicro.com>
4228 S:      Maintained
4229 F:      drivers/iio/light/cm*
4230
4231 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4232 M:      Christian Lamparter <chunkeey@googlemail.com>
4233 L:      linux-wireless@vger.kernel.org
4234 S:      Maintained
4235 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4236 F:      drivers/net/wireless/ath/carl9170/
4237
4238 CAVIUM I2C DRIVER
4239 M:      Robert Richter <rric@kernel.org>
4240 S:      Odd Fixes
4241 W:      http://www.marvell.com
4242 F:      drivers/i2c/busses/i2c-octeon*
4243 F:      drivers/i2c/busses/i2c-thunderx*
4244
4245 CAVIUM LIQUIDIO NETWORK DRIVER
4246 M:      Derek Chickles <dchickles@marvell.com>
4247 M:      Satanand Burla <sburla@marvell.com>
4248 M:      Felix Manlunas <fmanlunas@marvell.com>
4249 L:      netdev@vger.kernel.org
4250 S:      Supported
4251 W:      http://www.marvell.com
4252 F:      drivers/net/ethernet/cavium/liquidio/
4253
4254 CAVIUM MMC DRIVER
4255 M:      Robert Richter <rric@kernel.org>
4256 S:      Odd Fixes
4257 W:      http://www.marvell.com
4258 F:      drivers/mmc/host/cavium*
4259
4260 CAVIUM OCTEON-TX CRYPTO DRIVER
4261 M:      George Cherian <gcherian@marvell.com>
4262 L:      linux-crypto@vger.kernel.org
4263 S:      Supported
4264 W:      http://www.marvell.com
4265 F:      drivers/crypto/cavium/cpt/
4266
4267 CAVIUM THUNDERX2 ARM64 SOC
4268 M:      Robert Richter <rric@kernel.org>
4269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4270 S:      Odd Fixes
4271 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4272 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4273
4274 CBS/ETF/TAPRIO QDISCS
4275 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4276 S:      Maintained
4277 L:      netdev@vger.kernel.org
4278 F:      net/sched/sch_cbs.c
4279 F:      net/sched/sch_etf.c
4280 F:      net/sched/sch_taprio.c
4281
4282 CC2520 IEEE-802.15.4 RADIO DRIVER
4283 M:      Varka Bhadram <varkabhadram@gmail.com>
4284 L:      linux-wpan@vger.kernel.org
4285 S:      Maintained
4286 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4287 F:      drivers/net/ieee802154/cc2520.c
4288 F:      include/linux/spi/cc2520.h
4289
4290 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4291 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4292 L:      linux-crypto@vger.kernel.org
4293 S:      Supported
4294 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4295 F:      drivers/crypto/ccree/
4296
4297 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4298 M:      Hadar Gat <hadar.gat@arm.com>
4299 L:      linux-crypto@vger.kernel.org
4300 S:      Supported
4301 F:      drivers/char/hw_random/cctrng.c
4302 F:      drivers/char/hw_random/cctrng.h
4303 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305
4306 CEC FRAMEWORK
4307 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4308 L:      linux-media@vger.kernel.org
4309 S:      Supported
4310 W:      http://linuxtv.org
4311 T:      git git://linuxtv.org/media_tree.git
4312 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4313 F:      Documentation/devicetree/bindings/media/cec.txt
4314 F:      Documentation/driver-api/media/cec-core.rst
4315 F:      Documentation/userspace-api/media/cec
4316 F:      drivers/media/cec/
4317 F:      drivers/media/rc/keymaps/rc-cec.c
4318 F:      include/media/cec-notifier.h
4319 F:      include/media/cec.h
4320 F:      include/uapi/linux/cec-funcs.h
4321 F:      include/uapi/linux/cec.h
4322
4323 CEC GPIO DRIVER
4324 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4325 L:      linux-media@vger.kernel.org
4326 S:      Supported
4327 W:      http://linuxtv.org
4328 T:      git git://linuxtv.org/media_tree.git
4329 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4330 F:      drivers/media/cec/platform/cec-gpio/
4331
4332 CELL BROADBAND ENGINE ARCHITECTURE
4333 M:      Arnd Bergmann <arnd@arndb.de>
4334 L:      linuxppc-dev@lists.ozlabs.org
4335 S:      Supported
4336 W:      http://www.ibm.com/developerworks/power/cell/
4337 F:      arch/powerpc/include/asm/cell*.h
4338 F:      arch/powerpc/include/asm/spu*.h
4339 F:      arch/powerpc/include/uapi/asm/spu*.h
4340 F:      arch/powerpc/platforms/cell/
4341
4342 CELLWISE CW2015 BATTERY DRIVER
4343 M:      Tobias Schrammm <t.schramm@manjaro.org>
4344 S:      Maintained
4345 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4346 F:      drivers/power/supply/cw2015_battery.c
4347
4348 CEPH COMMON CODE (LIBCEPH)
4349 M:      Ilya Dryomov <idryomov@gmail.com>
4350 M:      Jeff Layton <jlayton@kernel.org>
4351 L:      ceph-devel@vger.kernel.org
4352 S:      Supported
4353 W:      http://ceph.com/
4354 T:      git git://github.com/ceph/ceph-client.git
4355 F:      include/linux/ceph/
4356 F:      include/linux/crush/
4357 F:      net/ceph/
4358
4359 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 M:      Ilya Dryomov <idryomov@gmail.com>
4362 L:      ceph-devel@vger.kernel.org
4363 S:      Supported
4364 W:      http://ceph.com/
4365 T:      git git://github.com/ceph/ceph-client.git
4366 F:      Documentation/filesystems/ceph.rst
4367 F:      fs/ceph/
4368
4369 CERTIFICATE HANDLING
4370 M:      David Howells <dhowells@redhat.com>
4371 M:      David Woodhouse <dwmw2@infradead.org>
4372 L:      keyrings@vger.kernel.org
4373 S:      Maintained
4374 F:      Documentation/admin-guide/module-signing.rst
4375 F:      certs/
4376 F:      scripts/extract-cert.c
4377 F:      scripts/sign-file.c
4378
4379 CFAG12864B LCD DRIVER
4380 M:      Miguel Ojeda <ojeda@kernel.org>
4381 S:      Maintained
4382 F:      drivers/auxdisplay/cfag12864b.c
4383 F:      include/linux/cfag12864b.h
4384
4385 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4386 M:      Miguel Ojeda <ojeda@kernel.org>
4387 S:      Maintained
4388 F:      drivers/auxdisplay/cfag12864bfb.c
4389 F:      include/linux/cfag12864b.h
4390
4391 CHAR and MISC DRIVERS
4392 M:      Arnd Bergmann <arnd@arndb.de>
4393 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4394 S:      Supported
4395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4396 F:      drivers/char/
4397 F:      drivers/misc/
4398 F:      include/linux/miscdevice.h
4399 X:      drivers/char/agp/
4400 X:      drivers/char/hw_random/
4401 X:      drivers/char/ipmi/
4402 X:      drivers/char/random.c
4403 X:      drivers/char/tpm/
4404
4405 CHECKPATCH
4406 M:      Andy Whitcroft <apw@canonical.com>
4407 M:      Joe Perches <joe@perches.com>
4408 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4409 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4410 S:      Maintained
4411 F:      scripts/checkpatch.pl
4412
4413 CHECKPATCH DOCUMENTATION
4414 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4415 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4416 R:      Joe Perches <joe@perches.com>
4417 S:      Maintained
4418 F:      Documentation/dev-tools/checkpatch.rst
4419
4420 CHINESE DOCUMENTATION
4421 M:      Alex Shi <alexs@kernel.org>
4422 S:      Maintained
4423 F:      Documentation/translations/zh_CN/
4424
4425 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4426 M:      Peter Chen <peter.chen@kernel.org>
4427 L:      linux-usb@vger.kernel.org
4428 S:      Maintained
4429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4430 F:      drivers/usb/chipidea/
4431
4432 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4433 M:      Hans de Goede <hdegoede@redhat.com>
4434 L:      linux-input@vger.kernel.org
4435 S:      Maintained
4436 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4437 F:      drivers/input/touchscreen/chipone_icn8318.c
4438
4439 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4440 M:      Hans de Goede <hdegoede@redhat.com>
4441 L:      linux-input@vger.kernel.org
4442 S:      Maintained
4443 F:      drivers/input/touchscreen/chipone_icn8505.c
4444
4445 CHROME HARDWARE PLATFORM SUPPORT
4446 M:      Benson Leung <bleung@chromium.org>
4447 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4448 S:      Maintained
4449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4450 F:      drivers/platform/chrome/
4451
4452 CHROMEOS EC CODEC DRIVER
4453 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4454 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4455 R:      Guenter Roeck <groeck@chromium.org>
4456 S:      Maintained
4457 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4458 F:      sound/soc/codecs/cros_ec_codec.*
4459
4460 CHROMEOS EC SUBDRIVERS
4461 M:      Benson Leung <bleung@chromium.org>
4462 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4463 R:      Guenter Roeck <groeck@chromium.org>
4464 S:      Maintained
4465 F:      drivers/power/supply/cros_usbpd-charger.c
4466 N:      cros_ec
4467 N:      cros-ec
4468
4469 CHRONTEL CH7322 CEC DRIVER
4470 M:      Joe Tessler <jrt@google.com>
4471 L:      linux-media@vger.kernel.org
4472 S:      Maintained
4473 T:      git git://linuxtv.org/media_tree.git
4474 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4475 F:      drivers/media/cec/i2c/ch7322.c
4476
4477 CIRRUS LOGIC AUDIO CODEC DRIVERS
4478 M:      James Schulman <james.schulman@cirrus.com>
4479 M:      David Rhodes <david.rhodes@cirrus.com>
4480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4481 L:      patches@opensource.cirrus.com
4482 S:      Maintained
4483 F:      sound/soc/codecs/cs*
4484
4485 CIRRUS LOGIC DSP FIRMWARE DRIVER
4486 M:      Simon Trimmer <simont@opensource.cirrus.com>
4487 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4488 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4489 L:      patches@opensource.cirrus.com
4490 S:      Supported
4491 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4492 T:      git https://github.com/CirrusLogic/linux-drivers.git
4493 F:      drivers/firmware/cirrus/*
4494 F:      include/linux/firmware/cirrus/*
4495
4496 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4497 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4498 L:      netdev@vger.kernel.org
4499 S:      Maintained
4500 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4501
4502 CIRRUS LOGIC LOCHNAGAR DRIVER
4503 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4504 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4505 L:      patches@opensource.cirrus.com
4506 S:      Supported
4507 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4511 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4512 F:      Documentation/hwmon/lochnagar.rst
4513 F:      drivers/clk/clk-lochnagar.c
4514 F:      drivers/hwmon/lochnagar-hwmon.c
4515 F:      drivers/mfd/lochnagar-i2c.c
4516 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4517 F:      drivers/regulator/lochnagar-regulator.c
4518 F:      include/dt-bindings/clk/lochnagar.h
4519 F:      include/dt-bindings/pinctrl/lochnagar.h
4520 F:      include/linux/mfd/lochnagar*
4521 F:      sound/soc/codecs/lochnagar-sc.c
4522
4523 CIRRUS LOGIC MADERA CODEC DRIVERS
4524 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4525 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4527 L:      patches@opensource.cirrus.com
4528 S:      Supported
4529 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4530 T:      git https://github.com/CirrusLogic/linux-drivers.git
4531 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4533 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4534 F:      drivers/gpio/gpio-madera*
4535 F:      drivers/irqchip/irq-madera*
4536 F:      drivers/mfd/cs47l*
4537 F:      drivers/mfd/madera*
4538 F:      drivers/pinctrl/cirrus/*
4539 F:      include/dt-bindings/sound/madera*
4540 F:      include/linux/irqchip/irq-madera*
4541 F:      include/linux/mfd/madera/*
4542 F:      include/sound/madera*
4543 F:      sound/soc/codecs/cs47l*
4544 F:      sound/soc/codecs/madera*
4545
4546 CISCO FCOE HBA DRIVER
4547 M:      Satish Kharat <satishkh@cisco.com>
4548 M:      Sesidhar Baddela <sebaddel@cisco.com>
4549 M:      Karan Tilak Kumar <kartilak@cisco.com>
4550 L:      linux-scsi@vger.kernel.org
4551 S:      Supported
4552 F:      drivers/scsi/fnic/
4553
4554 CISCO SCSI HBA DRIVER
4555 M:      Karan Tilak Kumar <kartilak@cisco.com>
4556 M:      Sesidhar Baddela <sebaddel@cisco.com>
4557 L:      linux-scsi@vger.kernel.org
4558 S:      Supported
4559 F:      drivers/scsi/snic/
4560
4561 CISCO VIC ETHERNET NIC DRIVER
4562 M:      Christian Benvenuti <benve@cisco.com>
4563 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4564 S:      Supported
4565 F:      drivers/net/ethernet/cisco/enic/
4566
4567 CISCO VIC LOW LATENCY NIC DRIVER
4568 M:      Christian Benvenuti <benve@cisco.com>
4569 M:      Nelson Escobar <neescoba@cisco.com>
4570 S:      Supported
4571 F:      drivers/infiniband/hw/usnic/
4572
4573 CLANG-FORMAT FILE
4574 M:      Miguel Ojeda <ojeda@kernel.org>
4575 S:      Maintained
4576 F:      .clang-format
4577
4578 CLANG/LLVM BUILD SUPPORT
4579 M:      Nathan Chancellor <nathan@kernel.org>
4580 M:      Nick Desaulniers <ndesaulniers@google.com>
4581 L:      llvm@lists.linux.dev
4582 S:      Supported
4583 W:      https://clangbuiltlinux.github.io/
4584 B:      https://github.com/ClangBuiltLinux/linux/issues
4585 C:      irc://irc.libera.chat/clangbuiltlinux
4586 F:      Documentation/kbuild/llvm.rst
4587 F:      include/linux/compiler-clang.h
4588 F:      scripts/Makefile.clang
4589 F:      scripts/clang-tools/
4590 K:      \b(?i:clang|llvm)\b
4591
4592 CLANG CONTROL FLOW INTEGRITY SUPPORT
4593 M:      Sami Tolvanen <samitolvanen@google.com>
4594 M:      Kees Cook <keescook@chromium.org>
4595 R:      Nathan Chancellor <nathan@kernel.org>
4596 R:      Nick Desaulniers <ndesaulniers@google.com>
4597 L:      llvm@lists.linux.dev
4598 S:      Supported
4599 B:      https://github.com/ClangBuiltLinux/linux/issues
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4601 F:      include/linux/cfi.h
4602 F:      kernel/cfi.c
4603
4604 CLEANCACHE API
4605 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4606 L:      linux-kernel@vger.kernel.org
4607 S:      Maintained
4608 F:      include/linux/cleancache.h
4609 F:      mm/cleancache.c
4610
4611 CLK API
4612 M:      Russell King <linux@armlinux.org.uk>
4613 L:      linux-clk@vger.kernel.org
4614 S:      Maintained
4615 F:      include/linux/clk.h
4616
4617 CLOCKSOURCE, CLOCKEVENT DRIVERS
4618 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4619 M:      Thomas Gleixner <tglx@linutronix.de>
4620 L:      linux-kernel@vger.kernel.org
4621 S:      Supported
4622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4623 F:      Documentation/devicetree/bindings/timer/
4624 F:      drivers/clocksource/
4625
4626 CMPC ACPI DRIVER
4627 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4628 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4629 L:      platform-driver-x86@vger.kernel.org
4630 S:      Supported
4631 F:      drivers/platform/x86/classmate-laptop.c
4632
4633 COBALT MEDIA DRIVER
4634 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4635 L:      linux-media@vger.kernel.org
4636 S:      Supported
4637 W:      https://linuxtv.org
4638 T:      git git://linuxtv.org/media_tree.git
4639 F:      drivers/media/pci/cobalt/
4640
4641 COCCINELLE/Semantic Patches (SmPL)
4642 M:      Julia Lawall <Julia.Lawall@inria.fr>
4643 M:      Gilles Muller <Gilles.Muller@inria.fr>
4644 M:      Nicolas Palix <nicolas.palix@imag.fr>
4645 M:      Michal Marek <michal.lkml@markovi.net>
4646 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4647 S:      Supported
4648 W:      http://coccinelle.lip6.fr/
4649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4650 F:      Documentation/dev-tools/coccinelle.rst
4651 F:      scripts/coccicheck
4652 F:      scripts/coccinelle/
4653
4654 CODA FILE SYSTEM
4655 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4656 M:      coda@cs.cmu.edu
4657 L:      codalist@coda.cs.cmu.edu
4658 S:      Maintained
4659 W:      http://www.coda.cs.cmu.edu/
4660 F:      Documentation/filesystems/coda.rst
4661 F:      fs/coda/
4662 F:      include/linux/coda*.h
4663 F:      include/uapi/linux/coda*.h
4664
4665 CODA V4L2 MEM2MEM DRIVER
4666 M:      Philipp Zabel <p.zabel@pengutronix.de>
4667 L:      linux-media@vger.kernel.org
4668 S:      Maintained
4669 F:      Documentation/devicetree/bindings/media/coda.yaml
4670 F:      drivers/media/platform/coda/
4671
4672 CODE OF CONDUCT
4673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4674 S:      Supported
4675 F:      Documentation/process/code-of-conduct-interpretation.rst
4676 F:      Documentation/process/code-of-conduct.rst
4677
4678 COMEDI DRIVERS
4679 M:      Ian Abbott <abbotti@mev.co.uk>
4680 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4681 S:      Odd Fixes
4682 F:      drivers/comedi/
4683
4684 COMMON CLK FRAMEWORK
4685 M:      Michael Turquette <mturquette@baylibre.com>
4686 M:      Stephen Boyd <sboyd@kernel.org>
4687 L:      linux-clk@vger.kernel.org
4688 S:      Maintained
4689 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4691 F:      Documentation/devicetree/bindings/clock/
4692 F:      drivers/clk/
4693 F:      include/linux/clk-pr*
4694 F:      include/linux/clk/
4695 F:      include/linux/of_clk.h
4696 X:      drivers/clk/clkdev.c
4697
4698 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4699 M:      Steve French <sfrench@samba.org>
4700 L:      linux-cifs@vger.kernel.org
4701 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4702 S:      Supported
4703 W:      http://linux-cifs.samba.org/
4704 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4705 F:      Documentation/admin-guide/cifs/
4706 F:      fs/cifs/
4707 F:      fs/smbfs_common/
4708
4709 COMPACTPCI HOTPLUG CORE
4710 M:      Scott Murray <scott@spiteful.org>
4711 L:      linux-pci@vger.kernel.org
4712 S:      Maintained
4713 F:      drivers/pci/hotplug/cpci_hotplug*
4714
4715 COMPACTPCI HOTPLUG GENERIC DRIVER
4716 M:      Scott Murray <scott@spiteful.org>
4717 L:      linux-pci@vger.kernel.org
4718 S:      Maintained
4719 F:      drivers/pci/hotplug/cpcihp_generic.c
4720
4721 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4722 M:      Scott Murray <scott@spiteful.org>
4723 L:      linux-pci@vger.kernel.org
4724 S:      Maintained
4725 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4726
4727 COMPAL LAPTOP SUPPORT
4728 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4729 L:      platform-driver-x86@vger.kernel.org
4730 S:      Maintained
4731 F:      drivers/platform/x86/compal-laptop.c
4732
4733 COMPILER ATTRIBUTES
4734 M:      Miguel Ojeda <ojeda@kernel.org>
4735 R:      Nick Desaulniers <ndesaulniers@google.com>
4736 S:      Maintained
4737 F:      include/linux/compiler_attributes.h
4738
4739 COMPUTE EXPRESS LINK (CXL)
4740 M:      Alison Schofield <alison.schofield@intel.com>
4741 M:      Vishal Verma <vishal.l.verma@intel.com>
4742 M:      Ira Weiny <ira.weiny@intel.com>
4743 M:      Ben Widawsky <ben.widawsky@intel.com>
4744 M:      Dan Williams <dan.j.williams@intel.com>
4745 L:      linux-cxl@vger.kernel.org
4746 S:      Maintained
4747 F:      drivers/cxl/
4748 F:      include/uapi/linux/cxl_mem.h
4749
4750 CONEXANT ACCESSRUNNER USB DRIVER
4751 L:      accessrunner-general@lists.sourceforge.net
4752 S:      Orphan
4753 W:      http://accessrunner.sourceforge.net/
4754 F:      drivers/usb/atm/cxacru.c
4755
4756 CONFIGFS
4757 M:      Joel Becker <jlbec@evilplan.org>
4758 M:      Christoph Hellwig <hch@lst.de>
4759 S:      Supported
4760 T:      git git://git.infradead.org/users/hch/configfs.git
4761 F:      fs/configfs/
4762 F:      include/linux/configfs.h
4763 F:      samples/configfs/
4764
4765 CONSOLE SUBSYSTEM
4766 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4767 S:      Supported
4768 F:      drivers/video/console/
4769 F:      include/linux/console*
4770
4771 CONTEXT TRACKING
4772 M:      Frederic Weisbecker <frederic@kernel.org>
4773 S:      Maintained
4774 F:      kernel/context_tracking.c
4775 F:      include/linux/context_tracking*
4776
4777 CONTROL GROUP (CGROUP)
4778 M:      Tejun Heo <tj@kernel.org>
4779 M:      Zefan Li <lizefan.x@bytedance.com>
4780 M:      Johannes Weiner <hannes@cmpxchg.org>
4781 L:      cgroups@vger.kernel.org
4782 S:      Maintained
4783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4784 F:      Documentation/admin-guide/cgroup-v1/
4785 F:      Documentation/admin-guide/cgroup-v2.rst
4786 F:      include/linux/cgroup*
4787 F:      kernel/cgroup/
4788
4789 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4790 M:      Tejun Heo <tj@kernel.org>
4791 M:      Jens Axboe <axboe@kernel.dk>
4792 L:      cgroups@vger.kernel.org
4793 L:      linux-block@vger.kernel.org
4794 T:      git git://git.kernel.dk/linux-block
4795 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4796 F:      block/bfq-cgroup.c
4797 F:      block/blk-cgroup.c
4798 F:      block/blk-iolatency.c
4799 F:      block/blk-throttle.c
4800 F:      include/linux/blk-cgroup.h
4801
4802 CONTROL GROUP - CPUSET
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 L:      cgroups@vger.kernel.org
4805 S:      Maintained
4806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4807 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4808 F:      include/linux/cpuset.h
4809 F:      kernel/cgroup/cpuset.c
4810
4811 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4812 M:      Johannes Weiner <hannes@cmpxchg.org>
4813 M:      Michal Hocko <mhocko@kernel.org>
4814 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4815 L:      cgroups@vger.kernel.org
4816 L:      linux-mm@kvack.org
4817 S:      Maintained
4818 F:      mm/memcontrol.c
4819 F:      mm/swap_cgroup.c
4820
4821 CORETEMP HARDWARE MONITORING DRIVER
4822 M:      Fenghua Yu <fenghua.yu@intel.com>
4823 L:      linux-hwmon@vger.kernel.org
4824 S:      Maintained
4825 F:      Documentation/hwmon/coretemp.rst
4826 F:      drivers/hwmon/coretemp.c
4827
4828 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4829 M:      Marius Zachmann <mail@mariuszachmann.de>
4830 L:      linux-hwmon@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/hwmon/corsair-cpro.c
4833
4834 CORSAIR-PSU HARDWARE MONITOR DRIVER
4835 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4836 L:      linux-hwmon@vger.kernel.org
4837 S:      Maintained
4838 F:      Documentation/hwmon/corsair-psu.rst
4839 F:      drivers/hwmon/corsair-psu.c
4840
4841 COSA/SRP SYNC SERIAL DRIVER
4842 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4843 S:      Maintained
4844 W:      http://www.fi.muni.cz/~kas/cosa/
4845 F:      drivers/net/wan/cosa*
4846
4847 COUNTER SUBSYSTEM
4848 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4849 L:      linux-iio@vger.kernel.org
4850 S:      Maintained
4851 F:      Documentation/ABI/testing/sysfs-bus-counter
4852 F:      Documentation/driver-api/generic-counter.rst
4853 F:      drivers/counter/
4854 F:      include/linux/counter.h
4855 F:      include/linux/counter_enum.h
4856
4857 CP2615 I2C DRIVER
4858 M:      Bence Csókás <bence98@sch.bme.hu>
4859 S:      Maintained
4860 F:      drivers/i2c/busses/i2c-cp2615.c
4861
4862 CPMAC ETHERNET DRIVER
4863 M:      Florian Fainelli <f.fainelli@gmail.com>
4864 L:      netdev@vger.kernel.org
4865 S:      Maintained
4866 F:      drivers/net/ethernet/ti/cpmac.c
4867
4868 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4869 M:      Viresh Kumar <viresh.kumar@linaro.org>
4870 M:      Sudeep Holla <sudeep.holla@arm.com>
4871 L:      linux-pm@vger.kernel.org
4872 S:      Maintained
4873 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4874 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4875
4876 CPU FREQUENCY SCALING FRAMEWORK
4877 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4878 M:      Viresh Kumar <viresh.kumar@linaro.org>
4879 L:      linux-pm@vger.kernel.org
4880 S:      Maintained
4881 B:      https://bugzilla.kernel.org
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4884 F:      Documentation/admin-guide/pm/cpufreq.rst
4885 F:      Documentation/admin-guide/pm/intel_pstate.rst
4886 F:      Documentation/cpu-freq/
4887 F:      Documentation/devicetree/bindings/cpufreq/
4888 F:      drivers/cpufreq/
4889 F:      include/linux/cpufreq.h
4890 F:      include/linux/sched/cpufreq.h
4891 F:      kernel/sched/cpufreq*.c
4892 F:      tools/testing/selftests/cpufreq/
4893
4894 CPU IDLE TIME MANAGEMENT FRAMEWORK
4895 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4896 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4897 L:      linux-pm@vger.kernel.org
4898 S:      Maintained
4899 B:      https://bugzilla.kernel.org
4900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4901 F:      Documentation/admin-guide/pm/cpuidle.rst
4902 F:      Documentation/driver-api/pm/cpuidle.rst
4903 F:      drivers/cpuidle/
4904 F:      include/linux/cpuidle.h
4905
4906 CPU POWER MONITORING SUBSYSTEM
4907 M:      Thomas Renninger <trenn@suse.com>
4908 M:      Shuah Khan <shuah@kernel.org>
4909 M:      Shuah Khan <skhan@linuxfoundation.org>
4910 L:      linux-pm@vger.kernel.org
4911 S:      Maintained
4912 F:      tools/power/cpupower/
4913
4914 CPUID/MSR DRIVER
4915 M:      "H. Peter Anvin" <hpa@zytor.com>
4916 S:      Maintained
4917 F:      arch/x86/kernel/cpuid.c
4918 F:      arch/x86/kernel/msr.c
4919
4920 CPUIDLE DRIVER - ARM BIG LITTLE
4921 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4922 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4923 L:      linux-pm@vger.kernel.org
4924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4925 S:      Maintained
4926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4927 F:      drivers/cpuidle/cpuidle-big_little.c
4928
4929 CPUIDLE DRIVER - ARM EXYNOS
4930 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4931 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4932 M:      Kukjin Kim <kgene@kernel.org>
4933 L:      linux-pm@vger.kernel.org
4934 L:      linux-samsung-soc@vger.kernel.org
4935 S:      Supported
4936 F:      arch/arm/mach-exynos/pm.c
4937 F:      drivers/cpuidle/cpuidle-exynos.c
4938 F:      include/linux/platform_data/cpuidle-exynos.h
4939
4940 CPUIDLE DRIVER - ARM PSCI
4941 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4942 M:      Sudeep Holla <sudeep.holla@arm.com>
4943 L:      linux-pm@vger.kernel.org
4944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4945 S:      Supported
4946 F:      drivers/cpuidle/cpuidle-psci.c
4947
4948 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4949 M:      Ulf Hansson <ulf.hansson@linaro.org>
4950 L:      linux-pm@vger.kernel.org
4951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4952 S:      Supported
4953 F:      drivers/cpuidle/cpuidle-psci.h
4954 F:      drivers/cpuidle/cpuidle-psci-domain.c
4955
4956 CRAMFS FILESYSTEM
4957 M:      Nicolas Pitre <nico@fluxnic.net>
4958 S:      Maintained
4959 F:      Documentation/filesystems/cramfs.rst
4960 F:      fs/cramfs/
4961
4962 CREATIVE SB0540
4963 M:      Bastien Nocera <hadess@hadess.net>
4964 L:      linux-input@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/hid/hid-creative-sb0540.c
4967
4968 CRYPTO API
4969 M:      Herbert Xu <herbert@gondor.apana.org.au>
4970 M:      "David S. Miller" <davem@davemloft.net>
4971 L:      linux-crypto@vger.kernel.org
4972 S:      Maintained
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4975 F:      Documentation/crypto/
4976 F:      Documentation/devicetree/bindings/crypto/
4977 F:      arch/*/crypto/
4978 F:      crypto/
4979 F:      drivers/crypto/
4980 F:      include/crypto/
4981 F:      include/linux/crypto*
4982 F:      lib/crypto/
4983
4984 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4985 M:      Neil Horman <nhorman@tuxdriver.com>
4986 L:      linux-crypto@vger.kernel.org
4987 S:      Maintained
4988 F:      crypto/ansi_cprng.c
4989 F:      crypto/rng.c
4990
4991 CS3308 MEDIA DRIVER
4992 M:      Hans Verkuil <hverkuil@xs4all.nl>
4993 L:      linux-media@vger.kernel.org
4994 S:      Odd Fixes
4995 W:      http://linuxtv.org
4996 T:      git git://linuxtv.org/media_tree.git
4997 F:      drivers/media/i2c/cs3308.c
4998
4999 CS5535 Audio ALSA driver
5000 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5001 S:      Maintained
5002 F:      sound/pci/cs5535audio/
5003
5004 CSI DRIVERS FOR ALLWINNER V3s
5005 M:      Yong Deng <yong.deng@magewell.com>
5006 L:      linux-media@vger.kernel.org
5007 S:      Maintained
5008 T:      git git://linuxtv.org/media_tree.git
5009 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5010 F:      drivers/media/platform/sunxi/sun6i-csi/
5011
5012 CW1200 WLAN driver
5013 M:      Solomon Peachy <pizza@shaftnet.org>
5014 S:      Maintained
5015 F:      drivers/net/wireless/st/cw1200/
5016
5017 CX18 VIDEO4LINUX DRIVER
5018 M:      Andy Walls <awalls@md.metrocast.net>
5019 L:      linux-media@vger.kernel.org
5020 S:      Maintained
5021 W:      https://linuxtv.org
5022 T:      git git://linuxtv.org/media_tree.git
5023 F:      drivers/media/pci/cx18/
5024 F:      include/uapi/linux/ivtv*
5025
5026 CX2341X MPEG ENCODER HELPER MODULE
5027 M:      Hans Verkuil <hverkuil@xs4all.nl>
5028 L:      linux-media@vger.kernel.org
5029 S:      Maintained
5030 W:      https://linuxtv.org
5031 T:      git git://linuxtv.org/media_tree.git
5032 F:      drivers/media/common/cx2341x*
5033 F:      include/media/drv-intf/cx2341x.h
5034
5035 CX24120 MEDIA DRIVER
5036 M:      Jemma Denson <jdenson@gmail.com>
5037 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5038 L:      linux-media@vger.kernel.org
5039 S:      Maintained
5040 W:      https://linuxtv.org
5041 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5042 F:      drivers/media/dvb-frontends/cx24120*
5043
5044 CX88 VIDEO4LINUX DRIVER
5045 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5046 L:      linux-media@vger.kernel.org
5047 S:      Odd fixes
5048 W:      https://linuxtv.org
5049 T:      git git://linuxtv.org/media_tree.git
5050 F:      Documentation/driver-api/media/drivers/cx88*
5051 F:      drivers/media/pci/cx88/
5052
5053 CXD2820R MEDIA DRIVER
5054 M:      Antti Palosaari <crope@iki.fi>
5055 L:      linux-media@vger.kernel.org
5056 S:      Maintained
5057 W:      https://linuxtv.org
5058 W:      http://palosaari.fi/linux/
5059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5060 T:      git git://linuxtv.org/anttip/media_tree.git
5061 F:      drivers/media/dvb-frontends/cxd2820r*
5062
5063 CXGB3 ETHERNET DRIVER (CXGB3)
5064 M:      Raju Rangoju <rajur@chelsio.com>
5065 L:      netdev@vger.kernel.org
5066 S:      Supported
5067 W:      http://www.chelsio.com
5068 F:      drivers/net/ethernet/chelsio/cxgb3/
5069
5070 CXGB3 ISCSI DRIVER (CXGB3I)
5071 M:      Karen Xie <kxie@chelsio.com>
5072 L:      linux-scsi@vger.kernel.org
5073 S:      Supported
5074 W:      http://www.chelsio.com
5075 F:      drivers/scsi/cxgbi/cxgb3i
5076
5077 CXGB4 CRYPTO DRIVER (chcr)
5078 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5079 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5080 M:      Rohit Maheshwari <rohitm@chelsio.com>
5081 L:      linux-crypto@vger.kernel.org
5082 S:      Supported
5083 W:      http://www.chelsio.com
5084 F:      drivers/crypto/chelsio
5085
5086 CXGB4 INLINE CRYPTO DRIVER
5087 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5088 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5089 M:      Rohit Maheshwari <rohitm@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/inline_crypto/
5094
5095 CXGB4 ETHERNET DRIVER (CXGB4)
5096 M:      Raju Rangoju <rajur@chelsio.com>
5097 L:      netdev@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/net/ethernet/chelsio/cxgb4/
5101
5102 CXGB4 ISCSI DRIVER (CXGB4I)
5103 M:      Karen Xie <kxie@chelsio.com>
5104 L:      linux-scsi@vger.kernel.org
5105 S:      Supported
5106 W:      http://www.chelsio.com
5107 F:      drivers/scsi/cxgbi/cxgb4i
5108
5109 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5110 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5111 L:      linux-rdma@vger.kernel.org
5112 S:      Supported
5113 W:      http://www.openfabrics.org
5114 F:      drivers/infiniband/hw/cxgb4/
5115 F:      include/uapi/rdma/cxgb4-abi.h
5116
5117 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5118 M:      Raju Rangoju <rajur@chelsio.com>
5119 L:      netdev@vger.kernel.org
5120 S:      Supported
5121 W:      http://www.chelsio.com
5122 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5123
5124 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5125 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5126 M:      Andrew Donnellan <ajd@linux.ibm.com>
5127 L:      linuxppc-dev@lists.ozlabs.org
5128 S:      Supported
5129 F:      Documentation/ABI/testing/sysfs-class-cxl
5130 F:      Documentation/powerpc/cxl.rst
5131 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5132 F:      drivers/misc/cxl/
5133 F:      include/misc/cxl*
5134 F:      include/uapi/misc/cxl.h
5135
5136 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5137 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5138 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5139 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5140 L:      linux-scsi@vger.kernel.org
5141 S:      Supported
5142 F:      Documentation/powerpc/cxlflash.rst
5143 F:      drivers/scsi/cxlflash/
5144 F:      include/uapi/scsi/cxlflash_ioctl.h
5145
5146 CYBERPRO FB DRIVER
5147 M:      Russell King <linux@armlinux.org.uk>
5148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5149 S:      Maintained
5150 W:      http://www.armlinux.org.uk/
5151 F:      drivers/video/fbdev/cyber2000fb.*
5152
5153 CYCLADES PC300 DRIVER
5154 S:      Orphan
5155 F:      drivers/net/wan/pc300*
5156
5157 CYPRESS_FIRMWARE MEDIA DRIVER
5158 M:      Antti Palosaari <crope@iki.fi>
5159 L:      linux-media@vger.kernel.org
5160 S:      Maintained
5161 W:      https://linuxtv.org
5162 W:      http://palosaari.fi/linux/
5163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5164 T:      git git://linuxtv.org/anttip/media_tree.git
5165 F:      drivers/media/common/cypress_firmware*
5166
5167 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5168 M:      Linus Walleij <linus.walleij@linaro.org>
5169 L:      linux-input@vger.kernel.org
5170 S:      Maintained
5171 F:      drivers/input/touchscreen/cy8ctma140.c
5172
5173 CYTTSP TOUCHSCREEN DRIVER
5174 M:      Linus Walleij <linus.walleij@linaro.org>
5175 L:      linux-input@vger.kernel.org
5176 S:      Maintained
5177 F:      drivers/input/touchscreen/cyttsp*
5178
5179 D-LINK DIR-685 TOUCHKEYS DRIVER
5180 M:      Linus Walleij <linus.walleij@linaro.org>
5181 L:      linux-input@vger.kernel.org
5182 S:      Supported
5183 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5184
5185 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5186 M:      Joshua Kinard <kumba@gentoo.org>
5187 S:      Maintained
5188 F:      drivers/rtc/rtc-ds1685.c
5189 F:      include/linux/rtc/ds1685.h
5190
5191 DAMA SLAVE for AX.25
5192 M:      Joerg Reuter <jreuter@yaina.de>
5193 L:      linux-hams@vger.kernel.org
5194 S:      Maintained
5195 W:      http://yaina.de/jreuter/
5196 W:      http://www.qsl.net/dl1bke/
5197 F:      net/ax25/af_ax25.c
5198 F:      net/ax25/ax25_dev.c
5199 F:      net/ax25/ax25_ds_*
5200 F:      net/ax25/ax25_in.c
5201 F:      net/ax25/ax25_out.c
5202 F:      net/ax25/ax25_timer.c
5203 F:      net/ax25/sysctl_net_ax25.c
5204
5205 DATA ACCESS MONITOR
5206 M:      SeongJae Park <sjpark@amazon.de>
5207 L:      linux-mm@kvack.org
5208 S:      Maintained
5209 F:      Documentation/admin-guide/mm/damon/
5210 F:      Documentation/vm/damon/
5211 F:      include/linux/damon.h
5212 F:      include/trace/events/damon.h
5213 F:      mm/damon/
5214 F:      tools/testing/selftests/damon/
5215
5216 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5217 L:      netdev@vger.kernel.org
5218 S:      Orphan
5219 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5220 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5221
5222 DC390/AM53C974 SCSI driver
5223 M:      Hannes Reinecke <hare@suse.com>
5224 L:      linux-scsi@vger.kernel.org
5225 S:      Maintained
5226 F:      drivers/scsi/am53c974.c
5227
5228 DC395x SCSI driver
5229 M:      Oliver Neukum <oliver@neukum.org>
5230 M:      Ali Akcaagac <aliakc@web.de>
5231 M:      Jamie Lenehan <lenehan@twibble.org>
5232 L:      dc395x@twibble.org
5233 S:      Maintained
5234 W:      http://twibble.org/dist/dc395x/
5235 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5236 F:      Documentation/scsi/dc395x.rst
5237 F:      drivers/scsi/dc395x.*
5238
5239 DCCP PROTOCOL
5240 L:      dccp@vger.kernel.org
5241 S:      Orphan
5242 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5243 F:      include/linux/dccp.h
5244 F:      include/linux/tfrc.h
5245 F:      include/uapi/linux/dccp.h
5246 F:      net/dccp/
5247
5248 DECnet NETWORK LAYER
5249 L:      linux-decnet-user@lists.sourceforge.net
5250 S:      Orphan
5251 W:      http://linux-decnet.sourceforge.net
5252 F:      Documentation/networking/decnet.rst
5253 F:      net/decnet/
5254
5255 DECSTATION PLATFORM SUPPORT
5256 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5257 L:      linux-mips@vger.kernel.org
5258 S:      Maintained
5259 W:      http://www.linux-mips.org/wiki/DECstation
5260 F:      arch/mips/dec/
5261 F:      arch/mips/include/asm/dec/
5262 F:      arch/mips/include/asm/mach-dec/
5263
5264 DEFXX FDDI NETWORK DRIVER
5265 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5266 S:      Maintained
5267 F:      drivers/net/fddi/defxx.*
5268
5269 DEFZA FDDI NETWORK DRIVER
5270 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5271 S:      Maintained
5272 F:      drivers/net/fddi/defza.*
5273
5274 DEINTERLACE DRIVERS FOR ALLWINNER H3
5275 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5276 L:      linux-media@vger.kernel.org
5277 S:      Maintained
5278 T:      git git://linuxtv.org/media_tree.git
5279 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5280 F:      drivers/media/platform/sunxi/sun8i-di/
5281
5282 DELL LAPTOP DRIVER
5283 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5284 M:      Pali Rohár <pali@kernel.org>
5285 L:      platform-driver-x86@vger.kernel.org
5286 S:      Maintained
5287 F:      drivers/platform/x86/dell/dell-laptop.c
5288
5289 DELL LAPTOP FREEFALL DRIVER
5290 M:      Pali Rohár <pali@kernel.org>
5291 S:      Maintained
5292 F:      drivers/platform/x86/dell/dell-smo8800.c
5293
5294 DELL LAPTOP RBTN DRIVER
5295 M:      Pali Rohár <pali@kernel.org>
5296 S:      Maintained
5297 F:      drivers/platform/x86/dell/dell-rbtn.*
5298
5299 DELL LAPTOP SMM DRIVER
5300 M:      Pali Rohár <pali@kernel.org>
5301 S:      Maintained
5302 F:      drivers/hwmon/dell-smm-hwmon.c
5303 F:      include/uapi/linux/i8k.h
5304
5305 DELL REMOTE BIOS UPDATE DRIVER
5306 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5307 L:      platform-driver-x86@vger.kernel.org
5308 S:      Maintained
5309 F:      drivers/platform/x86/dell/dell_rbu.c
5310
5311 DELL SMBIOS DRIVER
5312 M:      Pali Rohár <pali@kernel.org>
5313 L:      Dell.Client.Kernel@dell.com
5314 L:      platform-driver-x86@vger.kernel.org
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-smbios.*
5317
5318 DELL SMBIOS SMM DRIVER
5319 L:      Dell.Client.Kernel@dell.com
5320 L:      platform-driver-x86@vger.kernel.org
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5323
5324 DELL SMBIOS WMI DRIVER
5325 L:      Dell.Client.Kernel@dell.com
5326 L:      platform-driver-x86@vger.kernel.org
5327 S:      Maintained
5328 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5329 F:      tools/wmi/dell-smbios-example.c
5330
5331 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5332 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5333 L:      platform-driver-x86@vger.kernel.org
5334 S:      Maintained
5335 F:      Documentation/driver-api/dcdbas.rst
5336 F:      drivers/platform/x86/dell/dcdbas.*
5337
5338 DELL WMI DESCRIPTOR DRIVER
5339 L:      Dell.Client.Kernel@dell.com
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5342
5343 DELL WMI SYSMAN DRIVER
5344 M:      Divya Bharathi <divya.bharathi@dell.com>
5345 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5346 L:      Dell.Client.Kernel@dell.com
5347 L:      platform-driver-x86@vger.kernel.org
5348 S:      Maintained
5349 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5350 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5351
5352 DELL WMI NOTIFICATIONS DRIVER
5353 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5354 M:      Pali Rohár <pali@kernel.org>
5355 S:      Maintained
5356 F:      drivers/platform/x86/dell/dell-wmi-base.c
5357
5358 DELL WMI HARDWARE PRIVACY SUPPORT
5359 M:      Perry Yuan <Perry.Yuan@dell.com>
5360 L:      Dell.Client.Kernel@dell.com
5361 L:      platform-driver-x86@vger.kernel.org
5362 S:      Maintained
5363 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5364
5365 DELTA ST MEDIA DRIVER
5366 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5367 L:      linux-media@vger.kernel.org
5368 S:      Supported
5369 W:      https://linuxtv.org
5370 T:      git git://linuxtv.org/media_tree.git
5371 F:      drivers/media/platform/sti/delta
5372
5373 DELTA DPS920AB PSU DRIVER
5374 M:      Robert Marko <robert.marko@sartura.hr>
5375 L:      linux-hwmon@vger.kernel.org
5376 S:      Maintained
5377 F:      Documentation/hwmon/dps920ab.rst
5378 F:      drivers/hwmon/pmbus/dps920ab.c
5379
5380 DENALI NAND DRIVER
5381 L:      linux-mtd@lists.infradead.org
5382 S:      Orphan
5383 F:      drivers/mtd/nand/raw/denali*
5384
5385 DESIGNWARE EDMA CORE IP DRIVER
5386 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5387 L:      dmaengine@vger.kernel.org
5388 S:      Maintained
5389 F:      drivers/dma/dw-edma/
5390 F:      include/linux/dma/edma.h
5391
5392 DESIGNWARE XDATA IP DRIVER
5393 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5394 L:      linux-pci@vger.kernel.org
5395 S:      Maintained
5396 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5397 F:      drivers/misc/dw-xdata-pcie.c
5398
5399 DESIGNWARE USB2 DRD IP DRIVER
5400 M:      Minas Harutyunyan <hminas@synopsys.com>
5401 L:      linux-usb@vger.kernel.org
5402 S:      Maintained
5403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5404 F:      drivers/usb/dwc2/
5405
5406 DESIGNWARE USB3 DRD IP DRIVER
5407 M:      Felipe Balbi <balbi@kernel.org>
5408 L:      linux-usb@vger.kernel.org
5409 S:      Maintained
5410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5411 F:      drivers/usb/dwc3/
5412
5413 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5414 M:      Andreas Klinger <ak@it-klinger.de>
5415 L:      linux-iio@vger.kernel.org
5416 S:      Maintained
5417 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5418 F:      drivers/iio/proximity/srf*.c
5419
5420 DEVICE COREDUMP (DEV_COREDUMP)
5421 M:      Johannes Berg <johannes@sipsolutions.net>
5422 L:      linux-kernel@vger.kernel.org
5423 S:      Maintained
5424 F:      drivers/base/devcoredump.c
5425 F:      include/linux/devcoredump.h
5426
5427 DEVICE DEPENDENCY HELPER SCRIPT
5428 M:      Saravana Kannan <saravanak@google.com>
5429 L:      linux-kernel@vger.kernel.org
5430 S:      Maintained
5431 F:      scripts/dev-needs.sh
5432
5433 DEVICE DIRECT ACCESS (DAX)
5434 M:      Dan Williams <dan.j.williams@intel.com>
5435 M:      Vishal Verma <vishal.l.verma@intel.com>
5436 M:      Dave Jiang <dave.jiang@intel.com>
5437 L:      nvdimm@lists.linux.dev
5438 S:      Supported
5439 F:      drivers/dax/
5440
5441 DEVICE FREQUENCY (DEVFREQ)
5442 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5443 M:      Kyungmin Park <kyungmin.park@samsung.com>
5444 M:      Chanwoo Choi <cw00.choi@samsung.com>
5445 L:      linux-pm@vger.kernel.org
5446 S:      Maintained
5447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5448 F:      Documentation/devicetree/bindings/devfreq/
5449 F:      drivers/devfreq/
5450 F:      include/linux/devfreq.h
5451 F:      include/trace/events/devfreq.h
5452
5453 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5454 M:      Chanwoo Choi <cw00.choi@samsung.com>
5455 L:      linux-pm@vger.kernel.org
5456 S:      Supported
5457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5458 F:      Documentation/devicetree/bindings/devfreq/event/
5459 F:      drivers/devfreq/devfreq-event.c
5460 F:      drivers/devfreq/event/
5461 F:      include/dt-bindings/pmu/exynos_ppmu.h
5462 F:      include/linux/devfreq-event.h
5463
5464 DEVICE NUMBER REGISTRY
5465 M:      Torben Mathiasen <device@lanana.org>
5466 S:      Maintained
5467 W:      http://lanana.org/docs/device-list/index.html
5468
5469 DEVICE RESOURCE MANAGEMENT HELPERS
5470 M:      Hans de Goede <hdegoede@redhat.com>
5471 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5472 S:      Maintained
5473 F:      include/linux/devm-helpers.h
5474
5475 DEVICE-MAPPER  (LVM)
5476 M:      Alasdair Kergon <agk@redhat.com>
5477 M:      Mike Snitzer <snitzer@redhat.com>
5478 M:      dm-devel@redhat.com
5479 L:      dm-devel@redhat.com
5480 S:      Maintained
5481 W:      http://sources.redhat.com/dm
5482 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5484 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5485 F:      Documentation/admin-guide/device-mapper/
5486 F:      drivers/md/Kconfig
5487 F:      drivers/md/Makefile
5488 F:      drivers/md/dm*
5489 F:      drivers/md/persistent-data/
5490 F:      include/linux/device-mapper.h
5491 F:      include/linux/dm-*.h
5492 F:      include/uapi/linux/dm-*.h
5493
5494 DEVLINK
5495 M:      Jiri Pirko <jiri@nvidia.com>
5496 L:      netdev@vger.kernel.org
5497 S:      Supported
5498 F:      Documentation/networking/devlink
5499 F:      include/net/devlink.h
5500 F:      include/uapi/linux/devlink.h
5501 F:      net/core/devlink.c
5502
5503 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5504 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5505 L:      kernel@dh-electronics.com
5506 S:      Maintained
5507 F:      arch/arm/boot/dts/imx6*-dhcom-*
5508
5509 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5510 M:      Marek Vasut <marex@denx.de>
5511 L:      kernel@dh-electronics.com
5512 S:      Maintained
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5514 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5515
5516 DIALOG SEMICONDUCTOR DRIVERS
5517 M:      Support Opensource <support.opensource@diasemi.com>
5518 S:      Supported
5519 W:      http://www.dialog-semiconductor.com/products
5520 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5521 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5522 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5523 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5524 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5525 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5526 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5527 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5528 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5529 F:      Documentation/hwmon/da90??.rst
5530 F:      drivers/gpio/gpio-da90??.c
5531 F:      drivers/hwmon/da90??-hwmon.c
5532 F:      drivers/iio/adc/da91??-*.c
5533 F:      drivers/input/misc/da72??.[ch]
5534 F:      drivers/input/misc/da90??_onkey.c
5535 F:      drivers/input/touchscreen/da9052_tsi.c
5536 F:      drivers/leds/leds-da90??.c
5537 F:      drivers/mfd/da903x.c
5538 F:      drivers/mfd/da90??-*.c
5539 F:      drivers/mfd/da91??-*.c
5540 F:      drivers/pinctrl/pinctrl-da90??.c
5541 F:      drivers/power/supply/da9052-battery.c
5542 F:      drivers/power/supply/da91??-*.c
5543 F:      drivers/regulator/da9???-regulator.[ch]
5544 F:      drivers/regulator/slg51000-regulator.[ch]
5545 F:      drivers/rtc/rtc-da90??.c
5546 F:      drivers/thermal/da90??-thermal.c
5547 F:      drivers/video/backlight/da90??_bl.c
5548 F:      drivers/watchdog/da90??_wdt.c
5549 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5550 F:      include/linux/mfd/da903x.h
5551 F:      include/linux/mfd/da9052/
5552 F:      include/linux/mfd/da9055/
5553 F:      include/linux/mfd/da9062/
5554 F:      include/linux/mfd/da9063/
5555 F:      include/linux/mfd/da9150/
5556 F:      include/linux/regulator/da9211.h
5557 F:      include/sound/da[79]*.h
5558 F:      sound/soc/codecs/da[79]*.[ch]
5559
5560 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5561 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5562 L:      linux-gpio@vger.kernel.org
5563 S:      Maintained
5564 F:      drivers/gpio/gpio-gpio-mm.c
5565
5566 DIOLAN U2C-12 I2C DRIVER
5567 M:      Guenter Roeck <linux@roeck-us.net>
5568 L:      linux-i2c@vger.kernel.org
5569 S:      Maintained
5570 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5571
5572 DIRECTORY NOTIFICATION (DNOTIFY)
5573 M:      Jan Kara <jack@suse.cz>
5574 R:      Amir Goldstein <amir73il@gmail.com>
5575 L:      linux-fsdevel@vger.kernel.org
5576 S:      Maintained
5577 F:      Documentation/filesystems/dnotify.rst
5578 F:      fs/notify/dnotify/
5579 F:      include/linux/dnotify.h
5580
5581 DISK GEOMETRY AND PARTITION HANDLING
5582 M:      Andries Brouwer <aeb@cwi.nl>
5583 S:      Maintained
5584 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5585 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5586 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5587
5588 DISKQUOTA
5589 M:      Jan Kara <jack@suse.com>
5590 S:      Maintained
5591 F:      Documentation/filesystems/quota.rst
5592 F:      fs/quota/
5593 F:      include/linux/quota*.h
5594 F:      include/uapi/linux/quota*.h
5595
5596 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5597 M:      Bernie Thompson <bernie@plugable.com>
5598 L:      linux-fbdev@vger.kernel.org
5599 S:      Maintained
5600 W:      http://plugable.com/category/projects/udlfb/
5601 F:      Documentation/fb/udlfb.rst
5602 F:      drivers/video/fbdev/udlfb.c
5603 F:      include/video/udlfb.h
5604
5605 DISTRIBUTED LOCK MANAGER (DLM)
5606 M:      Christine Caulfield <ccaulfie@redhat.com>
5607 M:      David Teigland <teigland@redhat.com>
5608 L:      cluster-devel@redhat.com
5609 S:      Supported
5610 W:      http://sources.redhat.com/cluster/
5611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5612 F:      fs/dlm/
5613
5614 DMA BUFFER SHARING FRAMEWORK
5615 M:      Sumit Semwal <sumit.semwal@linaro.org>
5616 M:      Christian König <christian.koenig@amd.com>
5617 L:      linux-media@vger.kernel.org
5618 L:      dri-devel@lists.freedesktop.org
5619 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5620 S:      Maintained
5621 T:      git git://anongit.freedesktop.org/drm/drm-misc
5622 F:      Documentation/driver-api/dma-buf.rst
5623 F:      drivers/dma-buf/
5624 F:      include/linux/*fence.h
5625 F:      include/linux/dma-buf*
5626 F:      include/linux/dma-resv.h
5627 K:      \bdma_(?:buf|fence|resv)\b
5628
5629 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5630 M:      Vinod Koul <vkoul@kernel.org>
5631 L:      dmaengine@vger.kernel.org
5632 S:      Maintained
5633 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5635 F:      Documentation/devicetree/bindings/dma/
5636 F:      Documentation/driver-api/dmaengine/
5637 F:      drivers/dma/
5638 F:      include/linux/dma/
5639 F:      include/linux/dmaengine.h
5640 F:      include/linux/of_dma.h
5641
5642 DMA MAPPING HELPERS
5643 M:      Christoph Hellwig <hch@lst.de>
5644 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5645 R:      Robin Murphy <robin.murphy@arm.com>
5646 L:      iommu@lists.linux-foundation.org
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 F:      kernel/dma/map_benchmark.c
5660 F:      tools/testing/selftests/dma/
5661
5662 DMA-BUF HEAPS FRAMEWORK
5663 M:      Sumit Semwal <sumit.semwal@linaro.org>
5664 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5665 R:      Liam Mark <lmark@codeaurora.org>
5666 R:      Laura Abbott <labbott@redhat.com>
5667 R:      Brian Starkey <Brian.Starkey@arm.com>
5668 R:      John Stultz <john.stultz@linaro.org>
5669 L:      linux-media@vger.kernel.org
5670 L:      dri-devel@lists.freedesktop.org
5671 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5672 S:      Maintained
5673 T:      git git://anongit.freedesktop.org/drm/drm-misc
5674 F:      drivers/dma-buf/dma-heap.c
5675 F:      drivers/dma-buf/heaps/*
5676 F:      include/linux/dma-heap.h
5677 F:      include/uapi/linux/dma-heap.h
5678
5679 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5680 M:      Lukasz Luba <lukasz.luba@arm.com>
5681 L:      linux-pm@vger.kernel.org
5682 L:      linux-samsung-soc@vger.kernel.org
5683 S:      Maintained
5684 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5685 F:      drivers/memory/samsung/exynos5422-dmc.c
5686
5687 DME1737 HARDWARE MONITOR DRIVER
5688 M:      Juerg Haefliger <juergh@gmail.com>
5689 L:      linux-hwmon@vger.kernel.org
5690 S:      Maintained
5691 F:      Documentation/hwmon/dme1737.rst
5692 F:      drivers/hwmon/dme1737.c
5693
5694 DMI/SMBIOS SUPPORT
5695 M:      Jean Delvare <jdelvare@suse.com>
5696 S:      Maintained
5697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5698 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5699 F:      drivers/firmware/dmi-id.c
5700 F:      drivers/firmware/dmi_scan.c
5701 F:      include/linux/dmi.h
5702
5703 DOCUMENTATION
5704 M:      Jonathan Corbet <corbet@lwn.net>
5705 L:      linux-doc@vger.kernel.org
5706 S:      Maintained
5707 P:      Documentation/doc-guide/maintainer-profile.rst
5708 T:      git git://git.lwn.net/linux.git docs-next
5709 F:      Documentation/
5710 F:      scripts/documentation-file-ref-check
5711 F:      scripts/kernel-doc
5712 F:      scripts/sphinx-pre-install
5713 X:      Documentation/ABI/
5714 X:      Documentation/admin-guide/media/
5715 X:      Documentation/devicetree/
5716 X:      Documentation/driver-api/media/
5717 X:      Documentation/firmware-guide/acpi/
5718 X:      Documentation/i2c/
5719 X:      Documentation/power/
5720 X:      Documentation/spi/
5721 X:      Documentation/userspace-api/media/
5722
5723 DOCUMENTATION REPORTING ISSUES
5724 M:      Thorsten Leemhuis <linux@leemhuis.info>
5725 L:      linux-doc@vger.kernel.org
5726 S:      Maintained
5727 F:      Documentation/admin-guide/reporting-issues.rst
5728
5729 DOCUMENTATION SCRIPTS
5730 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5731 L:      linux-doc@vger.kernel.org
5732 S:      Maintained
5733 F:      Documentation/sphinx/parse-headers.pl
5734 F:      scripts/documentation-file-ref-check
5735 F:      scripts/sphinx-pre-install
5736
5737 DOCUMENTATION/ITALIAN
5738 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5739 L:      linux-doc@vger.kernel.org
5740 S:      Maintained
5741 F:      Documentation/translations/it_IT
5742
5743 DONGWOON DW9714 LENS VOICE COIL DRIVER
5744 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5745 L:      linux-media@vger.kernel.org
5746 S:      Maintained
5747 T:      git git://linuxtv.org/media_tree.git
5748 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5749 F:      drivers/media/i2c/dw9714.c
5750
5751 DONGWOON DW9768 LENS VOICE COIL DRIVER
5752 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5753 L:      linux-media@vger.kernel.org
5754 S:      Maintained
5755 T:      git git://linuxtv.org/media_tree.git
5756 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5757 F:      drivers/media/i2c/dw9768.c
5758
5759 DONGWOON DW9807 LENS VOICE COIL DRIVER
5760 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5761 L:      linux-media@vger.kernel.org
5762 S:      Maintained
5763 T:      git git://linuxtv.org/media_tree.git
5764 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5765 F:      drivers/media/i2c/dw9807-vcm.c
5766
5767 DOUBLETALK DRIVER
5768 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5769 L:      blinux-list@redhat.com
5770 S:      Maintained
5771 F:      drivers/char/dtlk.c
5772 F:      include/linux/dtlk.h
5773
5774 DPAA2 DATAPATH I/O (DPIO) DRIVER
5775 M:      Roy Pledge <Roy.Pledge@nxp.com>
5776 L:      linux-kernel@vger.kernel.org
5777 S:      Maintained
5778 F:      drivers/soc/fsl/dpio
5779
5780 DPAA2 ETHERNET DRIVER
5781 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5782 L:      netdev@vger.kernel.org
5783 S:      Maintained
5784 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5786 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5787 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5788 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5793
5794 DPAA2 ETHERNET SWITCH DRIVER
5795 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5796 L:      netdev@vger.kernel.org
5797 S:      Maintained
5798 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5799 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5801
5802 DPT_I2O SCSI RAID DRIVER
5803 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5804 L:      linux-scsi@vger.kernel.org
5805 S:      Maintained
5806 W:      http://www.adaptec.com/
5807 F:      drivers/scsi/dpt*
5808 F:      drivers/scsi/dpt/
5809
5810 DRBD DRIVER
5811 M:      Philipp Reisner <philipp.reisner@linbit.com>
5812 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5813 L:      drbd-dev@lists.linbit.com
5814 S:      Supported
5815 W:      http://www.drbd.org
5816 T:      git git://git.linbit.com/linux-drbd.git
5817 T:      git git://git.linbit.com/drbd-8.4.git
5818 F:      Documentation/admin-guide/blockdev/
5819 F:      drivers/block/drbd/
5820 F:      lib/lru_cache.c
5821
5822 DRIVER COMPONENT FRAMEWORK
5823 L:      dri-devel@lists.freedesktop.org
5824 F:      drivers/base/component.c
5825 F:      include/linux/component.h
5826
5827 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5828 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5829 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5830 S:      Supported
5831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5832 F:      Documentation/core-api/kobject.rst
5833 F:      drivers/base/
5834 F:      fs/debugfs/
5835 F:      fs/sysfs/
5836 F:      include/linux/debugfs.h
5837 F:      include/linux/kobj*
5838 F:      lib/kobj*
5839
5840 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5841 M:      Nishanth Menon <nm@ti.com>
5842 L:      linux-pm@vger.kernel.org
5843 S:      Maintained
5844 F:      drivers/soc/ti/smartreflex.c
5845 F:      include/linux/power/smartreflex.h
5846
5847 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5848 M:      Maxime Ripard <mripard@kernel.org>
5849 M:      Chen-Yu Tsai <wens@csie.org>
5850 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5851 L:      dri-devel@lists.freedesktop.org
5852 S:      Supported
5853 T:      git git://anongit.freedesktop.org/drm/drm-misc
5854 F:      drivers/gpu/drm/sun4i/sun8i*
5855
5856 DRM DRIVER FOR ARM PL111 CLCD
5857 M:      Emma Anholt <emma@anholt.net>
5858 S:      Supported
5859 T:      git git://anongit.freedesktop.org/drm/drm-misc
5860 F:      drivers/gpu/drm/pl111/
5861
5862 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5863 M:      Linus Walleij <linus.walleij@linaro.org>
5864 S:      Maintained
5865 T:      git git://anongit.freedesktop.org/drm/drm-misc
5866 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5867 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5868
5869 DRM DRIVER FOR ASPEED BMC GFX
5870 M:      Joel Stanley <joel@jms.id.au>
5871 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5872 S:      Supported
5873 T:      git git://anongit.freedesktop.org/drm/drm-misc
5874 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5875 F:      drivers/gpu/drm/aspeed/
5876
5877 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5878 M:      Dave Airlie <airlied@redhat.com>
5879 R:      Thomas Zimmermann <tzimmermann@suse.de>
5880 L:      dri-devel@lists.freedesktop.org
5881 S:      Supported
5882 T:      git git://anongit.freedesktop.org/drm/drm-misc
5883 F:      drivers/gpu/drm/ast/
5884
5885 DRM DRIVER FOR BOCHS VIRTUAL GPU
5886 M:      Gerd Hoffmann <kraxel@redhat.com>
5887 L:      virtualization@lists.linux-foundation.org
5888 S:      Maintained
5889 T:      git git://anongit.freedesktop.org/drm/drm-misc
5890 F:      drivers/gpu/drm/tiny/bochs.c
5891
5892 DRM DRIVER FOR BOE HIMAX8279D PANELS
5893 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5894 S:      Maintained
5895 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5896 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5897
5898 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5899 M:      Jagan Teki <jagan@amarulasolutions.com>
5900 S:      Maintained
5901 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5902 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5903
5904 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5905 M:      Linus Walleij <linus.walleij@linaro.org>
5906 S:      Maintained
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/tve200/
5909
5910 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5911 M:      Icenowy Zheng <icenowy@aosc.io>
5912 S:      Maintained
5913 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5914 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5915
5916 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5917 M:      Jagan Teki <jagan@amarulasolutions.com>
5918 S:      Maintained
5919 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5920 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5921
5922 DRM DRIVER FOR GENERIC USB DISPLAY
5923 M:      Noralf Trønnes <noralf@tronnes.org>
5924 S:      Maintained
5925 W:      https://github.com/notro/gud/wiki
5926 T:      git git://anongit.freedesktop.org/drm/drm-misc
5927 F:      drivers/gpu/drm/gud/
5928 F:      include/drm/gud.h
5929
5930 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5931 M:      Hans de Goede <hdegoede@redhat.com>
5932 S:      Maintained
5933 T:      git git://anongit.freedesktop.org/drm/drm-misc
5934 F:      drivers/gpu/drm/tiny/gm12u320.c
5935
5936 DRM DRIVER FOR HX8357D PANELS
5937 M:      Emma Anholt <emma@anholt.net>
5938 S:      Maintained
5939 T:      git git://anongit.freedesktop.org/drm/drm-misc
5940 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5941 F:      drivers/gpu/drm/tiny/hx8357d.c
5942
5943 DRM DRIVER FOR ILITEK ILI9225 PANELS
5944 M:      David Lechner <david@lechnology.com>
5945 S:      Maintained
5946 T:      git git://anongit.freedesktop.org/drm/drm-misc
5947 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5948 F:      drivers/gpu/drm/tiny/ili9225.c
5949
5950 DRM DRIVER FOR ILITEK ILI9486 PANELS
5951 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5952 S:      Maintained
5953 T:      git git://anongit.freedesktop.org/drm/drm-misc
5954 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5955 F:      drivers/gpu/drm/tiny/ili9486.c
5956
5957 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5958 S:      Orphan / Obsolete
5959 F:      drivers/gpu/drm/i810/
5960 F:      include/uapi/drm/i810_drm.h
5961
5962 DRM DRIVER FOR LVDS PANELS
5963 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5964 L:      dri-devel@lists.freedesktop.org
5965 T:      git git://anongit.freedesktop.org/drm/drm-misc
5966 S:      Maintained
5967 F:      drivers/gpu/drm/panel/panel-lvds.c
5968 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5969
5970 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5971 M:      Guido Günther <agx@sigxcpu.org>
5972 R:      Purism Kernel Team <kernel@puri.sm>
5973 S:      Maintained
5974 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5975 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5976
5977 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5978 S:      Orphan / Obsolete
5979 F:      drivers/gpu/drm/mga/
5980 F:      include/uapi/drm/mga_drm.h
5981
5982 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5983 M:      Dave Airlie <airlied@redhat.com>
5984 R:      Thomas Zimmermann <tzimmermann@suse.de>
5985 L:      dri-devel@lists.freedesktop.org
5986 S:      Supported
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      drivers/gpu/drm/mgag200/
5989
5990 DRM DRIVER FOR MI0283QT
5991 M:      Noralf Trønnes <noralf@tronnes.org>
5992 S:      Maintained
5993 T:      git git://anongit.freedesktop.org/drm/drm-misc
5994 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5995 F:      drivers/gpu/drm/tiny/mi0283qt.c
5996
5997 DRM DRIVER FOR MSM ADRENO GPU
5998 M:      Rob Clark <robdclark@gmail.com>
5999 M:      Sean Paul <sean@poorly.run>
6000 L:      linux-arm-msm@vger.kernel.org
6001 L:      dri-devel@lists.freedesktop.org
6002 L:      freedreno@lists.freedesktop.org
6003 S:      Maintained
6004 T:      git https://gitlab.freedesktop.org/drm/msm.git
6005 F:      Documentation/devicetree/bindings/display/msm/
6006 F:      drivers/gpu/drm/msm/
6007 F:      include/uapi/drm/msm_drm.h
6008
6009 DRM DRIVER FOR NOVATEK NT35510 PANELS
6010 M:      Linus Walleij <linus.walleij@linaro.org>
6011 S:      Maintained
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6014 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6015
6016 DRM DRIVER FOR NOVATEK NT36672A PANELS
6017 M:      Sumit Semwal <sumit.semwal@linaro.org>
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6021 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6022
6023 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6024 M:      Ben Skeggs <bskeggs@redhat.com>
6025 L:      dri-devel@lists.freedesktop.org
6026 L:      nouveau@lists.freedesktop.org
6027 S:      Supported
6028 T:      git git://github.com/skeggsb/linux
6029 F:      drivers/gpu/drm/nouveau/
6030 F:      include/uapi/drm/nouveau_drm.h
6031
6032 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6033 M:      Stefan Mavrodiev <stefan@olimex.com>
6034 S:      Maintained
6035 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6036 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6037
6038 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6039 M:      Noralf Trønnes <noralf@tronnes.org>
6040 S:      Maintained
6041 T:      git git://anongit.freedesktop.org/drm/drm-misc
6042 F:      Documentation/devicetree/bindings/display/repaper.txt
6043 F:      drivers/gpu/drm/tiny/repaper.c
6044
6045 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6046 M:      Dave Airlie <airlied@redhat.com>
6047 M:      Gerd Hoffmann <kraxel@redhat.com>
6048 L:      virtualization@lists.linux-foundation.org
6049 S:      Obsolete
6050 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6051 T:      git git://anongit.freedesktop.org/drm/drm-misc
6052 F:      drivers/gpu/drm/tiny/cirrus.c
6053
6054 DRM DRIVER FOR QXL VIRTUAL GPU
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 L:      spice-devel@lists.freedesktop.org
6059 S:      Maintained
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/qxl/
6062 F:      include/uapi/drm/qxl_drm.h
6063
6064 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6065 S:      Orphan / Obsolete
6066 F:      drivers/gpu/drm/r128/
6067 F:      include/uapi/drm/r128_drm.h
6068
6069 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6070 M:      Robert Chiras <robert.chiras@nxp.com>
6071 S:      Maintained
6072 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6073 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6074
6075 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6076 M:      Linus Walleij <linus.walleij@linaro.org>
6077 S:      Maintained
6078 T:      git git://anongit.freedesktop.org/drm/drm-misc
6079 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6080 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6081
6082 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6083 M:      Markuss Broks <markuss.broks@gmail.com>
6084 S:      Maintained
6085 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6086 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6087
6088 DRM DRIVER FOR SITRONIX ST7703 PANELS
6089 M:      Guido Günther <agx@sigxcpu.org>
6090 R:      Purism Kernel Team <kernel@puri.sm>
6091 R:      Ondrej Jirman <megous@megous.com>
6092 S:      Maintained
6093 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6094 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6095
6096 DRM DRIVER FOR SAVAGE VIDEO CARDS
6097 S:      Orphan / Obsolete
6098 F:      drivers/gpu/drm/savage/
6099 F:      include/uapi/drm/savage_drm.h
6100
6101 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6102 M:      Thomas Zimmermann <tzimmermann@suse.de>
6103 L:      dri-devel@lists.freedesktop.org
6104 S:      Maintained
6105 T:      git git://anongit.freedesktop.org/drm/drm-misc
6106 F:      drivers/gpu/drm/tiny/simpledrm.c
6107
6108 DRM DRIVER FOR SIS VIDEO CARDS
6109 S:      Orphan / Obsolete
6110 F:      drivers/gpu/drm/sis/
6111 F:      include/uapi/drm/sis_drm.h
6112
6113 DRM DRIVER FOR SITRONIX ST7586 PANELS
6114 M:      David Lechner <david@lechnology.com>
6115 S:      Maintained
6116 T:      git git://anongit.freedesktop.org/drm/drm-misc
6117 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6118 F:      drivers/gpu/drm/tiny/st7586.c
6119
6120 DRM DRIVER FOR SITRONIX ST7701 PANELS
6121 M:      Jagan Teki <jagan@amarulasolutions.com>
6122 S:      Maintained
6123 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6124 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6125
6126 DRM DRIVER FOR SITRONIX ST7735R PANELS
6127 M:      David Lechner <david@lechnology.com>
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6131 F:      drivers/gpu/drm/tiny/st7735r.c
6132
6133 DRM DRIVER FOR SONY ACX424AKP PANELS
6134 M:      Linus Walleij <linus.walleij@linaro.org>
6135 S:      Maintained
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6138
6139 DRM DRIVER FOR ST-ERICSSON MCDE
6140 M:      Linus Walleij <linus.walleij@linaro.org>
6141 S:      Maintained
6142 T:      git git://anongit.freedesktop.org/drm/drm-misc
6143 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6144 F:      drivers/gpu/drm/mcde/
6145
6146 DRM DRIVER FOR TDFX VIDEO CARDS
6147 S:      Orphan / Obsolete
6148 F:      drivers/gpu/drm/tdfx/
6149
6150 DRM DRIVER FOR TPO TPG110 PANELS
6151 M:      Linus Walleij <linus.walleij@linaro.org>
6152 S:      Maintained
6153 T:      git git://anongit.freedesktop.org/drm/drm-misc
6154 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6155 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6156
6157 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6158 M:      Dave Airlie <airlied@redhat.com>
6159 R:      Sean Paul <sean@poorly.run>
6160 R:      Thomas Zimmermann <tzimmermann@suse.de>
6161 L:      dri-devel@lists.freedesktop.org
6162 S:      Supported
6163 T:      git git://anongit.freedesktop.org/drm/drm-misc
6164 F:      drivers/gpu/drm/udl/
6165
6166 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6167 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6168 M:      Melissa Wen <melissa.srw@gmail.com>
6169 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6170 R:      Daniel Vetter <daniel@ffwll.ch>
6171 L:      dri-devel@lists.freedesktop.org
6172 S:      Maintained
6173 T:      git git://anongit.freedesktop.org/drm/drm-misc
6174 F:      Documentation/gpu/vkms.rst
6175 F:      drivers/gpu/drm/vkms/
6176
6177 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6178 M:      Hans de Goede <hdegoede@redhat.com>
6179 L:      dri-devel@lists.freedesktop.org
6180 S:      Maintained
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      drivers/gpu/drm/vboxvideo/
6183
6184 DRM DRIVER FOR VMWARE VIRTUAL GPU
6185 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6186 M:      Zack Rusin <zackr@vmware.com>
6187 L:      dri-devel@lists.freedesktop.org
6188 S:      Supported
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      drivers/gpu/drm/vmwgfx/
6191 F:      include/uapi/drm/vmwgfx_drm.h
6192
6193 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6194 M:      Linus Walleij <linus.walleij@linaro.org>
6195 S:      Maintained
6196 T:      git git://anongit.freedesktop.org/drm/drm-misc
6197 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6198 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6199
6200 DRM DRIVERS
6201 M:      David Airlie <airlied@linux.ie>
6202 M:      Daniel Vetter <daniel@ffwll.ch>
6203 L:      dri-devel@lists.freedesktop.org
6204 S:      Maintained
6205 B:      https://gitlab.freedesktop.org/drm
6206 C:      irc://irc.oftc.net/dri-devel
6207 T:      git git://anongit.freedesktop.org/drm/drm
6208 F:      Documentation/devicetree/bindings/display/
6209 F:      Documentation/devicetree/bindings/gpu/
6210 F:      Documentation/gpu/
6211 F:      drivers/gpu/
6212 F:      include/drm/
6213 F:      include/linux/vga*
6214 F:      include/uapi/drm/
6215
6216 DRM DRIVERS AND MISC GPU PATCHES
6217 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6218 M:      Maxime Ripard <mripard@kernel.org>
6219 M:      Thomas Zimmermann <tzimmermann@suse.de>
6220 S:      Maintained
6221 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6222 T:      git git://anongit.freedesktop.org/drm/drm-misc
6223 F:      Documentation/gpu/
6224 F:      drivers/gpu/drm/*
6225 F:      drivers/gpu/vga/
6226 F:      include/drm/drm*
6227 F:      include/linux/vga*
6228 F:      include/uapi/drm/drm*
6229
6230 DRM DRIVERS FOR ALLWINNER A10
6231 M:      Maxime Ripard <mripard@kernel.org>
6232 M:      Chen-Yu Tsai <wens@csie.org>
6233 L:      dri-devel@lists.freedesktop.org
6234 S:      Supported
6235 T:      git git://anongit.freedesktop.org/drm/drm-misc
6236 F:      Documentation/devicetree/bindings/display/allwinner*
6237 F:      drivers/gpu/drm/sun4i/
6238
6239 DRM DRIVERS FOR AMLOGIC SOCS
6240 M:      Neil Armstrong <narmstrong@baylibre.com>
6241 L:      dri-devel@lists.freedesktop.org
6242 L:      linux-amlogic@lists.infradead.org
6243 S:      Supported
6244 W:      http://linux-meson.com/
6245 T:      git git://anongit.freedesktop.org/drm/drm-misc
6246 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6247 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6248 F:      Documentation/gpu/meson.rst
6249 F:      drivers/gpu/drm/meson/
6250
6251 DRM DRIVERS FOR ATMEL HLCDC
6252 M:      Sam Ravnborg <sam@ravnborg.org>
6253 M:      Boris Brezillon <bbrezillon@kernel.org>
6254 L:      dri-devel@lists.freedesktop.org
6255 S:      Supported
6256 T:      git git://anongit.freedesktop.org/drm/drm-misc
6257 F:      Documentation/devicetree/bindings/display/atmel/
6258 F:      drivers/gpu/drm/atmel-hlcdc/
6259
6260 DRM DRIVERS FOR BRIDGE CHIPS
6261 M:      Andrzej Hajda <a.hajda@samsung.com>
6262 M:      Neil Armstrong <narmstrong@baylibre.com>
6263 M:      Robert Foss <robert.foss@linaro.org>
6264 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6265 R:      Jonas Karlman <jonas@kwiboo.se>
6266 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6267 S:      Maintained
6268 T:      git git://anongit.freedesktop.org/drm/drm-misc
6269 F:      drivers/gpu/drm/bridge/
6270
6271 DRM DRIVERS FOR EXYNOS
6272 M:      Inki Dae <inki.dae@samsung.com>
6273 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6274 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6275 M:      Kyungmin Park <kyungmin.park@samsung.com>
6276 L:      dri-devel@lists.freedesktop.org
6277 S:      Supported
6278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6279 F:      Documentation/devicetree/bindings/display/exynos/
6280 F:      drivers/gpu/drm/exynos/
6281 F:      include/uapi/drm/exynos_drm.h
6282
6283 DRM DRIVERS FOR FREESCALE DCU
6284 M:      Stefan Agner <stefan@agner.ch>
6285 M:      Alison Wang <alison.wang@nxp.com>
6286 L:      dri-devel@lists.freedesktop.org
6287 S:      Supported
6288 T:      git git://anongit.freedesktop.org/drm/drm-misc
6289 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6290 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6291 F:      drivers/gpu/drm/fsl-dcu/
6292
6293 DRM DRIVERS FOR FREESCALE IMX
6294 M:      Philipp Zabel <p.zabel@pengutronix.de>
6295 L:      dri-devel@lists.freedesktop.org
6296 S:      Maintained
6297 F:      Documentation/devicetree/bindings/display/imx/
6298 F:      drivers/gpu/drm/imx/
6299 F:      drivers/gpu/ipu-v3/
6300
6301 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6302 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6303 L:      dri-devel@lists.freedesktop.org
6304 S:      Maintained
6305 T:      git git://github.com/patjak/drm-gma500
6306 F:      drivers/gpu/drm/gma500/
6307
6308 DRM DRIVERS FOR HISILICON
6309 M:      Xinliang Liu <xinliang.liu@linaro.org>
6310 M:      Tian Tao  <tiantao6@hisilicon.com>
6311 R:      John Stultz <john.stultz@linaro.org>
6312 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6313 R:      Chen Feng <puck.chen@hisilicon.com>
6314 L:      dri-devel@lists.freedesktop.org
6315 S:      Maintained
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      Documentation/devicetree/bindings/display/hisilicon/
6318 F:      drivers/gpu/drm/hisilicon/
6319
6320 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6321 M:      Deepak Rawat <drawat.floss@gmail.com>
6322 L:      linux-hyperv@vger.kernel.org
6323 L:      dri-devel@lists.freedesktop.org
6324 S:      Maintained
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      drivers/gpu/drm/hyperv
6327
6328 DRM DRIVERS FOR LIMA
6329 M:      Qiang Yu <yuq825@gmail.com>
6330 L:      dri-devel@lists.freedesktop.org
6331 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6332 S:      Maintained
6333 T:      git git://anongit.freedesktop.org/drm/drm-misc
6334 F:      drivers/gpu/drm/lima/
6335 F:      include/uapi/drm/lima_drm.h
6336
6337 DRM DRIVERS FOR MEDIATEK
6338 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6339 M:      Philipp Zabel <p.zabel@pengutronix.de>
6340 L:      dri-devel@lists.freedesktop.org
6341 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6342 S:      Supported
6343 F:      Documentation/devicetree/bindings/display/mediatek/
6344 F:      drivers/gpu/drm/mediatek/
6345 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6346 F:      drivers/phy/mediatek/phy-mtk-mipi*
6347
6348 DRM DRIVERS FOR NVIDIA TEGRA
6349 M:      Thierry Reding <thierry.reding@gmail.com>
6350 L:      dri-devel@lists.freedesktop.org
6351 L:      linux-tegra@vger.kernel.org
6352 S:      Supported
6353 T:      git git://anongit.freedesktop.org/tegra/linux.git
6354 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6355 F:      drivers/gpu/drm/tegra/
6356 F:      drivers/gpu/host1x/
6357 F:      include/linux/host1x.h
6358 F:      include/uapi/drm/tegra_drm.h
6359
6360 DRM DRIVERS FOR RENESAS
6361 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6362 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6363 L:      dri-devel@lists.freedesktop.org
6364 L:      linux-renesas-soc@vger.kernel.org
6365 S:      Supported
6366 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6367 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6368 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6369 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6370 F:      drivers/gpu/drm/rcar-du/
6371 F:      drivers/gpu/drm/shmobile/
6372 F:      include/linux/platform_data/shmob_drm.h
6373
6374 DRM DRIVERS FOR ROCKCHIP
6375 M:      Sandy Huang <hjc@rock-chips.com>
6376 M:      Heiko Stübner <heiko@sntech.de>
6377 L:      dri-devel@lists.freedesktop.org
6378 S:      Maintained
6379 T:      git git://anongit.freedesktop.org/drm/drm-misc
6380 F:      Documentation/devicetree/bindings/display/rockchip/
6381 F:      drivers/gpu/drm/rockchip/
6382
6383 DRM DRIVERS FOR STI
6384 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6385 L:      dri-devel@lists.freedesktop.org
6386 S:      Maintained
6387 T:      git git://anongit.freedesktop.org/drm/drm-misc
6388 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6389 F:      drivers/gpu/drm/sti
6390
6391 DRM DRIVERS FOR STM
6392 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6393 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6394 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6395 L:      dri-devel@lists.freedesktop.org
6396 S:      Maintained
6397 T:      git git://anongit.freedesktop.org/drm/drm-misc
6398 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6399 F:      drivers/gpu/drm/stm
6400
6401 DRM DRIVERS FOR TI KEYSTONE
6402 M:      Jyri Sarha <jyri.sarha@iki.fi>
6403 M:      Tomi Valkeinen <tomba@kernel.org>
6404 L:      dri-devel@lists.freedesktop.org
6405 S:      Maintained
6406 T:      git git://anongit.freedesktop.org/drm/drm-misc
6407 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6408 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6409 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6410 F:      drivers/gpu/drm/tidss/
6411
6412 DRM DRIVERS FOR TI LCDC
6413 M:      Jyri Sarha <jyri.sarha@iki.fi>
6414 R:      Tomi Valkeinen <tomba@kernel.org>
6415 L:      dri-devel@lists.freedesktop.org
6416 S:      Maintained
6417 F:      Documentation/devicetree/bindings/display/tilcdc/
6418 F:      drivers/gpu/drm/tilcdc/
6419
6420 DRM DRIVERS FOR TI OMAP
6421 M:      Tomi Valkeinen <tomba@kernel.org>
6422 L:      dri-devel@lists.freedesktop.org
6423 S:      Maintained
6424 F:      Documentation/devicetree/bindings/display/ti/
6425 F:      drivers/gpu/drm/omapdrm/
6426
6427 DRM DRIVERS FOR V3D
6428 M:      Emma Anholt <emma@anholt.net>
6429 S:      Supported
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6432 F:      drivers/gpu/drm/v3d/
6433 F:      include/uapi/drm/v3d_drm.h
6434
6435 DRM DRIVERS FOR VC4
6436 M:      Emma Anholt <emma@anholt.net>
6437 M:      Maxime Ripard <mripard@kernel.org>
6438 S:      Supported
6439 T:      git git://github.com/anholt/linux
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6442 F:      drivers/gpu/drm/vc4/
6443 F:      include/uapi/drm/vc4_drm.h
6444
6445 DRM DRIVERS FOR VIVANTE GPU IP
6446 M:      Lucas Stach <l.stach@pengutronix.de>
6447 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6448 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6449 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6450 L:      dri-devel@lists.freedesktop.org
6451 S:      Maintained
6452 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6453 F:      drivers/gpu/drm/etnaviv/
6454 F:      include/uapi/drm/etnaviv_drm.h
6455
6456 DRM DRIVERS FOR XEN
6457 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6458 L:      dri-devel@lists.freedesktop.org
6459 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6460 S:      Supported
6461 T:      git git://anongit.freedesktop.org/drm/drm-misc
6462 F:      Documentation/gpu/xen-front.rst
6463 F:      drivers/gpu/drm/xen/
6464
6465 DRM DRIVERS FOR XILINX
6466 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6467 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6468 L:      dri-devel@lists.freedesktop.org
6469 S:      Maintained
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/xlnx/
6472 F:      drivers/gpu/drm/xlnx/
6473
6474 DRM PANEL DRIVERS
6475 M:      Thierry Reding <thierry.reding@gmail.com>
6476 R:      Sam Ravnborg <sam@ravnborg.org>
6477 L:      dri-devel@lists.freedesktop.org
6478 S:      Maintained
6479 T:      git git://anongit.freedesktop.org/drm/drm-misc
6480 F:      Documentation/devicetree/bindings/display/panel/
6481 F:      drivers/gpu/drm/drm_panel.c
6482 F:      drivers/gpu/drm/panel/
6483 F:      include/drm/drm_panel.h
6484
6485 DRM TTM SUBSYSTEM
6486 M:      Christian Koenig <christian.koenig@amd.com>
6487 M:      Huang Rui <ray.huang@amd.com>
6488 L:      dri-devel@lists.freedesktop.org
6489 S:      Maintained
6490 T:      git git://anongit.freedesktop.org/drm/drm-misc
6491 F:      drivers/gpu/drm/ttm/
6492 F:      include/drm/ttm/
6493
6494 DRM GPU SCHEDULER
6495 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6496 L:      dri-devel@lists.freedesktop.org
6497 S:      Maintained
6498 T:      git git://anongit.freedesktop.org/drm/drm-misc
6499 F:      drivers/gpu/drm/scheduler/
6500 F:      include/drm/gpu_scheduler.h
6501
6502 DSBR100 USB FM RADIO DRIVER
6503 M:      Alexey Klimov <klimov.linux@gmail.com>
6504 L:      linux-media@vger.kernel.org
6505 S:      Maintained
6506 T:      git git://linuxtv.org/media_tree.git
6507 F:      drivers/media/radio/dsbr100.c
6508
6509 DT3155 MEDIA DRIVER
6510 M:      Hans Verkuil <hverkuil@xs4all.nl>
6511 L:      linux-media@vger.kernel.org
6512 S:      Odd Fixes
6513 W:      https://linuxtv.org
6514 T:      git git://linuxtv.org/media_tree.git
6515 F:      drivers/media/pci/dt3155/
6516
6517 DVB_USB_AF9015 MEDIA DRIVER
6518 M:      Antti Palosaari <crope@iki.fi>
6519 L:      linux-media@vger.kernel.org
6520 S:      Maintained
6521 W:      https://linuxtv.org
6522 W:      http://palosaari.fi/linux/
6523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6524 T:      git git://linuxtv.org/anttip/media_tree.git
6525 F:      drivers/media/usb/dvb-usb-v2/af9015*
6526
6527 DVB_USB_AF9035 MEDIA DRIVER
6528 M:      Antti Palosaari <crope@iki.fi>
6529 L:      linux-media@vger.kernel.org
6530 S:      Maintained
6531 W:      https://linuxtv.org
6532 W:      http://palosaari.fi/linux/
6533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6534 T:      git git://linuxtv.org/anttip/media_tree.git
6535 F:      drivers/media/usb/dvb-usb-v2/af9035*
6536
6537 DVB_USB_ANYSEE MEDIA DRIVER
6538 M:      Antti Palosaari <crope@iki.fi>
6539 L:      linux-media@vger.kernel.org
6540 S:      Maintained
6541 W:      https://linuxtv.org
6542 W:      http://palosaari.fi/linux/
6543 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6544 T:      git git://linuxtv.org/anttip/media_tree.git
6545 F:      drivers/media/usb/dvb-usb-v2/anysee*
6546
6547 DVB_USB_AU6610 MEDIA DRIVER
6548 M:      Antti Palosaari <crope@iki.fi>
6549 L:      linux-media@vger.kernel.org
6550 S:      Maintained
6551 W:      https://linuxtv.org
6552 W:      http://palosaari.fi/linux/
6553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6554 T:      git git://linuxtv.org/anttip/media_tree.git
6555 F:      drivers/media/usb/dvb-usb-v2/au6610*
6556
6557 DVB_USB_CE6230 MEDIA DRIVER
6558 M:      Antti Palosaari <crope@iki.fi>
6559 L:      linux-media@vger.kernel.org
6560 S:      Maintained
6561 W:      https://linuxtv.org
6562 W:      http://palosaari.fi/linux/
6563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6564 T:      git git://linuxtv.org/anttip/media_tree.git
6565 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6566
6567 DVB_USB_CXUSB MEDIA DRIVER
6568 M:      Michael Krufky <mkrufky@linuxtv.org>
6569 L:      linux-media@vger.kernel.org
6570 S:      Maintained
6571 W:      https://linuxtv.org
6572 W:      http://github.com/mkrufky
6573 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6574 T:      git git://linuxtv.org/media_tree.git
6575 F:      drivers/media/usb/dvb-usb/cxusb*
6576
6577 DVB_USB_EC168 MEDIA DRIVER
6578 M:      Antti Palosaari <crope@iki.fi>
6579 L:      linux-media@vger.kernel.org
6580 S:      Maintained
6581 W:      https://linuxtv.org
6582 W:      http://palosaari.fi/linux/
6583 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6584 T:      git git://linuxtv.org/anttip/media_tree.git
6585 F:      drivers/media/usb/dvb-usb-v2/ec168*
6586
6587 DVB_USB_GL861 MEDIA DRIVER
6588 M:      Antti Palosaari <crope@iki.fi>
6589 L:      linux-media@vger.kernel.org
6590 S:      Maintained
6591 W:      https://linuxtv.org
6592 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6593 T:      git git://linuxtv.org/anttip/media_tree.git
6594 F:      drivers/media/usb/dvb-usb-v2/gl861*
6595
6596 DVB_USB_MXL111SF MEDIA DRIVER
6597 M:      Michael Krufky <mkrufky@linuxtv.org>
6598 L:      linux-media@vger.kernel.org
6599 S:      Maintained
6600 W:      https://linuxtv.org
6601 W:      http://github.com/mkrufky
6602 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6603 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6604 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6605
6606 DVB_USB_RTL28XXU MEDIA DRIVER
6607 M:      Antti Palosaari <crope@iki.fi>
6608 L:      linux-media@vger.kernel.org
6609 S:      Maintained
6610 W:      https://linuxtv.org
6611 W:      http://palosaari.fi/linux/
6612 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6613 T:      git git://linuxtv.org/anttip/media_tree.git
6614 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6615
6616 DVB_USB_V2 MEDIA DRIVER
6617 M:      Antti Palosaari <crope@iki.fi>
6618 L:      linux-media@vger.kernel.org
6619 S:      Maintained
6620 W:      https://linuxtv.org
6621 W:      http://palosaari.fi/linux/
6622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6623 T:      git git://linuxtv.org/anttip/media_tree.git
6624 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6625 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6626
6627 DYNAMIC DEBUG
6628 M:      Jason Baron <jbaron@akamai.com>
6629 S:      Maintained
6630 F:      include/linux/dynamic_debug.h
6631 F:      lib/dynamic_debug.c
6632
6633 DYNAMIC INTERRUPT MODERATION
6634 M:      Tal Gilboa <talgi@nvidia.com>
6635 S:      Maintained
6636 F:      Documentation/networking/net_dim.rst
6637 F:      include/linux/dim.h
6638 F:      lib/dim/
6639
6640 DZ DECSTATION DZ11 SERIAL DRIVER
6641 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6642 S:      Maintained
6643 F:      drivers/tty/serial/dz.*
6644
6645 E3X0 POWER BUTTON DRIVER
6646 M:      Moritz Fischer <moritz.fischer@ettus.com>
6647 L:      usrp-users@lists.ettus.com
6648 S:      Supported
6649 W:      http://www.ettus.com
6650 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6651 F:      drivers/input/misc/e3x0-button.c
6652
6653 E4000 MEDIA DRIVER
6654 M:      Antti Palosaari <crope@iki.fi>
6655 L:      linux-media@vger.kernel.org
6656 S:      Maintained
6657 W:      https://linuxtv.org
6658 W:      http://palosaari.fi/linux/
6659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6660 T:      git git://linuxtv.org/anttip/media_tree.git
6661 F:      drivers/media/tuners/e4000*
6662
6663 EARTH_PT1 MEDIA DRIVER
6664 M:      Akihiro Tsukada <tskd08@gmail.com>
6665 L:      linux-media@vger.kernel.org
6666 S:      Odd Fixes
6667 F:      drivers/media/pci/pt1/
6668
6669 EARTH_PT3 MEDIA DRIVER
6670 M:      Akihiro Tsukada <tskd08@gmail.com>
6671 L:      linux-media@vger.kernel.org
6672 S:      Odd Fixes
6673 F:      drivers/media/pci/pt3/
6674
6675 EC100 MEDIA DRIVER
6676 M:      Antti Palosaari <crope@iki.fi>
6677 L:      linux-media@vger.kernel.org
6678 S:      Maintained
6679 W:      https://linuxtv.org
6680 W:      http://palosaari.fi/linux/
6681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6682 T:      git git://linuxtv.org/anttip/media_tree.git
6683 F:      drivers/media/dvb-frontends/ec100*
6684
6685 ECRYPT FILE SYSTEM
6686 M:      Tyler Hicks <code@tyhicks.com>
6687 L:      ecryptfs@vger.kernel.org
6688 S:      Odd Fixes
6689 W:      http://ecryptfs.org
6690 W:      https://launchpad.net/ecryptfs
6691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6692 F:      Documentation/filesystems/ecryptfs.rst
6693 F:      fs/ecryptfs/
6694
6695 EDAC-AMD64
6696 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6697 L:      linux-edac@vger.kernel.org
6698 S:      Supported
6699 F:      drivers/edac/amd64_edac*
6700 F:      drivers/edac/mce_amd*
6701
6702 EDAC-ARMADA
6703 M:      Jan Luebbe <jlu@pengutronix.de>
6704 L:      linux-edac@vger.kernel.org
6705 S:      Maintained
6706 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6707 F:      drivers/edac/armada_xp_*
6708
6709 EDAC-AST2500
6710 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6711 S:      Supported
6712 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6713 F:      drivers/edac/aspeed_edac.c
6714
6715 EDAC-BLUEFIELD
6716 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6717 S:      Supported
6718 F:      drivers/edac/bluefield_edac.c
6719
6720 EDAC-CALXEDA
6721 M:      Andre Przywara <andre.przywara@arm.com>
6722 L:      linux-edac@vger.kernel.org
6723 S:      Maintained
6724 F:      drivers/edac/highbank*
6725
6726 EDAC-CAVIUM OCTEON
6727 M:      Ralf Baechle <ralf@linux-mips.org>
6728 L:      linux-edac@vger.kernel.org
6729 L:      linux-mips@vger.kernel.org
6730 S:      Supported
6731 F:      drivers/edac/octeon_edac*
6732
6733 EDAC-CAVIUM THUNDERX
6734 M:      Robert Richter <rric@kernel.org>
6735 L:      linux-edac@vger.kernel.org
6736 S:      Odd Fixes
6737 F:      drivers/edac/thunderx_edac*
6738
6739 EDAC-CORE
6740 M:      Borislav Petkov <bp@alien8.de>
6741 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6742 M:      Tony Luck <tony.luck@intel.com>
6743 R:      James Morse <james.morse@arm.com>
6744 R:      Robert Richter <rric@kernel.org>
6745 L:      linux-edac@vger.kernel.org
6746 S:      Supported
6747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6748 F:      Documentation/admin-guide/ras.rst
6749 F:      Documentation/driver-api/edac.rst
6750 F:      drivers/edac/
6751 F:      include/linux/edac.h
6752
6753 EDAC-DMC520
6754 M:      Lei Wang <lewan@microsoft.com>
6755 L:      linux-edac@vger.kernel.org
6756 S:      Supported
6757 F:      drivers/edac/dmc520_edac.c
6758
6759 EDAC-E752X
6760 M:      Mark Gross <markgross@kernel.org>
6761 L:      linux-edac@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/edac/e752x_edac.c
6764
6765 EDAC-E7XXX
6766 L:      linux-edac@vger.kernel.org
6767 S:      Maintained
6768 F:      drivers/edac/e7xxx_edac.c
6769
6770 EDAC-FSL_DDR
6771 M:      York Sun <york.sun@nxp.com>
6772 L:      linux-edac@vger.kernel.org
6773 S:      Maintained
6774 F:      drivers/edac/fsl_ddr_edac.*
6775
6776 EDAC-GHES
6777 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6778 L:      linux-edac@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/edac/ghes_edac.c
6781
6782 EDAC-I10NM
6783 M:      Tony Luck <tony.luck@intel.com>
6784 L:      linux-edac@vger.kernel.org
6785 S:      Maintained
6786 F:      drivers/edac/i10nm_base.c
6787
6788 EDAC-I3000
6789 L:      linux-edac@vger.kernel.org
6790 S:      Orphan
6791 F:      drivers/edac/i3000_edac.c
6792
6793 EDAC-I5000
6794 L:      linux-edac@vger.kernel.org
6795 S:      Maintained
6796 F:      drivers/edac/i5000_edac.c
6797
6798 EDAC-I5400
6799 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6800 L:      linux-edac@vger.kernel.org
6801 S:      Maintained
6802 F:      drivers/edac/i5400_edac.c
6803
6804 EDAC-I7300
6805 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6806 L:      linux-edac@vger.kernel.org
6807 S:      Maintained
6808 F:      drivers/edac/i7300_edac.c
6809
6810 EDAC-I7CORE
6811 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6812 L:      linux-edac@vger.kernel.org
6813 S:      Maintained
6814 F:      drivers/edac/i7core_edac.c
6815
6816 EDAC-I82443BXGX
6817 M:      Tim Small <tim@buttersideup.com>
6818 L:      linux-edac@vger.kernel.org
6819 S:      Maintained
6820 F:      drivers/edac/i82443bxgx_edac.c
6821
6822 EDAC-I82975X
6823 M:      "Arvind R." <arvino55@gmail.com>
6824 L:      linux-edac@vger.kernel.org
6825 S:      Maintained
6826 F:      drivers/edac/i82975x_edac.c
6827
6828 EDAC-IE31200
6829 M:      Jason Baron <jbaron@akamai.com>
6830 L:      linux-edac@vger.kernel.org
6831 S:      Maintained
6832 F:      drivers/edac/ie31200_edac.c
6833
6834 EDAC-IGEN6
6835 M:      Tony Luck <tony.luck@intel.com>
6836 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6837 L:      linux-edac@vger.kernel.org
6838 S:      Maintained
6839 F:      drivers/edac/igen6_edac.c
6840
6841 EDAC-MPC85XX
6842 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6843 L:      linux-edac@vger.kernel.org
6844 S:      Maintained
6845 F:      drivers/edac/mpc85xx_edac.[ch]
6846
6847 EDAC-PASEMI
6848 M:      Egor Martovetsky <egor@pasemi.com>
6849 L:      linux-edac@vger.kernel.org
6850 S:      Maintained
6851 F:      drivers/edac/pasemi_edac.c
6852
6853 EDAC-PND2
6854 M:      Tony Luck <tony.luck@intel.com>
6855 L:      linux-edac@vger.kernel.org
6856 S:      Maintained
6857 F:      drivers/edac/pnd2_edac.[ch]
6858
6859 EDAC-QCOM
6860 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6861 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6862 L:      linux-arm-msm@vger.kernel.org
6863 L:      linux-edac@vger.kernel.org
6864 S:      Maintained
6865 F:      drivers/edac/qcom_edac.c
6866
6867 EDAC-R82600
6868 M:      Tim Small <tim@buttersideup.com>
6869 L:      linux-edac@vger.kernel.org
6870 S:      Maintained
6871 F:      drivers/edac/r82600_edac.c
6872
6873 EDAC-SBRIDGE
6874 M:      Tony Luck <tony.luck@intel.com>
6875 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6876 L:      linux-edac@vger.kernel.org
6877 S:      Maintained
6878 F:      drivers/edac/sb_edac.c
6879
6880 EDAC-SIFIVE
6881 M:      Yash Shah <yash.shah@sifive.com>
6882 L:      linux-edac@vger.kernel.org
6883 S:      Supported
6884 F:      drivers/edac/sifive_edac.c
6885
6886 EDAC-SKYLAKE
6887 M:      Tony Luck <tony.luck@intel.com>
6888 L:      linux-edac@vger.kernel.org
6889 S:      Maintained
6890 F:      drivers/edac/skx_*.[ch]
6891
6892 EDAC-TI
6893 M:      Tero Kristo <kristo@kernel.org>
6894 L:      linux-edac@vger.kernel.org
6895 S:      Odd Fixes
6896 F:      drivers/edac/ti_edac.c
6897
6898 EDIROL UA-101/UA-1000 DRIVER
6899 M:      Clemens Ladisch <clemens@ladisch.de>
6900 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6901 S:      Maintained
6902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6903 F:      sound/usb/misc/ua101.c
6904
6905 EFI TEST DRIVER
6906 M:      Ivan Hu <ivan.hu@canonical.com>
6907 M:      Ard Biesheuvel <ardb@kernel.org>
6908 L:      linux-efi@vger.kernel.org
6909 S:      Maintained
6910 F:      drivers/firmware/efi/test/
6911
6912 EFI VARIABLE FILESYSTEM
6913 M:      Matthew Garrett <matthew.garrett@nebula.com>
6914 M:      Jeremy Kerr <jk@ozlabs.org>
6915 M:      Ard Biesheuvel <ardb@kernel.org>
6916 L:      linux-efi@vger.kernel.org
6917 S:      Maintained
6918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6919 F:      fs/efivarfs/
6920
6921 EFIFB FRAMEBUFFER DRIVER
6922 M:      Peter Jones <pjones@redhat.com>
6923 L:      linux-fbdev@vger.kernel.org
6924 S:      Maintained
6925 F:      drivers/video/fbdev/efifb.c
6926
6927 EFS FILESYSTEM
6928 S:      Orphan
6929 W:      http://aeschi.ch.eu.org/efs/
6930 F:      fs/efs/
6931
6932 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6933 M:      Douglas Miller <dougmill@linux.ibm.com>
6934 L:      netdev@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/net/ethernet/ibm/ehea/
6937
6938 EM28XX VIDEO4LINUX DRIVER
6939 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6940 L:      linux-media@vger.kernel.org
6941 S:      Maintained
6942 W:      https://linuxtv.org
6943 T:      git git://linuxtv.org/media_tree.git
6944 F:      Documentation/admin-guide/media/em28xx*
6945 F:      drivers/media/usb/em28xx/
6946
6947 EMBEDDED LINUX
6948 M:      Matt Mackall <mpm@selenic.com>
6949 M:      David Woodhouse <dwmw2@infradead.org>
6950 L:      linux-embedded@vger.kernel.org
6951 S:      Maintained
6952
6953 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6954 M:      Adrian Hunter <adrian.hunter@intel.com>
6955 M:      Ritesh Harjani <riteshh@codeaurora.org>
6956 M:      Asutosh Das <asutoshd@codeaurora.org>
6957 L:      linux-mmc@vger.kernel.org
6958 S:      Maintained
6959 F:      drivers/mmc/host/cqhci*
6960
6961 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6962 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6963 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6964 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6965 L:      linux-scsi@vger.kernel.org
6966 S:      Supported
6967 W:      http://www.broadcom.com
6968 F:      drivers/scsi/be2iscsi/
6969
6970 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6971 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6972 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6973 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6974 L:      netdev@vger.kernel.org
6975 S:      Supported
6976 W:      http://www.emulex.com
6977 F:      drivers/net/ethernet/emulex/benet/
6978
6979 EMULEX ONECONNECT ROCE DRIVER
6980 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6981 L:      linux-rdma@vger.kernel.org
6982 S:      Odd Fixes
6983 W:      http://www.broadcom.com
6984 F:      drivers/infiniband/hw/ocrdma/
6985 F:      include/uapi/rdma/ocrdma-abi.h
6986
6987 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6988 M:      James Smart <james.smart@broadcom.com>
6989 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6990 L:      linux-scsi@vger.kernel.org
6991 S:      Supported
6992 W:      http://www.broadcom.com
6993 F:      drivers/scsi/lpfc/
6994
6995 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6996 M:      James Smart <james.smart@broadcom.com>
6997 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6998 L:      linux-scsi@vger.kernel.org
6999 L:      target-devel@vger.kernel.org
7000 S:      Supported
7001 W:      http://www.broadcom.com
7002 F:      drivers/scsi/elx/
7003
7004 ENE CB710 FLASH CARD READER DRIVER
7005 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7006 S:      Maintained
7007 F:      drivers/misc/cb710/
7008 F:      drivers/mmc/host/cb710-mmc.*
7009 F:      include/linux/cb710.h
7010
7011 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7012 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7013 S:      Maintained
7014 F:      drivers/media/rc/ene_ir.*
7015
7016 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7017 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7018 L:      linuxppc-dev@lists.ozlabs.org
7019 S:      Maintained
7020 F:      drivers/tty/ehv_bytechan.c
7021
7022 EPSON S1D13XXX FRAMEBUFFER DRIVER
7023 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7024 S:      Maintained
7025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7026 F:      drivers/video/fbdev/s1d13xxxfb.c
7027 F:      include/video/s1d13xxxfb.h
7028
7029 EROFS FILE SYSTEM
7030 M:      Gao Xiang <xiang@kernel.org>
7031 M:      Chao Yu <chao@kernel.org>
7032 L:      linux-erofs@lists.ozlabs.org
7033 S:      Maintained
7034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7035 F:      Documentation/filesystems/erofs.rst
7036 F:      fs/erofs/
7037 F:      include/trace/events/erofs.h
7038
7039 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7040 M:      Jeff Layton <jlayton@kernel.org>
7041 S:      Maintained
7042 F:      include/linux/errseq.h
7043 F:      lib/errseq.c
7044
7045 ET131X NETWORK DRIVER
7046 M:      Mark Einon <mark.einon@gmail.com>
7047 S:      Odd Fixes
7048 F:      drivers/net/ethernet/agere/
7049
7050 ETAS ES58X CAN/USB DRIVER
7051 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7052 L:      linux-can@vger.kernel.org
7053 S:      Maintained
7054 F:      drivers/net/can/usb/etas_es58x/
7055
7056 ETHERNET BRIDGE
7057 M:      Roopa Prabhu <roopa@nvidia.com>
7058 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7059 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7060 L:      netdev@vger.kernel.org
7061 S:      Maintained
7062 W:      http://www.linuxfoundation.org/en/Net:Bridge
7063 F:      include/linux/netfilter_bridge/
7064 F:      net/bridge/
7065
7066 ETHERNET PHY LIBRARY
7067 M:      Andrew Lunn <andrew@lunn.ch>
7068 M:      Heiner Kallweit <hkallweit1@gmail.com>
7069 R:      Russell King <linux@armlinux.org.uk>
7070 L:      netdev@vger.kernel.org
7071 S:      Maintained
7072 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7073 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7074 F:      Documentation/devicetree/bindings/net/mdio*
7075 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7076 F:      Documentation/networking/phy.rst
7077 F:      drivers/net/mdio/
7078 F:      drivers/net/mdio/acpi_mdio.c
7079 F:      drivers/net/mdio/fwnode_mdio.c
7080 F:      drivers/net/mdio/of_mdio.c
7081 F:      drivers/net/pcs/
7082 F:      drivers/net/phy/
7083 F:      include/dt-bindings/net/qca-ar803x.h
7084 F:      include/linux/*mdio*.h
7085 F:      include/linux/mdio/*.h
7086 F:      include/linux/of_net.h
7087 F:      include/linux/phy.h
7088 F:      include/linux/phy_fixed.h
7089 F:      include/linux/platform_data/mdio-bcm-unimac.h
7090 F:      include/linux/platform_data/mdio-gpio.h
7091 F:      include/trace/events/mdio.h
7092 F:      include/uapi/linux/mdio.h
7093 F:      include/uapi/linux/mii.h
7094 F:      net/core/of_net.c
7095
7096 EXFAT FILE SYSTEM
7097 M:      Namjae Jeon <linkinjeon@kernel.org>
7098 M:      Sungjong Seo <sj1557.seo@samsung.com>
7099 L:      linux-fsdevel@vger.kernel.org
7100 S:      Maintained
7101 F:      fs/exfat/
7102
7103 EXT2 FILE SYSTEM
7104 M:      Jan Kara <jack@suse.com>
7105 L:      linux-ext4@vger.kernel.org
7106 S:      Maintained
7107 F:      Documentation/filesystems/ext2.rst
7108 F:      fs/ext2/
7109 F:      include/linux/ext2*
7110
7111 EXT4 FILE SYSTEM
7112 M:      "Theodore Ts'o" <tytso@mit.edu>
7113 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7114 L:      linux-ext4@vger.kernel.org
7115 S:      Maintained
7116 W:      http://ext4.wiki.kernel.org
7117 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7119 F:      Documentation/filesystems/ext4/
7120 F:      fs/ext4/
7121 F:      include/trace/events/ext4.h
7122
7123 Extended Verification Module (EVM)
7124 M:      Mimi Zohar <zohar@linux.ibm.com>
7125 L:      linux-integrity@vger.kernel.org
7126 S:      Supported
7127 F:      security/integrity/evm/
7128
7129 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7130 M:      Ard Biesheuvel <ardb@kernel.org>
7131 L:      linux-efi@vger.kernel.org
7132 S:      Maintained
7133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7134 F:      Documentation/admin-guide/efi-stub.rst
7135 F:      arch/*/include/asm/efi.h
7136 F:      arch/*/kernel/efi.c
7137 F:      arch/arm/boot/compressed/efi-header.S
7138 F:      arch/arm64/kernel/efi-entry.S
7139 F:      arch/x86/platform/efi/
7140 F:      drivers/firmware/efi/
7141 F:      include/linux/efi*.h
7142
7143 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7144 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7145 M:      Chanwoo Choi <cw00.choi@samsung.com>
7146 L:      linux-kernel@vger.kernel.org
7147 S:      Maintained
7148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7149 F:      Documentation/devicetree/bindings/extcon/
7150 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7151 F:      drivers/extcon/
7152 F:      include/linux/extcon.h
7153 F:      include/linux/extcon/
7154
7155 EXTRA BOOT CONFIG
7156 M:      Masami Hiramatsu <mhiramat@kernel.org>
7157 S:      Maintained
7158 F:      Documentation/admin-guide/bootconfig.rst
7159 F:      fs/proc/bootconfig.c
7160 F:      include/linux/bootconfig.h
7161 F:      lib/bootconfig.c
7162 F:      tools/bootconfig/*
7163 F:      tools/bootconfig/scripts/*
7164
7165 EXYNOS DP DRIVER
7166 M:      Jingoo Han <jingoohan1@gmail.com>
7167 L:      dri-devel@lists.freedesktop.org
7168 S:      Maintained
7169 F:      drivers/gpu/drm/exynos/exynos_dp*
7170
7171 EXYNOS SYSMMU (IOMMU) driver
7172 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7173 L:      iommu@lists.linux-foundation.org
7174 S:      Maintained
7175 F:      drivers/iommu/exynos-iommu.c
7176
7177 F2FS FILE SYSTEM
7178 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7179 M:      Chao Yu <chao@kernel.org>
7180 L:      linux-f2fs-devel@lists.sourceforge.net
7181 S:      Maintained
7182 W:      https://f2fs.wiki.kernel.org/
7183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7184 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7185 F:      Documentation/filesystems/f2fs.rst
7186 F:      fs/f2fs/
7187 F:      include/linux/f2fs_fs.h
7188 F:      include/trace/events/f2fs.h
7189 F:      include/uapi/linux/f2fs.h
7190
7191 F71805F HARDWARE MONITORING DRIVER
7192 M:      Jean Delvare <jdelvare@suse.com>
7193 L:      linux-hwmon@vger.kernel.org
7194 S:      Maintained
7195 F:      Documentation/hwmon/f71805f.rst
7196 F:      drivers/hwmon/f71805f.c
7197
7198 FADDR2LINE
7199 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7200 S:      Maintained
7201 F:      scripts/faddr2line
7202
7203 FAILOVER MODULE
7204 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7205 L:      netdev@vger.kernel.org
7206 S:      Supported
7207 F:      Documentation/networking/failover.rst
7208 F:      include/net/failover.h
7209 F:      net/core/failover.c
7210
7211 FANOTIFY
7212 M:      Jan Kara <jack@suse.cz>
7213 R:      Amir Goldstein <amir73il@gmail.com>
7214 R:      Matthew Bobrowski <repnop@google.com>
7215 L:      linux-fsdevel@vger.kernel.org
7216 S:      Maintained
7217 F:      fs/notify/fanotify/
7218 F:      include/linux/fanotify.h
7219 F:      include/uapi/linux/fanotify.h
7220
7221 FARSYNC SYNCHRONOUS DRIVER
7222 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7223 S:      Supported
7224 W:      http://www.farsite.co.uk/
7225 F:      drivers/net/wan/farsync.*
7226
7227 FAULT INJECTION SUPPORT
7228 M:      Akinobu Mita <akinobu.mita@gmail.com>
7229 S:      Supported
7230 F:      Documentation/fault-injection/
7231 F:      lib/fault-inject.c
7232
7233 FBTFT Framebuffer drivers
7234 L:      dri-devel@lists.freedesktop.org
7235 L:      linux-fbdev@vger.kernel.org
7236 S:      Orphan
7237 F:      drivers/staging/fbtft/
7238
7239 FC0011 TUNER DRIVER
7240 M:      Michael Buesch <m@bues.ch>
7241 L:      linux-media@vger.kernel.org
7242 S:      Maintained
7243 F:      drivers/media/tuners/fc0011.c
7244 F:      drivers/media/tuners/fc0011.h
7245
7246 FC2580 MEDIA DRIVER
7247 M:      Antti Palosaari <crope@iki.fi>
7248 L:      linux-media@vger.kernel.org
7249 S:      Maintained
7250 W:      https://linuxtv.org
7251 W:      http://palosaari.fi/linux/
7252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7253 T:      git git://linuxtv.org/anttip/media_tree.git
7254 F:      drivers/media/tuners/fc2580*
7255
7256 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7257 M:      Hannes Reinecke <hare@suse.de>
7258 L:      linux-scsi@vger.kernel.org
7259 S:      Supported
7260 W:      www.Open-FCoE.org
7261 F:      drivers/scsi/fcoe/
7262 F:      drivers/scsi/libfc/
7263 F:      include/scsi/fc/
7264 F:      include/scsi/libfc.h
7265 F:      include/scsi/libfcoe.h
7266 F:      include/uapi/scsi/fc/
7267
7268 FILE LOCKING (flock() and fcntl()/lockf())
7269 M:      Jeff Layton <jlayton@kernel.org>
7270 M:      "J. Bruce Fields" <bfields@fieldses.org>
7271 L:      linux-fsdevel@vger.kernel.org
7272 S:      Maintained
7273 F:      fs/fcntl.c
7274 F:      fs/locks.c
7275 F:      include/linux/fcntl.h
7276 F:      include/uapi/linux/fcntl.h
7277
7278 FILESYSTEM DIRECT ACCESS (DAX)
7279 M:      Dan Williams <dan.j.williams@intel.com>
7280 R:      Matthew Wilcox <willy@infradead.org>
7281 R:      Jan Kara <jack@suse.cz>
7282 L:      linux-fsdevel@vger.kernel.org
7283 L:      nvdimm@lists.linux.dev
7284 S:      Supported
7285 F:      fs/dax.c
7286 F:      include/linux/dax.h
7287 F:      include/trace/events/fs_dax.h
7288
7289 FILESYSTEMS (VFS and infrastructure)
7290 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7291 L:      linux-fsdevel@vger.kernel.org
7292 S:      Maintained
7293 F:      fs/*
7294 F:      include/linux/fs.h
7295 F:      include/linux/fs_types.h
7296 F:      include/uapi/linux/fs.h
7297 F:      include/uapi/linux/openat2.h
7298 X:      fs/io-wq.c
7299 X:      fs/io-wq.h
7300 X:      fs/io_uring.c
7301
7302 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7303 M:      Riku Voipio <riku.voipio@iki.fi>
7304 L:      linux-hwmon@vger.kernel.org
7305 S:      Maintained
7306 F:      drivers/hwmon/f75375s.c
7307 F:      include/linux/f75375s.h
7308
7309 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7310 M:      Clemens Ladisch <clemens@ladisch.de>
7311 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7312 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7313 S:      Maintained
7314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7315 F:      include/uapi/sound/firewire.h
7316 F:      sound/firewire/
7317
7318 FIREWIRE MEDIA DRIVERS (firedtv)
7319 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7320 L:      linux-media@vger.kernel.org
7321 L:      linux1394-devel@lists.sourceforge.net
7322 S:      Maintained
7323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7324 F:      drivers/media/firewire/
7325
7326 FIREWIRE SBP-2 TARGET
7327 M:      Chris Boot <bootc@bootc.net>
7328 L:      linux-scsi@vger.kernel.org
7329 L:      target-devel@vger.kernel.org
7330 L:      linux1394-devel@lists.sourceforge.net
7331 S:      Maintained
7332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7333 F:      drivers/target/sbp/
7334
7335 FIREWIRE SUBSYSTEM
7336 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7337 L:      linux1394-devel@lists.sourceforge.net
7338 S:      Maintained
7339 W:      http://ieee1394.wiki.kernel.org/
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7341 F:      drivers/firewire/
7342 F:      include/linux/firewire.h
7343 F:      include/uapi/linux/firewire*.h
7344 F:      tools/firewire/
7345
7346 FIRMWARE FRAMEWORK FOR ARMV8-A
7347 M:      Sudeep Holla <sudeep.holla@arm.com>
7348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7349 S:      Maintained
7350 F:      drivers/firmware/arm_ffa/
7351 F:      include/linux/arm_ffa.h
7352
7353 FIRMWARE LOADER (request_firmware)
7354 M:      Luis Chamberlain <mcgrof@kernel.org>
7355 L:      linux-kernel@vger.kernel.org
7356 S:      Maintained
7357 F:      Documentation/firmware_class/
7358 F:      drivers/base/firmware_loader/
7359 F:      include/linux/firmware.h
7360
7361 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7362 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7363 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7364 S:      Maintained
7365 F:      drivers/block/rsxx/
7366
7367 FLEXTIMER FTM-QUADDEC DRIVER
7368 M:      Patrick Havelange <patrick.havelange@essensium.com>
7369 L:      linux-iio@vger.kernel.org
7370 S:      Maintained
7371 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7372 F:      drivers/counter/ftm-quaddec.c
7373
7374 FLOPPY DRIVER
7375 M:      Denis Efremov <efremov@linux.com>
7376 L:      linux-block@vger.kernel.org
7377 S:      Odd Fixes
7378 F:      drivers/block/floppy.c
7379
7380 FLYSKY FSIA6B RC RECEIVER
7381 M:      Markus Koch <markus@notsyncing.net>
7382 L:      linux-input@vger.kernel.org
7383 S:      Maintained
7384 F:      drivers/input/joystick/fsia6b.c
7385
7386 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7387 M:      Geoffrey D. Bennett <g@b4.vu>
7388 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7389 S:      Maintained
7390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7391 F:      sound/usb/mixer_scarlett_gen2.c
7392
7393 FORCEDETH GIGABIT ETHERNET DRIVER
7394 M:      Rain River <rain.1986.08.12@gmail.com>
7395 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7396 L:      netdev@vger.kernel.org
7397 S:      Maintained
7398 F:      drivers/net/ethernet/nvidia/*
7399
7400 FORTIFY_SOURCE
7401 M:      Kees Cook <keescook@chromium.org>
7402 L:      linux-hardening@vger.kernel.org
7403 S:      Supported
7404 F:      include/linux/fortify-string.h
7405 F:      lib/test_fortify/*
7406 F:      scripts/test_fortify.sh
7407 K:      \b__NO_FORTIFY\b
7408
7409 FPGA DFL DRIVERS
7410 M:      Wu Hao <hao.wu@intel.com>
7411 R:      Tom Rix <trix@redhat.com>
7412 L:      linux-fpga@vger.kernel.org
7413 S:      Maintained
7414 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7415 F:      Documentation/fpga/dfl.rst
7416 F:      drivers/fpga/dfl*
7417 F:      drivers/uio/uio_dfl.c
7418 F:      include/linux/dfl.h
7419 F:      include/uapi/linux/fpga-dfl.h
7420
7421 FPGA MANAGER FRAMEWORK
7422 M:      Moritz Fischer <mdf@kernel.org>
7423 M:      Wu Hao <hao.wu@intel.com>
7424 M:      Xu Yilun <yilun.xu@intel.com>
7425 R:      Tom Rix <trix@redhat.com>
7426 L:      linux-fpga@vger.kernel.org
7427 S:      Maintained
7428 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7430 F:      Documentation/devicetree/bindings/fpga/
7431 F:      Documentation/driver-api/fpga/
7432 F:      Documentation/fpga/
7433 F:      drivers/fpga/
7434 F:      include/linux/fpga/
7435
7436 FPU EMULATOR
7437 M:      Bill Metzenthen <billm@melbpc.org.au>
7438 S:      Maintained
7439 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7440 F:      arch/x86/math-emu/
7441
7442 FRAMEBUFFER LAYER
7443 L:      dri-devel@lists.freedesktop.org
7444 L:      linux-fbdev@vger.kernel.org
7445 S:      Orphan
7446 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7447 T:      git git://anongit.freedesktop.org/drm/drm-misc
7448 F:      Documentation/fb/
7449 F:      drivers/video/
7450 F:      include/linux/fb.h
7451 F:      include/uapi/linux/fb.h
7452 F:      include/uapi/video/
7453 F:      include/video/
7454
7455 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7456 M:      Horia Geantă <horia.geanta@nxp.com>
7457 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7458 L:      linux-crypto@vger.kernel.org
7459 S:      Maintained
7460 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7461 F:      drivers/crypto/caam/
7462
7463 FREESCALE COLDFIRE M5441X MMC DRIVER
7464 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7465 L:      linux-mmc@vger.kernel.org
7466 S:      Maintained
7467 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7468 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7469
7470 FREESCALE DIU FRAMEBUFFER DRIVER
7471 M:      Timur Tabi <timur@kernel.org>
7472 L:      linux-fbdev@vger.kernel.org
7473 S:      Maintained
7474 F:      drivers/video/fbdev/fsl-diu-fb.*
7475
7476 FREESCALE DMA DRIVER
7477 M:      Li Yang <leoyang.li@nxp.com>
7478 M:      Zhang Wei <zw@zh-kernel.org>
7479 L:      linuxppc-dev@lists.ozlabs.org
7480 S:      Maintained
7481 F:      drivers/dma/fsldma.*
7482
7483 FREESCALE DSPI DRIVER
7484 M:      Vladimir Oltean <olteanv@gmail.com>
7485 L:      linux-spi@vger.kernel.org
7486 S:      Maintained
7487 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7488 F:      drivers/spi/spi-fsl-dspi.c
7489 F:      include/linux/spi/spi-fsl-dspi.h
7490
7491 FREESCALE ENETC ETHERNET DRIVERS
7492 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7493 L:      netdev@vger.kernel.org
7494 S:      Maintained
7495 F:      drivers/net/ethernet/freescale/enetc/
7496
7497 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7498 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7499 L:      netdev@vger.kernel.org
7500 S:      Maintained
7501 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7502 F:      drivers/net/ethernet/freescale/gianfar*
7503
7504 FREESCALE GPMI NAND DRIVER
7505 M:      Han Xu <han.xu@nxp.com>
7506 L:      linux-mtd@lists.infradead.org
7507 S:      Maintained
7508 F:      drivers/mtd/nand/raw/gpmi-nand/*
7509
7510 FREESCALE I2C CPM DRIVER
7511 M:      Jochen Friedrich <jochen@scram.de>
7512 L:      linuxppc-dev@lists.ozlabs.org
7513 L:      linux-i2c@vger.kernel.org
7514 S:      Maintained
7515 F:      drivers/i2c/busses/i2c-cpm.c
7516
7517 FREESCALE IMX / MXC FEC DRIVER
7518 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7519 L:      netdev@vger.kernel.org
7520 S:      Maintained
7521 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7522 F:      drivers/net/ethernet/freescale/fec.h
7523 F:      drivers/net/ethernet/freescale/fec_main.c
7524 F:      drivers/net/ethernet/freescale/fec_ptp.c
7525
7526 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7527 M:      Sascha Hauer <s.hauer@pengutronix.de>
7528 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7529 L:      linux-fbdev@vger.kernel.org
7530 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7531 S:      Maintained
7532 F:      drivers/video/fbdev/imxfb.c
7533 F:      include/linux/platform_data/video-imxfb.h
7534
7535 FREESCALE IMX DDR PMU DRIVER
7536 M:      Frank Li <Frank.li@nxp.com>
7537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7538 S:      Maintained
7539 F:      Documentation/admin-guide/perf/imx-ddr.rst
7540 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7541 F:      drivers/perf/fsl_imx8_ddr_perf.c
7542
7543 FREESCALE IMX I2C DRIVER
7544 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7545 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7546 L:      linux-i2c@vger.kernel.org
7547 S:      Maintained
7548 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7549 F:      drivers/i2c/busses/i2c-imx.c
7550
7551 FREESCALE IMX LPI2C DRIVER
7552 M:      Dong Aisheng <aisheng.dong@nxp.com>
7553 L:      linux-i2c@vger.kernel.org
7554 L:      linux-imx@nxp.com
7555 S:      Maintained
7556 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7557 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7558
7559 FREESCALE MPC I2C DRIVER
7560 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7561 L:      linux-i2c@vger.kernel.org
7562 S:      Maintained
7563 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7564 F:      drivers/i2c/busses/i2c-mpc.c
7565
7566 FREESCALE QORIQ DPAA ETHERNET DRIVER
7567 M:      Madalin Bucur <madalin.bucur@nxp.com>
7568 L:      netdev@vger.kernel.org
7569 S:      Maintained
7570 F:      drivers/net/ethernet/freescale/dpaa
7571
7572 FREESCALE QORIQ DPAA FMAN DRIVER
7573 M:      Madalin Bucur <madalin.bucur@nxp.com>
7574 L:      netdev@vger.kernel.org
7575 S:      Maintained
7576 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7577 F:      drivers/net/ethernet/freescale/fman
7578
7579 FREESCALE QORIQ PTP CLOCK DRIVER
7580 M:      Yangbo Lu <yangbo.lu@nxp.com>
7581 L:      netdev@vger.kernel.org
7582 S:      Maintained
7583 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7584 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7585 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7586 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7587 F:      drivers/ptp/ptp_qoriq.c
7588 F:      drivers/ptp/ptp_qoriq_debugfs.c
7589 F:      include/linux/fsl/ptp_qoriq.h
7590
7591 FREESCALE QUAD SPI DRIVER
7592 M:      Han Xu <han.xu@nxp.com>
7593 L:      linux-spi@vger.kernel.org
7594 S:      Maintained
7595 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7596 F:      drivers/spi/spi-fsl-qspi.c
7597
7598 FREESCALE QUICC ENGINE LIBRARY
7599 M:      Qiang Zhao <qiang.zhao@nxp.com>
7600 L:      linuxppc-dev@lists.ozlabs.org
7601 S:      Maintained
7602 F:      drivers/soc/fsl/qe/
7603 F:      include/soc/fsl/*qe*.h
7604 F:      include/soc/fsl/*ucc*.h
7605
7606 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7607 M:      Li Yang <leoyang.li@nxp.com>
7608 L:      netdev@vger.kernel.org
7609 L:      linuxppc-dev@lists.ozlabs.org
7610 S:      Maintained
7611 F:      drivers/net/ethernet/freescale/ucc_geth*
7612
7613 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7614 M:      Zhao Qiang <qiang.zhao@nxp.com>
7615 L:      netdev@vger.kernel.org
7616 L:      linuxppc-dev@lists.ozlabs.org
7617 S:      Maintained
7618 F:      drivers/net/wan/fsl_ucc_hdlc*
7619
7620 FREESCALE QUICC ENGINE UCC UART DRIVER
7621 M:      Timur Tabi <timur@kernel.org>
7622 L:      linuxppc-dev@lists.ozlabs.org
7623 S:      Maintained
7624 F:      drivers/tty/serial/ucc_uart.c
7625
7626 FREESCALE SOC DRIVERS
7627 M:      Li Yang <leoyang.li@nxp.com>
7628 L:      linuxppc-dev@lists.ozlabs.org
7629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7630 S:      Maintained
7631 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7632 F:      Documentation/devicetree/bindings/soc/fsl/
7633 F:      drivers/soc/fsl/
7634 F:      include/linux/fsl/
7635
7636 FREESCALE SOC FS_ENET DRIVER
7637 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7638 L:      linuxppc-dev@lists.ozlabs.org
7639 L:      netdev@vger.kernel.org
7640 S:      Maintained
7641 F:      drivers/net/ethernet/freescale/fs_enet/
7642 F:      include/linux/fs_enet_pd.h
7643
7644 FREESCALE SOC SOUND DRIVERS
7645 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7646 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7647 R:      Fabio Estevam <festevam@gmail.com>
7648 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7649 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7650 L:      linuxppc-dev@lists.ozlabs.org
7651 S:      Maintained
7652 F:      sound/soc/fsl/fsl*
7653 F:      sound/soc/fsl/imx*
7654 F:      sound/soc/fsl/mpc8610_hpcd.c
7655
7656 FREESCALE USB PERIPHERAL DRIVERS
7657 M:      Li Yang <leoyang.li@nxp.com>
7658 L:      linux-usb@vger.kernel.org
7659 L:      linuxppc-dev@lists.ozlabs.org
7660 S:      Maintained
7661 F:      drivers/usb/gadget/udc/fsl*
7662
7663 FREESCALE USB PHY DRIVER
7664 M:      Ran Wang <ran.wang_1@nxp.com>
7665 L:      linux-usb@vger.kernel.org
7666 L:      linuxppc-dev@lists.ozlabs.org
7667 S:      Maintained
7668 F:      drivers/usb/phy/phy-fsl-usb*
7669
7670 FREEVXFS FILESYSTEM
7671 M:      Christoph Hellwig <hch@infradead.org>
7672 S:      Maintained
7673 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7674 F:      fs/freevxfs/
7675
7676 FREEZER
7677 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7678 M:      Pavel Machek <pavel@ucw.cz>
7679 L:      linux-pm@vger.kernel.org
7680 S:      Supported
7681 F:      Documentation/power/freezing-of-tasks.rst
7682 F:      include/linux/freezer.h
7683 F:      kernel/freezer.c
7684
7685 FRONTSWAP API
7686 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7687 L:      linux-kernel@vger.kernel.org
7688 S:      Maintained
7689 F:      include/linux/frontswap.h
7690 F:      mm/frontswap.c
7691
7692 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7693 M:      David Howells <dhowells@redhat.com>
7694 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7695 S:      Supported
7696 F:      Documentation/filesystems/caching/
7697 F:      fs/fscache/
7698 F:      include/linux/fscache*.h
7699
7700 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7701 M:      Theodore Y. Ts'o <tytso@mit.edu>
7702 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7703 M:      Eric Biggers <ebiggers@kernel.org>
7704 L:      linux-fscrypt@vger.kernel.org
7705 S:      Supported
7706 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7707 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7708 F:      Documentation/filesystems/fscrypt.rst
7709 F:      fs/crypto/
7710 F:      include/linux/fscrypt*.h
7711 F:      include/uapi/linux/fscrypt.h
7712
7713 FSI SUBSYSTEM
7714 M:      Jeremy Kerr <jk@ozlabs.org>
7715 M:      Joel Stanley <joel@jms.id.au>
7716 R:      Alistar Popple <alistair@popple.id.au>
7717 R:      Eddie James <eajames@linux.ibm.com>
7718 L:      linux-fsi@lists.ozlabs.org
7719 S:      Supported
7720 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7722 F:      drivers/fsi/
7723 F:      include/linux/fsi*.h
7724 F:      include/trace/events/fsi*.h
7725
7726 FSI-ATTACHED I2C DRIVER
7727 M:      Eddie James <eajames@linux.ibm.com>
7728 L:      linux-i2c@vger.kernel.org
7729 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7730 S:      Maintained
7731 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7732 F:      drivers/i2c/busses/i2c-fsi.c
7733
7734 FSI-ATTACHED SPI DRIVER
7735 M:      Eddie James <eajames@linux.ibm.com>
7736 L:      linux-spi@vger.kernel.org
7737 S:      Maintained
7738 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7739 F:      drivers/spi/spi-fsi.c
7740
7741 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7742 M:      Jan Kara <jack@suse.cz>
7743 R:      Amir Goldstein <amir73il@gmail.com>
7744 L:      linux-fsdevel@vger.kernel.org
7745 S:      Maintained
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7747 F:      fs/notify/
7748 F:      include/linux/fsnotify*.h
7749
7750 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7751 M:      Eric Biggers <ebiggers@kernel.org>
7752 M:      Theodore Y. Ts'o <tytso@mit.edu>
7753 L:      linux-fscrypt@vger.kernel.org
7754 S:      Supported
7755 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7756 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7757 F:      Documentation/filesystems/fsverity.rst
7758 F:      fs/verity/
7759 F:      include/linux/fsverity.h
7760 F:      include/uapi/linux/fsverity.h
7761
7762 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7763 M:      Michael Zaidman <michael.zaidman@gmail.com>
7764 L:      linux-i2c@vger.kernel.org
7765 L:      linux-input@vger.kernel.org
7766 S:      Maintained
7767 F:      drivers/hid/hid-ft260.c
7768
7769 FUJITSU LAPTOP EXTRAS
7770 M:      Jonathan Woithe <jwoithe@just42.net>
7771 L:      platform-driver-x86@vger.kernel.org
7772 S:      Maintained
7773 F:      drivers/platform/x86/fujitsu-laptop.c
7774
7775 FUJITSU M-5MO LS CAMERA ISP DRIVER
7776 M:      Kyungmin Park <kyungmin.park@samsung.com>
7777 M:      Heungjun Kim <riverful.kim@samsung.com>
7778 L:      linux-media@vger.kernel.org
7779 S:      Maintained
7780 F:      drivers/media/i2c/m5mols/
7781 F:      include/media/i2c/m5mols.h
7782
7783 FUJITSU TABLET EXTRAS
7784 M:      Robert Gerlach <khnz@gmx.de>
7785 L:      platform-driver-x86@vger.kernel.org
7786 S:      Maintained
7787 F:      drivers/platform/x86/fujitsu-tablet.c
7788
7789 FUSE: FILESYSTEM IN USERSPACE
7790 M:      Miklos Szeredi <miklos@szeredi.hu>
7791 L:      linux-fsdevel@vger.kernel.org
7792 S:      Maintained
7793 W:      https://github.com/libfuse/
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7795 F:      Documentation/filesystems/fuse.rst
7796 F:      fs/fuse/
7797 F:      include/uapi/linux/fuse.h
7798
7799 FUTEX SUBSYSTEM
7800 M:      Thomas Gleixner <tglx@linutronix.de>
7801 M:      Ingo Molnar <mingo@redhat.com>
7802 R:      Peter Zijlstra <peterz@infradead.org>
7803 R:      Darren Hart <dvhart@infradead.org>
7804 R:      Davidlohr Bueso <dave@stgolabs.net>
7805 R:      André Almeida <andrealmeid@collabora.com>
7806 L:      linux-kernel@vger.kernel.org
7807 S:      Maintained
7808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7809 F:      Documentation/locking/*futex*
7810 F:      include/asm-generic/futex.h
7811 F:      include/linux/futex.h
7812 F:      include/uapi/linux/futex.h
7813 F:      kernel/futex/*
7814 F:      tools/perf/bench/futex*
7815 F:      tools/testing/selftests/futex/
7816
7817 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7818 M:      Tim Harvey <tharvey@gateworks.com>
7819 M:      Robert Jones <rjones@gateworks.com>
7820 S:      Maintained
7821 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7822 F:      drivers/mfd/gateworks-gsc.c
7823 F:      include/linux/mfd/gsc.h
7824 F:      Documentation/hwmon/gsc-hwmon.rst
7825 F:      drivers/hwmon/gsc-hwmon.c
7826 F:      include/linux/platform_data/gsc_hwmon.h
7827
7828 GCC PLUGINS
7829 M:      Kees Cook <keescook@chromium.org>
7830 L:      linux-hardening@vger.kernel.org
7831 S:      Maintained
7832 F:      Documentation/kbuild/gcc-plugins.rst
7833 F:      scripts/Makefile.gcc-plugins
7834 F:      scripts/gcc-plugins/
7835
7836 GCOV BASED KERNEL PROFILING
7837 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7838 S:      Maintained
7839 F:      Documentation/dev-tools/gcov.rst
7840 F:      kernel/gcov/
7841
7842 GDB KERNEL DEBUGGING HELPER SCRIPTS
7843 M:      Jan Kiszka <jan.kiszka@siemens.com>
7844 M:      Kieran Bingham <kbingham@kernel.org>
7845 S:      Supported
7846 F:      scripts/gdb/
7847
7848 GEMINI CRYPTO DRIVER
7849 M:      Corentin Labbe <clabbe@baylibre.com>
7850 L:      linux-crypto@vger.kernel.org
7851 S:      Maintained
7852 F:      drivers/crypto/gemini/
7853
7854 GEMTEK FM RADIO RECEIVER DRIVER
7855 M:      Hans Verkuil <hverkuil@xs4all.nl>
7856 L:      linux-media@vger.kernel.org
7857 S:      Maintained
7858 W:      https://linuxtv.org
7859 T:      git git://linuxtv.org/media_tree.git
7860 F:      drivers/media/radio/radio-gemtek*
7861
7862 GENERIC ARCHITECTURE TOPOLOGY
7863 M:      Sudeep Holla <sudeep.holla@arm.com>
7864 L:      linux-kernel@vger.kernel.org
7865 S:      Maintained
7866 F:      drivers/base/arch_topology.c
7867 F:      include/linux/arch_topology.h
7868
7869 GENERIC ENTRY CODE
7870 M:      Thomas Gleixner <tglx@linutronix.de>
7871 M:      Peter Zijlstra <peterz@infradead.org>
7872 M:      Andy Lutomirski <luto@kernel.org>
7873 L:      linux-kernel@vger.kernel.org
7874 S:      Maintained
7875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7876 F:      include/linux/entry-common.h
7877 F:      include/linux/entry-kvm.h
7878 F:      kernel/entry/
7879
7880 GENERIC GPIO I2C DRIVER
7881 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7882 S:      Supported
7883 F:      drivers/i2c/busses/i2c-gpio.c
7884 F:      include/linux/platform_data/i2c-gpio.h
7885
7886 GENERIC GPIO I2C MULTIPLEXER DRIVER
7887 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7888 L:      linux-i2c@vger.kernel.org
7889 S:      Supported
7890 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7891 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7892 F:      include/linux/platform_data/i2c-mux-gpio.h
7893
7894 GENERIC HDLC (WAN) DRIVERS
7895 M:      Krzysztof Halasa <khc@pm.waw.pl>
7896 S:      Maintained
7897 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7898 F:      drivers/net/wan/c101.c
7899 F:      drivers/net/wan/hd6457*
7900 F:      drivers/net/wan/hdlc*
7901 F:      drivers/net/wan/n2.c
7902 F:      drivers/net/wan/pc300too.c
7903 F:      drivers/net/wan/pci200syn.c
7904 F:      drivers/net/wan/wanxl*
7905
7906 GENERIC INCLUDE/ASM HEADER FILES
7907 M:      Arnd Bergmann <arnd@arndb.de>
7908 L:      linux-arch@vger.kernel.org
7909 S:      Maintained
7910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7911 F:      include/asm-generic/
7912 F:      include/uapi/asm-generic/
7913
7914 GENERIC PHY FRAMEWORK
7915 M:      Kishon Vijay Abraham I <kishon@ti.com>
7916 M:      Vinod Koul <vkoul@kernel.org>
7917 L:      linux-phy@lists.infradead.org
7918 S:      Supported
7919 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7921 F:      Documentation/devicetree/bindings/phy/
7922 F:      drivers/phy/
7923 F:      include/linux/phy/
7924
7925 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7926 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7927 S:      Supported
7928 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7929
7930 GENERIC PM DOMAINS
7931 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7932 M:      Kevin Hilman <khilman@kernel.org>
7933 M:      Ulf Hansson <ulf.hansson@linaro.org>
7934 L:      linux-pm@vger.kernel.org
7935 S:      Supported
7936 F:      Documentation/devicetree/bindings/power/power?domain*
7937 F:      drivers/base/power/domain*.c
7938 F:      include/linux/pm_domain.h
7939
7940 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7941 M:      Eugen Hristev <eugen.hristev@microchip.com>
7942 L:      linux-input@vger.kernel.org
7943 S:      Maintained
7944 F:      drivers/input/touchscreen/resistive-adc-touch.c
7945
7946 GENERIC STRING LIBRARY
7947 R:      Andy Shevchenko <andy@kernel.org>
7948 S:      Maintained
7949 F:      lib/string.c
7950 F:      lib/string_helpers.c
7951 F:      lib/test_string.c
7952 F:      lib/test-string_helpers.c
7953
7954 GENERIC UIO DRIVER FOR PCI DEVICES
7955 M:      "Michael S. Tsirkin" <mst@redhat.com>
7956 L:      kvm@vger.kernel.org
7957 S:      Supported
7958 F:      drivers/uio/uio_pci_generic.c
7959
7960 GENERIC VDSO LIBRARY
7961 M:      Andy Lutomirski <luto@kernel.org>
7962 M:      Thomas Gleixner <tglx@linutronix.de>
7963 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7964 L:      linux-kernel@vger.kernel.org
7965 S:      Maintained
7966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7967 F:      include/asm-generic/vdso/vsyscall.h
7968 F:      include/vdso/
7969 F:      kernel/time/vsyscall.c
7970 F:      lib/vdso/
7971
7972 GENWQE (IBM Generic Workqueue Card)
7973 M:      Frank Haverkamp <haver@linux.ibm.com>
7974 S:      Supported
7975 F:      drivers/misc/genwqe/
7976
7977 GET_MAINTAINER SCRIPT
7978 M:      Joe Perches <joe@perches.com>
7979 S:      Maintained
7980 F:      scripts/get_maintainer.pl
7981
7982 GFS2 FILE SYSTEM
7983 M:      Bob Peterson <rpeterso@redhat.com>
7984 M:      Andreas Gruenbacher <agruenba@redhat.com>
7985 L:      cluster-devel@redhat.com
7986 S:      Supported
7987 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7989 F:      Documentation/filesystems/gfs2*
7990 F:      fs/gfs2/
7991 F:      include/uapi/linux/gfs2_ondisk.h
7992
7993 GIGABYTE WMI DRIVER
7994 M:      Thomas Weißschuh <thomas@weissschuh.net>
7995 L:      platform-driver-x86@vger.kernel.org
7996 S:      Maintained
7997 F:      drivers/platform/x86/gigabyte-wmi.c
7998
7999 GNSS SUBSYSTEM
8000 M:      Johan Hovold <johan@kernel.org>
8001 S:      Maintained
8002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8003 F:      Documentation/ABI/testing/sysfs-class-gnss
8004 F:      Documentation/devicetree/bindings/gnss/
8005 F:      drivers/gnss/
8006 F:      include/linux/gnss.h
8007
8008 GO7007 MPEG CODEC
8009 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8010 L:      linux-media@vger.kernel.org
8011 S:      Maintained
8012 F:      drivers/media/usb/go7007/
8013
8014 GOODIX TOUCHSCREEN
8015 M:      Bastien Nocera <hadess@hadess.net>
8016 L:      linux-input@vger.kernel.org
8017 S:      Maintained
8018 F:      drivers/input/touchscreen/goodix.c
8019
8020 GOOGLE ETHERNET DRIVERS
8021 M:      Jeroen de Borst <jeroendb@google.com>
8022 R:      Catherine Sullivan <csully@google.com>
8023 R:      David Awogbemila <awogbemila@google.com>
8024 L:      netdev@vger.kernel.org
8025 S:      Supported
8026 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8027 F:      drivers/net/ethernet/google
8028
8029 GPD POCKET FAN DRIVER
8030 M:      Hans de Goede <hdegoede@redhat.com>
8031 L:      platform-driver-x86@vger.kernel.org
8032 S:      Maintained
8033 F:      drivers/platform/x86/gpd-pocket-fan.c
8034
8035 GPIO ACPI SUPPORT
8036 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8037 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8038 L:      linux-gpio@vger.kernel.org
8039 L:      linux-acpi@vger.kernel.org
8040 S:      Maintained
8041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8042 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8043 F:      drivers/gpio/gpiolib-acpi.c
8044 F:      drivers/gpio/gpiolib-acpi.h
8045
8046 GPIO AGGREGATOR
8047 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8048 L:      linux-gpio@vger.kernel.org
8049 S:      Supported
8050 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8051 F:      drivers/gpio/gpio-aggregator.c
8052
8053 GPIO IR Transmitter
8054 M:      Sean Young <sean@mess.org>
8055 L:      linux-media@vger.kernel.org
8056 S:      Maintained
8057 F:      drivers/media/rc/gpio-ir-tx.c
8058
8059 GPIO MOCKUP DRIVER
8060 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8061 L:      linux-gpio@vger.kernel.org
8062 S:      Maintained
8063 F:      drivers/gpio/gpio-mockup.c
8064 F:      tools/testing/selftests/gpio/
8065
8066 GPIO REGMAP
8067 R:      Michael Walle <michael@walle.cc>
8068 S:      Maintained
8069 F:      drivers/gpio/gpio-regmap.c
8070 F:      include/linux/gpio/regmap.h
8071
8072 GPIO SUBSYSTEM
8073 M:      Linus Walleij <linus.walleij@linaro.org>
8074 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8075 L:      linux-gpio@vger.kernel.org
8076 S:      Maintained
8077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8078 F:      Documentation/ABI/obsolete/sysfs-gpio
8079 F:      Documentation/ABI/testing/gpio-cdev
8080 F:      Documentation/admin-guide/gpio/
8081 F:      Documentation/devicetree/bindings/gpio/
8082 F:      Documentation/driver-api/gpio/
8083 F:      drivers/gpio/
8084 F:      include/asm-generic/gpio.h
8085 F:      include/linux/gpio.h
8086 F:      include/linux/gpio/
8087 F:      include/linux/of_gpio.h
8088 F:      include/uapi/linux/gpio.h
8089 F:      tools/gpio/
8090
8091 GRE DEMULTIPLEXER DRIVER
8092 M:      Dmitry Kozlov <xeb@mail.ru>
8093 L:      netdev@vger.kernel.org
8094 S:      Maintained
8095 F:      include/net/gre.h
8096 F:      net/ipv4/gre_demux.c
8097 F:      net/ipv4/gre_offload.c
8098
8099 GRETH 10/100/1G Ethernet MAC device driver
8100 M:      Andreas Larsson <andreas@gaisler.com>
8101 L:      netdev@vger.kernel.org
8102 S:      Maintained
8103 F:      drivers/net/ethernet/aeroflex/
8104
8105 GREYBUS AUDIO PROTOCOLS DRIVERS
8106 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8107 M:      Mark Greer <mgreer@animalcreek.com>
8108 S:      Maintained
8109 F:      drivers/staging/greybus/audio_apbridgea.c
8110 F:      drivers/staging/greybus/audio_apbridgea.h
8111 F:      drivers/staging/greybus/audio_codec.c
8112 F:      drivers/staging/greybus/audio_codec.h
8113 F:      drivers/staging/greybus/audio_gb.c
8114 F:      drivers/staging/greybus/audio_manager.c
8115 F:      drivers/staging/greybus/audio_manager.h
8116 F:      drivers/staging/greybus/audio_manager_module.c
8117 F:      drivers/staging/greybus/audio_manager_private.h
8118 F:      drivers/staging/greybus/audio_manager_sysfs.c
8119 F:      drivers/staging/greybus/audio_module.c
8120 F:      drivers/staging/greybus/audio_topology.c
8121
8122 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8123 M:      Viresh Kumar <vireshk@kernel.org>
8124 S:      Maintained
8125 F:      drivers/staging/greybus/authentication.c
8126 F:      drivers/staging/greybus/bootrom.c
8127 F:      drivers/staging/greybus/firmware.h
8128 F:      drivers/staging/greybus/fw-core.c
8129 F:      drivers/staging/greybus/fw-download.c
8130 F:      drivers/staging/greybus/fw-management.c
8131 F:      drivers/staging/greybus/greybus_authentication.h
8132 F:      drivers/staging/greybus/greybus_firmware.h
8133 F:      drivers/staging/greybus/hid.c
8134 F:      drivers/staging/greybus/i2c.c
8135 F:      drivers/staging/greybus/spi.c
8136 F:      drivers/staging/greybus/spilib.c
8137 F:      drivers/staging/greybus/spilib.h
8138
8139 GREYBUS LOOPBACK DRIVER
8140 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8141 S:      Maintained
8142 F:      drivers/staging/greybus/loopback.c
8143
8144 GREYBUS PLATFORM DRIVERS
8145 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8146 S:      Maintained
8147 F:      drivers/staging/greybus/arche-apb-ctrl.c
8148 F:      drivers/staging/greybus/arche-platform.c
8149 F:      drivers/staging/greybus/arche_platform.h
8150
8151 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8152 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8153 S:      Maintained
8154 F:      drivers/staging/greybus/gpio.c
8155 F:      drivers/staging/greybus/light.c
8156 F:      drivers/staging/greybus/power_supply.c
8157 F:      drivers/staging/greybus/sdio.c
8158 F:      drivers/staging/greybus/spi.c
8159 F:      drivers/staging/greybus/spilib.c
8160
8161 GREYBUS SUBSYSTEM
8162 M:      Johan Hovold <johan@kernel.org>
8163 M:      Alex Elder <elder@kernel.org>
8164 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8165 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8166 S:      Maintained
8167 F:      drivers/greybus/
8168 F:      drivers/staging/greybus/
8169 F:      include/linux/greybus.h
8170 F:      include/linux/greybus/
8171
8172 GREYBUS UART PROTOCOLS DRIVERS
8173 M:      David Lin <dtwlin@gmail.com>
8174 S:      Maintained
8175 F:      drivers/staging/greybus/log.c
8176 F:      drivers/staging/greybus/uart.c
8177
8178 GS1662 VIDEO SERIALIZER
8179 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8180 L:      linux-media@vger.kernel.org
8181 S:      Maintained
8182 T:      git git://linuxtv.org/media_tree.git
8183 F:      drivers/media/spi/gs1662.c
8184
8185 GSPCA FINEPIX SUBDRIVER
8186 M:      Frank Zago <frank@zago.net>
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/finepix.c
8191
8192 GSPCA GL860 SUBDRIVER
8193 M:      Olivier Lorin <o.lorin@laposte.net>
8194 L:      linux-media@vger.kernel.org
8195 S:      Maintained
8196 T:      git git://linuxtv.org/media_tree.git
8197 F:      drivers/media/usb/gspca/gl860/
8198
8199 GSPCA M5602 SUBDRIVER
8200 M:      Erik Andren <erik.andren@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/m5602/
8205
8206 GSPCA PAC207 SONIXB SUBDRIVER
8207 M:      Hans Verkuil <hverkuil@xs4all.nl>
8208 L:      linux-media@vger.kernel.org
8209 S:      Odd Fixes
8210 T:      git git://linuxtv.org/media_tree.git
8211 F:      drivers/media/usb/gspca/pac207.c
8212
8213 GSPCA SN9C20X SUBDRIVER
8214 M:      Brian Johnson <brijohn@gmail.com>
8215 L:      linux-media@vger.kernel.org
8216 S:      Maintained
8217 T:      git git://linuxtv.org/media_tree.git
8218 F:      drivers/media/usb/gspca/sn9c20x.c
8219
8220 GSPCA T613 SUBDRIVER
8221 M:      Leandro Costantino <lcostantino@gmail.com>
8222 L:      linux-media@vger.kernel.org
8223 S:      Maintained
8224 T:      git git://linuxtv.org/media_tree.git
8225 F:      drivers/media/usb/gspca/t613.c
8226
8227 GSPCA USB WEBCAM DRIVER
8228 M:      Hans Verkuil <hverkuil@xs4all.nl>
8229 L:      linux-media@vger.kernel.org
8230 S:      Odd Fixes
8231 T:      git git://linuxtv.org/media_tree.git
8232 F:      drivers/media/usb/gspca/
8233
8234 GTP (GPRS Tunneling Protocol)
8235 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8236 M:      Harald Welte <laforge@gnumonks.org>
8237 L:      osmocom-net-gprs@lists.osmocom.org
8238 S:      Maintained
8239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8240 F:      drivers/net/gtp.c
8241
8242 GUID PARTITION TABLE (GPT)
8243 M:      Davidlohr Bueso <dave@stgolabs.net>
8244 L:      linux-efi@vger.kernel.org
8245 S:      Maintained
8246 F:      block/partitions/efi.*
8247
8248 H8/300 ARCHITECTURE
8249 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8250 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8251 S:      Maintained
8252 W:      http://uclinux-h8.sourceforge.jp
8253 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8254 F:      arch/h8300/
8255 F:      drivers/clk/h8300/
8256 F:      drivers/clocksource/h8300_*.c
8257 F:      drivers/irqchip/irq-renesas-h8*.c
8258
8259 HABANALABS PCI DRIVER
8260 M:      Oded Gabbay <ogabbay@kernel.org>
8261 S:      Supported
8262 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8263 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8264 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8265 F:      drivers/misc/habanalabs/
8266 F:      include/uapi/misc/habanalabs.h
8267
8268 HACKRF MEDIA DRIVER
8269 M:      Antti Palosaari <crope@iki.fi>
8270 L:      linux-media@vger.kernel.org
8271 S:      Maintained
8272 W:      https://linuxtv.org
8273 W:      http://palosaari.fi/linux/
8274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8275 T:      git git://linuxtv.org/anttip/media_tree.git
8276 F:      drivers/media/usb/hackrf/
8277
8278 HANTRO VPU CODEC DRIVER
8279 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8280 M:      Philipp Zabel <p.zabel@pengutronix.de>
8281 L:      linux-media@vger.kernel.org
8282 L:      linux-rockchip@lists.infradead.org
8283 S:      Maintained
8284 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8285 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8286 F:      drivers/staging/media/hantro/
8287
8288 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8289 M:      Frank Seidel <frank@f-seidel.de>
8290 L:      platform-driver-x86@vger.kernel.org
8291 S:      Maintained
8292 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8293 F:      drivers/platform/x86/hdaps.c
8294
8295 HARDWARE MONITORING
8296 M:      Jean Delvare <jdelvare@suse.com>
8297 M:      Guenter Roeck <linux@roeck-us.net>
8298 L:      linux-hwmon@vger.kernel.org
8299 S:      Maintained
8300 W:      http://hwmon.wiki.kernel.org/
8301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8302 F:      Documentation/devicetree/bindings/hwmon/
8303 F:      Documentation/hwmon/
8304 F:      drivers/hwmon/
8305 F:      include/linux/hwmon*.h
8306 F:      include/trace/events/hwmon*.h
8307 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8308
8309 HARDWARE RANDOM NUMBER GENERATOR CORE
8310 M:      Matt Mackall <mpm@selenic.com>
8311 M:      Herbert Xu <herbert@gondor.apana.org.au>
8312 L:      linux-crypto@vger.kernel.org
8313 S:      Odd fixes
8314 F:      Documentation/admin-guide/hw_random.rst
8315 F:      Documentation/devicetree/bindings/rng/
8316 F:      drivers/char/hw_random/
8317 F:      include/linux/hw_random.h
8318
8319 HARDWARE SPINLOCK CORE
8320 M:      Ohad Ben-Cohen <ohad@wizery.com>
8321 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8322 R:      Baolin Wang <baolin.wang7@gmail.com>
8323 L:      linux-remoteproc@vger.kernel.org
8324 S:      Maintained
8325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8326 F:      Documentation/devicetree/bindings/hwlock/
8327 F:      Documentation/locking/hwspinlock.rst
8328 F:      drivers/hwspinlock/
8329 F:      include/linux/hwspinlock.h
8330
8331 HARDWARE TRACING FACILITIES
8332 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8333 S:      Maintained
8334 F:      drivers/hwtracing/
8335
8336 HARMONY SOUND DRIVER
8337 L:      linux-parisc@vger.kernel.org
8338 S:      Maintained
8339 F:      sound/parisc/harmony.*
8340
8341 HDPVR USB VIDEO ENCODER DRIVER
8342 M:      Hans Verkuil <hverkuil@xs4all.nl>
8343 L:      linux-media@vger.kernel.org
8344 S:      Odd Fixes
8345 W:      https://linuxtv.org
8346 T:      git git://linuxtv.org/media_tree.git
8347 F:      drivers/media/usb/hdpvr/
8348
8349 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8350 M:      Matt Hsiao <matt.hsiao@hpe.com>
8351 S:      Supported
8352 F:      drivers/misc/hpilo.[ch]
8353
8354 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8355 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8356 S:      Supported
8357 F:      Documentation/watchdog/hpwdt.rst
8358 F:      drivers/watchdog/hpwdt.c
8359
8360 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8361 M:      Don Brace <don.brace@microchip.com>
8362 L:      storagedev@microchip.com
8363 L:      linux-scsi@vger.kernel.org
8364 S:      Supported
8365 F:      Documentation/scsi/hpsa.rst
8366 F:      drivers/scsi/hpsa*.[ch]
8367 F:      include/linux/cciss*.h
8368 F:      include/uapi/linux/cciss*.h
8369
8370 HFI1 DRIVER
8371 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8372 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8373 L:      linux-rdma@vger.kernel.org
8374 S:      Supported
8375 F:      drivers/infiniband/hw/hfi1
8376
8377 HFS FILESYSTEM
8378 L:      linux-fsdevel@vger.kernel.org
8379 S:      Orphan
8380 F:      Documentation/filesystems/hfs.rst
8381 F:      fs/hfs/
8382
8383 HFSPLUS FILESYSTEM
8384 L:      linux-fsdevel@vger.kernel.org
8385 S:      Orphan
8386 F:      Documentation/filesystems/hfsplus.rst
8387 F:      fs/hfsplus/
8388
8389 HGA FRAMEBUFFER DRIVER
8390 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8391 L:      linux-nvidia@lists.surfsouth.com
8392 S:      Maintained
8393 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8394 F:      drivers/video/fbdev/hgafb.c
8395
8396 HIBERNATION (aka Software Suspend, aka swsusp)
8397 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8398 M:      Pavel Machek <pavel@ucw.cz>
8399 L:      linux-pm@vger.kernel.org
8400 S:      Supported
8401 B:      https://bugzilla.kernel.org
8402 F:      arch/*/include/asm/suspend*.h
8403 F:      arch/x86/power/
8404 F:      drivers/base/power/
8405 F:      include/linux/freezer.h
8406 F:      include/linux/pm.h
8407 F:      include/linux/suspend.h
8408 F:      kernel/power/
8409
8410 HID CORE LAYER
8411 M:      Jiri Kosina <jikos@kernel.org>
8412 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8413 L:      linux-input@vger.kernel.org
8414 S:      Maintained
8415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8416 F:      drivers/hid/
8417 F:      include/linux/hid*
8418 F:      include/uapi/linux/hid*
8419
8420 HID PLAYSTATION DRIVER
8421 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8422 L:      linux-input@vger.kernel.org
8423 S:      Supported
8424 F:      drivers/hid/hid-playstation.c
8425
8426 HID SENSOR HUB DRIVERS
8427 M:      Jiri Kosina <jikos@kernel.org>
8428 M:      Jonathan Cameron <jic23@kernel.org>
8429 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8430 L:      linux-input@vger.kernel.org
8431 L:      linux-iio@vger.kernel.org
8432 S:      Maintained
8433 F:      Documentation/hid/hid-sensor*
8434 F:      drivers/hid/hid-sensor-*
8435 F:      drivers/iio/*/hid-*
8436 F:      include/linux/hid-sensor-*
8437
8438 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8439 M:      Thomas Gleixner <tglx@linutronix.de>
8440 L:      linux-kernel@vger.kernel.org
8441 S:      Maintained
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8443 F:      Documentation/timers/
8444 F:      include/linux/clockchips.h
8445 F:      include/linux/hrtimer.h
8446 F:      kernel/time/clockevents.c
8447 F:      kernel/time/hrtimer.c
8448 F:      kernel/time/timer_*.c
8449
8450 HIGH-SPEED SCC DRIVER FOR AX.25
8451 L:      linux-hams@vger.kernel.org
8452 S:      Orphan
8453 F:      drivers/net/hamradio/dmascc.c
8454 F:      drivers/net/hamradio/scc.c
8455
8456 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8457 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8458 S:      Supported
8459 W:      http://www.highpoint-tech.com
8460 F:      Documentation/scsi/hptiop.rst
8461 F:      drivers/scsi/hptiop.c
8462
8463 HIPPI
8464 M:      Jes Sorensen <jes@trained-monkey.org>
8465 L:      linux-hippi@sunsite.dk
8466 S:      Maintained
8467 F:      drivers/net/hippi/
8468 F:      include/linux/hippidevice.h
8469 F:      include/uapi/linux/if_hippi.h
8470 F:      net/802/hippi.c
8471
8472 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8473 M:      Kurt Kanzenbach <kurt@linutronix.de>
8474 L:      netdev@vger.kernel.org
8475 S:      Maintained
8476 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8477 F:      drivers/net/dsa/hirschmann/*
8478 F:      include/linux/platform_data/hirschmann-hellcreek.h
8479 F:      net/dsa/tag_hellcreek.c
8480
8481 HISILICON DMA DRIVER
8482 M:      Zhou Wang <wangzhou1@hisilicon.com>
8483 L:      dmaengine@vger.kernel.org
8484 S:      Maintained
8485 F:      drivers/dma/hisi_dma.c
8486
8487 HISILICON GPIO DRIVER
8488 M:      Luo Jiaxing <luojiaxing@huawei.com>
8489 L:      linux-gpio@vger.kernel.org
8490 S:      Maintained
8491 F:      drivers/gpio/gpio-hisi.c
8492
8493 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8494 M:      Zaibo Xu <xuzaibo@huawei.com>
8495 L:      linux-crypto@vger.kernel.org
8496 S:      Maintained
8497 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8498 F:      drivers/crypto/hisilicon/hpre/hpre.h
8499 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8500 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8501
8502 HISILICON I2C CONTROLLER DRIVER
8503 M:      Yicong Yang <yangyicong@hisilicon.com>
8504 L:      linux-i2c@vger.kernel.org
8505 S:      Maintained
8506 W:      https://www.hisilicon.com
8507 F:      drivers/i2c/busses/i2c-hisi.c
8508
8509 HISILICON LPC BUS DRIVER
8510 M:      john.garry@huawei.com
8511 S:      Maintained
8512 W:      http://www.hisilicon.com
8513 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8514 F:      drivers/bus/hisi_lpc.c
8515
8516 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8517 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8518 M:      Salil Mehta <salil.mehta@huawei.com>
8519 L:      netdev@vger.kernel.org
8520 S:      Maintained
8521 W:      http://www.hisilicon.com
8522 F:      drivers/net/ethernet/hisilicon/hns3/
8523
8524 HISILICON NETWORK SUBSYSTEM DRIVER
8525 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8526 M:      Salil Mehta <salil.mehta@huawei.com>
8527 L:      netdev@vger.kernel.org
8528 S:      Maintained
8529 W:      http://www.hisilicon.com
8530 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8531 F:      drivers/net/ethernet/hisilicon/
8532
8533 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8534 M:      John Stultz <john.stultz@linaro.org>
8535 L:      linux-kernel@vger.kernel.org
8536 S:      Maintained
8537 F:      drivers/misc/hisi_hikey_usb.c
8538 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8539
8540 HISILICON PMU DRIVER
8541 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8542 S:      Supported
8543 W:      http://www.hisilicon.com
8544 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8545 F:      drivers/perf/hisilicon
8546
8547 HISILICON QM AND ZIP Controller DRIVER
8548 M:      Zhou Wang <wangzhou1@hisilicon.com>
8549 L:      linux-crypto@vger.kernel.org
8550 S:      Maintained
8551 F:      Documentation/ABI/testing/debugfs-hisi-zip
8552 F:      drivers/crypto/hisilicon/qm.c
8553 F:      drivers/crypto/hisilicon/qm.h
8554 F:      drivers/crypto/hisilicon/sgl.c
8555 F:      drivers/crypto/hisilicon/zip/
8556
8557 HISILICON ROCE DRIVER
8558 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8559 M:      Weihang Li <liweihang@huawei.com>
8560 L:      linux-rdma@vger.kernel.org
8561 S:      Maintained
8562 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8563 F:      drivers/infiniband/hw/hns/
8564
8565 HISILICON SAS Controller
8566 M:      John Garry <john.garry@huawei.com>
8567 S:      Supported
8568 W:      http://www.hisilicon.com
8569 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8570 F:      drivers/scsi/hisi_sas/
8571
8572 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8573 M:      Zaibo Xu <xuzaibo@huawei.com>
8574 L:      linux-crypto@vger.kernel.org
8575 S:      Maintained
8576 F:      Documentation/ABI/testing/debugfs-hisi-sec
8577 F:      drivers/crypto/hisilicon/sec2/sec.h
8578 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8579 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8580 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8581
8582 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8583 M:      Jay Fang <f.fangjian@huawei.com>
8584 L:      linux-spi@vger.kernel.org
8585 S:      Maintained
8586 W:      http://www.hisilicon.com
8587 F:      drivers/spi/spi-hisi-kunpeng.c
8588
8589 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8590 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8591 L:      linux-kernel@vger.kernel.org
8592 S:      Maintained
8593 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8594 F:      drivers/spmi/hisi-spmi-controller.c
8595
8596 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8597 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8598 L:      linux-kernel@vger.kernel.org
8599 S:      Maintained
8600 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8601 F:      drivers/mfd/hi6421-spmi-pmic.c
8602
8603 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8604 M:      Zaibo Xu <xuzaibo@huawei.com>
8605 S:      Maintained
8606 F:      drivers/crypto/hisilicon/trng/trng.c
8607
8608 HISILICON V3XX SPI NOR FLASH Controller Driver
8609 M:      John Garry <john.garry@huawei.com>
8610 S:      Maintained
8611 W:      http://www.hisilicon.com
8612 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8613
8614 HMM - Heterogeneous Memory Management
8615 M:      Jérôme Glisse <jglisse@redhat.com>
8616 L:      linux-mm@kvack.org
8617 S:      Maintained
8618 F:      Documentation/vm/hmm.rst
8619 F:      include/linux/hmm*
8620 F:      lib/test_hmm*
8621 F:      mm/hmm*
8622 F:      tools/testing/selftests/vm/*hmm*
8623
8624 HOST AP DRIVER
8625 M:      Jouni Malinen <j@w1.fi>
8626 L:      linux-wireless@vger.kernel.org
8627 S:      Obsolete
8628 W:      http://w1.fi/hostap-driver.html
8629 F:      drivers/net/wireless/intersil/hostap/
8630
8631 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8632 L:      platform-driver-x86@vger.kernel.org
8633 S:      Orphan
8634 F:      drivers/platform/x86/tc1100-wmi.c
8635
8636 HPET:   High Precision Event Timers driver
8637 M:      Clemens Ladisch <clemens@ladisch.de>
8638 S:      Maintained
8639 F:      Documentation/timers/hpet.rst
8640 F:      drivers/char/hpet.c
8641 F:      include/linux/hpet.h
8642 F:      include/uapi/linux/hpet.h
8643
8644 HPET:   x86
8645 S:      Orphan
8646 F:      arch/x86/include/asm/hpet.h
8647 F:      arch/x86/kernel/hpet.c
8648
8649 HPFS FILESYSTEM
8650 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8651 S:      Maintained
8652 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8653 F:      fs/hpfs/
8654
8655 HSI SUBSYSTEM
8656 M:      Sebastian Reichel <sre@kernel.org>
8657 S:      Maintained
8658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8659 F:      Documentation/ABI/testing/sysfs-bus-hsi
8660 F:      Documentation/driver-api/hsi.rst
8661 F:      drivers/hsi/
8662 F:      include/linux/hsi/
8663 F:      include/uapi/linux/hsi/
8664
8665 HSO 3G MODEM DRIVER
8666 L:      linux-usb@vger.kernel.org
8667 S:      Orphan
8668 F:      drivers/net/usb/hso.c
8669
8670 HSR NETWORK PROTOCOL
8671 L:      netdev@vger.kernel.org
8672 S:      Orphan
8673 F:      net/hsr/
8674
8675 HT16K33 LED CONTROLLER DRIVER
8676 M:      Robin van der Gracht <robin@protonic.nl>
8677 S:      Maintained
8678 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8679 F:      drivers/auxdisplay/ht16k33.c
8680
8681 HTCPEN TOUCHSCREEN DRIVER
8682 M:      Pau Oliva Fora <pof@eslack.org>
8683 L:      linux-input@vger.kernel.org
8684 S:      Maintained
8685 F:      drivers/input/touchscreen/htcpen.c
8686
8687 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8688 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8689 L:      linux-iio@vger.kernel.org
8690 S:      Maintained
8691 W:      http://www.st.com/
8692 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8693 F:      drivers/iio/humidity/hts221*
8694
8695 HUAWEI ETHERNET DRIVER
8696 L:      netdev@vger.kernel.org
8697 S:      Orphan
8698 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8699 F:      drivers/net/ethernet/huawei/hinic/
8700
8701 HUGETLB FILESYSTEM
8702 M:      Mike Kravetz <mike.kravetz@oracle.com>
8703 L:      linux-mm@kvack.org
8704 S:      Maintained
8705 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8706 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8707 F:      Documentation/vm/hugetlbfs_reserv.rst
8708 F:      fs/hugetlbfs/
8709 F:      include/linux/hugetlb.h
8710 F:      mm/hugetlb.c
8711
8712 HVA ST MEDIA DRIVER
8713 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8714 L:      linux-media@vger.kernel.org
8715 S:      Supported
8716 W:      https://linuxtv.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 F:      drivers/media/platform/sti/hva
8719
8720 HWPOISON MEMORY FAILURE HANDLING
8721 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8722 L:      linux-mm@kvack.org
8723 S:      Maintained
8724 F:      mm/hwpoison-inject.c
8725 F:      mm/memory-failure.c
8726
8727 HYCON HY46XX TOUCHSCREEN SUPPORT
8728 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8729 L:      linux-input@vger.kernel.org
8730 S:      Maintained
8731 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8732 F:      drivers/input/touchscreen/hycon-hy46xx.c
8733
8734 HYGON PROCESSOR SUPPORT
8735 M:      Pu Wen <puwen@hygon.cn>
8736 L:      linux-kernel@vger.kernel.org
8737 S:      Maintained
8738 F:      arch/x86/kernel/cpu/hygon.c
8739
8740 HYNIX HI556 SENSOR DRIVER
8741 M:      Shawn Tu <shawnx.tu@intel.com>
8742 L:      linux-media@vger.kernel.org
8743 S:      Maintained
8744 T:      git git://linuxtv.org/media_tree.git
8745 F:      drivers/media/i2c/hi556.c
8746
8747 HYNIX HI846 SENSOR DRIVER
8748 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8749 L:      linux-media@vger.kernel.org
8750 S:      Maintained
8751 F:      drivers/media/i2c/hi846.c
8752
8753 Hyper-V/Azure CORE AND DRIVERS
8754 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8755 M:      Haiyang Zhang <haiyangz@microsoft.com>
8756 M:      Stephen Hemminger <sthemmin@microsoft.com>
8757 M:      Wei Liu <wei.liu@kernel.org>
8758 M:      Dexuan Cui <decui@microsoft.com>
8759 L:      linux-hyperv@vger.kernel.org
8760 S:      Supported
8761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8762 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8763 F:      Documentation/ABI/testing/debugfs-hyperv
8764 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8765 F:      arch/arm64/hyperv
8766 F:      arch/arm64/include/asm/hyperv-tlfs.h
8767 F:      arch/arm64/include/asm/mshyperv.h
8768 F:      arch/x86/hyperv
8769 F:      arch/x86/include/asm/hyperv-tlfs.h
8770 F:      arch/x86/include/asm/mshyperv.h
8771 F:      arch/x86/include/asm/trace/hyperv.h
8772 F:      arch/x86/kernel/cpu/mshyperv.c
8773 F:      drivers/clocksource/hyperv_timer.c
8774 F:      drivers/hid/hid-hyperv.c
8775 F:      drivers/hv/
8776 F:      drivers/input/serio/hyperv-keyboard.c
8777 F:      drivers/iommu/hyperv-iommu.c
8778 F:      drivers/net/ethernet/microsoft/
8779 F:      drivers/net/hyperv/
8780 F:      drivers/pci/controller/pci-hyperv-intf.c
8781 F:      drivers/pci/controller/pci-hyperv.c
8782 F:      drivers/scsi/storvsc_drv.c
8783 F:      drivers/uio/uio_hv_generic.c
8784 F:      drivers/video/fbdev/hyperv_fb.c
8785 F:      include/asm-generic/hyperv-tlfs.h
8786 F:      include/asm-generic/mshyperv.h
8787 F:      include/clocksource/hyperv_timer.h
8788 F:      include/linux/hyperv.h
8789 F:      include/uapi/linux/hyperv.h
8790 F:      net/vmw_vsock/hyperv_transport.c
8791 F:      tools/hv/
8792
8793 HYPERBUS SUPPORT
8794 M:      Vignesh Raghavendra <vigneshr@ti.com>
8795 L:      linux-mtd@lists.infradead.org
8796 S:      Supported
8797 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8798 C:      irc://irc.oftc.net/mtd
8799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8800 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8801 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8802 F:      drivers/mtd/hyperbus/
8803 F:      include/linux/mtd/hyperbus.h
8804
8805 HYPERVISOR VIRTUAL CONSOLE DRIVER
8806 L:      linuxppc-dev@lists.ozlabs.org
8807 S:      Odd Fixes
8808 F:      drivers/tty/hvc/
8809
8810 I2C ACPI SUPPORT
8811 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8812 L:      linux-i2c@vger.kernel.org
8813 L:      linux-acpi@vger.kernel.org
8814 S:      Maintained
8815 F:      drivers/i2c/i2c-core-acpi.c
8816
8817 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8818 M:      Ajay Gupta <ajayg@nvidia.com>
8819 L:      linux-i2c@vger.kernel.org
8820 S:      Maintained
8821 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8822 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8823
8824 I2C MUXES
8825 M:      Peter Rosin <peda@axentia.se>
8826 L:      linux-i2c@vger.kernel.org
8827 S:      Maintained
8828 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8829 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8830 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8831 F:      Documentation/i2c/i2c-topology.rst
8832 F:      Documentation/i2c/muxes/
8833 F:      drivers/i2c/i2c-mux.c
8834 F:      drivers/i2c/muxes/
8835 F:      include/linux/i2c-mux.h
8836
8837 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8838 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8839 L:      linux-i2c@vger.kernel.org
8840 S:      Maintained
8841 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8842 F:      drivers/i2c/busses/i2c-mv64xxx.c
8843
8844 I2C OVER PARALLEL PORT
8845 M:      Jean Delvare <jdelvare@suse.com>
8846 L:      linux-i2c@vger.kernel.org
8847 S:      Maintained
8848 F:      Documentation/i2c/busses/i2c-parport.rst
8849 F:      drivers/i2c/busses/i2c-parport.c
8850
8851 I2C SUBSYSTEM
8852 M:      Wolfram Sang <wsa@kernel.org>
8853 L:      linux-i2c@vger.kernel.org
8854 S:      Maintained
8855 W:      https://i2c.wiki.kernel.org/
8856 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8858 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8859 F:      Documentation/i2c/
8860 F:      drivers/i2c/*
8861 F:      include/linux/i2c-dev.h
8862 F:      include/linux/i2c-smbus.h
8863 F:      include/linux/i2c.h
8864 F:      include/uapi/linux/i2c-*.h
8865 F:      include/uapi/linux/i2c.h
8866
8867 I2C SUBSYSTEM HOST DRIVERS
8868 L:      linux-i2c@vger.kernel.org
8869 S:      Odd Fixes
8870 W:      https://i2c.wiki.kernel.org/
8871 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8873 F:      Documentation/devicetree/bindings/i2c/
8874 F:      drivers/i2c/algos/
8875 F:      drivers/i2c/busses/
8876
8877 I2C-TAOS-EVM DRIVER
8878 M:      Jean Delvare <jdelvare@suse.com>
8879 L:      linux-i2c@vger.kernel.org
8880 S:      Maintained
8881 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8882 F:      drivers/i2c/busses/i2c-taos-evm.c
8883
8884 I2C-TINY-USB DRIVER
8885 M:      Till Harbaum <till@harbaum.org>
8886 L:      linux-i2c@vger.kernel.org
8887 S:      Maintained
8888 W:      http://www.harbaum.org/till/i2c_tiny_usb
8889 F:      drivers/i2c/busses/i2c-tiny-usb.c
8890
8891 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8892 M:      Jean Delvare <jdelvare@suse.com>
8893 L:      linux-i2c@vger.kernel.org
8894 S:      Maintained
8895 F:      Documentation/i2c/busses/i2c-ali1535.rst
8896 F:      Documentation/i2c/busses/i2c-ali1563.rst
8897 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8898 F:      Documentation/i2c/busses/i2c-amd756.rst
8899 F:      Documentation/i2c/busses/i2c-amd8111.rst
8900 F:      Documentation/i2c/busses/i2c-i801.rst
8901 F:      Documentation/i2c/busses/i2c-nforce2.rst
8902 F:      Documentation/i2c/busses/i2c-piix4.rst
8903 F:      Documentation/i2c/busses/i2c-sis5595.rst
8904 F:      Documentation/i2c/busses/i2c-sis630.rst
8905 F:      Documentation/i2c/busses/i2c-sis96x.rst
8906 F:      Documentation/i2c/busses/i2c-via.rst
8907 F:      Documentation/i2c/busses/i2c-viapro.rst
8908 F:      drivers/i2c/busses/i2c-ali1535.c
8909 F:      drivers/i2c/busses/i2c-ali1563.c
8910 F:      drivers/i2c/busses/i2c-ali15x3.c
8911 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8912 F:      drivers/i2c/busses/i2c-amd756.c
8913 F:      drivers/i2c/busses/i2c-amd8111.c
8914 F:      drivers/i2c/busses/i2c-i801.c
8915 F:      drivers/i2c/busses/i2c-isch.c
8916 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8917 F:      drivers/i2c/busses/i2c-nforce2.c
8918 F:      drivers/i2c/busses/i2c-piix4.c
8919 F:      drivers/i2c/busses/i2c-sis5595.c
8920 F:      drivers/i2c/busses/i2c-sis630.c
8921 F:      drivers/i2c/busses/i2c-sis96x.c
8922 F:      drivers/i2c/busses/i2c-via.c
8923 F:      drivers/i2c/busses/i2c-viapro.c
8924
8925 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8926 M:      Hans de Goede <hdegoede@redhat.com>
8927 L:      linux-i2c@vger.kernel.org
8928 S:      Maintained
8929 F:      drivers/i2c/busses/i2c-cht-wc.c
8930
8931 I2C/SMBUS ISMT DRIVER
8932 M:      Seth Heasley <seth.heasley@intel.com>
8933 M:      Neil Horman <nhorman@tuxdriver.com>
8934 L:      linux-i2c@vger.kernel.org
8935 F:      Documentation/i2c/busses/i2c-ismt.rst
8936 F:      drivers/i2c/busses/i2c-ismt.c
8937
8938 I2C/SMBUS STUB DRIVER
8939 M:      Jean Delvare <jdelvare@suse.com>
8940 L:      linux-i2c@vger.kernel.org
8941 S:      Maintained
8942 F:      drivers/i2c/i2c-stub.c
8943
8944 I3C DRIVER FOR CADENCE I3C MASTER IP
8945 M:      Przemysław Gaj <pgaj@cadence.com>
8946 S:      Maintained
8947 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8948 F:      drivers/i3c/master/i3c-master-cdns.c
8949
8950 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8951 M:      Vitor Soares <vitor.soares@synopsys.com>
8952 S:      Maintained
8953 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8954 F:      drivers/i3c/master/dw*
8955
8956 I3C SUBSYSTEM
8957 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8958 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8959 S:      Maintained
8960 C:      irc://chat.freenode.net/linux-i3c
8961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8962 F:      Documentation/ABI/testing/sysfs-bus-i3c
8963 F:      Documentation/devicetree/bindings/i3c/
8964 F:      Documentation/driver-api/i3c
8965 F:      drivers/i3c/
8966 F:      include/linux/i3c/
8967
8968 IA64 (Itanium) PLATFORM
8969 L:      linux-ia64@vger.kernel.org
8970 S:      Orphan
8971 F:      Documentation/ia64/
8972 F:      arch/ia64/
8973
8974 IBM Power 842 compression accelerator
8975 M:      Haren Myneni <haren@us.ibm.com>
8976 S:      Supported
8977 F:      crypto/842.c
8978 F:      drivers/crypto/nx/Kconfig
8979 F:      drivers/crypto/nx/Makefile
8980 F:      drivers/crypto/nx/nx-842*
8981 F:      include/linux/sw842.h
8982 F:      lib/842/
8983
8984 IBM Power in-Nest Crypto Acceleration
8985 M:      Breno Leitão <leitao@debian.org>
8986 M:      Nayna Jain <nayna@linux.ibm.com>
8987 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8988 L:      linux-crypto@vger.kernel.org
8989 S:      Supported
8990 F:      drivers/crypto/nx/Kconfig
8991 F:      drivers/crypto/nx/Makefile
8992 F:      drivers/crypto/nx/nx-aes*
8993 F:      drivers/crypto/nx/nx-sha*
8994 F:      drivers/crypto/nx/nx.*
8995 F:      drivers/crypto/nx/nx_csbcpb.h
8996 F:      drivers/crypto/nx/nx_debugfs.c
8997
8998 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8999 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9000 L:      linux-pci@vger.kernel.org
9001 L:      linuxppc-dev@lists.ozlabs.org
9002 S:      Supported
9003 F:      drivers/pci/hotplug/rpadlpar*
9004
9005 IBM Power Linux RAID adapter
9006 M:      Brian King <brking@us.ibm.com>
9007 S:      Supported
9008 F:      drivers/scsi/ipr.*
9009
9010 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9011 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9012 L:      linux-pci@vger.kernel.org
9013 L:      linuxppc-dev@lists.ozlabs.org
9014 S:      Supported
9015 F:      drivers/pci/hotplug/rpaphp*
9016
9017 IBM Power SRIOV Virtual NIC Device Driver
9018 M:      Dany Madden <drt@linux.ibm.com>
9019 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9020 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9021 L:      netdev@vger.kernel.org
9022 S:      Supported
9023 F:      drivers/net/ethernet/ibm/ibmvnic.*
9024
9025 IBM Power Virtual Accelerator Switchboard
9026 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9027 L:      linuxppc-dev@lists.ozlabs.org
9028 S:      Supported
9029 F:      arch/powerpc/include/asm/vas.h
9030 F:      arch/powerpc/platforms/powernv/copy-paste.h
9031 F:      arch/powerpc/platforms/powernv/vas*
9032
9033 IBM Power Virtual Ethernet Device Driver
9034 M:      Cristobal Forno <cforno12@linux.ibm.com>
9035 L:      netdev@vger.kernel.org
9036 S:      Supported
9037 F:      drivers/net/ethernet/ibm/ibmveth.*
9038
9039 IBM Power Virtual FC Device Drivers
9040 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9041 L:      linux-scsi@vger.kernel.org
9042 S:      Supported
9043 F:      drivers/scsi/ibmvscsi/ibmvfc*
9044
9045 IBM Power Virtual Management Channel Driver
9046 M:      Brad Warrum <bwarrum@linux.ibm.com>
9047 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9048 S:      Supported
9049 F:      drivers/misc/ibmvmc.*
9050
9051 IBM Power Virtual SCSI Device Drivers
9052 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9053 L:      linux-scsi@vger.kernel.org
9054 S:      Supported
9055 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9056 F:      include/scsi/viosrp.h
9057
9058 IBM Power Virtual SCSI Device Target Driver
9059 M:      Michael Cyr <mikecyr@linux.ibm.com>
9060 L:      linux-scsi@vger.kernel.org
9061 L:      target-devel@vger.kernel.org
9062 S:      Supported
9063 F:      drivers/scsi/ibmvscsi_tgt/
9064
9065 IBM Power VMX Cryptographic instructions
9066 M:      Breno Leitão <leitao@debian.org>
9067 M:      Nayna Jain <nayna@linux.ibm.com>
9068 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9069 L:      linux-crypto@vger.kernel.org
9070 S:      Supported
9071 F:      drivers/crypto/vmx/Kconfig
9072 F:      drivers/crypto/vmx/Makefile
9073 F:      drivers/crypto/vmx/aes*
9074 F:      drivers/crypto/vmx/ghash*
9075 F:      drivers/crypto/vmx/ppc-xlate.pl
9076 F:      drivers/crypto/vmx/vmx.c
9077
9078 IBM ServeRAID RAID DRIVER
9079 S:      Orphan
9080 F:      drivers/scsi/ips.*
9081
9082 ICH LPC AND GPIO DRIVER
9083 M:      Peter Tyser <ptyser@xes-inc.com>
9084 S:      Maintained
9085 F:      drivers/gpio/gpio-ich.c
9086 F:      drivers/mfd/lpc_ich.c
9087
9088 ICY I2C DRIVER
9089 M:      Max Staudt <max@enpas.org>
9090 L:      linux-i2c@vger.kernel.org
9091 S:      Maintained
9092 F:      drivers/i2c/busses/i2c-icy.c
9093
9094 IDEAPAD LAPTOP EXTRAS DRIVER
9095 M:      Ike Panhc <ike.pan@canonical.com>
9096 L:      platform-driver-x86@vger.kernel.org
9097 S:      Maintained
9098 W:      http://launchpad.net/ideapad-laptop
9099 F:      drivers/platform/x86/ideapad-laptop.c
9100
9101 IDEAPAD LAPTOP SLIDEBAR DRIVER
9102 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9103 L:      linux-input@vger.kernel.org
9104 S:      Maintained
9105 W:      https://github.com/o2genum/ideapad-slidebar
9106 F:      drivers/input/misc/ideapad_slidebar.c
9107
9108 IDT VersaClock 5 CLOCK DRIVER
9109 M:      Luca Ceresoli <luca@lucaceresoli.net>
9110 S:      Maintained
9111 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9112 F:      drivers/clk/clk-versaclock5.c
9113
9114 IEEE 802.15.4 SUBSYSTEM
9115 M:      Alexander Aring <alex.aring@gmail.com>
9116 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9117 L:      linux-wpan@vger.kernel.org
9118 S:      Maintained
9119 W:      https://linux-wpan.org/
9120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9122 F:      Documentation/networking/ieee802154.rst
9123 F:      drivers/net/ieee802154/
9124 F:      include/linux/ieee802154.h
9125 F:      include/linux/nl802154.h
9126 F:      include/net/af_ieee802154.h
9127 F:      include/net/cfg802154.h
9128 F:      include/net/ieee802154_netdev.h
9129 F:      include/net/mac802154.h
9130 F:      include/net/nl802154.h
9131 F:      net/ieee802154/
9132 F:      net/mac802154/
9133
9134 IFE PROTOCOL
9135 M:      Yotam Gigi <yotam.gi@gmail.com>
9136 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9137 F:      include/net/ife.h
9138 F:      include/uapi/linux/ife.h
9139 F:      net/ife
9140
9141 IGORPLUG-USB IR RECEIVER
9142 M:      Sean Young <sean@mess.org>
9143 L:      linux-media@vger.kernel.org
9144 S:      Maintained
9145 F:      drivers/media/rc/igorplugusb.c
9146
9147 IGUANAWORKS USB IR TRANSCEIVER
9148 M:      Sean Young <sean@mess.org>
9149 L:      linux-media@vger.kernel.org
9150 S:      Maintained
9151 F:      drivers/media/rc/iguanair.c
9152
9153 IIO DIGITAL POTENTIOMETER DAC
9154 M:      Peter Rosin <peda@axentia.se>
9155 L:      linux-iio@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9158 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9159 F:      drivers/iio/dac/dpot-dac.c
9160
9161 IIO ENVELOPE DETECTOR
9162 M:      Peter Rosin <peda@axentia.se>
9163 L:      linux-iio@vger.kernel.org
9164 S:      Maintained
9165 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9166 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9167 F:      drivers/iio/adc/envelope-detector.c
9168
9169 IIO MULTIPLEXER
9170 M:      Peter Rosin <peda@axentia.se>
9171 L:      linux-iio@vger.kernel.org
9172 S:      Maintained
9173 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9174 F:      drivers/iio/multiplexer/iio-mux.c
9175
9176 IIO SCMI BASED DRIVER
9177 M:      Jyoti Bhayana <jbhayana@google.com>
9178 L:      linux-iio@vger.kernel.org
9179 S:      Maintained
9180 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9181
9182 IIO SUBSYSTEM AND DRIVERS
9183 M:      Jonathan Cameron <jic23@kernel.org>
9184 R:      Lars-Peter Clausen <lars@metafoo.de>
9185 L:      linux-iio@vger.kernel.org
9186 S:      Maintained
9187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9188 F:      Documentation/ABI/testing/configfs-iio*
9189 F:      Documentation/ABI/testing/sysfs-bus-iio*
9190 F:      Documentation/devicetree/bindings/iio/
9191 F:      drivers/iio/
9192 F:      drivers/staging/iio/
9193 F:      include/linux/iio/
9194 F:      tools/iio/
9195
9196 IIO UNIT CONVERTER
9197 M:      Peter Rosin <peda@axentia.se>
9198 L:      linux-iio@vger.kernel.org
9199 S:      Maintained
9200 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9201 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9202 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9203 F:      drivers/iio/afe/iio-rescale.c
9204
9205 IKANOS/ADI EAGLE ADSL USB DRIVER
9206 M:      Matthieu Castet <castet.matthieu@free.fr>
9207 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9208 S:      Maintained
9209 F:      drivers/usb/atm/ueagle-atm.c
9210
9211 IMGTEC ASCII LCD DRIVER
9212 M:      Paul Burton <paulburton@kernel.org>
9213 S:      Maintained
9214 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9215 F:      drivers/auxdisplay/img-ascii-lcd.c
9216
9217 IMGTEC IR DECODER DRIVER
9218 S:      Orphan
9219 F:      drivers/media/rc/img-ir/
9220
9221 IMON SOUNDGRAPH USB IR RECEIVER
9222 M:      Sean Young <sean@mess.org>
9223 L:      linux-media@vger.kernel.org
9224 S:      Maintained
9225 F:      drivers/media/rc/imon.c
9226 F:      drivers/media/rc/imon_raw.c
9227
9228 IMS TWINTURBO FRAMEBUFFER DRIVER
9229 L:      linux-fbdev@vger.kernel.org
9230 S:      Orphan
9231 F:      drivers/video/fbdev/imsttfb.c
9232
9233 INA209 HARDWARE MONITOR DRIVER
9234 M:      Guenter Roeck <linux@roeck-us.net>
9235 L:      linux-hwmon@vger.kernel.org
9236 S:      Maintained
9237 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9238 F:      Documentation/hwmon/ina209.rst
9239 F:      drivers/hwmon/ina209.c
9240
9241 INA2XX HARDWARE MONITOR DRIVER
9242 M:      Guenter Roeck <linux@roeck-us.net>
9243 L:      linux-hwmon@vger.kernel.org
9244 S:      Maintained
9245 F:      Documentation/hwmon/ina2xx.rst
9246 F:      drivers/hwmon/ina2xx.c
9247 F:      include/linux/platform_data/ina2xx.h
9248
9249 INDUSTRY PACK SUBSYSTEM (IPACK)
9250 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9251 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9252 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9253 L:      industrypack-devel@lists.sourceforge.net
9254 S:      Maintained
9255 W:      http://industrypack.sourceforge.net
9256 F:      drivers/ipack/
9257
9258 INFINEON DPS310 Driver
9259 M:      Eddie James <eajames@linux.ibm.com>
9260 L:      linux-iio@vger.kernel.org
9261 S:      Maintained
9262 F:      drivers/iio/pressure/dps310.c
9263
9264 INFINIBAND SUBSYSTEM
9265 M:      Doug Ledford <dledford@redhat.com>
9266 M:      Jason Gunthorpe <jgg@nvidia.com>
9267 L:      linux-rdma@vger.kernel.org
9268 S:      Supported
9269 W:      https://github.com/linux-rdma/rdma-core
9270 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9272 F:      Documentation/devicetree/bindings/infiniband/
9273 F:      Documentation/infiniband/
9274 F:      drivers/infiniband/
9275 F:      include/rdma/
9276 F:      include/trace/events/ib_mad.h
9277 F:      include/trace/events/ib_umad.h
9278 F:      include/uapi/linux/if_infiniband.h
9279 F:      include/uapi/rdma/
9280 F:      samples/bpf/ibumad_kern.c
9281 F:      samples/bpf/ibumad_user.c
9282
9283 INGENIC JZ4780 NAND DRIVER
9284 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9285 L:      linux-mtd@lists.infradead.org
9286 L:      linux-mips@vger.kernel.org
9287 S:      Maintained
9288 F:      drivers/mtd/nand/raw/ingenic/
9289
9290 INGENIC JZ47xx SoCs
9291 M:      Paul Cercueil <paul@crapouillou.net>
9292 L:      linux-mips@vger.kernel.org
9293 S:      Maintained
9294 F:      arch/mips/boot/dts/ingenic/
9295 F:      arch/mips/generic/board-ingenic.c
9296 F:      arch/mips/include/asm/mach-ingenic/
9297 F:      arch/mips/ingenic/Kconfig
9298 F:      drivers/clk/ingenic/
9299 F:      drivers/dma/dma-jz4780.c
9300 F:      drivers/gpu/drm/ingenic/
9301 F:      drivers/i2c/busses/i2c-jz4780.c
9302 F:      drivers/iio/adc/ingenic-adc.c
9303 F:      drivers/irqchip/irq-ingenic.c
9304 F:      drivers/memory/jz4780-nemc.c
9305 F:      drivers/mmc/host/jz4740_mmc.c
9306 F:      drivers/mtd/nand/raw/ingenic/
9307 F:      drivers/pinctrl/pinctrl-ingenic.c
9308 F:      drivers/power/supply/ingenic-battery.c
9309 F:      drivers/pwm/pwm-jz4740.c
9310 F:      drivers/remoteproc/ingenic_rproc.c
9311 F:      drivers/rtc/rtc-jz4740.c
9312 F:      drivers/tty/serial/8250/8250_ingenic.c
9313 F:      drivers/usb/musb/jz4740.c
9314 F:      drivers/watchdog/jz4740_wdt.c
9315 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9316 F:      include/linux/mfd/ingenic-tcu.h
9317 F:      sound/soc/codecs/jz47*
9318 F:      sound/soc/jz4740/
9319
9320 INOTIFY
9321 M:      Jan Kara <jack@suse.cz>
9322 R:      Amir Goldstein <amir73il@gmail.com>
9323 L:      linux-fsdevel@vger.kernel.org
9324 S:      Maintained
9325 F:      Documentation/filesystems/inotify.rst
9326 F:      fs/notify/inotify/
9327 F:      include/linux/inotify.h
9328 F:      include/uapi/linux/inotify.h
9329
9330 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9331 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9332 L:      linux-input@vger.kernel.org
9333 S:      Maintained
9334 Q:      http://patchwork.kernel.org/project/linux-input/list/
9335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9336 F:      Documentation/devicetree/bindings/input/
9337 F:      Documentation/devicetree/bindings/serio/
9338 F:      Documentation/input/
9339 F:      drivers/input/
9340 F:      include/linux/input.h
9341 F:      include/linux/input/
9342 F:      include/uapi/linux/input-event-codes.h
9343 F:      include/uapi/linux/input.h
9344
9345 INPUT MULTITOUCH (MT) PROTOCOL
9346 M:      Henrik Rydberg <rydberg@bitmath.org>
9347 L:      linux-input@vger.kernel.org
9348 S:      Odd fixes
9349 F:      Documentation/input/multi-touch-protocol.rst
9350 F:      drivers/input/input-mt.c
9351 K:      \b(ABS|SYN)_MT_
9352
9353 INSIDE SECURE CRYPTO DRIVER
9354 M:      Antoine Tenart <atenart@kernel.org>
9355 L:      linux-crypto@vger.kernel.org
9356 S:      Maintained
9357 F:      drivers/crypto/inside-secure/
9358
9359 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9360 M:      Mimi Zohar <zohar@linux.ibm.com>
9361 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9362 L:      linux-integrity@vger.kernel.org
9363 S:      Supported
9364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9365 F:      security/integrity/ima/
9366
9367 INTEL 810/815 FRAMEBUFFER DRIVER
9368 M:      Antonino Daplas <adaplas@gmail.com>
9369 L:      linux-fbdev@vger.kernel.org
9370 S:      Maintained
9371 F:      drivers/video/fbdev/i810/
9372
9373 INTEL ASoC DRIVERS
9374 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9375 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9376 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9377 M:      Jie Yang <yang.jie@linux.intel.com>
9378 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9379 S:      Supported
9380 F:      sound/soc/intel/
9381
9382 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9383 M:      Hans de Goede <hdegoede@redhat.com>
9384 L:      platform-driver-x86@vger.kernel.org
9385 S:      Maintained
9386 F:      drivers/platform/x86/intel/atomisp2/pm.c
9387
9388 INTEL ATOMISP2 LED DRIVER
9389 M:      Hans de Goede <hdegoede@redhat.com>
9390 L:      platform-driver-x86@vger.kernel.org
9391 S:      Maintained
9392 F:      drivers/platform/x86/intel/atomisp2/led.c
9393
9394 INTEL BIOS SAR INT1092 DRIVER
9395 M:      Shravan Sudhakar <s.shravan@intel.com>
9396 M:      Intel Corporation <linuxwwan@intel.com>
9397 L:      platform-driver-x86@vger.kernel.org
9398 S:      Maintained
9399 F:      drivers/platform/x86/intel/int1092/
9400
9401 INTEL BROXTON PMC DRIVER
9402 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9403 M:      Zha Qipeng <qipeng.zha@intel.com>
9404 S:      Maintained
9405 F:      drivers/mfd/intel_pmc_bxt.c
9406 F:      include/linux/mfd/intel_pmc_bxt.h
9407
9408 INTEL C600 SERIES SAS CONTROLLER DRIVER
9409 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9410 L:      linux-scsi@vger.kernel.org
9411 S:      Supported
9412 T:      git git://git.code.sf.net/p/intel-sas/isci
9413 F:      drivers/scsi/isci/
9414
9415 INTEL CPU family model numbers
9416 M:      Tony Luck <tony.luck@intel.com>
9417 M:      x86@kernel.org
9418 L:      linux-kernel@vger.kernel.org
9419 S:      Supported
9420 F:      arch/x86/include/asm/intel-family.h
9421
9422 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9423 M:      Jani Nikula <jani.nikula@linux.intel.com>
9424 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9425 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9426 L:      intel-gfx@lists.freedesktop.org
9427 S:      Supported
9428 W:      https://01.org/linuxgraphics/
9429 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9430 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9431 C:      irc://irc.oftc.net/intel-gfx
9432 T:      git git://anongit.freedesktop.org/drm-intel
9433 F:      Documentation/gpu/i915.rst
9434 F:      drivers/gpu/drm/i915/
9435 F:      include/drm/i915*
9436 F:      include/uapi/drm/i915_drm.h
9437
9438 INTEL ETHERNET DRIVERS
9439 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9440 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9441 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9442 S:      Supported
9443 W:      http://www.intel.com/support/feedback.htm
9444 W:      http://e1000.sourceforge.net/
9445 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9448 F:      Documentation/networking/device_drivers/ethernet/intel/
9449 F:      drivers/net/ethernet/intel/
9450 F:      drivers/net/ethernet/intel/*/
9451 F:      include/linux/avf/virtchnl.h
9452 F:      include/linux/net/intel/iidc.h
9453
9454 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9455 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9456 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9457 L:      linux-rdma@vger.kernel.org
9458 S:      Supported
9459 F:      drivers/infiniband/hw/irdma/
9460 F:      include/uapi/rdma/irdma-abi.h
9461
9462 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9463 M:      Maik Broemme <mbroemme@libmpq.org>
9464 L:      linux-fbdev@vger.kernel.org
9465 S:      Maintained
9466 F:      Documentation/fb/intelfb.rst
9467 F:      drivers/video/fbdev/intelfb/
9468
9469 INTEL GPIO DRIVERS
9470 M:      Andy Shevchenko <andy@kernel.org>
9471 L:      linux-gpio@vger.kernel.org
9472 S:      Maintained
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9474 F:      drivers/gpio/gpio-ich.c
9475 F:      drivers/gpio/gpio-merrifield.c
9476 F:      drivers/gpio/gpio-ml-ioh.c
9477 F:      drivers/gpio/gpio-pch.c
9478 F:      drivers/gpio/gpio-sch.c
9479 F:      drivers/gpio/gpio-sodaville.c
9480
9481 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9482 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9483 M:      Zhi Wang <zhi.a.wang@intel.com>
9484 L:      intel-gvt-dev@lists.freedesktop.org
9485 L:      intel-gfx@lists.freedesktop.org
9486 S:      Supported
9487 W:      https://01.org/igvt-g
9488 T:      git https://github.com/intel/gvt-linux.git
9489 F:      drivers/gpu/drm/i915/gvt/
9490
9491 INTEL HID EVENT DRIVER
9492 M:      Alex Hung <alex.hung@canonical.com>
9493 L:      platform-driver-x86@vger.kernel.org
9494 S:      Maintained
9495 F:      drivers/platform/x86/intel/hid.c
9496
9497 INTEL I/OAT DMA DRIVER
9498 M:      Dave Jiang <dave.jiang@intel.com>
9499 R:      Dan Williams <dan.j.williams@intel.com>
9500 L:      dmaengine@vger.kernel.org
9501 S:      Supported
9502 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9503 F:      drivers/dma/ioat*
9504
9505 INTEL IADX DRIVER
9506 M:      Dave Jiang <dave.jiang@intel.com>
9507 L:      dmaengine@vger.kernel.org
9508 S:      Supported
9509 F:      drivers/dma/idxd/*
9510 F:      include/uapi/linux/idxd.h
9511
9512 INTEL IDLE DRIVER
9513 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9514 M:      Len Brown <lenb@kernel.org>
9515 L:      linux-pm@vger.kernel.org
9516 S:      Supported
9517 B:      https://bugzilla.kernel.org
9518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9519 F:      drivers/idle/intel_idle.c
9520
9521 INTEL INTEGRATED SENSOR HUB DRIVER
9522 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9523 M:      Jiri Kosina <jikos@kernel.org>
9524 L:      linux-input@vger.kernel.org
9525 S:      Maintained
9526 F:      drivers/hid/intel-ish-hid/
9527
9528 INTEL IOMMU (VT-d)
9529 M:      David Woodhouse <dwmw2@infradead.org>
9530 M:      Lu Baolu <baolu.lu@linux.intel.com>
9531 L:      iommu@lists.linux-foundation.org
9532 S:      Supported
9533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9534 F:      drivers/iommu/intel/
9535 F:      include/linux/intel-iommu.h
9536 F:      include/linux/intel-svm.h
9537
9538 INTEL IOP-ADMA DMA DRIVER
9539 R:      Dan Williams <dan.j.williams@intel.com>
9540 S:      Odd fixes
9541 F:      drivers/dma/iop-adma.c
9542
9543 INTEL IPU3 CSI-2 CIO2 DRIVER
9544 M:      Yong Zhi <yong.zhi@intel.com>
9545 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9546 M:      Bingbu Cao <bingbu.cao@intel.com>
9547 M:      Dan Scally <djrscally@gmail.com>
9548 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9549 L:      linux-media@vger.kernel.org
9550 S:      Maintained
9551 T:      git git://linuxtv.org/media_tree.git
9552 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9553 F:      drivers/media/pci/intel/ipu3/
9554
9555 INTEL IPU3 CSI-2 IMGU DRIVER
9556 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9557 R:      Bingbu Cao <bingbu.cao@intel.com>
9558 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9559 L:      linux-media@vger.kernel.org
9560 S:      Maintained
9561 F:      Documentation/admin-guide/media/ipu3.rst
9562 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9563 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9564 F:      drivers/staging/media/ipu3/
9565
9566 INTEL IXP4XX CRYPTO SUPPORT
9567 M:      Corentin Labbe <clabbe@baylibre.com>
9568 L:      linux-crypto@vger.kernel.org
9569 S:      Maintained
9570 F:      drivers/crypto/ixp4xx_crypto.c
9571
9572 INTEL ISHTP ECLITE DRIVER
9573 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9574 L:      platform-driver-x86@vger.kernel.org
9575 S:      Supported
9576 F:      drivers/platform/x86/intel/ishtp_eclite.c
9577
9578 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9579 M:      Krzysztof Halasa <khalasa@piap.pl>
9580 S:      Maintained
9581 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9582 F:      drivers/net/wan/ixp4xx_hss.c
9583 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9584 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9585 F:      include/linux/soc/ixp4xx/npe.h
9586 F:      include/linux/soc/ixp4xx/qmgr.h
9587
9588 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9589 M:      Deepak Saxena <dsaxena@plexity.net>
9590 S:      Maintained
9591 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9592 F:      drivers/char/hw_random/ixp4xx-rng.c
9593
9594 INTEL KEEM BAY DRM DRIVER
9595 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9596 M:      Edmund Dea <edmund.j.dea@intel.com>
9597 S:      Maintained
9598 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9599 F:      drivers/gpu/drm/kmb/
9600
9601 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9602 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9603 S:      Maintained
9604 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9605 F:      drivers/crypto/keembay/Kconfig
9606 F:      drivers/crypto/keembay/Makefile
9607 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9608 F:      drivers/crypto/keembay/ocs-aes.c
9609 F:      drivers/crypto/keembay/ocs-aes.h
9610
9611 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9612 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9613 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9614 M:      Mark Gross <mgross@linux.intel.com>
9615 S:      Maintained
9616 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9617 F:      drivers/crypto/keembay/Kconfig
9618 F:      drivers/crypto/keembay/Makefile
9619 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9620 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9621
9622 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9623 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9624 M:      Declan Murphy <declan.murphy@intel.com>
9625 S:      Maintained
9626 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9627 F:      drivers/crypto/keembay/Kconfig
9628 F:      drivers/crypto/keembay/Makefile
9629 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9630 F:      drivers/crypto/keembay/ocs-hcu.c
9631 F:      drivers/crypto/keembay/ocs-hcu.h
9632
9633 INTEL MANAGEMENT ENGINE (mei)
9634 M:      Tomas Winkler <tomas.winkler@intel.com>
9635 L:      linux-kernel@vger.kernel.org
9636 S:      Supported
9637 F:      Documentation/driver-api/mei/*
9638 F:      drivers/misc/mei/
9639 F:      drivers/watchdog/mei_wdt.c
9640 F:      include/linux/mei_cl_bus.h
9641 F:      include/uapi/linux/mei.h
9642 F:      samples/mei/*
9643
9644 INTEL MAX 10 BMC MFD DRIVER
9645 M:      Xu Yilun <yilun.xu@intel.com>
9646 R:      Tom Rix <trix@redhat.com>
9647 S:      Maintained
9648 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9649 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9650 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9651 F:      drivers/mfd/intel-m10-bmc.c
9652 F:      include/linux/mfd/intel-m10-bmc.h
9653
9654 INTEL MENLOW THERMAL DRIVER
9655 M:      Sujith Thomas <sujith.thomas@intel.com>
9656 L:      linux-pm@vger.kernel.org
9657 S:      Supported
9658 W:      https://01.org/linux-acpi
9659 F:      drivers/thermal/intel/intel_menlow.c
9660
9661 INTEL P-Unit IPC DRIVER
9662 M:      Zha Qipeng <qipeng.zha@intel.com>
9663 L:      platform-driver-x86@vger.kernel.org
9664 S:      Maintained
9665 F:      arch/x86/include/asm/intel_punit_ipc.h
9666 F:      drivers/platform/x86/intel/punit_ipc.c
9667
9668 INTEL PMC CORE DRIVER
9669 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9670 M:      David E Box <david.e.box@intel.com>
9671 L:      platform-driver-x86@vger.kernel.org
9672 S:      Maintained
9673 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9674 F:      drivers/platform/x86/intel/pmc/
9675
9676 INTEL PMIC GPIO DRIVERS
9677 M:      Andy Shevchenko <andy@kernel.org>
9678 S:      Maintained
9679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9680 F:      drivers/gpio/gpio-*cove.c
9681
9682 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9683 M:      Andy Shevchenko <andy@kernel.org>
9684 S:      Maintained
9685 F:      drivers/mfd/intel_soc_pmic*
9686 F:      include/linux/mfd/intel_soc_pmic*
9687
9688 INTEL PMT DRIVER
9689 M:      "David E. Box" <david.e.box@linux.intel.com>
9690 S:      Maintained
9691 F:      drivers/mfd/intel_pmt.c
9692 F:      drivers/platform/x86/intel/pmt/
9693
9694 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9695 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9696 L:      linux-wireless@vger.kernel.org
9697 S:      Maintained
9698 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9699 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9700 F:      drivers/net/wireless/intel/ipw2x00/
9701
9702 INTEL PSTATE DRIVER
9703 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9704 M:      Len Brown <lenb@kernel.org>
9705 L:      linux-pm@vger.kernel.org
9706 S:      Supported
9707 F:      drivers/cpufreq/intel_pstate.c
9708
9709 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9710 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9711 L:      linux-iio@vger.kernel.org
9712 F:      drivers/counter/intel-qep.c
9713
9714 INTEL SCU DRIVERS
9715 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9716 S:      Maintained
9717 F:      arch/x86/include/asm/intel_scu_ipc.h
9718 F:      drivers/platform/x86/intel_scu_*
9719
9720 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9721 M:      Daniel Scally <djrscally@gmail.com>
9722 S:      Maintained
9723 F:      drivers/platform/x86/intel/int3472/
9724
9725 INTEL SPEED SELECT TECHNOLOGY
9726 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9727 L:      platform-driver-x86@vger.kernel.org
9728 S:      Maintained
9729 F:      drivers/platform/x86/intel/speed_select_if/
9730 F:      include/uapi/linux/isst_if.h
9731 F:      tools/power/x86/intel-speed-select/
9732
9733 INTEL STRATIX10 FIRMWARE DRIVERS
9734 M:      Dinh Nguyen <dinguyen@kernel.org>
9735 L:      linux-kernel@vger.kernel.org
9736 S:      Maintained
9737 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9738 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9739 F:      drivers/firmware/stratix10-rsu.c
9740 F:      drivers/firmware/stratix10-svc.c
9741 F:      include/linux/firmware/intel/stratix10-smc.h
9742 F:      include/linux/firmware/intel/stratix10-svc-client.h
9743
9744 INTEL TELEMETRY DRIVER
9745 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9746 M:      "David E. Box" <david.e.box@linux.intel.com>
9747 L:      platform-driver-x86@vger.kernel.org
9748 S:      Maintained
9749 F:      arch/x86/include/asm/intel_telemetry.h
9750 F:      drivers/platform/x86/intel/telemetry/
9751
9752 INTEL UNCORE FREQUENCY CONTROL
9753 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9754 L:      platform-driver-x86@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/platform/x86/intel/uncore-frequency.c
9757
9758 INTEL VIRTUAL BUTTON DRIVER
9759 M:      AceLan Kao <acelan.kao@canonical.com>
9760 L:      platform-driver-x86@vger.kernel.org
9761 S:      Maintained
9762 F:      drivers/platform/x86/intel/vbtn.c
9763
9764 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9765 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9766 L:      linux-wireless@vger.kernel.org
9767 S:      Supported
9768 F:      drivers/net/wireless/intel/iwlegacy/
9769
9770 INTEL WIRELESS WIFI LINK (iwlwifi)
9771 M:      Luca Coelho <luciano.coelho@intel.com>
9772 L:      linux-wireless@vger.kernel.org
9773 S:      Supported
9774 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9776 F:      drivers/net/wireless/intel/iwlwifi/
9777
9778 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9779 M:      Jithu Joseph <jithu.joseph@intel.com>
9780 R:      Maurice Ma <maurice.ma@intel.com>
9781 S:      Maintained
9782 W:      https://slimbootloader.github.io/security/firmware-update.html
9783 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9784
9785 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9786 L:      Dell.Client.Kernel@dell.com
9787 S:      Maintained
9788 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9789
9790 INTEL WWAN IOSM DRIVER
9791 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9792 M:      Intel Corporation <linuxwwan@intel.com>
9793 L:      netdev@vger.kernel.org
9794 S:      Maintained
9795 F:      drivers/net/wwan/iosm/
9796
9797 INTEL(R) TRACE HUB
9798 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9799 S:      Supported
9800 F:      Documentation/trace/intel_th.rst
9801 F:      drivers/hwtracing/intel_th/
9802 F:      include/linux/intel_th.h
9803
9804 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9805 M:      Ning Sun <ning.sun@intel.com>
9806 L:      tboot-devel@lists.sourceforge.net
9807 S:      Supported
9808 W:      http://tboot.sourceforge.net
9809 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9810 F:      Documentation/x86/intel_txt.rst
9811 F:      arch/x86/kernel/tboot.c
9812 F:      include/linux/tboot.h
9813
9814 INTEL SGX
9815 M:      Jarkko Sakkinen <jarkko@kernel.org>
9816 R:      Dave Hansen <dave.hansen@linux.intel.com>
9817 L:      linux-sgx@vger.kernel.org
9818 S:      Supported
9819 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9821 F:      Documentation/x86/sgx.rst
9822 F:      arch/x86/entry/vdso/vsgx.S
9823 F:      arch/x86/include/asm/sgx.h
9824 F:      arch/x86/include/uapi/asm/sgx.h
9825 F:      arch/x86/kernel/cpu/sgx/*
9826 F:      tools/testing/selftests/sgx/*
9827 K:      \bSGX_
9828
9829 INTERCONNECT API
9830 M:      Georgi Djakov <djakov@kernel.org>
9831 L:      linux-pm@vger.kernel.org
9832 S:      Maintained
9833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9834 F:      Documentation/devicetree/bindings/interconnect/
9835 F:      Documentation/driver-api/interconnect.rst
9836 F:      drivers/interconnect/
9837 F:      include/dt-bindings/interconnect/
9838 F:      include/linux/interconnect-provider.h
9839 F:      include/linux/interconnect.h
9840
9841 INTERRUPT COUNTER DRIVER
9842 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9843 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9844 L:      linux-iio@vger.kernel.org
9845 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9846 F:      drivers/counter/interrupt-cnt.c
9847
9848 INVENSENSE ICM-426xx IMU DRIVER
9849 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9850 L:      linux-iio@vger.kernel.org
9851 S:      Maintained
9852 W:      https://invensense.tdk.com/
9853 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9854 F:      drivers/iio/imu/inv_icm42600/
9855
9856 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9857 M:      Linus Walleij <linus.walleij@linaro.org>
9858 L:      linux-iio@vger.kernel.org
9859 S:      Maintained
9860 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9861 F:      drivers/iio/gyro/mpu3050*
9862
9863 IOC3 ETHERNET DRIVER
9864 M:      Ralf Baechle <ralf@linux-mips.org>
9865 L:      linux-mips@vger.kernel.org
9866 S:      Maintained
9867 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9868
9869 IOMAP FILESYSTEM LIBRARY
9870 M:      Christoph Hellwig <hch@infradead.org>
9871 M:      Darrick J. Wong <djwong@kernel.org>
9872 M:      linux-xfs@vger.kernel.org
9873 M:      linux-fsdevel@vger.kernel.org
9874 L:      linux-xfs@vger.kernel.org
9875 L:      linux-fsdevel@vger.kernel.org
9876 S:      Supported
9877 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9878 F:      fs/iomap/
9879 F:      include/linux/iomap.h
9880
9881 IOMMU DRIVERS
9882 M:      Joerg Roedel <joro@8bytes.org>
9883 M:      Will Deacon <will@kernel.org>
9884 L:      iommu@lists.linux-foundation.org
9885 S:      Maintained
9886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9887 F:      Documentation/devicetree/bindings/iommu/
9888 F:      Documentation/userspace-api/iommu.rst
9889 F:      drivers/iommu/
9890 F:      include/linux/iommu.h
9891 F:      include/linux/iova.h
9892 F:      include/linux/of_iommu.h
9893 F:      include/uapi/linux/iommu.h
9894
9895 IO_URING
9896 M:      Jens Axboe <axboe@kernel.dk>
9897 R:      Pavel Begunkov <asml.silence@gmail.com>
9898 L:      io-uring@vger.kernel.org
9899 S:      Maintained
9900 T:      git git://git.kernel.dk/linux-block
9901 T:      git git://git.kernel.dk/liburing
9902 F:      fs/io-wq.c
9903 F:      fs/io-wq.h
9904 F:      fs/io_uring.c
9905 F:      include/linux/io_uring.h
9906 F:      include/uapi/linux/io_uring.h
9907 F:      tools/io_uring/
9908
9909 IPMI SUBSYSTEM
9910 M:      Corey Minyard <minyard@acm.org>
9911 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9912 S:      Supported
9913 W:      http://openipmi.sourceforge.net/
9914 F:      Documentation/driver-api/ipmi.rst
9915 F:      Documentation/devicetree/bindings/ipmi/
9916 F:      drivers/char/ipmi/
9917 F:      include/linux/ipmi*
9918 F:      include/uapi/linux/ipmi*
9919
9920 IPS SCSI RAID DRIVER
9921 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9922 L:      linux-scsi@vger.kernel.org
9923 S:      Maintained
9924 W:      http://www.adaptec.com/
9925 F:      drivers/scsi/ips*
9926
9927 IPVS
9928 M:      Simon Horman <horms@verge.net.au>
9929 M:      Julian Anastasov <ja@ssi.bg>
9930 L:      netdev@vger.kernel.org
9931 L:      lvs-devel@vger.kernel.org
9932 S:      Maintained
9933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9935 F:      Documentation/networking/ipvs-sysctl.rst
9936 F:      include/net/ip_vs.h
9937 F:      include/uapi/linux/ip_vs.h
9938 F:      net/netfilter/ipvs/
9939
9940 IPWIRELESS DRIVER
9941 M:      Jiri Kosina <jikos@kernel.org>
9942 M:      David Sterba <dsterba@suse.com>
9943 S:      Odd Fixes
9944 F:      drivers/tty/ipwireless/
9945
9946 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9947 M:      Marc Zyngier <maz@kernel.org>
9948 S:      Maintained
9949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9950 F:      Documentation/core-api/irq/irq-domain.rst
9951 F:      include/linux/irqdomain.h
9952 F:      kernel/irq/irqdomain.c
9953 F:      kernel/irq/msi.c
9954
9955 IRQ SUBSYSTEM
9956 M:      Thomas Gleixner <tglx@linutronix.de>
9957 L:      linux-kernel@vger.kernel.org
9958 S:      Maintained
9959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9960 F:      kernel/irq/
9961
9962 IRQCHIP DRIVERS
9963 M:      Thomas Gleixner <tglx@linutronix.de>
9964 M:      Marc Zyngier <maz@kernel.org>
9965 L:      linux-kernel@vger.kernel.org
9966 S:      Maintained
9967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9968 F:      Documentation/devicetree/bindings/interrupt-controller/
9969 F:      drivers/irqchip/
9970
9971 ISA
9972 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9973 S:      Maintained
9974 F:      Documentation/driver-api/isa.rst
9975 F:      drivers/base/isa.c
9976 F:      include/linux/isa.h
9977
9978 ISA RADIO MODULE
9979 M:      Hans Verkuil <hverkuil@xs4all.nl>
9980 L:      linux-media@vger.kernel.org
9981 S:      Maintained
9982 W:      https://linuxtv.org
9983 T:      git git://linuxtv.org/media_tree.git
9984 F:      drivers/media/radio/radio-isa*
9985
9986 ISAPNP
9987 M:      Jaroslav Kysela <perex@perex.cz>
9988 S:      Maintained
9989 F:      Documentation/driver-api/isapnp.rst
9990 F:      drivers/pnp/isapnp/
9991 F:      include/linux/isapnp.h
9992
9993 ISCSI
9994 M:      Lee Duncan <lduncan@suse.com>
9995 M:      Chris Leech <cleech@redhat.com>
9996 L:      open-iscsi@googlegroups.com
9997 L:      linux-scsi@vger.kernel.org
9998 S:      Maintained
9999 W:      www.open-iscsi.com
10000 F:      drivers/scsi/*iscsi*
10001 F:      include/scsi/*iscsi*
10002
10003 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10004 M:      Peter Jones <pjones@redhat.com>
10005 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10006 S:      Maintained
10007 F:      drivers/firmware/iscsi_ibft*
10008
10009 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10010 M:      Sagi Grimberg <sagi@grimberg.me>
10011 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10012 L:      linux-rdma@vger.kernel.org
10013 S:      Supported
10014 W:      http://www.openfabrics.org
10015 W:      www.open-iscsi.org
10016 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10017 F:      drivers/infiniband/ulp/iser/
10018
10019 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10020 M:      Sagi Grimberg <sagi@grimberg.me>
10021 L:      linux-rdma@vger.kernel.org
10022 L:      target-devel@vger.kernel.org
10023 S:      Supported
10024 W:      http://www.linux-iscsi.org
10025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10026 F:      drivers/infiniband/ulp/isert
10027
10028 ISDN/CMTP OVER BLUETOOTH
10029 M:      Karsten Keil <isdn@linux-pingi.de>
10030 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10031 L:      netdev@vger.kernel.org
10032 S:      Odd Fixes
10033 W:      http://www.isdn4linux.de
10034 F:      Documentation/isdn/
10035 F:      drivers/isdn/capi/
10036 F:      include/linux/isdn/
10037 F:      include/uapi/linux/isdn/
10038 F:      net/bluetooth/cmtp/
10039
10040 ISDN/mISDN SUBSYSTEM
10041 M:      Karsten Keil <isdn@linux-pingi.de>
10042 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10043 L:      netdev@vger.kernel.org
10044 S:      Maintained
10045 W:      http://www.isdn4linux.de
10046 F:      drivers/isdn/Kconfig
10047 F:      drivers/isdn/Makefile
10048 F:      drivers/isdn/hardware/
10049 F:      drivers/isdn/mISDN/
10050
10051 IT87 HARDWARE MONITORING DRIVER
10052 M:      Jean Delvare <jdelvare@suse.com>
10053 L:      linux-hwmon@vger.kernel.org
10054 S:      Maintained
10055 F:      Documentation/hwmon/it87.rst
10056 F:      drivers/hwmon/it87.c
10057
10058 IT913X MEDIA DRIVER
10059 M:      Antti Palosaari <crope@iki.fi>
10060 L:      linux-media@vger.kernel.org
10061 S:      Maintained
10062 W:      https://linuxtv.org
10063 W:      http://palosaari.fi/linux/
10064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10065 T:      git git://linuxtv.org/anttip/media_tree.git
10066 F:      drivers/media/tuners/it913x*
10067
10068 ITE IT66121 HDMI BRIDGE DRIVER
10069 M:      Phong LE <ple@baylibre.com>
10070 M:      Neil Armstrong <narmstrong@baylibre.com>
10071 S:      Maintained
10072 T:      git git://anongit.freedesktop.org/drm/drm-misc
10073 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10074 F:      drivers/gpu/drm/bridge/ite-it66121.c
10075
10076 IVTV VIDEO4LINUX DRIVER
10077 M:      Andy Walls <awalls@md.metrocast.net>
10078 L:      linux-media@vger.kernel.org
10079 S:      Maintained
10080 W:      https://linuxtv.org
10081 T:      git git://linuxtv.org/media_tree.git
10082 F:      Documentation/admin-guide/media/ivtv*
10083 F:      drivers/media/pci/ivtv/
10084 F:      include/uapi/linux/ivtv*
10085
10086 IX2505V MEDIA DRIVER
10087 M:      Malcolm Priestley <tvboxspy@gmail.com>
10088 L:      linux-media@vger.kernel.org
10089 S:      Maintained
10090 W:      https://linuxtv.org
10091 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10092 F:      drivers/media/dvb-frontends/ix2505v*
10093
10094 JAILHOUSE HYPERVISOR INTERFACE
10095 M:      Jan Kiszka <jan.kiszka@siemens.com>
10096 L:      jailhouse-dev@googlegroups.com
10097 S:      Maintained
10098 F:      arch/x86/include/asm/jailhouse_para.h
10099 F:      arch/x86/kernel/jailhouse.c
10100
10101 JC42.4 TEMPERATURE SENSOR DRIVER
10102 M:      Guenter Roeck <linux@roeck-us.net>
10103 L:      linux-hwmon@vger.kernel.org
10104 S:      Maintained
10105 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10106 F:      Documentation/hwmon/jc42.rst
10107 F:      drivers/hwmon/jc42.c
10108
10109 JFS FILESYSTEM
10110 M:      Dave Kleikamp <shaggy@kernel.org>
10111 L:      jfs-discussion@lists.sourceforge.net
10112 S:      Maintained
10113 W:      http://jfs.sourceforge.net/
10114 T:      git git://github.com/kleikamp/linux-shaggy.git
10115 F:      Documentation/admin-guide/jfs.rst
10116 F:      fs/jfs/
10117
10118 JME NETWORK DRIVER
10119 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10120 L:      netdev@vger.kernel.org
10121 S:      Maintained
10122 F:      drivers/net/ethernet/jme.*
10123
10124 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10125 M:      David Woodhouse <dwmw2@infradead.org>
10126 M:      Richard Weinberger <richard@nod.at>
10127 L:      linux-mtd@lists.infradead.org
10128 S:      Odd Fixes
10129 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10130 T:      git git://git.infradead.org/ubifs-2.6.git
10131 F:      fs/jffs2/
10132 F:      include/uapi/linux/jffs2.h
10133
10134 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10135 M:      "Theodore Ts'o" <tytso@mit.edu>
10136 M:      Jan Kara <jack@suse.com>
10137 L:      linux-ext4@vger.kernel.org
10138 S:      Maintained
10139 F:      fs/jbd2/
10140 F:      include/linux/jbd2.h
10141
10142 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10143 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10144 L:      linux-media@vger.kernel.org
10145 L:      linux-renesas-soc@vger.kernel.org
10146 S:      Maintained
10147 F:      drivers/media/platform/rcar_jpu.c
10148
10149 JSM Neo PCI based serial card
10150 L:      linux-serial@vger.kernel.org
10151 S:      Orphan
10152 F:      drivers/tty/serial/jsm/
10153
10154 K10TEMP HARDWARE MONITORING DRIVER
10155 M:      Clemens Ladisch <clemens@ladisch.de>
10156 L:      linux-hwmon@vger.kernel.org
10157 S:      Maintained
10158 F:      Documentation/hwmon/k10temp.rst
10159 F:      drivers/hwmon/k10temp.c
10160
10161 K8TEMP HARDWARE MONITORING DRIVER
10162 M:      Rudolf Marek <r.marek@assembler.cz>
10163 L:      linux-hwmon@vger.kernel.org
10164 S:      Maintained
10165 F:      Documentation/hwmon/k8temp.rst
10166 F:      drivers/hwmon/k8temp.c
10167
10168 KASAN
10169 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10170 R:      Alexander Potapenko <glider@google.com>
10171 R:      Andrey Konovalov <andreyknvl@gmail.com>
10172 R:      Dmitry Vyukov <dvyukov@google.com>
10173 L:      kasan-dev@googlegroups.com
10174 S:      Maintained
10175 F:      Documentation/dev-tools/kasan.rst
10176 F:      arch/*/include/asm/*kasan.h
10177 F:      arch/*/mm/kasan_init*
10178 F:      include/linux/kasan*.h
10179 F:      lib/Kconfig.kasan
10180 F:      lib/test_kasan*.c
10181 F:      mm/kasan/
10182 F:      scripts/Makefile.kasan
10183
10184 KCONFIG
10185 M:      Masahiro Yamada <masahiroy@kernel.org>
10186 L:      linux-kbuild@vger.kernel.org
10187 S:      Maintained
10188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10189 F:      Documentation/kbuild/kconfig*
10190 F:      scripts/Kconfig.include
10191 F:      scripts/kconfig/
10192
10193 KCOV
10194 R:      Dmitry Vyukov <dvyukov@google.com>
10195 R:      Andrey Konovalov <andreyknvl@gmail.com>
10196 L:      kasan-dev@googlegroups.com
10197 S:      Maintained
10198 F:      Documentation/dev-tools/kcov.rst
10199 F:      include/linux/kcov.h
10200 F:      include/uapi/linux/kcov.h
10201 F:      kernel/kcov.c
10202 F:      scripts/Makefile.kcov
10203
10204 KCSAN
10205 M:      Marco Elver <elver@google.com>
10206 R:      Dmitry Vyukov <dvyukov@google.com>
10207 L:      kasan-dev@googlegroups.com
10208 S:      Maintained
10209 F:      Documentation/dev-tools/kcsan.rst
10210 F:      include/linux/kcsan*.h
10211 F:      kernel/kcsan/
10212 F:      lib/Kconfig.kcsan
10213 F:      scripts/Makefile.kcsan
10214
10215 KDUMP
10216 M:      Dave Young <dyoung@redhat.com>
10217 M:      Baoquan He <bhe@redhat.com>
10218 R:      Vivek Goyal <vgoyal@redhat.com>
10219 L:      kexec@lists.infradead.org
10220 S:      Maintained
10221 W:      http://lse.sourceforge.net/kdump/
10222 F:      Documentation/admin-guide/kdump/
10223 F:      fs/proc/vmcore.c
10224 F:      include/linux/crash_core.h
10225 F:      include/linux/crash_dump.h
10226 F:      include/uapi/linux/vmcore.h
10227 F:      kernel/crash_*.c
10228
10229 KEENE FM RADIO TRANSMITTER DRIVER
10230 M:      Hans Verkuil <hverkuil@xs4all.nl>
10231 L:      linux-media@vger.kernel.org
10232 S:      Maintained
10233 W:      https://linuxtv.org
10234 T:      git git://linuxtv.org/media_tree.git
10235 F:      drivers/media/radio/radio-keene*
10236
10237 KERNEL AUTOMOUNTER
10238 M:      Ian Kent <raven@themaw.net>
10239 L:      autofs@vger.kernel.org
10240 S:      Maintained
10241 F:      fs/autofs/
10242
10243 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10244 M:      Masahiro Yamada <masahiroy@kernel.org>
10245 M:      Michal Marek <michal.lkml@markovi.net>
10246 R:      Nick Desaulniers <ndesaulniers@google.com>
10247 L:      linux-kbuild@vger.kernel.org
10248 S:      Maintained
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10250 F:      Documentation/kbuild/
10251 F:      Makefile
10252 F:      scripts/*vmlinux*
10253 F:      scripts/Kbuild*
10254 F:      scripts/Makefile*
10255 F:      scripts/basic/
10256 F:      scripts/dummy-tools/
10257 F:      scripts/mk*
10258 F:      scripts/mod/
10259 F:      scripts/package/
10260
10261 KERNEL JANITORS
10262 L:      kernel-janitors@vger.kernel.org
10263 S:      Odd Fixes
10264 W:      http://kernelnewbies.org/KernelJanitors
10265
10266 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10267 M:      "J. Bruce Fields" <bfields@fieldses.org>
10268 M:      Chuck Lever <chuck.lever@oracle.com>
10269 L:      linux-nfs@vger.kernel.org
10270 S:      Supported
10271 W:      http://nfs.sourceforge.net/
10272 T:      git git://linux-nfs.org/~bfields/linux.git
10273 F:      fs/lockd/
10274 F:      fs/nfs_common/
10275 F:      fs/nfsd/
10276 F:      include/linux/lockd/
10277 F:      include/linux/sunrpc/
10278 F:      include/uapi/linux/nfsd/
10279 F:      include/uapi/linux/sunrpc/
10280 F:      net/sunrpc/
10281 F:      Documentation/filesystems/nfs/
10282
10283 KERNEL REGRESSIONS
10284 M:      Thorsten Leemhuis <linux@leemhuis.info>
10285 L:      regressions@lists.linux.dev
10286 S:      Supported
10287
10288 KERNEL SELFTEST FRAMEWORK
10289 M:      Shuah Khan <shuah@kernel.org>
10290 M:      Shuah Khan <skhan@linuxfoundation.org>
10291 L:      linux-kselftest@vger.kernel.org
10292 S:      Maintained
10293 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10295 F:      Documentation/dev-tools/kselftest*
10296 F:      tools/testing/selftests/
10297
10298 KERNEL SMB3 SERVER (KSMBD)
10299 M:      Namjae Jeon <linkinjeon@kernel.org>
10300 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10301 M:      Steve French <sfrench@samba.org>
10302 M:      Hyunchul Lee <hyc.lee@gmail.com>
10303 L:      linux-cifs@vger.kernel.org
10304 S:      Maintained
10305 T:      git git://git.samba.org/ksmbd.git
10306 F:      fs/ksmbd/
10307 F:      fs/smbfs_common/
10308
10309 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10310 M:      Brendan Higgins <brendanhiggins@google.com>
10311 L:      linux-kselftest@vger.kernel.org
10312 L:      kunit-dev@googlegroups.com
10313 S:      Maintained
10314 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10315 F:      Documentation/dev-tools/kunit/
10316 F:      include/kunit/
10317 F:      lib/kunit/
10318 F:      tools/testing/kunit/
10319
10320 KERNEL USERMODE HELPER
10321 M:      Luis Chamberlain <mcgrof@kernel.org>
10322 L:      linux-kernel@vger.kernel.org
10323 S:      Maintained
10324 F:      include/linux/umh.h
10325 F:      kernel/umh.c
10326
10327 KERNEL VIRTUAL MACHINE (KVM)
10328 M:      Paolo Bonzini <pbonzini@redhat.com>
10329 L:      kvm@vger.kernel.org
10330 S:      Supported
10331 W:      http://www.linux-kvm.org
10332 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10333 F:      Documentation/virt/kvm/
10334 F:      include/asm-generic/kvm*
10335 F:      include/kvm/iodev.h
10336 F:      include/linux/kvm*
10337 F:      include/trace/events/kvm.h
10338 F:      include/uapi/asm-generic/kvm*
10339 F:      include/uapi/linux/kvm*
10340 F:      tools/kvm/
10341 F:      tools/testing/selftests/kvm/
10342 F:      virt/kvm/*
10343
10344 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10345 M:      Marc Zyngier <maz@kernel.org>
10346 R:      James Morse <james.morse@arm.com>
10347 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10348 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10350 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10351 S:      Maintained
10352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10353 F:      arch/arm64/include/asm/kvm*
10354 F:      arch/arm64/include/uapi/asm/kvm*
10355 F:      arch/arm64/kvm/
10356 F:      include/kvm/arm_*
10357 F:      tools/testing/selftests/kvm/*/aarch64/
10358 F:      tools/testing/selftests/kvm/aarch64/
10359
10360 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10361 M:      Huacai Chen <chenhuacai@kernel.org>
10362 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10363 L:      linux-mips@vger.kernel.org
10364 L:      kvm@vger.kernel.org
10365 S:      Maintained
10366 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10367 F:      arch/mips/include/asm/kvm*
10368 F:      arch/mips/include/uapi/asm/kvm*
10369 F:      arch/mips/kvm/
10370
10371 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10372 M:      Paul Mackerras <paulus@ozlabs.org>
10373 L:      kvm-ppc@vger.kernel.org
10374 S:      Supported
10375 W:      http://www.linux-kvm.org/
10376 T:      git git://github.com/agraf/linux-2.6.git
10377 F:      arch/powerpc/include/asm/kvm*
10378 F:      arch/powerpc/include/uapi/asm/kvm*
10379 F:      arch/powerpc/kernel/kvm*
10380 F:      arch/powerpc/kvm/
10381
10382 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10383 M:      Anup Patel <anup.patel@wdc.com>
10384 R:      Atish Patra <atish.patra@wdc.com>
10385 L:      kvm@vger.kernel.org
10386 L:      kvm-riscv@lists.infradead.org
10387 L:      linux-riscv@lists.infradead.org
10388 S:      Maintained
10389 T:      git git://github.com/kvm-riscv/linux.git
10390 F:      arch/riscv/include/asm/kvm*
10391 F:      arch/riscv/include/uapi/asm/kvm*
10392 F:      arch/riscv/kvm/
10393
10394 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10395 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10396 M:      Janosch Frank <frankja@linux.ibm.com>
10397 R:      David Hildenbrand <david@redhat.com>
10398 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10399 L:      kvm@vger.kernel.org
10400 S:      Supported
10401 W:      http://www.ibm.com/developerworks/linux/linux390/
10402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10403 F:      Documentation/virt/kvm/s390*
10404 F:      arch/s390/include/asm/gmap.h
10405 F:      arch/s390/include/asm/kvm*
10406 F:      arch/s390/include/uapi/asm/kvm*
10407 F:      arch/s390/kernel/uv.c
10408 F:      arch/s390/kvm/
10409 F:      arch/s390/mm/gmap.c
10410 F:      tools/testing/selftests/kvm/*/s390x/
10411 F:      tools/testing/selftests/kvm/s390x/
10412
10413 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10414 M:      Paolo Bonzini <pbonzini@redhat.com>
10415 R:      Sean Christopherson <seanjc@google.com>
10416 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10417 R:      Wanpeng Li <wanpengli@tencent.com>
10418 R:      Jim Mattson <jmattson@google.com>
10419 R:      Joerg Roedel <joro@8bytes.org>
10420 L:      kvm@vger.kernel.org
10421 S:      Supported
10422 W:      http://www.linux-kvm.org
10423 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10424 F:      arch/x86/include/asm/kvm*
10425 F:      arch/x86/include/asm/pvclock-abi.h
10426 F:      arch/x86/include/asm/svm.h
10427 F:      arch/x86/include/asm/vmx*.h
10428 F:      arch/x86/include/uapi/asm/kvm*
10429 F:      arch/x86/include/uapi/asm/svm.h
10430 F:      arch/x86/include/uapi/asm/vmx.h
10431 F:      arch/x86/kernel/kvm.c
10432 F:      arch/x86/kernel/kvmclock.c
10433 F:      arch/x86/kvm/
10434 F:      arch/x86/kvm/*/
10435
10436 KERNFS
10437 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10438 M:      Tejun Heo <tj@kernel.org>
10439 S:      Supported
10440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10441 F:      fs/kernfs/
10442 F:      include/linux/kernfs.h
10443
10444 KEXEC
10445 M:      Eric Biederman <ebiederm@xmission.com>
10446 L:      kexec@lists.infradead.org
10447 S:      Maintained
10448 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10449 F:      include/linux/kexec.h
10450 F:      include/uapi/linux/kexec.h
10451 F:      kernel/kexec*
10452
10453 KEYS-ENCRYPTED
10454 M:      Mimi Zohar <zohar@linux.ibm.com>
10455 L:      linux-integrity@vger.kernel.org
10456 L:      keyrings@vger.kernel.org
10457 S:      Supported
10458 F:      Documentation/security/keys/trusted-encrypted.rst
10459 F:      include/keys/encrypted-type.h
10460 F:      security/keys/encrypted-keys/
10461
10462 KEYS-TRUSTED
10463 M:      James Bottomley <jejb@linux.ibm.com>
10464 M:      Jarkko Sakkinen <jarkko@kernel.org>
10465 M:      Mimi Zohar <zohar@linux.ibm.com>
10466 L:      linux-integrity@vger.kernel.org
10467 L:      keyrings@vger.kernel.org
10468 S:      Supported
10469 F:      Documentation/security/keys/trusted-encrypted.rst
10470 F:      include/keys/trusted-type.h
10471 F:      include/keys/trusted_tpm.h
10472 F:      security/keys/trusted-keys/
10473
10474 KEYS-TRUSTED-TEE
10475 M:      Sumit Garg <sumit.garg@linaro.org>
10476 L:      linux-integrity@vger.kernel.org
10477 L:      keyrings@vger.kernel.org
10478 S:      Supported
10479 F:      include/keys/trusted_tee.h
10480 F:      security/keys/trusted-keys/trusted_tee.c
10481
10482 KEYS/KEYRINGS
10483 M:      David Howells <dhowells@redhat.com>
10484 M:      Jarkko Sakkinen <jarkko@kernel.org>
10485 L:      keyrings@vger.kernel.org
10486 S:      Maintained
10487 F:      Documentation/security/keys/core.rst
10488 F:      include/keys/
10489 F:      include/linux/key-type.h
10490 F:      include/linux/key.h
10491 F:      include/linux/keyctl.h
10492 F:      include/uapi/linux/keyctl.h
10493 F:      security/keys/
10494
10495 KFENCE
10496 M:      Alexander Potapenko <glider@google.com>
10497 M:      Marco Elver <elver@google.com>
10498 R:      Dmitry Vyukov <dvyukov@google.com>
10499 L:      kasan-dev@googlegroups.com
10500 S:      Maintained
10501 F:      Documentation/dev-tools/kfence.rst
10502 F:      arch/*/include/asm/kfence.h
10503 F:      include/linux/kfence.h
10504 F:      lib/Kconfig.kfence
10505 F:      mm/kfence/
10506
10507 KFIFO
10508 M:      Stefani Seibold <stefani@seibold.net>
10509 S:      Maintained
10510 F:      include/linux/kfifo.h
10511 F:      lib/kfifo.c
10512 F:      samples/kfifo/
10513
10514 KGDB / KDB /debug_core
10515 M:      Jason Wessel <jason.wessel@windriver.com>
10516 M:      Daniel Thompson <daniel.thompson@linaro.org>
10517 R:      Douglas Anderson <dianders@chromium.org>
10518 L:      kgdb-bugreport@lists.sourceforge.net
10519 S:      Maintained
10520 W:      http://kgdb.wiki.kernel.org/
10521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10522 F:      Documentation/dev-tools/kgdb.rst
10523 F:      drivers/misc/kgdbts.c
10524 F:      drivers/tty/serial/kgdboc.c
10525 F:      include/linux/kdb.h
10526 F:      include/linux/kgdb.h
10527 F:      kernel/debug/
10528
10529 KHADAS MCU MFD DRIVER
10530 M:      Neil Armstrong <narmstrong@baylibre.com>
10531 L:      linux-amlogic@lists.infradead.org
10532 S:      Maintained
10533 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10534 F:      drivers/mfd/khadas-mcu.c
10535 F:      include/linux/mfd/khadas-mcu.h
10536 F:      drivers/thermal/khadas_mcu_fan.c
10537
10538 KMEMLEAK
10539 M:      Catalin Marinas <catalin.marinas@arm.com>
10540 S:      Maintained
10541 F:      Documentation/dev-tools/kmemleak.rst
10542 F:      include/linux/kmemleak.h
10543 F:      mm/kmemleak.c
10544 F:      samples/kmemleak/kmemleak-test.c
10545
10546 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10547 M:      Luis Chamberlain <mcgrof@kernel.org>
10548 L:      linux-kernel@vger.kernel.org
10549 S:      Maintained
10550 F:      include/linux/kmod.h
10551 F:      kernel/kmod.c
10552 F:      lib/test_kmod.c
10553 F:      tools/testing/selftests/kmod/
10554
10555 KPROBES
10556 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10557 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10558 M:      "David S. Miller" <davem@davemloft.net>
10559 M:      Masami Hiramatsu <mhiramat@kernel.org>
10560 S:      Maintained
10561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10562 F:      Documentation/trace/kprobes.rst
10563 F:      include/asm-generic/kprobes.h
10564 F:      include/linux/kprobes.h
10565 F:      kernel/kprobes.c
10566 F:      lib/test_kprobes.c
10567 F:      samples/kprobes
10568
10569 KS0108 LCD CONTROLLER DRIVER
10570 M:      Miguel Ojeda <ojeda@kernel.org>
10571 S:      Maintained
10572 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10573 F:      drivers/auxdisplay/ks0108.c
10574 F:      include/linux/ks0108.h
10575
10576 KTD253 BACKLIGHT DRIVER
10577 M:      Linus Walleij <linus.walleij@linaro.org>
10578 S:      Maintained
10579 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10580 F:      drivers/video/backlight/ktd253-backlight.c
10581
10582 KTEST
10583 M:      Steven Rostedt <rostedt@goodmis.org>
10584 M:      John Hawley <warthog9@eaglescrag.net>
10585 S:      Maintained
10586 F:      tools/testing/ktest
10587
10588 L3MDEV
10589 M:      David Ahern <dsahern@kernel.org>
10590 L:      netdev@vger.kernel.org
10591 S:      Maintained
10592 F:      include/net/l3mdev.h
10593 F:      net/l3mdev
10594
10595 L7 BPF FRAMEWORK
10596 M:      John Fastabend <john.fastabend@gmail.com>
10597 M:      Daniel Borkmann <daniel@iogearbox.net>
10598 M:      Jakub Sitnicki <jakub@cloudflare.com>
10599 M:      Lorenz Bauer <lmb@cloudflare.com>
10600 L:      netdev@vger.kernel.org
10601 L:      bpf@vger.kernel.org
10602 S:      Maintained
10603 F:      include/linux/skmsg.h
10604 F:      net/core/skmsg.c
10605 F:      net/core/sock_map.c
10606 F:      net/ipv4/tcp_bpf.c
10607 F:      net/ipv4/udp_bpf.c
10608 F:      net/unix/unix_bpf.c
10609
10610 LANDLOCK SECURITY MODULE
10611 M:      Mickaël Salaün <mic@digikod.net>
10612 L:      linux-security-module@vger.kernel.org
10613 S:      Supported
10614 W:      https://landlock.io
10615 T:      git https://github.com/landlock-lsm/linux.git
10616 F:      Documentation/security/landlock.rst
10617 F:      Documentation/userspace-api/landlock.rst
10618 F:      include/uapi/linux/landlock.h
10619 F:      samples/landlock/
10620 F:      security/landlock/
10621 F:      tools/testing/selftests/landlock/
10622 K:      landlock
10623 K:      LANDLOCK
10624
10625 LANTIQ / INTEL Ethernet drivers
10626 M:      Hauke Mehrtens <hauke@hauke-m.de>
10627 L:      netdev@vger.kernel.org
10628 S:      Maintained
10629 F:      drivers/net/dsa/lantiq_gswip.c
10630 F:      drivers/net/dsa/lantiq_pce.h
10631 F:      drivers/net/ethernet/lantiq_xrx200.c
10632 F:      net/dsa/tag_gswip.c
10633
10634 LANTIQ MIPS ARCHITECTURE
10635 M:      John Crispin <john@phrozen.org>
10636 L:      linux-mips@vger.kernel.org
10637 S:      Maintained
10638 F:      arch/mips/lantiq
10639 F:      drivers/soc/lantiq
10640
10641 LASI 53c700 driver for PARISC
10642 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10643 L:      linux-scsi@vger.kernel.org
10644 S:      Maintained
10645 F:      Documentation/scsi/53c700.rst
10646 F:      drivers/scsi/53c700*
10647
10648 LEAKING_ADDRESSES
10649 M:      Tobin C. Harding <me@tobin.cc>
10650 M:      Tycho Andersen <tycho@tycho.pizza>
10651 L:      linux-hardening@vger.kernel.org
10652 S:      Maintained
10653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10654 F:      scripts/leaking_addresses.pl
10655
10656 LED SUBSYSTEM
10657 M:      Pavel Machek <pavel@ucw.cz>
10658 L:      linux-leds@vger.kernel.org
10659 S:      Maintained
10660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10661 F:      Documentation/devicetree/bindings/leds/
10662 F:      drivers/leds/
10663 F:      include/linux/leds.h
10664
10665 LEGACY EEPROM DRIVER
10666 M:      Jean Delvare <jdelvare@suse.com>
10667 S:      Maintained
10668 F:      Documentation/misc-devices/eeprom.rst
10669 F:      drivers/misc/eeprom/eeprom.c
10670
10671 LEGO MINDSTORMS EV3
10672 R:      David Lechner <david@lechnology.com>
10673 S:      Maintained
10674 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10675 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10676 F:      drivers/power/supply/lego_ev3_battery.c
10677
10678 LEGO USB Tower driver
10679 M:      Juergen Stuber <starblue@users.sourceforge.net>
10680 L:      legousb-devel@lists.sourceforge.net
10681 S:      Maintained
10682 W:      http://legousb.sourceforge.net/
10683 F:      drivers/usb/misc/legousbtower.c
10684
10685 LG LAPTOP EXTRAS
10686 M:      Matan Ziv-Av <matan@svgalib.org>
10687 L:      platform-driver-x86@vger.kernel.org
10688 S:      Maintained
10689 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10690 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10691 F:      drivers/platform/x86/lg-laptop.c
10692
10693 LG2160 MEDIA DRIVER
10694 M:      Michael Krufky <mkrufky@linuxtv.org>
10695 L:      linux-media@vger.kernel.org
10696 S:      Maintained
10697 W:      https://linuxtv.org
10698 W:      http://github.com/mkrufky
10699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10700 T:      git git://linuxtv.org/mkrufky/tuners.git
10701 F:      drivers/media/dvb-frontends/lg2160.*
10702
10703 LGDT3305 MEDIA DRIVER
10704 M:      Michael Krufky <mkrufky@linuxtv.org>
10705 L:      linux-media@vger.kernel.org
10706 S:      Maintained
10707 W:      https://linuxtv.org
10708 W:      http://github.com/mkrufky
10709 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10710 T:      git git://linuxtv.org/mkrufky/tuners.git
10711 F:      drivers/media/dvb-frontends/lgdt3305.*
10712
10713 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10714 M:      Viresh Kumar <vireshk@kernel.org>
10715 L:      linux-ide@vger.kernel.org
10716 S:      Maintained
10717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10718 F:      drivers/ata/pata_arasan_cf.c
10719 F:      include/linux/pata_arasan_cf_data.h
10720
10721 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10722 M:      Linus Walleij <linus.walleij@linaro.org>
10723 L:      linux-ide@vger.kernel.org
10724 S:      Maintained
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10726 F:      drivers/ata/pata_ftide010.c
10727 F:      drivers/ata/sata_gemini.c
10728 F:      drivers/ata/sata_gemini.h
10729
10730 LIBATA SATA AHCI PLATFORM devices support
10731 M:      Hans de Goede <hdegoede@redhat.com>
10732 M:      Jens Axboe <axboe@kernel.dk>
10733 L:      linux-ide@vger.kernel.org
10734 S:      Maintained
10735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10736 F:      drivers/ata/ahci_platform.c
10737 F:      drivers/ata/libahci_platform.c
10738 F:      include/linux/ahci_platform.h
10739
10740 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10741 M:      Mikael Pettersson <mikpelinux@gmail.com>
10742 L:      linux-ide@vger.kernel.org
10743 S:      Maintained
10744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10745 F:      drivers/ata/sata_promise.*
10746
10747 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10748 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10749 L:      linux-ide@vger.kernel.org
10750 S:      Maintained
10751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10752 F:      Documentation/devicetree/bindings/ata/
10753 F:      drivers/ata/
10754 F:      include/linux/ata.h
10755 F:      include/linux/libata.h
10756
10757 LIBLOCKDEP
10758 M:      Sasha Levin <alexander.levin@microsoft.com>
10759 S:      Maintained
10760 F:      tools/lib/lockdep/
10761
10762 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10763 M:      Dan Williams <dan.j.williams@intel.com>
10764 M:      Vishal Verma <vishal.l.verma@intel.com>
10765 M:      Dave Jiang <dave.jiang@intel.com>
10766 L:      nvdimm@lists.linux.dev
10767 S:      Supported
10768 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10769 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10770 F:      drivers/nvdimm/blk.c
10771 F:      drivers/nvdimm/region_devs.c
10772
10773 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10774 M:      Vishal Verma <vishal.l.verma@intel.com>
10775 M:      Dan Williams <dan.j.williams@intel.com>
10776 M:      Dave Jiang <dave.jiang@intel.com>
10777 L:      nvdimm@lists.linux.dev
10778 S:      Supported
10779 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10780 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10781 F:      drivers/nvdimm/btt*
10782
10783 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10784 M:      Dan Williams <dan.j.williams@intel.com>
10785 M:      Vishal Verma <vishal.l.verma@intel.com>
10786 M:      Dave Jiang <dave.jiang@intel.com>
10787 L:      nvdimm@lists.linux.dev
10788 S:      Supported
10789 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10790 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10791 F:      drivers/nvdimm/pmem*
10792
10793 LIBNVDIMM: DEVICETREE BINDINGS
10794 M:      Oliver O'Halloran <oohall@gmail.com>
10795 L:      nvdimm@lists.linux.dev
10796 S:      Supported
10797 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10798 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10799 F:      drivers/nvdimm/of_pmem.c
10800
10801 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10802 M:      Dan Williams <dan.j.williams@intel.com>
10803 M:      Vishal Verma <vishal.l.verma@intel.com>
10804 M:      Dave Jiang <dave.jiang@intel.com>
10805 M:      Ira Weiny <ira.weiny@intel.com>
10806 L:      nvdimm@lists.linux.dev
10807 S:      Supported
10808 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10809 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10811 F:      drivers/acpi/nfit/*
10812 F:      drivers/nvdimm/*
10813 F:      include/linux/libnvdimm.h
10814 F:      include/linux/nd.h
10815 F:      include/uapi/linux/ndctl.h
10816 F:      tools/testing/nvdimm/
10817
10818 LICENSES and SPDX stuff
10819 M:      Thomas Gleixner <tglx@linutronix.de>
10820 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10821 L:      linux-spdx@vger.kernel.org
10822 S:      Maintained
10823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10824 F:      COPYING
10825 F:      Documentation/process/license-rules.rst
10826 F:      LICENSES/
10827 F:      scripts/spdxcheck-test.sh
10828 F:      scripts/spdxcheck.py
10829
10830 LINEAR RANGES HELPERS
10831 M:      Mark Brown <broonie@kernel.org>
10832 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10833 F:      lib/linear_ranges.c
10834 F:      lib/test_linear_ranges.c
10835 F:      include/linux/linear_range.h
10836
10837 LINUX FOR POWER MACINTOSH
10838 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10839 L:      linuxppc-dev@lists.ozlabs.org
10840 S:      Odd Fixes
10841 F:      arch/powerpc/platforms/powermac/
10842 F:      drivers/macintosh/
10843
10844 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10845 M:      Michael Ellerman <mpe@ellerman.id.au>
10846 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10847 R:      Paul Mackerras <paulus@samba.org>
10848 L:      linuxppc-dev@lists.ozlabs.org
10849 S:      Supported
10850 W:      https://github.com/linuxppc/wiki/wiki
10851 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10853 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10854 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10855 F:      Documentation/devicetree/bindings/powerpc/
10856 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10857 F:      Documentation/powerpc/
10858 F:      arch/powerpc/
10859 F:      drivers/*/*/*pasemi*
10860 F:      drivers/*/*pasemi*
10861 F:      drivers/char/tpm/tpm_ibmvtpm*
10862 F:      drivers/crypto/nx/
10863 F:      drivers/crypto/vmx/
10864 F:      drivers/i2c/busses/i2c-opal.c
10865 F:      drivers/net/ethernet/ibm/ibmveth.*
10866 F:      drivers/net/ethernet/ibm/ibmvnic.*
10867 F:      drivers/pci/hotplug/pnv_php.c
10868 F:      drivers/pci/hotplug/rpa*
10869 F:      drivers/rtc/rtc-opal.c
10870 F:      drivers/scsi/ibmvscsi/
10871 F:      drivers/tty/hvc/hvc_opal.c
10872 F:      drivers/watchdog/wdrtas.c
10873 F:      tools/testing/selftests/powerpc
10874 N:      /pmac
10875 N:      powermac
10876 N:      powernv
10877 N:      [^a-z0-9]ps3
10878 N:      pseries
10879
10880 LINUX FOR POWERPC EMBEDDED MPC5XXX
10881 M:      Anatolij Gustschin <agust@denx.de>
10882 L:      linuxppc-dev@lists.ozlabs.org
10883 S:      Odd Fixes
10884 F:      arch/powerpc/platforms/512x/
10885 F:      arch/powerpc/platforms/52xx/
10886
10887 LINUX FOR POWERPC EMBEDDED PPC4XX
10888 L:      linuxppc-dev@lists.ozlabs.org
10889 S:      Orphan
10890 F:      arch/powerpc/platforms/40x/
10891 F:      arch/powerpc/platforms/44x/
10892
10893 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10894 M:      Scott Wood <oss@buserror.net>
10895 L:      linuxppc-dev@lists.ozlabs.org
10896 S:      Odd fixes
10897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10898 F:      Documentation/devicetree/bindings/powerpc/fsl/
10899 F:      arch/powerpc/platforms/83xx/
10900 F:      arch/powerpc/platforms/85xx/
10901
10902 LINUX FOR POWERPC EMBEDDED PPC8XX
10903 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10904 L:      linuxppc-dev@lists.ozlabs.org
10905 S:      Maintained
10906 F:      arch/powerpc/platforms/8xx/
10907
10908 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10909 M:      Kees Cook <keescook@chromium.org>
10910 S:      Maintained
10911 F:      drivers/misc/lkdtm/*
10912 F:      tools/testing/selftests/lkdtm/*
10913
10914 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10915 M:      Alan Stern <stern@rowland.harvard.edu>
10916 M:      Andrea Parri <parri.andrea@gmail.com>
10917 M:      Will Deacon <will@kernel.org>
10918 M:      Peter Zijlstra <peterz@infradead.org>
10919 M:      Boqun Feng <boqun.feng@gmail.com>
10920 M:      Nicholas Piggin <npiggin@gmail.com>
10921 M:      David Howells <dhowells@redhat.com>
10922 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10923 M:      Luc Maranget <luc.maranget@inria.fr>
10924 M:      "Paul E. McKenney" <paulmck@kernel.org>
10925 R:      Akira Yokosawa <akiyks@gmail.com>
10926 R:      Daniel Lustig <dlustig@nvidia.com>
10927 R:      Joel Fernandes <joel@joelfernandes.org>
10928 L:      linux-kernel@vger.kernel.org
10929 L:      linux-arch@vger.kernel.org
10930 S:      Supported
10931 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10932 F:      Documentation/atomic_bitops.txt
10933 F:      Documentation/atomic_t.txt
10934 F:      Documentation/core-api/refcount-vs-atomic.rst
10935 F:      Documentation/litmus-tests/
10936 F:      Documentation/memory-barriers.txt
10937 F:      tools/memory-model/
10938
10939 LIS3LV02D ACCELEROMETER DRIVER
10940 M:      Eric Piel <eric.piel@tremplin-utc.net>
10941 S:      Maintained
10942 F:      Documentation/misc-devices/lis3lv02d.rst
10943 F:      drivers/misc/lis3lv02d/
10944 F:      drivers/platform/x86/hp_accel.c
10945
10946 LIST KUNIT TEST
10947 M:      David Gow <davidgow@google.com>
10948 L:      linux-kselftest@vger.kernel.org
10949 L:      kunit-dev@googlegroups.com
10950 S:      Maintained
10951 F:      lib/list-test.c
10952
10953 LITEX PLATFORM
10954 M:      Karol Gugala <kgugala@antmicro.com>
10955 M:      Mateusz Holenko <mholenko@antmicro.com>
10956 S:      Maintained
10957 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10958 F:      arch/openrisc/boot/dts/or1klitex.dts
10959 F:      drivers/soc/litex/litex_soc_ctrl.c
10960 F:      drivers/tty/serial/liteuart.c
10961 F:      include/linux/litex.h
10962
10963 LIVE PATCHING
10964 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10965 M:      Jiri Kosina <jikos@kernel.org>
10966 M:      Miroslav Benes <mbenes@suse.cz>
10967 M:      Petr Mladek <pmladek@suse.com>
10968 R:      Joe Lawrence <joe.lawrence@redhat.com>
10969 L:      live-patching@vger.kernel.org
10970 S:      Maintained
10971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10972 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10973 F:      Documentation/livepatch/
10974 F:      arch/powerpc/include/asm/livepatch.h
10975 F:      arch/s390/include/asm/livepatch.h
10976 F:      arch/x86/include/asm/livepatch.h
10977 F:      include/linux/livepatch.h
10978 F:      kernel/livepatch/
10979 F:      lib/livepatch/
10980 F:      samples/livepatch/
10981 F:      tools/testing/selftests/livepatch/
10982
10983 LLC (802.2)
10984 L:      netdev@vger.kernel.org
10985 S:      Odd fixes
10986 F:      include/linux/llc.h
10987 F:      include/net/llc*
10988 F:      include/uapi/linux/llc.h
10989 F:      net/llc/
10990
10991 LM73 HARDWARE MONITOR DRIVER
10992 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10993 L:      linux-hwmon@vger.kernel.org
10994 S:      Maintained
10995 F:      drivers/hwmon/lm73.c
10996
10997 LM78 HARDWARE MONITOR DRIVER
10998 M:      Jean Delvare <jdelvare@suse.com>
10999 L:      linux-hwmon@vger.kernel.org
11000 S:      Maintained
11001 F:      Documentation/hwmon/lm78.rst
11002 F:      drivers/hwmon/lm78.c
11003
11004 LM83 HARDWARE MONITOR DRIVER
11005 M:      Jean Delvare <jdelvare@suse.com>
11006 L:      linux-hwmon@vger.kernel.org
11007 S:      Maintained
11008 F:      Documentation/hwmon/lm83.rst
11009 F:      drivers/hwmon/lm83.c
11010
11011 LM90 HARDWARE MONITOR DRIVER
11012 M:      Jean Delvare <jdelvare@suse.com>
11013 L:      linux-hwmon@vger.kernel.org
11014 S:      Maintained
11015 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11016 F:      Documentation/hwmon/lm90.rst
11017 F:      drivers/hwmon/lm90.c
11018 F:      include/dt-bindings/thermal/lm90.h
11019
11020 LM95234 HARDWARE MONITOR DRIVER
11021 M:      Guenter Roeck <linux@roeck-us.net>
11022 L:      linux-hwmon@vger.kernel.org
11023 S:      Maintained
11024 F:      Documentation/hwmon/lm95234.rst
11025 F:      drivers/hwmon/lm95234.c
11026
11027 LME2510 MEDIA DRIVER
11028 M:      Malcolm Priestley <tvboxspy@gmail.com>
11029 L:      linux-media@vger.kernel.org
11030 S:      Maintained
11031 W:      https://linuxtv.org
11032 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11033 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11034
11035 LOADPIN SECURITY MODULE
11036 M:      Kees Cook <keescook@chromium.org>
11037 S:      Supported
11038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11039 F:      Documentation/admin-guide/LSM/LoadPin.rst
11040 F:      security/loadpin/
11041
11042 LOCKING PRIMITIVES
11043 M:      Peter Zijlstra <peterz@infradead.org>
11044 M:      Ingo Molnar <mingo@redhat.com>
11045 M:      Will Deacon <will@kernel.org>
11046 R:      Waiman Long <longman@redhat.com>
11047 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11048 L:      linux-kernel@vger.kernel.org
11049 S:      Maintained
11050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11051 F:      Documentation/locking/
11052 F:      arch/*/include/asm/spinlock*.h
11053 F:      include/linux/lockdep.h
11054 F:      include/linux/mutex*.h
11055 F:      include/linux/rwlock*.h
11056 F:      include/linux/rwsem*.h
11057 F:      include/linux/seqlock.h
11058 F:      include/linux/spinlock*.h
11059 F:      kernel/locking/
11060 F:      lib/locking*.[ch]
11061 X:      kernel/locking/locktorture.c
11062
11063 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11064 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11065 L:      linux-ntfs-dev@lists.sourceforge.net
11066 S:      Maintained
11067 W:      http://www.linux-ntfs.org/content/view/19/37/
11068 F:      Documentation/admin-guide/ldm.rst
11069 F:      block/partitions/ldm.*
11070
11071 LOGITECH HID GAMING KEYBOARDS
11072 M:      Hans de Goede <hdegoede@redhat.com>
11073 L:      linux-input@vger.kernel.org
11074 S:      Maintained
11075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11076 F:      drivers/hid/hid-lg-g15.c
11077
11078 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11079 M:      Adrien Grassein <adrien.grassein@gmail.com>
11080 S:      Maintained
11081 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11082 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11083
11084 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11085 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11086 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11087 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11088 L:      MPT-FusionLinux.pdl@broadcom.com
11089 L:      linux-scsi@vger.kernel.org
11090 S:      Supported
11091 W:      http://www.avagotech.com/support/
11092 F:      drivers/message/fusion/
11093 F:      drivers/scsi/mpt3sas/
11094
11095 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11096 M:      Matthew Wilcox <willy@infradead.org>
11097 L:      linux-scsi@vger.kernel.org
11098 S:      Maintained
11099 F:      drivers/scsi/sym53c8xx_2/
11100
11101 LTC1660 DAC DRIVER
11102 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11103 L:      linux-iio@vger.kernel.org
11104 S:      Maintained
11105 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11106 F:      drivers/iio/dac/ltc1660.c
11107
11108 LTC2947 HARDWARE MONITOR DRIVER
11109 M:      Nuno Sá <nuno.sa@analog.com>
11110 L:      linux-hwmon@vger.kernel.org
11111 S:      Supported
11112 W:      http://ez.analog.com/community/linux-device-drivers
11113 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11114 F:      drivers/hwmon/ltc2947-core.c
11115 F:      drivers/hwmon/ltc2947-i2c.c
11116 F:      drivers/hwmon/ltc2947-spi.c
11117 F:      drivers/hwmon/ltc2947.h
11118
11119 LTC2983 IIO TEMPERATURE DRIVER
11120 M:      Nuno Sá <nuno.sa@analog.com>
11121 L:      linux-iio@vger.kernel.org
11122 S:      Supported
11123 W:      http://ez.analog.com/community/linux-device-drivers
11124 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11125 F:      drivers/iio/temperature/ltc2983.c
11126
11127 LTC4261 HARDWARE MONITOR DRIVER
11128 M:      Guenter Roeck <linux@roeck-us.net>
11129 L:      linux-hwmon@vger.kernel.org
11130 S:      Maintained
11131 F:      Documentation/hwmon/ltc4261.rst
11132 F:      drivers/hwmon/ltc4261.c
11133
11134 LTC4306 I2C MULTIPLEXER DRIVER
11135 M:      Michael Hennerich <michael.hennerich@analog.com>
11136 L:      linux-i2c@vger.kernel.org
11137 S:      Supported
11138 W:      http://ez.analog.com/community/linux-device-drivers
11139 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11140 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11141
11142 LTP (Linux Test Project)
11143 M:      Mike Frysinger <vapier@gentoo.org>
11144 M:      Cyril Hrubis <chrubis@suse.cz>
11145 M:      Wanlong Gao <wanlong.gao@gmail.com>
11146 M:      Jan Stancek <jstancek@redhat.com>
11147 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11148 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11149 L:      ltp@lists.linux.it (subscribers-only)
11150 S:      Maintained
11151 W:      http://linux-test-project.github.io/
11152 T:      git git://github.com/linux-test-project/ltp.git
11153
11154 LYNX PCS MODULE
11155 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11156 L:      netdev@vger.kernel.org
11157 S:      Supported
11158 F:      drivers/net/pcs/pcs-lynx.c
11159 F:      include/linux/pcs-lynx.h
11160
11161 M68K ARCHITECTURE
11162 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11163 L:      linux-m68k@lists.linux-m68k.org
11164 S:      Maintained
11165 W:      http://www.linux-m68k.org/
11166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11167 F:      arch/m68k/
11168 F:      drivers/zorro/
11169
11170 M68K ON APPLE MACINTOSH
11171 M:      Joshua Thompson <funaho@jurai.org>
11172 L:      linux-m68k@lists.linux-m68k.org
11173 S:      Maintained
11174 W:      http://www.mac.linux-m68k.org/
11175 F:      arch/m68k/mac/
11176 F:      drivers/macintosh/adb-iop.c
11177 F:      drivers/macintosh/via-macii.c
11178
11179 M68K ON HP9000/300
11180 M:      Philip Blundell <philb@gnu.org>
11181 S:      Maintained
11182 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11183 F:      arch/m68k/hp300/
11184
11185 M88DS3103 MEDIA DRIVER
11186 M:      Antti Palosaari <crope@iki.fi>
11187 L:      linux-media@vger.kernel.org
11188 S:      Maintained
11189 W:      https://linuxtv.org
11190 W:      http://palosaari.fi/linux/
11191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11192 T:      git git://linuxtv.org/anttip/media_tree.git
11193 F:      drivers/media/dvb-frontends/m88ds3103*
11194
11195 M88RS2000 MEDIA DRIVER
11196 M:      Malcolm Priestley <tvboxspy@gmail.com>
11197 L:      linux-media@vger.kernel.org
11198 S:      Maintained
11199 W:      https://linuxtv.org
11200 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11201 F:      drivers/media/dvb-frontends/m88rs2000*
11202
11203 MA901 MASTERKIT USB FM RADIO DRIVER
11204 M:      Alexey Klimov <klimov.linux@gmail.com>
11205 L:      linux-media@vger.kernel.org
11206 S:      Maintained
11207 T:      git git://linuxtv.org/media_tree.git
11208 F:      drivers/media/radio/radio-ma901.c
11209
11210 MAC80211
11211 M:      Johannes Berg <johannes@sipsolutions.net>
11212 L:      linux-wireless@vger.kernel.org
11213 S:      Maintained
11214 W:      https://wireless.wiki.kernel.org/
11215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11217 F:      Documentation/networking/mac80211-injection.rst
11218 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11219 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11220 F:      include/net/mac80211.h
11221 F:      net/mac80211/
11222
11223 MAILBOX API
11224 M:      Jassi Brar <jassisinghbrar@gmail.com>
11225 L:      linux-kernel@vger.kernel.org
11226 S:      Maintained
11227 F:      drivers/mailbox/
11228 F:      include/linux/mailbox_client.h
11229 F:      include/linux/mailbox_controller.h
11230 F:      include/dt-bindings/mailbox/
11231 F:      Documentation/devicetree/bindings/mailbox/
11232
11233 MAILBOX ARM MHUv2
11234 M:      Viresh Kumar <viresh.kumar@linaro.org>
11235 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11236 L:      linux-kernel@vger.kernel.org
11237 S:      Maintained
11238 F:      drivers/mailbox/arm_mhuv2.c
11239 F:      include/linux/mailbox/arm_mhuv2_message.h
11240 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11241
11242 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11243 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11244 M:      Matt Johnston <matt@codeconstruct.com.au>
11245 L:      netdev@vger.kernel.org
11246 S:      Maintained
11247 F:      Documentation/networking/mctp.rst
11248 F:      drivers/net/mctp/
11249 F:      include/net/mctp.h
11250 F:      include/net/mctpdevice.h
11251 F:      include/net/netns/mctp.h
11252 F:      net/mctp/
11253
11254 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11255 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11256 L:      linux-man@vger.kernel.org
11257 S:      Maintained
11258 W:      http://www.kernel.org/doc/man-pages
11259
11260 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11261 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11262 L:      linux-mips@vger.kernel.org
11263 S:      Maintained
11264 F:      arch/mips/boot/dts/img/pistachio*
11265
11266 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11267 M:      Andrew Lunn <andrew@lunn.ch>
11268 M:      Vivien Didelot <vivien.didelot@gmail.com>
11269 L:      netdev@vger.kernel.org
11270 S:      Maintained
11271 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11272 F:      Documentation/networking/devlink/mv88e6xxx.rst
11273 F:      drivers/net/dsa/mv88e6xxx/
11274 F:      include/linux/dsa/mv88e6xxx.h
11275 F:      include/linux/platform_data/mv88e6xxx.h
11276
11277 MARVELL ARMADA 3700 PHY DRIVERS
11278 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11279 S:      Maintained
11280 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11281 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11282 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11283 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11284
11285 MARVELL ARMADA DRM SUPPORT
11286 M:      Russell King <linux@armlinux.org.uk>
11287 S:      Maintained
11288 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11289 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11290 F:      Documentation/devicetree/bindings/display/armada/
11291 F:      drivers/gpu/drm/armada/
11292 F:      include/uapi/drm/armada_drm.h
11293
11294 MARVELL CRYPTO DRIVER
11295 M:      Boris Brezillon <bbrezillon@kernel.org>
11296 M:      Arnaud Ebalard <arno@natisbad.org>
11297 M:      Srujana Challa <schalla@marvell.com>
11298 L:      linux-crypto@vger.kernel.org
11299 S:      Maintained
11300 F:      drivers/crypto/marvell/
11301 F:      include/linux/soc/marvell/octeontx2/
11302
11303 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11304 M:      Mirko Lindner <mlindner@marvell.com>
11305 M:      Stephen Hemminger <stephen@networkplumber.org>
11306 L:      netdev@vger.kernel.org
11307 S:      Maintained
11308 F:      drivers/net/ethernet/marvell/sk*
11309
11310 MARVELL LIBERTAS WIRELESS DRIVER
11311 L:      libertas-dev@lists.infradead.org
11312 S:      Orphan
11313 F:      drivers/net/wireless/marvell/libertas/
11314
11315 MARVELL MACCHIATOBIN SUPPORT
11316 M:      Russell King <linux@armlinux.org.uk>
11317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11318 S:      Maintained
11319 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11320
11321 MARVELL MV643XX ETHERNET DRIVER
11322 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11323 L:      netdev@vger.kernel.org
11324 S:      Maintained
11325 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11326 F:      include/linux/mv643xx.h
11327
11328 MARVELL MV88X3310 PHY DRIVER
11329 M:      Russell King <linux@armlinux.org.uk>
11330 M:      Marek Behún <kabel@kernel.org>
11331 L:      netdev@vger.kernel.org
11332 S:      Maintained
11333 F:      drivers/net/phy/marvell10g.c
11334
11335 MARVELL MVEBU THERMAL DRIVER
11336 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11337 S:      Maintained
11338 F:      drivers/thermal/armada_thermal.c
11339
11340 MARVELL MVNETA ETHERNET DRIVER
11341 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11342 L:      netdev@vger.kernel.org
11343 S:      Maintained
11344 F:      drivers/net/ethernet/marvell/mvneta.*
11345
11346 MARVELL MVPP2 ETHERNET DRIVER
11347 M:      Marcin Wojtas <mw@semihalf.com>
11348 M:      Russell King <linux@armlinux.org.uk>
11349 L:      netdev@vger.kernel.org
11350 S:      Maintained
11351 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11352 F:      drivers/net/ethernet/marvell/mvpp2/
11353
11354 MARVELL MWIFIEX WIRELESS DRIVER
11355 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11356 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11357 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11358 M:      Xinming Hu <huxinming820@gmail.com>
11359 L:      linux-wireless@vger.kernel.org
11360 S:      Maintained
11361 F:      drivers/net/wireless/marvell/mwifiex/
11362
11363 MARVELL MWL8K WIRELESS DRIVER
11364 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11365 L:      linux-wireless@vger.kernel.org
11366 S:      Odd Fixes
11367 F:      drivers/net/wireless/marvell/mwl8k.c
11368
11369 MARVELL NAND CONTROLLER DRIVER
11370 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11371 L:      linux-mtd@lists.infradead.org
11372 S:      Maintained
11373 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11374 F:      drivers/mtd/nand/raw/marvell_nand.c
11375
11376 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11377 M:      Sunil Goutham <sgoutham@marvell.com>
11378 M:      Geetha sowjanya <gakula@marvell.com>
11379 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11380 M:      hariprasad <hkelam@marvell.com>
11381 L:      netdev@vger.kernel.org
11382 S:      Supported
11383 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11384 F:      include/linux/soc/marvell/octeontx2/
11385
11386 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11387 M:      Sunil Goutham <sgoutham@marvell.com>
11388 M:      Linu Cherian <lcherian@marvell.com>
11389 M:      Geetha sowjanya <gakula@marvell.com>
11390 M:      Jerin Jacob <jerinj@marvell.com>
11391 M:      hariprasad <hkelam@marvell.com>
11392 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11393 L:      netdev@vger.kernel.org
11394 S:      Supported
11395 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11396 F:      drivers/net/ethernet/marvell/octeontx2/af/
11397
11398 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11399 M:      Taras Chornyi <tchornyi@marvell.com>
11400 S:      Supported
11401 W:      https://github.com/Marvell-switching/switchdev-prestera
11402 F:      drivers/net/ethernet/marvell/prestera/
11403
11404 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11405 M:      Nicolas Pitre <nico@fluxnic.net>
11406 S:      Odd Fixes
11407 F:      drivers/mmc/host/mvsdio.*
11408
11409 MARVELL USB MDIO CONTROLLER DRIVER
11410 M:      Tobias Waldekranz <tobias@waldekranz.com>
11411 L:      netdev@vger.kernel.org
11412 S:      Maintained
11413 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11414 F:      drivers/net/mdio/mdio-mvusb.c
11415
11416 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11417 M:      Hu Ziji <huziji@marvell.com>
11418 L:      linux-mmc@vger.kernel.org
11419 S:      Supported
11420 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11421 F:      drivers/mmc/host/sdhci-xenon*
11422
11423 MATROX FRAMEBUFFER DRIVER
11424 L:      linux-fbdev@vger.kernel.org
11425 S:      Orphan
11426 F:      drivers/video/fbdev/matrox/matroxfb_*
11427 F:      include/uapi/linux/matroxfb.h
11428
11429 MAX15301 DRIVER
11430 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11431 L:      linux-hwmon@vger.kernel.org
11432 S:      Maintained
11433 F:      Documentation/hwmon/max15301.rst
11434 F:      drivers/hwmon/pmbus/max15301.c
11435
11436 MAX16065 HARDWARE MONITOR DRIVER
11437 M:      Guenter Roeck <linux@roeck-us.net>
11438 L:      linux-hwmon@vger.kernel.org
11439 S:      Maintained
11440 F:      Documentation/hwmon/max16065.rst
11441 F:      drivers/hwmon/max16065.c
11442
11443 MAX2175 SDR TUNER DRIVER
11444 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11445 L:      linux-media@vger.kernel.org
11446 S:      Maintained
11447 T:      git git://linuxtv.org/media_tree.git
11448 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11449 F:      Documentation/userspace-api/media/drivers/max2175.rst
11450 F:      drivers/media/i2c/max2175*
11451 F:      include/uapi/linux/max2175.h
11452
11453 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11454 L:      linux-hwmon@vger.kernel.org
11455 S:      Orphan
11456 F:      Documentation/hwmon/max6650.rst
11457 F:      drivers/hwmon/max6650.c
11458
11459 MAX6697 HARDWARE MONITOR DRIVER
11460 M:      Guenter Roeck <linux@roeck-us.net>
11461 L:      linux-hwmon@vger.kernel.org
11462 S:      Maintained
11463 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11464 F:      Documentation/hwmon/max6697.rst
11465 F:      drivers/hwmon/max6697.c
11466 F:      include/linux/platform_data/max6697.h
11467
11468 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11469 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11470 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11471 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11472 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11473 L:      linux-media@vger.kernel.org
11474 S:      Maintained
11475 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11476 F:      drivers/media/i2c/max9286.c
11477
11478 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11479 M:      Peter Rosin <peda@axentia.se>
11480 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11481 S:      Maintained
11482 F:      Documentation/devicetree/bindings/sound/max9860.txt
11483 F:      sound/soc/codecs/max9860.*
11484
11485 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11486 M:      Andreas Klinger <ak@it-klinger.de>
11487 L:      linux-iio@vger.kernel.org
11488 S:      Maintained
11489 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11490 F:      drivers/iio/proximity/mb1232.c
11491
11492 MAXIM MAX77650 PMIC MFD DRIVER
11493 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11494 L:      linux-kernel@vger.kernel.org
11495 S:      Maintained
11496 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11497 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11498 F:      drivers/gpio/gpio-max77650.c
11499 F:      drivers/input/misc/max77650-onkey.c
11500 F:      drivers/leds/leds-max77650.c
11501 F:      drivers/mfd/max77650.c
11502 F:      drivers/power/supply/max77650-charger.c
11503 F:      drivers/regulator/max77650-regulator.c
11504 F:      include/linux/mfd/max77650.h
11505
11506 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11507 M:      Javier Martinez Canillas <javier@dowhile0.org>
11508 L:      linux-kernel@vger.kernel.org
11509 S:      Supported
11510 F:      Documentation/devicetree/bindings/*/*max77802.txt
11511 F:      drivers/regulator/max77802-regulator.c
11512 F:      include/dt-bindings/*/*max77802.h
11513
11514 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11515 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11516 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11517 L:      linux-pm@vger.kernel.org
11518 S:      Supported
11519 F:      drivers/power/supply/max14577_charger.c
11520 F:      drivers/power/supply/max77693_charger.c
11521
11522 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11523 M:      Chanwoo Choi <cw00.choi@samsung.com>
11524 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11525 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11526 L:      linux-kernel@vger.kernel.org
11527 S:      Supported
11528 F:      Documentation/devicetree/bindings/*/max77686.txt
11529 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11530 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11531 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11532 F:      drivers/*/max14577*.c
11533 F:      drivers/*/max77686*.c
11534 F:      drivers/*/max77693*.c
11535 F:      drivers/clk/clk-max77686.c
11536 F:      drivers/extcon/extcon-max14577.c
11537 F:      drivers/extcon/extcon-max77693.c
11538 F:      drivers/rtc/rtc-max77686.c
11539 F:      include/linux/mfd/max14577*.h
11540 F:      include/linux/mfd/max77686*.h
11541 F:      include/linux/mfd/max77693*.h
11542
11543 MAXIRADIO FM RADIO RECEIVER DRIVER
11544 M:      Hans Verkuil <hverkuil@xs4all.nl>
11545 L:      linux-media@vger.kernel.org
11546 S:      Maintained
11547 W:      https://linuxtv.org
11548 T:      git git://linuxtv.org/media_tree.git
11549 F:      drivers/media/radio/radio-maxiradio*
11550
11551 MAXLINEAR ETHERNET PHY DRIVER
11552 M:      Xu Liang <lxu@maxlinear.com>
11553 L:      netdev@vger.kernel.org
11554 S:      Supported
11555 F:      drivers/net/phy/mxl-gpy.c
11556
11557 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11558 R:      Yasushi SHOJI <yashi@spacecubics.com>
11559 L:      linux-can@vger.kernel.org
11560 S:      Maintained
11561 F:      drivers/net/can/usb/mcba_usb.c
11562
11563 MCAN MMIO DEVICE DRIVER
11564 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11565 L:      linux-can@vger.kernel.org
11566 S:      Maintained
11567 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11568 F:      drivers/net/can/m_can/m_can.c
11569 F:      drivers/net/can/m_can/m_can.h
11570 F:      drivers/net/can/m_can/m_can_platform.c
11571
11572 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11573 M:      Rishi Gupta <gupt21@gmail.com>
11574 L:      linux-i2c@vger.kernel.org
11575 L:      linux-input@vger.kernel.org
11576 S:      Maintained
11577 F:      drivers/hid/hid-mcp2221.c
11578
11579 MCP251XFD SPI-CAN NETWORK DRIVER
11580 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11581 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11582 R:      Thomas Kopp <thomas.kopp@microchip.com>
11583 L:      linux-can@vger.kernel.org
11584 S:      Maintained
11585 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11586 F:      drivers/net/can/spi/mcp251xfd/
11587
11588 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11589 M:      Peter Rosin <peda@axentia.se>
11590 L:      linux-iio@vger.kernel.org
11591 S:      Maintained
11592 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11593 F:      drivers/iio/potentiometer/mcp4018.c
11594 F:      drivers/iio/potentiometer/mcp4531.c
11595
11596 MCR20A IEEE-802.15.4 RADIO DRIVER
11597 M:      Xue Liu <liuxuenetmail@gmail.com>
11598 L:      linux-wpan@vger.kernel.org
11599 S:      Maintained
11600 W:      https://github.com/xueliu/mcr20a-linux
11601 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11602 F:      drivers/net/ieee802154/mcr20a.c
11603 F:      drivers/net/ieee802154/mcr20a.h
11604
11605 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11606 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11607 L:      linux-iio@vger.kernel.org
11608 S:      Maintained
11609 F:      drivers/iio/dac/cio-dac.c
11610
11611 MEDIA CONTROLLER FRAMEWORK
11612 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11613 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11614 L:      linux-media@vger.kernel.org
11615 S:      Supported
11616 W:      https://www.linuxtv.org
11617 T:      git git://linuxtv.org/media_tree.git
11618 F:      drivers/media/mc/
11619 F:      include/media/media-*.h
11620 F:      include/uapi/linux/media.h
11621
11622 MEDIA DRIVER FOR FREESCALE IMX PXP
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:      drivers/media/platform/imx-pxp.[ch]
11628
11629 MEDIA DRIVERS FOR ASCOT2E
11630 M:      Sergey Kozlov <serjk@netup.ru>
11631 M:      Abylay Ospan <aospan@netup.ru>
11632 L:      linux-media@vger.kernel.org
11633 S:      Supported
11634 W:      https://linuxtv.org
11635 W:      http://netup.tv/
11636 T:      git git://linuxtv.org/media_tree.git
11637 F:      drivers/media/dvb-frontends/ascot2e*
11638
11639 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11640 M:      Jasmin Jessich <jasmin@anw.at>
11641 L:      linux-media@vger.kernel.org
11642 S:      Maintained
11643 W:      https://linuxtv.org
11644 T:      git git://linuxtv.org/media_tree.git
11645 F:      drivers/media/dvb-frontends/cxd2099*
11646
11647 MEDIA DRIVERS FOR CXD2841ER
11648 M:      Sergey Kozlov <serjk@netup.ru>
11649 M:      Abylay Ospan <aospan@netup.ru>
11650 L:      linux-media@vger.kernel.org
11651 S:      Supported
11652 W:      https://linuxtv.org
11653 W:      http://netup.tv/
11654 T:      git git://linuxtv.org/media_tree.git
11655 F:      drivers/media/dvb-frontends/cxd2841er*
11656
11657 MEDIA DRIVERS FOR CXD2880
11658 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11659 L:      linux-media@vger.kernel.org
11660 S:      Supported
11661 W:      http://linuxtv.org/
11662 T:      git git://linuxtv.org/media_tree.git
11663 F:      drivers/media/dvb-frontends/cxd2880/*
11664 F:      drivers/media/spi/cxd2880*
11665
11666 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11667 L:      linux-media@vger.kernel.org
11668 S:      Orphan
11669 W:      https://linuxtv.org
11670 T:      git git://linuxtv.org/media_tree.git
11671 F:      drivers/media/pci/ddbridge/*
11672
11673 MEDIA DRIVERS FOR FREESCALE IMX
11674 M:      Steve Longerbeam <slongerbeam@gmail.com>
11675 M:      Philipp Zabel <p.zabel@pengutronix.de>
11676 L:      linux-media@vger.kernel.org
11677 S:      Maintained
11678 T:      git git://linuxtv.org/media_tree.git
11679 F:      Documentation/admin-guide/media/imx.rst
11680 F:      Documentation/devicetree/bindings/media/imx.txt
11681 F:      drivers/staging/media/imx/
11682 F:      include/linux/imx-media.h
11683 F:      include/media/imx.h
11684
11685 MEDIA DRIVERS FOR FREESCALE IMX7
11686 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11687 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11688 L:      linux-media@vger.kernel.org
11689 S:      Maintained
11690 T:      git git://linuxtv.org/media_tree.git
11691 F:      Documentation/admin-guide/media/imx7.rst
11692 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11693 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11694 F:      drivers/staging/media/imx/imx7-media-csi.c
11695 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11696
11697 MEDIA DRIVERS FOR HELENE
11698 M:      Abylay Ospan <aospan@netup.ru>
11699 L:      linux-media@vger.kernel.org
11700 S:      Supported
11701 W:      https://linuxtv.org
11702 W:      http://netup.tv/
11703 T:      git git://linuxtv.org/media_tree.git
11704 F:      drivers/media/dvb-frontends/helene*
11705
11706 MEDIA DRIVERS FOR HORUS3A
11707 M:      Sergey Kozlov <serjk@netup.ru>
11708 M:      Abylay Ospan <aospan@netup.ru>
11709 L:      linux-media@vger.kernel.org
11710 S:      Supported
11711 W:      https://linuxtv.org
11712 W:      http://netup.tv/
11713 T:      git git://linuxtv.org/media_tree.git
11714 F:      drivers/media/dvb-frontends/horus3a*
11715
11716 MEDIA DRIVERS FOR LNBH25
11717 M:      Sergey Kozlov <serjk@netup.ru>
11718 M:      Abylay Ospan <aospan@netup.ru>
11719 L:      linux-media@vger.kernel.org
11720 S:      Supported
11721 W:      https://linuxtv.org
11722 W:      http://netup.tv/
11723 T:      git git://linuxtv.org/media_tree.git
11724 F:      drivers/media/dvb-frontends/lnbh25*
11725
11726 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11727 L:      linux-media@vger.kernel.org
11728 S:      Orphan
11729 W:      https://linuxtv.org
11730 T:      git git://linuxtv.org/media_tree.git
11731 F:      drivers/media/dvb-frontends/mxl5xx*
11732
11733 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11734 M:      Sergey Kozlov <serjk@netup.ru>
11735 M:      Abylay Ospan <aospan@netup.ru>
11736 L:      linux-media@vger.kernel.org
11737 S:      Supported
11738 W:      https://linuxtv.org
11739 W:      http://netup.tv/
11740 T:      git git://linuxtv.org/media_tree.git
11741 F:      drivers/media/pci/netup_unidvb/*
11742
11743 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11744 M:      Dmitry Osipenko <digetx@gmail.com>
11745 L:      linux-media@vger.kernel.org
11746 L:      linux-tegra@vger.kernel.org
11747 S:      Maintained
11748 T:      git git://linuxtv.org/media_tree.git
11749 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11750 F:      drivers/staging/media/tegra-vde/
11751
11752 MEDIA DRIVERS FOR RENESAS - CEU
11753 M:      Jacopo Mondi <jacopo@jmondi.org>
11754 L:      linux-media@vger.kernel.org
11755 L:      linux-renesas-soc@vger.kernel.org
11756 S:      Supported
11757 T:      git git://linuxtv.org/media_tree.git
11758 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11759 F:      drivers/media/platform/renesas-ceu.c
11760 F:      include/media/drv-intf/renesas-ceu.h
11761
11762 MEDIA DRIVERS FOR RENESAS - DRIF
11763 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11764 L:      linux-media@vger.kernel.org
11765 L:      linux-renesas-soc@vger.kernel.org
11766 S:      Supported
11767 T:      git git://linuxtv.org/media_tree.git
11768 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11769 F:      drivers/media/platform/rcar_drif.c
11770
11771 MEDIA DRIVERS FOR RENESAS - FCP
11772 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11773 L:      linux-media@vger.kernel.org
11774 L:      linux-renesas-soc@vger.kernel.org
11775 S:      Supported
11776 T:      git git://linuxtv.org/media_tree.git
11777 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11778 F:      drivers/media/platform/rcar-fcp.c
11779 F:      include/media/rcar-fcp.h
11780
11781 MEDIA DRIVERS FOR RENESAS - FDP1
11782 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11783 L:      linux-media@vger.kernel.org
11784 L:      linux-renesas-soc@vger.kernel.org
11785 S:      Supported
11786 T:      git git://linuxtv.org/media_tree.git
11787 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11788 F:      drivers/media/platform/rcar_fdp1.c
11789
11790 MEDIA DRIVERS FOR RENESAS - VIN
11791 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11792 L:      linux-media@vger.kernel.org
11793 L:      linux-renesas-soc@vger.kernel.org
11794 S:      Supported
11795 T:      git git://linuxtv.org/media_tree.git
11796 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11797 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11798 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11799 F:      drivers/media/platform/rcar-isp.c
11800 F:      drivers/media/platform/rcar-vin/
11801
11802 MEDIA DRIVERS FOR RENESAS - VSP1
11803 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11804 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11805 L:      linux-media@vger.kernel.org
11806 L:      linux-renesas-soc@vger.kernel.org
11807 S:      Supported
11808 T:      git git://linuxtv.org/media_tree.git
11809 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11810 F:      drivers/media/platform/vsp1/
11811
11812 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11813 L:      linux-media@vger.kernel.org
11814 S:      Orphan
11815 W:      https://linuxtv.org
11816 T:      git git://linuxtv.org/media_tree.git
11817 F:      drivers/media/dvb-frontends/stv0910*
11818
11819 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11820 L:      linux-media@vger.kernel.org
11821 S:      Orphan
11822 W:      https://linuxtv.org
11823 T:      git git://linuxtv.org/media_tree.git
11824 F:      drivers/media/dvb-frontends/stv6111*
11825
11826 MEDIA DRIVERS FOR STM32 - DCMI
11827 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11828 L:      linux-media@vger.kernel.org
11829 S:      Supported
11830 T:      git git://linuxtv.org/media_tree.git
11831 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11832 F:      drivers/media/platform/stm32/stm32-dcmi.c
11833
11834 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11835 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11836 L:      linux-media@vger.kernel.org
11837 S:      Maintained
11838 W:      https://linuxtv.org
11839 Q:      http://patchwork.kernel.org/project/linux-media/list/
11840 T:      git git://linuxtv.org/media_tree.git
11841 F:      Documentation/admin-guide/media/
11842 F:      Documentation/devicetree/bindings/media/
11843 F:      Documentation/driver-api/media/
11844 F:      Documentation/userspace-api/media/
11845 F:      drivers/media/
11846 F:      drivers/staging/media/
11847 F:      include/linux/platform_data/media/
11848 F:      include/media/
11849 F:      include/uapi/linux/dvb/
11850 F:      include/uapi/linux/ivtv*
11851 F:      include/uapi/linux/media.h
11852 F:      include/uapi/linux/meye.h
11853 F:      include/uapi/linux/uvcvideo.h
11854 F:      include/uapi/linux/v4l2-*
11855 F:      include/uapi/linux/videodev2.h
11856
11857 MEDIATEK BLUETOOTH DRIVER
11858 M:      Sean Wang <sean.wang@mediatek.com>
11859 L:      linux-bluetooth@vger.kernel.org
11860 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11861 S:      Maintained
11862 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11863 F:      drivers/bluetooth/btmtkuart.c
11864
11865 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11866 M:      Sean Wang <sean.wang@mediatek.com>
11867 L:      linux-pm@vger.kernel.org
11868 S:      Maintained
11869 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11870 F:      drivers/power/reset/mt6323-poweroff.c
11871
11872 MEDIATEK CIR DRIVER
11873 M:      Sean Wang <sean.wang@mediatek.com>
11874 S:      Maintained
11875 F:      drivers/media/rc/mtk-cir.c
11876
11877 MEDIATEK DMA DRIVER
11878 M:      Sean Wang <sean.wang@mediatek.com>
11879 L:      dmaengine@vger.kernel.org
11880 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11881 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11882 S:      Maintained
11883 F:      Documentation/devicetree/bindings/dma/mtk-*
11884 F:      drivers/dma/mediatek/
11885
11886 MEDIATEK ETHERNET DRIVER
11887 M:      Felix Fietkau <nbd@nbd.name>
11888 M:      John Crispin <john@phrozen.org>
11889 M:      Sean Wang <sean.wang@mediatek.com>
11890 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11891 L:      netdev@vger.kernel.org
11892 S:      Maintained
11893 F:      drivers/net/ethernet/mediatek/
11894
11895 MEDIATEK I2C CONTROLLER DRIVER
11896 M:      Qii Wang <qii.wang@mediatek.com>
11897 L:      linux-i2c@vger.kernel.org
11898 S:      Maintained
11899 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11900 F:      drivers/i2c/busses/i2c-mt65xx.c
11901
11902 MEDIATEK IOMMU DRIVER
11903 M:      Yong Wu <yong.wu@mediatek.com>
11904 L:      iommu@lists.linux-foundation.org
11905 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11906 S:      Supported
11907 F:      Documentation/devicetree/bindings/iommu/mediatek*
11908 F:      drivers/iommu/mtk_iommu*
11909 F:      include/dt-bindings/memory/mt*-port.h
11910
11911 MEDIATEK JPEG DRIVER
11912 M:      Rick Chang <rick.chang@mediatek.com>
11913 M:      Bin Liu <bin.liu@mediatek.com>
11914 S:      Supported
11915 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11916 F:      drivers/media/platform/mtk-jpeg/
11917
11918 MEDIATEK MDP DRIVER
11919 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11920 M:      Houlong Wei <houlong.wei@mediatek.com>
11921 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11922 S:      Supported
11923 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11924 F:      drivers/media/platform/mtk-mdp/
11925 F:      drivers/media/platform/mtk-vpu/
11926
11927 MEDIATEK MEDIA DRIVER
11928 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11929 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11930 S:      Supported
11931 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11932 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11933 F:      drivers/media/platform/mtk-vcodec/
11934 F:      drivers/media/platform/mtk-vpu/
11935
11936 MEDIATEK MMC/SD/SDIO DRIVER
11937 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11938 S:      Maintained
11939 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11940 F:      drivers/mmc/host/mtk-sd.c
11941
11942 MEDIATEK MT76 WIRELESS LAN DRIVER
11943 M:      Felix Fietkau <nbd@nbd.name>
11944 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11945 M:      Ryder Lee <ryder.lee@mediatek.com>
11946 R:      Shayne Chen <shayne.chen@mediatek.com>
11947 R:      Sean Wang <sean.wang@mediatek.com>
11948 L:      linux-wireless@vger.kernel.org
11949 S:      Maintained
11950 F:      drivers/net/wireless/mediatek/mt76/
11951
11952 MEDIATEK MT7601U WIRELESS LAN DRIVER
11953 M:      Jakub Kicinski <kubakici@wp.pl>
11954 L:      linux-wireless@vger.kernel.org
11955 S:      Maintained
11956 F:      drivers/net/wireless/mediatek/mt7601u/
11957
11958 MEDIATEK MT7621 CLOCK DRIVER
11959 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11960 S:      Maintained
11961 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11962 F:      drivers/clk/ralink/clk-mt7621.c
11963
11964 MEDIATEK MT7621/28/88 I2C DRIVER
11965 M:      Stefan Roese <sr@denx.de>
11966 L:      linux-i2c@vger.kernel.org
11967 S:      Maintained
11968 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11969 F:      drivers/i2c/busses/i2c-mt7621.c
11970
11971 MEDIATEK MT7621 PHY PCI DRIVER
11972 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11973 S:      Maintained
11974 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11975 F:      drivers/phy/ralink/phy-mt7621-pci.c
11976
11977 MEDIATEK NAND CONTROLLER DRIVER
11978 L:      linux-mtd@lists.infradead.org
11979 S:      Orphan
11980 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11981 F:      drivers/mtd/nand/raw/mtk_*
11982
11983 MEDIATEK PMIC LED DRIVER
11984 M:      Sean Wang <sean.wang@mediatek.com>
11985 S:      Maintained
11986 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11987 F:      drivers/leds/leds-mt6323.c
11988
11989 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11990 M:      Sean Wang <sean.wang@mediatek.com>
11991 S:      Maintained
11992 F:      drivers/char/hw_random/mtk-rng.c
11993
11994 MEDIATEK SWITCH DRIVER
11995 M:      Sean Wang <sean.wang@mediatek.com>
11996 M:      Landen Chao <Landen.Chao@mediatek.com>
11997 M:      DENG Qingfang <dqfext@gmail.com>
11998 L:      netdev@vger.kernel.org
11999 S:      Maintained
12000 F:      drivers/net/dsa/mt7530.*
12001 F:      net/dsa/tag_mtk.c
12002
12003 MEDIATEK USB3 DRD IP DRIVER
12004 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12005 L:      linux-usb@vger.kernel.org
12006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12007 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12008 S:      Maintained
12009 F:      Documentation/devicetree/bindings/usb/mediatek,*
12010 F:      drivers/usb/host/xhci-mtk*
12011 F:      drivers/usb/mtu3/
12012
12013 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12014 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12015 M:      Martin Donnelly <martin.donnelly@ge.com>
12016 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12017 S:      Maintained
12018 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12019 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12020
12021 MEGARAID SCSI/SAS DRIVERS
12022 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12023 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12024 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12025 L:      megaraidlinux.pdl@broadcom.com
12026 L:      linux-scsi@vger.kernel.org
12027 S:      Maintained
12028 W:      http://www.avagotech.com/support/
12029 F:      Documentation/scsi/megaraid.rst
12030 F:      drivers/scsi/megaraid.*
12031 F:      drivers/scsi/megaraid/
12032
12033 MELEXIS MLX90614 DRIVER
12034 M:      Crt Mori <cmo@melexis.com>
12035 L:      linux-iio@vger.kernel.org
12036 S:      Supported
12037 W:      http://www.melexis.com
12038 F:      drivers/iio/temperature/mlx90614.c
12039
12040 MELEXIS MLX90632 DRIVER
12041 M:      Crt Mori <cmo@melexis.com>
12042 L:      linux-iio@vger.kernel.org
12043 S:      Supported
12044 W:      http://www.melexis.com
12045 F:      drivers/iio/temperature/mlx90632.c
12046
12047 MELFAS MIP4 TOUCHSCREEN DRIVER
12048 M:      Sangwon Jee <jeesw@melfas.com>
12049 S:      Supported
12050 W:      http://www.melfas.com
12051 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12052 F:      drivers/input/touchscreen/melfas_mip4.c
12053
12054 MELLANOX BLUEFIELD I2C DRIVER
12055 M:      Khalil Blaiech <kblaiech@nvidia.com>
12056 L:      linux-i2c@vger.kernel.org
12057 S:      Supported
12058 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12059 F:      drivers/i2c/busses/i2c-mlxbf.c
12060
12061 MELLANOX ETHERNET DRIVER (mlx4_en)
12062 M:      Tariq Toukan <tariqt@nvidia.com>
12063 L:      netdev@vger.kernel.org
12064 S:      Supported
12065 W:      http://www.mellanox.com
12066 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12067 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12068
12069 MELLANOX ETHERNET DRIVER (mlx5e)
12070 M:      Saeed Mahameed <saeedm@nvidia.com>
12071 L:      netdev@vger.kernel.org
12072 S:      Supported
12073 W:      http://www.mellanox.com
12074 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12075 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12076
12077 MELLANOX ETHERNET INNOVA DRIVERS
12078 R:      Boris Pismenny <borisp@nvidia.com>
12079 L:      netdev@vger.kernel.org
12080 S:      Supported
12081 W:      http://www.mellanox.com
12082 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12083 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12084 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12085 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12086 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12087
12088 MELLANOX ETHERNET SWITCH DRIVERS
12089 M:      Jiri Pirko <jiri@nvidia.com>
12090 M:      Ido Schimmel <idosch@nvidia.com>
12091 L:      netdev@vger.kernel.org
12092 S:      Supported
12093 W:      http://www.mellanox.com
12094 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12095 F:      drivers/net/ethernet/mellanox/mlxsw/
12096 F:      tools/testing/selftests/drivers/net/mlxsw/
12097
12098 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12099 M:      mlxsw@nvidia.com
12100 L:      netdev@vger.kernel.org
12101 S:      Supported
12102 W:      http://www.mellanox.com
12103 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12104 F:      drivers/net/ethernet/mellanox/mlxfw/
12105
12106 MELLANOX HARDWARE PLATFORM SUPPORT
12107 M:      Hans de Goede <hdegoede@redhat.com>
12108 M:      Mark Gross <markgross@kernel.org>
12109 M:      Vadim Pasternak <vadimp@nvidia.com>
12110 L:      platform-driver-x86@vger.kernel.org
12111 S:      Supported
12112 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12113 F:      drivers/platform/mellanox/
12114 F:      include/linux/platform_data/mlxreg.h
12115
12116 MELLANOX MLX4 core VPI driver
12117 M:      Tariq Toukan <tariqt@nvidia.com>
12118 L:      netdev@vger.kernel.org
12119 L:      linux-rdma@vger.kernel.org
12120 S:      Supported
12121 W:      http://www.mellanox.com
12122 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12123 F:      drivers/net/ethernet/mellanox/mlx4/
12124 F:      include/linux/mlx4/
12125
12126 MELLANOX MLX4 IB driver
12127 M:      Yishai Hadas <yishaih@nvidia.com>
12128 L:      linux-rdma@vger.kernel.org
12129 S:      Supported
12130 W:      http://www.mellanox.com
12131 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12132 F:      drivers/infiniband/hw/mlx4/
12133 F:      include/linux/mlx4/
12134 F:      include/uapi/rdma/mlx4-abi.h
12135
12136 MELLANOX MLX5 core VPI driver
12137 M:      Saeed Mahameed <saeedm@nvidia.com>
12138 M:      Leon Romanovsky <leonro@nvidia.com>
12139 L:      netdev@vger.kernel.org
12140 L:      linux-rdma@vger.kernel.org
12141 S:      Supported
12142 W:      http://www.mellanox.com
12143 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12144 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12145 F:      drivers/net/ethernet/mellanox/mlx5/core/
12146 F:      include/linux/mlx5/
12147
12148 MELLANOX MLX5 IB driver
12149 M:      Leon Romanovsky <leonro@nvidia.com>
12150 L:      linux-rdma@vger.kernel.org
12151 S:      Supported
12152 W:      http://www.mellanox.com
12153 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12154 F:      drivers/infiniband/hw/mlx5/
12155 F:      include/linux/mlx5/
12156 F:      include/uapi/rdma/mlx5-abi.h
12157
12158 MELLANOX MLXCPLD I2C AND MUX DRIVER
12159 M:      Vadim Pasternak <vadimp@nvidia.com>
12160 M:      Michael Shych <michaelsh@nvidia.com>
12161 L:      linux-i2c@vger.kernel.org
12162 S:      Supported
12163 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12164 F:      drivers/i2c/busses/i2c-mlxcpld.c
12165 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12166
12167 MELLANOX MLXCPLD LED DRIVER
12168 M:      Vadim Pasternak <vadimp@nvidia.com>
12169 L:      linux-leds@vger.kernel.org
12170 S:      Supported
12171 F:      Documentation/leds/leds-mlxcpld.rst
12172 F:      drivers/leds/leds-mlxcpld.c
12173 F:      drivers/leds/leds-mlxreg.c
12174
12175 MELLANOX PLATFORM DRIVER
12176 M:      Vadim Pasternak <vadimp@nvidia.com>
12177 L:      platform-driver-x86@vger.kernel.org
12178 S:      Supported
12179 F:      drivers/platform/x86/mlx-platform.c
12180
12181 MEMBARRIER SUPPORT
12182 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12183 M:      "Paul E. McKenney" <paulmck@kernel.org>
12184 L:      linux-kernel@vger.kernel.org
12185 S:      Supported
12186 F:      arch/powerpc/include/asm/membarrier.h
12187 F:      include/uapi/linux/membarrier.h
12188 F:      kernel/sched/membarrier.c
12189
12190 MEMBLOCK
12191 M:      Mike Rapoport <rppt@linux.ibm.com>
12192 L:      linux-mm@kvack.org
12193 S:      Maintained
12194 F:      Documentation/core-api/boot-time-mm.rst
12195 F:      include/linux/memblock.h
12196 F:      mm/memblock.c
12197
12198 MEMORY CONTROLLER DRIVERS
12199 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12200 L:      linux-kernel@vger.kernel.org
12201 S:      Maintained
12202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12203 F:      Documentation/devicetree/bindings/memory-controllers/
12204 F:      drivers/memory/
12205 F:      include/dt-bindings/memory/
12206 F:      include/memory/
12207
12208 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12209 M:      Dmitry Osipenko <digetx@gmail.com>
12210 L:      linux-pm@vger.kernel.org
12211 L:      linux-tegra@vger.kernel.org
12212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12213 S:      Maintained
12214 F:      drivers/devfreq/tegra30-devfreq.c
12215
12216 MEMORY MANAGEMENT
12217 M:      Andrew Morton <akpm@linux-foundation.org>
12218 L:      linux-mm@kvack.org
12219 S:      Maintained
12220 W:      http://www.linux-mm.org
12221 T:      quilt https://ozlabs.org/~akpm/mmotm/
12222 T:      quilt https://ozlabs.org/~akpm/mmots/
12223 T:      git git://github.com/hnaz/linux-mm.git
12224 F:      include/linux/gfp.h
12225 F:      include/linux/memory_hotplug.h
12226 F:      include/linux/mm.h
12227 F:      include/linux/mmzone.h
12228 F:      include/linux/pagewalk.h
12229 F:      include/linux/vmalloc.h
12230 F:      mm/
12231 F:      tools/testing/selftests/vm/
12232
12233 MEMORY TECHNOLOGY DEVICES (MTD)
12234 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12235 M:      Richard Weinberger <richard@nod.at>
12236 M:      Vignesh Raghavendra <vigneshr@ti.com>
12237 L:      linux-mtd@lists.infradead.org
12238 S:      Maintained
12239 W:      http://www.linux-mtd.infradead.org/
12240 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12241 C:      irc://irc.oftc.net/mtd
12242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12244 F:      Documentation/devicetree/bindings/mtd/
12245 F:      drivers/mtd/
12246 F:      include/linux/mtd/
12247 F:      include/uapi/mtd/
12248
12249 MEN A21 WATCHDOG DRIVER
12250 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12251 L:      linux-watchdog@vger.kernel.org
12252 S:      Maintained
12253 F:      drivers/watchdog/mena21_wdt.c
12254
12255 MEN CHAMELEON BUS (mcb)
12256 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12257 S:      Maintained
12258 F:      Documentation/driver-api/men-chameleon-bus.rst
12259 F:      drivers/mcb/
12260 F:      include/linux/mcb.h
12261
12262 MEN F21BMC (Board Management Controller)
12263 M:      Andreas Werner <andreas.werner@men.de>
12264 S:      Supported
12265 F:      Documentation/hwmon/menf21bmc.rst
12266 F:      drivers/hwmon/menf21bmc_hwmon.c
12267 F:      drivers/leds/leds-menf21bmc.c
12268 F:      drivers/mfd/menf21bmc.c
12269 F:      drivers/watchdog/menf21bmc_wdt.c
12270
12271 MEN Z069 WATCHDOG DRIVER
12272 M:      Johannes Thumshirn <jth@kernel.org>
12273 L:      linux-watchdog@vger.kernel.org
12274 S:      Maintained
12275 F:      drivers/watchdog/menz69_wdt.c
12276
12277 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12278 M:      Neil Armstrong <narmstrong@baylibre.com>
12279 L:      linux-media@vger.kernel.org
12280 L:      linux-amlogic@lists.infradead.org
12281 S:      Supported
12282 W:      http://linux-meson.com/
12283 T:      git git://linuxtv.org/media_tree.git
12284 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12285 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12286 F:      drivers/media/cec/platform/meson/ao-cec.c
12287
12288 MESON GE2D DRIVER FOR AMLOGIC SOCS
12289 M:      Neil Armstrong <narmstrong@baylibre.com>
12290 L:      linux-media@vger.kernel.org
12291 L:      linux-amlogic@lists.infradead.org
12292 S:      Supported
12293 T:      git git://linuxtv.org/media_tree.git
12294 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12295 F:      drivers/media/platform/meson/ge2d/
12296
12297 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12298 M:      Liang Yang <liang.yang@amlogic.com>
12299 L:      linux-mtd@lists.infradead.org
12300 S:      Maintained
12301 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12302 F:      drivers/mtd/nand/raw/meson_*
12303
12304 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12305 M:      Neil Armstrong <narmstrong@baylibre.com>
12306 L:      linux-media@vger.kernel.org
12307 L:      linux-amlogic@lists.infradead.org
12308 S:      Supported
12309 T:      git git://linuxtv.org/media_tree.git
12310 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12311 F:      drivers/staging/media/meson/vdec/
12312
12313 METHODE UDPU SUPPORT
12314 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12315 S:      Maintained
12316 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12317
12318 MHI BUS
12319 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12320 M:      Hemant Kumar <hemantk@codeaurora.org>
12321 L:      linux-arm-msm@vger.kernel.org
12322 S:      Maintained
12323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12324 F:      Documentation/ABI/stable/sysfs-bus-mhi
12325 F:      Documentation/mhi/
12326 F:      drivers/bus/mhi/
12327 F:      include/linux/mhi.h
12328
12329 MICROBLAZE ARCHITECTURE
12330 M:      Michal Simek <monstr@monstr.eu>
12331 S:      Supported
12332 W:      http://www.monstr.eu/fdt/
12333 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12334 F:      arch/microblaze/
12335
12336 MICROCHIP AT91 DMA DRIVERS
12337 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12338 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12340 L:      dmaengine@vger.kernel.org
12341 S:      Supported
12342 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12343 F:      drivers/dma/at_hdmac.c
12344 F:      drivers/dma/at_hdmac_regs.h
12345 F:      drivers/dma/at_xdmac.c
12346 F:      include/dt-bindings/dma/at91.h
12347
12348 MICROCHIP AT91 SERIAL DRIVER
12349 M:      Richard Genoud <richard.genoud@gmail.com>
12350 S:      Maintained
12351 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12352 F:      drivers/tty/serial/atmel_serial.c
12353 F:      drivers/tty/serial/atmel_serial.h
12354
12355 MICROCHIP AT91 USART MFD DRIVER
12356 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12357 L:      linux-kernel@vger.kernel.org
12358 S:      Supported
12359 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12360 F:      drivers/mfd/at91-usart.c
12361 F:      include/dt-bindings/mfd/at91-usart.h
12362
12363 MICROCHIP AT91 USART SPI DRIVER
12364 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12365 L:      linux-spi@vger.kernel.org
12366 S:      Supported
12367 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12368 F:      drivers/spi/spi-at91-usart.c
12369
12370 MICROCHIP AUDIO ASOC DRIVERS
12371 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12373 S:      Supported
12374 F:      sound/soc/atmel
12375
12376 MICROCHIP ECC DRIVER
12377 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12378 L:      linux-crypto@vger.kernel.org
12379 S:      Maintained
12380 F:      drivers/crypto/atmel-ecc.*
12381
12382 MICROCHIP EIC DRIVER
12383 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12385 S:      Supported
12386 F:      drivers/irqchip/irq-mchp-eic.c
12387
12388 MICROCHIP I2C DRIVER
12389 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12390 L:      linux-i2c@vger.kernel.org
12391 S:      Supported
12392 F:      drivers/i2c/busses/i2c-at91-*.c
12393 F:      drivers/i2c/busses/i2c-at91.h
12394
12395 MICROCHIP ISC DRIVER
12396 M:      Eugen Hristev <eugen.hristev@microchip.com>
12397 L:      linux-media@vger.kernel.org
12398 S:      Supported
12399 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12400 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12401 F:      drivers/media/platform/atmel/atmel-isc-base.c
12402 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12403 F:      drivers/media/platform/atmel/atmel-isc.h
12404 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12405 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12406 F:      include/linux/atmel-isc-media.h
12407
12408 MICROCHIP ISI DRIVER
12409 M:      Eugen Hristev <eugen.hristev@microchip.com>
12410 L:      linux-media@vger.kernel.org
12411 S:      Supported
12412 F:      drivers/media/platform/atmel/atmel-isi.c
12413 F:      drivers/media/platform/atmel/atmel-isi.h
12414
12415 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12416 M:      Woojung Huh <woojung.huh@microchip.com>
12417 M:      UNGLinuxDriver@microchip.com
12418 L:      netdev@vger.kernel.org
12419 S:      Maintained
12420 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12421 F:      drivers/net/dsa/microchip/*
12422 F:      include/linux/platform_data/microchip-ksz.h
12423 F:      net/dsa/tag_ksz.c
12424
12425 MICROCHIP LAN743X ETHERNET DRIVER
12426 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12427 M:      UNGLinuxDriver@microchip.com
12428 L:      netdev@vger.kernel.org
12429 S:      Maintained
12430 F:      drivers/net/ethernet/microchip/lan743x_*
12431
12432 MICROCHIP LCDFB DRIVER
12433 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12434 L:      linux-fbdev@vger.kernel.org
12435 S:      Maintained
12436 F:      drivers/video/fbdev/atmel_lcdfb.c
12437 F:      include/video/atmel_lcdc.h
12438
12439 MICROCHIP MCP16502 PMIC DRIVER
12440 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12442 S:      Supported
12443 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12444 F:      drivers/regulator/mcp16502.c
12445
12446 MICROCHIP MCP3911 ADC DRIVER
12447 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12448 M:      Kent Gustavsson <kent@minoris.se>
12449 L:      linux-iio@vger.kernel.org
12450 S:      Supported
12451 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12452 F:      drivers/iio/adc/mcp3911.c
12453
12454 MICROCHIP MMC/SD/SDIO MCI DRIVER
12455 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12456 S:      Maintained
12457 F:      drivers/mmc/host/atmel-mci.c
12458
12459 MICROCHIP NAND DRIVER
12460 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12461 L:      linux-mtd@lists.infradead.org
12462 S:      Supported
12463 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12464 F:      drivers/mtd/nand/raw/atmel/*
12465
12466 MICROCHIP PWM DRIVER
12467 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12469 L:      linux-pwm@vger.kernel.org
12470 S:      Supported
12471 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12472 F:      drivers/pwm/pwm-atmel.c
12473
12474 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12475 M:      Eugen Hristev <eugen.hristev@microchip.com>
12476 L:      linux-iio@vger.kernel.org
12477 S:      Supported
12478 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12479 F:      drivers/iio/adc/at91-sama5d2_adc.c
12480 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12481
12482 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12483 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12484 S:      Supported
12485 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12486
12487 MICROCHIP SPI DRIVER
12488 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12489 S:      Supported
12490 F:      drivers/spi/spi-atmel.*
12491
12492 MICROCHIP SSC DRIVER
12493 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12495 S:      Supported
12496 F:      drivers/misc/atmel-ssc.c
12497 F:      include/linux/atmel-ssc.h
12498
12499 MICROCHIP USB251XB DRIVER
12500 M:      Richard Leitner <richard.leitner@skidata.com>
12501 L:      linux-usb@vger.kernel.org
12502 S:      Maintained
12503 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12504 F:      drivers/usb/misc/usb251xb.c
12505
12506 MICROCHIP USBA UDC DRIVER
12507 M:      Cristian Birsan <cristian.birsan@microchip.com>
12508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12509 S:      Supported
12510 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12511
12512 MICROCHIP WILC1000 WIFI DRIVER
12513 M:      Ajay Singh <ajay.kathat@microchip.com>
12514 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12515 L:      linux-wireless@vger.kernel.org
12516 S:      Supported
12517 F:      drivers/net/wireless/microchip/wilc1000/
12518
12519 MICROSEMI MIPS SOCS
12520 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12521 M:      UNGLinuxDriver@microchip.com
12522 L:      linux-mips@vger.kernel.org
12523 S:      Supported
12524 F:      Documentation/devicetree/bindings/mips/mscc.txt
12525 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12526 F:      arch/mips/boot/dts/mscc/
12527 F:      arch/mips/configs/generic/board-ocelot.config
12528 F:      arch/mips/generic/board-ocelot.c
12529
12530 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12531 M:      Don Brace <don.brace@microchip.com>
12532 L:      storagedev@microchip.com
12533 L:      linux-scsi@vger.kernel.org
12534 S:      Supported
12535 F:      Documentation/scsi/smartpqi.rst
12536 F:      drivers/scsi/smartpqi/Kconfig
12537 F:      drivers/scsi/smartpqi/Makefile
12538 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12539 F:      include/linux/cciss*.h
12540 F:      include/uapi/linux/cciss*.h
12541
12542 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12543 M:      Maximilian Luz <luzmaximilian@gmail.com>
12544 L:      linux-pm@vger.kernel.org
12545 L:      platform-driver-x86@vger.kernel.org
12546 S:      Maintained
12547 F:      drivers/power/supply/surface_battery.c
12548 F:      drivers/power/supply/surface_charger.c
12549
12550 MICROSOFT SURFACE DTX DRIVER
12551 M:      Maximilian Luz <luzmaximilian@gmail.com>
12552 L:      platform-driver-x86@vger.kernel.org
12553 S:      Maintained
12554 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12555 F:      drivers/platform/surface/surface_dtx.c
12556 F:      include/uapi/linux/surface_aggregator/dtx.h
12557
12558 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12559 M:      Maximilian Luz <luzmaximilian@gmail.com>
12560 L:      platform-driver-x86@vger.kernel.org
12561 S:      Maintained
12562 F:      drivers/platform/surface/surface_gpe.c
12563
12564 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12565 M:      Hans de Goede <hdegoede@redhat.com>
12566 M:      Mark Gross <markgross@kernel.org>
12567 M:      Maximilian Luz <luzmaximilian@gmail.com>
12568 L:      platform-driver-x86@vger.kernel.org
12569 S:      Maintained
12570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12571 F:      drivers/platform/surface/
12572
12573 MICROSOFT SURFACE HID TRANSPORT DRIVER
12574 M:      Maximilian Luz <luzmaximilian@gmail.com>
12575 L:      linux-input@vger.kernel.org
12576 L:      platform-driver-x86@vger.kernel.org
12577 S:      Maintained
12578 F:      drivers/hid/surface-hid/
12579
12580 MICROSOFT SURFACE HOT-PLUG DRIVER
12581 M:      Maximilian Luz <luzmaximilian@gmail.com>
12582 L:      platform-driver-x86@vger.kernel.org
12583 S:      Maintained
12584 F:      drivers/platform/surface/surface_hotplug.c
12585
12586 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12587 M:      Maximilian Luz <luzmaximilian@gmail.com>
12588 L:      platform-driver-x86@vger.kernel.org
12589 S:      Maintained
12590 F:      drivers/platform/surface/surface_platform_profile.c
12591
12592 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12593 M:      Chen Yu <yu.c.chen@intel.com>
12594 L:      platform-driver-x86@vger.kernel.org
12595 S:      Supported
12596 F:      drivers/platform/surface/surfacepro3_button.c
12597
12598 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12599 M:      Maximilian Luz <luzmaximilian@gmail.com>
12600 L:      platform-driver-x86@vger.kernel.org
12601 S:      Maintained
12602 W:      https://github.com/linux-surface/surface-aggregator-module
12603 C:      irc://irc.libera.chat/linux-surface
12604 F:      Documentation/driver-api/surface_aggregator/
12605 F:      drivers/platform/surface/aggregator/
12606 F:      drivers/platform/surface/surface_acpi_notify.c
12607 F:      drivers/platform/surface/surface_aggregator_cdev.c
12608 F:      drivers/platform/surface/surface_aggregator_registry.c
12609 F:      include/linux/surface_acpi_notify.h
12610 F:      include/linux/surface_aggregator/
12611 F:      include/uapi/linux/surface_aggregator/
12612
12613 MICROTEK X6 SCANNER
12614 M:      Oliver Neukum <oliver@neukum.org>
12615 S:      Maintained
12616 F:      drivers/usb/image/microtek.*
12617
12618 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12619 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12620 M:      Luka Perkov <luka.perkov@sartura.hr>
12621 S:      Maintained
12622 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12623 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12624 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12625 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12626 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12627 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12628
12629 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12630 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12631 L:      linux-media@vger.kernel.org
12632 S:      Maintained
12633 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12634 F:      Documentation/driver-api/media/drivers/ccs/
12635 F:      Documentation/userspace-api/media/drivers/ccs.rst
12636 F:      drivers/media/i2c/ccs-pll.c
12637 F:      drivers/media/i2c/ccs-pll.h
12638 F:      drivers/media/i2c/ccs/
12639 F:      include/uapi/linux/ccs.h
12640 F:      include/uapi/linux/smiapp.h
12641
12642 MIPS
12643 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12644 L:      linux-mips@vger.kernel.org
12645 S:      Maintained
12646 W:      http://www.linux-mips.org/
12647 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12649 F:      Documentation/devicetree/bindings/mips/
12650 F:      Documentation/mips/
12651 F:      arch/mips/
12652 F:      drivers/platform/mips/
12653
12654 MIPS BOSTON DEVELOPMENT BOARD
12655 M:      Paul Burton <paulburton@kernel.org>
12656 L:      linux-mips@vger.kernel.org
12657 S:      Maintained
12658 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12659 F:      arch/mips/boot/dts/img/boston.dts
12660 F:      arch/mips/configs/generic/board-boston.config
12661 F:      drivers/clk/imgtec/clk-boston.c
12662 F:      include/dt-bindings/clock/boston-clock.h
12663
12664 MIPS CORE DRIVERS
12665 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12666 M:      Serge Semin <fancer.lancer@gmail.com>
12667 L:      linux-mips@vger.kernel.org
12668 S:      Supported
12669 F:      drivers/bus/mips_cdmm.c
12670 F:      drivers/clocksource/mips-gic-timer.c
12671 F:      drivers/cpuidle/cpuidle-cps.c
12672 F:      drivers/irqchip/irq-mips-cpu.c
12673 F:      drivers/irqchip/irq-mips-gic.c
12674
12675 MIPS GENERIC PLATFORM
12676 M:      Paul Burton <paulburton@kernel.org>
12677 L:      linux-mips@vger.kernel.org
12678 S:      Supported
12679 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12680 F:      arch/mips/generic/
12681 F:      arch/mips/tools/generic-board-config.sh
12682
12683 MIPS RINT INSTRUCTION EMULATION
12684 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12685 L:      linux-mips@vger.kernel.org
12686 S:      Supported
12687 F:      arch/mips/math-emu/dp_rint.c
12688 F:      arch/mips/math-emu/sp_rint.c
12689
12690 MIPS/LOONGSON1 ARCHITECTURE
12691 M:      Keguang Zhang <keguang.zhang@gmail.com>
12692 L:      linux-mips@vger.kernel.org
12693 S:      Maintained
12694 F:      arch/mips/include/asm/mach-loongson32/
12695 F:      arch/mips/loongson32/
12696 F:      drivers/*/*/*loongson1*
12697 F:      drivers/*/*loongson1*
12698
12699 MIPS/LOONGSON2EF ARCHITECTURE
12700 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12701 L:      linux-mips@vger.kernel.org
12702 S:      Maintained
12703 F:      arch/mips/include/asm/mach-loongson2ef/
12704 F:      arch/mips/loongson2ef/
12705 F:      drivers/cpufreq/loongson2_cpufreq.c
12706
12707 MIPS/LOONGSON64 ARCHITECTURE
12708 M:      Huacai Chen <chenhuacai@kernel.org>
12709 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12710 L:      linux-mips@vger.kernel.org
12711 S:      Maintained
12712 F:      arch/mips/include/asm/mach-loongson64/
12713 F:      arch/mips/loongson64/
12714 F:      drivers/irqchip/irq-loongson*
12715 F:      drivers/platform/mips/cpu_hwmon.c
12716
12717 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12718 M:      Hans Verkuil <hverkuil@xs4all.nl>
12719 L:      linux-media@vger.kernel.org
12720 S:      Odd Fixes
12721 W:      https://linuxtv.org
12722 T:      git git://linuxtv.org/media_tree.git
12723 F:      drivers/media/radio/radio-miropcm20*
12724
12725 MMP SUPPORT
12726 R:      Lubomir Rintel <lkundrak@v3.sk>
12727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12728 S:      Odd Fixes
12729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12730 F:      arch/arm/boot/dts/mmp*
12731 F:      arch/arm/mach-mmp/
12732 F:      include/linux/soc/mmp/
12733
12734 MMP USB PHY DRIVERS
12735 R:      Lubomir Rintel <lkundrak@v3.sk>
12736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12737 S:      Maintained
12738 F:      drivers/phy/marvell/phy-mmp3-usb.c
12739 F:      drivers/phy/marvell/phy-pxa-usb.c
12740
12741 MMU GATHER AND TLB INVALIDATION
12742 M:      Will Deacon <will@kernel.org>
12743 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12744 M:      Andrew Morton <akpm@linux-foundation.org>
12745 M:      Nick Piggin <npiggin@gmail.com>
12746 M:      Peter Zijlstra <peterz@infradead.org>
12747 L:      linux-arch@vger.kernel.org
12748 L:      linux-mm@kvack.org
12749 S:      Maintained
12750 F:      arch/*/include/asm/tlb.h
12751 F:      include/asm-generic/tlb.h
12752 F:      mm/mmu_gather.c
12753
12754 MN88472 MEDIA DRIVER
12755 M:      Antti Palosaari <crope@iki.fi>
12756 L:      linux-media@vger.kernel.org
12757 S:      Maintained
12758 W:      https://linuxtv.org
12759 W:      http://palosaari.fi/linux/
12760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12761 F:      drivers/media/dvb-frontends/mn88472*
12762
12763 MN88473 MEDIA DRIVER
12764 M:      Antti Palosaari <crope@iki.fi>
12765 L:      linux-media@vger.kernel.org
12766 S:      Maintained
12767 W:      https://linuxtv.org
12768 W:      http://palosaari.fi/linux/
12769 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12770 F:      drivers/media/dvb-frontends/mn88473*
12771
12772 MODULE SUPPORT
12773 M:      Luis Chamberlain <mcgrof@kernel.org>
12774 M:      Jessica Yu <jeyu@kernel.org>
12775 S:      Maintained
12776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12777 F:      include/linux/module.h
12778 F:      kernel/module.c
12779
12780 MONOLITHIC POWER SYSTEM PMIC DRIVER
12781 M:      Saravanan Sekar <sravanhome@gmail.com>
12782 S:      Maintained
12783 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12784 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12785 F:      drivers/iio/adc/mp2629_adc.c
12786 F:      drivers/mfd/mp2629.c
12787 F:      drivers/power/supply/mp2629_charger.c
12788 F:      drivers/regulator/mp5416.c
12789 F:      drivers/regulator/mpq7920.c
12790 F:      drivers/regulator/mpq7920.h
12791 F:      include/linux/mfd/mp2629.h
12792
12793 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12794 S:      Orphan
12795 W:      http://popies.net/meye/
12796 F:      Documentation/userspace-api/media/drivers/meye*
12797 F:      drivers/media/pci/meye/
12798 F:      include/uapi/linux/meye.h
12799
12800 MOTORCOMM PHY DRIVER
12801 M:      Peter Geis <pgwipeout@gmail.com>
12802 L:      netdev@vger.kernel.org
12803 S:      Maintained
12804 F:      drivers/net/phy/motorcomm.c
12805
12806 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12807 M:      Jiri Slaby <jirislaby@kernel.org>
12808 S:      Maintained
12809 F:      Documentation/driver-api/serial/moxa-smartio.rst
12810 F:      drivers/tty/mxser.*
12811
12812 MR800 AVERMEDIA USB FM RADIO DRIVER
12813 M:      Alexey Klimov <klimov.linux@gmail.com>
12814 L:      linux-media@vger.kernel.org
12815 S:      Maintained
12816 T:      git git://linuxtv.org/media_tree.git
12817 F:      drivers/media/radio/radio-mr800.c
12818
12819 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12820 M:      Alan Ott <alan@signal11.us>
12821 L:      linux-wpan@vger.kernel.org
12822 S:      Maintained
12823 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12824 F:      drivers/net/ieee802154/mrf24j40.c
12825
12826 MSI LAPTOP SUPPORT
12827 M:      "Lee, Chun-Yi" <jlee@suse.com>
12828 L:      platform-driver-x86@vger.kernel.org
12829 S:      Maintained
12830 F:      drivers/platform/x86/msi-laptop.c
12831
12832 MSI WMI SUPPORT
12833 L:      platform-driver-x86@vger.kernel.org
12834 S:      Orphan
12835 F:      drivers/platform/x86/msi-wmi.c
12836
12837 MSI001 MEDIA DRIVER
12838 M:      Antti Palosaari <crope@iki.fi>
12839 L:      linux-media@vger.kernel.org
12840 S:      Maintained
12841 W:      https://linuxtv.org
12842 W:      http://palosaari.fi/linux/
12843 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12844 T:      git git://linuxtv.org/anttip/media_tree.git
12845 F:      drivers/media/tuners/msi001*
12846
12847 MSI2500 MEDIA DRIVER
12848 M:      Antti Palosaari <crope@iki.fi>
12849 L:      linux-media@vger.kernel.org
12850 S:      Maintained
12851 W:      https://linuxtv.org
12852 W:      http://palosaari.fi/linux/
12853 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12854 T:      git git://linuxtv.org/anttip/media_tree.git
12855 F:      drivers/media/usb/msi2500/
12856
12857 MSTAR INTERRUPT CONTROLLER DRIVER
12858 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12859 M:      Daniel Palmer <daniel@thingy.jp>
12860 S:      Maintained
12861 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12862 F:      drivers/irqchip/irq-mst-intc.c
12863
12864 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12865 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12866 L:      linux-mtd@lists.infradead.org
12867 S:      Maintained
12868 F:      drivers/mtd/devices/docg3*
12869
12870 MT9M032 APTINA SENSOR DRIVER
12871 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12872 L:      linux-media@vger.kernel.org
12873 S:      Maintained
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      drivers/media/i2c/mt9m032.c
12876 F:      include/media/i2c/mt9m032.h
12877
12878 MT9P031 APTINA CAMERA SENSOR
12879 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12880 L:      linux-media@vger.kernel.org
12881 S:      Maintained
12882 T:      git git://linuxtv.org/media_tree.git
12883 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12884 F:      drivers/media/i2c/mt9p031.c
12885 F:      include/media/i2c/mt9p031.h
12886
12887 MT9T001 APTINA CAMERA SENSOR
12888 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12889 L:      linux-media@vger.kernel.org
12890 S:      Maintained
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      drivers/media/i2c/mt9t001.c
12893 F:      include/media/i2c/mt9t001.h
12894
12895 MT9T112 APTINA CAMERA SENSOR
12896 M:      Jacopo Mondi <jacopo@jmondi.org>
12897 L:      linux-media@vger.kernel.org
12898 S:      Odd Fixes
12899 T:      git git://linuxtv.org/media_tree.git
12900 F:      drivers/media/i2c/mt9t112.c
12901 F:      include/media/i2c/mt9t112.h
12902
12903 MT9V032 APTINA CAMERA SENSOR
12904 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12905 L:      linux-media@vger.kernel.org
12906 S:      Maintained
12907 T:      git git://linuxtv.org/media_tree.git
12908 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12909 F:      drivers/media/i2c/mt9v032.c
12910 F:      include/media/i2c/mt9v032.h
12911
12912 MT9V111 APTINA CAMERA SENSOR
12913 M:      Jacopo Mondi <jacopo@jmondi.org>
12914 L:      linux-media@vger.kernel.org
12915 S:      Maintained
12916 T:      git git://linuxtv.org/media_tree.git
12917 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12918 F:      drivers/media/i2c/mt9v111.c
12919
12920 MULTIFUNCTION DEVICES (MFD)
12921 M:      Lee Jones <lee.jones@linaro.org>
12922 S:      Supported
12923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12924 F:      Documentation/devicetree/bindings/mfd/
12925 F:      drivers/mfd/
12926 F:      include/dt-bindings/mfd/
12927 F:      include/linux/mfd/
12928
12929 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12930 S:      Orphan
12931 F:      drivers/mmc/host/mmc_spi.c
12932 F:      include/linux/spi/mmc_spi.h
12933
12934 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12935 M:      Ulf Hansson <ulf.hansson@linaro.org>
12936 L:      linux-mmc@vger.kernel.org
12937 S:      Maintained
12938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12939 F:      Documentation/devicetree/bindings/mmc/
12940 F:      drivers/mmc/
12941 F:      include/linux/mmc/
12942 F:      include/uapi/linux/mmc/
12943
12944 MULTIPLEXER SUBSYSTEM
12945 M:      Peter Rosin <peda@axentia.se>
12946 S:      Maintained
12947 F:      Documentation/ABI/testing/sysfs-class-mux*
12948 F:      Documentation/devicetree/bindings/mux/
12949 F:      drivers/mux/
12950 F:      include/dt-bindings/mux/
12951 F:      include/linux/mux/
12952
12953 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12954 M:      Bin Liu <b-liu@ti.com>
12955 L:      linux-usb@vger.kernel.org
12956 S:      Maintained
12957 F:      drivers/usb/musb/
12958
12959 MXL301RF MEDIA DRIVER
12960 M:      Akihiro Tsukada <tskd08@gmail.com>
12961 L:      linux-media@vger.kernel.org
12962 S:      Odd Fixes
12963 F:      drivers/media/tuners/mxl301rf*
12964
12965 MXL5007T MEDIA DRIVER
12966 M:      Michael Krufky <mkrufky@linuxtv.org>
12967 L:      linux-media@vger.kernel.org
12968 S:      Maintained
12969 W:      https://linuxtv.org
12970 W:      http://github.com/mkrufky
12971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12972 T:      git git://linuxtv.org/mkrufky/tuners.git
12973 F:      drivers/media/tuners/mxl5007t.*
12974
12975 MXSFB DRM DRIVER
12976 M:      Marek Vasut <marex@denx.de>
12977 M:      Stefan Agner <stefan@agner.ch>
12978 L:      dri-devel@lists.freedesktop.org
12979 S:      Supported
12980 T:      git git://anongit.freedesktop.org/drm/drm-misc
12981 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12982 F:      drivers/gpu/drm/mxsfb/
12983
12984 MYLEX DAC960 PCI RAID Controller
12985 M:      Hannes Reinecke <hare@kernel.org>
12986 L:      linux-scsi@vger.kernel.org
12987 S:      Supported
12988 F:      drivers/scsi/myrb.*
12989 F:      drivers/scsi/myrs.*
12990
12991 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12992 M:      Chris Lee <christopher.lee@cspi.com>
12993 L:      netdev@vger.kernel.org
12994 S:      Supported
12995 W:      https://www.cspi.com/ethernet-products/support/downloads/
12996 F:      drivers/net/ethernet/myricom/myri10ge/
12997
12998 NAND FLASH SUBSYSTEM
12999 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13000 R:      Richard Weinberger <richard@nod.at>
13001 L:      linux-mtd@lists.infradead.org
13002 S:      Maintained
13003 W:      http://www.linux-mtd.infradead.org/
13004 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13005 C:      irc://irc.oftc.net/mtd
13006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13007 F:      drivers/mtd/nand/
13008 F:      include/linux/mtd/*nand*.h
13009
13010 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13011 M:      Daniel Mack <zonque@gmail.com>
13012 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13013 S:      Maintained
13014 W:      http://www.native-instruments.com
13015 F:      sound/usb/caiaq/
13016
13017 NATSEMI ETHERNET DRIVER (DP8381x)
13018 S:      Orphan
13019 F:      drivers/net/ethernet/natsemi/natsemi.c
13020
13021 NCR 5380 SCSI DRIVERS
13022 M:      Finn Thain <fthain@linux-m68k.org>
13023 M:      Michael Schmitz <schmitzmic@gmail.com>
13024 L:      linux-scsi@vger.kernel.org
13025 S:      Maintained
13026 F:      Documentation/scsi/g_NCR5380.rst
13027 F:      drivers/scsi/NCR5380.*
13028 F:      drivers/scsi/arm/cumana_1.c
13029 F:      drivers/scsi/arm/oak.c
13030 F:      drivers/scsi/atari_scsi.*
13031 F:      drivers/scsi/dmx3191d.c
13032 F:      drivers/scsi/g_NCR5380.*
13033 F:      drivers/scsi/mac_scsi.*
13034 F:      drivers/scsi/sun3_scsi.*
13035 F:      drivers/scsi/sun3_scsi_vme.c
13036
13037 NCSI LIBRARY
13038 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13039 S:      Maintained
13040 F:      net/ncsi/
13041
13042 NCT6775 HARDWARE MONITOR DRIVER
13043 M:      Guenter Roeck <linux@roeck-us.net>
13044 L:      linux-hwmon@vger.kernel.org
13045 S:      Maintained
13046 F:      Documentation/hwmon/nct6775.rst
13047 F:      drivers/hwmon/nct6775.c
13048
13049 NETDEVSIM
13050 M:      Jakub Kicinski <kuba@kernel.org>
13051 S:      Maintained
13052 F:      drivers/net/netdevsim/*
13053
13054 NETEM NETWORK EMULATOR
13055 M:      Stephen Hemminger <stephen@networkplumber.org>
13056 L:      netdev@vger.kernel.org
13057 S:      Maintained
13058 F:      net/sched/sch_netem.c
13059
13060 NETERION 10GbE DRIVERS (s2io/vxge)
13061 M:      Jon Mason <jdmason@kudzu.us>
13062 L:      netdev@vger.kernel.org
13063 S:      Supported
13064 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13065 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13066 F:      drivers/net/ethernet/neterion/
13067
13068 NETFILTER
13069 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13070 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13071 M:      Florian Westphal <fw@strlen.de>
13072 L:      netfilter-devel@vger.kernel.org
13073 L:      coreteam@netfilter.org
13074 S:      Maintained
13075 W:      http://www.netfilter.org/
13076 W:      http://www.iptables.org/
13077 W:      http://www.nftables.org/
13078 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13079 C:      irc://irc.libera.chat/netfilter
13080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13082 F:      include/linux/netfilter*
13083 F:      include/linux/netfilter/
13084 F:      include/net/netfilter/
13085 F:      include/uapi/linux/netfilter*
13086 F:      include/uapi/linux/netfilter/
13087 F:      net/*/netfilter.c
13088 F:      net/*/netfilter/
13089 F:      net/bridge/br_netfilter*.c
13090 F:      net/netfilter/
13091
13092 NETROM NETWORK LAYER
13093 M:      Ralf Baechle <ralf@linux-mips.org>
13094 L:      linux-hams@vger.kernel.org
13095 S:      Maintained
13096 W:      http://www.linux-ax25.org/
13097 F:      include/net/netrom.h
13098 F:      include/uapi/linux/netrom.h
13099 F:      net/netrom/
13100
13101 NETRONIX EMBEDDED CONTROLLER
13102 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13103 S:      Maintained
13104 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13105 F:      drivers/mfd/ntxec.c
13106 F:      drivers/pwm/pwm-ntxec.c
13107 F:      drivers/rtc/rtc-ntxec.c
13108 F:      include/linux/mfd/ntxec.h
13109
13110 NETRONOME ETHERNET DRIVERS
13111 M:      Simon Horman <simon.horman@corigine.com>
13112 R:      Jakub Kicinski <kuba@kernel.org>
13113 L:      oss-drivers@corigine.com
13114 S:      Maintained
13115 F:      drivers/net/ethernet/netronome/
13116
13117 NETWORK BLOCK DEVICE (NBD)
13118 M:      Josef Bacik <josef@toxicpanda.com>
13119 L:      linux-block@vger.kernel.org
13120 L:      nbd@other.debian.org
13121 S:      Maintained
13122 F:      Documentation/admin-guide/blockdev/nbd.rst
13123 F:      drivers/block/nbd.c
13124 F:      include/trace/events/nbd.h
13125 F:      include/uapi/linux/nbd.h
13126
13127 NETWORK DROP MONITOR
13128 M:      Neil Horman <nhorman@tuxdriver.com>
13129 L:      netdev@vger.kernel.org
13130 S:      Maintained
13131 W:      https://fedorahosted.org/dropwatch/
13132 F:      include/uapi/linux/net_dropmon.h
13133 F:      net/core/drop_monitor.c
13134
13135 NETWORKING DRIVERS
13136 M:      "David S. Miller" <davem@davemloft.net>
13137 M:      Jakub Kicinski <kuba@kernel.org>
13138 L:      netdev@vger.kernel.org
13139 S:      Maintained
13140 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13143 F:      Documentation/devicetree/bindings/net/
13144 F:      drivers/connector/
13145 F:      drivers/net/
13146 F:      include/linux/etherdevice.h
13147 F:      include/linux/fcdevice.h
13148 F:      include/linux/fddidevice.h
13149 F:      include/linux/hippidevice.h
13150 F:      include/linux/if_*
13151 F:      include/linux/inetdevice.h
13152 F:      include/linux/netdevice.h
13153 F:      include/uapi/linux/if_*
13154 F:      include/uapi/linux/netdevice.h
13155
13156 NETWORKING DRIVERS (WIRELESS)
13157 M:      Kalle Valo <kvalo@codeaurora.org>
13158 L:      linux-wireless@vger.kernel.org
13159 S:      Maintained
13160 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13163 F:      Documentation/devicetree/bindings/net/wireless/
13164 F:      drivers/net/wireless/
13165
13166 NETWORKING [DSA]
13167 M:      Andrew Lunn <andrew@lunn.ch>
13168 M:      Vivien Didelot <vivien.didelot@gmail.com>
13169 M:      Florian Fainelli <f.fainelli@gmail.com>
13170 M:      Vladimir Oltean <olteanv@gmail.com>
13171 S:      Maintained
13172 F:      Documentation/devicetree/bindings/net/dsa/
13173 F:      drivers/net/dsa/
13174 F:      include/linux/dsa/
13175 F:      include/linux/platform_data/dsa.h
13176 F:      include/net/dsa.h
13177 F:      net/dsa/
13178 F:      tools/testing/selftests/drivers/net/dsa/
13179
13180 NETWORKING [GENERAL]
13181 M:      "David S. Miller" <davem@davemloft.net>
13182 M:      Jakub Kicinski <kuba@kernel.org>
13183 L:      netdev@vger.kernel.org
13184 S:      Maintained
13185 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13186 B:      mailto:netdev@vger.kernel.org
13187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13189 F:      Documentation/networking/
13190 F:      include/linux/in.h
13191 F:      include/linux/net.h
13192 F:      include/linux/netdevice.h
13193 F:      include/net/
13194 F:      include/uapi/linux/in.h
13195 F:      include/uapi/linux/net.h
13196 F:      include/uapi/linux/net_namespace.h
13197 F:      include/uapi/linux/netdevice.h
13198 F:      lib/net_utils.c
13199 F:      lib/random32.c
13200 F:      net/
13201 F:      tools/testing/selftests/net/
13202
13203 NETWORKING [IPSEC]
13204 M:      Steffen Klassert <steffen.klassert@secunet.com>
13205 M:      Herbert Xu <herbert@gondor.apana.org.au>
13206 M:      "David S. Miller" <davem@davemloft.net>
13207 L:      netdev@vger.kernel.org
13208 S:      Maintained
13209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13211 F:      include/net/xfrm.h
13212 F:      include/uapi/linux/xfrm.h
13213 F:      net/ipv4/ah4.c
13214 F:      net/ipv4/esp4*
13215 F:      net/ipv4/ip_vti.c
13216 F:      net/ipv4/ipcomp.c
13217 F:      net/ipv4/xfrm*
13218 F:      net/ipv6/ah6.c
13219 F:      net/ipv6/esp6*
13220 F:      net/ipv6/ip6_vti.c
13221 F:      net/ipv6/ipcomp6.c
13222 F:      net/ipv6/xfrm*
13223 F:      net/key/
13224 F:      net/xfrm/
13225 F:      tools/testing/selftests/net/ipsec.c
13226
13227 NETWORKING [IPv4/IPv6]
13228 M:      "David S. Miller" <davem@davemloft.net>
13229 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13230 M:      David Ahern <dsahern@kernel.org>
13231 L:      netdev@vger.kernel.org
13232 S:      Maintained
13233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13234 F:      arch/x86/net/*
13235 F:      include/net/ip*
13236 F:      net/ipv4/
13237 F:      net/ipv6/
13238
13239 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13240 M:      Paul Moore <paul@paul-moore.com>
13241 L:      netdev@vger.kernel.org
13242 L:      linux-security-module@vger.kernel.org
13243 S:      Maintained
13244 W:      https://github.com/netlabel
13245 F:      Documentation/netlabel/
13246 F:      include/net/calipso.h
13247 F:      include/net/cipso_ipv4.h
13248 F:      include/net/netlabel.h
13249 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13250 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13251 F:      net/ipv4/cipso_ipv4.c
13252 F:      net/ipv6/calipso.c
13253 F:      net/netfilter/xt_CONNSECMARK.c
13254 F:      net/netfilter/xt_SECMARK.c
13255 F:      net/netlabel/
13256
13257 NETWORKING [MPTCP]
13258 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13259 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13260 L:      netdev@vger.kernel.org
13261 L:      mptcp@lists.linux.dev
13262 S:      Maintained
13263 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13264 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13265 F:      Documentation/networking/mptcp-sysctl.rst
13266 F:      include/net/mptcp.h
13267 F:      include/trace/events/mptcp.h
13268 F:      include/uapi/linux/mptcp.h
13269 F:      net/mptcp/
13270 F:      tools/testing/selftests/net/mptcp/
13271
13272 NETWORKING [TCP]
13273 M:      Eric Dumazet <edumazet@google.com>
13274 L:      netdev@vger.kernel.org
13275 S:      Maintained
13276 F:      include/linux/tcp.h
13277 F:      include/net/tcp.h
13278 F:      include/trace/events/tcp.h
13279 F:      include/uapi/linux/tcp.h
13280 F:      net/ipv4/syncookies.c
13281 F:      net/ipv4/tcp*.c
13282 F:      net/ipv6/syncookies.c
13283 F:      net/ipv6/tcp*.c
13284
13285 NETWORKING [TLS]
13286 M:      Boris Pismenny <borisp@nvidia.com>
13287 M:      John Fastabend <john.fastabend@gmail.com>
13288 M:      Daniel Borkmann <daniel@iogearbox.net>
13289 M:      Jakub Kicinski <kuba@kernel.org>
13290 L:      netdev@vger.kernel.org
13291 S:      Maintained
13292 F:      include/net/tls.h
13293 F:      include/uapi/linux/tls.h
13294 F:      net/tls/*
13295
13296 NETWORKING [WIRELESS]
13297 L:      linux-wireless@vger.kernel.org
13298 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13299
13300 NETXEN (1/10) GbE SUPPORT
13301 M:      Manish Chopra <manishc@marvell.com>
13302 M:      Rahul Verma <rahulv@marvell.com>
13303 M:      GR-Linux-NIC-Dev@marvell.com
13304 L:      netdev@vger.kernel.org
13305 S:      Supported
13306 F:      drivers/net/ethernet/qlogic/netxen/
13307
13308 NET_FAILOVER MODULE
13309 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13310 L:      netdev@vger.kernel.org
13311 S:      Supported
13312 F:      Documentation/networking/net_failover.rst
13313 F:      drivers/net/net_failover.c
13314 F:      include/net/net_failover.h
13315
13316 NEXTHOP
13317 M:      David Ahern <dsahern@kernel.org>
13318 L:      netdev@vger.kernel.org
13319 S:      Maintained
13320 F:      include/net/netns/nexthop.h
13321 F:      include/net/nexthop.h
13322 F:      include/uapi/linux/nexthop.h
13323 F:      net/ipv4/nexthop.c
13324
13325 NFC SUBSYSTEM
13326 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13327 L:      linux-nfc@lists.01.org (subscribers-only)
13328 L:      netdev@vger.kernel.org
13329 S:      Maintained
13330 F:      Documentation/devicetree/bindings/net/nfc/
13331 F:      drivers/nfc/
13332 F:      include/linux/platform_data/nfcmrvl.h
13333 F:      include/net/nfc/
13334 F:      include/uapi/linux/nfc.h
13335 F:      net/nfc/
13336
13337 NFC VIRTUAL NCI DEVICE DRIVER
13338 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13339 L:      netdev@vger.kernel.org
13340 L:      linux-nfc@lists.01.org (subscribers-only)
13341 S:      Supported
13342 F:      drivers/nfc/virtual_ncidev.c
13343 F:      tools/testing/selftests/nci/
13344
13345 NFS, SUNRPC, AND LOCKD CLIENTS
13346 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13347 M:      Anna Schumaker <anna.schumaker@netapp.com>
13348 L:      linux-nfs@vger.kernel.org
13349 S:      Maintained
13350 W:      http://client.linux-nfs.org
13351 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13352 F:      fs/lockd/
13353 F:      fs/nfs/
13354 F:      fs/nfs_common/
13355 F:      include/linux/lockd/
13356 F:      include/linux/nfs*
13357 F:      include/linux/sunrpc/
13358 F:      include/uapi/linux/nfs*
13359 F:      include/uapi/linux/sunrpc/
13360 F:      net/sunrpc/
13361 F:      Documentation/filesystems/nfs/
13362
13363 NILFS2 FILESYSTEM
13364 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13365 L:      linux-nilfs@vger.kernel.org
13366 S:      Supported
13367 W:      https://nilfs.sourceforge.io/
13368 W:      https://nilfs.osdn.jp/
13369 T:      git git://github.com/konis/nilfs2.git
13370 F:      Documentation/filesystems/nilfs2.rst
13371 F:      fs/nilfs2/
13372 F:      include/trace/events/nilfs2.h
13373 F:      include/uapi/linux/nilfs2_api.h
13374 F:      include/uapi/linux/nilfs2_ondisk.h
13375
13376 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13377 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13378 S:      Maintained
13379 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13380 F:      Documentation/scsi/NinjaSCSI.rst
13381 F:      drivers/scsi/pcmcia/nsp_*
13382
13383 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13384 M:      GOTO Masanori <gotom@debian.or.jp>
13385 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13386 S:      Maintained
13387 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13388 F:      Documentation/scsi/NinjaSCSI.rst
13389 F:      drivers/scsi/nsp32*
13390
13391 NIOS2 ARCHITECTURE
13392 M:      Dinh Nguyen <dinguyen@kernel.org>
13393 S:      Maintained
13394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13395 F:      arch/nios2/
13396
13397 NITRO ENCLAVES (NE)
13398 M:      Andra Paraschiv <andraprs@amazon.com>
13399 M:      Alexandru Vasile <lexnv@amazon.com>
13400 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13401 L:      linux-kernel@vger.kernel.org
13402 S:      Supported
13403 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13404 F:      Documentation/virt/ne_overview.rst
13405 F:      drivers/virt/nitro_enclaves/
13406 F:      include/linux/nitro_enclaves.h
13407 F:      include/uapi/linux/nitro_enclaves.h
13408 F:      samples/nitro_enclaves/
13409
13410 NOHZ, DYNTICKS SUPPORT
13411 M:      Frederic Weisbecker <fweisbec@gmail.com>
13412 M:      Thomas Gleixner <tglx@linutronix.de>
13413 M:      Ingo Molnar <mingo@kernel.org>
13414 L:      linux-kernel@vger.kernel.org
13415 S:      Maintained
13416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13417 F:      include/linux/sched/nohz.h
13418 F:      include/linux/tick.h
13419 F:      kernel/time/tick*.*
13420
13421 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13422 M:      Pavel Machek <pavel@ucw.cz>
13423 M:      Sakari Ailus <sakari.ailus@iki.fi>
13424 L:      linux-media@vger.kernel.org
13425 S:      Maintained
13426 F:      drivers/media/i2c/ad5820.c
13427 F:      drivers/media/i2c/et8ek8
13428
13429 NOKIA N900 POWER SUPPLY DRIVERS
13430 R:      Pali Rohár <pali@kernel.org>
13431 F:      drivers/power/supply/bq2415x_charger.c
13432 F:      drivers/power/supply/bq27xxx_battery.c
13433 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13434 F:      drivers/power/supply/isp1704_charger.c
13435 F:      drivers/power/supply/rx51_battery.c
13436 F:      include/linux/power/bq2415x_charger.h
13437 F:      include/linux/power/bq27xxx_battery.h
13438
13439 NOLIBC HEADER FILE
13440 M:      Willy Tarreau <w@1wt.eu>
13441 S:      Maintained
13442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13443 F:      tools/include/nolibc/
13444
13445 NSDEPS
13446 M:      Matthias Maennich <maennich@google.com>
13447 S:      Maintained
13448 F:      Documentation/core-api/symbol-namespaces.rst
13449 F:      scripts/nsdeps
13450
13451 NTB AMD DRIVER
13452 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13453 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13454 L:      linux-ntb@googlegroups.com
13455 S:      Supported
13456 F:      drivers/ntb/hw/amd/
13457
13458 NTB DRIVER CORE
13459 M:      Jon Mason <jdmason@kudzu.us>
13460 M:      Dave Jiang <dave.jiang@intel.com>
13461 M:      Allen Hubbe <allenbh@gmail.com>
13462 L:      linux-ntb@googlegroups.com
13463 S:      Supported
13464 W:      https://github.com/jonmason/ntb/wiki
13465 T:      git git://github.com/jonmason/ntb.git
13466 F:      drivers/net/ntb_netdev.c
13467 F:      drivers/ntb/
13468 F:      include/linux/ntb.h
13469 F:      include/linux/ntb_transport.h
13470 F:      tools/testing/selftests/ntb/
13471
13472 NTB IDT DRIVER
13473 M:      Serge Semin <fancer.lancer@gmail.com>
13474 L:      linux-ntb@googlegroups.com
13475 S:      Supported
13476 F:      drivers/ntb/hw/idt/
13477
13478 NTB INTEL DRIVER
13479 M:      Dave Jiang <dave.jiang@intel.com>
13480 L:      linux-ntb@googlegroups.com
13481 S:      Supported
13482 W:      https://github.com/davejiang/linux/wiki
13483 T:      git https://github.com/davejiang/linux.git
13484 F:      drivers/ntb/hw/intel/
13485
13486 NTFS FILESYSTEM
13487 M:      Anton Altaparmakov <anton@tuxera.com>
13488 L:      linux-ntfs-dev@lists.sourceforge.net
13489 S:      Supported
13490 W:      http://www.tuxera.com/
13491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13492 F:      Documentation/filesystems/ntfs.rst
13493 F:      fs/ntfs/
13494
13495 NTFS3 FILESYSTEM
13496 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13497 L:      ntfs3@lists.linux.dev
13498 S:      Supported
13499 W:      http://www.paragon-software.com/
13500 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13501 F:      Documentation/filesystems/ntfs3.rst
13502 F:      fs/ntfs3/
13503
13504 NUBUS SUBSYSTEM
13505 M:      Finn Thain <fthain@linux-m68k.org>
13506 L:      linux-m68k@lists.linux-m68k.org
13507 S:      Maintained
13508 F:      arch/*/include/asm/nubus.h
13509 F:      drivers/nubus/
13510 F:      include/linux/nubus.h
13511 F:      include/uapi/linux/nubus.h
13512
13513 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13514 M:      Antonino Daplas <adaplas@gmail.com>
13515 L:      linux-fbdev@vger.kernel.org
13516 S:      Maintained
13517 F:      drivers/video/fbdev/nvidia/
13518 F:      drivers/video/fbdev/riva/
13519
13520 NVIDIA WMI EC BACKLIGHT DRIVER
13521 M:      Daniel Dadap <ddadap@nvidia.com>
13522 L:      platform-driver-x86@vger.kernel.org
13523 S:      Supported
13524 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13525
13526 NVM EXPRESS DRIVER
13527 M:      Keith Busch <kbusch@kernel.org>
13528 M:      Jens Axboe <axboe@fb.com>
13529 M:      Christoph Hellwig <hch@lst.de>
13530 M:      Sagi Grimberg <sagi@grimberg.me>
13531 L:      linux-nvme@lists.infradead.org
13532 S:      Supported
13533 W:      http://git.infradead.org/nvme.git
13534 T:      git://git.infradead.org/nvme.git
13535 F:      drivers/nvme/host/
13536 F:      include/linux/nvme.h
13537 F:      include/uapi/linux/nvme_ioctl.h
13538
13539 NVM EXPRESS FC TRANSPORT DRIVERS
13540 M:      James Smart <james.smart@broadcom.com>
13541 L:      linux-nvme@lists.infradead.org
13542 S:      Supported
13543 F:      drivers/nvme/host/fc.c
13544 F:      drivers/nvme/target/fc.c
13545 F:      drivers/nvme/target/fcloop.c
13546 F:      include/linux/nvme-fc-driver.h
13547 F:      include/linux/nvme-fc.h
13548
13549 NVM EXPRESS TARGET DRIVER
13550 M:      Christoph Hellwig <hch@lst.de>
13551 M:      Sagi Grimberg <sagi@grimberg.me>
13552 M:      Chaitanya Kulkarni <kch@nvidia.com>
13553 L:      linux-nvme@lists.infradead.org
13554 S:      Supported
13555 W:      http://git.infradead.org/nvme.git
13556 T:      git://git.infradead.org/nvme.git
13557 F:      drivers/nvme/target/
13558
13559 NVMEM FRAMEWORK
13560 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13561 S:      Maintained
13562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13563 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13564 F:      Documentation/devicetree/bindings/nvmem/
13565 F:      drivers/nvmem/
13566 F:      include/linux/nvmem-consumer.h
13567 F:      include/linux/nvmem-provider.h
13568
13569 NXP C45 TJA11XX PHY DRIVER
13570 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13571 L:      netdev@vger.kernel.org
13572 S:      Maintained
13573 F:      drivers/net/phy/nxp-c45-tja11xx.c
13574
13575 NXP FSPI DRIVER
13576 M:      Ashish Kumar <ashish.kumar@nxp.com>
13577 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13578 L:      linux-spi@vger.kernel.org
13579 S:      Maintained
13580 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13581 F:      drivers/spi/spi-nxp-fspi.c
13582
13583 NXP FXAS21002C DRIVER
13584 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13585 L:      linux-iio@vger.kernel.org
13586 S:      Maintained
13587 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13588 F:      drivers/iio/gyro/fxas21002c.h
13589 F:      drivers/iio/gyro/fxas21002c_core.c
13590 F:      drivers/iio/gyro/fxas21002c_i2c.c
13591 F:      drivers/iio/gyro/fxas21002c_spi.c
13592
13593 NXP i.MX CLOCK DRIVERS
13594 M:      Abel Vesa <abel.vesa@nxp.com>
13595 L:      linux-clk@vger.kernel.org
13596 L:      linux-imx@nxp.com
13597 S:      Maintained
13598 F:      drivers/clk/imx/
13599
13600 NXP i.MX 8MQ DCSS DRIVER
13601 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13602 R:      Lucas Stach <l.stach@pengutronix.de>
13603 L:      dri-devel@lists.freedesktop.org
13604 S:      Maintained
13605 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13606 F:      drivers/gpu/drm/imx/dcss/
13607
13608 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13609 M:      Jagan Teki <jagan@amarulasolutions.com>
13610 S:      Maintained
13611 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13612 F:      drivers/regulator/pf8x00-regulator.c
13613
13614 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13615 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13616 L:      linux-kernel@vger.kernel.org
13617 S:      Maintained
13618 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13619 F:      drivers/extcon/extcon-ptn5150.c
13620
13621 NXP SGTL5000 DRIVER
13622 M:      Fabio Estevam <festevam@gmail.com>
13623 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13624 S:      Maintained
13625 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13626 F:      sound/soc/codecs/sgtl5000*
13627
13628 NXP SJA1105 ETHERNET SWITCH DRIVER
13629 M:      Vladimir Oltean <olteanv@gmail.com>
13630 L:      linux-kernel@vger.kernel.org
13631 S:      Maintained
13632 F:      drivers/net/dsa/sja1105
13633 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13634
13635 NXP TDA998X DRM DRIVER
13636 M:      Russell King <linux@armlinux.org.uk>
13637 S:      Maintained
13638 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13639 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13640 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13641 F:      include/drm/i2c/tda998x.h
13642 F:      include/dt-bindings/display/tda998x.h
13643 K:      "nxp,tda998x"
13644
13645 NXP TFA9879 DRIVER
13646 M:      Peter Rosin <peda@axentia.se>
13647 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13648 S:      Maintained
13649 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13650 F:      sound/soc/codecs/tfa9879*
13651
13652 NXP/Goodix TFA989X (TFA1) DRIVER
13653 M:      Stephan Gerhold <stephan@gerhold.net>
13654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13655 S:      Maintained
13656 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13657 F:      sound/soc/codecs/tfa989x.c
13658
13659 NXP-NCI NFC DRIVER
13660 R:      Charles Gorand <charles.gorand@effinnov.com>
13661 L:      linux-nfc@lists.01.org (subscribers-only)
13662 S:      Supported
13663 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13664 F:      drivers/nfc/nxp-nci
13665
13666 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13667 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13668 R:      NXP Linux Team <linux-imx@nxp.com>
13669 L:      linux-media@vger.kernel.org
13670 S:      Maintained
13671 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13672 F:      drivers/media/platform/imx-jpeg
13673
13674 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13675 M:      Jonas Malaco <jonas@protocubo.io>
13676 L:      linux-hwmon@vger.kernel.org
13677 S:      Maintained
13678 F:      Documentation/hwmon/nzxt-kraken2.rst
13679 F:      drivers/hwmon/nzxt-kraken2.c
13680
13681 OBJAGG
13682 M:      Jiri Pirko <jiri@nvidia.com>
13683 L:      netdev@vger.kernel.org
13684 S:      Supported
13685 F:      include/linux/objagg.h
13686 F:      lib/objagg.c
13687 F:      lib/test_objagg.c
13688
13689 OBJTOOL
13690 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13691 M:      Peter Zijlstra <peterz@infradead.org>
13692 S:      Supported
13693 F:      tools/objtool/
13694 F:      include/linux/objtool.h
13695
13696 OCELOT ETHERNET SWITCH DRIVER
13697 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13698 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13699 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13700 M:      UNGLinuxDriver@microchip.com
13701 L:      netdev@vger.kernel.org
13702 S:      Supported
13703 F:      drivers/net/dsa/ocelot/*
13704 F:      drivers/net/ethernet/mscc/
13705 F:      include/soc/mscc/ocelot*
13706 F:      net/dsa/tag_ocelot.c
13707 F:      net/dsa/tag_ocelot_8021q.c
13708 F:      tools/testing/selftests/drivers/net/ocelot/*
13709
13710 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13711 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13712 M:      Andrew Donnellan <ajd@linux.ibm.com>
13713 L:      linuxppc-dev@lists.ozlabs.org
13714 S:      Supported
13715 F:      Documentation/userspace-api/accelerators/ocxl.rst
13716 F:      arch/powerpc/include/asm/pnv-ocxl.h
13717 F:      arch/powerpc/platforms/powernv/ocxl.c
13718 F:      drivers/misc/ocxl/
13719 F:      include/misc/ocxl*
13720 F:      include/uapi/misc/ocxl.h
13721
13722 OMAP AUDIO SUPPORT
13723 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13724 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13725 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13726 L:      linux-omap@vger.kernel.org
13727 S:      Maintained
13728 F:      sound/soc/ti/n810.c
13729 F:      sound/soc/ti/omap*
13730 F:      sound/soc/ti/rx51.c
13731 F:      sound/soc/ti/sdma-pcm.*
13732
13733 OMAP CLOCK FRAMEWORK SUPPORT
13734 M:      Paul Walmsley <paul@pwsan.com>
13735 L:      linux-omap@vger.kernel.org
13736 S:      Maintained
13737 F:      arch/arm/*omap*/*clock*
13738
13739 OMAP DEVICE TREE SUPPORT
13740 M:      Benoît Cousson <bcousson@baylibre.com>
13741 M:      Tony Lindgren <tony@atomide.com>
13742 L:      linux-omap@vger.kernel.org
13743 L:      devicetree@vger.kernel.org
13744 S:      Maintained
13745 F:      arch/arm/boot/dts/*am3*
13746 F:      arch/arm/boot/dts/*am4*
13747 F:      arch/arm/boot/dts/*am5*
13748 F:      arch/arm/boot/dts/*dra7*
13749 F:      arch/arm/boot/dts/*omap*
13750 F:      arch/arm/boot/dts/logicpd-som-lv*
13751 F:      arch/arm/boot/dts/logicpd-torpedo*
13752
13753 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13754 L:      linux-omap@vger.kernel.org
13755 L:      linux-fbdev@vger.kernel.org
13756 S:      Orphan
13757 F:      Documentation/arm/omap/dss.rst
13758 F:      drivers/video/fbdev/omap2/
13759
13760 OMAP FRAMEBUFFER SUPPORT
13761 L:      linux-fbdev@vger.kernel.org
13762 L:      linux-omap@vger.kernel.org
13763 S:      Orphan
13764 F:      drivers/video/fbdev/omap/
13765
13766 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13767 M:      Roger Quadros <rogerq@kernel.org>
13768 M:      Tony Lindgren <tony@atomide.com>
13769 L:      linux-omap@vger.kernel.org
13770 S:      Maintained
13771 F:      arch/arm/mach-omap2/*gpmc*
13772 F:      drivers/memory/omap-gpmc.c
13773
13774 OMAP GPIO DRIVER
13775 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13776 M:      Santosh Shilimkar <ssantosh@kernel.org>
13777 M:      Kevin Hilman <khilman@kernel.org>
13778 L:      linux-omap@vger.kernel.org
13779 S:      Maintained
13780 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13781 F:      drivers/gpio/gpio-omap.c
13782
13783 OMAP HARDWARE SPINLOCK SUPPORT
13784 M:      Ohad Ben-Cohen <ohad@wizery.com>
13785 L:      linux-omap@vger.kernel.org
13786 S:      Maintained
13787 F:      drivers/hwspinlock/omap_hwspinlock.c
13788
13789 OMAP HS MMC SUPPORT
13790 L:      linux-mmc@vger.kernel.org
13791 L:      linux-omap@vger.kernel.org
13792 S:      Orphan
13793 F:      drivers/mmc/host/omap_hsmmc.c
13794
13795 OMAP HWMOD DATA
13796 M:      Paul Walmsley <paul@pwsan.com>
13797 L:      linux-omap@vger.kernel.org
13798 S:      Maintained
13799 F:      arch/arm/mach-omap2/omap_hwmod*data*
13800
13801 OMAP HWMOD SUPPORT
13802 M:      Benoît Cousson <bcousson@baylibre.com>
13803 M:      Paul Walmsley <paul@pwsan.com>
13804 L:      linux-omap@vger.kernel.org
13805 S:      Maintained
13806 F:      arch/arm/mach-omap2/omap_hwmod.*
13807
13808 OMAP I2C DRIVER
13809 M:      Vignesh R <vigneshr@ti.com>
13810 L:      linux-omap@vger.kernel.org
13811 L:      linux-i2c@vger.kernel.org
13812 S:      Maintained
13813 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13814 F:      drivers/i2c/busses/i2c-omap.c
13815
13816 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13817 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13818 L:      linux-media@vger.kernel.org
13819 S:      Maintained
13820 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13821 F:      drivers/media/platform/omap3isp/
13822 F:      drivers/staging/media/omap4iss/
13823
13824 OMAP MMC SUPPORT
13825 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13826 L:      linux-omap@vger.kernel.org
13827 S:      Odd Fixes
13828 F:      drivers/mmc/host/omap.c
13829
13830 OMAP POWER MANAGEMENT SUPPORT
13831 M:      Kevin Hilman <khilman@kernel.org>
13832 L:      linux-omap@vger.kernel.org
13833 S:      Maintained
13834 F:      arch/arm/*omap*/*pm*
13835 F:      drivers/cpufreq/omap-cpufreq.c
13836
13837 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13838 M:      Rajendra Nayak <rnayak@codeaurora.org>
13839 M:      Paul Walmsley <paul@pwsan.com>
13840 L:      linux-omap@vger.kernel.org
13841 S:      Maintained
13842 F:      arch/arm/mach-omap2/prm*
13843
13844 OMAP RANDOM NUMBER GENERATOR SUPPORT
13845 M:      Deepak Saxena <dsaxena@plexity.net>
13846 S:      Maintained
13847 F:      drivers/char/hw_random/omap-rng.c
13848
13849 OMAP USB SUPPORT
13850 L:      linux-usb@vger.kernel.org
13851 L:      linux-omap@vger.kernel.org
13852 S:      Orphan
13853 F:      arch/arm/*omap*/usb*
13854 F:      drivers/usb/*/*omap*
13855
13856 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13857 M:      Mark Jackson <mpfj@newflow.co.uk>
13858 L:      linux-omap@vger.kernel.org
13859 S:      Maintained
13860 F:      arch/arm/boot/dts/am335x-nano.dts
13861
13862 OMAP1 SUPPORT
13863 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13864 M:      Tony Lindgren <tony@atomide.com>
13865 L:      linux-omap@vger.kernel.org
13866 S:      Maintained
13867 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13869 F:      arch/arm/configs/omap1_defconfig
13870 F:      arch/arm/mach-omap1/
13871 F:      arch/arm/plat-omap/
13872 F:      drivers/i2c/busses/i2c-omap.c
13873 F:      include/linux/platform_data/ams-delta-fiq.h
13874 F:      include/linux/platform_data/i2c-omap.h
13875
13876 OMAP2+ SUPPORT
13877 M:      Tony Lindgren <tony@atomide.com>
13878 L:      linux-omap@vger.kernel.org
13879 S:      Maintained
13880 W:      http://www.muru.com/linux/omap/
13881 W:      http://linux.omap.com/
13882 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13884 F:      arch/arm/configs/omap2plus_defconfig
13885 F:      arch/arm/mach-omap2/
13886 F:      arch/arm/plat-omap/
13887 F:      drivers/bus/ti-sysc.c
13888 F:      drivers/i2c/busses/i2c-omap.c
13889 F:      drivers/irqchip/irq-omap-intc.c
13890 F:      drivers/mfd/*omap*.c
13891 F:      drivers/mfd/menelaus.c
13892 F:      drivers/mfd/palmas.c
13893 F:      drivers/mfd/tps65217.c
13894 F:      drivers/mfd/tps65218.c
13895 F:      drivers/mfd/tps65910.c
13896 F:      drivers/mfd/twl-core.[ch]
13897 F:      drivers/mfd/twl4030*.c
13898 F:      drivers/mfd/twl6030*.c
13899 F:      drivers/mfd/twl6040*.c
13900 F:      drivers/regulator/palmas-regulator*.c
13901 F:      drivers/regulator/pbias-regulator.c
13902 F:      drivers/regulator/tps65217-regulator.c
13903 F:      drivers/regulator/tps65218-regulator.c
13904 F:      drivers/regulator/tps65910-regulator.c
13905 F:      drivers/regulator/twl-regulator.c
13906 F:      drivers/regulator/twl6030-regulator.c
13907 F:      include/linux/platform_data/i2c-omap.h
13908 F:      include/linux/platform_data/ti-sysc.h
13909
13910 OMFS FILESYSTEM
13911 M:      Bob Copeland <me@bobcopeland.com>
13912 L:      linux-karma-devel@lists.sourceforge.net
13913 S:      Maintained
13914 F:      Documentation/filesystems/omfs.rst
13915 F:      fs/omfs/
13916
13917 OMNIKEY CARDMAN 4000 DRIVER
13918 M:      Harald Welte <laforge@gnumonks.org>
13919 S:      Maintained
13920 F:      drivers/char/pcmcia/cm4000_cs.c
13921 F:      include/linux/cm4000_cs.h
13922 F:      include/uapi/linux/cm4000_cs.h
13923
13924 OMNIKEY CARDMAN 4040 DRIVER
13925 M:      Harald Welte <laforge@gnumonks.org>
13926 S:      Maintained
13927 F:      drivers/char/pcmcia/cm4040_cs.*
13928
13929 OMNIVISION OV02A10 SENSOR DRIVER
13930 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13931 L:      linux-media@vger.kernel.org
13932 S:      Maintained
13933 T:      git git://linuxtv.org/media_tree.git
13934 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13935 F:      drivers/media/i2c/ov02a10.c
13936
13937 OMNIVISION OV13858 SENSOR DRIVER
13938 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13939 L:      linux-media@vger.kernel.org
13940 S:      Maintained
13941 T:      git git://linuxtv.org/media_tree.git
13942 F:      drivers/media/i2c/ov13858.c
13943
13944 OMNIVISION OV13B10 SENSOR DRIVER
13945 M:      Arec Kao <arec.kao@intel.com>
13946 L:      linux-media@vger.kernel.org
13947 S:      Maintained
13948 T:      git git://linuxtv.org/media_tree.git
13949 F:      drivers/media/i2c/ov13b10.c
13950
13951 OMNIVISION OV2680 SENSOR DRIVER
13952 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13953 L:      linux-media@vger.kernel.org
13954 S:      Maintained
13955 T:      git git://linuxtv.org/media_tree.git
13956 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13957 F:      drivers/media/i2c/ov2680.c
13958
13959 OMNIVISION OV2685 SENSOR DRIVER
13960 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13961 L:      linux-media@vger.kernel.org
13962 S:      Maintained
13963 T:      git git://linuxtv.org/media_tree.git
13964 F:      drivers/media/i2c/ov2685.c
13965
13966 OMNIVISION OV2740 SENSOR DRIVER
13967 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13968 R:      Shawn Tu <shawnx.tu@intel.com>
13969 R:      Bingbu Cao <bingbu.cao@intel.com>
13970 L:      linux-media@vger.kernel.org
13971 S:      Maintained
13972 T:      git git://linuxtv.org/media_tree.git
13973 F:      drivers/media/i2c/ov2740.c
13974
13975 OMNIVISION OV5640 SENSOR DRIVER
13976 M:      Steve Longerbeam <slongerbeam@gmail.com>
13977 L:      linux-media@vger.kernel.org
13978 S:      Maintained
13979 T:      git git://linuxtv.org/media_tree.git
13980 F:      drivers/media/i2c/ov5640.c
13981
13982 OMNIVISION OV5647 SENSOR DRIVER
13983 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13984 M:      Jacopo Mondi <jacopo@jmondi.org>
13985 L:      linux-media@vger.kernel.org
13986 S:      Maintained
13987 T:      git git://linuxtv.org/media_tree.git
13988 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13989 F:      drivers/media/i2c/ov5647.c
13990
13991 OMNIVISION OV5670 SENSOR DRIVER
13992 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13993 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13994 L:      linux-media@vger.kernel.org
13995 S:      Maintained
13996 T:      git git://linuxtv.org/media_tree.git
13997 F:      drivers/media/i2c/ov5670.c
13998
13999 OMNIVISION OV5675 SENSOR DRIVER
14000 M:      Shawn Tu <shawnx.tu@intel.com>
14001 L:      linux-media@vger.kernel.org
14002 S:      Maintained
14003 T:      git git://linuxtv.org/media_tree.git
14004 F:      drivers/media/i2c/ov5675.c
14005
14006 OMNIVISION OV5695 SENSOR DRIVER
14007 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14008 L:      linux-media@vger.kernel.org
14009 S:      Maintained
14010 T:      git git://linuxtv.org/media_tree.git
14011 F:      drivers/media/i2c/ov5695.c
14012
14013 OMNIVISION OV7670 SENSOR DRIVER
14014 L:      linux-media@vger.kernel.org
14015 S:      Orphan
14016 T:      git git://linuxtv.org/media_tree.git
14017 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14018 F:      drivers/media/i2c/ov7670.c
14019
14020 OMNIVISION OV772x SENSOR DRIVER
14021 M:      Jacopo Mondi <jacopo@jmondi.org>
14022 L:      linux-media@vger.kernel.org
14023 S:      Odd fixes
14024 T:      git git://linuxtv.org/media_tree.git
14025 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14026 F:      drivers/media/i2c/ov772x.c
14027 F:      include/media/i2c/ov772x.h
14028
14029 OMNIVISION OV7740 SENSOR DRIVER
14030 M:      Wenyou Yang <wenyou.yang@microchip.com>
14031 L:      linux-media@vger.kernel.org
14032 S:      Maintained
14033 T:      git git://linuxtv.org/media_tree.git
14034 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14035 F:      drivers/media/i2c/ov7740.c
14036
14037 OMNIVISION OV8856 SENSOR DRIVER
14038 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14039 L:      linux-media@vger.kernel.org
14040 S:      Maintained
14041 T:      git git://linuxtv.org/media_tree.git
14042 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14043 F:      drivers/media/i2c/ov8856.c
14044
14045 OMNIVISION OV9282 SENSOR DRIVER
14046 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14047 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14048 L:      linux-media@vger.kernel.org
14049 S:      Maintained
14050 T:      git git://linuxtv.org/media_tree.git
14051 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14052 F:      drivers/media/i2c/ov9282.c
14053
14054 OMNIVISION OV9640 SENSOR DRIVER
14055 M:      Petr Cvek <petrcvekcz@gmail.com>
14056 L:      linux-media@vger.kernel.org
14057 S:      Maintained
14058 F:      drivers/media/i2c/ov9640.*
14059
14060 OMNIVISION OV9650 SENSOR DRIVER
14061 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14062 R:      Akinobu Mita <akinobu.mita@gmail.com>
14063 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14064 L:      linux-media@vger.kernel.org
14065 S:      Maintained
14066 T:      git git://linuxtv.org/media_tree.git
14067 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14068 F:      drivers/media/i2c/ov9650.c
14069
14070 OMNIVISION OV9734 SENSOR DRIVER
14071 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14072 R:      Bingbu Cao <bingbu.cao@intel.com>
14073 L:      linux-media@vger.kernel.org
14074 S:      Maintained
14075 T:      git git://linuxtv.org/media_tree.git
14076 F:      drivers/media/i2c/ov9734.c
14077
14078 ONENAND FLASH DRIVER
14079 M:      Kyungmin Park <kyungmin.park@samsung.com>
14080 L:      linux-mtd@lists.infradead.org
14081 S:      Maintained
14082 F:      drivers/mtd/nand/onenand/
14083 F:      include/linux/mtd/onenand*.h
14084
14085 ONION OMEGA2+ BOARD
14086 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14087 L:      linux-mips@vger.kernel.org
14088 S:      Maintained
14089 F:      arch/mips/boot/dts/ralink/omega2p.dts
14090
14091 OP-TEE DRIVER
14092 M:      Jens Wiklander <jens.wiklander@linaro.org>
14093 L:      op-tee@lists.trustedfirmware.org
14094 S:      Maintained
14095 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14096 F:      drivers/tee/optee/
14097
14098 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14099 M:      Sumit Garg <sumit.garg@linaro.org>
14100 L:      op-tee@lists.trustedfirmware.org
14101 S:      Maintained
14102 F:      drivers/char/hw_random/optee-rng.c
14103
14104 OPA-VNIC DRIVER
14105 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14106 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14107 L:      linux-rdma@vger.kernel.org
14108 S:      Supported
14109 F:      drivers/infiniband/ulp/opa_vnic
14110
14111 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14112 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14113 M:      Frank Rowand <frowand.list@gmail.com>
14114 L:      devicetree@vger.kernel.org
14115 S:      Maintained
14116 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14117 F:      Documentation/devicetree/overlay-notes.rst
14118 F:      drivers/of/overlay.c
14119 F:      drivers/of/resolver.c
14120 K:      of_overlay_notifier_
14121
14122 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14123 M:      Rob Herring <robh+dt@kernel.org>
14124 M:      Frank Rowand <frowand.list@gmail.com>
14125 L:      devicetree@vger.kernel.org
14126 S:      Maintained
14127 W:      http://www.devicetree.org/
14128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14129 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14130 F:      drivers/of/
14131 F:      include/linux/of*.h
14132 F:      scripts/dtc/
14133
14134 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14135 M:      Rob Herring <robh+dt@kernel.org>
14136 L:      devicetree@vger.kernel.org
14137 S:      Maintained
14138 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14140 F:      Documentation/devicetree/
14141 F:      arch/*/boot/dts/
14142 F:      include/dt-bindings/
14143
14144 OPENCOMPUTE PTP CLOCK DRIVER
14145 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14146 L:      netdev@vger.kernel.org
14147 S:      Maintained
14148 F:      drivers/ptp/ptp_ocp.c
14149
14150 OPENCORES I2C BUS DRIVER
14151 M:      Peter Korsgaard <peter@korsgaard.com>
14152 M:      Andrew Lunn <andrew@lunn.ch>
14153 L:      linux-i2c@vger.kernel.org
14154 S:      Maintained
14155 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14156 F:      Documentation/i2c/busses/i2c-ocores.rst
14157 F:      drivers/i2c/busses/i2c-ocores.c
14158 F:      include/linux/platform_data/i2c-ocores.h
14159
14160 OPENRISC ARCHITECTURE
14161 M:      Jonas Bonn <jonas@southpole.se>
14162 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14163 M:      Stafford Horne <shorne@gmail.com>
14164 L:      openrisc@lists.librecores.org
14165 S:      Maintained
14166 W:      http://openrisc.io
14167 T:      git git://github.com/openrisc/linux.git
14168 F:      Documentation/devicetree/bindings/openrisc/
14169 F:      Documentation/openrisc/
14170 F:      arch/openrisc/
14171 F:      drivers/irqchip/irq-ompic.c
14172 F:      drivers/irqchip/irq-or1k-*
14173
14174 OPENVSWITCH
14175 M:      Pravin B Shelar <pshelar@ovn.org>
14176 L:      netdev@vger.kernel.org
14177 L:      dev@openvswitch.org
14178 S:      Maintained
14179 W:      http://openvswitch.org
14180 F:      include/uapi/linux/openvswitch.h
14181 F:      net/openvswitch/
14182
14183 OPERATING PERFORMANCE POINTS (OPP)
14184 M:      Viresh Kumar <vireshk@kernel.org>
14185 M:      Nishanth Menon <nm@ti.com>
14186 M:      Stephen Boyd <sboyd@kernel.org>
14187 L:      linux-pm@vger.kernel.org
14188 S:      Maintained
14189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14190 F:      Documentation/devicetree/bindings/opp/
14191 F:      Documentation/power/opp.rst
14192 F:      drivers/opp/
14193 F:      include/linux/pm_opp.h
14194
14195 OPL4 DRIVER
14196 M:      Clemens Ladisch <clemens@ladisch.de>
14197 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14198 S:      Maintained
14199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14200 F:      sound/drivers/opl4/
14201
14202 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14203 M:      Mark Fasheh <mark@fasheh.com>
14204 M:      Joel Becker <jlbec@evilplan.org>
14205 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14206 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14207 S:      Supported
14208 W:      http://ocfs2.wiki.kernel.org
14209 F:      Documentation/filesystems/dlmfs.rst
14210 F:      Documentation/filesystems/ocfs2.rst
14211 F:      fs/ocfs2/
14212
14213 ORANGEFS FILESYSTEM
14214 M:      Mike Marshall <hubcap@omnibond.com>
14215 R:      Martin Brandenburg <martin@omnibond.com>
14216 L:      devel@lists.orangefs.org
14217 S:      Supported
14218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14219 F:      Documentation/filesystems/orangefs.rst
14220 F:      fs/orangefs/
14221
14222 ORINOCO DRIVER
14223 L:      linux-wireless@vger.kernel.org
14224 S:      Orphan
14225 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14226 W:      http://www.nongnu.org/orinoco/
14227 F:      drivers/net/wireless/intersil/orinoco/
14228
14229 OV2659 OMNIVISION SENSOR DRIVER
14230 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14231 L:      linux-media@vger.kernel.org
14232 S:      Maintained
14233 W:      https://linuxtv.org
14234 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14235 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14236 F:      drivers/media/i2c/ov2659.c
14237 F:      include/media/i2c/ov2659.h
14238
14239 OVERLAY FILESYSTEM
14240 M:      Miklos Szeredi <miklos@szeredi.hu>
14241 L:      linux-unionfs@vger.kernel.org
14242 S:      Supported
14243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14244 F:      Documentation/filesystems/overlayfs.rst
14245 F:      fs/overlayfs/
14246
14247 P54 WIRELESS DRIVER
14248 M:      Christian Lamparter <chunkeey@googlemail.com>
14249 L:      linux-wireless@vger.kernel.org
14250 S:      Maintained
14251 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14252 F:      drivers/net/wireless/intersil/p54/
14253
14254 PACKING
14255 M:      Vladimir Oltean <olteanv@gmail.com>
14256 L:      netdev@vger.kernel.org
14257 S:      Supported
14258 F:      Documentation/core-api/packing.rst
14259 F:      include/linux/packing.h
14260 F:      lib/packing.c
14261
14262 PADATA PARALLEL EXECUTION MECHANISM
14263 M:      Steffen Klassert <steffen.klassert@secunet.com>
14264 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14265 L:      linux-crypto@vger.kernel.org
14266 L:      linux-kernel@vger.kernel.org
14267 S:      Maintained
14268 F:      Documentation/core-api/padata.rst
14269 F:      include/linux/padata.h
14270 F:      kernel/padata.c
14271
14272 PAGE POOL
14273 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14274 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14275 L:      netdev@vger.kernel.org
14276 S:      Supported
14277 F:      Documentation/networking/page_pool.rst
14278 F:      include/net/page_pool.h
14279 F:      include/trace/events/page_pool.h
14280 F:      net/core/page_pool.c
14281
14282 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14283 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14284 L:      platform-driver-x86@vger.kernel.org
14285 S:      Maintained
14286 F:      drivers/platform/x86/panasonic-laptop.c
14287
14288 PARALLAX PING IIO SENSOR DRIVER
14289 M:      Andreas Klinger <ak@it-klinger.de>
14290 L:      linux-iio@vger.kernel.org
14291 S:      Maintained
14292 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14293 F:      drivers/iio/proximity/ping.c
14294
14295 PARALLEL LCD/KEYPAD PANEL DRIVER
14296 M:      Willy Tarreau <willy@haproxy.com>
14297 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14298 S:      Odd Fixes
14299 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14300 F:      drivers/auxdisplay/panel.c
14301
14302 PARALLEL PORT SUBSYSTEM
14303 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14304 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14305 L:      linux-parport@lists.infradead.org (subscribers-only)
14306 S:      Maintained
14307 F:      Documentation/driver-api/parport*.rst
14308 F:      drivers/char/ppdev.c
14309 F:      drivers/parport/
14310 F:      include/linux/parport*.h
14311 F:      include/uapi/linux/ppdev.h
14312
14313 PARAVIRT_OPS INTERFACE
14314 M:      Juergen Gross <jgross@suse.com>
14315 M:      Deep Shah <sdeep@vmware.com>
14316 M:      "VMware, Inc." <pv-drivers@vmware.com>
14317 L:      virtualization@lists.linux-foundation.org
14318 S:      Supported
14319 F:      Documentation/virt/paravirt_ops.rst
14320 F:      arch/*/include/asm/paravirt*.h
14321 F:      arch/*/kernel/paravirt*
14322 F:      include/linux/hypervisor.h
14323
14324 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14325 M:      Tim Waugh <tim@cyberelk.net>
14326 L:      linux-parport@lists.infradead.org (subscribers-only)
14327 S:      Maintained
14328 F:      Documentation/admin-guide/blockdev/paride.rst
14329 F:      drivers/block/paride/
14330
14331 PARISC ARCHITECTURE
14332 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14333 M:      Helge Deller <deller@gmx.de>
14334 L:      linux-parisc@vger.kernel.org
14335 S:      Maintained
14336 W:      https://parisc.wiki.kernel.org
14337 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14340 F:      Documentation/parisc/
14341 F:      arch/parisc/
14342 F:      drivers/char/agp/parisc-agp.c
14343 F:      drivers/input/misc/hp_sdc_rtc.c
14344 F:      drivers/input/serio/gscps2.c
14345 F:      drivers/input/serio/hp_sdc*
14346 F:      drivers/parisc/
14347 F:      drivers/parport/parport_gsc.*
14348 F:      drivers/tty/serial/8250/8250_gsc.c
14349 F:      drivers/video/console/sti*
14350 F:      drivers/video/fbdev/sti*
14351 F:      drivers/video/logo/logo_parisc*
14352 F:      include/linux/hp_sdc.h
14353
14354 PARMAN
14355 M:      Jiri Pirko <jiri@nvidia.com>
14356 L:      netdev@vger.kernel.org
14357 S:      Supported
14358 F:      include/linux/parman.h
14359 F:      lib/parman.c
14360 F:      lib/test_parman.c
14361
14362 PC ENGINES APU BOARD DRIVER
14363 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14364 S:      Maintained
14365 F:      drivers/platform/x86/pcengines-apuv2.c
14366
14367 PC87360 HARDWARE MONITORING DRIVER
14368 M:      Jim Cromie <jim.cromie@gmail.com>
14369 L:      linux-hwmon@vger.kernel.org
14370 S:      Maintained
14371 F:      Documentation/hwmon/pc87360.rst
14372 F:      drivers/hwmon/pc87360.c
14373
14374 PC8736x GPIO DRIVER
14375 M:      Jim Cromie <jim.cromie@gmail.com>
14376 S:      Maintained
14377 F:      drivers/char/pc8736x_gpio.c
14378
14379 PC87427 HARDWARE MONITORING DRIVER
14380 M:      Jean Delvare <jdelvare@suse.com>
14381 L:      linux-hwmon@vger.kernel.org
14382 S:      Maintained
14383 F:      Documentation/hwmon/pc87427.rst
14384 F:      drivers/hwmon/pc87427.c
14385
14386 PCA9532 LED DRIVER
14387 M:      Riku Voipio <riku.voipio@iki.fi>
14388 S:      Maintained
14389 F:      drivers/leds/leds-pca9532.c
14390 F:      include/linux/leds-pca9532.h
14391
14392 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14393 M:      Guenter Roeck <linux@roeck-us.net>
14394 L:      linux-i2c@vger.kernel.org
14395 S:      Maintained
14396 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14397
14398 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14399 M:      Khalid Aziz <khalid@gonehiking.org>
14400 S:      Maintained
14401 F:      drivers/firmware/pcdp.*
14402
14403 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14404 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14405 M:      Pali Rohár <pali@kernel.org>
14406 L:      linux-pci@vger.kernel.org
14407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14408 S:      Maintained
14409 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14410 F:      drivers/pci/controller/pci-aardvark.c
14411
14412 PCI DRIVER FOR ALTERA PCIE IP
14413 M:      Joyce Ooi <joyce.ooi@intel.com>
14414 L:      linux-pci@vger.kernel.org
14415 S:      Supported
14416 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14417 F:      drivers/pci/controller/pcie-altera.c
14418
14419 PCI DRIVER FOR APPLIEDMICRO XGENE
14420 M:      Toan Le <toan@os.amperecomputing.com>
14421 L:      linux-pci@vger.kernel.org
14422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14423 S:      Maintained
14424 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14425 F:      drivers/pci/controller/pci-xgene.c
14426
14427 PCI DRIVER FOR ARM VERSATILE PLATFORM
14428 M:      Rob Herring <robh@kernel.org>
14429 L:      linux-pci@vger.kernel.org
14430 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14431 S:      Maintained
14432 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14433 F:      drivers/pci/controller/pci-versatile.c
14434
14435 PCI DRIVER FOR ARMADA 8K
14436 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14437 L:      linux-pci@vger.kernel.org
14438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14439 S:      Maintained
14440 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14441 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14442
14443 PCI DRIVER FOR CADENCE PCIE IP
14444 M:      Tom Joseph <tjoseph@cadence.com>
14445 L:      linux-pci@vger.kernel.org
14446 S:      Maintained
14447 F:      Documentation/devicetree/bindings/pci/cdns,*
14448 F:      drivers/pci/controller/cadence/
14449
14450 PCI DRIVER FOR FREESCALE LAYERSCAPE
14451 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14452 M:      Mingkai Hu <mingkai.hu@nxp.com>
14453 M:      Roy Zang <roy.zang@nxp.com>
14454 L:      linuxppc-dev@lists.ozlabs.org
14455 L:      linux-pci@vger.kernel.org
14456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14457 S:      Maintained
14458 F:      drivers/pci/controller/dwc/*layerscape*
14459
14460 PCI DRIVER FOR GENERIC OF HOSTS
14461 M:      Will Deacon <will@kernel.org>
14462 L:      linux-pci@vger.kernel.org
14463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14464 S:      Maintained
14465 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14466 F:      drivers/pci/controller/pci-host-common.c
14467 F:      drivers/pci/controller/pci-host-generic.c
14468
14469 PCI DRIVER FOR IMX6
14470 M:      Richard Zhu <hongxing.zhu@nxp.com>
14471 M:      Lucas Stach <l.stach@pengutronix.de>
14472 L:      linux-pci@vger.kernel.org
14473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14474 S:      Maintained
14475 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14476 F:      drivers/pci/controller/dwc/*imx6*
14477
14478 PCI DRIVER FOR FU740
14479 M:      Paul Walmsley <paul.walmsley@sifive.com>
14480 M:      Greentime Hu <greentime.hu@sifive.com>
14481 L:      linux-pci@vger.kernel.org
14482 S:      Maintained
14483 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14484 F:      drivers/pci/controller/dwc/pcie-fu740.c
14485
14486 PCI DRIVER FOR INTEL IXP4XX
14487 M:      Linus Walleij <linus.walleij@linaro.org>
14488 S:      Maintained
14489 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14490 F:      drivers/pci/controller/pci-ixp4xx.c
14491
14492 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14493 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14494 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14495 L:      linux-pci@vger.kernel.org
14496 S:      Supported
14497 F:      drivers/pci/controller/vmd.c
14498
14499 PCI DRIVER FOR MICROSEMI SWITCHTEC
14500 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14501 M:      Logan Gunthorpe <logang@deltatee.com>
14502 L:      linux-pci@vger.kernel.org
14503 S:      Maintained
14504 F:      Documentation/ABI/testing/sysfs-class-switchtec
14505 F:      Documentation/driver-api/switchtec.rst
14506 F:      drivers/ntb/hw/mscc/
14507 F:      drivers/pci/switch/switchtec*
14508 F:      include/linux/switchtec.h
14509 F:      include/uapi/linux/switchtec_ioctl.h
14510
14511 PCI DRIVER FOR MOBIVEIL PCIE IP
14512 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14513 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14514 L:      linux-pci@vger.kernel.org
14515 S:      Supported
14516 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14517 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14518
14519 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14520 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14521 L:      linux-pci@vger.kernel.org
14522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14523 S:      Maintained
14524 F:      drivers/pci/controller/*mvebu*
14525
14526 PCI DRIVER FOR NVIDIA TEGRA
14527 M:      Thierry Reding <thierry.reding@gmail.com>
14528 L:      linux-tegra@vger.kernel.org
14529 L:      linux-pci@vger.kernel.org
14530 S:      Supported
14531 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14532 F:      drivers/pci/controller/pci-tegra.c
14533
14534 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14535 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14536 L:      linux-pci@vger.kernel.org
14537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14538 S:      Maintained
14539 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14540 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14541
14542 PCI DRIVER FOR RENESAS R-CAR
14543 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14544 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14545 L:      linux-pci@vger.kernel.org
14546 L:      linux-renesas-soc@vger.kernel.org
14547 S:      Maintained
14548 F:      Documentation/devicetree/bindings/pci/*rcar*
14549 F:      drivers/pci/controller/*rcar*
14550
14551 PCI DRIVER FOR SAMSUNG EXYNOS
14552 M:      Jingoo Han <jingoohan1@gmail.com>
14553 L:      linux-pci@vger.kernel.org
14554 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14555 L:      linux-samsung-soc@vger.kernel.org
14556 S:      Maintained
14557 F:      drivers/pci/controller/dwc/pci-exynos.c
14558
14559 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14560 M:      Jingoo Han <jingoohan1@gmail.com>
14561 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14562 L:      linux-pci@vger.kernel.org
14563 S:      Maintained
14564 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14565 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14566 F:      drivers/pci/controller/dwc/*designware*
14567
14568 PCI DRIVER FOR TI DRA7XX/J721E
14569 M:      Kishon Vijay Abraham I <kishon@ti.com>
14570 L:      linux-omap@vger.kernel.org
14571 L:      linux-pci@vger.kernel.org
14572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14573 S:      Supported
14574 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14575 F:      drivers/pci/controller/cadence/pci-j721e.c
14576 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14577
14578 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14579 M:      Linus Walleij <linus.walleij@linaro.org>
14580 L:      linux-pci@vger.kernel.org
14581 S:      Maintained
14582 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14583 F:      drivers/pci/controller/pci-v3-semi.c
14584
14585 PCI ENDPOINT SUBSYSTEM
14586 M:      Kishon Vijay Abraham I <kishon@ti.com>
14587 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14588 R:      Krzysztof Wilczyński <kw@linux.com>
14589 L:      linux-pci@vger.kernel.org
14590 S:      Supported
14591 F:      Documentation/PCI/endpoint/*
14592 F:      Documentation/misc-devices/pci-endpoint-test.rst
14593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14594 F:      drivers/misc/pci_endpoint_test.c
14595 F:      drivers/pci/endpoint/
14596 F:      tools/pci/
14597
14598 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14599 M:      Russell Currey <ruscur@russell.cc>
14600 M:      Oliver O'Halloran <oohall@gmail.com>
14601 L:      linuxppc-dev@lists.ozlabs.org
14602 S:      Supported
14603 F:      Documentation/PCI/pci-error-recovery.rst
14604 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14605 F:      arch/powerpc/include/*/eeh*.h
14606 F:      arch/powerpc/kernel/eeh*.c
14607 F:      arch/powerpc/platforms/*/eeh*.c
14608 F:      drivers/pci/pcie/aer.c
14609 F:      drivers/pci/pcie/dpc.c
14610 F:      drivers/pci/pcie/err.c
14611
14612 PCI ERROR RECOVERY
14613 M:      Linas Vepstas <linasvepstas@gmail.com>
14614 L:      linux-pci@vger.kernel.org
14615 S:      Supported
14616 F:      Documentation/PCI/pci-error-recovery.rst
14617
14618 PCI MSI DRIVER FOR ALTERA MSI IP
14619 M:      Joyce Ooi <joyce.ooi@intel.com>
14620 L:      linux-pci@vger.kernel.org
14621 S:      Supported
14622 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14623 F:      drivers/pci/controller/pcie-altera-msi.c
14624
14625 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14626 M:      Toan Le <toan@os.amperecomputing.com>
14627 L:      linux-pci@vger.kernel.org
14628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14629 S:      Maintained
14630 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14631 F:      drivers/pci/controller/pci-xgene-msi.c
14632
14633 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14634 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14635 R:      Rob Herring <robh@kernel.org>
14636 R:      Krzysztof Wilczyński <kw@linux.com>
14637 L:      linux-pci@vger.kernel.org
14638 S:      Supported
14639 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14641 F:      drivers/pci/controller/
14642
14643 PCI SUBSYSTEM
14644 M:      Bjorn Helgaas <bhelgaas@google.com>
14645 L:      linux-pci@vger.kernel.org
14646 S:      Supported
14647 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14649 F:      Documentation/PCI/
14650 F:      Documentation/devicetree/bindings/pci/
14651 F:      arch/x86/kernel/early-quirks.c
14652 F:      arch/x86/kernel/quirks.c
14653 F:      arch/x86/pci/
14654 F:      drivers/acpi/pci*
14655 F:      drivers/pci/
14656 F:      include/asm-generic/pci*
14657 F:      include/linux/of_pci.h
14658 F:      include/linux/pci*
14659 F:      include/uapi/linux/pci*
14660 F:      lib/pci*
14661
14662 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14663 M:      Jonathan Chocron <jonnyc@amazon.com>
14664 L:      linux-pci@vger.kernel.org
14665 S:      Maintained
14666 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14667 F:      drivers/pci/controller/dwc/pcie-al.c
14668
14669 PCIE DRIVER FOR AMLOGIC MESON
14670 M:      Yue Wang <yue.wang@Amlogic.com>
14671 L:      linux-pci@vger.kernel.org
14672 L:      linux-amlogic@lists.infradead.org
14673 S:      Maintained
14674 F:      drivers/pci/controller/dwc/pci-meson.c
14675
14676 PCIE DRIVER FOR AXIS ARTPEC
14677 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14678 L:      linux-arm-kernel@axis.com
14679 L:      linux-pci@vger.kernel.org
14680 S:      Maintained
14681 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14682 F:      drivers/pci/controller/dwc/*artpec*
14683
14684 PCIE DRIVER FOR CAVIUM THUNDERX
14685 M:      Robert Richter <rric@kernel.org>
14686 L:      linux-pci@vger.kernel.org
14687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14688 S:      Odd Fixes
14689 F:      drivers/pci/controller/pci-thunder-*
14690
14691 PCIE DRIVER FOR HISILICON
14692 M:      Zhou Wang <wangzhou1@hisilicon.com>
14693 L:      linux-pci@vger.kernel.org
14694 S:      Maintained
14695 F:      drivers/pci/controller/dwc/pcie-hisi.c
14696
14697 PCIE DRIVER FOR HISILICON KIRIN
14698 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14699 M:      Binghui Wang <wangbinghui@hisilicon.com>
14700 L:      linux-pci@vger.kernel.org
14701 S:      Maintained
14702 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14703 F:      drivers/pci/controller/dwc/pcie-kirin.c
14704
14705 PCIE DRIVER FOR HISILICON STB
14706 M:      Shawn Guo <shawn.guo@linaro.org>
14707 L:      linux-pci@vger.kernel.org
14708 S:      Maintained
14709 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14710 F:      drivers/pci/controller/dwc/pcie-histb.c
14711
14712 PCIE DRIVER FOR INTEL KEEM BAY
14713 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14714 L:      linux-pci@vger.kernel.org
14715 S:      Supported
14716 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14717 F:      drivers/pci/controller/dwc/pcie-keembay.c
14718
14719 PCIE DRIVER FOR INTEL LGM GW SOC
14720 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14721 L:      linux-pci@vger.kernel.org
14722 S:      Maintained
14723 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14724 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14725
14726 PCIE DRIVER FOR MEDIATEK
14727 M:      Ryder Lee <ryder.lee@mediatek.com>
14728 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14729 L:      linux-pci@vger.kernel.org
14730 L:      linux-mediatek@lists.infradead.org
14731 S:      Supported
14732 F:      Documentation/devicetree/bindings/pci/mediatek*
14733 F:      drivers/pci/controller/*mediatek*
14734
14735 PCIE DRIVER FOR MICROCHIP
14736 M:      Daire McNamara <daire.mcnamara@microchip.com>
14737 L:      linux-pci@vger.kernel.org
14738 S:      Supported
14739 F:      Documentation/devicetree/bindings/pci/microchip*
14740 F:      drivers/pci/controller/*microchip*
14741
14742 PCIE DRIVER FOR QUALCOMM MSM
14743 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14744 L:      linux-pci@vger.kernel.org
14745 L:      linux-arm-msm@vger.kernel.org
14746 S:      Maintained
14747 F:      drivers/pci/controller/dwc/*qcom*
14748
14749 PCIE DRIVER FOR ROCKCHIP
14750 M:      Shawn Lin <shawn.lin@rock-chips.com>
14751 L:      linux-pci@vger.kernel.org
14752 L:      linux-rockchip@lists.infradead.org
14753 S:      Maintained
14754 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14755 F:      drivers/pci/controller/pcie-rockchip*
14756
14757 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14758 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14759 L:      linux-pci@vger.kernel.org
14760 S:      Maintained
14761 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14762 F:      drivers/pci/controller/dwc/pcie-uniphier*
14763
14764 PCIE DRIVER FOR ST SPEAR13XX
14765 M:      Pratyush Anand <pratyush.anand@gmail.com>
14766 L:      linux-pci@vger.kernel.org
14767 S:      Maintained
14768 F:      drivers/pci/controller/dwc/*spear*
14769
14770 PCMCIA SUBSYSTEM
14771 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14772 S:      Odd Fixes
14773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14774 F:      Documentation/pcmcia/
14775 F:      drivers/pcmcia/
14776 F:      include/pcmcia/
14777 F:      tools/pcmcia/
14778
14779 PCNET32 NETWORK DRIVER
14780 M:      Don Fry <pcnet32@frontier.com>
14781 L:      netdev@vger.kernel.org
14782 S:      Maintained
14783 F:      drivers/net/ethernet/amd/pcnet32.c
14784
14785 PCRYPT PARALLEL CRYPTO ENGINE
14786 M:      Steffen Klassert <steffen.klassert@secunet.com>
14787 L:      linux-crypto@vger.kernel.org
14788 S:      Maintained
14789 F:      crypto/pcrypt.c
14790 F:      include/crypto/pcrypt.h
14791
14792 PEAQ WMI HOTKEYS DRIVER
14793 M:      Hans de Goede <hdegoede@redhat.com>
14794 L:      platform-driver-x86@vger.kernel.org
14795 S:      Maintained
14796 F:      drivers/platform/x86/peaq-wmi.c
14797
14798 PENSANDO ETHERNET DRIVERS
14799 M:      Shannon Nelson <snelson@pensando.io>
14800 M:      drivers@pensando.io
14801 L:      netdev@vger.kernel.org
14802 S:      Supported
14803 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14804 F:      drivers/net/ethernet/pensando/
14805
14806 PER-CPU MEMORY ALLOCATOR
14807 M:      Dennis Zhou <dennis@kernel.org>
14808 M:      Tejun Heo <tj@kernel.org>
14809 M:      Christoph Lameter <cl@linux.com>
14810 L:      linux-mm@kvack.org
14811 S:      Maintained
14812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14813 F:      arch/*/include/asm/percpu.h
14814 F:      include/linux/percpu*.h
14815 F:      lib/percpu*.c
14816 F:      mm/percpu*.c
14817
14818 PER-TASK DELAY ACCOUNTING
14819 M:      Balbir Singh <bsingharora@gmail.com>
14820 S:      Maintained
14821 F:      include/linux/delayacct.h
14822 F:      kernel/delayacct.c
14823
14824 PERFORMANCE EVENTS SUBSYSTEM
14825 M:      Peter Zijlstra <peterz@infradead.org>
14826 M:      Ingo Molnar <mingo@redhat.com>
14827 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14828 R:      Mark Rutland <mark.rutland@arm.com>
14829 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14830 R:      Jiri Olsa <jolsa@redhat.com>
14831 R:      Namhyung Kim <namhyung@kernel.org>
14832 L:      linux-perf-users@vger.kernel.org
14833 L:      linux-kernel@vger.kernel.org
14834 S:      Supported
14835 W:      https://perf.wiki.kernel.org/
14836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14837 F:      arch/*/events/*
14838 F:      arch/*/events/*/*
14839 F:      arch/*/include/asm/perf_event.h
14840 F:      arch/*/kernel/*/*/perf_event*.c
14841 F:      arch/*/kernel/*/perf_event*.c
14842 F:      arch/*/kernel/perf_callchain.c
14843 F:      arch/*/kernel/perf_event*.c
14844 F:      include/linux/perf_event.h
14845 F:      include/uapi/linux/perf_event.h
14846 F:      kernel/events/*
14847 F:      tools/lib/perf/
14848 F:      tools/perf/
14849
14850 PERFORMANCE EVENTS TOOLING ARM64
14851 R:      John Garry <john.garry@huawei.com>
14852 R:      Will Deacon <will@kernel.org>
14853 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14854 R:      Leo Yan <leo.yan@linaro.org>
14855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14856 S:      Supported
14857 F:      tools/build/feature/test-libopencsd.c
14858 F:      tools/perf/arch/arm*/
14859 F:      tools/perf/pmu-events/arch/arm64/
14860 F:      tools/perf/util/arm-spe*
14861 F:      tools/perf/util/cs-etm*
14862
14863 PERSONALITY HANDLING
14864 M:      Christoph Hellwig <hch@infradead.org>
14865 L:      linux-abi-devel@lists.sourceforge.net
14866 S:      Maintained
14867 F:      include/linux/personality.h
14868 F:      include/uapi/linux/personality.h
14869
14870 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14871 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14872 L:      linux-input@vger.kernel.org
14873 S:      Maintained
14874 F:      Documentation/input/devices/pxrc.rst
14875 F:      drivers/input/joystick/pxrc.c
14876
14877 PHONET PROTOCOL
14878 M:      Remi Denis-Courmont <courmisch@gmail.com>
14879 S:      Supported
14880 F:      Documentation/networking/phonet.rst
14881 F:      include/linux/phonet.h
14882 F:      include/net/phonet/
14883 F:      include/uapi/linux/phonet.h
14884 F:      net/phonet/
14885
14886 PHRAM MTD DRIVER
14887 M:      Joern Engel <joern@lazybastard.org>
14888 L:      linux-mtd@lists.infradead.org
14889 S:      Maintained
14890 F:      drivers/mtd/devices/phram.c
14891
14892 PICOLCD HID DRIVER
14893 M:      Bruno Prémont <bonbons@linux-vserver.org>
14894 L:      linux-input@vger.kernel.org
14895 S:      Maintained
14896 F:      drivers/hid/hid-picolcd*
14897
14898 PIDFD API
14899 M:      Christian Brauner <christian@brauner.io>
14900 L:      linux-kernel@vger.kernel.org
14901 S:      Maintained
14902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14903 F:      samples/pidfd/
14904 F:      tools/testing/selftests/clone3/
14905 F:      tools/testing/selftests/pid_namespace/
14906 F:      tools/testing/selftests/pidfd/
14907 K:      (?i)pidfd
14908 K:      (?i)clone3
14909 K:      \b(clone_args|kernel_clone_args)\b
14910
14911 PIN CONTROL SUBSYSTEM
14912 M:      Linus Walleij <linus.walleij@linaro.org>
14913 L:      linux-gpio@vger.kernel.org
14914 S:      Maintained
14915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14916 F:      Documentation/devicetree/bindings/pinctrl/
14917 F:      Documentation/driver-api/pin-control.rst
14918 F:      drivers/pinctrl/
14919 F:      include/linux/pinctrl/
14920
14921 PIN CONTROLLER - AMD
14922 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14923 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14924 S:      Maintained
14925 F:      drivers/pinctrl/pinctrl-amd.c
14926
14927 PIN CONTROLLER - FREESCALE
14928 M:      Dong Aisheng <aisheng.dong@nxp.com>
14929 M:      Fabio Estevam <festevam@gmail.com>
14930 M:      Shawn Guo <shawnguo@kernel.org>
14931 M:      Stefan Agner <stefan@agner.ch>
14932 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14933 L:      linux-gpio@vger.kernel.org
14934 S:      Maintained
14935 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14936 F:      drivers/pinctrl/freescale/
14937
14938 PIN CONTROLLER - INTEL
14939 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14940 M:      Andy Shevchenko <andy@kernel.org>
14941 S:      Maintained
14942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14943 F:      drivers/pinctrl/intel/
14944
14945 PIN CONTROLLER - KEEMBAY
14946 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14947 S:      Supported
14948 F:      drivers/pinctrl/pinctrl-keembay*
14949
14950 PIN CONTROLLER - MEDIATEK
14951 M:      Sean Wang <sean.wang@kernel.org>
14952 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14953 S:      Maintained
14954 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14955 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14956 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14957 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14958 F:      drivers/pinctrl/mediatek/
14959
14960 PIN CONTROLLER - MICROCHIP AT91
14961 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14963 L:      linux-gpio@vger.kernel.org
14964 S:      Supported
14965 F:      drivers/gpio/gpio-sama5d2-piobu.c
14966 F:      drivers/pinctrl/pinctrl-at91*
14967
14968 PIN CONTROLLER - QUALCOMM
14969 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14970 L:      linux-arm-msm@vger.kernel.org
14971 S:      Maintained
14972 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14973 F:      drivers/pinctrl/qcom/
14974
14975 PIN CONTROLLER - RENESAS
14976 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14977 L:      linux-renesas-soc@vger.kernel.org
14978 S:      Supported
14979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14980 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14981 F:      drivers/pinctrl/renesas/
14982
14983 PIN CONTROLLER - SAMSUNG
14984 M:      Tomasz Figa <tomasz.figa@gmail.com>
14985 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14986 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14988 L:      linux-samsung-soc@vger.kernel.org
14989 S:      Maintained
14990 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14992 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14993 F:      drivers/pinctrl/samsung/
14994 F:      include/dt-bindings/pinctrl/samsung.h
14995
14996 PIN CONTROLLER - SINGLE
14997 M:      Tony Lindgren <tony@atomide.com>
14998 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15000 L:      linux-omap@vger.kernel.org
15001 S:      Maintained
15002 F:      drivers/pinctrl/pinctrl-single.c
15003
15004 PKTCDVD DRIVER
15005 M:      linux-block@vger.kernel.org
15006 S:      Orphan
15007 F:      drivers/block/pktcdvd.c
15008 F:      include/linux/pktcdvd.h
15009 F:      include/uapi/linux/pktcdvd.h
15010
15011 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15012 M:      Tomasz Duszynski <tduszyns@gmail.com>
15013 S:      Maintained
15014 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15015 F:      drivers/iio/chemical/pms7003.c
15016
15017 PLDMFW LIBRARY
15018 M:      Jacob Keller <jacob.e.keller@intel.com>
15019 S:      Maintained
15020 F:      Documentation/driver-api/pldmfw/
15021 F:      include/linux/pldmfw.h
15022 F:      lib/pldmfw/
15023
15024 PLX DMA DRIVER
15025 M:      Logan Gunthorpe <logang@deltatee.com>
15026 S:      Maintained
15027 F:      drivers/dma/plx_dma.c
15028
15029 PM6764TR DRIVER
15030 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15031 L:      linux-hwmon@vger.kernel.org
15032 S:      Maintained
15033 F:      Documentation/hwmon/pm6764tr.rst
15034 F:      drivers/hwmon/pmbus/pm6764tr.c
15035
15036 PM-GRAPH UTILITY
15037 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15038 L:      linux-pm@vger.kernel.org
15039 S:      Supported
15040 W:      https://01.org/pm-graph
15041 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15042 T:      git git://github.com/intel/pm-graph
15043 F:      tools/power/pm-graph
15044
15045 PMBUS HARDWARE MONITORING DRIVERS
15046 M:      Guenter Roeck <linux@roeck-us.net>
15047 L:      linux-hwmon@vger.kernel.org
15048 S:      Maintained
15049 W:      http://hwmon.wiki.kernel.org/
15050 W:      http://www.roeck-us.net/linux/drivers/
15051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15052 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15053 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15054 F:      Documentation/hwmon/adm1275.rst
15055 F:      Documentation/hwmon/ibm-cffps.rst
15056 F:      Documentation/hwmon/ir35221.rst
15057 F:      Documentation/hwmon/lm25066.rst
15058 F:      Documentation/hwmon/ltc2978.rst
15059 F:      Documentation/hwmon/ltc3815.rst
15060 F:      Documentation/hwmon/max16064.rst
15061 F:      Documentation/hwmon/max20751.rst
15062 F:      Documentation/hwmon/max31785.rst
15063 F:      Documentation/hwmon/max34440.rst
15064 F:      Documentation/hwmon/max8688.rst
15065 F:      Documentation/hwmon/pmbus-core.rst
15066 F:      Documentation/hwmon/pmbus.rst
15067 F:      Documentation/hwmon/tps40422.rst
15068 F:      Documentation/hwmon/ucd9000.rst
15069 F:      Documentation/hwmon/ucd9200.rst
15070 F:      Documentation/hwmon/zl6100.rst
15071 F:      drivers/hwmon/pmbus/
15072 F:      include/linux/pmbus.h
15073
15074 PMC SIERRA MaxRAID DRIVER
15075 L:      linux-scsi@vger.kernel.org
15076 S:      Orphan
15077 W:      http://www.pmc-sierra.com/
15078 F:      drivers/scsi/pmcraid.*
15079
15080 PMC SIERRA PM8001 DRIVER
15081 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15082 L:      linux-scsi@vger.kernel.org
15083 S:      Supported
15084 F:      drivers/scsi/pm8001/
15085
15086 PNI RM3100 IIO DRIVER
15087 M:      Song Qiang <songqiang1304521@gmail.com>
15088 L:      linux-iio@vger.kernel.org
15089 S:      Maintained
15090 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15091 F:      drivers/iio/magnetometer/rm3100*
15092
15093 PNP SUPPORT
15094 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15095 L:      linux-acpi@vger.kernel.org
15096 S:      Maintained
15097 F:      drivers/pnp/
15098 F:      include/linux/pnp.h
15099
15100 POSIX CLOCKS and TIMERS
15101 M:      Thomas Gleixner <tglx@linutronix.de>
15102 L:      linux-kernel@vger.kernel.org
15103 S:      Maintained
15104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15105 F:      fs/timerfd.c
15106 F:      include/linux/time_namespace.h
15107 F:      include/linux/timer*
15108 F:      kernel/time/*timer*
15109 F:      kernel/time/namespace.c
15110
15111 POWER MANAGEMENT CORE
15112 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15113 L:      linux-pm@vger.kernel.org
15114 S:      Supported
15115 B:      https://bugzilla.kernel.org
15116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15117 F:      drivers/base/power/
15118 F:      drivers/powercap/
15119 F:      include/linux/intel_rapl.h
15120 F:      include/linux/pm.h
15121 F:      include/linux/pm_*
15122 F:      include/linux/powercap.h
15123 F:      kernel/configs/nopm.config
15124
15125 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15126 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15127 L:      linux-pm@vger.kernel.org
15128 S:      Supported
15129 B:      https://bugzilla.kernel.org
15130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15131 F:      drivers/powercap/dtpm*
15132 F:      include/linux/dtpm.h
15133
15134 POWER STATE COORDINATION INTERFACE (PSCI)
15135 M:      Mark Rutland <mark.rutland@arm.com>
15136 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15138 S:      Maintained
15139 F:      drivers/firmware/psci/
15140 F:      include/linux/psci.h
15141 F:      include/uapi/linux/psci.h
15142
15143 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15144 M:      Sebastian Reichel <sre@kernel.org>
15145 L:      linux-pm@vger.kernel.org
15146 S:      Maintained
15147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15148 F:      Documentation/ABI/testing/sysfs-class-power
15149 F:      Documentation/devicetree/bindings/power/supply/
15150 F:      drivers/power/supply/
15151 F:      include/linux/power/
15152 F:      include/linux/power_supply.h
15153
15154 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15155 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15156 L:      linuxppc-dev@lists.ozlabs.org
15157 S:      Maintained
15158 F:      drivers/char/powernv-op-panel.c
15159
15160 PPP OVER ATM (RFC 2364)
15161 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15162 S:      Maintained
15163 F:      include/uapi/linux/atmppp.h
15164 F:      net/atm/pppoatm.c
15165
15166 PPP OVER ETHERNET
15167 M:      Michal Ostrowski <mostrows@earthlink.net>
15168 S:      Maintained
15169 F:      drivers/net/ppp/pppoe.c
15170 F:      drivers/net/ppp/pppox.c
15171
15172 PPP OVER L2TP
15173 M:      James Chapman <jchapman@katalix.com>
15174 S:      Maintained
15175 F:      include/linux/if_pppol2tp.h
15176 F:      include/uapi/linux/if_pppol2tp.h
15177 F:      net/l2tp/l2tp_ppp.c
15178
15179 PPP PROTOCOL DRIVERS AND COMPRESSORS
15180 M:      Paul Mackerras <paulus@samba.org>
15181 L:      linux-ppp@vger.kernel.org
15182 S:      Maintained
15183 F:      drivers/net/ppp/ppp_*
15184
15185 PPS SUPPORT
15186 M:      Rodolfo Giometti <giometti@enneenne.com>
15187 L:      linuxpps@ml.enneenne.com (subscribers-only)
15188 S:      Maintained
15189 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15190 F:      Documentation/ABI/testing/sysfs-pps
15191 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15192 F:      Documentation/driver-api/pps.rst
15193 F:      drivers/pps/
15194 F:      include/linux/pps*.h
15195 F:      include/uapi/linux/pps.h
15196
15197 PPTP DRIVER
15198 M:      Dmitry Kozlov <xeb@mail.ru>
15199 L:      netdev@vger.kernel.org
15200 S:      Maintained
15201 W:      http://sourceforge.net/projects/accel-pptp
15202 F:      drivers/net/ppp/pptp.c
15203
15204 PRESSURE STALL INFORMATION (PSI)
15205 M:      Johannes Weiner <hannes@cmpxchg.org>
15206 S:      Maintained
15207 F:      include/linux/psi*
15208 F:      kernel/sched/psi.c
15209
15210 PRINTK
15211 M:      Petr Mladek <pmladek@suse.com>
15212 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15213 R:      Steven Rostedt <rostedt@goodmis.org>
15214 R:      John Ogness <john.ogness@linutronix.de>
15215 S:      Maintained
15216 F:      include/linux/printk.h
15217 F:      kernel/printk/
15218
15219 PRINTK INDEXING
15220 R:      Chris Down <chris@chrisdown.name>
15221 S:      Maintained
15222 F:      kernel/printk/index.c
15223
15224 PROC FILESYSTEM
15225 L:      linux-kernel@vger.kernel.org
15226 L:      linux-fsdevel@vger.kernel.org
15227 S:      Maintained
15228 F:      Documentation/filesystems/proc.rst
15229 F:      fs/proc/
15230 F:      include/linux/proc_fs.h
15231 F:      tools/testing/selftests/proc/
15232
15233 PROC SYSCTL
15234 M:      Luis Chamberlain <mcgrof@kernel.org>
15235 M:      Kees Cook <keescook@chromium.org>
15236 M:      Iurii Zaikin <yzaikin@google.com>
15237 L:      linux-kernel@vger.kernel.org
15238 L:      linux-fsdevel@vger.kernel.org
15239 S:      Maintained
15240 F:      fs/proc/proc_sysctl.c
15241 F:      include/linux/sysctl.h
15242 F:      kernel/sysctl-test.c
15243 F:      kernel/sysctl.c
15244 F:      tools/testing/selftests/sysctl/
15245
15246 PS3 NETWORK SUPPORT
15247 M:      Geoff Levand <geoff@infradead.org>
15248 L:      netdev@vger.kernel.org
15249 L:      linuxppc-dev@lists.ozlabs.org
15250 S:      Maintained
15251 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15252
15253 PS3 PLATFORM SUPPORT
15254 M:      Geoff Levand <geoff@infradead.org>
15255 L:      linuxppc-dev@lists.ozlabs.org
15256 S:      Maintained
15257 F:      arch/powerpc/boot/ps3*
15258 F:      arch/powerpc/include/asm/lv1call.h
15259 F:      arch/powerpc/include/asm/ps3*.h
15260 F:      arch/powerpc/platforms/ps3/
15261 F:      drivers/*/ps3*
15262 F:      drivers/ps3/
15263 F:      drivers/rtc/rtc-ps3.c
15264 F:      drivers/usb/host/*ps3.c
15265 F:      sound/ppc/snd_ps3*
15266
15267 PS3VRAM DRIVER
15268 M:      Jim Paris <jim@jtan.com>
15269 M:      Geoff Levand <geoff@infradead.org>
15270 L:      linuxppc-dev@lists.ozlabs.org
15271 S:      Maintained
15272 F:      drivers/block/ps3vram.c
15273
15274 PSAMPLE PACKET SAMPLING SUPPORT
15275 M:      Yotam Gigi <yotam.gi@gmail.com>
15276 S:      Maintained
15277 F:      include/net/psample.h
15278 F:      include/uapi/linux/psample.h
15279 F:      net/psample
15280
15281 PSTORE FILESYSTEM
15282 M:      Kees Cook <keescook@chromium.org>
15283 M:      Anton Vorontsov <anton@enomsg.org>
15284 M:      Colin Cross <ccross@android.com>
15285 M:      Tony Luck <tony.luck@intel.com>
15286 S:      Maintained
15287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15288 F:      Documentation/admin-guide/ramoops.rst
15289 F:      Documentation/admin-guide/pstore-blk.rst
15290 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15291 F:      drivers/acpi/apei/erst.c
15292 F:      drivers/firmware/efi/efi-pstore.c
15293 F:      fs/pstore/
15294 F:      include/linux/pstore*
15295 K:      \b(pstore|ramoops)
15296
15297 PTP HARDWARE CLOCK SUPPORT
15298 M:      Richard Cochran <richardcochran@gmail.com>
15299 L:      netdev@vger.kernel.org
15300 S:      Maintained
15301 W:      http://linuxptp.sourceforge.net/
15302 F:      Documentation/ABI/testing/sysfs-ptp
15303 F:      Documentation/driver-api/ptp.rst
15304 F:      drivers/net/phy/dp83640*
15305 F:      drivers/ptp/*
15306 F:      include/linux/ptp_cl*
15307
15308 PTP VIRTUAL CLOCK SUPPORT
15309 M:      Yangbo Lu <yangbo.lu@nxp.com>
15310 L:      netdev@vger.kernel.org
15311 S:      Maintained
15312 F:      drivers/ptp/ptp_vclock.c
15313 F:      net/ethtool/phc_vclocks.c
15314
15315 PTRACE SUPPORT
15316 M:      Oleg Nesterov <oleg@redhat.com>
15317 S:      Maintained
15318 F:      arch/*/*/ptrace*.c
15319 F:      arch/*/include/asm/ptrace*.h
15320 F:      arch/*/ptrace*.c
15321 F:      include/asm-generic/syscall.h
15322 F:      include/linux/ptrace.h
15323 F:      include/linux/regset.h
15324 F:      include/linux/tracehook.h
15325 F:      include/uapi/linux/ptrace.h
15326 F:      include/uapi/linux/ptrace.h
15327 F:      kernel/ptrace.c
15328
15329 PULSE8-CEC DRIVER
15330 M:      Hans Verkuil <hverkuil@xs4all.nl>
15331 L:      linux-media@vger.kernel.org
15332 S:      Maintained
15333 T:      git git://linuxtv.org/media_tree.git
15334 F:      Documentation/admin-guide/media/pulse8-cec.rst
15335 F:      drivers/media/cec/usb/pulse8/
15336
15337 PVRUSB2 VIDEO4LINUX DRIVER
15338 M:      Mike Isely <isely@pobox.com>
15339 L:      pvrusb2@isely.net       (subscribers-only)
15340 L:      linux-media@vger.kernel.org
15341 S:      Maintained
15342 W:      http://www.isely.net/pvrusb2/
15343 T:      git git://linuxtv.org/media_tree.git
15344 F:      Documentation/driver-api/media/drivers/pvrusb2*
15345 F:      drivers/media/usb/pvrusb2/
15346
15347 PWC WEBCAM DRIVER
15348 M:      Hans Verkuil <hverkuil@xs4all.nl>
15349 L:      linux-media@vger.kernel.org
15350 S:      Odd Fixes
15351 T:      git git://linuxtv.org/media_tree.git
15352 F:      drivers/media/usb/pwc/*
15353 F:      include/trace/events/pwc.h
15354
15355 PWM FAN DRIVER
15356 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15357 L:      linux-hwmon@vger.kernel.org
15358 S:      Supported
15359 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15360 F:      Documentation/hwmon/pwm-fan.rst
15361 F:      drivers/hwmon/pwm-fan.c
15362
15363 PWM IR Transmitter
15364 M:      Sean Young <sean@mess.org>
15365 L:      linux-media@vger.kernel.org
15366 S:      Maintained
15367 F:      drivers/media/rc/pwm-ir-tx.c
15368
15369 PWM SUBSYSTEM
15370 M:      Thierry Reding <thierry.reding@gmail.com>
15371 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15372 M:      Lee Jones <lee.jones@linaro.org>
15373 L:      linux-pwm@vger.kernel.org
15374 S:      Maintained
15375 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15377 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15378 F:      Documentation/devicetree/bindings/pwm/
15379 F:      Documentation/driver-api/pwm.rst
15380 F:      drivers/gpio/gpio-mvebu.c
15381 F:      drivers/pwm/
15382 F:      drivers/video/backlight/pwm_bl.c
15383 F:      include/linux/pwm.h
15384 F:      include/linux/pwm_backlight.h
15385 K:      pwm_(config|apply_state|ops)
15386
15387 PXA GPIO DRIVER
15388 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15389 L:      linux-gpio@vger.kernel.org
15390 S:      Maintained
15391 F:      drivers/gpio/gpio-pxa.c
15392
15393 PXA MMCI DRIVER
15394 S:      Orphan
15395
15396 PXA RTC DRIVER
15397 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15398 L:      linux-rtc@vger.kernel.org
15399 S:      Maintained
15400
15401 PXA2xx/PXA3xx SUPPORT
15402 M:      Daniel Mack <daniel@zonque.org>
15403 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15404 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15406 S:      Maintained
15407 T:      git git://github.com/hzhuang1/linux.git
15408 T:      git git://github.com/rjarzmik/linux.git
15409 F:      arch/arm/boot/dts/pxa*
15410 F:      arch/arm/mach-pxa/
15411 F:      drivers/dma/pxa*
15412 F:      drivers/pcmcia/pxa2xx*
15413 F:      drivers/pinctrl/pxa/
15414 F:      drivers/spi/spi-pxa2xx*
15415 F:      drivers/usb/gadget/udc/pxa2*
15416 F:      include/sound/pxa2xx-lib.h
15417 F:      sound/arm/pxa*
15418 F:      sound/soc/pxa/
15419
15420 QAT DRIVER
15421 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15422 L:      qat-linux@intel.com
15423 S:      Supported
15424 F:      drivers/crypto/qat/
15425
15426 QCOM AUDIO (ASoC) DRIVERS
15427 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15428 M:      Banajit Goswami <bgoswami@codeaurora.org>
15429 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15430 S:      Supported
15431 F:      sound/soc/codecs/lpass-va-macro.c
15432 F:      sound/soc/codecs/lpass-wsa-macro.*
15433 F:      sound/soc/codecs/msm8916-wcd-analog.c
15434 F:      sound/soc/codecs/msm8916-wcd-digital.c
15435 F:      sound/soc/codecs/wcd9335.*
15436 F:      sound/soc/codecs/wcd934x.c
15437 F:      sound/soc/codecs/wcd-clsh-v2.*
15438 F:      sound/soc/codecs/wsa881x.c
15439 F:      sound/soc/qcom/
15440
15441 QCOM IPA DRIVER
15442 M:      Alex Elder <elder@kernel.org>
15443 L:      netdev@vger.kernel.org
15444 S:      Supported
15445 F:      drivers/net/ipa/
15446
15447 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15448 M:      Gabriel Somlo <somlo@cmu.edu>
15449 M:      "Michael S. Tsirkin" <mst@redhat.com>
15450 L:      qemu-devel@nongnu.org
15451 S:      Maintained
15452 F:      drivers/firmware/qemu_fw_cfg.c
15453 F:      include/uapi/linux/qemu_fw_cfg.h
15454
15455 QIB DRIVER
15456 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15457 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15458 L:      linux-rdma@vger.kernel.org
15459 S:      Supported
15460 F:      drivers/infiniband/hw/qib/
15461
15462 QLOGIC QL41xxx FCOE DRIVER
15463 M:      Saurav Kashyap <skashyap@marvell.com>
15464 M:      Javed Hasan <jhasan@marvell.com>
15465 M:      GR-QLogic-Storage-Upstream@marvell.com
15466 L:      linux-scsi@vger.kernel.org
15467 S:      Supported
15468 F:      drivers/scsi/qedf/
15469
15470 QLOGIC QL41xxx ISCSI DRIVER
15471 M:      Nilesh Javali <njavali@marvell.com>
15472 M:      Manish Rangankar <mrangankar@marvell.com>
15473 M:      GR-QLogic-Storage-Upstream@marvell.com
15474 L:      linux-scsi@vger.kernel.org
15475 S:      Supported
15476 F:      drivers/scsi/qedi/
15477
15478 QLOGIC QL4xxx ETHERNET DRIVER
15479 M:      Ariel Elior <aelior@marvell.com>
15480 M:      GR-everest-linux-l2@marvell.com
15481 L:      netdev@vger.kernel.org
15482 S:      Supported
15483 F:      drivers/net/ethernet/qlogic/qed/
15484 F:      drivers/net/ethernet/qlogic/qede/
15485 F:      include/linux/qed/
15486
15487 QLOGIC QL4xxx RDMA DRIVER
15488 M:      Michal Kalderon <mkalderon@marvell.com>
15489 M:      Ariel Elior <aelior@marvell.com>
15490 L:      linux-rdma@vger.kernel.org
15491 S:      Supported
15492 F:      drivers/infiniband/hw/qedr/
15493 F:      include/uapi/rdma/qedr-abi.h
15494
15495 QLOGIC QLA1280 SCSI DRIVER
15496 M:      Michael Reed <mdr@sgi.com>
15497 L:      linux-scsi@vger.kernel.org
15498 S:      Maintained
15499 F:      drivers/scsi/qla1280.[ch]
15500
15501 QLOGIC QLA2XXX FC-SCSI DRIVER
15502 M:      Nilesh Javali <njavali@marvell.com>
15503 M:      GR-QLogic-Storage-Upstream@marvell.com
15504 L:      linux-scsi@vger.kernel.org
15505 S:      Supported
15506 F:      drivers/scsi/qla2xxx/
15507
15508 QLOGIC QLA3XXX NETWORK DRIVER
15509 M:      GR-Linux-NIC-Dev@marvell.com
15510 L:      netdev@vger.kernel.org
15511 S:      Supported
15512 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15513
15514 QLOGIC QLA4XXX iSCSI DRIVER
15515 M:      Nilesh Javali <njavali@marvell.com>
15516 M:      Manish Rangankar <mrangankar@marvell.com>
15517 M:      GR-QLogic-Storage-Upstream@marvell.com
15518 L:      linux-scsi@vger.kernel.org
15519 S:      Supported
15520 F:      drivers/scsi/qla4xxx/
15521
15522 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15523 M:      Shahed Shaikh <shshaikh@marvell.com>
15524 M:      Manish Chopra <manishc@marvell.com>
15525 M:      GR-Linux-NIC-Dev@marvell.com
15526 L:      netdev@vger.kernel.org
15527 S:      Supported
15528 F:      drivers/net/ethernet/qlogic/qlcnic/
15529
15530 QLOGIC QLGE 10Gb ETHERNET DRIVER
15531 M:      Manish Chopra <manishc@marvell.com>
15532 M:      GR-Linux-NIC-Dev@marvell.com
15533 M:      Coiby Xu <coiby.xu@gmail.com>
15534 L:      netdev@vger.kernel.org
15535 S:      Supported
15536 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15537 F:      drivers/staging/qlge/
15538
15539 QM1D1B0004 MEDIA DRIVER
15540 M:      Akihiro Tsukada <tskd08@gmail.com>
15541 L:      linux-media@vger.kernel.org
15542 S:      Odd Fixes
15543 F:      drivers/media/tuners/qm1d1b0004*
15544
15545 QM1D1C0042 MEDIA DRIVER
15546 M:      Akihiro Tsukada <tskd08@gmail.com>
15547 L:      linux-media@vger.kernel.org
15548 S:      Odd Fixes
15549 F:      drivers/media/tuners/qm1d1c0042*
15550
15551 QNX4 FILESYSTEM
15552 M:      Anders Larsen <al@alarsen.net>
15553 S:      Maintained
15554 W:      http://www.alarsen.net/linux/qnx4fs/
15555 F:      fs/qnx4/
15556 F:      include/uapi/linux/qnx4_fs.h
15557 F:      include/uapi/linux/qnxtypes.h
15558
15559 QORIQ DPAA2 FSL-MC BUS DRIVER
15560 M:      Stuart Yoder <stuyoder@gmail.com>
15561 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15562 L:      linux-kernel@vger.kernel.org
15563 S:      Maintained
15564 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15565 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15566 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15567 F:      drivers/bus/fsl-mc/
15568 F:      include/uapi/linux/fsl_mc.h
15569
15570 QT1010 MEDIA DRIVER
15571 M:      Antti Palosaari <crope@iki.fi>
15572 L:      linux-media@vger.kernel.org
15573 S:      Maintained
15574 W:      https://linuxtv.org
15575 W:      http://palosaari.fi/linux/
15576 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15577 T:      git git://linuxtv.org/anttip/media_tree.git
15578 F:      drivers/media/tuners/qt1010*
15579
15580 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15581 M:      Kalle Valo <kvalo@codeaurora.org>
15582 L:      ath10k@lists.infradead.org
15583 S:      Supported
15584 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15586 F:      drivers/net/wireless/ath/ath10k/
15587
15588 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15589 M:      Kalle Valo <kvalo@codeaurora.org>
15590 L:      ath11k@lists.infradead.org
15591 S:      Supported
15592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15593 F:      drivers/net/wireless/ath/ath11k/
15594
15595 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15596 M:      ath9k-devel@qca.qualcomm.com
15597 L:      linux-wireless@vger.kernel.org
15598 S:      Supported
15599 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15600 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15601 F:      drivers/net/wireless/ath/ath9k/
15602
15603 QUALCOMM CAMERA SUBSYSTEM DRIVER
15604 M:      Robert Foss <robert.foss@linaro.org>
15605 M:      Todor Tomov <todor.too@gmail.com>
15606 L:      linux-media@vger.kernel.org
15607 S:      Maintained
15608 F:      Documentation/admin-guide/media/qcom_camss.rst
15609 F:      Documentation/devicetree/bindings/media/*camss*
15610 F:      drivers/media/platform/qcom/camss/
15611
15612 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15613 M:      Niklas Cassel <nks@flawful.org>
15614 L:      linux-pm@vger.kernel.org
15615 L:      linux-arm-msm@vger.kernel.org
15616 S:      Maintained
15617 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15618 F:      drivers/soc/qcom/cpr.c
15619
15620 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15621 M:      Ilia Lin <ilia.lin@kernel.org>
15622 L:      linux-pm@vger.kernel.org
15623 S:      Maintained
15624 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15625 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15626
15627 QUALCOMM CRYPTO DRIVERS
15628 M:      Thara Gopinath <thara.gopinath@linaro.org>
15629 L:      linux-crypto@vger.kernel.org
15630 L:      linux-arm-msm@vger.kernel.org
15631 S:      Maintained
15632 F:      drivers/crypto/qce/
15633
15634 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15635 M:      Timur Tabi <timur@kernel.org>
15636 L:      netdev@vger.kernel.org
15637 S:      Maintained
15638 F:      drivers/net/ethernet/qualcomm/emac/
15639
15640 QUALCOMM ETHQOS ETHERNET DRIVER
15641 M:      Vinod Koul <vkoul@kernel.org>
15642 L:      netdev@vger.kernel.org
15643 S:      Maintained
15644 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15645 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15646
15647 QUALCOMM GENERIC INTERFACE I2C DRIVER
15648 M:      Akash Asthana <akashast@codeaurora.org>
15649 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15650 L:      linux-i2c@vger.kernel.org
15651 L:      linux-arm-msm@vger.kernel.org
15652 S:      Supported
15653 F:      drivers/i2c/busses/i2c-qcom-geni.c
15654
15655 QUALCOMM HEXAGON ARCHITECTURE
15656 M:      Brian Cain <bcain@codeaurora.org>
15657 L:      linux-hexagon@vger.kernel.org
15658 S:      Supported
15659 F:      arch/hexagon/
15660
15661 QUALCOMM HIDMA DRIVER
15662 M:      Sinan Kaya <okaya@kernel.org>
15663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15664 L:      linux-arm-msm@vger.kernel.org
15665 L:      dmaengine@vger.kernel.org
15666 S:      Supported
15667 F:      drivers/dma/qcom/hidma*
15668
15669 QUALCOMM I2C CCI DRIVER
15670 M:      Loic Poulain <loic.poulain@linaro.org>
15671 M:      Robert Foss <robert.foss@linaro.org>
15672 L:      linux-i2c@vger.kernel.org
15673 L:      linux-arm-msm@vger.kernel.org
15674 S:      Maintained
15675 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15676 F:      drivers/i2c/busses/i2c-qcom-cci.c
15677
15678 QUALCOMM IOMMU
15679 M:      Rob Clark <robdclark@gmail.com>
15680 L:      iommu@lists.linux-foundation.org
15681 L:      linux-arm-msm@vger.kernel.org
15682 S:      Maintained
15683 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15684
15685 QUALCOMM IPC ROUTER (QRTR) DRIVER
15686 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15687 L:      linux-arm-msm@vger.kernel.org
15688 S:      Maintained
15689 F:      include/trace/events/qrtr.h
15690 F:      include/uapi/linux/qrtr.h
15691 F:      net/qrtr/
15692
15693 QUALCOMM IPCC MAILBOX DRIVER
15694 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15695 L:      linux-arm-msm@vger.kernel.org
15696 S:      Supported
15697 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15698 F:      drivers/mailbox/qcom-ipcc.c
15699 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15700
15701 QUALCOMM IPQ4019 USB PHY DRIVER
15702 M:      Robert Marko <robert.marko@sartura.hr>
15703 M:      Luka Perkov <luka.perkov@sartura.hr>
15704 L:      linux-arm-msm@vger.kernel.org
15705 S:      Maintained
15706 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15707 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15708
15709 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15710 M:      Robert Marko <robert.marko@sartura.hr>
15711 M:      Luka Perkov <luka.perkov@sartura.hr>
15712 L:      linux-arm-msm@vger.kernel.org
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15715 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15716
15717 QUALCOMM RMNET DRIVER
15718 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15719 M:      Sean Tranchetti <stranche@codeaurora.org>
15720 L:      netdev@vger.kernel.org
15721 S:      Maintained
15722 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15723 F:      drivers/net/ethernet/qualcomm/rmnet/
15724 F:      include/linux/if_rmnet.h
15725
15726 QUALCOMM TSENS THERMAL DRIVER
15727 M:      Amit Kucheria <amitk@kernel.org>
15728 M:      Thara Gopinath <thara.gopinath@linaro.org>
15729 L:      linux-pm@vger.kernel.org
15730 L:      linux-arm-msm@vger.kernel.org
15731 S:      Maintained
15732 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15733 F:      drivers/thermal/qcom/
15734
15735 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15736 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15737 L:      linux-media@vger.kernel.org
15738 L:      linux-arm-msm@vger.kernel.org
15739 S:      Maintained
15740 T:      git git://linuxtv.org/media_tree.git
15741 F:      Documentation/devicetree/bindings/media/*venus*
15742 F:      drivers/media/platform/qcom/venus/
15743
15744 QUALCOMM WCN36XX WIRELESS DRIVER
15745 M:      Kalle Valo <kvalo@codeaurora.org>
15746 L:      wcn36xx@lists.infradead.org
15747 S:      Supported
15748 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15749 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15750 F:      drivers/net/wireless/ath/wcn36xx/
15751
15752 QUANTENNA QTNFMAC WIRELESS DRIVER
15753 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15754 R:      Sergey Matyukevich <geomatsi@gmail.com>
15755 L:      linux-wireless@vger.kernel.org
15756 S:      Maintained
15757 F:      drivers/net/wireless/quantenna
15758
15759 RADEON and AMDGPU DRM DRIVERS
15760 M:      Alex Deucher <alexander.deucher@amd.com>
15761 M:      Christian König <christian.koenig@amd.com>
15762 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15763 L:      amd-gfx@lists.freedesktop.org
15764 S:      Supported
15765 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15766 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15767 C:      irc://irc.oftc.net/radeon
15768 F:      drivers/gpu/drm/amd/
15769 F:      drivers/gpu/drm/radeon/
15770 F:      include/uapi/drm/amdgpu_drm.h
15771 F:      include/uapi/drm/radeon_drm.h
15772
15773 RADEON FRAMEBUFFER DISPLAY DRIVER
15774 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15775 L:      linux-fbdev@vger.kernel.org
15776 S:      Maintained
15777 F:      drivers/video/fbdev/aty/radeon*
15778 F:      include/uapi/linux/radeonfb.h
15779
15780 RADIOSHARK RADIO DRIVER
15781 M:      Hans Verkuil <hverkuil@xs4all.nl>
15782 L:      linux-media@vger.kernel.org
15783 S:      Maintained
15784 T:      git git://linuxtv.org/media_tree.git
15785 F:      drivers/media/radio/radio-shark.c
15786
15787 RADIOSHARK2 RADIO DRIVER
15788 M:      Hans Verkuil <hverkuil@xs4all.nl>
15789 L:      linux-media@vger.kernel.org
15790 S:      Maintained
15791 T:      git git://linuxtv.org/media_tree.git
15792 F:      drivers/media/radio/radio-shark2.c
15793 F:      drivers/media/radio/radio-tea5777.c
15794
15795 RADOS BLOCK DEVICE (RBD)
15796 M:      Ilya Dryomov <idryomov@gmail.com>
15797 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15798 L:      ceph-devel@vger.kernel.org
15799 S:      Supported
15800 W:      http://ceph.com/
15801 T:      git git://github.com/ceph/ceph-client.git
15802 F:      Documentation/ABI/testing/sysfs-bus-rbd
15803 F:      drivers/block/rbd.c
15804 F:      drivers/block/rbd_types.h
15805
15806 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15807 M:      Paul Mackerras <paulus@samba.org>
15808 L:      linux-fbdev@vger.kernel.org
15809 S:      Maintained
15810 F:      drivers/video/fbdev/aty/aty128fb.c
15811
15812 RAINSHADOW-CEC DRIVER
15813 M:      Hans Verkuil <hverkuil@xs4all.nl>
15814 L:      linux-media@vger.kernel.org
15815 S:      Maintained
15816 T:      git git://linuxtv.org/media_tree.git
15817 F:      drivers/media/cec/usb/rainshadow/
15818
15819 RALINK MIPS ARCHITECTURE
15820 M:      John Crispin <john@phrozen.org>
15821 L:      linux-mips@vger.kernel.org
15822 S:      Maintained
15823 F:      arch/mips/ralink
15824
15825 RALINK RT2X00 WIRELESS LAN DRIVER
15826 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15827 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15828 L:      linux-wireless@vger.kernel.org
15829 S:      Maintained
15830 F:      drivers/net/wireless/ralink/rt2x00/
15831
15832 RAMDISK RAM BLOCK DEVICE DRIVER
15833 M:      Jens Axboe <axboe@kernel.dk>
15834 S:      Maintained
15835 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15836 F:      drivers/block/brd.c
15837
15838 RANCHU VIRTUAL BOARD FOR MIPS
15839 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15840 L:      linux-mips@vger.kernel.org
15841 S:      Supported
15842 F:      arch/mips/configs/generic/board-ranchu.config
15843 F:      arch/mips/generic/board-ranchu.c
15844
15845 RANDOM NUMBER DRIVER
15846 M:      "Theodore Ts'o" <tytso@mit.edu>
15847 S:      Maintained
15848 F:      drivers/char/random.c
15849
15850 RAPIDIO SUBSYSTEM
15851 M:      Matt Porter <mporter@kernel.crashing.org>
15852 M:      Alexandre Bounine <alex.bou9@gmail.com>
15853 S:      Maintained
15854 F:      drivers/rapidio/
15855
15856 RAS INFRASTRUCTURE
15857 M:      Tony Luck <tony.luck@intel.com>
15858 M:      Borislav Petkov <bp@alien8.de>
15859 L:      linux-edac@vger.kernel.org
15860 S:      Maintained
15861 F:      Documentation/admin-guide/ras.rst
15862 F:      drivers/ras/
15863 F:      include/linux/ras.h
15864 F:      include/ras/ras_event.h
15865
15866 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15867 L:      linux-wireless@vger.kernel.org
15868 S:      Orphan
15869 F:      drivers/net/wireless/ray*
15870
15871 RC-CORE / LIRC FRAMEWORK
15872 M:      Sean Young <sean@mess.org>
15873 L:      linux-media@vger.kernel.org
15874 S:      Maintained
15875 W:      http://linuxtv.org
15876 T:      git git://linuxtv.org/media_tree.git
15877 F:      Documentation/driver-api/media/rc-core.rst
15878 F:      Documentation/userspace-api/media/rc/
15879 F:      drivers/media/rc/
15880 F:      include/media/rc-map.h
15881 F:      include/media/rc-core.h
15882 F:      include/uapi/linux/lirc.h
15883
15884 RCMM REMOTE CONTROLS DECODER
15885 M:      Patrick Lerda <patrick9876@free.fr>
15886 S:      Maintained
15887 F:      drivers/media/rc/ir-rcmm-decoder.c
15888
15889 RCUTORTURE TEST FRAMEWORK
15890 M:      "Paul E. McKenney" <paulmck@kernel.org>
15891 M:      Josh Triplett <josh@joshtriplett.org>
15892 R:      Steven Rostedt <rostedt@goodmis.org>
15893 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15894 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15895 L:      rcu@vger.kernel.org
15896 S:      Supported
15897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15898 F:      tools/testing/selftests/rcutorture
15899
15900 RDACM20 Camera Sensor
15901 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15902 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15903 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15904 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15905 L:      linux-media@vger.kernel.org
15906 S:      Maintained
15907 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15908 F:      drivers/media/i2c/max9271.c
15909 F:      drivers/media/i2c/max9271.h
15910 F:      drivers/media/i2c/rdacm20.c
15911
15912 RDACM21 Camera Sensor
15913 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15914 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15915 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15916 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15917 L:      linux-media@vger.kernel.org
15918 S:      Maintained
15919 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15920 F:      drivers/media/i2c/max9271.c
15921 F:      drivers/media/i2c/max9271.h
15922 F:      drivers/media/i2c/rdacm21.c
15923
15924 RDC R-321X SoC
15925 M:      Florian Fainelli <florian@openwrt.org>
15926 S:      Maintained
15927
15928 RDC R6040 FAST ETHERNET DRIVER
15929 M:      Florian Fainelli <f.fainelli@gmail.com>
15930 L:      netdev@vger.kernel.org
15931 S:      Maintained
15932 F:      drivers/net/ethernet/rdc/r6040.c
15933
15934 RDMAVT - RDMA verbs software
15935 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15936 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15937 L:      linux-rdma@vger.kernel.org
15938 S:      Supported
15939 F:      drivers/infiniband/sw/rdmavt
15940
15941 RDS - RELIABLE DATAGRAM SOCKETS
15942 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15943 L:      netdev@vger.kernel.org
15944 L:      linux-rdma@vger.kernel.org
15945 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15946 S:      Supported
15947 W:      https://oss.oracle.com/projects/rds/
15948 F:      Documentation/networking/rds.rst
15949 F:      net/rds/
15950
15951 RDT - RESOURCE ALLOCATION
15952 M:      Fenghua Yu <fenghua.yu@intel.com>
15953 M:      Reinette Chatre <reinette.chatre@intel.com>
15954 L:      linux-kernel@vger.kernel.org
15955 S:      Supported
15956 F:      Documentation/x86/resctrl*
15957 F:      arch/x86/include/asm/resctrl.h
15958 F:      arch/x86/kernel/cpu/resctrl/
15959 F:      tools/testing/selftests/resctrl/
15960
15961 READ-COPY UPDATE (RCU)
15962 M:      "Paul E. McKenney" <paulmck@kernel.org>
15963 M:      Josh Triplett <josh@joshtriplett.org>
15964 R:      Steven Rostedt <rostedt@goodmis.org>
15965 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15966 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15967 R:      Joel Fernandes <joel@joelfernandes.org>
15968 L:      rcu@vger.kernel.org
15969 S:      Supported
15970 W:      http://www.rdrop.com/users/paulmck/RCU/
15971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15972 F:      Documentation/RCU/
15973 F:      include/linux/rcu*
15974 F:      kernel/rcu/
15975 X:      Documentation/RCU/torture.rst
15976 X:      include/linux/srcu*.h
15977 X:      kernel/rcu/srcu*.c
15978
15979 REAL TIME CLOCK (RTC) SUBSYSTEM
15980 M:      Alessandro Zummo <a.zummo@towertech.it>
15981 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15982 L:      linux-rtc@vger.kernel.org
15983 S:      Maintained
15984 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15986 F:      Documentation/admin-guide/rtc.rst
15987 F:      Documentation/devicetree/bindings/rtc/
15988 F:      drivers/rtc/
15989 F:      include/linux/platform_data/rtc-*
15990 F:      include/linux/rtc.h
15991 F:      include/linux/rtc/
15992 F:      include/uapi/linux/rtc.h
15993 F:      tools/testing/selftests/rtc/
15994
15995 REALTEK AUDIO CODECS
15996 M:      Oder Chiou <oder_chiou@realtek.com>
15997 S:      Maintained
15998 F:      include/sound/rt*.h
15999 F:      sound/soc/codecs/rt*
16000
16001 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16002 M:      Linus Walleij <linus.walleij@linaro.org>
16003 S:      Maintained
16004 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16005 F:      drivers/net/dsa/realtek-smi*
16006 F:      drivers/net/dsa/rtl83*
16007
16008 REALTEK WIRELESS DRIVER (rtlwifi family)
16009 M:      Ping-Ke Shih <pkshih@realtek.com>
16010 L:      linux-wireless@vger.kernel.org
16011 S:      Maintained
16012 W:      https://wireless.wiki.kernel.org/
16013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16014 F:      drivers/net/wireless/realtek/rtlwifi/
16015
16016 REALTEK WIRELESS DRIVER (rtw88)
16017 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16018 L:      linux-wireless@vger.kernel.org
16019 S:      Maintained
16020 F:      drivers/net/wireless/realtek/rtw88/
16021
16022 REALTEK WIRELESS DRIVER (rtw89)
16023 M:      Ping-Ke Shih <pkshih@realtek.com>
16024 L:      linux-wireless@vger.kernel.org
16025 S:      Maintained
16026 F:      drivers/net/wireless/realtek/rtw89/
16027
16028 REDPINE WIRELESS DRIVER
16029 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16030 M:      Siva Rebbagondla <siva8118@gmail.com>
16031 L:      linux-wireless@vger.kernel.org
16032 S:      Maintained
16033 F:      drivers/net/wireless/rsi/
16034
16035 REGISTER MAP ABSTRACTION
16036 M:      Mark Brown <broonie@kernel.org>
16037 L:      linux-kernel@vger.kernel.org
16038 S:      Supported
16039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16040 F:      Documentation/devicetree/bindings/regmap/
16041 F:      drivers/base/regmap/
16042 F:      include/linux/regmap.h
16043
16044 REISERFS FILE SYSTEM
16045 L:      reiserfs-devel@vger.kernel.org
16046 S:      Supported
16047 F:      fs/reiserfs/
16048
16049 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16050 M:      Ohad Ben-Cohen <ohad@wizery.com>
16051 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16052 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16053 L:      linux-remoteproc@vger.kernel.org
16054 S:      Maintained
16055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16056 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16057 F:      Documentation/devicetree/bindings/remoteproc/
16058 F:      Documentation/staging/remoteproc.rst
16059 F:      drivers/remoteproc/
16060 F:      include/linux/remoteproc.h
16061 F:      include/linux/remoteproc/
16062
16063 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16064 M:      Ohad Ben-Cohen <ohad@wizery.com>
16065 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16066 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16067 L:      linux-remoteproc@vger.kernel.org
16068 S:      Maintained
16069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16070 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16071 F:      Documentation/staging/rpmsg.rst
16072 F:      drivers/rpmsg/
16073 F:      include/linux/rpmsg.h
16074 F:      include/linux/rpmsg/
16075 F:      include/uapi/linux/rpmsg.h
16076 F:      samples/rpmsg/
16077
16078 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16079 M:      Stephan Gerhold <stephan@gerhold.net>
16080 L:      netdev@vger.kernel.org
16081 L:      linux-remoteproc@vger.kernel.org
16082 S:      Maintained
16083 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16084
16085 RENESAS CLOCK DRIVERS
16086 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16087 L:      linux-renesas-soc@vger.kernel.org
16088 S:      Supported
16089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16090 F:      Documentation/devicetree/bindings/clock/renesas,*
16091 F:      drivers/clk/renesas/
16092
16093 RENESAS EMEV2 I2C DRIVER
16094 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16095 L:      linux-renesas-soc@vger.kernel.org
16096 S:      Supported
16097 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16098 F:      drivers/i2c/busses/i2c-emev2.c
16099
16100 RENESAS ETHERNET DRIVERS
16101 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16102 L:      netdev@vger.kernel.org
16103 L:      linux-renesas-soc@vger.kernel.org
16104 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16105 F:      drivers/net/ethernet/renesas/
16106 F:      include/linux/sh_eth.h
16107
16108 RENESAS R-CAR GYROADC DRIVER
16109 M:      Marek Vasut <marek.vasut@gmail.com>
16110 L:      linux-iio@vger.kernel.org
16111 S:      Supported
16112 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16113 F:      drivers/iio/adc/rcar-gyroadc.c
16114
16115 RENESAS R-CAR I2C DRIVERS
16116 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16117 L:      linux-renesas-soc@vger.kernel.org
16118 S:      Supported
16119 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16120 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16121 F:      drivers/i2c/busses/i2c-rcar.c
16122 F:      drivers/i2c/busses/i2c-sh_mobile.c
16123
16124 RENESAS R-CAR THERMAL DRIVERS
16125 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16126 L:      linux-renesas-soc@vger.kernel.org
16127 S:      Supported
16128 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16129 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16130 F:      drivers/thermal/rcar_gen3_thermal.c
16131 F:      drivers/thermal/rcar_thermal.c
16132
16133 RENESAS RIIC DRIVER
16134 M:      Chris Brandt <chris.brandt@renesas.com>
16135 L:      linux-renesas-soc@vger.kernel.org
16136 S:      Supported
16137 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16138 F:      drivers/i2c/busses/i2c-riic.c
16139
16140 RENESAS USB PHY DRIVER
16141 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16142 L:      linux-renesas-soc@vger.kernel.org
16143 S:      Maintained
16144 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16145
16146 RENESAS RZ/G2L A/D DRIVER
16147 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16148 L:      linux-iio@vger.kernel.org
16149 L:      linux-renesas-soc@vger.kernel.org
16150 S:      Supported
16151 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16152 F:      drivers/iio/adc/rzg2l_adc.c
16153
16154 RESET CONTROLLER FRAMEWORK
16155 M:      Philipp Zabel <p.zabel@pengutronix.de>
16156 S:      Maintained
16157 T:      git git://git.pengutronix.de/git/pza/linux
16158 F:      Documentation/devicetree/bindings/reset/
16159 F:      Documentation/driver-api/reset.rst
16160 F:      drivers/reset/
16161 F:      include/dt-bindings/reset/
16162 F:      include/linux/reset-controller.h
16163 F:      include/linux/reset.h
16164 F:      include/linux/reset/
16165 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16166
16167 RESTARTABLE SEQUENCES SUPPORT
16168 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16169 M:      Peter Zijlstra <peterz@infradead.org>
16170 M:      "Paul E. McKenney" <paulmck@kernel.org>
16171 M:      Boqun Feng <boqun.feng@gmail.com>
16172 L:      linux-kernel@vger.kernel.org
16173 S:      Supported
16174 F:      include/trace/events/rseq.h
16175 F:      include/uapi/linux/rseq.h
16176 F:      kernel/rseq.c
16177 F:      tools/testing/selftests/rseq/
16178
16179 RFKILL
16180 M:      Johannes Berg <johannes@sipsolutions.net>
16181 L:      linux-wireless@vger.kernel.org
16182 S:      Maintained
16183 W:      https://wireless.wiki.kernel.org/
16184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16186 F:      Documentation/ABI/stable/sysfs-class-rfkill
16187 F:      Documentation/driver-api/rfkill.rst
16188 F:      include/linux/rfkill.h
16189 F:      include/uapi/linux/rfkill.h
16190 F:      net/rfkill/
16191
16192 RHASHTABLE
16193 M:      Thomas Graf <tgraf@suug.ch>
16194 M:      Herbert Xu <herbert@gondor.apana.org.au>
16195 L:      netdev@vger.kernel.org
16196 S:      Maintained
16197 F:      include/linux/rhashtable-types.h
16198 F:      include/linux/rhashtable.h
16199 F:      lib/rhashtable.c
16200 F:      lib/test_rhashtable.c
16201
16202 RICOH R5C592 MEMORYSTICK DRIVER
16203 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16204 S:      Maintained
16205 F:      drivers/memstick/host/r592.*
16206
16207 RICOH SMARTMEDIA/XD DRIVER
16208 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16209 S:      Maintained
16210 F:      drivers/mtd/nand/raw/r852.c
16211 F:      drivers/mtd/nand/raw/r852.h
16212
16213 RISC-V ARCHITECTURE
16214 M:      Paul Walmsley <paul.walmsley@sifive.com>
16215 M:      Palmer Dabbelt <palmer@dabbelt.com>
16216 M:      Albert Ou <aou@eecs.berkeley.edu>
16217 L:      linux-riscv@lists.infradead.org
16218 S:      Supported
16219 P:      Documentation/riscv/patch-acceptance.rst
16220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16221 F:      arch/riscv/
16222 N:      riscv
16223 K:      riscv
16224
16225 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16226 M:      Lewis Hanly <lewis.hanly@microchip.com>
16227 L:      linux-riscv@lists.infradead.org
16228 S:      Supported
16229 F:      drivers/mailbox/mailbox-mpfs.c
16230 F:      drivers/soc/microchip/
16231 F:      include/soc/microchip/mpfs.h
16232
16233 RNBD BLOCK DRIVERS
16234 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16235 M:      Jack Wang <jinpu.wang@ionos.com>
16236 L:      linux-block@vger.kernel.org
16237 S:      Maintained
16238 F:      drivers/block/rnbd/
16239
16240 ROCCAT DRIVERS
16241 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16242 S:      Maintained
16243 W:      http://sourceforge.net/projects/roccat/
16244 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16245 F:      drivers/hid/hid-roccat*
16246 F:      include/linux/hid-roccat*
16247
16248 ROCKCHIP I2S TDM DRIVER
16249 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16250 L:      linux-rockchip@lists.infradead.org
16251 S:      Maintained
16252 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16253 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16254
16255 ROCKCHIP ISP V1 DRIVER
16256 M:      Helen Koike <helen.koike@collabora.com>
16257 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16258 L:      linux-media@vger.kernel.org
16259 L:      linux-rockchip@lists.infradead.org
16260 S:      Maintained
16261 F:      Documentation/admin-guide/media/rkisp1.rst
16262 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16263 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16264 F:      drivers/media/platform/rockchip/rkisp1
16265 F:      include/uapi/linux/rkisp1-config.h
16266
16267 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16268 M:      Jacob Chen <jacob-chen@iotwrt.com>
16269 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16270 L:      linux-media@vger.kernel.org
16271 L:      linux-rockchip@lists.infradead.org
16272 S:      Maintained
16273 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16274 F:      drivers/media/platform/rockchip/rga/
16275
16276 ROCKCHIP VIDEO DECODER DRIVER
16277 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16278 L:      linux-media@vger.kernel.org
16279 L:      linux-rockchip@lists.infradead.org
16280 S:      Maintained
16281 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16282 F:      drivers/staging/media/rkvdec/
16283
16284 ROCKER DRIVER
16285 M:      Jiri Pirko <jiri@resnulli.us>
16286 L:      netdev@vger.kernel.org
16287 S:      Supported
16288 F:      drivers/net/ethernet/rocker/
16289
16290 ROCKETPORT EXPRESS/INFINITY DRIVER
16291 M:      Kevin Cernekee <cernekee@gmail.com>
16292 L:      linux-serial@vger.kernel.org
16293 S:      Odd Fixes
16294 F:      drivers/tty/serial/rp2.*
16295
16296 ROHM BD99954 CHARGER IC
16297 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16298 L:      linux-power@fi.rohmeurope.com
16299 S:      Supported
16300 F:      drivers/power/supply/bd99954-charger.c
16301 F:      drivers/power/supply/bd99954-charger.h
16302
16303 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16304 M:      Tomasz Duszynski <tduszyns@gmail.com>
16305 S:      Maintained
16306 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16307 F:      drivers/iio/light/bh1750.c
16308
16309 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16310 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16311 L:      linux-kernel@vger.kernel.org
16312 L:      linux-renesas-soc@vger.kernel.org
16313 S:      Supported
16314 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16315 F:      drivers/gpio/gpio-bd9571mwv.c
16316 F:      drivers/mfd/bd9571mwv.c
16317 F:      drivers/regulator/bd9571mwv-regulator.c
16318 F:      include/linux/mfd/bd9571mwv.h
16319
16320 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16321 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16322 L:      linux-power@fi.rohmeurope.com
16323 S:      Supported
16324 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16325 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16326 F:      drivers/clk/clk-bd718x7.c
16327 F:      drivers/gpio/gpio-bd70528.c
16328 F:      drivers/gpio/gpio-bd71815.c
16329 F:      drivers/gpio/gpio-bd71828.c
16330 F:      drivers/mfd/rohm-bd70528.c
16331 F:      drivers/mfd/rohm-bd71828.c
16332 F:      drivers/mfd/rohm-bd718x7.c
16333 F:      drivers/mfd/rohm-bd9576.c
16334 F:      drivers/power/supply/bd70528-charger.c
16335 F:      drivers/regulator/bd70528-regulator.c
16336 F:      drivers/regulator/bd71815-regulator.c
16337 F:      drivers/regulator/bd71828-regulator.c
16338 F:      drivers/regulator/bd718x7-regulator.c
16339 F:      drivers/regulator/bd9576-regulator.c
16340 F:      drivers/regulator/rohm-regulator.c
16341 F:      drivers/rtc/rtc-bd70528.c
16342 F:      drivers/watchdog/bd70528_wdt.c
16343 F:      drivers/watchdog/bd9576_wdt.c
16344 F:      include/linux/mfd/rohm-bd70528.h
16345 F:      include/linux/mfd/rohm-bd71815.h
16346 F:      include/linux/mfd/rohm-bd71828.h
16347 F:      include/linux/mfd/rohm-bd718x7.h
16348 F:      include/linux/mfd/rohm-bd957x.h
16349 F:      include/linux/mfd/rohm-generic.h
16350 F:      include/linux/mfd/rohm-shared.h
16351
16352 ROSE NETWORK LAYER
16353 M:      Ralf Baechle <ralf@linux-mips.org>
16354 L:      linux-hams@vger.kernel.org
16355 S:      Maintained
16356 W:      http://www.linux-ax25.org/
16357 F:      include/net/rose.h
16358 F:      include/uapi/linux/rose.h
16359 F:      net/rose/
16360
16361 ROTATION DRIVER FOR ALLWINNER A83T
16362 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16363 L:      linux-media@vger.kernel.org
16364 S:      Maintained
16365 T:      git git://linuxtv.org/media_tree.git
16366 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16367 F:      drivers/media/platform/sunxi/sun8i-rotate/
16368
16369 RTL2830 MEDIA DRIVER
16370 M:      Antti Palosaari <crope@iki.fi>
16371 L:      linux-media@vger.kernel.org
16372 S:      Maintained
16373 W:      https://linuxtv.org
16374 W:      http://palosaari.fi/linux/
16375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16376 T:      git git://linuxtv.org/anttip/media_tree.git
16377 F:      drivers/media/dvb-frontends/rtl2830*
16378
16379 RTL2832 MEDIA DRIVER
16380 M:      Antti Palosaari <crope@iki.fi>
16381 L:      linux-media@vger.kernel.org
16382 S:      Maintained
16383 W:      https://linuxtv.org
16384 W:      http://palosaari.fi/linux/
16385 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16386 T:      git git://linuxtv.org/anttip/media_tree.git
16387 F:      drivers/media/dvb-frontends/rtl2832*
16388
16389 RTL2832_SDR MEDIA DRIVER
16390 M:      Antti Palosaari <crope@iki.fi>
16391 L:      linux-media@vger.kernel.org
16392 S:      Maintained
16393 W:      https://linuxtv.org
16394 W:      http://palosaari.fi/linux/
16395 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16396 T:      git git://linuxtv.org/anttip/media_tree.git
16397 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16398
16399 RTL8180 WIRELESS DRIVER
16400 L:      linux-wireless@vger.kernel.org
16401 S:      Orphan
16402 W:      https://wireless.wiki.kernel.org/
16403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16404 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16405
16406 RTL8187 WIRELESS DRIVER
16407 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16408 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16409 M:      Larry Finger <Larry.Finger@lwfinger.net>
16410 L:      linux-wireless@vger.kernel.org
16411 S:      Maintained
16412 W:      https://wireless.wiki.kernel.org/
16413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16414 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16415
16416 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16417 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16418 L:      linux-wireless@vger.kernel.org
16419 S:      Maintained
16420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16421 F:      drivers/net/wireless/realtek/rtl8xxxu/
16422
16423 RTRS TRANSPORT DRIVERS
16424 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16425 M:      Jack Wang <jinpu.wang@ionos.com>
16426 L:      linux-rdma@vger.kernel.org
16427 S:      Maintained
16428 F:      drivers/infiniband/ulp/rtrs/
16429
16430 RXRPC SOCKETS (AF_RXRPC)
16431 M:      David Howells <dhowells@redhat.com>
16432 M:      Marc Dionne <marc.dionne@auristor.com>
16433 L:      linux-afs@lists.infradead.org
16434 S:      Supported
16435 W:      https://www.infradead.org/~dhowells/kafs/
16436 F:      Documentation/networking/rxrpc.rst
16437 F:      include/keys/rxrpc-type.h
16438 F:      include/net/af_rxrpc.h
16439 F:      include/trace/events/rxrpc.h
16440 F:      include/uapi/linux/rxrpc.h
16441 F:      net/rxrpc/
16442
16443 S3 SAVAGE FRAMEBUFFER DRIVER
16444 M:      Antonino Daplas <adaplas@gmail.com>
16445 L:      linux-fbdev@vger.kernel.org
16446 S:      Maintained
16447 F:      drivers/video/fbdev/savage/
16448
16449 S390
16450 M:      Heiko Carstens <hca@linux.ibm.com>
16451 M:      Vasily Gorbik <gor@linux.ibm.com>
16452 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16453 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16454 L:      linux-s390@vger.kernel.org
16455 S:      Supported
16456 W:      http://www.ibm.com/developerworks/linux/linux390/
16457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16458 F:      Documentation/driver-api/s390-drivers.rst
16459 F:      Documentation/s390/
16460 F:      arch/s390/
16461 F:      drivers/s390/
16462
16463 S390 COMMON I/O LAYER
16464 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16465 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16466 L:      linux-s390@vger.kernel.org
16467 S:      Supported
16468 W:      http://www.ibm.com/developerworks/linux/linux390/
16469 F:      drivers/s390/cio/
16470
16471 S390 DASD DRIVER
16472 M:      Stefan Haberland <sth@linux.ibm.com>
16473 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16474 L:      linux-s390@vger.kernel.org
16475 S:      Supported
16476 W:      http://www.ibm.com/developerworks/linux/linux390/
16477 F:      block/partitions/ibm.c
16478 F:      drivers/s390/block/dasd*
16479 F:      include/linux/dasd_mod.h
16480
16481 S390 IOMMU (PCI)
16482 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16483 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16484 L:      linux-s390@vger.kernel.org
16485 S:      Supported
16486 W:      http://www.ibm.com/developerworks/linux/linux390/
16487 F:      drivers/iommu/s390-iommu.c
16488
16489 S390 IUCV NETWORK LAYER
16490 M:      Julian Wiedmann <jwi@linux.ibm.com>
16491 M:      Karsten Graul <kgraul@linux.ibm.com>
16492 L:      linux-s390@vger.kernel.org
16493 L:      netdev@vger.kernel.org
16494 S:      Supported
16495 W:      http://www.ibm.com/developerworks/linux/linux390/
16496 F:      drivers/s390/net/*iucv*
16497 F:      include/net/iucv/
16498 F:      net/iucv/
16499
16500 S390 NETWORK DRIVERS
16501 M:      Julian Wiedmann <jwi@linux.ibm.com>
16502 M:      Karsten Graul <kgraul@linux.ibm.com>
16503 L:      linux-s390@vger.kernel.org
16504 L:      netdev@vger.kernel.org
16505 S:      Supported
16506 W:      http://www.ibm.com/developerworks/linux/linux390/
16507 F:      drivers/s390/net/
16508
16509 S390 PCI SUBSYSTEM
16510 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16511 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16512 L:      linux-s390@vger.kernel.org
16513 S:      Supported
16514 W:      http://www.ibm.com/developerworks/linux/linux390/
16515 F:      arch/s390/pci/
16516 F:      drivers/pci/hotplug/s390_pci_hpc.c
16517 F:      Documentation/s390/pci.rst
16518
16519 S390 VFIO AP DRIVER
16520 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16521 M:      Halil Pasic <pasic@linux.ibm.com>
16522 M:      Jason Herne <jjherne@linux.ibm.com>
16523 L:      linux-s390@vger.kernel.org
16524 S:      Supported
16525 W:      http://www.ibm.com/developerworks/linux/linux390/
16526 F:      Documentation/s390/vfio-ap.rst
16527 F:      drivers/s390/crypto/vfio_ap_drv.c
16528 F:      drivers/s390/crypto/vfio_ap_ops.c
16529 F:      drivers/s390/crypto/vfio_ap_private.h
16530
16531 S390 VFIO-CCW DRIVER
16532 M:      Eric Farman <farman@linux.ibm.com>
16533 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16534 R:      Halil Pasic <pasic@linux.ibm.com>
16535 L:      linux-s390@vger.kernel.org
16536 L:      kvm@vger.kernel.org
16537 S:      Supported
16538 F:      Documentation/s390/vfio-ccw.rst
16539 F:      drivers/s390/cio/vfio_ccw*
16540 F:      include/uapi/linux/vfio_ccw.h
16541
16542 S390 VFIO-PCI DRIVER
16543 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16544 M:      Eric Farman <farman@linux.ibm.com>
16545 L:      linux-s390@vger.kernel.org
16546 L:      kvm@vger.kernel.org
16547 S:      Supported
16548 F:      drivers/vfio/pci/vfio_pci_zdev.c
16549 F:      include/uapi/linux/vfio_zdev.h
16550
16551 S390 ZCRYPT DRIVER
16552 M:      Harald Freudenberger <freude@linux.ibm.com>
16553 L:      linux-s390@vger.kernel.org
16554 S:      Supported
16555 W:      http://www.ibm.com/developerworks/linux/linux390/
16556 F:      drivers/s390/crypto/
16557
16558 S390 ZFCP DRIVER
16559 M:      Steffen Maier <maier@linux.ibm.com>
16560 M:      Benjamin Block <bblock@linux.ibm.com>
16561 L:      linux-s390@vger.kernel.org
16562 S:      Supported
16563 W:      http://www.ibm.com/developerworks/linux/linux390/
16564 F:      drivers/s390/scsi/zfcp_*
16565
16566 S3C ADC BATTERY DRIVER
16567 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16568 L:      linux-samsung-soc@vger.kernel.org
16569 S:      Odd Fixes
16570 F:      drivers/power/supply/s3c_adc_battery.c
16571 F:      include/linux/s3c_adc_battery.h
16572
16573 S3C24XX SD/MMC Driver
16574 M:      Ben Dooks <ben-linux@fluff.org>
16575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16576 S:      Supported
16577 F:      drivers/mmc/host/s3cmci.*
16578
16579 SAA6588 RDS RECEIVER DRIVER
16580 M:      Hans Verkuil <hverkuil@xs4all.nl>
16581 L:      linux-media@vger.kernel.org
16582 S:      Odd Fixes
16583 W:      https://linuxtv.org
16584 T:      git git://linuxtv.org/media_tree.git
16585 F:      drivers/media/i2c/saa6588*
16586
16587 SAA7134 VIDEO4LINUX DRIVER
16588 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16589 L:      linux-media@vger.kernel.org
16590 S:      Odd fixes
16591 W:      https://linuxtv.org
16592 T:      git git://linuxtv.org/media_tree.git
16593 F:      Documentation/driver-api/media/drivers/saa7134*
16594 F:      drivers/media/pci/saa7134/
16595
16596 SAA7146 VIDEO4LINUX-2 DRIVER
16597 M:      Hans Verkuil <hverkuil@xs4all.nl>
16598 L:      linux-media@vger.kernel.org
16599 S:      Maintained
16600 T:      git git://linuxtv.org/media_tree.git
16601 F:      drivers/media/common/saa7146/
16602 F:      drivers/media/pci/saa7146/
16603 F:      include/media/drv-intf/saa7146*
16604
16605 SAFESETID SECURITY MODULE
16606 M:      Micah Morton <mortonm@chromium.org>
16607 S:      Supported
16608 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16609 F:      security/safesetid/
16610
16611 SAMSUNG AUDIO (ASoC) DRIVERS
16612 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16613 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16614 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16615 S:      Supported
16616 F:      Documentation/devicetree/bindings/sound/samsung*
16617 F:      sound/soc/samsung/
16618
16619 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16620 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16621 L:      linux-crypto@vger.kernel.org
16622 L:      linux-samsung-soc@vger.kernel.org
16623 S:      Maintained
16624 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16625 F:      drivers/crypto/exynos-rng.c
16626
16627 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16628 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16629 L:      linux-samsung-soc@vger.kernel.org
16630 S:      Maintained
16631 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16632 F:      drivers/char/hw_random/exynos-trng.c
16633
16634 SAMSUNG FRAMEBUFFER DRIVER
16635 M:      Jingoo Han <jingoohan1@gmail.com>
16636 L:      linux-fbdev@vger.kernel.org
16637 S:      Maintained
16638 F:      drivers/video/fbdev/s3c-fb.c
16639
16640 SAMSUNG INTERCONNECT DRIVERS
16641 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16642 M:      Artur Świgoń <a.swigon@samsung.com>
16643 L:      linux-pm@vger.kernel.org
16644 L:      linux-samsung-soc@vger.kernel.org
16645 S:      Supported
16646 F:      drivers/interconnect/samsung/
16647
16648 SAMSUNG LAPTOP DRIVER
16649 M:      Corentin Chary <corentin.chary@gmail.com>
16650 L:      platform-driver-x86@vger.kernel.org
16651 S:      Maintained
16652 F:      drivers/platform/x86/samsung-laptop.c
16653
16654 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16655 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16656 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16657 L:      linux-kernel@vger.kernel.org
16658 L:      linux-samsung-soc@vger.kernel.org
16659 S:      Supported
16660 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16661 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16662 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16663 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16664 F:      drivers/clk/clk-s2mps11.c
16665 F:      drivers/mfd/sec*.c
16666 F:      drivers/regulator/s2m*.c
16667 F:      drivers/regulator/s5m*.c
16668 F:      drivers/rtc/rtc-s5m.c
16669 F:      include/linux/mfd/samsung/
16670
16671 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16672 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16673 L:      linux-media@vger.kernel.org
16674 L:      linux-samsung-soc@vger.kernel.org
16675 S:      Maintained
16676 F:      drivers/media/platform/s3c-camif/
16677 F:      include/media/drv-intf/s3c_camif.h
16678
16679 SAMSUNG S3FWRN5 NFC DRIVER
16680 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16681 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16682 L:      linux-nfc@lists.01.org (subscribers-only)
16683 S:      Maintained
16684 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16685 F:      drivers/nfc/s3fwrn5
16686
16687 SAMSUNG S5C73M3 CAMERA DRIVER
16688 M:      Andrzej Hajda <a.hajda@samsung.com>
16689 L:      linux-media@vger.kernel.org
16690 S:      Supported
16691 F:      drivers/media/i2c/s5c73m3/*
16692
16693 SAMSUNG S5K5BAF CAMERA DRIVER
16694 M:      Andrzej Hajda <a.hajda@samsung.com>
16695 L:      linux-media@vger.kernel.org
16696 S:      Supported
16697 F:      drivers/media/i2c/s5k5baf.c
16698
16699 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16700 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16701 M:      Vladimir Zapolskiy <vz@mleia.com>
16702 L:      linux-crypto@vger.kernel.org
16703 L:      linux-samsung-soc@vger.kernel.org
16704 S:      Maintained
16705 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16706 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16707 F:      drivers/crypto/s5p-sss.c
16708
16709 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16710 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16711 L:      linux-media@vger.kernel.org
16712 S:      Supported
16713 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16714 F:      drivers/media/platform/exynos4-is/
16715
16716 SAMSUNG SOC CLOCK DRIVERS
16717 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16718 M:      Tomasz Figa <tomasz.figa@gmail.com>
16719 M:      Chanwoo Choi <cw00.choi@samsung.com>
16720 L:      linux-samsung-soc@vger.kernel.org
16721 S:      Supported
16722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16723 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16724 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16725 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16726 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16727 F:      drivers/clk/samsung/
16728 F:      include/dt-bindings/clock/exynos*.h
16729 F:      include/dt-bindings/clock/s3c*.h
16730 F:      include/dt-bindings/clock/s5p*.h
16731 F:      include/dt-bindings/clock/samsung,*.h
16732 F:      include/linux/clk/samsung.h
16733 F:      include/linux/platform_data/clk-s3c2410.h
16734
16735 SAMSUNG SPI DRIVERS
16736 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16737 M:      Andi Shyti <andi@etezian.org>
16738 L:      linux-spi@vger.kernel.org
16739 L:      linux-samsung-soc@vger.kernel.org
16740 S:      Maintained
16741 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16742 F:      drivers/spi/spi-s3c*
16743 F:      include/linux/platform_data/spi-s3c64xx.h
16744 F:      include/linux/spi/s3c24xx-fiq.h
16745
16746 SAMSUNG SXGBE DRIVERS
16747 M:      Byungho An <bh74.an@samsung.com>
16748 L:      netdev@vger.kernel.org
16749 S:      Supported
16750 F:      drivers/net/ethernet/samsung/sxgbe/
16751
16752 SAMSUNG THERMAL DRIVER
16753 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16754 L:      linux-pm@vger.kernel.org
16755 L:      linux-samsung-soc@vger.kernel.org
16756 S:      Supported
16757 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16758 F:      drivers/thermal/samsung/
16759
16760 SAMSUNG USB2 PHY DRIVER
16761 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16762 L:      linux-kernel@vger.kernel.org
16763 S:      Supported
16764 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16765 F:      Documentation/driver-api/phy/samsung-usb2.rst
16766 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16767 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16768 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16769 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16770 F:      drivers/phy/samsung/phy-samsung-usb2.c
16771 F:      drivers/phy/samsung/phy-samsung-usb2.h
16772
16773 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16774 M:      Paul Barker <paul.barker@sancloud.com>
16775 R:      Marc Murphy <marc.murphy@sancloud.com>
16776 S:      Supported
16777 F:      arch/arm/boot/dts/am335x-sancloud*
16778
16779 SC1200 WDT DRIVER
16780 M:      Zwane Mwaikambo <zwanem@gmail.com>
16781 S:      Maintained
16782 F:      drivers/watchdog/sc1200wdt.c
16783
16784 SCHEDULER
16785 M:      Ingo Molnar <mingo@redhat.com>
16786 M:      Peter Zijlstra <peterz@infradead.org>
16787 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16788 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16789 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16790 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16791 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16792 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16793 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16794 L:      linux-kernel@vger.kernel.org
16795 S:      Maintained
16796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16797 F:      include/linux/preempt.h
16798 F:      include/linux/sched.h
16799 F:      include/linux/wait.h
16800 F:      include/uapi/linux/sched.h
16801 F:      kernel/sched/
16802
16803 SCR24X CHIP CARD INTERFACE DRIVER
16804 M:      Lubomir Rintel <lkundrak@v3.sk>
16805 S:      Supported
16806 F:      drivers/char/pcmcia/scr24x_cs.c
16807
16808 SCSI RDMA PROTOCOL (SRP) INITIATOR
16809 M:      Bart Van Assche <bvanassche@acm.org>
16810 L:      linux-rdma@vger.kernel.org
16811 S:      Supported
16812 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16813 F:      drivers/infiniband/ulp/srp/
16814 F:      include/scsi/srp.h
16815
16816 SCSI RDMA PROTOCOL (SRP) TARGET
16817 M:      Bart Van Assche <bvanassche@acm.org>
16818 L:      linux-rdma@vger.kernel.org
16819 L:      target-devel@vger.kernel.org
16820 S:      Supported
16821 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16822 F:      drivers/infiniband/ulp/srpt/
16823
16824 SCSI SG DRIVER
16825 M:      Doug Gilbert <dgilbert@interlog.com>
16826 L:      linux-scsi@vger.kernel.org
16827 S:      Maintained
16828 W:      http://sg.danny.cz/sg
16829 F:      Documentation/scsi/scsi-generic.rst
16830 F:      drivers/scsi/sg.c
16831 F:      include/scsi/sg.h
16832
16833 SCSI SUBSYSTEM
16834 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16835 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16836 L:      linux-scsi@vger.kernel.org
16837 S:      Maintained
16838 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16841 F:      Documentation/devicetree/bindings/scsi/
16842 F:      drivers/scsi/
16843 F:      include/scsi/
16844
16845 SCSI TAPE DRIVER
16846 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16847 L:      linux-scsi@vger.kernel.org
16848 S:      Maintained
16849 F:      Documentation/scsi/st.rst
16850 F:      drivers/scsi/st.*
16851 F:      drivers/scsi/st_*.h
16852
16853 SCSI TARGET CORE USER DRIVER
16854 M:      Bodo Stroesser <bostroesser@gmail.com>
16855 L:      linux-scsi@vger.kernel.org
16856 L:      target-devel@vger.kernel.org
16857 S:      Supported
16858 F:      Documentation/target/tcmu-design.rst
16859 F:      drivers/target/target_core_user.c
16860 F:      include/uapi/linux/target_core_user.h
16861
16862 SCSI TARGET SUBSYSTEM
16863 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16864 L:      linux-scsi@vger.kernel.org
16865 L:      target-devel@vger.kernel.org
16866 S:      Supported
16867 W:      http://www.linux-iscsi.org
16868 Q:      https://patchwork.kernel.org/project/target-devel/list/
16869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16870 F:      Documentation/target/
16871 F:      drivers/target/
16872 F:      include/target/
16873
16874 SCTP PROTOCOL
16875 M:      Vlad Yasevich <vyasevich@gmail.com>
16876 M:      Neil Horman <nhorman@tuxdriver.com>
16877 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16878 L:      linux-sctp@vger.kernel.org
16879 S:      Maintained
16880 W:      http://lksctp.sourceforge.net
16881 F:      Documentation/networking/sctp.rst
16882 F:      include/linux/sctp.h
16883 F:      include/net/sctp/
16884 F:      include/uapi/linux/sctp.h
16885 F:      net/sctp/
16886
16887 SCx200 CPU SUPPORT
16888 M:      Jim Cromie <jim.cromie@gmail.com>
16889 S:      Odd Fixes
16890 F:      Documentation/i2c/busses/scx200_acb.rst
16891 F:      arch/x86/platform/scx200/
16892 F:      drivers/i2c/busses/scx200*
16893 F:      drivers/mtd/maps/scx200_docflash.c
16894 F:      drivers/watchdog/scx200_wdt.c
16895 F:      include/linux/scx200.h
16896
16897 SCx200 GPIO DRIVER
16898 M:      Jim Cromie <jim.cromie@gmail.com>
16899 S:      Maintained
16900 F:      drivers/char/scx200_gpio.c
16901 F:      include/linux/scx200_gpio.h
16902
16903 SCx200 HRT CLOCKSOURCE DRIVER
16904 M:      Jim Cromie <jim.cromie@gmail.com>
16905 S:      Maintained
16906 F:      drivers/clocksource/scx200_hrt.c
16907
16908 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16909 M:      Sascha Sommer <saschasommer@freenet.de>
16910 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16911 S:      Maintained
16912 F:      drivers/mmc/host/sdricoh_cs.c
16913
16914 SECO BOARDS CEC DRIVER
16915 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16916 S:      Maintained
16917 F:      drivers/media/cec/platform/seco/seco-cec.c
16918 F:      drivers/media/cec/platform/seco/seco-cec.h
16919
16920 SECURE COMPUTING
16921 M:      Kees Cook <keescook@chromium.org>
16922 R:      Andy Lutomirski <luto@amacapital.net>
16923 R:      Will Drewry <wad@chromium.org>
16924 S:      Supported
16925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16926 F:      Documentation/userspace-api/seccomp_filter.rst
16927 F:      include/linux/seccomp.h
16928 F:      include/uapi/linux/seccomp.h
16929 F:      kernel/seccomp.c
16930 F:      tools/testing/selftests/kselftest_harness.h
16931 F:      tools/testing/selftests/seccomp/*
16932 K:      \bsecure_computing
16933 K:      \bTIF_SECCOMP\b
16934
16935 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16936 M:      Al Cooper <alcooperx@gmail.com>
16937 L:      linux-mmc@vger.kernel.org
16938 L:      bcm-kernel-feedback-list@broadcom.com
16939 S:      Maintained
16940 F:      drivers/mmc/host/sdhci-brcmstb*
16941
16942 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16943 M:      Adrian Hunter <adrian.hunter@intel.com>
16944 L:      linux-mmc@vger.kernel.org
16945 S:      Maintained
16946 F:      drivers/mmc/host/sdhci*
16947
16948 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16949 M:      Eugen Hristev <eugen.hristev@microchip.com>
16950 L:      linux-mmc@vger.kernel.org
16951 S:      Supported
16952 F:      drivers/mmc/host/sdhci-of-at91.c
16953
16954 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16955 M:      Ben Dooks <ben-linux@fluff.org>
16956 M:      Jaehoon Chung <jh80.chung@samsung.com>
16957 L:      linux-mmc@vger.kernel.org
16958 S:      Maintained
16959 F:      drivers/mmc/host/sdhci-s3c*
16960
16961 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16962 M:      Viresh Kumar <vireshk@kernel.org>
16963 L:      linux-mmc@vger.kernel.org
16964 S:      Maintained
16965 F:      drivers/mmc/host/sdhci-spear.c
16966
16967 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16968 M:      Kishon Vijay Abraham I <kishon@ti.com>
16969 L:      linux-mmc@vger.kernel.org
16970 S:      Maintained
16971 F:      drivers/mmc/host/sdhci-omap.c
16972
16973 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16974 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16975 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16976 L:      linux-block@vger.kernel.org
16977 S:      Supported
16978 F:      block/opal_proto.h
16979 F:      block/sed*
16980 F:      include/linux/sed*
16981 F:      include/uapi/linux/sed*
16982
16983 SECURITY CONTACT
16984 M:      Security Officers <security@kernel.org>
16985 S:      Supported
16986 F:      Documentation/admin-guide/security-bugs.rst
16987
16988 SECURITY SUBSYSTEM
16989 M:      James Morris <jmorris@namei.org>
16990 M:      "Serge E. Hallyn" <serge@hallyn.com>
16991 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16992 S:      Supported
16993 W:      http://kernsec.org/
16994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16995 F:      security/
16996 X:      security/selinux/
16997
16998 SELINUX SECURITY MODULE
16999 M:      Paul Moore <paul@paul-moore.com>
17000 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17001 M:      Eric Paris <eparis@parisplace.org>
17002 L:      selinux@vger.kernel.org
17003 S:      Supported
17004 W:      https://selinuxproject.org
17005 W:      https://github.com/SELinuxProject
17006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17007 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17008 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17009 F:      Documentation/admin-guide/LSM/SELinux.rst
17010 F:      include/trace/events/avc.h
17011 F:      include/uapi/linux/selinux_netlink.h
17012 F:      scripts/selinux/
17013 F:      security/selinux/
17014
17015 SENSABLE PHANTOM
17016 M:      Jiri Slaby <jirislaby@kernel.org>
17017 S:      Maintained
17018 F:      drivers/misc/phantom.c
17019 F:      include/uapi/linux/phantom.h
17020
17021 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17022 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17023 S:      Maintained
17024 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17025 F:      drivers/iio/chemical/scd30.h
17026 F:      drivers/iio/chemical/scd30_core.c
17027 F:      drivers/iio/chemical/scd30_i2c.c
17028 F:      drivers/iio/chemical/scd30_serial.c
17029
17030 SENSIRION SGP40 GAS SENSOR DRIVER
17031 M:      Andreas Klinger <ak@it-klinger.de>
17032 S:      Maintained
17033 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17034 F:      drivers/iio/chemical/sgp40.c
17035
17036 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17037 M:      Tomasz Duszynski <tduszyns@gmail.com>
17038 S:      Maintained
17039 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17040 F:      drivers/iio/chemical/sps30.c
17041 F:      drivers/iio/chemical/sps30_i2c.c
17042 F:      drivers/iio/chemical/sps30_serial.c
17043
17044 SERIAL DEVICE BUS
17045 M:      Rob Herring <robh@kernel.org>
17046 L:      linux-serial@vger.kernel.org
17047 S:      Maintained
17048 F:      Documentation/devicetree/bindings/serial/serial.yaml
17049 F:      drivers/tty/serdev/
17050 F:      include/linux/serdev.h
17051
17052 SERIAL DRIVERS
17053 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17054 L:      linux-serial@vger.kernel.org
17055 S:      Maintained
17056 F:      Documentation/devicetree/bindings/serial/
17057 F:      drivers/tty/serial/
17058
17059 SERIAL IR RECEIVER
17060 M:      Sean Young <sean@mess.org>
17061 L:      linux-media@vger.kernel.org
17062 S:      Maintained
17063 F:      drivers/media/rc/serial_ir.c
17064
17065 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17066 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17067 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17068 S:      Maintained
17069 F:      Documentation/devicetree/bindings/slimbus/
17070 F:      drivers/slimbus/
17071 F:      include/linux/slimbus.h
17072
17073 SFC NETWORK DRIVER
17074 M:      Edward Cree <ecree.xilinx@gmail.com>
17075 M:      Martin Habets <habetsm.xilinx@gmail.com>
17076 L:      netdev@vger.kernel.org
17077 S:      Supported
17078 F:      drivers/net/ethernet/sfc/
17079
17080 SFF/SFP/SFP+ MODULE SUPPORT
17081 M:      Russell King <linux@armlinux.org.uk>
17082 L:      netdev@vger.kernel.org
17083 S:      Maintained
17084 F:      drivers/net/phy/phylink.c
17085 F:      drivers/net/phy/sfp*
17086 F:      include/linux/mdio/mdio-i2c.h
17087 F:      include/linux/phylink.h
17088 F:      include/linux/sfp.h
17089 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)
17090
17091 SGI GRU DRIVER
17092 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17093 S:      Maintained
17094 F:      drivers/misc/sgi-gru/
17095
17096 SGI XP/XPC/XPNET DRIVER
17097 M:      Robin Holt <robinmholt@gmail.com>
17098 M:      Steve Wahl <steve.wahl@hpe.com>
17099 R:      Mike Travis <mike.travis@hpe.com>
17100 S:      Maintained
17101 F:      drivers/misc/sgi-xp/
17102
17103 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17104 M:      Karsten Graul <kgraul@linux.ibm.com>
17105 L:      linux-s390@vger.kernel.org
17106 S:      Supported
17107 W:      http://www.ibm.com/developerworks/linux/linux390/
17108 F:      net/smc/
17109
17110 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17111 M:      Linus Walleij <linus.walleij@linaro.org>
17112 L:      linux-iio@vger.kernel.org
17113 S:      Maintained
17114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17115 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17116 F:      drivers/iio/light/gp2ap002.c
17117
17118 SHARP RJ54N1CB0C SENSOR DRIVER
17119 M:      Jacopo Mondi <jacopo@jmondi.org>
17120 L:      linux-media@vger.kernel.org
17121 S:      Odd fixes
17122 T:      git git://linuxtv.org/media_tree.git
17123 F:      drivers/media/i2c/rj54n1cb0c.c
17124 F:      include/media/i2c/rj54n1cb0c.h
17125
17126 SH_VOU V4L2 OUTPUT DRIVER
17127 L:      linux-media@vger.kernel.org
17128 S:      Orphan
17129 F:      drivers/media/platform/sh_vou.c
17130 F:      include/media/drv-intf/sh_vou.h
17131
17132 SI2157 MEDIA DRIVER
17133 M:      Antti Palosaari <crope@iki.fi>
17134 L:      linux-media@vger.kernel.org
17135 S:      Maintained
17136 W:      https://linuxtv.org
17137 W:      http://palosaari.fi/linux/
17138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17139 T:      git git://linuxtv.org/anttip/media_tree.git
17140 F:      drivers/media/tuners/si2157*
17141
17142 SI2165 MEDIA DRIVER
17143 M:      Matthias Schwarzott <zzam@gentoo.org>
17144 L:      linux-media@vger.kernel.org
17145 S:      Maintained
17146 W:      https://linuxtv.org
17147 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17148 F:      drivers/media/dvb-frontends/si2165*
17149
17150 SI2168 MEDIA DRIVER
17151 M:      Antti Palosaari <crope@iki.fi>
17152 L:      linux-media@vger.kernel.org
17153 S:      Maintained
17154 W:      https://linuxtv.org
17155 W:      http://palosaari.fi/linux/
17156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17157 T:      git git://linuxtv.org/anttip/media_tree.git
17158 F:      drivers/media/dvb-frontends/si2168*
17159
17160 SI470X FM RADIO RECEIVER I2C DRIVER
17161 M:      Hans Verkuil <hverkuil@xs4all.nl>
17162 L:      linux-media@vger.kernel.org
17163 S:      Odd Fixes
17164 W:      https://linuxtv.org
17165 T:      git git://linuxtv.org/media_tree.git
17166 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17167
17168 SI470X FM RADIO RECEIVER USB DRIVER
17169 M:      Hans Verkuil <hverkuil@xs4all.nl>
17170 L:      linux-media@vger.kernel.org
17171 S:      Maintained
17172 W:      https://linuxtv.org
17173 T:      git git://linuxtv.org/media_tree.git
17174 F:      drivers/media/radio/si470x/radio-si470x-common.c
17175 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17176 F:      drivers/media/radio/si470x/radio-si470x.h
17177
17178 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17179 M:      Eduardo Valentin <edubezval@gmail.com>
17180 L:      linux-media@vger.kernel.org
17181 S:      Odd Fixes
17182 W:      https://linuxtv.org
17183 T:      git git://linuxtv.org/media_tree.git
17184 F:      drivers/media/radio/si4713/si4713.?
17185
17186 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17187 M:      Eduardo Valentin <edubezval@gmail.com>
17188 L:      linux-media@vger.kernel.org
17189 S:      Odd Fixes
17190 W:      https://linuxtv.org
17191 T:      git git://linuxtv.org/media_tree.git
17192 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17193
17194 SI4713 FM RADIO TRANSMITTER USB DRIVER
17195 M:      Hans Verkuil <hverkuil@xs4all.nl>
17196 L:      linux-media@vger.kernel.org
17197 S:      Maintained
17198 W:      https://linuxtv.org
17199 T:      git git://linuxtv.org/media_tree.git
17200 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17201
17202 SIANO DVB DRIVER
17203 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17204 L:      linux-media@vger.kernel.org
17205 S:      Odd fixes
17206 W:      https://linuxtv.org
17207 T:      git git://linuxtv.org/media_tree.git
17208 F:      drivers/media/common/siano/
17209 F:      drivers/media/mmc/siano/
17210 F:      drivers/media/usb/siano/
17211 F:      drivers/media/usb/siano/
17212
17213 SIFIVE DRIVERS
17214 M:      Palmer Dabbelt <palmer@dabbelt.com>
17215 M:      Paul Walmsley <paul.walmsley@sifive.com>
17216 L:      linux-riscv@lists.infradead.org
17217 S:      Supported
17218 T:      git git://github.com/sifive/riscv-linux.git
17219 N:      sifive
17220 K:      [^@]sifive
17221
17222 SIFIVE FU540 SYSTEM-ON-CHIP
17223 M:      Paul Walmsley <paul.walmsley@sifive.com>
17224 M:      Palmer Dabbelt <palmer@dabbelt.com>
17225 L:      linux-riscv@lists.infradead.org
17226 S:      Supported
17227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17228 N:      fu540
17229 K:      fu540
17230
17231 SIFIVE PDMA DRIVER
17232 M:      Green Wan <green.wan@sifive.com>
17233 S:      Maintained
17234 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17235 F:      drivers/dma/sf-pdma/
17236
17237 SILEAD TOUCHSCREEN DRIVER
17238 M:      Hans de Goede <hdegoede@redhat.com>
17239 L:      linux-input@vger.kernel.org
17240 L:      platform-driver-x86@vger.kernel.org
17241 S:      Maintained
17242 F:      drivers/input/touchscreen/silead.c
17243 F:      drivers/platform/x86/touchscreen_dmi.c
17244
17245 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17246 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17247 S:      Supported
17248 F:      drivers/staging/wfx/
17249
17250 SILICON MOTION SM712 FRAME BUFFER DRIVER
17251 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17252 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17253 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17254 L:      linux-fbdev@vger.kernel.org
17255 S:      Maintained
17256 F:      Documentation/fb/sm712fb.rst
17257 F:      drivers/video/fbdev/sm712*
17258
17259 SILVACO I3C DUAL-ROLE MASTER
17260 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17261 M:      Conor Culhane <conor.culhane@silvaco.com>
17262 L:      linux-i3c@lists.infradead.org
17263 S:      Maintained
17264 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17265 F:      drivers/i3c/master/svc-i3c-master.c
17266
17267 SIMPLEFB FB DRIVER
17268 M:      Hans de Goede <hdegoede@redhat.com>
17269 L:      linux-fbdev@vger.kernel.org
17270 S:      Maintained
17271 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17272 F:      drivers/video/fbdev/simplefb.c
17273 F:      include/linux/platform_data/simplefb.h
17274
17275 SIMTEC EB110ATX (Chalice CATS)
17276 M:      Simtec Linux Team <linux@simtec.co.uk>
17277 S:      Supported
17278 W:      http://www.simtec.co.uk/products/EB110ATX/
17279
17280 SIMTEC EB2410ITX (BAST)
17281 M:      Simtec Linux Team <linux@simtec.co.uk>
17282 S:      Supported
17283 W:      http://www.simtec.co.uk/products/EB2410ITX/
17284 F:      arch/arm/mach-s3c/bast-ide.c
17285 F:      arch/arm/mach-s3c/bast-irq.c
17286 F:      arch/arm/mach-s3c/mach-bast.c
17287
17288 SIOX
17289 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17290 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17291 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17292 S:      Supported
17293 F:      drivers/gpio/gpio-siox.c
17294 F:      drivers/siox/*
17295 F:      include/trace/events/siox.h
17296
17297 SIPHASH PRF ROUTINES
17298 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17299 S:      Maintained
17300 F:      include/linux/siphash.h
17301 F:      lib/siphash.c
17302 F:      lib/test_siphash.c
17303
17304 SIS 190 ETHERNET DRIVER
17305 M:      Francois Romieu <romieu@fr.zoreil.com>
17306 L:      netdev@vger.kernel.org
17307 S:      Maintained
17308 F:      drivers/net/ethernet/sis/sis190.c
17309
17310 SIS 900/7016 FAST ETHERNET DRIVER
17311 M:      Daniele Venzano <venza@brownhat.org>
17312 L:      netdev@vger.kernel.org
17313 S:      Maintained
17314 W:      http://www.brownhat.org/sis900.html
17315 F:      drivers/net/ethernet/sis/sis900.*
17316
17317 SIS FRAMEBUFFER DRIVER
17318 M:      Thomas Winischhofer <thomas@winischhofer.net>
17319 S:      Maintained
17320 W:      http://www.winischhofer.net/linuxsisvga.shtml
17321 F:      Documentation/fb/sisfb.rst
17322 F:      drivers/video/fbdev/sis/
17323 F:      include/video/sisfb.h
17324
17325 SIS I2C TOUCHSCREEN DRIVER
17326 M:      Mika Penttilä <mika.penttila@nextfour.com>
17327 L:      linux-input@vger.kernel.org
17328 S:      Maintained
17329 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17330 F:      drivers/input/touchscreen/sis_i2c.c
17331
17332 SIS USB2VGA DRIVER
17333 M:      Thomas Winischhofer <thomas@winischhofer.net>
17334 S:      Maintained
17335 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17336 F:      drivers/usb/misc/sisusbvga/
17337
17338 SLAB ALLOCATOR
17339 M:      Christoph Lameter <cl@linux.com>
17340 M:      Pekka Enberg <penberg@kernel.org>
17341 M:      David Rientjes <rientjes@google.com>
17342 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17343 M:      Andrew Morton <akpm@linux-foundation.org>
17344 M:      Vlastimil Babka <vbabka@suse.cz>
17345 L:      linux-mm@kvack.org
17346 S:      Maintained
17347 F:      include/linux/sl?b*.h
17348 F:      mm/sl?b*
17349
17350 SLEEPABLE READ-COPY UPDATE (SRCU)
17351 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17352 M:      "Paul E. McKenney" <paulmck@kernel.org>
17353 M:      Josh Triplett <josh@joshtriplett.org>
17354 R:      Steven Rostedt <rostedt@goodmis.org>
17355 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17356 L:      rcu@vger.kernel.org
17357 S:      Supported
17358 W:      http://www.rdrop.com/users/paulmck/RCU/
17359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17360 F:      include/linux/srcu*.h
17361 F:      kernel/rcu/srcu*.c
17362
17363 SMACK SECURITY MODULE
17364 M:      Casey Schaufler <casey@schaufler-ca.com>
17365 L:      linux-security-module@vger.kernel.org
17366 S:      Maintained
17367 W:      http://schaufler-ca.com
17368 T:      git git://github.com/cschaufler/smack-next
17369 F:      Documentation/admin-guide/LSM/Smack.rst
17370 F:      security/smack/
17371
17372 SMC91x ETHERNET DRIVER
17373 M:      Nicolas Pitre <nico@fluxnic.net>
17374 S:      Odd Fixes
17375 F:      drivers/net/ethernet/smsc/smc91x.*
17376
17377 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17378 M:      Mark Rutland <mark.rutland@arm.com>
17379 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17380 M:      Sudeep Holla <sudeep.holla@arm.com>
17381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17382 S:      Maintained
17383 F:      drivers/firmware/smccc/
17384 F:      include/linux/arm-smccc.h
17385
17386 SMM665 HARDWARE MONITOR DRIVER
17387 M:      Guenter Roeck <linux@roeck-us.net>
17388 L:      linux-hwmon@vger.kernel.org
17389 S:      Maintained
17390 F:      Documentation/hwmon/smm665.rst
17391 F:      drivers/hwmon/smm665.c
17392
17393 SMSC EMC2103 HARDWARE MONITOR DRIVER
17394 M:      Steve Glendinning <steve.glendinning@shawell.net>
17395 L:      linux-hwmon@vger.kernel.org
17396 S:      Maintained
17397 F:      Documentation/hwmon/emc2103.rst
17398 F:      drivers/hwmon/emc2103.c
17399
17400 SMSC SCH5627 HARDWARE MONITOR DRIVER
17401 M:      Hans de Goede <hdegoede@redhat.com>
17402 L:      linux-hwmon@vger.kernel.org
17403 S:      Supported
17404 F:      Documentation/hwmon/sch5627.rst
17405 F:      drivers/hwmon/sch5627.c
17406
17407 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17408 M:      Steve Glendinning <steve.glendinning@shawell.net>
17409 L:      linux-fbdev@vger.kernel.org
17410 S:      Maintained
17411 F:      drivers/video/fbdev/smscufx.c
17412
17413 SMSC47B397 HARDWARE MONITOR DRIVER
17414 M:      Jean Delvare <jdelvare@suse.com>
17415 L:      linux-hwmon@vger.kernel.org
17416 S:      Maintained
17417 F:      Documentation/hwmon/smsc47b397.rst
17418 F:      drivers/hwmon/smsc47b397.c
17419
17420 SMSC911x ETHERNET DRIVER
17421 M:      Steve Glendinning <steve.glendinning@shawell.net>
17422 L:      netdev@vger.kernel.org
17423 S:      Maintained
17424 F:      drivers/net/ethernet/smsc/smsc911x.*
17425 F:      include/linux/smsc911x.h
17426
17427 SMSC9420 PCI ETHERNET DRIVER
17428 M:      Steve Glendinning <steve.glendinning@shawell.net>
17429 L:      netdev@vger.kernel.org
17430 S:      Maintained
17431 F:      drivers/net/ethernet/smsc/smsc9420.*
17432
17433 SOCIONEXT (SNI) AVE NETWORK DRIVER
17434 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17435 L:      netdev@vger.kernel.org
17436 S:      Maintained
17437 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17438 F:      drivers/net/ethernet/socionext/sni_ave.c
17439
17440 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17441 M:      Jassi Brar <jaswinder.singh@linaro.org>
17442 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17443 L:      netdev@vger.kernel.org
17444 S:      Maintained
17445 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17446 F:      drivers/net/ethernet/socionext/netsec.c
17447
17448 SOCIONEXT (SNI) Synquacer SPI DRIVER
17449 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17450 M:      Jassi Brar <jaswinder.singh@linaro.org>
17451 L:      linux-spi@vger.kernel.org
17452 S:      Maintained
17453 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17454 F:      drivers/spi/spi-synquacer.c
17455
17456 SOCIONEXT SYNQUACER I2C DRIVER
17457 M:      Ard Biesheuvel <ardb@kernel.org>
17458 L:      linux-i2c@vger.kernel.org
17459 S:      Maintained
17460 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17461 F:      drivers/i2c/busses/i2c-synquacer.c
17462
17463 SOCIONEXT UNIPHIER SOUND DRIVER
17464 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17465 S:      Orphan
17466 F:      sound/soc/uniphier/
17467
17468 SOEKRIS NET48XX LED SUPPORT
17469 M:      Chris Boot <bootc@bootc.net>
17470 S:      Maintained
17471 F:      drivers/leds/leds-net48xx.c
17472
17473 SOFT-IWARP DRIVER (siw)
17474 M:      Bernard Metzler <bmt@zurich.ibm.com>
17475 L:      linux-rdma@vger.kernel.org
17476 S:      Supported
17477 F:      drivers/infiniband/sw/siw/
17478 F:      include/uapi/rdma/siw-abi.h
17479
17480 SOFT-ROCE DRIVER (rxe)
17481 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17482 L:      linux-rdma@vger.kernel.org
17483 S:      Supported
17484 F:      drivers/infiniband/sw/rxe/
17485 F:      include/uapi/rdma/rdma_user_rxe.h
17486
17487 SOFTLOGIC 6x10 MPEG CODEC
17488 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17489 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17490 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17491 M:      Ismael Luceno <ismael@iodev.co.uk>
17492 L:      linux-media@vger.kernel.org
17493 S:      Supported
17494 F:      drivers/media/pci/solo6x10/
17495
17496 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17497 M:      James Morse <james.morse@arm.com>
17498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17499 S:      Maintained
17500 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17501 F:      drivers/firmware/arm_sdei.c
17502 F:      include/linux/arm_sdei.h
17503 F:      include/uapi/linux/arm_sdei.h
17504
17505 SOFTWARE NODES
17506 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17507 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17508 L:      linux-acpi@vger.kernel.org
17509 S:      Maintained
17510 F:      drivers/base/swnode.c
17511
17512 SOFTWARE RAID (Multiple Disks) SUPPORT
17513 M:      Song Liu <song@kernel.org>
17514 L:      linux-raid@vger.kernel.org
17515 S:      Supported
17516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17517 F:      drivers/md/Kconfig
17518 F:      drivers/md/Makefile
17519 F:      drivers/md/md*
17520 F:      drivers/md/raid*
17521 F:      include/linux/raid/
17522 F:      include/uapi/linux/raid/
17523
17524 SOLIDRUN CLEARFOG SUPPORT
17525 M:      Russell King <linux@armlinux.org.uk>
17526 S:      Maintained
17527 F:      arch/arm/boot/dts/armada-388-clearfog*
17528 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17529
17530 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17531 M:      Russell King <linux@armlinux.org.uk>
17532 S:      Maintained
17533 F:      arch/arm/boot/dts/imx6*-cubox-i*
17534 F:      arch/arm/boot/dts/imx6*-hummingboard*
17535 F:      arch/arm/boot/dts/imx6*-sr-*
17536
17537 SONIC NETWORK DRIVER
17538 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17539 L:      netdev@vger.kernel.org
17540 S:      Maintained
17541 F:      drivers/net/ethernet/natsemi/sonic.*
17542
17543 SONICS SILICON BACKPLANE DRIVER (SSB)
17544 M:      Michael Buesch <m@bues.ch>
17545 L:      linux-wireless@vger.kernel.org
17546 S:      Maintained
17547 F:      drivers/ssb/
17548 F:      include/linux/ssb/
17549
17550 SONY IMX208 SENSOR DRIVER
17551 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17552 L:      linux-media@vger.kernel.org
17553 S:      Maintained
17554 T:      git git://linuxtv.org/media_tree.git
17555 F:      drivers/media/i2c/imx208.c
17556
17557 SONY IMX214 SENSOR DRIVER
17558 M:      Ricardo Ribalda <ribalda@kernel.org>
17559 L:      linux-media@vger.kernel.org
17560 S:      Maintained
17561 T:      git git://linuxtv.org/media_tree.git
17562 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17563 F:      drivers/media/i2c/imx214.c
17564
17565 SONY IMX219 SENSOR DRIVER
17566 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17567 L:      linux-media@vger.kernel.org
17568 S:      Maintained
17569 T:      git git://linuxtv.org/media_tree.git
17570 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17571 F:      drivers/media/i2c/imx219.c
17572
17573 SONY IMX258 SENSOR DRIVER
17574 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17575 L:      linux-media@vger.kernel.org
17576 S:      Maintained
17577 T:      git git://linuxtv.org/media_tree.git
17578 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17579 F:      drivers/media/i2c/imx258.c
17580
17581 SONY IMX274 SENSOR DRIVER
17582 M:      Leon Luo <leonl@leopardimaging.com>
17583 L:      linux-media@vger.kernel.org
17584 S:      Maintained
17585 T:      git git://linuxtv.org/media_tree.git
17586 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17587 F:      drivers/media/i2c/imx274.c
17588
17589 SONY IMX290 SENSOR DRIVER
17590 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17591 L:      linux-media@vger.kernel.org
17592 S:      Maintained
17593 T:      git git://linuxtv.org/media_tree.git
17594 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17595 F:      drivers/media/i2c/imx290.c
17596
17597 SONY IMX319 SENSOR DRIVER
17598 M:      Bingbu Cao <bingbu.cao@intel.com>
17599 L:      linux-media@vger.kernel.org
17600 S:      Maintained
17601 T:      git git://linuxtv.org/media_tree.git
17602 F:      drivers/media/i2c/imx319.c
17603
17604 SONY IMX334 SENSOR DRIVER
17605 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17606 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17607 L:      linux-media@vger.kernel.org
17608 S:      Maintained
17609 T:      git git://linuxtv.org/media_tree.git
17610 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17611 F:      drivers/media/i2c/imx334.c
17612
17613 SONY IMX335 SENSOR DRIVER
17614 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17615 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17616 L:      linux-media@vger.kernel.org
17617 S:      Maintained
17618 T:      git git://linuxtv.org/media_tree.git
17619 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17620 F:      drivers/media/i2c/imx335.c
17621
17622 SONY IMX355 SENSOR DRIVER
17623 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17624 L:      linux-media@vger.kernel.org
17625 S:      Maintained
17626 T:      git git://linuxtv.org/media_tree.git
17627 F:      drivers/media/i2c/imx355.c
17628
17629 SONY IMX412 SENSOR DRIVER
17630 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17631 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17632 L:      linux-media@vger.kernel.org
17633 S:      Maintained
17634 T:      git git://linuxtv.org/media_tree.git
17635 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17636 F:      drivers/media/i2c/imx412.c
17637
17638 SONY MEMORYSTICK SUBSYSTEM
17639 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17640 M:      Alex Dubov <oakad@yahoo.com>
17641 M:      Ulf Hansson <ulf.hansson@linaro.org>
17642 L:      linux-mmc@vger.kernel.org
17643 S:      Maintained
17644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17645 F:      drivers/memstick/
17646 F:      include/linux/memstick.h
17647
17648 SONY VAIO CONTROL DEVICE DRIVER
17649 M:      Mattia Dongili <malattia@linux.it>
17650 L:      platform-driver-x86@vger.kernel.org
17651 S:      Maintained
17652 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17653 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17654 F:      drivers/char/sonypi.c
17655 F:      drivers/platform/x86/sony-laptop.c
17656 F:      include/linux/sony-laptop.h
17657
17658 SOUND
17659 M:      Jaroslav Kysela <perex@perex.cz>
17660 M:      Takashi Iwai <tiwai@suse.com>
17661 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17662 S:      Maintained
17663 W:      http://www.alsa-project.org/
17664 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17666 F:      Documentation/sound/
17667 F:      include/sound/
17668 F:      include/uapi/sound/
17669 F:      sound/
17670
17671 SOUND - COMPRESSED AUDIO
17672 M:      Vinod Koul <vkoul@kernel.org>
17673 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17674 S:      Supported
17675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17676 F:      Documentation/sound/designs/compress-offload.rst
17677 F:      include/sound/compress_driver.h
17678 F:      include/uapi/sound/compress_*
17679 F:      sound/core/compress_offload.c
17680 F:      sound/soc/soc-compress.c
17681
17682 SOUND - DMAENGINE HELPERS
17683 M:      Lars-Peter Clausen <lars@metafoo.de>
17684 S:      Supported
17685 F:      include/sound/dmaengine_pcm.h
17686 F:      sound/core/pcm_dmaengine.c
17687 F:      sound/soc/soc-generic-dmaengine-pcm.c
17688
17689 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17690 M:      Liam Girdwood <lgirdwood@gmail.com>
17691 M:      Mark Brown <broonie@kernel.org>
17692 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17693 S:      Supported
17694 W:      http://alsa-project.org/main/index.php/ASoC
17695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17696 F:      Documentation/devicetree/bindings/sound/
17697 F:      Documentation/sound/soc/
17698 F:      include/dt-bindings/sound/
17699 F:      include/sound/soc*
17700 F:      sound/soc/
17701
17702 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17703 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17704 M:      Liam Girdwood <lgirdwood@gmail.com>
17705 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17706 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17707 M:      Daniel Baluta <daniel.baluta@nxp.com>
17708 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17709 S:      Supported
17710 W:      https://github.com/thesofproject/linux/
17711 F:      sound/soc/sof/
17712
17713 SOUNDWIRE SUBSYSTEM
17714 M:      Vinod Koul <vkoul@kernel.org>
17715 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17716 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17717 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17718 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17719 S:      Supported
17720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17721 F:      Documentation/driver-api/soundwire/
17722 F:      drivers/soundwire/
17723 F:      include/linux/soundwire/
17724
17725 SP2 MEDIA DRIVER
17726 M:      Olli Salonen <olli.salonen@iki.fi>
17727 L:      linux-media@vger.kernel.org
17728 S:      Maintained
17729 W:      https://linuxtv.org
17730 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17731 F:      drivers/media/dvb-frontends/sp2*
17732
17733 SPARC + UltraSPARC (sparc/sparc64)
17734 M:      "David S. Miller" <davem@davemloft.net>
17735 L:      sparclinux@vger.kernel.org
17736 S:      Maintained
17737 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17740 F:      arch/sparc/
17741 F:      drivers/sbus/
17742
17743 SPARC SERIAL DRIVERS
17744 M:      "David S. Miller" <davem@davemloft.net>
17745 L:      sparclinux@vger.kernel.org
17746 S:      Maintained
17747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17749 F:      drivers/tty/serial/suncore.c
17750 F:      drivers/tty/serial/sunhv.c
17751 F:      drivers/tty/serial/sunsab.c
17752 F:      drivers/tty/serial/sunsab.h
17753 F:      drivers/tty/serial/sunsu.c
17754 F:      drivers/tty/serial/sunzilog.c
17755 F:      drivers/tty/serial/sunzilog.h
17756 F:      drivers/tty/vcc.c
17757 F:      include/linux/sunserialcore.h
17758
17759 SPARSE CHECKER
17760 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17761 L:      linux-sparse@vger.kernel.org
17762 S:      Maintained
17763 W:      https://sparse.docs.kernel.org/
17764 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17765 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17766 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17767 F:      include/linux/compiler.h
17768
17769 SPEAKUP CONSOLE SPEECH DRIVER
17770 M:      William Hubbs <w.d.hubbs@gmail.com>
17771 M:      Chris Brannon <chris@the-brannons.com>
17772 M:      Kirk Reiser <kirk@reisers.ca>
17773 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17774 L:      speakup@linux-speakup.org
17775 S:      Odd Fixes
17776 W:      http://www.linux-speakup.org/
17777 W:      https://github.com/linux-speakup/speakup
17778 B:      https://github.com/linux-speakup/speakup/issues
17779 F:      drivers/accessibility/speakup/
17780
17781 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17782 M:      Viresh Kumar <vireshk@kernel.org>
17783 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17784 M:      soc@kernel.org
17785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17786 S:      Maintained
17787 W:      http://www.st.com/spear
17788 F:      arch/arm/boot/dts/spear*
17789 F:      arch/arm/mach-spear/
17790 F:      drivers/clk/spear/
17791 F:      drivers/pinctrl/spear/
17792
17793 SPI NOR SUBSYSTEM
17794 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17795 R:      Michael Walle <michael@walle.cc>
17796 R:      Pratyush Yadav <p.yadav@ti.com>
17797 L:      linux-mtd@lists.infradead.org
17798 S:      Maintained
17799 W:      http://www.linux-mtd.infradead.org/
17800 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17801 C:      irc://irc.oftc.net/mtd
17802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17803 F:      drivers/mtd/spi-nor/
17804 F:      include/linux/mtd/spi-nor.h
17805
17806 SPI SUBSYSTEM
17807 M:      Mark Brown <broonie@kernel.org>
17808 L:      linux-spi@vger.kernel.org
17809 S:      Maintained
17810 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17812 F:      Documentation/devicetree/bindings/spi/
17813 F:      Documentation/spi/
17814 F:      drivers/spi/
17815 F:      include/linux/spi/
17816 F:      include/uapi/linux/spi/
17817 F:      tools/spi/
17818
17819 SPIDERNET NETWORK DRIVER for CELL
17820 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17821 M:      Geoff Levand <geoff@infradead.org>
17822 L:      netdev@vger.kernel.org
17823 L:      linuxppc-dev@lists.ozlabs.org
17824 S:      Maintained
17825 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17826 F:      drivers/net/ethernet/toshiba/spider_net*
17827
17828 SPMI SUBSYSTEM
17829 M:      Stephen Boyd <sboyd@kernel.org>
17830 L:      linux-kernel@vger.kernel.org
17831 S:      Maintained
17832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17833 F:      Documentation/devicetree/bindings/spmi/
17834 F:      drivers/spmi/
17835 F:      include/dt-bindings/spmi/spmi.h
17836 F:      include/linux/spmi.h
17837 F:      include/trace/events/spmi.h
17838
17839 SPU FILE SYSTEM
17840 M:      Jeremy Kerr <jk@ozlabs.org>
17841 L:      linuxppc-dev@lists.ozlabs.org
17842 S:      Supported
17843 W:      http://www.ibm.com/developerworks/power/cell/
17844 F:      Documentation/filesystems/spufs/spufs.rst
17845 F:      arch/powerpc/platforms/cell/spufs/
17846
17847 SQUASHFS FILE SYSTEM
17848 M:      Phillip Lougher <phillip@squashfs.org.uk>
17849 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17850 S:      Maintained
17851 W:      http://squashfs.org.uk
17852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17853 F:      Documentation/filesystems/squashfs.rst
17854 F:      fs/squashfs/
17855
17856 SRM (Alpha) environment access
17857 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17858 S:      Maintained
17859 F:      arch/alpha/kernel/srm_env.c
17860
17861 ST LSM6DSx IMU IIO DRIVER
17862 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17863 L:      linux-iio@vger.kernel.org
17864 S:      Maintained
17865 W:      http://www.st.com/
17866 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17867 F:      drivers/iio/imu/st_lsm6dsx/
17868
17869 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17870 M:      Mickael Guene <mickael.guene@st.com>
17871 L:      linux-media@vger.kernel.org
17872 S:      Maintained
17873 T:      git git://linuxtv.org/media_tree.git
17874 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17875 F:      drivers/media/i2c/st-mipid02.c
17876
17877 ST STM32 I2C/SMBUS DRIVER
17878 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17879 M:      Alain Volmat <alain.volmat@foss.st.com>
17880 L:      linux-i2c@vger.kernel.org
17881 S:      Maintained
17882 F:      drivers/i2c/busses/i2c-stm32*
17883
17884 ST STM32 SPI DRIVER
17885 M:      Alain Volmat <alain.volmat@foss.st.com>
17886 L:      linux-spi@vger.kernel.org
17887 S:      Maintained
17888 F:      drivers/spi/spi-stm32.c
17889
17890 ST STPDDC60 DRIVER
17891 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17892 L:      linux-hwmon@vger.kernel.org
17893 S:      Maintained
17894 F:      Documentation/hwmon/stpddc60.rst
17895 F:      drivers/hwmon/pmbus/stpddc60.c
17896
17897 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17898 M:      Song Qiang <songqiang1304521@gmail.com>
17899 L:      linux-iio@vger.kernel.org
17900 S:      Maintained
17901 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17902 F:      drivers/iio/proximity/vl53l0x-i2c.c
17903
17904 STABLE BRANCH
17905 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17906 M:      Sasha Levin <sashal@kernel.org>
17907 L:      stable@vger.kernel.org
17908 S:      Supported
17909 F:      Documentation/process/stable-kernel-rules.rst
17910
17911 STAGING - ATOMISP DRIVER
17912 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17913 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17914 L:      linux-media@vger.kernel.org
17915 S:      Maintained
17916 F:      drivers/staging/media/atomisp/
17917
17918 STAGING - FIELDBUS SUBSYSTEM
17919 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17920 S:      Maintained
17921 F:      drivers/staging/fieldbus/*
17922 F:      drivers/staging/fieldbus/Documentation/
17923
17924 STAGING - HMS ANYBUS-S BUS
17925 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17926 S:      Maintained
17927 F:      drivers/staging/fieldbus/anybuss/
17928
17929 STAGING - INDUSTRIAL IO
17930 M:      Jonathan Cameron <jic23@kernel.org>
17931 L:      linux-iio@vger.kernel.org
17932 S:      Odd Fixes
17933 F:      Documentation/devicetree/bindings/staging/iio/
17934 F:      drivers/staging/iio/
17935
17936 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17937 M:      Marc Dietrich <marvin24@gmx.de>
17938 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17939 L:      linux-tegra@vger.kernel.org
17940 S:      Maintained
17941 F:      drivers/staging/nvec/
17942
17943 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17944 M:      Jens Frederich <jfrederich@gmail.com>
17945 M:      Jon Nettleton <jon.nettleton@gmail.com>
17946 S:      Maintained
17947 W:      http://wiki.laptop.org/go/DCON
17948 F:      drivers/staging/olpc_dcon/
17949
17950 STAGING - REALTEK RTL8188EU DRIVERS
17951 M:      Larry Finger <Larry.Finger@lwfinger.net>
17952 M:      Phillip Potter <phil@philpotter.co.uk>
17953 S:      Supported
17954 F:      drivers/staging/r8188eu/
17955
17956 STAGING - REALTEK RTL8712U DRIVERS
17957 M:      Larry Finger <Larry.Finger@lwfinger.net>
17958 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17959 S:      Odd Fixes
17960 F:      drivers/staging/rtl8712/
17961
17962 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17963 M:      Michael Hennerich <michael.hennerich@analog.com>
17964 L:      linux-fbdev@vger.kernel.org
17965 S:      Supported
17966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17967 F:      drivers/staging/fbtft/fb_seps525.c
17968
17969 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17970 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17971 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17972 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17973 L:      linux-fbdev@vger.kernel.org
17974 S:      Maintained
17975 F:      drivers/staging/sm750fb/
17976
17977 STAGING - VIA VT665X DRIVERS
17978 M:      Forest Bond <forest@alittletooquiet.net>
17979 S:      Odd Fixes
17980 F:      drivers/staging/vt665?/
17981
17982 STAGING SUBSYSTEM
17983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17984 L:      linux-staging@lists.linux.dev
17985 S:      Supported
17986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17987 F:      drivers/staging/
17988
17989 STARFIRE/DURALAN NETWORK DRIVER
17990 M:      Ion Badulescu <ionut@badula.org>
17991 S:      Odd Fixes
17992 F:      drivers/net/ethernet/adaptec/starfire*
17993
17994 STATIC BRANCH/CALL
17995 M:      Peter Zijlstra <peterz@infradead.org>
17996 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17997 M:      Jason Baron <jbaron@akamai.com>
17998 R:      Steven Rostedt <rostedt@goodmis.org>
17999 R:      Ard Biesheuvel <ardb@kernel.org>
18000 S:      Supported
18001 F:      arch/*/include/asm/jump_label*.h
18002 F:      arch/*/include/asm/static_call*.h
18003 F:      arch/*/kernel/jump_label.c
18004 F:      arch/*/kernel/static_call.c
18005 F:      include/linux/jump_label*.h
18006 F:      include/linux/static_call*.h
18007 F:      kernel/jump_label.c
18008 F:      kernel/static_call.c
18009
18010 STI AUDIO (ASoC) DRIVERS
18011 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18012 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18013 S:      Maintained
18014 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18015 F:      sound/soc/sti/
18016
18017 STI CEC DRIVER
18018 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18019 S:      Maintained
18020 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18021 F:      drivers/media/cec/platform/sti/
18022
18023 STK1160 USB VIDEO CAPTURE DRIVER
18024 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18025 L:      linux-media@vger.kernel.org
18026 S:      Maintained
18027 T:      git git://linuxtv.org/media_tree.git
18028 F:      drivers/media/usb/stk1160/
18029
18030 STM32 AUDIO (ASoC) DRIVERS
18031 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18032 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18034 S:      Maintained
18035 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18036 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18037 F:      sound/soc/stm/
18038
18039 STM32 TIMER/LPTIMER DRIVERS
18040 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18041 S:      Maintained
18042 F:      Documentation/ABI/testing/*timer-stm32
18043 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18044 F:      drivers/*/stm32-*timer*
18045 F:      drivers/pwm/pwm-stm32*
18046 F:      include/linux/*/stm32-*tim*
18047
18048 STMMAC ETHERNET DRIVER
18049 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18050 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18051 M:      Jose Abreu <joabreu@synopsys.com>
18052 L:      netdev@vger.kernel.org
18053 S:      Supported
18054 W:      http://www.stlinux.com
18055 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18056 F:      drivers/net/ethernet/stmicro/stmmac/
18057
18058 SUN3/3X
18059 M:      Sam Creasey <sammy@sammy.net>
18060 S:      Maintained
18061 W:      http://sammy.net/sun3/
18062 F:      arch/m68k/include/asm/sun3*
18063 F:      arch/m68k/kernel/*sun3*
18064 F:      arch/m68k/sun3*/
18065 F:      drivers/net/ethernet/i825xx/sun3*
18066
18067 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18068 M:      Hans de Goede <hdegoede@redhat.com>
18069 L:      linux-input@vger.kernel.org
18070 S:      Maintained
18071 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18072 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18073
18074 SUNDANCE NETWORK DRIVER
18075 M:      Denis Kirjanov <kda@linux-powerpc.org>
18076 L:      netdev@vger.kernel.org
18077 S:      Maintained
18078 F:      drivers/net/ethernet/dlink/sundance.c
18079
18080 SUPERH
18081 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18082 M:      Rich Felker <dalias@libc.org>
18083 L:      linux-sh@vger.kernel.org
18084 S:      Maintained
18085 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18086 F:      Documentation/sh/
18087 F:      arch/sh/
18088 F:      drivers/sh/
18089
18090 SUSPEND TO RAM
18091 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18092 M:      Len Brown <len.brown@intel.com>
18093 M:      Pavel Machek <pavel@ucw.cz>
18094 L:      linux-pm@vger.kernel.org
18095 S:      Supported
18096 B:      https://bugzilla.kernel.org
18097 F:      Documentation/power/
18098 F:      arch/x86/kernel/acpi/
18099 F:      drivers/base/power/
18100 F:      include/linux/freezer.h
18101 F:      include/linux/pm.h
18102 F:      include/linux/suspend.h
18103 F:      kernel/power/
18104
18105 SVGA HANDLING
18106 M:      Martin Mares <mj@ucw.cz>
18107 L:      linux-video@atrey.karlin.mff.cuni.cz
18108 S:      Maintained
18109 F:      Documentation/admin-guide/svga.rst
18110 F:      arch/x86/boot/video*
18111
18112 SWIOTLB SUBSYSTEM
18113 M:      Christoph Hellwig <hch@infradead.org>
18114 L:      iommu@lists.linux-foundation.org
18115 S:      Supported
18116 W:      http://git.infradead.org/users/hch/dma-mapping.git
18117 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18118 F:      arch/*/kernel/pci-swiotlb.c
18119 F:      include/linux/swiotlb.h
18120 F:      kernel/dma/swiotlb.c
18121
18122 SWITCHDEV
18123 M:      Jiri Pirko <jiri@resnulli.us>
18124 M:      Ivan Vecera <ivecera@redhat.com>
18125 L:      netdev@vger.kernel.org
18126 S:      Supported
18127 F:      include/net/switchdev.h
18128 F:      net/switchdev/
18129
18130 SY8106A REGULATOR DRIVER
18131 M:      Icenowy Zheng <icenowy@aosc.io>
18132 S:      Maintained
18133 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18134 F:      drivers/regulator/sy8106a-regulator.c
18135
18136 SYNC FILE FRAMEWORK
18137 M:      Sumit Semwal <sumit.semwal@linaro.org>
18138 R:      Gustavo Padovan <gustavo@padovan.org>
18139 L:      linux-media@vger.kernel.org
18140 L:      dri-devel@lists.freedesktop.org
18141 S:      Maintained
18142 T:      git git://anongit.freedesktop.org/drm/drm-misc
18143 F:      Documentation/driver-api/sync_file.rst
18144 F:      drivers/dma-buf/dma-fence*
18145 F:      drivers/dma-buf/sw_sync.c
18146 F:      drivers/dma-buf/sync_*
18147 F:      include/linux/sync_file.h
18148 F:      include/uapi/linux/sync_file.h
18149
18150 SYNOPSYS ARC ARCHITECTURE
18151 M:      Vineet Gupta <vgupta@kernel.org>
18152 L:      linux-snps-arc@lists.infradead.org
18153 S:      Supported
18154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18155 F:      Documentation/devicetree/bindings/arc/*
18156 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18157 F:      arch/arc/
18158 F:      drivers/clocksource/arc_timer.c
18159 F:      drivers/tty/serial/arc_uart.c
18160
18161 SYNOPSYS ARC HSDK SDP pll clock driver
18162 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18163 S:      Supported
18164 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18165 F:      drivers/clk/clk-hsdk-pll.c
18166
18167 SYNOPSYS ARC SDP clock driver
18168 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18169 S:      Supported
18170 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18171 F:      drivers/clk/axs10x/*
18172
18173 SYNOPSYS ARC SDP platform support
18174 M:      Alexey Brodkin <abrodkin@synopsys.com>
18175 S:      Supported
18176 F:      Documentation/devicetree/bindings/arc/axs10*
18177 F:      arch/arc/boot/dts/ax*
18178 F:      arch/arc/plat-axs10x
18179
18180 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18181 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18182 S:      Supported
18183 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18184 F:      drivers/reset/reset-axs10x.c
18185
18186 SYNOPSYS CREG GPIO DRIVER
18187 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18188 S:      Maintained
18189 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18190 F:      drivers/gpio/gpio-creg-snps.c
18191
18192 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18193 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18194 S:      Maintained
18195 F:      drivers/tty/serial/8250/8250_dw.c
18196 F:      drivers/tty/serial/8250/8250_dwlib.*
18197 F:      drivers/tty/serial/8250/8250_lpss.c
18198
18199 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18200 M:      Hoan Tran <hoan@os.amperecomputing.com>
18201 M:      Serge Semin <fancer.lancer@gmail.com>
18202 L:      linux-gpio@vger.kernel.org
18203 S:      Maintained
18204 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18205 F:      drivers/gpio/gpio-dwapb.c
18206
18207 SYNOPSYS DESIGNWARE APB SSI DRIVER
18208 M:      Serge Semin <fancer.lancer@gmail.com>
18209 L:      linux-spi@vger.kernel.org
18210 S:      Supported
18211 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18212 F:      drivers/spi/spi-dw*
18213
18214 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18215 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18216 S:      Maintained
18217 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18218 F:      drivers/dma/dw-axi-dmac/
18219
18220 SYNOPSYS DESIGNWARE DMAC DRIVER
18221 M:      Viresh Kumar <vireshk@kernel.org>
18222 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18223 S:      Maintained
18224 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18225 F:      drivers/dma/dw/
18226 F:      include/dt-bindings/dma/dw-dmac.h
18227 F:      include/linux/dma/dw.h
18228 F:      include/linux/platform_data/dma-dw.h
18229
18230 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18231 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18232 L:      netdev@vger.kernel.org
18233 S:      Supported
18234 F:      drivers/net/ethernet/synopsys/
18235
18236 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18237 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18238 L:      netdev@vger.kernel.org
18239 S:      Supported
18240 F:      drivers/net/pcs/pcs-xpcs.c
18241 F:      drivers/net/pcs/pcs-xpcs.h
18242 F:      include/linux/pcs/pcs-xpcs.h
18243
18244 SYNOPSYS DESIGNWARE I2C DRIVER
18245 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18246 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18247 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18248 L:      linux-i2c@vger.kernel.org
18249 S:      Maintained
18250 F:      drivers/i2c/busses/i2c-designware-*
18251
18252 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18253 M:      Jaehoon Chung <jh80.chung@samsung.com>
18254 L:      linux-mmc@vger.kernel.org
18255 S:      Maintained
18256 F:      drivers/mmc/host/dw_mmc*
18257
18258 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18259 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18260 S:      Supported
18261 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18262 F:      drivers/reset/reset-hsdk.c
18263 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18264
18265 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18266 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18267 M:      Manjunath M B <manjumb@synopsys.com>
18268 L:      linux-mmc@vger.kernel.org
18269 S:      Maintained
18270 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18271
18272 SYSTEM CONFIGURATION (SYSCON)
18273 M:      Lee Jones <lee.jones@linaro.org>
18274 M:      Arnd Bergmann <arnd@arndb.de>
18275 S:      Supported
18276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18277 F:      drivers/mfd/syscon.c
18278
18279 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18280 M:      Sudeep Holla <sudeep.holla@arm.com>
18281 R:      Cristian Marussi <cristian.marussi@arm.com>
18282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18283 S:      Maintained
18284 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18285 F:      drivers/clk/clk-sc[mp]i.c
18286 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18287 F:      drivers/firmware/arm_scmi/
18288 F:      drivers/firmware/arm_scpi.c
18289 F:      drivers/regulator/scmi-regulator.c
18290 F:      drivers/reset/reset-scmi.c
18291 F:      include/linux/sc[mp]i_protocol.h
18292 F:      include/trace/events/scmi.h
18293 F:      include/uapi/linux/virtio_scmi.h
18294
18295 SYSTEM RESET/SHUTDOWN DRIVERS
18296 M:      Sebastian Reichel <sre@kernel.org>
18297 L:      linux-pm@vger.kernel.org
18298 S:      Maintained
18299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18300 F:      Documentation/devicetree/bindings/power/reset/
18301 F:      drivers/power/reset/
18302
18303 SYSTEM TRACE MODULE CLASS
18304 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18305 S:      Maintained
18306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18307 F:      Documentation/trace/stm.rst
18308 F:      drivers/hwtracing/stm/
18309 F:      include/linux/stm.h
18310 F:      include/uapi/linux/stm.h
18311
18312 SYSTEM76 ACPI DRIVER
18313 M:      Jeremy Soller <jeremy@system76.com>
18314 M:      System76 Product Development <productdev@system76.com>
18315 L:      platform-driver-x86@vger.kernel.org
18316 S:      Maintained
18317 F:      drivers/platform/x86/system76_acpi.c
18318
18319 SYSV FILESYSTEM
18320 M:      Christoph Hellwig <hch@infradead.org>
18321 S:      Maintained
18322 F:      Documentation/filesystems/sysv-fs.rst
18323 F:      fs/sysv/
18324 F:      include/linux/sysv_fs.h
18325
18326 TASKSTATS STATISTICS INTERFACE
18327 M:      Balbir Singh <bsingharora@gmail.com>
18328 S:      Maintained
18329 F:      Documentation/accounting/taskstats*
18330 F:      include/linux/taskstats*
18331 F:      kernel/taskstats.c
18332
18333 TC subsystem
18334 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18335 M:      Cong Wang <xiyou.wangcong@gmail.com>
18336 M:      Jiri Pirko <jiri@resnulli.us>
18337 L:      netdev@vger.kernel.org
18338 S:      Maintained
18339 F:      include/net/pkt_cls.h
18340 F:      include/net/pkt_sched.h
18341 F:      include/net/tc_act/
18342 F:      include/uapi/linux/pkt_cls.h
18343 F:      include/uapi/linux/pkt_sched.h
18344 F:      include/uapi/linux/tc_act/
18345 F:      include/uapi/linux/tc_ematch/
18346 F:      net/sched/
18347
18348 TC90522 MEDIA DRIVER
18349 M:      Akihiro Tsukada <tskd08@gmail.com>
18350 L:      linux-media@vger.kernel.org
18351 S:      Odd Fixes
18352 F:      drivers/media/dvb-frontends/tc90522*
18353
18354 TCP LOW PRIORITY MODULE
18355 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18356 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18357 S:      Maintained
18358 W:      http://tcp-lp-mod.sourceforge.net/
18359 F:      net/ipv4/tcp_lp.c
18360
18361 TDA10071 MEDIA DRIVER
18362 M:      Antti Palosaari <crope@iki.fi>
18363 L:      linux-media@vger.kernel.org
18364 S:      Maintained
18365 W:      https://linuxtv.org
18366 W:      http://palosaari.fi/linux/
18367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18368 T:      git git://linuxtv.org/anttip/media_tree.git
18369 F:      drivers/media/dvb-frontends/tda10071*
18370
18371 TDA18212 MEDIA DRIVER
18372 M:      Antti Palosaari <crope@iki.fi>
18373 L:      linux-media@vger.kernel.org
18374 S:      Maintained
18375 W:      https://linuxtv.org
18376 W:      http://palosaari.fi/linux/
18377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18378 T:      git git://linuxtv.org/anttip/media_tree.git
18379 F:      drivers/media/tuners/tda18212*
18380
18381 TDA18218 MEDIA DRIVER
18382 M:      Antti Palosaari <crope@iki.fi>
18383 L:      linux-media@vger.kernel.org
18384 S:      Maintained
18385 W:      https://linuxtv.org
18386 W:      http://palosaari.fi/linux/
18387 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18388 T:      git git://linuxtv.org/anttip/media_tree.git
18389 F:      drivers/media/tuners/tda18218*
18390
18391 TDA18250 MEDIA DRIVER
18392 M:      Olli Salonen <olli.salonen@iki.fi>
18393 L:      linux-media@vger.kernel.org
18394 S:      Maintained
18395 W:      https://linuxtv.org
18396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18397 T:      git git://linuxtv.org/media_tree.git
18398 F:      drivers/media/tuners/tda18250*
18399
18400 TDA18271 MEDIA DRIVER
18401 M:      Michael Krufky <mkrufky@linuxtv.org>
18402 L:      linux-media@vger.kernel.org
18403 S:      Maintained
18404 W:      https://linuxtv.org
18405 W:      http://github.com/mkrufky
18406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18407 T:      git git://linuxtv.org/mkrufky/tuners.git
18408 F:      drivers/media/tuners/tda18271*
18409
18410 TDA1997x MEDIA DRIVER
18411 M:      Tim Harvey <tharvey@gateworks.com>
18412 L:      linux-media@vger.kernel.org
18413 S:      Maintained
18414 W:      https://linuxtv.org
18415 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18416 F:      drivers/media/i2c/tda1997x.*
18417
18418 TDA827x MEDIA DRIVER
18419 M:      Michael Krufky <mkrufky@linuxtv.org>
18420 L:      linux-media@vger.kernel.org
18421 S:      Maintained
18422 W:      https://linuxtv.org
18423 W:      http://github.com/mkrufky
18424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18425 T:      git git://linuxtv.org/mkrufky/tuners.git
18426 F:      drivers/media/tuners/tda8290.*
18427
18428 TDA8290 MEDIA DRIVER
18429 M:      Michael Krufky <mkrufky@linuxtv.org>
18430 L:      linux-media@vger.kernel.org
18431 S:      Maintained
18432 W:      https://linuxtv.org
18433 W:      http://github.com/mkrufky
18434 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18435 T:      git git://linuxtv.org/mkrufky/tuners.git
18436 F:      drivers/media/tuners/tda8290.*
18437
18438 TDA9840 MEDIA DRIVER
18439 M:      Hans Verkuil <hverkuil@xs4all.nl>
18440 L:      linux-media@vger.kernel.org
18441 S:      Maintained
18442 W:      https://linuxtv.org
18443 T:      git git://linuxtv.org/media_tree.git
18444 F:      drivers/media/i2c/tda9840*
18445
18446 TEA5761 TUNER DRIVER
18447 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18448 L:      linux-media@vger.kernel.org
18449 S:      Odd fixes
18450 W:      https://linuxtv.org
18451 T:      git git://linuxtv.org/media_tree.git
18452 F:      drivers/media/tuners/tea5761.*
18453
18454 TEA5767 TUNER DRIVER
18455 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18456 L:      linux-media@vger.kernel.org
18457 S:      Maintained
18458 W:      https://linuxtv.org
18459 T:      git git://linuxtv.org/media_tree.git
18460 F:      drivers/media/tuners/tea5767.*
18461
18462 TEA6415C MEDIA DRIVER
18463 M:      Hans Verkuil <hverkuil@xs4all.nl>
18464 L:      linux-media@vger.kernel.org
18465 S:      Maintained
18466 W:      https://linuxtv.org
18467 T:      git git://linuxtv.org/media_tree.git
18468 F:      drivers/media/i2c/tea6415c*
18469
18470 TEA6420 MEDIA DRIVER
18471 M:      Hans Verkuil <hverkuil@xs4all.nl>
18472 L:      linux-media@vger.kernel.org
18473 S:      Maintained
18474 W:      https://linuxtv.org
18475 T:      git git://linuxtv.org/media_tree.git
18476 F:      drivers/media/i2c/tea6420*
18477
18478 TEAM DRIVER
18479 M:      Jiri Pirko <jiri@resnulli.us>
18480 L:      netdev@vger.kernel.org
18481 S:      Supported
18482 F:      drivers/net/team/
18483 F:      include/linux/if_team.h
18484 F:      include/uapi/linux/if_team.h
18485
18486 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18487 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18488 S:      Maintained
18489 F:      arch/x86/platform/ts5500/
18490
18491 TECHNOTREND USB IR RECEIVER
18492 M:      Sean Young <sean@mess.org>
18493 L:      linux-media@vger.kernel.org
18494 S:      Maintained
18495 F:      drivers/media/rc/ttusbir.c
18496
18497 TECHWELL TW9910 VIDEO DECODER
18498 L:      linux-media@vger.kernel.org
18499 S:      Orphan
18500 F:      drivers/media/i2c/tw9910.c
18501 F:      include/media/i2c/tw9910.h
18502
18503 TEE SUBSYSTEM
18504 M:      Jens Wiklander <jens.wiklander@linaro.org>
18505 R:      Sumit Garg <sumit.garg@linaro.org>
18506 L:      op-tee@lists.trustedfirmware.org
18507 S:      Maintained
18508 F:      Documentation/staging/tee.rst
18509 F:      drivers/tee/
18510 F:      include/linux/tee_drv.h
18511 F:      include/uapi/linux/tee.h
18512
18513 TEGRA ARCHITECTURE SUPPORT
18514 M:      Thierry Reding <thierry.reding@gmail.com>
18515 M:      Jonathan Hunter <jonathanh@nvidia.com>
18516 L:      linux-tegra@vger.kernel.org
18517 S:      Supported
18518 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18520 N:      [^a-z]tegra
18521
18522 TEGRA CLOCK DRIVER
18523 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18524 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18525 S:      Supported
18526 F:      drivers/clk/tegra/
18527
18528 TEGRA DMA DRIVERS
18529 M:      Laxman Dewangan <ldewangan@nvidia.com>
18530 M:      Jon Hunter <jonathanh@nvidia.com>
18531 S:      Supported
18532 F:      drivers/dma/tegra*
18533
18534 TEGRA I2C DRIVER
18535 M:      Laxman Dewangan <ldewangan@nvidia.com>
18536 R:      Dmitry Osipenko <digetx@gmail.com>
18537 S:      Supported
18538 F:      drivers/i2c/busses/i2c-tegra.c
18539
18540 TEGRA IOMMU DRIVERS
18541 M:      Thierry Reding <thierry.reding@gmail.com>
18542 R:      Krishna Reddy <vdumpa@nvidia.com>
18543 L:      linux-tegra@vger.kernel.org
18544 S:      Supported
18545 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18546 F:      drivers/iommu/tegra*
18547
18548 TEGRA KBC DRIVER
18549 M:      Laxman Dewangan <ldewangan@nvidia.com>
18550 S:      Supported
18551 F:      drivers/input/keyboard/tegra-kbc.c
18552
18553 TEGRA NAND DRIVER
18554 M:      Stefan Agner <stefan@agner.ch>
18555 M:      Lucas Stach <dev@lynxeye.de>
18556 S:      Maintained
18557 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18558 F:      drivers/mtd/nand/raw/tegra_nand.c
18559
18560 TEGRA PWM DRIVER
18561 M:      Thierry Reding <thierry.reding@gmail.com>
18562 S:      Supported
18563 F:      drivers/pwm/pwm-tegra.c
18564
18565 TEGRA SERIAL DRIVER
18566 M:      Laxman Dewangan <ldewangan@nvidia.com>
18567 S:      Supported
18568 F:      drivers/tty/serial/serial-tegra.c
18569
18570 TEGRA SPI DRIVER
18571 M:      Laxman Dewangan <ldewangan@nvidia.com>
18572 S:      Supported
18573 F:      drivers/spi/spi-tegra*
18574
18575 TEGRA QUAD SPI DRIVER
18576 M:      Thierry Reding <thierry.reding@gmail.com>
18577 M:      Jonathan Hunter <jonathanh@nvidia.com>
18578 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18579 L:      linux-tegra@vger.kernel.org
18580 S:      Maintained
18581 F:      drivers/spi/spi-tegra210-quad.c
18582
18583 TEGRA VIDEO DRIVER
18584 M:      Thierry Reding <thierry.reding@gmail.com>
18585 M:      Jonathan Hunter <jonathanh@nvidia.com>
18586 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18587 L:      linux-media@vger.kernel.org
18588 L:      linux-tegra@vger.kernel.org
18589 S:      Maintained
18590 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18591 F:      drivers/staging/media/tegra-video/
18592
18593 TEGRA XUSB PADCTL DRIVER
18594 M:      JC Kuo <jckuo@nvidia.com>
18595 S:      Supported
18596 F:      drivers/phy/tegra/xusb*
18597
18598 TEHUTI ETHERNET DRIVER
18599 M:      Andy Gospodarek <andy@greyhouse.net>
18600 L:      netdev@vger.kernel.org
18601 S:      Supported
18602 F:      drivers/net/ethernet/tehuti/*
18603
18604 TELECOM CLOCK DRIVER FOR MCPL0010
18605 M:      Mark Gross <markgross@kernel.org>
18606 S:      Supported
18607 F:      drivers/char/tlclk.c
18608
18609 TEMPO SEMICONDUCTOR DRIVERS
18610 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18611 S:      Maintained
18612 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18613 F:      sound/soc/codecs/tscs*.c
18614 F:      sound/soc/codecs/tscs*.h
18615
18616 TENSILICA XTENSA PORT (xtensa)
18617 M:      Chris Zankel <chris@zankel.net>
18618 M:      Max Filippov <jcmvbkbc@gmail.com>
18619 L:      linux-xtensa@linux-xtensa.org
18620 S:      Maintained
18621 T:      git git://github.com/czankel/xtensa-linux.git
18622 F:      arch/xtensa/
18623 F:      drivers/irqchip/irq-xtensa-*
18624
18625 TEXAS INSTRUMENTS ASoC DRIVERS
18626 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18627 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18628 S:      Maintained
18629 F:      sound/soc/ti/
18630
18631 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18632 M:      Ricardo Ribalda <ribalda@kernel.org>
18633 L:      linux-iio@vger.kernel.org
18634 S:      Supported
18635 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18636 F:      drivers/iio/dac/ti-dac7612.c
18637
18638 TEXAS INSTRUMENTS DMA DRIVERS
18639 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18640 L:      dmaengine@vger.kernel.org
18641 S:      Maintained
18642 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18643 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18644 F:      Documentation/devicetree/bindings/dma/ti/
18645 F:      drivers/dma/ti/
18646 X:      drivers/dma/ti/cppi41.c
18647 F:      include/linux/dma/k3-udma-glue.h
18648 F:      include/linux/dma/ti-cppi5.h
18649 F:      include/linux/dma/k3-psil.h
18650
18651 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18652 M:      Nishanth Menon <nm@ti.com>
18653 M:      Tero Kristo <kristo@kernel.org>
18654 M:      Santosh Shilimkar <ssantosh@kernel.org>
18655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18656 S:      Maintained
18657 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18658 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18659 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18660 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18661 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18662 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18663 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18664 F:      drivers/clk/keystone/sci-clk.c
18665 F:      drivers/firmware/ti_sci*
18666 F:      drivers/irqchip/irq-ti-sci-inta.c
18667 F:      drivers/irqchip/irq-ti-sci-intr.c
18668 F:      drivers/reset/reset-ti-sci.c
18669 F:      drivers/soc/ti/ti_sci_inta_msi.c
18670 F:      drivers/soc/ti/ti_sci_pm_domains.c
18671 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18672 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18673 F:      include/linux/soc/ti/ti_sci_protocol.h
18674
18675 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18676 M:      Robert Marko <robert.marko@sartura.hr>
18677 M:      Luka Perkov <luka.perkov@sartura.hr>
18678 L:      linux-hwmon@vger.kernel.org
18679 S:      Maintained
18680 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18681 F:      Documentation/hwmon/tps23861.rst
18682 F:      drivers/hwmon/tps23861.c
18683
18684 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18685 M:      Puranjay Mohan <puranjay12@gmail.com>
18686 L:      linux-iio@vger.kernel.org
18687 S:      Supported
18688 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18689 F:      drivers/iio/temperature/tmp117.c
18690
18691 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18692 M:      Hans Verkuil <hverkuil@xs4all.nl>
18693 L:      linux-media@vger.kernel.org
18694 S:      Maintained
18695 W:      https://linuxtv.org
18696 T:      git git://linuxtv.org/media_tree.git
18697 F:      drivers/media/radio/radio-raremono.c
18698
18699 THERMAL
18700 M:      Rafael J. Wysocki <rafael@kernel.org>
18701 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18702 R:      Amit Kucheria <amitk@kernel.org>
18703 R:      Zhang Rui <rui.zhang@intel.com>
18704 L:      linux-pm@vger.kernel.org
18705 S:      Supported
18706 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18708 F:      Documentation/ABI/testing/sysfs-class-thermal
18709 F:      Documentation/devicetree/bindings/thermal/
18710 F:      Documentation/driver-api/thermal/
18711 F:      drivers/thermal/
18712 F:      include/linux/cpu_cooling.h
18713 F:      include/linux/thermal.h
18714 F:      include/uapi/linux/thermal.h
18715 F:      tools/thermal/
18716
18717 THERMAL DRIVER FOR AMLOGIC SOCS
18718 M:      Guillaume La Roque <glaroque@baylibre.com>
18719 L:      linux-pm@vger.kernel.org
18720 L:      linux-amlogic@lists.infradead.org
18721 S:      Supported
18722 W:      http://linux-meson.com/
18723 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18724 F:      drivers/thermal/amlogic_thermal.c
18725
18726 THERMAL/CPU_COOLING
18727 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18728 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18729 M:      Viresh Kumar <viresh.kumar@linaro.org>
18730 R:      Lukasz Luba <lukasz.luba@arm.com>
18731 L:      linux-pm@vger.kernel.org
18732 S:      Supported
18733 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18734 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18735 F:      drivers/thermal/cpufreq_cooling.c
18736 F:      drivers/thermal/cpuidle_cooling.c
18737 F:      include/linux/cpu_cooling.h
18738
18739 THERMAL/POWER_ALLOCATOR
18740 M:      Lukasz Luba <lukasz.luba@arm.com>
18741 L:      linux-pm@vger.kernel.org
18742 S:      Maintained
18743 F:      Documentation/driver-api/thermal/power_allocator.rst
18744 F:      drivers/thermal/gov_power_allocator.c
18745 F:      include/trace/events/thermal_power_allocator.h
18746
18747 THINKPAD ACPI EXTRAS DRIVER
18748 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18749 L:      ibm-acpi-devel@lists.sourceforge.net
18750 L:      platform-driver-x86@vger.kernel.org
18751 S:      Maintained
18752 W:      http://ibm-acpi.sourceforge.net
18753 W:      http://thinkwiki.org/wiki/Ibm-acpi
18754 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18755 F:      drivers/platform/x86/thinkpad_acpi.c
18756
18757 THINKPAD LMI DRIVER
18758 M:      Mark Pearson <markpearson@lenovo.com>
18759 L:      platform-driver-x86@vger.kernel.org
18760 S:      Maintained
18761 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18762 F:      drivers/platform/x86/think-lmi.?
18763
18764 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18765 M:      Isaac Hazan <isaac.hazan@intel.com>
18766 L:      linux-usb@vger.kernel.org
18767 S:      Maintained
18768 F:      drivers/thunderbolt/dma_test.c
18769
18770 THUNDERBOLT DRIVER
18771 M:      Andreas Noever <andreas.noever@gmail.com>
18772 M:      Michael Jamet <michael.jamet@intel.com>
18773 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18774 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18775 L:      linux-usb@vger.kernel.org
18776 S:      Maintained
18777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18778 F:      Documentation/admin-guide/thunderbolt.rst
18779 F:      drivers/thunderbolt/
18780 F:      include/linux/thunderbolt.h
18781
18782 THUNDERBOLT NETWORK DRIVER
18783 M:      Michael Jamet <michael.jamet@intel.com>
18784 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18785 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18786 L:      netdev@vger.kernel.org
18787 S:      Maintained
18788 F:      drivers/net/thunderbolt.c
18789
18790 THUNDERX GPIO DRIVER
18791 M:      Robert Richter <rric@kernel.org>
18792 S:      Odd Fixes
18793 F:      drivers/gpio/gpio-thunderx.c
18794
18795 TI ADS131E0X ADC SERIES DRIVER
18796 M:      Tomislav Denis <tomislav.denis@avl.com>
18797 L:      linux-iio@vger.kernel.org
18798 S:      Maintained
18799 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18800 F:      drivers/iio/adc/ti-ads131e08.c
18801
18802 TI AM437X VPFE DRIVER
18803 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18804 L:      linux-media@vger.kernel.org
18805 S:      Maintained
18806 W:      https://linuxtv.org
18807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18808 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18809 F:      drivers/media/platform/am437x/
18810
18811 TI BANDGAP AND THERMAL DRIVER
18812 M:      Eduardo Valentin <edubezval@gmail.com>
18813 M:      Keerthy <j-keerthy@ti.com>
18814 L:      linux-pm@vger.kernel.org
18815 L:      linux-omap@vger.kernel.org
18816 S:      Maintained
18817 F:      drivers/thermal/ti-soc-thermal/
18818
18819 TI BQ27XXX POWER SUPPLY DRIVER
18820 F:      drivers/power/supply/bq27xxx_battery.c
18821 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18822 F:      include/linux/power/bq27xxx_battery.h
18823
18824 TI CDCE706 CLOCK DRIVER
18825 M:      Max Filippov <jcmvbkbc@gmail.com>
18826 S:      Maintained
18827 F:      drivers/clk/clk-cdce706.c
18828
18829 TI CLOCK DRIVER
18830 M:      Tero Kristo <kristo@kernel.org>
18831 L:      linux-omap@vger.kernel.org
18832 S:      Odd Fixes
18833 F:      drivers/clk/ti/
18834 F:      include/linux/clk/ti.h
18835
18836 TI DAVINCI MACHINE SUPPORT
18837 M:      Sekhar Nori <nsekhar@ti.com>
18838 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18839 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18840 S:      Supported
18841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18842 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18843 F:      arch/arm/boot/dts/da850*
18844 F:      arch/arm/mach-davinci/
18845 F:      drivers/i2c/busses/i2c-davinci.c
18846
18847 TI DAVINCI SERIES CLOCK DRIVER
18848 M:      David Lechner <david@lechnology.com>
18849 R:      Sekhar Nori <nsekhar@ti.com>
18850 S:      Maintained
18851 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18852 F:      drivers/clk/davinci/
18853
18854 TI DAVINCI SERIES GPIO DRIVER
18855 M:      Keerthy <j-keerthy@ti.com>
18856 L:      linux-gpio@vger.kernel.org
18857 S:      Maintained
18858 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18859 F:      drivers/gpio/gpio-davinci.c
18860
18861 TI DAVINCI SERIES MEDIA DRIVER
18862 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18863 L:      linux-media@vger.kernel.org
18864 S:      Maintained
18865 W:      https://linuxtv.org
18866 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18867 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18868 F:      drivers/media/platform/davinci/
18869 F:      include/media/davinci/
18870
18871 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18872 R:      David Lechner <david@lechnology.com>
18873 L:      linux-iio@vger.kernel.org
18874 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18875 F:      drivers/counter/ti-eqep.c
18876
18877 TI ETHERNET SWITCH DRIVER (CPSW)
18878 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18879 L:      linux-omap@vger.kernel.org
18880 L:      netdev@vger.kernel.org
18881 S:      Maintained
18882 F:      drivers/net/ethernet/ti/cpsw*
18883 F:      drivers/net/ethernet/ti/davinci*
18884
18885 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18886 M:      Alex Dubov <oakad@yahoo.com>
18887 S:      Maintained
18888 W:      http://tifmxx.berlios.de/
18889 F:      drivers/memstick/host/tifm_ms.c
18890 F:      drivers/misc/tifm*
18891 F:      drivers/mmc/host/tifm_sd.c
18892 F:      include/linux/tifm.h
18893
18894 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18895 M:      Santosh Shilimkar <ssantosh@kernel.org>
18896 L:      linux-kernel@vger.kernel.org
18897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18898 S:      Maintained
18899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18900 F:      drivers/soc/ti/*
18901
18902 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18903 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18904 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18905 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18906 S:      Maintained
18907 F:      sound/soc/codecs/isabelle*
18908 F:      sound/soc/codecs/lm49453*
18909
18910 TI PCM3060 ASoC CODEC DRIVER
18911 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18912 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18913 S:      Maintained
18914 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18915 F:      sound/soc/codecs/pcm3060*
18916
18917 TI TAS571X FAMILY ASoC CODEC DRIVER
18918 M:      Kevin Cernekee <cernekee@chromium.org>
18919 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18920 S:      Odd Fixes
18921 F:      sound/soc/codecs/tas571x*
18922
18923 TI TRF7970A NFC DRIVER
18924 M:      Mark Greer <mgreer@animalcreek.com>
18925 L:      linux-wireless@vger.kernel.org
18926 L:      linux-nfc@lists.01.org (subscribers-only)
18927 S:      Supported
18928 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
18929 F:      drivers/nfc/trf7970a.c
18930
18931 TI TSC2046 ADC DRIVER
18932 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18933 R:      kernel@pengutronix.de
18934 L:      linux-iio@vger.kernel.org
18935 S:      Maintained
18936 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18937 F:      drivers/iio/adc/ti-tsc2046.c
18938
18939 TI TWL4030 SERIES SOC CODEC DRIVER
18940 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18941 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18942 S:      Maintained
18943 F:      sound/soc/codecs/twl4030*
18944
18945 TI VPE/CAL DRIVERS
18946 M:      Benoit Parrot <bparrot@ti.com>
18947 L:      linux-media@vger.kernel.org
18948 S:      Maintained
18949 W:      http://linuxtv.org/
18950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18951 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18952 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18953 F:      drivers/media/platform/ti-vpe/
18954
18955 TI WILINK WIRELESS DRIVERS
18956 L:      linux-wireless@vger.kernel.org
18957 S:      Orphan
18958 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18959 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18961 F:      drivers/net/wireless/ti/
18962 F:      include/linux/wl12xx.h
18963
18964 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18965 M:      John Stultz <john.stultz@linaro.org>
18966 M:      Thomas Gleixner <tglx@linutronix.de>
18967 R:      Stephen Boyd <sboyd@kernel.org>
18968 L:      linux-kernel@vger.kernel.org
18969 S:      Supported
18970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18971 F:      include/linux/clocksource.h
18972 F:      include/linux/time.h
18973 F:      include/linux/timex.h
18974 F:      include/uapi/linux/time.h
18975 F:      include/uapi/linux/timex.h
18976 F:      kernel/time/alarmtimer.c
18977 F:      kernel/time/clocksource.c
18978 F:      kernel/time/ntp.c
18979 F:      kernel/time/time*.c
18980 F:      tools/testing/selftests/timers/
18981
18982 TIPC NETWORK LAYER
18983 M:      Jon Maloy <jmaloy@redhat.com>
18984 M:      Ying Xue <ying.xue@windriver.com>
18985 L:      netdev@vger.kernel.org (core kernel code)
18986 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18987 S:      Maintained
18988 W:      http://tipc.sourceforge.net/
18989 F:      include/uapi/linux/tipc*.h
18990 F:      net/tipc/
18991
18992 TLAN NETWORK DRIVER
18993 M:      Samuel Chessman <chessman@tux.org>
18994 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18995 S:      Maintained
18996 W:      http://sourceforge.net/projects/tlan/
18997 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18998 F:      drivers/net/ethernet/ti/tlan.*
18999
19000 TM6000 VIDEO4LINUX DRIVER
19001 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19002 L:      linux-media@vger.kernel.org
19003 S:      Odd fixes
19004 W:      https://linuxtv.org
19005 T:      git git://linuxtv.org/media_tree.git
19006 F:      Documentation/admin-guide/media/tm6000*
19007 F:      drivers/media/usb/tm6000/
19008
19009 TMIO/SDHI MMC DRIVER
19010 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19011 L:      linux-mmc@vger.kernel.org
19012 S:      Supported
19013 F:      drivers/mmc/host/renesas_sdhi*
19014 F:      drivers/mmc/host/tmio_mmc*
19015 F:      include/linux/mfd/tmio.h
19016
19017 TMP401 HARDWARE MONITOR DRIVER
19018 M:      Guenter Roeck <linux@roeck-us.net>
19019 L:      linux-hwmon@vger.kernel.org
19020 S:      Maintained
19021 F:      Documentation/hwmon/tmp401.rst
19022 F:      drivers/hwmon/tmp401.c
19023
19024 TMP513 HARDWARE MONITOR DRIVER
19025 M:      Eric Tremblay <etremblay@distech-controls.com>
19026 L:      linux-hwmon@vger.kernel.org
19027 S:      Maintained
19028 F:      Documentation/hwmon/tmp513.rst
19029 F:      drivers/hwmon/tmp513.c
19030
19031 TMPFS (SHMEM FILESYSTEM)
19032 M:      Hugh Dickins <hughd@google.com>
19033 L:      linux-mm@kvack.org
19034 S:      Maintained
19035 F:      include/linux/shmem_fs.h
19036 F:      mm/shmem.c
19037
19038 TOMOYO SECURITY MODULE
19039 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19040 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19041 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19042 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19043 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19044 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19045 S:      Maintained
19046 W:      https://tomoyo.osdn.jp/
19047 F:      security/tomoyo/
19048
19049 TOPSTAR LAPTOP EXTRAS DRIVER
19050 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19051 L:      platform-driver-x86@vger.kernel.org
19052 S:      Maintained
19053 F:      drivers/platform/x86/topstar-laptop.c
19054
19055 TORTURE-TEST MODULES
19056 M:      Davidlohr Bueso <dave@stgolabs.net>
19057 M:      "Paul E. McKenney" <paulmck@kernel.org>
19058 M:      Josh Triplett <josh@joshtriplett.org>
19059 L:      linux-kernel@vger.kernel.org
19060 S:      Supported
19061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19062 F:      Documentation/RCU/torture.rst
19063 F:      kernel/locking/locktorture.c
19064 F:      kernel/rcu/rcuscale.c
19065 F:      kernel/rcu/rcutorture.c
19066 F:      kernel/rcu/refscale.c
19067 F:      kernel/torture.c
19068
19069 TOSHIBA ACPI EXTRAS DRIVER
19070 M:      Azael Avalos <coproscefalo@gmail.com>
19071 L:      platform-driver-x86@vger.kernel.org
19072 S:      Maintained
19073 F:      drivers/platform/x86/toshiba_acpi.c
19074
19075 TOSHIBA BLUETOOTH DRIVER
19076 M:      Azael Avalos <coproscefalo@gmail.com>
19077 L:      platform-driver-x86@vger.kernel.org
19078 S:      Maintained
19079 F:      drivers/platform/x86/toshiba_bluetooth.c
19080
19081 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19082 M:      Azael Avalos <coproscefalo@gmail.com>
19083 L:      platform-driver-x86@vger.kernel.org
19084 S:      Maintained
19085 F:      drivers/platform/x86/toshiba_haps.c
19086
19087 TOSHIBA SMM DRIVER
19088 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19089 S:      Maintained
19090 W:      http://www.buzzard.org.uk/toshiba/
19091 F:      drivers/char/toshiba.c
19092 F:      include/linux/toshiba.h
19093 F:      include/uapi/linux/toshiba.h
19094
19095 TOSHIBA TC358743 DRIVER
19096 M:      Mats Randgaard <matrandg@cisco.com>
19097 L:      linux-media@vger.kernel.org
19098 S:      Maintained
19099 F:      drivers/media/i2c/tc358743*
19100 F:      include/media/i2c/tc358743.h
19101
19102 TOSHIBA WMI HOTKEYS DRIVER
19103 M:      Azael Avalos <coproscefalo@gmail.com>
19104 L:      platform-driver-x86@vger.kernel.org
19105 S:      Maintained
19106 F:      drivers/platform/x86/toshiba-wmi.c
19107
19108 TPM DEVICE DRIVER
19109 M:      Peter Huewe <peterhuewe@gmx.de>
19110 M:      Jarkko Sakkinen <jarkko@kernel.org>
19111 R:      Jason Gunthorpe <jgg@ziepe.ca>
19112 L:      linux-integrity@vger.kernel.org
19113 S:      Maintained
19114 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19115 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19117 F:      drivers/char/tpm/
19118
19119 TRACING
19120 M:      Steven Rostedt <rostedt@goodmis.org>
19121 M:      Ingo Molnar <mingo@redhat.com>
19122 S:      Maintained
19123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19124 F:      Documentation/trace/ftrace.rst
19125 F:      arch/*/*/*/ftrace.h
19126 F:      arch/*/kernel/ftrace.c
19127 F:      fs/tracefs/
19128 F:      include/*/ftrace.h
19129 F:      include/linux/trace*.h
19130 F:      include/trace/
19131 F:      kernel/trace/
19132 F:      tools/testing/selftests/ftrace/
19133
19134 TRACING MMIO ACCESSES (MMIOTRACE)
19135 M:      Steven Rostedt <rostedt@goodmis.org>
19136 M:      Ingo Molnar <mingo@kernel.org>
19137 R:      Karol Herbst <karolherbst@gmail.com>
19138 R:      Pekka Paalanen <ppaalanen@gmail.com>
19139 L:      linux-kernel@vger.kernel.org
19140 L:      nouveau@lists.freedesktop.org
19141 S:      Maintained
19142 F:      arch/x86/mm/kmmio.c
19143 F:      arch/x86/mm/mmio-mod.c
19144 F:      arch/x86/mm/testmmiotrace.c
19145 F:      include/linux/mmiotrace.h
19146 F:      kernel/trace/trace_mmiotrace.c
19147
19148 TRACING OS NOISE / LATENCY TRACERS
19149 M:      Steven Rostedt <rostedt@goodmis.org>
19150 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19151 S:      Maintained
19152 F:      kernel/trace/trace_osnoise.c
19153 F:      include/trace/events/osnoise.h
19154 F:      kernel/trace/trace_hwlat.c
19155 F:      kernel/trace/trace_irqsoff.c
19156 F:      kernel/trace/trace_sched_wakeup.c
19157 F:      Documentation/trace/osnoise-tracer.rst
19158 F:      Documentation/trace/timerlat-tracer.rst
19159 F:      Documentation/trace/hwlat_detector.rst
19160 F:      arch/*/kernel/trace.c
19161
19162 TRADITIONAL CHINESE DOCUMENTATION
19163 M:      Hu Haowen <src.res@email.cn>
19164 L:      linux-doc-tw-discuss@lists.sourceforge.net
19165 S:      Maintained
19166 W:      https://github.com/srcres258/linux-doc
19167 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19168 F:      Documentation/translations/zh_TW/
19169
19170 TRIVIAL PATCHES
19171 M:      Jiri Kosina <trivial@kernel.org>
19172 S:      Maintained
19173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19174 K:      ^Subject:.*(?i)trivial
19175
19176 TTY LAYER
19177 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19178 M:      Jiri Slaby <jirislaby@kernel.org>
19179 S:      Supported
19180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19181 F:      Documentation/driver-api/serial/
19182 F:      drivers/tty/
19183 F:      drivers/tty/serial/serial_core.c
19184 F:      include/linux/selection.h
19185 F:      include/linux/serial.h
19186 F:      include/linux/serial_core.h
19187 F:      include/linux/sysrq.h
19188 F:      include/linux/tty*.h
19189 F:      include/linux/vt.h
19190 F:      include/linux/vt_*.h
19191 F:      include/uapi/linux/serial.h
19192 F:      include/uapi/linux/serial_core.h
19193 F:      include/uapi/linux/tty.h
19194
19195 TUA9001 MEDIA DRIVER
19196 M:      Antti Palosaari <crope@iki.fi>
19197 L:      linux-media@vger.kernel.org
19198 S:      Maintained
19199 W:      https://linuxtv.org
19200 W:      http://palosaari.fi/linux/
19201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19202 T:      git git://linuxtv.org/anttip/media_tree.git
19203 F:      drivers/media/tuners/tua9001*
19204
19205 TULIP NETWORK DRIVERS
19206 L:      netdev@vger.kernel.org
19207 L:      linux-parisc@vger.kernel.org
19208 S:      Orphan
19209 F:      drivers/net/ethernet/dec/tulip/
19210
19211 TUN/TAP driver
19212 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19213 S:      Maintained
19214 W:      http://vtun.sourceforge.net/tun
19215 F:      Documentation/networking/tuntap.rst
19216 F:      arch/um/os-Linux/drivers/
19217
19218 TURBOCHANNEL SUBSYSTEM
19219 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19220 M:      Ralf Baechle <ralf@linux-mips.org>
19221 L:      linux-mips@vger.kernel.org
19222 S:      Maintained
19223 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19224 F:      drivers/tc/
19225 F:      include/linux/tc.h
19226
19227 TURBOSTAT UTILITY
19228 M:      "Len Brown" <lenb@kernel.org>
19229 L:      linux-pm@vger.kernel.org
19230 S:      Supported
19231 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19232 B:      https://bugzilla.kernel.org
19233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19234 F:      tools/power/x86/turbostat/
19235
19236 TW5864 VIDEO4LINUX DRIVER
19237 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19238 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19239 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19240 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19241 L:      linux-media@vger.kernel.org
19242 S:      Supported
19243 F:      drivers/media/pci/tw5864/
19244
19245 TW68 VIDEO4LINUX DRIVER
19246 M:      Hans Verkuil <hverkuil@xs4all.nl>
19247 L:      linux-media@vger.kernel.org
19248 S:      Odd Fixes
19249 W:      https://linuxtv.org
19250 T:      git git://linuxtv.org/media_tree.git
19251 F:      drivers/media/pci/tw68/
19252
19253 TW686X VIDEO4LINUX DRIVER
19254 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19255 L:      linux-media@vger.kernel.org
19256 S:      Maintained
19257 W:      http://linuxtv.org
19258 T:      git git://linuxtv.org/media_tree.git
19259 F:      drivers/media/pci/tw686x/
19260
19261 UACCE ACCELERATOR FRAMEWORK
19262 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19263 M:      Zhou Wang <wangzhou1@hisilicon.com>
19264 L:      linux-accelerators@lists.ozlabs.org
19265 L:      linux-kernel@vger.kernel.org
19266 S:      Maintained
19267 F:      Documentation/ABI/testing/sysfs-driver-uacce
19268 F:      Documentation/misc-devices/uacce.rst
19269 F:      drivers/misc/uacce/
19270 F:      include/linux/uacce.h
19271 F:      include/uapi/misc/uacce/
19272
19273 UBI FILE SYSTEM (UBIFS)
19274 M:      Richard Weinberger <richard@nod.at>
19275 L:      linux-mtd@lists.infradead.org
19276 S:      Supported
19277 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19280 F:      Documentation/filesystems/ubifs-authentication.rst
19281 F:      Documentation/filesystems/ubifs.rst
19282 F:      fs/ubifs/
19283
19284 UCLINUX (M68KNOMMU AND COLDFIRE)
19285 M:      Greg Ungerer <gerg@linux-m68k.org>
19286 L:      linux-m68k@lists.linux-m68k.org
19287 L:      uclinux-dev@uclinux.org  (subscribers-only)
19288 S:      Maintained
19289 W:      http://www.linux-m68k.org/
19290 W:      http://www.uclinux.org/
19291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19292 F:      arch/m68k/*/*_no.*
19293 F:      arch/m68k/68*/
19294 F:      arch/m68k/coldfire/
19295 F:      arch/m68k/include/asm/*_no.*
19296
19297 UDF FILESYSTEM
19298 M:      Jan Kara <jack@suse.com>
19299 S:      Maintained
19300 F:      Documentation/filesystems/udf.rst
19301 F:      fs/udf/
19302
19303 UDRAW TABLET
19304 M:      Bastien Nocera <hadess@hadess.net>
19305 L:      linux-input@vger.kernel.org
19306 S:      Maintained
19307 F:      drivers/hid/hid-udraw-ps3.c
19308
19309 UFS FILESYSTEM
19310 M:      Evgeniy Dushistov <dushistov@mail.ru>
19311 S:      Maintained
19312 F:      Documentation/admin-guide/ufs.rst
19313 F:      fs/ufs/
19314
19315 UHID USERSPACE HID IO DRIVER
19316 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19317 L:      linux-input@vger.kernel.org
19318 S:      Maintained
19319 F:      drivers/hid/uhid.c
19320 F:      include/uapi/linux/uhid.h
19321
19322 ULPI BUS
19323 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19324 L:      linux-usb@vger.kernel.org
19325 S:      Maintained
19326 F:      drivers/usb/common/ulpi.c
19327 F:      include/linux/ulpi/
19328
19329 UNICODE SUBSYSTEM
19330 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19331 L:      linux-fsdevel@vger.kernel.org
19332 S:      Supported
19333 F:      fs/unicode/
19334
19335 UNIFDEF
19336 M:      Tony Finch <dot@dotat.at>
19337 S:      Maintained
19338 W:      http://dotat.at/prog/unifdef
19339 F:      scripts/unifdef.c
19340
19341 UNIFORM CDROM DRIVER
19342 M:      Phillip Potter <phil@philpotter.co.uk>
19343 S:      Maintained
19344 F:      Documentation/cdrom/
19345 F:      drivers/cdrom/cdrom.c
19346 F:      include/linux/cdrom.h
19347 F:      include/uapi/linux/cdrom.h
19348
19349 UNISYS S-PAR DRIVERS
19350 M:      David Kershner <david.kershner@unisys.com>
19351 L:      sparmaintainer@unisys.com (Unisys internal)
19352 S:      Supported
19353 F:      drivers/staging/unisys/
19354 F:      drivers/visorbus/
19355 F:      include/linux/visorbus.h
19356
19357 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19358 R:      Alim Akhtar <alim.akhtar@samsung.com>
19359 R:      Avri Altman <avri.altman@wdc.com>
19360 L:      linux-scsi@vger.kernel.org
19361 S:      Supported
19362 F:      Documentation/scsi/ufs.rst
19363 F:      drivers/scsi/ufs/
19364
19365 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19366 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19367 L:      linux-scsi@vger.kernel.org
19368 S:      Supported
19369 F:      drivers/scsi/ufs/*dwc*
19370
19371 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19372 M:      Stanley Chu <stanley.chu@mediatek.com>
19373 L:      linux-scsi@vger.kernel.org
19374 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19375 S:      Maintained
19376 F:      drivers/scsi/ufs/ufs-mediatek*
19377
19378 UNSORTED BLOCK IMAGES (UBI)
19379 M:      Richard Weinberger <richard@nod.at>
19380 L:      linux-mtd@lists.infradead.org
19381 S:      Supported
19382 W:      http://www.linux-mtd.infradead.org/
19383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19385 F:      drivers/mtd/ubi/
19386 F:      include/linux/mtd/ubi.h
19387 F:      include/uapi/mtd/ubi-user.h
19388
19389 USB "USBNET" DRIVER FRAMEWORK
19390 M:      Oliver Neukum <oneukum@suse.com>
19391 L:      netdev@vger.kernel.org
19392 S:      Maintained
19393 W:      http://www.linux-usb.org/usbnet
19394 F:      drivers/net/usb/usbnet.c
19395 F:      include/linux/usb/usbnet.h
19396
19397 USB ACM DRIVER
19398 M:      Oliver Neukum <oneukum@suse.com>
19399 L:      linux-usb@vger.kernel.org
19400 S:      Maintained
19401 F:      Documentation/usb/acm.rst
19402 F:      drivers/usb/class/cdc-acm.*
19403
19404 USB APPLE MFI FASTCHARGE DRIVER
19405 M:      Bastien Nocera <hadess@hadess.net>
19406 L:      linux-usb@vger.kernel.org
19407 S:      Maintained
19408 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19409
19410 USB AR5523 WIRELESS DRIVER
19411 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19412 L:      linux-wireless@vger.kernel.org
19413 S:      Maintained
19414 F:      drivers/net/wireless/ath/ar5523/
19415
19416 USB ATTACHED SCSI
19417 M:      Oliver Neukum <oneukum@suse.com>
19418 L:      linux-usb@vger.kernel.org
19419 L:      linux-scsi@vger.kernel.org
19420 S:      Maintained
19421 F:      drivers/usb/storage/uas.c
19422
19423 USB CDC ETHERNET DRIVER
19424 M:      Oliver Neukum <oliver@neukum.org>
19425 L:      linux-usb@vger.kernel.org
19426 S:      Maintained
19427 F:      drivers/net/usb/cdc_*.c
19428 F:      include/uapi/linux/usb/cdc.h
19429
19430 USB CHAOSKEY DRIVER
19431 M:      Keith Packard <keithp@keithp.com>
19432 L:      linux-usb@vger.kernel.org
19433 S:      Maintained
19434 F:      drivers/usb/misc/chaoskey.c
19435
19436 USB CYPRESS C67X00 DRIVER
19437 L:      linux-usb@vger.kernel.org
19438 S:      Orphan
19439 F:      drivers/usb/c67x00/
19440
19441 USB DAVICOM DM9601 DRIVER
19442 M:      Peter Korsgaard <peter@korsgaard.com>
19443 L:      netdev@vger.kernel.org
19444 S:      Maintained
19445 W:      http://www.linux-usb.org/usbnet
19446 F:      drivers/net/usb/dm9601.c
19447
19448 USB EHCI DRIVER
19449 M:      Alan Stern <stern@rowland.harvard.edu>
19450 L:      linux-usb@vger.kernel.org
19451 S:      Maintained
19452 F:      Documentation/usb/ehci.rst
19453 F:      drivers/usb/host/ehci*
19454
19455 USB GADGET/PERIPHERAL SUBSYSTEM
19456 M:      Felipe Balbi <balbi@kernel.org>
19457 L:      linux-usb@vger.kernel.org
19458 S:      Maintained
19459 W:      http://www.linux-usb.org/gadget
19460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19461 F:      drivers/usb/gadget/
19462 F:      include/linux/usb/gadget*
19463
19464 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19465 M:      Jiri Kosina <jikos@kernel.org>
19466 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19467 L:      linux-usb@vger.kernel.org
19468 S:      Maintained
19469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19470 F:      Documentation/hid/hiddev.rst
19471 F:      drivers/hid/usbhid/
19472
19473 USB INTEL XHCI ROLE MUX DRIVER
19474 M:      Hans de Goede <hdegoede@redhat.com>
19475 L:      linux-usb@vger.kernel.org
19476 S:      Maintained
19477 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19478
19479 USB IP DRIVER FOR HISILICON KIRIN 960
19480 M:      Yu Chen <chenyu56@huawei.com>
19481 M:      Binghui Wang <wangbinghui@hisilicon.com>
19482 L:      linux-usb@vger.kernel.org
19483 S:      Maintained
19484 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19485 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19486
19487 USB IP DRIVER FOR HISILICON KIRIN 970
19488 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19489 L:      linux-usb@vger.kernel.org
19490 S:      Maintained
19491 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19492 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19493
19494 USB ISP116X DRIVER
19495 M:      Olav Kongas <ok@artecdesign.ee>
19496 L:      linux-usb@vger.kernel.org
19497 S:      Maintained
19498 F:      drivers/usb/host/isp116x*
19499 F:      include/linux/usb/isp116x.h
19500
19501 USB ISP1760 DRIVER
19502 M:      Rui Miguel Silva <rui.silva@linaro.org>
19503 L:      linux-usb@vger.kernel.org
19504 S:      Maintained
19505 F:      drivers/usb/isp1760/*
19506 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19507
19508 USB LAN78XX ETHERNET DRIVER
19509 M:      Woojung Huh <woojung.huh@microchip.com>
19510 M:      UNGLinuxDriver@microchip.com
19511 L:      netdev@vger.kernel.org
19512 S:      Maintained
19513 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19514 F:      drivers/net/usb/lan78xx.*
19515 F:      include/dt-bindings/net/microchip-lan78xx.h
19516
19517 USB MASS STORAGE DRIVER
19518 M:      Alan Stern <stern@rowland.harvard.edu>
19519 L:      linux-usb@vger.kernel.org
19520 L:      usb-storage@lists.one-eyed-alien.net
19521 S:      Maintained
19522 F:      drivers/usb/storage/
19523
19524 USB MIDI DRIVER
19525 M:      Clemens Ladisch <clemens@ladisch.de>
19526 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19527 S:      Maintained
19528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19529 F:      sound/usb/midi.*
19530
19531 USB NETWORKING DRIVERS
19532 L:      linux-usb@vger.kernel.org
19533 S:      Odd Fixes
19534 F:      drivers/net/usb/
19535
19536 USB OHCI DRIVER
19537 M:      Alan Stern <stern@rowland.harvard.edu>
19538 L:      linux-usb@vger.kernel.org
19539 S:      Maintained
19540 F:      Documentation/usb/ohci.rst
19541 F:      drivers/usb/host/ohci*
19542
19543 USB OTG FSM (Finite State Machine)
19544 M:      Peter Chen <peter.chen@kernel.org>
19545 L:      linux-usb@vger.kernel.org
19546 S:      Maintained
19547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19548 F:      drivers/usb/common/usb-otg-fsm.c
19549
19550 USB OVER IP DRIVER
19551 M:      Valentina Manea <valentina.manea.m@gmail.com>
19552 M:      Shuah Khan <shuah@kernel.org>
19553 M:      Shuah Khan <skhan@linuxfoundation.org>
19554 L:      linux-usb@vger.kernel.org
19555 S:      Maintained
19556 F:      Documentation/usb/usbip_protocol.rst
19557 F:      drivers/usb/usbip/
19558 F:      tools/testing/selftests/drivers/usb/usbip/
19559 F:      tools/usb/usbip/
19560
19561 USB PEGASUS DRIVER
19562 M:      Petko Manolov <petkan@nucleusys.com>
19563 L:      linux-usb@vger.kernel.org
19564 L:      netdev@vger.kernel.org
19565 S:      Maintained
19566 W:      https://github.com/petkan/pegasus
19567 T:      git git://github.com/petkan/pegasus.git
19568 F:      drivers/net/usb/pegasus.*
19569
19570 USB PHY LAYER
19571 M:      Felipe Balbi <balbi@kernel.org>
19572 L:      linux-usb@vger.kernel.org
19573 S:      Maintained
19574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19575 F:      drivers/usb/phy/
19576
19577 USB PRINTER DRIVER (usblp)
19578 M:      Pete Zaitcev <zaitcev@redhat.com>
19579 L:      linux-usb@vger.kernel.org
19580 S:      Supported
19581 F:      drivers/usb/class/usblp.c
19582
19583 USB RAW GADGET DRIVER
19584 R:      Andrey Konovalov <andreyknvl@gmail.com>
19585 L:      linux-usb@vger.kernel.org
19586 S:      Maintained
19587 F:      Documentation/usb/raw-gadget.rst
19588 F:      drivers/usb/gadget/legacy/raw_gadget.c
19589 F:      include/uapi/linux/usb/raw_gadget.h
19590
19591 USB QMI WWAN NETWORK DRIVER
19592 M:      Bjørn Mork <bjorn@mork.no>
19593 L:      netdev@vger.kernel.org
19594 S:      Maintained
19595 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19596 F:      drivers/net/usb/qmi_wwan.c
19597
19598 USB RTL8150 DRIVER
19599 M:      Petko Manolov <petkan@nucleusys.com>
19600 L:      linux-usb@vger.kernel.org
19601 L:      netdev@vger.kernel.org
19602 S:      Maintained
19603 W:      https://github.com/petkan/rtl8150
19604 T:      git git://github.com/petkan/rtl8150.git
19605 F:      drivers/net/usb/rtl8150.c
19606
19607 USB SERIAL SUBSYSTEM
19608 M:      Johan Hovold <johan@kernel.org>
19609 L:      linux-usb@vger.kernel.org
19610 S:      Maintained
19611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19612 F:      Documentation/usb/usb-serial.rst
19613 F:      drivers/usb/serial/
19614 F:      include/linux/usb/serial.h
19615
19616 USB SMSC75XX ETHERNET DRIVER
19617 M:      Steve Glendinning <steve.glendinning@shawell.net>
19618 L:      netdev@vger.kernel.org
19619 S:      Maintained
19620 F:      drivers/net/usb/smsc75xx.*
19621
19622 USB SMSC95XX ETHERNET DRIVER
19623 M:      Steve Glendinning <steve.glendinning@shawell.net>
19624 M:      UNGLinuxDriver@microchip.com
19625 L:      netdev@vger.kernel.org
19626 S:      Maintained
19627 F:      drivers/net/usb/smsc95xx.*
19628
19629 USB SUBSYSTEM
19630 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19631 L:      linux-usb@vger.kernel.org
19632 S:      Supported
19633 W:      http://www.linux-usb.org
19634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19635 F:      Documentation/devicetree/bindings/usb/
19636 F:      Documentation/usb/
19637 F:      drivers/usb/
19638 F:      include/linux/usb.h
19639 F:      include/linux/usb/
19640
19641 USB TYPEC BUS FOR ALTERNATE MODES
19642 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19643 L:      linux-usb@vger.kernel.org
19644 S:      Maintained
19645 F:      Documentation/ABI/testing/sysfs-bus-typec
19646 F:      Documentation/driver-api/usb/typec_bus.rst
19647 F:      drivers/usb/typec/altmodes/
19648 F:      include/linux/usb/typec_altmode.h
19649
19650 USB TYPEC CLASS
19651 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19652 L:      linux-usb@vger.kernel.org
19653 S:      Maintained
19654 F:      Documentation/ABI/testing/sysfs-class-typec
19655 F:      Documentation/driver-api/usb/typec.rst
19656 F:      drivers/usb/typec/
19657 F:      include/linux/usb/typec.h
19658
19659 USB TYPEC INTEL PMC MUX DRIVER
19660 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19661 L:      linux-usb@vger.kernel.org
19662 S:      Maintained
19663 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19664 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19665
19666 USB TYPEC PI3USB30532 MUX DRIVER
19667 M:      Hans de Goede <hdegoede@redhat.com>
19668 L:      linux-usb@vger.kernel.org
19669 S:      Maintained
19670 F:      drivers/usb/typec/mux/pi3usb30532.c
19671
19672 USB TYPEC PORT CONTROLLER DRIVERS
19673 M:      Guenter Roeck <linux@roeck-us.net>
19674 L:      linux-usb@vger.kernel.org
19675 S:      Maintained
19676 F:      drivers/usb/typec/tcpm/
19677
19678 USB UHCI DRIVER
19679 M:      Alan Stern <stern@rowland.harvard.edu>
19680 L:      linux-usb@vger.kernel.org
19681 S:      Maintained
19682 F:      drivers/usb/host/uhci*
19683
19684 USB VIDEO CLASS
19685 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19686 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19687 L:      linux-media@vger.kernel.org
19688 S:      Maintained
19689 W:      http://www.ideasonboard.org/uvc/
19690 T:      git git://linuxtv.org/media_tree.git
19691 F:      drivers/media/usb/uvc/
19692 F:      include/uapi/linux/uvcvideo.h
19693
19694 USB WEBCAM GADGET
19695 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19696 L:      linux-usb@vger.kernel.org
19697 S:      Maintained
19698 F:      drivers/usb/gadget/function/*uvc*
19699 F:      drivers/usb/gadget/legacy/webcam.c
19700 F:      include/uapi/linux/usb/g_uvc.h
19701
19702 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19703 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19704 L:      linux-wireless@vger.kernel.org
19705 S:      Maintained
19706 F:      drivers/net/wireless/rndis_wlan.c
19707
19708 USB XHCI DRIVER
19709 M:      Mathias Nyman <mathias.nyman@intel.com>
19710 L:      linux-usb@vger.kernel.org
19711 S:      Supported
19712 F:      drivers/usb/host/pci-quirks*
19713 F:      drivers/usb/host/xhci*
19714
19715 USB ZD1201 DRIVER
19716 L:      linux-wireless@vger.kernel.org
19717 S:      Orphan
19718 W:      http://linux-lc100020.sourceforge.net
19719 F:      drivers/net/wireless/zydas/zd1201.*
19720
19721 USB ZR364XX DRIVER
19722 M:      Antoine Jacquet <royale@zerezo.com>
19723 L:      linux-usb@vger.kernel.org
19724 L:      linux-media@vger.kernel.org
19725 S:      Maintained
19726 W:      http://royale.zerezo.com/zr364xx/
19727 T:      git git://linuxtv.org/media_tree.git
19728 F:      Documentation/admin-guide/media/zr364xx*
19729 F:      drivers/media/usb/zr364xx/
19730
19731 USER-MODE LINUX (UML)
19732 M:      Jeff Dike <jdike@addtoit.com>
19733 M:      Richard Weinberger <richard@nod.at>
19734 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19735 L:      linux-um@lists.infradead.org
19736 S:      Maintained
19737 W:      http://user-mode-linux.sourceforge.net
19738 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19740 F:      Documentation/virt/uml/
19741 F:      arch/um/
19742 F:      arch/x86/um/
19743 F:      fs/hostfs/
19744
19745 USERSPACE COPYIN/COPYOUT (UIOVEC)
19746 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19747 S:      Maintained
19748 F:      include/linux/uio.h
19749 F:      lib/iov_iter.c
19750
19751 USERSPACE DMA BUFFER DRIVER
19752 M:      Gerd Hoffmann <kraxel@redhat.com>
19753 L:      dri-devel@lists.freedesktop.org
19754 S:      Maintained
19755 T:      git git://anongit.freedesktop.org/drm/drm-misc
19756 F:      drivers/dma-buf/udmabuf.c
19757 F:      include/uapi/linux/udmabuf.h
19758
19759 USERSPACE I/O (UIO)
19760 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19761 S:      Maintained
19762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19763 F:      Documentation/driver-api/uio-howto.rst
19764 F:      drivers/uio/
19765 F:      include/linux/uio_driver.h
19766
19767 UTIL-LINUX PACKAGE
19768 M:      Karel Zak <kzak@redhat.com>
19769 L:      util-linux@vger.kernel.org
19770 S:      Maintained
19771 W:      http://en.wikipedia.org/wiki/Util-linux
19772 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19773
19774 UUID HELPERS
19775 M:      Christoph Hellwig <hch@lst.de>
19776 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19777 L:      linux-kernel@vger.kernel.org
19778 S:      Maintained
19779 T:      git git://git.infradead.org/users/hch/uuid.git
19780 F:      include/linux/uuid.h
19781 F:      include/uapi/linux/uuid.h
19782 F:      lib/test_uuid.c
19783 F:      lib/uuid.c
19784
19785 UV SYSFS DRIVER
19786 M:      Justin Ernst <justin.ernst@hpe.com>
19787 L:      platform-driver-x86@vger.kernel.org
19788 S:      Maintained
19789 F:      drivers/platform/x86/uv_sysfs.c
19790
19791 UVESAFB DRIVER
19792 M:      Michal Januszewski <spock@gentoo.org>
19793 L:      linux-fbdev@vger.kernel.org
19794 S:      Maintained
19795 W:      https://github.com/mjanusz/v86d
19796 F:      Documentation/fb/uvesafb.rst
19797 F:      drivers/video/fbdev/uvesafb.*
19798
19799 Ux500 CLOCK DRIVERS
19800 M:      Ulf Hansson <ulf.hansson@linaro.org>
19801 L:      linux-clk@vger.kernel.org
19802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19803 S:      Maintained
19804 F:      drivers/clk/ux500/
19805
19806 VF610 NAND DRIVER
19807 M:      Stefan Agner <stefan@agner.ch>
19808 L:      linux-mtd@lists.infradead.org
19809 S:      Supported
19810 F:      drivers/mtd/nand/raw/vf610_nfc.c
19811
19812 VFAT/FAT/MSDOS FILESYSTEM
19813 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19814 S:      Maintained
19815 F:      Documentation/filesystems/vfat.rst
19816 F:      fs/fat/
19817
19818 VFIO DRIVER
19819 M:      Alex Williamson <alex.williamson@redhat.com>
19820 R:      Cornelia Huck <cohuck@redhat.com>
19821 L:      kvm@vger.kernel.org
19822 S:      Maintained
19823 T:      git git://github.com/awilliam/linux-vfio.git
19824 F:      Documentation/driver-api/vfio.rst
19825 F:      drivers/vfio/
19826 F:      include/linux/vfio.h
19827 F:      include/linux/vfio_pci_core.h
19828 F:      include/uapi/linux/vfio.h
19829
19830 VFIO FSL-MC DRIVER
19831 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19832 L:      kvm@vger.kernel.org
19833 S:      Maintained
19834 F:      drivers/vfio/fsl-mc/
19835
19836 VFIO MEDIATED DEVICE DRIVERS
19837 M:      Kirti Wankhede <kwankhede@nvidia.com>
19838 L:      kvm@vger.kernel.org
19839 S:      Maintained
19840 F:      Documentation/driver-api/vfio-mediated-device.rst
19841 F:      drivers/vfio/mdev/
19842 F:      include/linux/mdev.h
19843 F:      samples/vfio-mdev/
19844
19845 VFIO PLATFORM DRIVER
19846 M:      Eric Auger <eric.auger@redhat.com>
19847 L:      kvm@vger.kernel.org
19848 S:      Maintained
19849 F:      drivers/vfio/platform/
19850
19851 VGA_SWITCHEROO
19852 R:      Lukas Wunner <lukas@wunner.de>
19853 S:      Maintained
19854 T:      git git://anongit.freedesktop.org/drm/drm-misc
19855 F:      Documentation/gpu/vga-switcheroo.rst
19856 F:      drivers/gpu/vga/vga_switcheroo.c
19857 F:      include/linux/vga_switcheroo.h
19858
19859 VIA RHINE NETWORK DRIVER
19860 S:      Maintained
19861 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19862 F:      drivers/net/ethernet/via/via-rhine.c
19863
19864 VIA SD/MMC CARD CONTROLLER DRIVER
19865 M:      Bruce Chang <brucechang@via.com.tw>
19866 M:      Harald Welte <HaraldWelte@viatech.com>
19867 S:      Maintained
19868 F:      drivers/mmc/host/via-sdmmc.c
19869
19870 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19871 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19872 L:      linux-fbdev@vger.kernel.org
19873 S:      Maintained
19874 F:      drivers/video/fbdev/via/
19875 F:      include/linux/via-core.h
19876 F:      include/linux/via-gpio.h
19877 F:      include/linux/via_i2c.h
19878
19879 VIA VELOCITY NETWORK DRIVER
19880 M:      Francois Romieu <romieu@fr.zoreil.com>
19881 L:      netdev@vger.kernel.org
19882 S:      Maintained
19883 F:      drivers/net/ethernet/via/via-velocity.*
19884
19885 VICODEC VIRTUAL CODEC DRIVER
19886 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19887 L:      linux-media@vger.kernel.org
19888 S:      Maintained
19889 W:      https://linuxtv.org
19890 T:      git git://linuxtv.org/media_tree.git
19891 F:      drivers/media/test-drivers/vicodec/*
19892
19893 VIDEO I2C POLLING DRIVER
19894 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19895 L:      linux-media@vger.kernel.org
19896 S:      Maintained
19897 F:      drivers/media/i2c/video-i2c.c
19898
19899 VIDEO MULTIPLEXER DRIVER
19900 M:      Philipp Zabel <p.zabel@pengutronix.de>
19901 L:      linux-media@vger.kernel.org
19902 S:      Maintained
19903 F:      drivers/media/platform/video-mux.c
19904
19905 VIDEOBUF2 FRAMEWORK
19906 M:      Tomasz Figa <tfiga@chromium.org>
19907 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19908 L:      linux-media@vger.kernel.org
19909 S:      Maintained
19910 F:      drivers/media/common/videobuf2/*
19911 F:      include/media/videobuf2-*
19912
19913 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19914 M:      Helen Koike <helen.koike@collabora.com>
19915 R:      Shuah Khan <skhan@linuxfoundation.org>
19916 L:      linux-media@vger.kernel.org
19917 S:      Maintained
19918 W:      https://linuxtv.org
19919 T:      git git://linuxtv.org/media_tree.git
19920 F:      drivers/media/test-drivers/vimc/*
19921
19922 VIRT LIB
19923 M:      Alex Williamson <alex.williamson@redhat.com>
19924 M:      Paolo Bonzini <pbonzini@redhat.com>
19925 L:      kvm@vger.kernel.org
19926 S:      Supported
19927 F:      virt/lib/
19928
19929 VIRTIO AND VHOST VSOCK DRIVER
19930 M:      Stefan Hajnoczi <stefanha@redhat.com>
19931 M:      Stefano Garzarella <sgarzare@redhat.com>
19932 L:      kvm@vger.kernel.org
19933 L:      virtualization@lists.linux-foundation.org
19934 L:      netdev@vger.kernel.org
19935 S:      Maintained
19936 F:      drivers/vhost/vsock.c
19937 F:      include/linux/virtio_vsock.h
19938 F:      include/uapi/linux/virtio_vsock.h
19939 F:      net/vmw_vsock/virtio_transport.c
19940 F:      net/vmw_vsock/virtio_transport_common.c
19941
19942 VIRTIO BLOCK AND SCSI DRIVERS
19943 M:      "Michael S. Tsirkin" <mst@redhat.com>
19944 M:      Jason Wang <jasowang@redhat.com>
19945 R:      Paolo Bonzini <pbonzini@redhat.com>
19946 R:      Stefan Hajnoczi <stefanha@redhat.com>
19947 L:      virtualization@lists.linux-foundation.org
19948 S:      Maintained
19949 F:      drivers/block/virtio_blk.c
19950 F:      drivers/scsi/virtio_scsi.c
19951 F:      drivers/vhost/scsi.c
19952 F:      include/uapi/linux/virtio_blk.h
19953 F:      include/uapi/linux/virtio_scsi.h
19954
19955 VIRTIO CONSOLE DRIVER
19956 M:      Amit Shah <amit@kernel.org>
19957 L:      virtualization@lists.linux-foundation.org
19958 S:      Maintained
19959 F:      drivers/char/virtio_console.c
19960 F:      include/linux/virtio_console.h
19961 F:      include/uapi/linux/virtio_console.h
19962
19963 VIRTIO CORE AND NET DRIVERS
19964 M:      "Michael S. Tsirkin" <mst@redhat.com>
19965 M:      Jason Wang <jasowang@redhat.com>
19966 L:      virtualization@lists.linux-foundation.org
19967 S:      Maintained
19968 F:      Documentation/devicetree/bindings/virtio/
19969 F:      drivers/block/virtio_blk.c
19970 F:      drivers/crypto/virtio/
19971 F:      drivers/net/virtio_net.c
19972 F:      drivers/vdpa/
19973 F:      drivers/virtio/
19974 F:      include/linux/vdpa.h
19975 F:      include/linux/virtio*.h
19976 F:      include/uapi/linux/virtio_*.h
19977 F:      tools/virtio/
19978
19979 VIRTIO BALLOON
19980 M:      "Michael S. Tsirkin" <mst@redhat.com>
19981 M:      David Hildenbrand <david@redhat.com>
19982 L:      virtualization@lists.linux-foundation.org
19983 S:      Maintained
19984 F:      drivers/virtio/virtio_balloon.c
19985 F:      include/uapi/linux/virtio_balloon.h
19986 F:      include/linux/balloon_compaction.h
19987 F:      mm/balloon_compaction.c
19988
19989 VIRTIO CRYPTO DRIVER
19990 M:      Gonglei <arei.gonglei@huawei.com>
19991 L:      virtualization@lists.linux-foundation.org
19992 L:      linux-crypto@vger.kernel.org
19993 S:      Maintained
19994 F:      drivers/crypto/virtio/
19995 F:      include/uapi/linux/virtio_crypto.h
19996
19997 VIRTIO DRIVERS FOR S390
19998 M:      Cornelia Huck <cohuck@redhat.com>
19999 M:      Halil Pasic <pasic@linux.ibm.com>
20000 L:      linux-s390@vger.kernel.org
20001 L:      virtualization@lists.linux-foundation.org
20002 L:      kvm@vger.kernel.org
20003 S:      Supported
20004 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20005 F:      drivers/s390/virtio/
20006
20007 VIRTIO FILE SYSTEM
20008 M:      Vivek Goyal <vgoyal@redhat.com>
20009 M:      Stefan Hajnoczi <stefanha@redhat.com>
20010 M:      Miklos Szeredi <miklos@szeredi.hu>
20011 L:      virtualization@lists.linux-foundation.org
20012 L:      linux-fsdevel@vger.kernel.org
20013 S:      Supported
20014 W:      https://virtio-fs.gitlab.io/
20015 F:      Documentation/filesystems/virtiofs.rst
20016 F:      fs/fuse/virtio_fs.c
20017 F:      include/uapi/linux/virtio_fs.h
20018
20019 VIRTIO GPIO DRIVER
20020 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20021 M:      Viresh Kumar <vireshk@kernel.org>
20022 L:      linux-gpio@vger.kernel.org
20023 L:      virtualization@lists.linux-foundation.org
20024 S:      Maintained
20025 F:      drivers/gpio/gpio-virtio.c
20026 F:      include/uapi/linux/virtio_gpio.h
20027
20028 VIRTIO GPU DRIVER
20029 M:      David Airlie <airlied@linux.ie>
20030 M:      Gerd Hoffmann <kraxel@redhat.com>
20031 L:      dri-devel@lists.freedesktop.org
20032 L:      virtualization@lists.linux-foundation.org
20033 S:      Maintained
20034 T:      git git://anongit.freedesktop.org/drm/drm-misc
20035 F:      drivers/gpu/drm/virtio/
20036 F:      include/uapi/linux/virtio_gpu.h
20037
20038 VIRTIO HOST (VHOST)
20039 M:      "Michael S. Tsirkin" <mst@redhat.com>
20040 M:      Jason Wang <jasowang@redhat.com>
20041 L:      kvm@vger.kernel.org
20042 L:      virtualization@lists.linux-foundation.org
20043 L:      netdev@vger.kernel.org
20044 S:      Maintained
20045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20046 F:      drivers/vhost/
20047 F:      include/linux/vhost_iotlb.h
20048 F:      include/uapi/linux/vhost.h
20049
20050 VIRTIO INPUT DRIVER
20051 M:      Gerd Hoffmann <kraxel@redhat.com>
20052 S:      Maintained
20053 F:      drivers/virtio/virtio_input.c
20054 F:      include/uapi/linux/virtio_input.h
20055
20056 VIRTIO IOMMU DRIVER
20057 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20058 L:      virtualization@lists.linux-foundation.org
20059 S:      Maintained
20060 F:      drivers/iommu/virtio-iommu.c
20061 F:      include/uapi/linux/virtio_iommu.h
20062
20063 VIRTIO MEM DRIVER
20064 M:      David Hildenbrand <david@redhat.com>
20065 L:      virtualization@lists.linux-foundation.org
20066 S:      Maintained
20067 W:      https://virtio-mem.gitlab.io/
20068 F:      drivers/virtio/virtio_mem.c
20069 F:      include/uapi/linux/virtio_mem.h
20070
20071 VIRTIO SOUND DRIVER
20072 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20073 M:      "Michael S. Tsirkin" <mst@redhat.com>
20074 L:      virtualization@lists.linux-foundation.org
20075 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20076 S:      Maintained
20077 F:      include/uapi/linux/virtio_snd.h
20078 F:      sound/virtio/*
20079
20080 VIRTIO I2C DRIVER
20081 M:      Jie Deng <jie.deng@intel.com>
20082 M:      Viresh Kumar <viresh.kumar@linaro.org>
20083 L:      linux-i2c@vger.kernel.org
20084 L:      virtualization@lists.linux-foundation.org
20085 S:      Maintained
20086 F:      drivers/i2c/busses/i2c-virtio.c
20087 F:      include/uapi/linux/virtio_i2c.h
20088
20089 VIRTIO PMEM DRIVER
20090 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20091 L:      virtualization@lists.linux-foundation.org
20092 S:      Maintained
20093 F:      drivers/nvdimm/virtio_pmem.c
20094 F:      drivers/nvdimm/nd_virtio.c
20095
20096 VIRTUAL BOX GUEST DEVICE DRIVER
20097 M:      Hans de Goede <hdegoede@redhat.com>
20098 M:      Arnd Bergmann <arnd@arndb.de>
20099 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20100 S:      Maintained
20101 F:      drivers/virt/vboxguest/
20102 F:      include/linux/vbox_utils.h
20103 F:      include/uapi/linux/vbox*.h
20104
20105 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20106 M:      Hans de Goede <hdegoede@redhat.com>
20107 L:      linux-fsdevel@vger.kernel.org
20108 S:      Maintained
20109 F:      fs/vboxsf/*
20110
20111 VIRTUAL SERIO DEVICE DRIVER
20112 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20113 S:      Maintained
20114 F:      drivers/input/serio/userio.c
20115 F:      include/uapi/linux/userio.h
20116
20117 VIVID VIRTUAL VIDEO DRIVER
20118 M:      Hans Verkuil <hverkuil@xs4all.nl>
20119 L:      linux-media@vger.kernel.org
20120 S:      Maintained
20121 W:      https://linuxtv.org
20122 T:      git git://linuxtv.org/media_tree.git
20123 F:      drivers/media/test-drivers/vivid/*
20124
20125 VIDTV VIRTUAL DIGITAL TV DRIVER
20126 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20127 L:      linux-media@vger.kernel.org
20128 S:      Maintained
20129 W:      https://linuxtv.org
20130 T:      git git://linuxtv.org/media_tree.git
20131 F:      drivers/media/test-drivers/vidtv/*
20132
20133 VLYNQ BUS
20134 M:      Florian Fainelli <f.fainelli@gmail.com>
20135 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20136 S:      Maintained
20137 F:      drivers/vlynq/vlynq.c
20138 F:      include/linux/vlynq.h
20139
20140 VME SUBSYSTEM
20141 M:      Martyn Welch <martyn@welchs.me.uk>
20142 M:      Manohar Vanga <manohar.vanga@gmail.com>
20143 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20144 L:      linux-kernel@vger.kernel.org
20145 S:      Maintained
20146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20147 F:      Documentation/driver-api/vme.rst
20148 F:      drivers/staging/vme/
20149 F:      drivers/vme/
20150 F:      include/linux/vme*
20151
20152 VM SOCKETS (AF_VSOCK)
20153 M:      Stefano Garzarella <sgarzare@redhat.com>
20154 L:      virtualization@lists.linux-foundation.org
20155 L:      netdev@vger.kernel.org
20156 S:      Maintained
20157 F:      drivers/net/vsockmon.c
20158 F:      include/net/af_vsock.h
20159 F:      include/uapi/linux/vm_sockets.h
20160 F:      include/uapi/linux/vm_sockets_diag.h
20161 F:      include/uapi/linux/vsockmon.h
20162 F:      net/vmw_vsock/
20163 F:      tools/testing/vsock/
20164
20165 VMWARE BALLOON DRIVER
20166 M:      Nadav Amit <namit@vmware.com>
20167 M:      "VMware, Inc." <pv-drivers@vmware.com>
20168 L:      linux-kernel@vger.kernel.org
20169 S:      Maintained
20170 F:      drivers/misc/vmw_balloon.c
20171
20172 VMWARE HYPERVISOR INTERFACE
20173 M:      Deep Shah <sdeep@vmware.com>
20174 M:      "VMware, Inc." <pv-drivers@vmware.com>
20175 L:      virtualization@lists.linux-foundation.org
20176 S:      Supported
20177 F:      arch/x86/include/asm/vmware.h
20178 F:      arch/x86/kernel/cpu/vmware.c
20179
20180 VMWARE PVRDMA DRIVER
20181 M:      Adit Ranadive <aditr@vmware.com>
20182 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20183 L:      linux-rdma@vger.kernel.org
20184 S:      Maintained
20185 F:      drivers/infiniband/hw/vmw_pvrdma/
20186
20187 VMware PVSCSI driver
20188 M:      Vishal Bhakta <vbhakta@vmware.com>
20189 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20190 L:      linux-scsi@vger.kernel.org
20191 S:      Maintained
20192 F:      drivers/scsi/vmw_pvscsi.c
20193 F:      drivers/scsi/vmw_pvscsi.h
20194
20195 VMWARE VIRTUAL PTP CLOCK DRIVER
20196 M:      Vivek Thampi <vithampi@vmware.com>
20197 M:      "VMware, Inc." <pv-drivers@vmware.com>
20198 L:      netdev@vger.kernel.org
20199 S:      Supported
20200 F:      drivers/ptp/ptp_vmw.c
20201
20202 VMWARE VMCI DRIVER
20203 M:      Jorgen Hansen <jhansen@vmware.com>
20204 M:      Vishnu Dasa <vdasa@vmware.com>
20205 L:      linux-kernel@vger.kernel.org
20206 L:      pv-drivers@vmware.com (private)
20207 S:      Maintained
20208 F:      drivers/misc/vmw_vmci/
20209
20210 VMWARE VMMOUSE SUBDRIVER
20211 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20212 M:      "VMware, Inc." <pv-drivers@vmware.com>
20213 L:      linux-input@vger.kernel.org
20214 S:      Maintained
20215 F:      drivers/input/mouse/vmmouse.c
20216 F:      drivers/input/mouse/vmmouse.h
20217
20218 VMWARE VMXNET3 ETHERNET DRIVER
20219 M:      Ronak Doshi <doshir@vmware.com>
20220 M:      pv-drivers@vmware.com
20221 L:      netdev@vger.kernel.org
20222 S:      Maintained
20223 F:      drivers/net/vmxnet3/
20224
20225 VOCORE VOCORE2 BOARD
20226 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20227 L:      linux-mips@vger.kernel.org
20228 S:      Maintained
20229 F:      arch/mips/boot/dts/ralink/vocore2.dts
20230
20231 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20232 M:      Liam Girdwood <lgirdwood@gmail.com>
20233 M:      Mark Brown <broonie@kernel.org>
20234 L:      linux-kernel@vger.kernel.org
20235 S:      Supported
20236 W:      http://www.slimlogic.co.uk/?p=48
20237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20238 F:      Documentation/devicetree/bindings/regulator/
20239 F:      Documentation/power/regulator/
20240 F:      drivers/regulator/
20241 F:      include/dt-bindings/regulator/
20242 F:      include/linux/regulator/
20243 K:      regulator_get_optional
20244
20245 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20246 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20247 F:      drivers/regulator/irq_helpers.c
20248
20249 VRF
20250 M:      David Ahern <dsahern@kernel.org>
20251 L:      netdev@vger.kernel.org
20252 S:      Maintained
20253 F:      Documentation/networking/vrf.rst
20254 F:      drivers/net/vrf.c
20255
20256 VSPRINTF
20257 M:      Petr Mladek <pmladek@suse.com>
20258 M:      Steven Rostedt <rostedt@goodmis.org>
20259 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20260 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20261 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20262 S:      Maintained
20263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20264 F:      Documentation/core-api/printk-formats.rst
20265 F:      lib/test_printf.c
20266 F:      lib/test_scanf.c
20267 F:      lib/vsprintf.c
20268
20269 VT1211 HARDWARE MONITOR DRIVER
20270 M:      Juerg Haefliger <juergh@gmail.com>
20271 L:      linux-hwmon@vger.kernel.org
20272 S:      Maintained
20273 F:      Documentation/hwmon/vt1211.rst
20274 F:      drivers/hwmon/vt1211.c
20275
20276 VT8231 HARDWARE MONITOR DRIVER
20277 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20278 L:      linux-hwmon@vger.kernel.org
20279 S:      Maintained
20280 F:      drivers/hwmon/vt8231.c
20281
20282 VUB300 USB to SDIO/SD/MMC bridge chip
20283 L:      linux-mmc@vger.kernel.org
20284 S:      Orphan
20285 F:      drivers/mmc/host/vub300.c
20286
20287 W1 DALLAS'S 1-WIRE BUS
20288 M:      Evgeniy Polyakov <zbr@ioremap.net>
20289 S:      Maintained
20290 F:      Documentation/devicetree/bindings/w1/
20291 F:      Documentation/w1/
20292 F:      drivers/w1/
20293 F:      include/linux/w1.h
20294
20295 W83791D HARDWARE MONITORING DRIVER
20296 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20297 L:      linux-hwmon@vger.kernel.org
20298 S:      Maintained
20299 F:      Documentation/hwmon/w83791d.rst
20300 F:      drivers/hwmon/w83791d.c
20301
20302 W83793 HARDWARE MONITORING DRIVER
20303 M:      Rudolf Marek <r.marek@assembler.cz>
20304 L:      linux-hwmon@vger.kernel.org
20305 S:      Maintained
20306 F:      Documentation/hwmon/w83793.rst
20307 F:      drivers/hwmon/w83793.c
20308
20309 W83795 HARDWARE MONITORING DRIVER
20310 M:      Jean Delvare <jdelvare@suse.com>
20311 L:      linux-hwmon@vger.kernel.org
20312 S:      Maintained
20313 F:      drivers/hwmon/w83795.c
20314
20315 W83L51xD SD/MMC CARD INTERFACE DRIVER
20316 M:      Pierre Ossman <pierre@ossman.eu>
20317 S:      Maintained
20318 F:      drivers/mmc/host/wbsd.*
20319
20320 WACOM PROTOCOL 4 SERIAL TABLETS
20321 M:      Julian Squires <julian@cipht.net>
20322 M:      Hans de Goede <hdegoede@redhat.com>
20323 L:      linux-input@vger.kernel.org
20324 S:      Maintained
20325 F:      drivers/input/tablet/wacom_serial4.c
20326
20327 WATCHDOG DEVICE DRIVERS
20328 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20329 M:      Guenter Roeck <linux@roeck-us.net>
20330 L:      linux-watchdog@vger.kernel.org
20331 S:      Maintained
20332 W:      http://www.linux-watchdog.org/
20333 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20334 F:      Documentation/devicetree/bindings/watchdog/
20335 F:      Documentation/watchdog/
20336 F:      drivers/watchdog/
20337 F:      include/linux/watchdog.h
20338 F:      include/uapi/linux/watchdog.h
20339
20340 WHISKEYCOVE PMIC GPIO DRIVER
20341 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20342 L:      linux-gpio@vger.kernel.org
20343 S:      Maintained
20344 F:      drivers/gpio/gpio-wcove.c
20345
20346 WHWAVE RTC DRIVER
20347 M:      Dianlong Li <long17.cool@163.com>
20348 L:      linux-rtc@vger.kernel.org
20349 S:      Maintained
20350 F:      drivers/rtc/rtc-sd3078.c
20351
20352 WIIMOTE HID DRIVER
20353 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20354 L:      linux-input@vger.kernel.org
20355 S:      Maintained
20356 F:      drivers/hid/hid-wiimote*
20357
20358 WILOCITY WIL6210 WIRELESS DRIVER
20359 M:      Maya Erez <merez@codeaurora.org>
20360 L:      linux-wireless@vger.kernel.org
20361 L:      wil6210@qti.qualcomm.com
20362 S:      Supported
20363 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20364 F:      drivers/net/wireless/ath/wil6210/
20365
20366 WINBOND CIR DRIVER
20367 M:      David Härdeman <david@hardeman.nu>
20368 S:      Maintained
20369 F:      drivers/media/rc/winbond-cir.c
20370
20371 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20372 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20373 L:      linux-watchdog@vger.kernel.org
20374 S:      Maintained
20375 F:      drivers/watchdog/ebc-c384_wdt.c
20376
20377 WINSYSTEMS WS16C48 GPIO DRIVER
20378 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20379 L:      linux-gpio@vger.kernel.org
20380 S:      Maintained
20381 F:      drivers/gpio/gpio-ws16c48.c
20382
20383 WIREGUARD SECURE NETWORK TUNNEL
20384 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20385 L:      wireguard@lists.zx2c4.com
20386 L:      netdev@vger.kernel.org
20387 S:      Maintained
20388 F:      drivers/net/wireguard/
20389 F:      tools/testing/selftests/wireguard/
20390
20391 WISTRON LAPTOP BUTTON DRIVER
20392 M:      Miloslav Trmac <mitr@volny.cz>
20393 S:      Maintained
20394 F:      drivers/input/misc/wistron_btns.c
20395
20396 WL3501 WIRELESS PCMCIA CARD DRIVER
20397 L:      linux-wireless@vger.kernel.org
20398 S:      Odd fixes
20399 F:      drivers/net/wireless/wl3501*
20400
20401 WOLFSON MICROELECTRONICS DRIVERS
20402 L:      patches@opensource.cirrus.com
20403 S:      Supported
20404 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20405 T:      git https://github.com/CirrusLogic/linux-drivers.git
20406 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20407 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20408 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20409 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20410 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20411 F:      Documentation/devicetree/bindings/sound/wm*
20412 F:      Documentation/hwmon/wm83??.rst
20413 F:      arch/arm/mach-s3c/mach-crag6410*
20414 F:      drivers/clk/clk-wm83*.c
20415 F:      drivers/gpio/gpio-*wm*.c
20416 F:      drivers/gpio/gpio-arizona.c
20417 F:      drivers/hwmon/wm83??-hwmon.c
20418 F:      drivers/input/misc/wm831x-on.c
20419 F:      drivers/input/touchscreen/wm831x-ts.c
20420 F:      drivers/input/touchscreen/wm97*.c
20421 F:      drivers/leds/leds-wm83*.c
20422 F:      drivers/mfd/arizona*
20423 F:      drivers/mfd/cs47l24*
20424 F:      drivers/mfd/wm*.c
20425 F:      drivers/power/supply/wm83*.c
20426 F:      drivers/regulator/arizona*
20427 F:      drivers/regulator/wm8*.c
20428 F:      drivers/rtc/rtc-wm83*.c
20429 F:      drivers/video/backlight/wm83*_bl.c
20430 F:      drivers/watchdog/wm83*_wdt.c
20431 F:      include/linux/mfd/arizona/
20432 F:      include/linux/mfd/wm831x/
20433 F:      include/linux/mfd/wm8350/
20434 F:      include/linux/mfd/wm8400*
20435 F:      include/linux/regulator/arizona*
20436 F:      include/linux/wm97xx.h
20437 F:      include/sound/wm????.h
20438 F:      sound/soc/codecs/arizona*
20439 F:      sound/soc/codecs/cs47l24*
20440 F:      sound/soc/codecs/wm*
20441
20442 WORKQUEUE
20443 M:      Tejun Heo <tj@kernel.org>
20444 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20445 S:      Maintained
20446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20447 F:      Documentation/core-api/workqueue.rst
20448 F:      include/linux/workqueue.h
20449 F:      kernel/workqueue.c
20450
20451 WWAN DRIVERS
20452 M:      Loic Poulain <loic.poulain@linaro.org>
20453 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20454 R:      Johannes Berg <johannes@sipsolutions.net>
20455 L:      netdev@vger.kernel.org
20456 S:      Maintained
20457 F:      drivers/net/wwan/
20458 F:      include/linux/wwan.h
20459 F:      include/uapi/linux/wwan.h
20460
20461 X-POWERS AXP288 PMIC DRIVERS
20462 M:      Hans de Goede <hdegoede@redhat.com>
20463 S:      Maintained
20464 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20465 N:      axp288
20466
20467 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20468 M:      Chen-Yu Tsai <wens@csie.org>
20469 L:      linux-kernel@vger.kernel.org
20470 S:      Maintained
20471 N:      axp[128]
20472
20473 X.25 STACK
20474 M:      Martin Schiller <ms@dev.tdt.de>
20475 L:      linux-x25@vger.kernel.org
20476 S:      Maintained
20477 F:      Documentation/networking/lapb-module.rst
20478 F:      Documentation/networking/x25*
20479 F:      drivers/net/wan/hdlc_x25.c
20480 F:      drivers/net/wan/lapbether.c
20481 F:      include/*/lapb.h
20482 F:      include/net/x25*
20483 F:      include/uapi/linux/x25.h
20484 F:      net/lapb/
20485 F:      net/x25/
20486
20487 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20488 M:      Thomas Gleixner <tglx@linutronix.de>
20489 M:      Ingo Molnar <mingo@redhat.com>
20490 M:      Borislav Petkov <bp@alien8.de>
20491 M:      Dave Hansen <dave.hansen@linux.intel.com>
20492 M:      x86@kernel.org
20493 R:      "H. Peter Anvin" <hpa@zytor.com>
20494 L:      linux-kernel@vger.kernel.org
20495 S:      Maintained
20496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20497 F:      Documentation/devicetree/bindings/x86/
20498 F:      Documentation/x86/
20499 F:      arch/x86/
20500
20501 X86 ENTRY CODE
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/asm
20506 F:      arch/x86/entry/
20507
20508 X86 MCE INFRASTRUCTURE
20509 M:      Tony Luck <tony.luck@intel.com>
20510 M:      Borislav Petkov <bp@alien8.de>
20511 L:      linux-edac@vger.kernel.org
20512 S:      Maintained
20513 F:      arch/x86/kernel/cpu/mce/*
20514
20515 X86 MICROCODE UPDATE SUPPORT
20516 M:      Borislav Petkov <bp@alien8.de>
20517 S:      Maintained
20518 F:      arch/x86/kernel/cpu/microcode/*
20519
20520 X86 MM
20521 M:      Dave Hansen <dave.hansen@linux.intel.com>
20522 M:      Andy Lutomirski <luto@kernel.org>
20523 M:      Peter Zijlstra <peterz@infradead.org>
20524 L:      linux-kernel@vger.kernel.org
20525 S:      Maintained
20526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20527 F:      arch/x86/mm/
20528
20529 X86 PLATFORM DRIVERS
20530 M:      Hans de Goede <hdegoede@redhat.com>
20531 M:      Mark Gross <markgross@kernel.org>
20532 L:      platform-driver-x86@vger.kernel.org
20533 S:      Maintained
20534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20535 F:      drivers/platform/olpc/
20536 F:      drivers/platform/x86/
20537
20538 X86 PLATFORM DRIVERS - ARCH
20539 R:      Darren Hart <dvhart@infradead.org>
20540 R:      Andy Shevchenko <andy@infradead.org>
20541 L:      platform-driver-x86@vger.kernel.org
20542 L:      x86@kernel.org
20543 S:      Maintained
20544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20545 F:      arch/x86/platform
20546
20547 X86 PLATFORM UV HPE SUPERDOME FLEX
20548 M:      Steve Wahl <steve.wahl@hpe.com>
20549 R:      Mike Travis <mike.travis@hpe.com>
20550 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20551 R:      Russ Anderson <russ.anderson@hpe.com>
20552 S:      Supported
20553 F:      arch/x86/include/asm/uv/
20554 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20555 F:      arch/x86/platform/uv/
20556
20557 X86 VDSO
20558 M:      Andy Lutomirski <luto@kernel.org>
20559 L:      linux-kernel@vger.kernel.org
20560 S:      Maintained
20561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20562 F:      arch/x86/entry/vdso/
20563
20564 XARRAY
20565 M:      Matthew Wilcox <willy@infradead.org>
20566 L:      linux-fsdevel@vger.kernel.org
20567 S:      Supported
20568 F:      Documentation/core-api/xarray.rst
20569 F:      include/linux/idr.h
20570 F:      include/linux/xarray.h
20571 F:      lib/idr.c
20572 F:      lib/xarray.c
20573 F:      tools/testing/radix-tree
20574
20575 XBOX DVD IR REMOTE
20576 M:      Benjamin Valentin <benpicco@googlemail.com>
20577 S:      Maintained
20578 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20579 F:      drivers/media/rc/xbox_remote.c
20580
20581 XC2028/3028 TUNER DRIVER
20582 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20583 L:      linux-media@vger.kernel.org
20584 S:      Maintained
20585 W:      https://linuxtv.org
20586 T:      git git://linuxtv.org/media_tree.git
20587 F:      drivers/media/tuners/tuner-xc2028.*
20588
20589 XDP (eXpress Data Path)
20590 M:      Alexei Starovoitov <ast@kernel.org>
20591 M:      Daniel Borkmann <daniel@iogearbox.net>
20592 M:      David S. Miller <davem@davemloft.net>
20593 M:      Jakub Kicinski <kuba@kernel.org>
20594 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20595 M:      John Fastabend <john.fastabend@gmail.com>
20596 L:      netdev@vger.kernel.org
20597 L:      bpf@vger.kernel.org
20598 S:      Supported
20599 F:      include/net/xdp.h
20600 F:      include/net/xdp_priv.h
20601 F:      include/trace/events/xdp.h
20602 F:      kernel/bpf/cpumap.c
20603 F:      kernel/bpf/devmap.c
20604 F:      net/core/xdp.c
20605 F:      samples/bpf/xdp*
20606 F:      tools/testing/selftests/bpf/*xdp*
20607 F:      tools/testing/selftests/bpf/*/*xdp*
20608 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20609 F:      drivers/net/ethernet/*/*/*xdp*
20610 K:      (?:\b|_)xdp(?:\b|_)
20611
20612 XDP SOCKETS (AF_XDP)
20613 M:      Björn Töpel <bjorn@kernel.org>
20614 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20615 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20616 L:      netdev@vger.kernel.org
20617 L:      bpf@vger.kernel.org
20618 S:      Maintained
20619 F:      Documentation/networking/af_xdp.rst
20620 F:      include/net/xdp_sock*
20621 F:      include/net/xsk_buff_pool.h
20622 F:      include/uapi/linux/if_xdp.h
20623 F:      include/uapi/linux/xdp_diag.h
20624 F:      include/net/netns/xdp.h
20625 F:      net/xdp/
20626 F:      samples/bpf/xdpsock*
20627 F:      tools/lib/bpf/xsk*
20628
20629 XEN BLOCK SUBSYSTEM
20630 M:      Roger Pau Monné <roger.pau@citrix.com>
20631 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20632 S:      Supported
20633 F:      drivers/block/xen*
20634 F:      drivers/block/xen-blkback/*
20635
20636 XEN HYPERVISOR ARM
20637 M:      Stefano Stabellini <sstabellini@kernel.org>
20638 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20639 S:      Maintained
20640 F:      arch/arm/include/asm/xen/
20641 F:      arch/arm/xen/
20642
20643 XEN HYPERVISOR ARM64
20644 M:      Stefano Stabellini <sstabellini@kernel.org>
20645 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20646 S:      Maintained
20647 F:      arch/arm64/include/asm/xen/
20648 F:      arch/arm64/xen/
20649
20650 XEN HYPERVISOR INTERFACE
20651 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20652 M:      Juergen Gross <jgross@suse.com>
20653 R:      Stefano Stabellini <sstabellini@kernel.org>
20654 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20655 S:      Supported
20656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20657 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20658 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20659 F:      arch/x86/include/asm/pvclock-abi.h
20660 F:      arch/x86/include/asm/xen/
20661 F:      arch/x86/platform/pvh/
20662 F:      arch/x86/xen/
20663 F:      drivers/*/xen-*front.c
20664 F:      drivers/xen/
20665 F:      include/uapi/xen/
20666 F:      include/xen/
20667
20668 XEN NETWORK BACKEND DRIVER
20669 M:      Wei Liu <wei.liu@kernel.org>
20670 M:      Paul Durrant <paul@xen.org>
20671 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20672 L:      netdev@vger.kernel.org
20673 S:      Supported
20674 F:      drivers/net/xen-netback/*
20675
20676 XEN PCI SUBSYSTEM
20677 M:      Juergen Gross <jgross@suse.com>
20678 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20679 S:      Supported
20680 F:      arch/x86/pci/*xen*
20681 F:      drivers/pci/*xen*
20682
20683 XEN PVSCSI DRIVERS
20684 M:      Juergen Gross <jgross@suse.com>
20685 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20686 L:      linux-scsi@vger.kernel.org
20687 S:      Supported
20688 F:      drivers/scsi/xen-scsifront.c
20689 F:      drivers/xen/xen-scsiback.c
20690 F:      include/xen/interface/io/vscsiif.h
20691
20692 XEN SOUND FRONTEND DRIVER
20693 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20694 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20696 S:      Supported
20697 F:      sound/xen/*
20698
20699 XEN SWIOTLB SUBSYSTEM
20700 M:      Juergen Gross <jgross@suse.com>
20701 M:      Stefano Stabellini <sstabellini@kernel.org>
20702 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20703 L:      iommu@lists.linux-foundation.org
20704 S:      Supported
20705 F:      arch/x86/xen/*swiotlb*
20706 F:      drivers/xen/*swiotlb*
20707
20708 XFS FILESYSTEM
20709 C:      irc://irc.oftc.net/xfs
20710 M:      Darrick J. Wong <djwong@kernel.org>
20711 M:      linux-xfs@vger.kernel.org
20712 L:      linux-xfs@vger.kernel.org
20713 S:      Supported
20714 W:      http://xfs.org/
20715 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20716 F:      Documentation/ABI/testing/sysfs-fs-xfs
20717 F:      Documentation/admin-guide/xfs.rst
20718 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20719 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20720 F:      fs/xfs/
20721 F:      include/uapi/linux/dqblk_xfs.h
20722 F:      include/uapi/linux/fsmap.h
20723
20724 XILINX AXI ETHERNET DRIVER
20725 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20726 S:      Maintained
20727 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20728
20729 XILINX CAN DRIVER
20730 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20731 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20732 L:      linux-can@vger.kernel.org
20733 S:      Maintained
20734 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20735 F:      drivers/net/can/xilinx_can.c
20736
20737 XILINX GPIO DRIVER
20738 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20739 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20740 R:      Michal Simek <michal.simek@xilinx.com>
20741 S:      Maintained
20742 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20743 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20744 F:      drivers/gpio/gpio-xilinx.c
20745 F:      drivers/gpio/gpio-zynq.c
20746
20747 XILINX SD-FEC IP CORES
20748 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20749 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20750 S:      Maintained
20751 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20752 F:      Documentation/misc-devices/xilinx_sdfec.rst
20753 F:      drivers/misc/Kconfig
20754 F:      drivers/misc/Makefile
20755 F:      drivers/misc/xilinx_sdfec.c
20756 F:      include/uapi/misc/xilinx_sdfec.h
20757
20758 XILINX UARTLITE SERIAL DRIVER
20759 M:      Peter Korsgaard <jacmet@sunsite.dk>
20760 L:      linux-serial@vger.kernel.org
20761 S:      Maintained
20762 F:      drivers/tty/serial/uartlite.c
20763
20764 XILINX VIDEO IP CORES
20765 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20766 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20767 L:      linux-media@vger.kernel.org
20768 S:      Supported
20769 T:      git git://linuxtv.org/media_tree.git
20770 F:      Documentation/devicetree/bindings/media/xilinx/
20771 F:      drivers/media/platform/xilinx/
20772 F:      include/uapi/linux/xilinx-v4l2-controls.h
20773
20774 XILINX ZYNQMP DPDMA DRIVER
20775 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20776 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20777 L:      dmaengine@vger.kernel.org
20778 S:      Supported
20779 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20780 F:      drivers/dma/xilinx/xilinx_dpdma.c
20781 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20782
20783 XILINX ZYNQMP PSGTR PHY DRIVER
20784 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20785 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20786 L:      linux-kernel@vger.kernel.org
20787 S:      Supported
20788 T:      git https://github.com/Xilinx/linux-xlnx.git
20789 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20790 F:      drivers/phy/xilinx/phy-zynqmp.c
20791
20792 XILLYBUS DRIVER
20793 M:      Eli Billauer <eli.billauer@gmail.com>
20794 L:      linux-kernel@vger.kernel.org
20795 S:      Supported
20796 F:      drivers/char/xillybus/
20797
20798 XLP9XX I2C DRIVER
20799 M:      George Cherian <gcherian@marvell.com>
20800 L:      linux-i2c@vger.kernel.org
20801 S:      Supported
20802 W:      http://www.marvell.com
20803 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20804 F:      drivers/i2c/busses/i2c-xlp9xx.c
20805
20806 XRA1403 GPIO EXPANDER
20807 M:      Nandor Han <nandor.han@ge.com>
20808 M:      Semi Malinen <semi.malinen@ge.com>
20809 L:      linux-gpio@vger.kernel.org
20810 S:      Maintained
20811 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20812 F:      drivers/gpio/gpio-xra1403.c
20813
20814 XTENSA XTFPGA PLATFORM SUPPORT
20815 M:      Max Filippov <jcmvbkbc@gmail.com>
20816 L:      linux-xtensa@linux-xtensa.org
20817 S:      Maintained
20818 F:      drivers/spi/spi-xtensa-xtfpga.c
20819 F:      sound/soc/xtensa/xtfpga-i2s.c
20820
20821 YAM DRIVER FOR AX.25
20822 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20823 L:      linux-hams@vger.kernel.org
20824 S:      Maintained
20825 F:      drivers/net/hamradio/yam*
20826 F:      include/linux/yam.h
20827
20828 YAMA SECURITY MODULE
20829 M:      Kees Cook <keescook@chromium.org>
20830 S:      Supported
20831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20832 F:      Documentation/admin-guide/LSM/Yama.rst
20833 F:      security/yama/
20834
20835 YEALINK PHONE DRIVER
20836 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20837 L:      usbb2k-api-dev@nongnu.org
20838 S:      Maintained
20839 F:      Documentation/input/devices/yealink.rst
20840 F:      drivers/input/misc/yealink.*
20841
20842 Z8530 DRIVER FOR AX.25
20843 M:      Joerg Reuter <jreuter@yaina.de>
20844 L:      linux-hams@vger.kernel.org
20845 S:      Maintained
20846 W:      http://yaina.de/jreuter/
20847 W:      http://www.qsl.net/dl1bke/
20848 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20849 F:      drivers/net/hamradio/*scc.c
20850 F:      drivers/net/hamradio/z8530.h
20851
20852 ZBUD COMPRESSED PAGE ALLOCATOR
20853 M:      Seth Jennings <sjenning@redhat.com>
20854 M:      Dan Streetman <ddstreet@ieee.org>
20855 L:      linux-mm@kvack.org
20856 S:      Maintained
20857 F:      mm/zbud.c
20858
20859 ZD1211RW WIRELESS DRIVER
20860 M:      Ulrich Kunitz <kune@deine-taler.de>
20861 L:      linux-wireless@vger.kernel.org
20862 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20863 S:      Maintained
20864 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20865 F:      drivers/net/wireless/zydas/zd1211rw/
20866
20867 ZD1301 MEDIA DRIVER
20868 M:      Antti Palosaari <crope@iki.fi>
20869 L:      linux-media@vger.kernel.org
20870 S:      Maintained
20871 W:      https://linuxtv.org/
20872 W:      http://palosaari.fi/linux/
20873 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20874 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20875
20876 ZD1301_DEMOD MEDIA DRIVER
20877 M:      Antti Palosaari <crope@iki.fi>
20878 L:      linux-media@vger.kernel.org
20879 S:      Maintained
20880 W:      https://linuxtv.org/
20881 W:      http://palosaari.fi/linux/
20882 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20883 F:      drivers/media/dvb-frontends/zd1301_demod*
20884
20885 ZHAOXIN PROCESSOR SUPPORT
20886 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20887 L:      linux-kernel@vger.kernel.org
20888 S:      Maintained
20889 F:      arch/x86/kernel/cpu/zhaoxin.c
20890
20891 ZONEFS FILESYSTEM
20892 M:      Damien Le Moal <damien.lemoal@wdc.com>
20893 M:      Naohiro Aota <naohiro.aota@wdc.com>
20894 R:      Johannes Thumshirn <jth@kernel.org>
20895 L:      linux-fsdevel@vger.kernel.org
20896 S:      Maintained
20897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20898 F:      Documentation/filesystems/zonefs.rst
20899 F:      fs/zonefs/
20900
20901 ZPOOL COMPRESSED PAGE STORAGE API
20902 M:      Dan Streetman <ddstreet@ieee.org>
20903 L:      linux-mm@kvack.org
20904 S:      Maintained
20905 F:      include/linux/zpool.h
20906 F:      mm/zpool.c
20907
20908 ZR36067 VIDEO FOR LINUX DRIVER
20909 M:      Corentin Labbe <clabbe@baylibre.com>
20910 L:      mjpeg-users@lists.sourceforge.net
20911 L:      linux-media@vger.kernel.org
20912 S:      Maintained
20913 W:      http://mjpeg.sourceforge.net/driver-zoran/
20914 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20915 F:      Documentation/driver-api/media/drivers/zoran.rst
20916 F:      drivers/staging/media/zoran/
20917
20918 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20919 M:      Minchan Kim <minchan@kernel.org>
20920 M:      Nitin Gupta <ngupta@vflare.org>
20921 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20922 L:      linux-kernel@vger.kernel.org
20923 S:      Maintained
20924 F:      Documentation/admin-guide/blockdev/zram.rst
20925 F:      drivers/block/zram/
20926
20927 ZS DECSTATION Z85C30 SERIAL DRIVER
20928 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20929 S:      Maintained
20930 F:      drivers/tty/serial/zs.*
20931
20932 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20933 M:      Minchan Kim <minchan@kernel.org>
20934 M:      Nitin Gupta <ngupta@vflare.org>
20935 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20936 L:      linux-mm@kvack.org
20937 S:      Maintained
20938 F:      Documentation/vm/zsmalloc.rst
20939 F:      include/linux/zsmalloc.h
20940 F:      mm/zsmalloc.c
20941
20942 ZSWAP COMPRESSED SWAP CACHING
20943 M:      Seth Jennings <sjenning@redhat.com>
20944 M:      Dan Streetman <ddstreet@ieee.org>
20945 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20946 L:      linux-mm@kvack.org
20947 S:      Maintained
20948 F:      mm/zswap.c
20949
20950 THE REST
20951 M:      Linus Torvalds <torvalds@linux-foundation.org>
20952 L:      linux-kernel@vger.kernel.org
20953 S:      Buried alive in reporters
20954 Q:      http://patchwork.kernel.org/project/LKML/list/
20955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20956 F:      *
20957 F:      */