Merge tag 'gpio-updates-for-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/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 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
585 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
586 S:      Supported
587 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
588 F:      drivers/iio/accel/adxl313*
589
590 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
591 M:      Michael Hennerich <michael.hennerich@analog.com>
592 S:      Supported
593 W:      http://wiki.analog.com/ADXL345
594 W:      http://ez.analog.com/community/linux-device-drivers
595 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
596 F:      drivers/input/misc/adxl34x.c
597
598 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
599 M:      Puranjay Mohan <puranjay12@gmail.com>
600 L:      linux-iio@vger.kernel.org
601 S:      Supported
602 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
603 F:      drivers/iio/accel/adxl355.h
604 F:      drivers/iio/accel/adxl355_core.c
605 F:      drivers/iio/accel/adxl355_i2c.c
606 F:      drivers/iio/accel/adxl355_spi.c
607
608 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://ez.analog.com/community/linux-device-drivers
612 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
613 F:      drivers/iio/accel/adxl372.c
614 F:      drivers/iio/accel/adxl372_i2c.c
615 F:      drivers/iio/accel/adxl372_spi.c
616
617 AF9013 MEDIA DRIVER
618 M:      Antti Palosaari <crope@iki.fi>
619 L:      linux-media@vger.kernel.org
620 S:      Maintained
621 W:      https://linuxtv.org
622 W:      http://palosaari.fi/linux/
623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
624 T:      git git://linuxtv.org/anttip/media_tree.git
625 F:      drivers/media/dvb-frontends/af9013*
626
627 AF9033 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9033*
636
637 AFFS FILE SYSTEM
638 M:      David Sterba <dsterba@suse.com>
639 L:      linux-fsdevel@vger.kernel.org
640 S:      Odd Fixes
641 F:      Documentation/filesystems/affs.rst
642 F:      fs/affs/
643
644 AFS FILESYSTEM
645 M:      David Howells <dhowells@redhat.com>
646 M:      Marc Dionne <marc.dionne@auristor.com>
647 L:      linux-afs@lists.infradead.org
648 S:      Supported
649 W:      https://www.infradead.org/~dhowells/kafs/
650 F:      Documentation/filesystems/afs.rst
651 F:      fs/afs/
652 F:      include/trace/events/afs.h
653
654 AGPGART DRIVER
655 M:      David Airlie <airlied@linux.ie>
656 S:      Maintained
657 T:      git git://anongit.freedesktop.org/drm/drm
658 F:      drivers/char/agp/
659 F:      include/linux/agp*
660 F:      include/uapi/linux/agp*
661
662 AHA152X SCSI DRIVER
663 M:      "Juergen E. Fischer" <fischer@norbit.de>
664 L:      linux-scsi@vger.kernel.org
665 S:      Maintained
666 F:      drivers/scsi/aha152x*
667 F:      drivers/scsi/pcmcia/aha152x*
668
669 AIC7XXX / AIC79XX SCSI DRIVER
670 M:      Hannes Reinecke <hare@suse.com>
671 L:      linux-scsi@vger.kernel.org
672 S:      Maintained
673 F:      drivers/scsi/aic7xxx/
674
675 AIMSLAB FM RADIO RECEIVER DRIVER
676 M:      Hans Verkuil <hverkuil@xs4all.nl>
677 L:      linux-media@vger.kernel.org
678 S:      Maintained
679 W:      https://linuxtv.org
680 T:      git git://linuxtv.org/media_tree.git
681 F:      drivers/media/radio/radio-aimslab*
682
683 AIO
684 M:      Benjamin LaHaise <bcrl@kvack.org>
685 L:      linux-aio@kvack.org
686 S:      Supported
687 F:      fs/aio.c
688 F:      include/linux/*aio*.h
689
690 AIRSPY MEDIA DRIVER
691 M:      Antti Palosaari <crope@iki.fi>
692 L:      linux-media@vger.kernel.org
693 S:      Maintained
694 W:      https://linuxtv.org
695 W:      http://palosaari.fi/linux/
696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
697 T:      git git://linuxtv.org/anttip/media_tree.git
698 F:      drivers/media/usb/airspy/
699
700 ALACRITECH GIGABIT ETHERNET DRIVER
701 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
702 S:      Maintained
703 F:      drivers/net/ethernet/alacritech/*
704
705 ALCATEL SPEEDTOUCH USB DRIVER
706 M:      Duncan Sands <duncan.sands@free.fr>
707 L:      linux-usb@vger.kernel.org
708 S:      Maintained
709 W:      http://www.linux-usb.org/SpeedTouch/
710 F:      drivers/usb/atm/speedtch.c
711 F:      drivers/usb/atm/usbatm.c
712
713 ALCHEMY AU1XX0 MMC DRIVER
714 M:      Manuel Lauss <manuel.lauss@gmail.com>
715 S:      Maintained
716 F:      drivers/mmc/host/au1xmmc.c
717
718 ALI1563 I2C DRIVER
719 M:      Rudolf Marek <r.marek@assembler.cz>
720 L:      linux-i2c@vger.kernel.org
721 S:      Maintained
722 F:      Documentation/i2c/busses/i2c-ali1563.rst
723 F:      drivers/i2c/busses/i2c-ali1563.c
724
725 ALIENWARE WMI DRIVER
726 L:      Dell.Client.Kernel@dell.com
727 S:      Maintained
728 F:      drivers/platform/x86/dell/alienware-wmi.c
729
730 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
731 M:      Tomislav Denis <tomislav.denis@avl.com>
732 L:      linux-iio@vger.kernel.org
733 S:      Maintained
734 W:      http://www.allsensors.com/
735 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
736 F:      drivers/iio/pressure/dlhl60d.c
737
738 ALLEGRO DVT VIDEO IP CORE DRIVER
739 M:      Michael Tretter <m.tretter@pengutronix.de>
740 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
741 L:      linux-media@vger.kernel.org
742 S:      Maintained
743 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
744 F:      drivers/media/platform/allegro-dvt/
745
746 ALLWINNER A10 CSI DRIVER
747 M:      Maxime Ripard <mripard@kernel.org>
748 L:      linux-media@vger.kernel.org
749 S:      Maintained
750 T:      git git://linuxtv.org/media_tree.git
751 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
752 F:      drivers/media/platform/sunxi/sun4i-csi/
753
754 ALLWINNER CPUFREQ DRIVER
755 M:      Yangtao Li <tiny.windzz@gmail.com>
756 L:      linux-pm@vger.kernel.org
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
759 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
760
761 ALLWINNER CRYPTO DRIVERS
762 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
763 L:      linux-crypto@vger.kernel.org
764 S:      Maintained
765 F:      drivers/crypto/allwinner/
766
767 ALLWINNER HARDWARE SPINLOCK SUPPORT
768 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
769 S:      Maintained
770 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
771 F:      drivers/hwspinlock/sun6i_hwspinlock.c
772
773 ALLWINNER THERMAL DRIVER
774 M:      Vasily Khoruzhick <anarsoul@gmail.com>
775 M:      Yangtao Li <tiny.windzz@gmail.com>
776 L:      linux-pm@vger.kernel.org
777 S:      Maintained
778 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
779 F:      drivers/thermal/sun8i_thermal.c
780
781 ALLWINNER VPU DRIVER
782 M:      Maxime Ripard <mripard@kernel.org>
783 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
784 L:      linux-media@vger.kernel.org
785 S:      Maintained
786 F:      drivers/staging/media/sunxi/cedrus/
787
788 ALPHA PORT
789 M:      Richard Henderson <rth@twiddle.net>
790 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
791 M:      Matt Turner <mattst88@gmail.com>
792 L:      linux-alpha@vger.kernel.org
793 S:      Odd Fixes
794 F:      arch/alpha/
795
796 ALPS PS/2 TOUCHPAD DRIVER
797 R:      Pali Rohár <pali@kernel.org>
798 F:      drivers/input/mouse/alps.*
799
800 ALTERA I2C CONTROLLER DRIVER
801 M:      Thor Thayer <thor.thayer@linux.intel.com>
802 S:      Maintained
803 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
804 F:      drivers/i2c/busses/i2c-altera.c
805
806 ALTERA MAILBOX DRIVER
807 M:      Mun Yew Tham <mun.yew.tham@intel.com>
808 S:      Maintained
809 F:      drivers/mailbox/mailbox-altera.c
810
811 ALTERA MSGDMA IP CORE DRIVER
812 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
813 R:      Stefan Roese <sr@denx.de>
814 L:      dmaengine@vger.kernel.org
815 S:      Odd Fixes
816 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
817 F:      drivers/dma/altera-msgdma.c
818
819 ALTERA PIO DRIVER
820 M:      Mun Yew Tham <mun.yew.tham@intel.com>
821 L:      linux-gpio@vger.kernel.org
822 S:      Maintained
823 F:      drivers/gpio/gpio-altera.c
824
825 ALTERA SYSTEM MANAGER DRIVER
826 M:      Thor Thayer <thor.thayer@linux.intel.com>
827 S:      Maintained
828 F:      drivers/mfd/altera-sysmgr.c
829 F:      include/linux/mfd/altera-sysmgr.h
830
831 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
832 M:      Thor Thayer <thor.thayer@linux.intel.com>
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera-a10sr.c
835 F:      drivers/mfd/altera-a10sr.c
836 F:      drivers/reset/reset-a10sr.c
837 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
838 F:      include/linux/mfd/altera-a10sr.h
839
840 ALTERA TRIPLE SPEED ETHERNET DRIVER
841 M:      Joyce Ooi <joyce.ooi@intel.com>
842 L:      netdev@vger.kernel.org
843 S:      Maintained
844 F:      drivers/net/ethernet/altera/
845
846 ALTERA UART/JTAG UART SERIAL DRIVERS
847 M:      Tobias Klauser <tklauser@distanz.ch>
848 L:      linux-serial@vger.kernel.org
849 S:      Maintained
850 F:      drivers/tty/serial/altera_jtaguart.c
851 F:      drivers/tty/serial/altera_uart.c
852 F:      include/linux/altera_jtaguart.h
853 F:      include/linux/altera_uart.h
854
855 AMAZON ANNAPURNA LABS FIC DRIVER
856 M:      Talel Shenhar <talel@amazon.com>
857 S:      Maintained
858 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
859 F:      drivers/irqchip/irq-al-fic.c
860
861 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
862 M:      Talel Shenhar <talel@amazon.com>
863 M:      Talel Shenhar <talelshenhar@gmail.com>
864 S:      Maintained
865 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
866 F:      drivers/edac/al_mc_edac.c
867
868 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
869 M:      Talel Shenhar <talel@amazon.com>
870 S:      Maintained
871 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
872 F:      drivers/thermal/thermal_mmio.c
873
874 AMAZON ETHERNET DRIVERS
875 M:      Netanel Belgazal <netanel@amazon.com>
876 M:      Arthur Kiyanovski <akiyano@amazon.com>
877 R:      Guy Tzalik <gtzalik@amazon.com>
878 R:      Saeed Bishara <saeedb@amazon.com>
879 L:      netdev@vger.kernel.org
880 S:      Supported
881 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
882 F:      drivers/net/ethernet/amazon/
883
884 AMAZON RDMA EFA DRIVER
885 M:      Gal Pressman <galpress@amazon.com>
886 R:      Yossi Leybovich <sleybo@amazon.com>
887 L:      linux-rdma@vger.kernel.org
888 S:      Supported
889 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
890 F:      drivers/infiniband/hw/efa/
891 F:      include/uapi/rdma/efa-abi.h
892
893 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
894 M:      Tom Lendacky <thomas.lendacky@amd.com>
895 M:      John Allen <john.allen@amd.com>
896 L:      linux-crypto@vger.kernel.org
897 S:      Supported
898 F:      drivers/crypto/ccp/
899 F:      include/linux/ccp.h
900
901 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
902 M:      Brijesh Singh <brijesh.singh@amd.com>
903 M:      Tom Lendacky <thomas.lendacky@amd.com>
904 L:      linux-crypto@vger.kernel.org
905 S:      Supported
906 F:      drivers/crypto/ccp/sev*
907 F:      include/uapi/linux/psp-sev.h
908
909 AMD DISPLAY CORE
910 M:      Harry Wentland <harry.wentland@amd.com>
911 M:      Leo Li <sunpeng.li@amd.com>
912 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
913 L:      amd-gfx@lists.freedesktop.org
914 S:      Supported
915 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
916 F:      drivers/gpu/drm/amd/display/
917
918 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
919 M:      Huang Rui <ray.huang@amd.com>
920 L:      linux-hwmon@vger.kernel.org
921 S:      Supported
922 F:      Documentation/hwmon/fam15h_power.rst
923 F:      drivers/hwmon/fam15h_power.c
924
925 AMD FCH GPIO DRIVER
926 M:      Enrico Weigelt, metux IT consult <info@metux.net>
927 L:      linux-gpio@vger.kernel.org
928 S:      Maintained
929 F:      drivers/gpio/gpio-amd-fch.c
930 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
931
932 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Orphan
935 F:      drivers/usb/gadget/udc/amd5536udc.*
936
937 AMD GEODE PROCESSOR/CHIPSET SUPPORT
938 M:      Andres Salomon <dilinger@queued.net>
939 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
940 S:      Supported
941 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
942 F:      arch/x86/include/asm/geode.h
943 F:      drivers/char/hw_random/geode-rng.c
944 F:      drivers/crypto/geode*
945 F:      drivers/video/fbdev/geode/
946
947 AMD IOMMU (AMD-VI)
948 M:      Joerg Roedel <joro@8bytes.org>
949 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
950 L:      iommu@lists.linux-foundation.org
951 S:      Maintained
952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
953 F:      drivers/iommu/amd/
954 F:      include/linux/amd-iommu.h
955
956 AMD KFD
957 M:      Felix Kuehling <Felix.Kuehling@amd.com>
958 L:      amd-gfx@lists.freedesktop.org
959 S:      Supported
960 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
961 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
962 F:      drivers/gpu/drm/amd/amdkfd/
963 F:      drivers/gpu/drm/amd/include/cik_structs.h
964 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
965 F:      drivers/gpu/drm/amd/include/v9_structs.h
966 F:      drivers/gpu/drm/amd/include/vi_structs.h
967 F:      include/uapi/linux/kfd_ioctl.h
968
969 AMD SPI DRIVER
970 M:      Sanjay R Mehta <sanju.mehta@amd.com>
971 S:      Maintained
972 F:      drivers/spi/spi-amd.c
973
974 AMD MP2 I2C DRIVER
975 M:      Elie Morisse <syniurge@gmail.com>
976 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
977 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
978 L:      linux-i2c@vger.kernel.org
979 S:      Maintained
980 F:      drivers/i2c/busses/i2c-amd-mp2*
981
982 AMD PMC DRIVER
983 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
984 L:      platform-driver-x86@vger.kernel.org
985 S:      Maintained
986 F:      drivers/platform/x86/amd-pmc.*
987
988 AMD POWERPLAY AND SWSMU
989 M:      Evan Quan <evan.quan@amd.com>
990 L:      amd-gfx@lists.freedesktop.org
991 S:      Supported
992 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
993 F:      drivers/gpu/drm/amd/pm/
994
995 AMD PTDMA DRIVER
996 M:      Sanjay R Mehta <sanju.mehta@amd.com>
997 L:      dmaengine@vger.kernel.org
998 S:      Maintained
999 F:      drivers/dma/ptdma/
1000
1001 AMD SEATTLE DEVICE TREE SUPPORT
1002 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1003 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 S:      Supported
1006 F:      arch/arm64/boot/dts/amd/
1007
1008 AMD XGBE DRIVER
1009 M:      Tom Lendacky <thomas.lendacky@amd.com>
1010 L:      netdev@vger.kernel.org
1011 S:      Supported
1012 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1013 F:      drivers/net/ethernet/amd/xgbe/
1014
1015 AMD SENSOR FUSION HUB DRIVER
1016 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1017 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1018 L:      linux-input@vger.kernel.org
1019 S:      Maintained
1020 F:      Documentation/hid/amd-sfh*
1021 F:      drivers/hid/amd-sfh-hid/
1022
1023 AMS AS73211 DRIVER
1024 M:      Christian Eggers <ceggers@arri.de>
1025 L:      linux-iio@vger.kernel.org
1026 S:      Maintained
1027 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1028 F:      drivers/iio/light/as73211.c
1029
1030 AMT (Automatic Multicast Tunneling)
1031 M:      Taehee Yoo <ap420073@gmail.com>
1032 L:      netdev@vger.kernel.org
1033 S:      Maintained
1034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1036 F:      drivers/net/amt.c
1037
1038 ANALOG DEVICES INC AD7192 DRIVER
1039 M:      Alexandru Tachici <alexandru.tachici@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,ad7192.yaml
1044 F:      drivers/iio/adc/ad7192.c
1045
1046 ANALOG DEVICES INC AD7292 DRIVER
1047 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1048 L:      linux-iio@vger.kernel.org
1049 S:      Supported
1050 W:      http://ez.analog.com/community/linux-device-drivers
1051 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1052 F:      drivers/iio/adc/ad7292.c
1053
1054 ANALOG DEVICES INC AD7768-1 DRIVER
1055 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1056 L:      linux-iio@vger.kernel.org
1057 S:      Supported
1058 W:      http://ez.analog.com/community/linux-device-drivers
1059 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1060 F:      drivers/iio/adc/ad7768-1.c
1061
1062 ANALOG DEVICES INC AD7780 DRIVER
1063 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1064 M:      Renato Lui Geh <renatogeh@gmail.com>
1065 L:      linux-iio@vger.kernel.org
1066 S:      Supported
1067 W:      http://ez.analog.com/community/linux-device-drivers
1068 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1069 F:      drivers/iio/adc/ad7780.c
1070
1071 ANALOG DEVICES INC AD9389B DRIVER
1072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1073 L:      linux-media@vger.kernel.org
1074 S:      Maintained
1075 F:      drivers/media/i2c/ad9389b*
1076
1077 ANALOG DEVICES INC ADGS1408 DRIVER
1078 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1079 S:      Supported
1080 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1081 F:      drivers/mux/adgs1408.c
1082
1083 ANALOG DEVICES INC ADIN DRIVER
1084 M:      Michael Hennerich <michael.hennerich@analog.com>
1085 L:      netdev@vger.kernel.org
1086 S:      Supported
1087 W:      http://ez.analog.com/community/linux-device-drivers
1088 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1089 F:      drivers/net/phy/adin.c
1090
1091 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1092 M:      Nuno Sa <nuno.sa@analog.com>
1093 L:      linux-iio@vger.kernel.org
1094 S:      Supported
1095 F:      drivers/iio/imu/adis.c
1096 F:      include/linux/iio/imu/adis.h
1097
1098 ANALOG DEVICES INC ADIS16460 DRIVER
1099 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1104 F:      drivers/iio/imu/adis16460.c
1105
1106 ANALOG DEVICES INC ADIS16475 DRIVER
1107 M:      Nuno Sa <nuno.sa@analog.com>
1108 L:      linux-iio@vger.kernel.org
1109 W:      http://ez.analog.com/community/linux-device-drivers
1110 S:      Supported
1111 F:      drivers/iio/imu/adis16475.c
1112 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1113
1114 ANALOG DEVICES INC ADM1177 DRIVER
1115 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1116 L:      linux-hwmon@vger.kernel.org
1117 S:      Supported
1118 W:      http://ez.analog.com/community/linux-device-drivers
1119 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1120 F:      drivers/hwmon/adm1177.c
1121
1122 ANALOG DEVICES INC ADP5061 DRIVER
1123 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1124 L:      linux-pm@vger.kernel.org
1125 S:      Supported
1126 W:      http://ez.analog.com/community/linux-device-drivers
1127 F:      drivers/power/supply/adp5061.c
1128
1129 ANALOG DEVICES INC ADV7180 DRIVER
1130 M:      Lars-Peter Clausen <lars@metafoo.de>
1131 L:      linux-media@vger.kernel.org
1132 S:      Supported
1133 W:      http://ez.analog.com/community/linux-device-drivers
1134 F:      drivers/media/i2c/adv7180.c
1135 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1136
1137 ANALOG DEVICES INC ADV748X DRIVER
1138 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1139 L:      linux-media@vger.kernel.org
1140 S:      Maintained
1141 F:      drivers/media/i2c/adv748x/*
1142
1143 ANALOG DEVICES INC ADV7511 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7511*
1148
1149 ANALOG DEVICES INC ADV7604 DRIVER
1150 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1151 L:      linux-media@vger.kernel.org
1152 S:      Maintained
1153 F:      drivers/media/i2c/adv7604*
1154 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1155
1156 ANALOG DEVICES INC ADV7842 DRIVER
1157 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1158 L:      linux-media@vger.kernel.org
1159 S:      Maintained
1160 F:      drivers/media/i2c/adv7842*
1161
1162 ANALOG DEVICES INC ADXRS290 DRIVER
1163 M:      Nishant Malpani <nish.malpani25@gmail.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 F:      drivers/iio/gyro/adxrs290.c
1167 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1168
1169 ANALOG DEVICES INC ASOC CODEC DRIVERS
1170 M:      Lars-Peter Clausen <lars@metafoo.de>
1171 M:      Nuno Sá <nuno.sa@analog.com>
1172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1173 S:      Supported
1174 W:      http://wiki.analog.com/
1175 W:      http://ez.analog.com/community/linux-device-drivers
1176 F:      sound/soc/codecs/ad1*
1177 F:      sound/soc/codecs/ad7*
1178 F:      sound/soc/codecs/adau*
1179 F:      sound/soc/codecs/adav*
1180 F:      sound/soc/codecs/sigmadsp.*
1181 F:      sound/soc/codecs/ssm*
1182
1183 ANALOG DEVICES INC DMA DRIVERS
1184 M:      Lars-Peter Clausen <lars@metafoo.de>
1185 S:      Supported
1186 W:      http://ez.analog.com/community/linux-device-drivers
1187 F:      drivers/dma/dma-axi-dmac.c
1188
1189 ANALOG DEVICES INC IIO DRIVERS
1190 M:      Lars-Peter Clausen <lars@metafoo.de>
1191 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1192 S:      Supported
1193 W:      http://wiki.analog.com/
1194 W:      http://ez.analog.com/community/linux-device-drivers
1195 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1196 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1197 F:      Documentation/devicetree/bindings/iio/*/adi,*
1198 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1199 F:      drivers/iio/*/ad*
1200 F:      drivers/iio/adc/ltc249*
1201 F:      drivers/iio/amplifiers/hmc425a.c
1202 F:      drivers/staging/iio/*/ad*
1203 X:      drivers/iio/*/adjd*
1204
1205 ANALOGBITS PLL LIBRARIES
1206 M:      Paul Walmsley <paul.walmsley@sifive.com>
1207 S:      Supported
1208 F:      drivers/clk/analogbits/*
1209 F:      include/linux/clk/analogbits*
1210
1211 ANDES ARCHITECTURE
1212 M:      Nick Hu <nickhu@andestech.com>
1213 M:      Greentime Hu <green.hu@gmail.com>
1214 M:      Vincent Chen <deanbo422@gmail.com>
1215 S:      Supported
1216 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1217 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1218 F:      Documentation/devicetree/bindings/nds32/
1219 F:      arch/nds32/
1220 N:      nds32
1221 K:      nds32
1222
1223 ANDROID CONFIG FRAGMENTS
1224 M:      Rob Herring <robh@kernel.org>
1225 S:      Supported
1226 F:      kernel/configs/android*
1227
1228 ANDROID DRIVERS
1229 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1230 M:      Arve Hjønnevåg <arve@android.com>
1231 M:      Todd Kjos <tkjos@android.com>
1232 M:      Martijn Coenen <maco@android.com>
1233 M:      Joel Fernandes <joel@joelfernandes.org>
1234 M:      Christian Brauner <christian@brauner.io>
1235 M:      Hridya Valsaraju <hridya@google.com>
1236 M:      Suren Baghdasaryan <surenb@google.com>
1237 L:      linux-kernel@vger.kernel.org
1238 S:      Supported
1239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1240 F:      drivers/android/
1241 F:      drivers/staging/android/
1242
1243 ANDROID GOLDFISH PIC DRIVER
1244 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1245 S:      Supported
1246 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1247 F:      drivers/irqchip/irq-goldfish-pic.c
1248
1249 ANDROID GOLDFISH RTC DRIVER
1250 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1251 S:      Supported
1252 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1253 F:      drivers/rtc/rtc-goldfish.c
1254
1255 AOA (Apple Onboard Audio) ALSA DRIVER
1256 M:      Johannes Berg <johannes@sipsolutions.net>
1257 L:      linuxppc-dev@lists.ozlabs.org
1258 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1259 S:      Maintained
1260 F:      sound/aoa/
1261
1262 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1263 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1264 L:      linux-iio@vger.kernel.org
1265 S:      Maintained
1266 F:      drivers/iio/adc/stx104.c
1267
1268 APM DRIVER
1269 M:      Jiri Kosina <jikos@kernel.org>
1270 S:      Odd fixes
1271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1272 F:      arch/x86/kernel/apm_32.c
1273 F:      drivers/char/apm-emulation.c
1274 F:      include/linux/apm_bios.h
1275 F:      include/uapi/linux/apm_bios.h
1276
1277 APPARMOR SECURITY MODULE
1278 M:      John Johansen <john.johansen@canonical.com>
1279 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1280 S:      Supported
1281 W:      wiki.apparmor.net
1282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1283 F:      Documentation/admin-guide/LSM/apparmor.rst
1284 F:      security/apparmor/
1285
1286 APPLE BCM5974 MULTITOUCH DRIVER
1287 M:      Henrik Rydberg <rydberg@bitmath.org>
1288 L:      linux-input@vger.kernel.org
1289 S:      Odd fixes
1290 F:      drivers/input/mouse/bcm5974.c
1291
1292 APPLE DART IOMMU DRIVER
1293 M:      Sven Peter <sven@svenpeter.dev>
1294 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1295 L:      iommu@lists.linux-foundation.org
1296 S:      Maintained
1297 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1298 F:      drivers/iommu/apple-dart.c
1299
1300 APPLE PCIE CONTROLLER DRIVER
1301 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1302 M:      Marc Zyngier <maz@kernel.org>
1303 L:      linux-pci@vger.kernel.org
1304 S:      Maintained
1305 F:      drivers/pci/controller/pcie-apple.c
1306
1307 APPLE SMC DRIVER
1308 M:      Henrik Rydberg <rydberg@bitmath.org>
1309 L:      linux-hwmon@vger.kernel.org
1310 S:      Odd fixes
1311 F:      drivers/hwmon/applesmc.c
1312
1313 APPLETALK NETWORK LAYER
1314 L:      netdev@vger.kernel.org
1315 S:      Odd fixes
1316 F:      drivers/net/appletalk/
1317 F:      include/linux/atalk.h
1318 F:      include/uapi/linux/atalk.h
1319 F:      net/appletalk/
1320
1321 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1322 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1323 S:      Supported
1324 F:      arch/arm64/boot/dts/apm/
1325
1326 APPLIED MICRO (APM) X-GENE SOC EDAC
1327 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1328 S:      Supported
1329 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1330 F:      drivers/edac/xgene_edac.c
1331
1332 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1333 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1334 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1335 S:      Supported
1336 F:      drivers/net/ethernet/apm/xgene-v2/
1337
1338 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1339 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1340 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1341 M:      Quan Nguyen <quan@os.amperecomputing.com>
1342 S:      Supported
1343 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1344 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1345 F:      drivers/net/ethernet/apm/xgene/
1346 F:      drivers/net/mdio/mdio-xgene.c
1347
1348 APPLIED MICRO (APM) X-GENE SOC PMU
1349 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1350 S:      Supported
1351 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1352 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1353 F:      drivers/perf/xgene_pmu.c
1354
1355 APTINA CAMERA SENSOR PLL
1356 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1357 L:      linux-media@vger.kernel.org
1358 S:      Maintained
1359 F:      drivers/media/i2c/aptina-pll.*
1360
1361 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1362 M:      Aleksa Savic <savicaleksa83@gmail.com>
1363 L:      linux-hwmon@vger.kernel.org
1364 S:      Maintained
1365 F:      Documentation/hwmon/aquacomputer_d5next.rst
1366 F:      drivers/hwmon/aquacomputer_d5next.c
1367
1368 AQUANTIA ETHERNET DRIVER (atlantic)
1369 M:      Igor Russkikh <irusskikh@marvell.com>
1370 L:      netdev@vger.kernel.org
1371 S:      Supported
1372 W:      https://www.marvell.com/
1373 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1374 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1375 F:      drivers/net/ethernet/aquantia/atlantic/
1376
1377 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1378 M:      Egor Pomozov <epomozov@marvell.com>
1379 L:      netdev@vger.kernel.org
1380 S:      Supported
1381 W:      http://www.aquantia.com
1382 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1383
1384 ARASAN NAND CONTROLLER DRIVER
1385 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1386 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1387 L:      linux-mtd@lists.infradead.org
1388 S:      Maintained
1389 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1390 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1391
1392 ARC FRAMEBUFFER DRIVER
1393 M:      Jaya Kumar <jayalk@intworks.biz>
1394 S:      Maintained
1395 F:      drivers/video/fbdev/arcfb.c
1396 F:      drivers/video/fbdev/core/fb_defio.c
1397
1398 ARC PGU DRM DRIVER
1399 M:      Alexey Brodkin <abrodkin@synopsys.com>
1400 S:      Supported
1401 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1402 F:      drivers/gpu/drm/tiny/arcpgu.c
1403
1404 ARCNET NETWORK LAYER
1405 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1406 L:      netdev@vger.kernel.org
1407 S:      Maintained
1408 F:      drivers/net/arcnet/
1409 F:      include/uapi/linux/if_arcnet.h
1410
1411 ARM ARCHITECTED TIMER DRIVER
1412 M:      Mark Rutland <mark.rutland@arm.com>
1413 M:      Marc Zyngier <maz@kernel.org>
1414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1415 S:      Maintained
1416 F:      arch/arm/include/asm/arch_timer.h
1417 F:      arch/arm64/include/asm/arch_timer.h
1418 F:      drivers/clocksource/arm_arch_timer.c
1419
1420 ARM HDLCD DRM DRIVER
1421 M:      Liviu Dudau <liviu.dudau@arm.com>
1422 S:      Supported
1423 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1424 F:      drivers/gpu/drm/arm/hdlcd_*
1425
1426 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1427 M:      Linus Walleij <linus.walleij@linaro.org>
1428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1431 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1432 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1433 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1434 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1435 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1436 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1437 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1438 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1439 F:      arch/arm/boot/dts/arm-realview-*
1440 F:      arch/arm/boot/dts/integrator*
1441 F:      arch/arm/boot/dts/versatile*
1442 F:      arch/arm/mach-integrator/
1443 F:      arch/arm/mach-realview/
1444 F:      arch/arm/mach-versatile/
1445 F:      arch/arm/plat-versatile/
1446 F:      drivers/bus/arm-integrator-lm.c
1447 F:      drivers/clk/versatile/
1448 F:      drivers/i2c/busses/i2c-versatile.c
1449 F:      drivers/irqchip/irq-versatile-fpga.c
1450 F:      drivers/mtd/maps/physmap-versatile.*
1451 F:      drivers/power/reset/arm-versatile-reboot.c
1452 F:      drivers/soc/versatile/
1453
1454 ARM KOMEDA DRM-KMS DRIVER
1455 M:      James (Qian) Wang <james.qian.wang@arm.com>
1456 M:      Liviu Dudau <liviu.dudau@arm.com>
1457 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1458 L:      Mali DP Maintainers <malidp@foss.arm.com>
1459 S:      Supported
1460 T:      git git://anongit.freedesktop.org/drm/drm-misc
1461 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1462 F:      Documentation/gpu/komeda-kms.rst
1463 F:      drivers/gpu/drm/arm/display/include/
1464 F:      drivers/gpu/drm/arm/display/komeda/
1465
1466 ARM MALI PANFROST DRM DRIVER
1467 M:      Rob Herring <robh@kernel.org>
1468 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1469 R:      Steven Price <steven.price@arm.com>
1470 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1471 L:      dri-devel@lists.freedesktop.org
1472 S:      Supported
1473 T:      git git://anongit.freedesktop.org/drm/drm-misc
1474 F:      drivers/gpu/drm/panfrost/
1475 F:      include/uapi/drm/panfrost_drm.h
1476
1477 ARM MALI-DP DRM DRIVER
1478 M:      Liviu Dudau <liviu.dudau@arm.com>
1479 M:      Brian Starkey <brian.starkey@arm.com>
1480 L:      Mali DP Maintainers <malidp@foss.arm.com>
1481 S:      Supported
1482 T:      git git://anongit.freedesktop.org/drm/drm-misc
1483 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1484 F:      Documentation/gpu/afbc.rst
1485 F:      drivers/gpu/drm/arm/
1486
1487 ARM MFM AND FLOPPY DRIVERS
1488 M:      Ian Molton <spyro@f2s.com>
1489 S:      Maintained
1490 F:      arch/arm/include/asm/floppy.h
1491 F:      arch/arm/mach-rpc/floppydma.S
1492
1493 ARM PMU PROFILING AND DEBUGGING
1494 M:      Will Deacon <will@kernel.org>
1495 M:      Mark Rutland <mark.rutland@arm.com>
1496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497 S:      Maintained
1498 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1499 F:      Documentation/devicetree/bindings/perf/
1500 F:      arch/arm*/include/asm/hw_breakpoint.h
1501 F:      arch/arm*/include/asm/perf_event.h
1502 F:      arch/arm*/kernel/hw_breakpoint.c
1503 F:      arch/arm*/kernel/perf_*
1504 F:      drivers/perf/
1505 F:      include/linux/perf/arm_pmu.h
1506
1507 ARM PORT
1508 M:      Russell King <linux@armlinux.org.uk>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Odd Fixes
1511 W:      http://www.armlinux.org.uk/
1512 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1513 F:      arch/arm/
1514 X:      arch/arm/boot/dts/
1515
1516 ARM PRIMECELL AACI PL041 DRIVER
1517 M:      Russell King <linux@armlinux.org.uk>
1518 S:      Odd Fixes
1519 F:      sound/arm/aaci.*
1520
1521 ARM PRIMECELL BUS SUPPORT
1522 M:      Russell King <linux@armlinux.org.uk>
1523 S:      Odd Fixes
1524 F:      drivers/amba/
1525 F:      include/linux/amba/bus.h
1526
1527 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1528 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1529 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1530 L:      linux-mtd@lists.infradead.org
1531 S:      Maintained
1532 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1533 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1534
1535 ARM PRIMECELL PL35X SMC DRIVER
1536 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1537 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1538 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1539 S:      Maintained
1540 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1541 F:      drivers/memory/pl353-smc.c
1542
1543 ARM PRIMECELL CLCD PL110 DRIVER
1544 M:      Russell King <linux@armlinux.org.uk>
1545 S:      Odd Fixes
1546 F:      drivers/video/fbdev/amba-clcd.*
1547
1548 ARM PRIMECELL KMI PL050 DRIVER
1549 M:      Russell King <linux@armlinux.org.uk>
1550 S:      Odd Fixes
1551 F:      drivers/input/serio/ambakmi.*
1552 F:      include/linux/amba/kmi.h
1553
1554 ARM PRIMECELL MMCI PL180/1 DRIVER
1555 M:      Russell King <linux@armlinux.org.uk>
1556 S:      Odd Fixes
1557 F:      drivers/mmc/host/mmci.*
1558 F:      include/linux/amba/mmci.h
1559
1560 ARM PRIMECELL SSP PL022 SPI DRIVER
1561 M:      Linus Walleij <linus.walleij@linaro.org>
1562 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1563 S:      Maintained
1564 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1565 F:      drivers/spi/spi-pl022.c
1566
1567 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1568 M:      Russell King <linux@armlinux.org.uk>
1569 S:      Odd Fixes
1570 F:      drivers/tty/serial/amba-pl01*.c
1571 F:      include/linux/amba/serial.h
1572
1573 ARM PRIMECELL VIC PL190/PL192 DRIVER
1574 M:      Linus Walleij <linus.walleij@linaro.org>
1575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1576 S:      Maintained
1577 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1578 F:      drivers/irqchip/irq-vic.c
1579
1580 ARM SMC WATCHDOG DRIVER
1581 M:      Julius Werner <jwerner@chromium.org>
1582 R:      Evan Benn <evanbenn@chromium.org>
1583 S:      Maintained
1584 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1585 F:      drivers/watchdog/arm_smc_wdt.c
1586
1587 ARM SMMU DRIVERS
1588 M:      Will Deacon <will@kernel.org>
1589 R:      Robin Murphy <robin.murphy@arm.com>
1590 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 S:      Maintained
1592 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1593 F:      drivers/iommu/arm/
1594 F:      drivers/iommu/io-pgtable-arm*
1595
1596 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1597 M:      Arnd Bergmann <arnd@arndb.de>
1598 M:      Olof Johansson <olof@lixom.net>
1599 M:      soc@kernel.org
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1603 F:      arch/arm/boot/dts/Makefile
1604 F:      arch/arm64/boot/dts/Makefile
1605
1606 ARM SUB-ARCHITECTURES
1607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1608 S:      Maintained
1609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1610 F:      arch/arm/mach-*/
1611 F:      arch/arm/plat-*/
1612
1613 ARM/ACTIONS SEMI ARCHITECTURE
1614 M:      Andreas Färber <afaerber@suse.de>
1615 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1617 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/arm/actions.yaml
1620 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1621 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1622 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1623 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1624 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1625 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1626 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1627 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1628 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1629 F:      arch/arm/boot/dts/owl-*
1630 F:      arch/arm/mach-actions/
1631 F:      arch/arm64/boot/dts/actions/
1632 F:      drivers/clk/actions/
1633 F:      drivers/clocksource/timer-owl*
1634 F:      drivers/dma/owl-dma.c
1635 F:      drivers/i2c/busses/i2c-owl.c
1636 F:      drivers/irqchip/irq-owl-sirq.c
1637 F:      drivers/mmc/host/owl-mmc.c
1638 F:      drivers/net/ethernet/actions/
1639 F:      drivers/pinctrl/actions/*
1640 F:      drivers/soc/actions/
1641 F:      include/dt-bindings/power/owl-*
1642 F:      include/dt-bindings/reset/actions,*
1643 F:      include/linux/soc/actions/
1644 N:      owl
1645
1646 ARM/ADS SPHERE MACHINE SUPPORT
1647 M:      Lennert Buytenhek <kernel@wantstofly.org>
1648 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1649 S:      Maintained
1650
1651 ARM/AFEB9260 MACHINE SUPPORT
1652 M:      Sergey Lapin <slapin@ossfans.org>
1653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1654 S:      Maintained
1655
1656 ARM/AJECO 1ARM MACHINE SUPPORT
1657 M:      Lennert Buytenhek <kernel@wantstofly.org>
1658 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1659 S:      Maintained
1660
1661 ARM/Allwinner SoC Clock Support
1662 M:      Emilio López <emilio@elopez.com.ar>
1663 S:      Maintained
1664 F:      drivers/clk/sunxi/
1665
1666 ARM/Allwinner sunXi SoC support
1667 M:      Maxime Ripard <mripard@kernel.org>
1668 M:      Chen-Yu Tsai <wens@csie.org>
1669 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1673 L:      linux-sunxi@lists.linux.dev
1674 F:      arch/arm/mach-sunxi/
1675 F:      arch/arm64/boot/dts/allwinner/
1676 F:      drivers/clk/sunxi-ng/
1677 F:      drivers/pinctrl/sunxi/
1678 F:      drivers/soc/sunxi/
1679 N:      allwinner
1680 N:      sun[x456789]i
1681 N:      sun50i
1682
1683 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1684 M:      Neil Armstrong <narmstrong@baylibre.com>
1685 M:      Jerome Brunet <jbrunet@baylibre.com>
1686 L:      linux-amlogic@lists.infradead.org
1687 S:      Maintained
1688 F:      Documentation/devicetree/bindings/clock/amlogic*
1689 F:      drivers/clk/meson/
1690 F:      include/dt-bindings/clock/gxbb*
1691 F:      include/dt-bindings/clock/meson*
1692
1693 ARM/Amlogic Meson SoC Crypto Drivers
1694 M:      Corentin Labbe <clabbe@baylibre.com>
1695 L:      linux-crypto@vger.kernel.org
1696 L:      linux-amlogic@lists.infradead.org
1697 S:      Maintained
1698 F:      Documentation/devicetree/bindings/crypto/amlogic*
1699 F:      drivers/crypto/amlogic/
1700
1701 ARM/Amlogic Meson SoC Sound Drivers
1702 M:      Jerome Brunet <jbrunet@baylibre.com>
1703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      Documentation/devicetree/bindings/sound/amlogic*
1706 F:      sound/soc/meson/
1707
1708 ARM/Amlogic Meson SoC support
1709 M:      Neil Armstrong <narmstrong@baylibre.com>
1710 M:      Kevin Hilman <khilman@baylibre.com>
1711 R:      Jerome Brunet <jbrunet@baylibre.com>
1712 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 L:      linux-amlogic@lists.infradead.org
1715 S:      Maintained
1716 W:      http://linux-meson.com/
1717 F:      arch/arm/boot/dts/meson*
1718 F:      arch/arm/mach-meson/
1719 F:      arch/arm64/boot/dts/amlogic/
1720 F:      drivers/mmc/host/meson*
1721 F:      drivers/pinctrl/meson/
1722 F:      drivers/rtc/rtc-meson*
1723 F:      drivers/soc/amlogic/
1724 N:      meson
1725
1726 ARM/Annapurna Labs ALPINE ARCHITECTURE
1727 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1728 M:      Antoine Tenart <atenart@kernel.org>
1729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1730 S:      Maintained
1731 F:      arch/arm/boot/dts/alpine*
1732 F:      arch/arm/mach-alpine/
1733 F:      arch/arm64/boot/dts/amazon/
1734 F:      drivers/*/*alpine*
1735
1736 ARM/APPLE MACHINE SUPPORT
1737 M:      Hector Martin <marcan@marcan.st>
1738 M:      Sven Peter <sven@svenpeter.dev>
1739 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742 W:      https://asahilinux.org
1743 B:      https://github.com/AsahiLinux/linux/issues
1744 C:      irc://irc.oftc.net/asahi-dev
1745 T:      git https://github.com/AsahiLinux/linux.git
1746 F:      Documentation/devicetree/bindings/arm/apple.yaml
1747 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1748 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1749 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1750 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1751 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1752 F:      arch/arm64/boot/dts/apple/
1753 F:      drivers/i2c/busses/i2c-pasemi-core.c
1754 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1755 F:      drivers/irqchip/irq-apple-aic.c
1756 F:      drivers/mailbox/apple-mailbox.c
1757 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1758 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1759 F:      include/dt-bindings/pinctrl/apple.h
1760 F:      include/linux/apple-mailbox.h
1761
1762 ARM/ARTPEC MACHINE SUPPORT
1763 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1764 M:      Lars Persson <lars.persson@axis.com>
1765 L:      linux-arm-kernel@axis.com
1766 S:      Maintained
1767 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1768 F:      arch/arm/boot/dts/artpec6*
1769 F:      arch/arm/mach-artpec
1770 F:      drivers/clk/axis
1771 F:      drivers/crypto/axis
1772 F:      drivers/mmc/host/usdhi6rol0.c
1773 F:      drivers/pinctrl/pinctrl-artpec*
1774
1775 ARM/ASPEED I2C DRIVER
1776 M:      Brendan Higgins <brendanhiggins@google.com>
1777 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1778 R:      Joel Stanley <joel@jms.id.au>
1779 L:      linux-i2c@vger.kernel.org
1780 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1781 S:      Maintained
1782 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1783 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1784 F:      drivers/i2c/busses/i2c-aspeed.c
1785 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1786
1787 ARM/ASPEED MACHINE SUPPORT
1788 M:      Joel Stanley <joel@jms.id.au>
1789 R:      Andrew Jeffery <andrew@aj.id.au>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1792 S:      Supported
1793 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1795 F:      arch/arm/boot/dts/aspeed-*
1796 F:      arch/arm/mach-aspeed/
1797 N:      aspeed
1798
1799 ARM/BITMAIN ARCHITECTURE
1800 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1804 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1805 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1806 F:      arch/arm64/boot/dts/bitmain/
1807 F:      drivers/clk/clk-bm1880.c
1808 F:      drivers/pinctrl/pinctrl-bm1880.c
1809
1810 ARM/CALXEDA HIGHBANK ARCHITECTURE
1811 M:      Andre Przywara <andre.przywara@arm.com>
1812 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1813 S:      Maintained
1814 F:      arch/arm/boot/dts/ecx-*.dts*
1815 F:      arch/arm/boot/dts/highbank.dts
1816 F:      arch/arm/mach-highbank/
1817
1818 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1819 M:      Krzysztof Halasa <khalasa@piap.pl>
1820 S:      Maintained
1821 F:      arch/arm/mach-cns3xxx/
1822
1823 ARM/CAVIUM THUNDER NETWORK DRIVER
1824 M:      Sunil Goutham <sgoutham@marvell.com>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Supported
1827 F:      drivers/net/ethernet/cavium/thunder/
1828
1829 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1830 M:      Lukasz Majewski <lukma@denx.de>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833 F:      arch/arm/mach-ep93xx/ts72xx.c
1834
1835 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1836 M:      Alexander Shiyan <shc_work@mail.ru>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Odd Fixes
1839 N:      clps711x
1840
1841 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1842 M:      Lennert Buytenhek <kernel@wantstofly.org>
1843 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1844 S:      Maintained
1845
1846 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1847 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1848 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1850 S:      Maintained
1851 F:      arch/arm/mach-ep93xx/
1852 F:      arch/arm/mach-ep93xx/include/mach/
1853
1854 ARM/CLKDEV SUPPORT
1855 M:      Russell King <linux@armlinux.org.uk>
1856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1857 S:      Maintained
1858 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1859 F:      drivers/clk/clkdev.c
1860
1861 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1862 M:      Baruch Siach <baruch@tkos.co.il>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Maintained
1865 F:      arch/arm/boot/dts/cx92755*
1866 N:      digicolor
1867
1868 ARM/CONTEC MICRO9 MACHINE SUPPORT
1869 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1870 S:      Maintained
1871 F:      arch/arm/mach-ep93xx/micro9.c
1872
1873 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1874 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1875 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1876 R:      Mike Leach <mike.leach@linaro.org>
1877 R:      Leo Yan <leo.yan@linaro.org>
1878 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1882 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1883 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1884 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1885 F:      Documentation/devicetree/bindings/arm/coresight.txt
1886 F:      Documentation/devicetree/bindings/arm/ete.yaml
1887 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1888 F:      Documentation/trace/coresight/*
1889 F:      drivers/hwtracing/coresight/*
1890 F:      include/dt-bindings/arm/coresight-cti-dt.h
1891 F:      include/linux/coresight*
1892 F:      tools/perf/arch/arm/util/auxtrace.c
1893 F:      tools/perf/arch/arm/util/cs-etm.c
1894 F:      tools/perf/arch/arm/util/cs-etm.h
1895 F:      tools/perf/arch/arm/util/pmu.c
1896 F:      tools/perf/util/cs-etm-decoder/*
1897 F:      tools/perf/util/cs-etm.*
1898
1899 ARM/CORGI MACHINE SUPPORT
1900 M:      Richard Purdie <rpurdie@rpsys.net>
1901 S:      Maintained
1902
1903 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1904 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1905 M:      Linus Walleij <linus.walleij@linaro.org>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 T:      git git://github.com/ulli-kroll/linux.git
1909 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1910 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1911 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1912 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1913 F:      arch/arm/boot/dts/gemini*
1914 F:      arch/arm/mach-gemini/
1915 F:      drivers/crypto/gemini/
1916 F:      drivers/net/ethernet/cortina/
1917 F:      drivers/pinctrl/pinctrl-gemini.c
1918 F:      drivers/rtc/rtc-ftrtc010.c
1919
1920 ARM/CZ.NIC TURRIS SUPPORT
1921 M:      Marek Behún <kabel@kernel.org>
1922 S:      Maintained
1923 W:      https://www.turris.cz/
1924 F:      Documentation/ABI/testing/debugfs-moxtet
1925 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1926 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1927 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1928 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1929 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1930 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1931 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1932 F:      drivers/bus/moxtet.c
1933 F:      drivers/firmware/turris-mox-rwtm.c
1934 F:      drivers/leds/leds-turris-omnia.c
1935 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1936 F:      drivers/gpio/gpio-moxtet.c
1937 F:      drivers/watchdog/armada_37xx_wdt.c
1938 F:      include/dt-bindings/bus/moxtet.h
1939 F:      include/linux/armada-37xx-rwtm-mailbox.h
1940 F:      include/linux/moxtet.h
1941
1942 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1943 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1945 S:      Maintained
1946 F:      arch/arm/mach-pxa/ezx.c
1947
1948 ARM/FARADAY FA526 PORT
1949 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Maintained
1952 T:      git git://git.berlios.de/gemini-board
1953 F:      arch/arm/mm/*-fa*
1954
1955 ARM/FOOTBRIDGE ARCHITECTURE
1956 M:      Russell King <linux@armlinux.org.uk>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 W:      http://www.armlinux.org.uk/
1960 F:      arch/arm/include/asm/hardware/dec21285.h
1961 F:      arch/arm/mach-footbridge/
1962
1963 ARM/FREESCALE IMX / MXC 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:      Fabio Estevam <festevam@gmail.com>
1968 R:      NXP Linux Team <linux-imx@nxp.com>
1969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1970 S:      Maintained
1971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1972 X:      drivers/media/i2c/
1973 N:      imx
1974 N:      mxs
1975
1976 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1977 M:      Shawn Guo <shawnguo@kernel.org>
1978 M:      Li Yang <leoyang.li@nxp.com>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1982 F:      arch/arm/boot/dts/ls1021a*
1983 F:      arch/arm64/boot/dts/freescale/fsl-*
1984 F:      arch/arm64/boot/dts/freescale/qoriq-*
1985
1986 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1987 M:      Shawn Guo <shawnguo@kernel.org>
1988 M:      Sascha Hauer <s.hauer@pengutronix.de>
1989 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1990 R:      Stefan Agner <stefan@agner.ch>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Maintained
1993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1994 F:      arch/arm/boot/dts/vf*
1995 F:      arch/arm/mach-imx/*vf610*
1996
1997 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1998 M:      Lennert Buytenhek <kernel@wantstofly.org>
1999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2000 S:      Maintained
2001
2002 ARM/GUMSTIX MACHINE SUPPORT
2003 M:      Steve Sakoman <sakoman@gmail.com>
2004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2005 S:      Maintained
2006
2007 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2008 M:      Philipp Zabel <philipp.zabel@gmail.com>
2009 M:      Paul Parsons <lost.distance@yahoo.com>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      arch/arm/mach-pxa/hx4700.c
2013 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2014 F:      sound/soc/pxa/hx4700.c
2015
2016 ARM/HISILICON SOC SUPPORT
2017 M:      Wei Xu <xuwei5@hisilicon.com>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Supported
2020 W:      http://www.hisilicon.com
2021 T:      git git://github.com/hisilicon/linux-hisi.git
2022 F:      arch/arm/boot/dts/hi3*
2023 F:      arch/arm/boot/dts/hip*
2024 F:      arch/arm/boot/dts/hisi*
2025 F:      arch/arm/mach-hisi/
2026 F:      arch/arm64/boot/dts/hisilicon/
2027
2028 ARM/HP JORNADA 7XX MACHINE SUPPORT
2029 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2030 S:      Maintained
2031 W:      www.jlime.com
2032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2033 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2034 F:      arch/arm/mach-sa1100/jornada720.c
2035
2036 ARM/IGEP MACHINE SUPPORT
2037 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2038 M:      Javier Martinez Canillas <javier@dowhile0.org>
2039 L:      linux-omap@vger.kernel.org
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042 F:      arch/arm/boot/dts/omap3-igep*
2043
2044 ARM/INCOME PXA270 SUPPORT
2045 M:      Marek Vasut <marek.vasut@gmail.com>
2046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2047 S:      Maintained
2048 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2049
2050 ARM/INTEL IOP32X ARM ARCHITECTURE
2051 M:      Lennert Buytenhek <kernel@wantstofly.org>
2052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054
2055 ARM/INTEL IQ81342EX MACHINE SUPPORT
2056 M:      Lennert Buytenhek <kernel@wantstofly.org>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059
2060 ARM/INTEL IXDP2850 MACHINE SUPPORT
2061 M:      Lennert Buytenhek <kernel@wantstofly.org>
2062 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2063 S:      Maintained
2064
2065 ARM/INTEL IXP4XX ARM ARCHITECTURE
2066 M:      Linus Walleij <linusw@kernel.org>
2067 M:      Imre Kaloz <kaloz@openwrt.org>
2068 M:      Krzysztof Halasa <khalasa@piap.pl>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2072 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2073 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2074 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2075 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2076 F:      arch/arm/mach-ixp4xx/
2077 F:      drivers/bus/intel-ixp4xx-eb.c
2078 F:      drivers/clocksource/timer-ixp4xx.c
2079 F:      drivers/crypto/ixp4xx_crypto.c
2080 F:      drivers/gpio/gpio-ixp4xx.c
2081 F:      drivers/irqchip/irq-ixp4xx.c
2082 F:      include/linux/irqchip/irq-ixp4xx.h
2083 F:      include/linux/platform_data/timer-ixp4xx.h
2084
2085 ARM/INTEL KEEMBAY ARCHITECTURE
2086 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2087 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2088 S:      Maintained
2089 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2090 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2091 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2092
2093 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2094 M:      Jonathan Cameron <jic23@cam.ac.uk>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 F:      arch/arm/mach-pxa/stargate2.c
2098 F:      drivers/pcmcia/pxa2xx_stargate2.c
2099
2100 ARM/INTEL XSC3 (MANZANO) ARM CORE
2101 M:      Lennert Buytenhek <kernel@wantstofly.org>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104
2105 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2106 M:      Lennert Buytenhek <kernel@wantstofly.org>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109
2110 ARM/LG1K ARCHITECTURE
2111 M:      Chanho Min <chanho.min@lge.com>
2112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2113 S:      Maintained
2114 F:      arch/arm64/boot/dts/lg/
2115
2116 ARM/LOGICPD PXA270 MACHINE SUPPORT
2117 M:      Lennert Buytenhek <kernel@wantstofly.org>
2118 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2119 S:      Maintained
2120
2121 ARM/LPC18XX ARCHITECTURE
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2126 F:      arch/arm/boot/dts/lpc43*
2127 F:      drivers/i2c/busses/i2c-lpc2k.c
2128 F:      drivers/memory/pl172.c
2129 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2130 F:      drivers/rtc/rtc-lpc24xx.c
2131 N:      lpc18xx
2132
2133 ARM/LPC32XX SOC SUPPORT
2134 M:      Vladimir Zapolskiy <vz@mleia.com>
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2138 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2139 F:      arch/arm/boot/dts/lpc32*
2140 F:      arch/arm/mach-lpc32xx/
2141 F:      drivers/i2c/busses/i2c-pnx.c
2142 F:      drivers/net/ethernet/nxp/lpc_eth.c
2143 F:      drivers/usb/host/ohci-nxp.c
2144 F:      drivers/watchdog/pnx4008_wdt.c
2145 N:      lpc32xx
2146
2147 ARM/MAGICIAN MACHINE SUPPORT
2148 M:      Philipp Zabel <philipp.zabel@gmail.com>
2149 S:      Maintained
2150
2151 ARM/Marvell Dove/MV78xx0/Orion SOC support
2152 M:      Andrew Lunn <andrew@lunn.ch>
2153 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2154 M:      Gregory Clement <gregory.clement@bootlin.com>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2158 F:      Documentation/devicetree/bindings/soc/dove/
2159 F:      arch/arm/boot/dts/dove*
2160 F:      arch/arm/boot/dts/orion5x*
2161 F:      arch/arm/mach-dove/
2162 F:      arch/arm/mach-mv78xx0/
2163 F:      arch/arm/mach-orion5x/
2164 F:      arch/arm/plat-orion/
2165 F:      drivers/soc/dove/
2166
2167 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2168 M:      Andrew Lunn <andrew@lunn.ch>
2169 M:      Gregory Clement <gregory.clement@bootlin.com>
2170 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Maintained
2173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2174 F:      arch/arm/boot/dts/armada*
2175 F:      arch/arm/boot/dts/kirkwood*
2176 F:      arch/arm/configs/mvebu_*_defconfig
2177 F:      arch/arm/mach-mvebu/
2178 F:      arch/arm64/boot/dts/marvell/armada*
2179 F:      arch/arm64/boot/dts/marvell/cn913*
2180 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2181 F:      drivers/cpufreq/armada-8k-cpufreq.c
2182 F:      drivers/cpufreq/mvebu-cpufreq.c
2183 F:      drivers/irqchip/irq-armada-370-xp.c
2184 F:      drivers/irqchip/irq-mvebu-*
2185 F:      drivers/pinctrl/mvebu/
2186 F:      drivers/rtc/rtc-armada38x.c
2187
2188 ARM/Mediatek RTC DRIVER
2189 M:      Eddie Huang <eddie.huang@mediatek.com>
2190 M:      Sean Wang <sean.wang@mediatek.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2195 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2196 F:      drivers/rtc/rtc-mt2712.c
2197 F:      drivers/rtc/rtc-mt6397.c
2198 F:      drivers/rtc/rtc-mt7622.c
2199
2200 ARM/Mediatek SoC support
2201 M:      Matthias Brugger <matthias.bgg@gmail.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2204 S:      Maintained
2205 W:      https://mtk.wiki.kernel.org/
2206 C:      irc://chat.freenode.net/linux-mediatek
2207 F:      arch/arm/boot/dts/mt6*
2208 F:      arch/arm/boot/dts/mt7*
2209 F:      arch/arm/boot/dts/mt8*
2210 F:      arch/arm/mach-mediatek/
2211 F:      arch/arm64/boot/dts/mediatek/
2212 F:      drivers/soc/mediatek/
2213 N:      mtk
2214 N:      mt[678]
2215 K:      mediatek
2216
2217 ARM/Mediatek USB3 PHY DRIVER
2218 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2220 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2221 S:      Maintained
2222 F:      Documentation/devicetree/bindings/phy/mediatek,*
2223 F:      drivers/phy/mediatek/
2224
2225 ARM/Microchip (AT91) SoC support
2226 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2227 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2228 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2230 S:      Supported
2231 W:      http://www.linux4sam.org
2232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2233 F:      arch/arm/boot/dts/at91*.dts
2234 F:      arch/arm/boot/dts/at91*.dtsi
2235 F:      arch/arm/boot/dts/sama*.dts
2236 F:      arch/arm/boot/dts/sama*.dtsi
2237 F:      arch/arm/include/debug/at91.S
2238 F:      arch/arm/mach-at91/
2239 F:      drivers/memory/atmel*
2240 F:      drivers/watchdog/sama5d4_wdt.c
2241 F:      include/soc/at91/
2242 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2243 X:      drivers/net/wireless/atmel/
2244 N:      at91
2245 N:      atmel
2246
2247 ARM/Microchip Sparx5 SoC support
2248 M:      Lars Povlsen <lars.povlsen@microchip.com>
2249 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2250 M:      UNGLinuxDriver@microchip.com
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Supported
2253 T:      git git://github.com/microchip-ung/linux-upstream.git
2254 F:      arch/arm64/boot/dts/microchip/
2255 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2256 N:      sparx5
2257
2258 Microchip Timer Counter Block (TCB) Capture Driver
2259 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 L:      linux-iio@vger.kernel.org
2262 S:      Maintained
2263 F:      drivers/counter/microchip-tcb-capture.c
2264
2265 ARM/MIOA701 MACHINE SUPPORT
2266 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 F:      arch/arm/mach-pxa/mioa701.c
2270
2271 ARM/MStar/Sigmastar Armv7 SoC support
2272 M:      Daniel Palmer <daniel@thingy.jp>
2273 M:      Romain Perier <romain.perier@gmail.com>
2274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2275 S:      Maintained
2276 W:      http://linux-chenxing.org/
2277 T:      git git://github.com/linux-chenxing/linux.git
2278 F:      Documentation/devicetree/bindings/arm/mstar/*
2279 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2280 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2281 F:      arch/arm/boot/dts/mstar-*
2282 F:      arch/arm/mach-mstar/
2283 F:      drivers/clk/mstar/
2284 F:      drivers/gpio/gpio-msc313.c
2285 F:      drivers/watchdog/msc313e_wdt.c
2286 F:      include/dt-bindings/clock/mstar-*
2287 F:      include/dt-bindings/gpio/msc313-gpio.h
2288
2289 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2290 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2291 S:      Maintained
2292
2293 ARM/NOMADIK/Ux500 ARCHITECTURES
2294 M:      Linus Walleij <linus.walleij@linaro.org>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2298 F:      Documentation/devicetree/bindings/arm/ste-*
2299 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2300 F:      Documentation/devicetree/bindings/arm/ux500/
2301 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2302 F:      arch/arm/boot/dts/ste-*
2303 F:      arch/arm/mach-nomadik/
2304 F:      arch/arm/mach-ux500/
2305 F:      drivers/clk/clk-nomadik.c
2306 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2307 F:      drivers/dma/ste_dma40*
2308 F:      drivers/hwspinlock/u8500_hsem.c
2309 F:      drivers/i2c/busses/i2c-nomadik.c
2310 F:      drivers/iio/adc/ab8500-gpadc.c
2311 F:      drivers/mfd/ab8500*
2312 F:      drivers/mfd/abx500*
2313 F:      drivers/mfd/db8500*
2314 F:      drivers/pinctrl/nomadik/
2315 F:      drivers/rtc/rtc-ab8500.c
2316 F:      drivers/rtc/rtc-pl031.c
2317 F:      drivers/soc/ux500/
2318
2319 ARM/NUVOTON NPCM ARCHITECTURE
2320 M:      Avi Fishman <avifishman70@gmail.com>
2321 M:      Tomer Maimon <tmaimon77@gmail.com>
2322 M:      Tali Perry <tali.perry1@gmail.com>
2323 R:      Patrick Venture <venture@google.com>
2324 R:      Nancy Yuen <yuenn@google.com>
2325 R:      Benjamin Fair <benjaminfair@google.com>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Supported
2328 F:      Documentation/devicetree/bindings/*/*/*npcm*
2329 F:      Documentation/devicetree/bindings/*/*npcm*
2330 F:      arch/arm/boot/dts/nuvoton-npcm*
2331 F:      arch/arm/mach-npcm/
2332 F:      drivers/*/*npcm*
2333 F:      drivers/*/*/*npcm*
2334 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2335
2336 ARM/NUVOTON WPCM450 ARCHITECTURE
2337 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2338 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2339 S:      Maintained
2340 F:      Documentation/devicetree/bindings/*/*wpcm*
2341 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2342 F:      arch/arm/mach-npcm/wpcm450.c
2343 F:      drivers/*/*wpcm*
2344
2345 ARM/NXP S32G ARCHITECTURE
2346 M:      Chester Lin <clin@suse.com>
2347 R:      Andreas Färber <afaerber@suse.de>
2348 R:      Matthias Brugger <mbrugger@suse.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 S:      Maintained
2351 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2352
2353 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2354 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2355 S:      Orphan
2356 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2357 F:      arch/arm/mach-s3c/gta02.h
2358 F:      arch/arm/mach-s3c/mach-gta02.c
2359
2360 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2361 M:      Alexander Clouter <alex@digriz.org.uk>
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Maintained
2364 W:      http://www.digriz.org.uk/ts78xx/kernel
2365 F:      arch/arm/mach-orion5x/ts78xx-*
2366
2367 ARM/OXNAS platform support
2368 M:      Neil Armstrong <narmstrong@baylibre.com>
2369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2370 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2371 S:      Maintained
2372 F:      arch/arm/boot/dts/ox8*.dts*
2373 F:      arch/arm/mach-oxnas/
2374 F:      drivers/power/reset/oxnas-restart.c
2375 N:      oxnas
2376
2377 ARM/PALM TREO SUPPORT
2378 M:      Tomas Cech <sleep_walker@suse.com>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 W:      http://hackndev.com
2382 F:      arch/arm/mach-pxa/palmtreo.*
2383
2384 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2385 M:      Marek Vasut <marek.vasut@gmail.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 S:      Maintained
2388 W:      http://hackndev.com
2389 F:      arch/arm/mach-pxa/include/mach/palmld.h
2390 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2391 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2392 F:      arch/arm/mach-pxa/palmld.c
2393 F:      arch/arm/mach-pxa/palmt5.*
2394 F:      arch/arm/mach-pxa/palmtc.c
2395 F:      arch/arm/mach-pxa/palmte2.*
2396 F:      arch/arm/mach-pxa/palmtx.c
2397
2398 ARM/PALMZ72 SUPPORT
2399 M:      Sergey Lapin <slapin@ossfans.org>
2400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2401 S:      Maintained
2402 W:      http://hackndev.com
2403 F:      arch/arm/mach-pxa/palmz72.*
2404
2405 ARM/PLEB SUPPORT
2406 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2407 S:      Maintained
2408 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2409
2410 ARM/PT DIGITAL BOARD PORT
2411 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 S:      Maintained
2414 W:      http://www.armlinux.org.uk/
2415
2416 ARM/QUALCOMM SUPPORT
2417 M:      Andy Gross <agross@kernel.org>
2418 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2419 L:      linux-arm-msm@vger.kernel.org
2420 S:      Maintained
2421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2422 F:      Documentation/devicetree/bindings/*/qcom*
2423 F:      Documentation/devicetree/bindings/soc/qcom/
2424 F:      arch/arm/boot/dts/qcom-*.dts
2425 F:      arch/arm/boot/dts/qcom-*.dtsi
2426 F:      arch/arm/mach-qcom/
2427 F:      arch/arm64/boot/dts/qcom/
2428 F:      drivers/*/*/qcom*
2429 F:      drivers/*/*/qcom/
2430 F:      drivers/*/pm8???-*
2431 F:      drivers/*/qcom*
2432 F:      drivers/*/qcom/
2433 F:      drivers/bluetooth/btqcomsmd.c
2434 F:      drivers/clocksource/timer-qcom.c
2435 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2436 F:      drivers/extcon/extcon-qcom*
2437 F:      drivers/i2c/busses/i2c-qcom-geni.c
2438 F:      drivers/i2c/busses/i2c-qup.c
2439 F:      drivers/iommu/msm*
2440 F:      drivers/mfd/ssbi.c
2441 F:      drivers/mmc/host/mmci_qcom*
2442 F:      drivers/mmc/host/sdhci-msm.c
2443 F:      drivers/pci/controller/dwc/pcie-qcom.c
2444 F:      drivers/phy/qualcomm/
2445 F:      drivers/power/*/msm*
2446 F:      drivers/reset/reset-qcom-*
2447 F:      drivers/scsi/ufs/ufs-qcom*
2448 F:      drivers/spi/spi-geni-qcom.c
2449 F:      drivers/spi/spi-qcom-qspi.c
2450 F:      drivers/spi/spi-qup.c
2451 F:      drivers/tty/serial/msm_serial.c
2452 F:      drivers/usb/dwc3/dwc3-qcom.c
2453 F:      include/dt-bindings/*/qcom*
2454 F:      include/linux/*/qcom*
2455 F:      include/linux/soc/qcom/
2456
2457 ARM/RADISYS ENP2611 MACHINE SUPPORT
2458 M:      Lennert Buytenhek <kernel@wantstofly.org>
2459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2460 S:      Maintained
2461
2462 ARM/RDA MICRO ARCHITECTURE
2463 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2466 S:      Maintained
2467 F:      Documentation/devicetree/bindings/arm/rda.yaml
2468 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2469 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2470 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2471 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2472 F:      arch/arm/boot/dts/rda8810pl-*
2473 F:      drivers/clocksource/timer-rda.c
2474 F:      drivers/gpio/gpio-rda.c
2475 F:      drivers/irqchip/irq-rda-intc.c
2476 F:      drivers/tty/serial/rda-uart.c
2477
2478 ARM/REALTEK ARCHITECTURE
2479 M:      Andreas Färber <afaerber@suse.de>
2480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2481 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2482 S:      Maintained
2483 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2484 F:      arch/arm/boot/dts/rtd*
2485 F:      arch/arm/mach-realtek/
2486 F:      arch/arm64/boot/dts/realtek/
2487
2488 ARM/RENESAS ARM64 ARCHITECTURE
2489 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2490 M:      Magnus Damm <magnus.damm@gmail.com>
2491 L:      linux-renesas-soc@vger.kernel.org
2492 S:      Supported
2493 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2495 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2496 F:      arch/arm64/boot/dts/renesas/
2497 F:      drivers/soc/renesas/
2498 F:      include/linux/soc/renesas/
2499
2500 ARM/RISCPC ARCHITECTURE
2501 M:      Russell King <linux@armlinux.org.uk>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://www.armlinux.org.uk/
2505 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2506 F:      arch/arm/include/asm/hardware/ioc.h
2507 F:      arch/arm/include/asm/hardware/iomd.h
2508 F:      arch/arm/include/asm/hardware/memc.h
2509 F:      arch/arm/mach-rpc/
2510 F:      drivers/net/ethernet/8390/etherh.c
2511 F:      drivers/net/ethernet/i825xx/ether1*
2512 F:      drivers/net/ethernet/seeq/ether3*
2513 F:      drivers/scsi/arm/
2514
2515 ARM/Rockchip SoC support
2516 M:      Heiko Stuebner <heiko@sntech.de>
2517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 L:      linux-rockchip@lists.infradead.org
2519 S:      Maintained
2520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2521 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2522 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2523 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2524 F:      arch/arm/boot/dts/rk3*
2525 F:      arch/arm/boot/dts/rv1108*
2526 F:      arch/arm/mach-rockchip/
2527 F:      drivers/*/*/*rockchip*
2528 F:      drivers/*/*rockchip*
2529 F:      drivers/clk/rockchip/
2530 F:      drivers/i2c/busses/i2c-rk3x.c
2531 F:      sound/soc/rockchip/
2532 N:      rockchip
2533
2534 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2535 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 L:      linux-samsung-soc@vger.kernel.org
2538 S:      Maintained
2539 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2540 F:      Documentation/arm/samsung/
2541 F:      Documentation/devicetree/bindings/arm/samsung/
2542 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2543 F:      arch/arm/boot/dts/exynos*
2544 F:      arch/arm/boot/dts/s3c*
2545 F:      arch/arm/boot/dts/s5p*
2546 F:      arch/arm/mach-exynos*/
2547 F:      arch/arm/mach-s3c/
2548 F:      arch/arm/mach-s5p*/
2549 F:      arch/arm64/boot/dts/exynos/
2550 F:      drivers/*/*/*s3c24*
2551 F:      drivers/*/*s3c24*
2552 F:      drivers/*/*s3c64xx*
2553 F:      drivers/*/*s5pv210*
2554 F:      drivers/clocksource/samsung_pwm_timer.c
2555 F:      drivers/memory/samsung/
2556 F:      drivers/pwm/pwm-samsung.c
2557 F:      drivers/soc/samsung/
2558 F:      drivers/tty/serial/samsung*
2559 F:      include/clocksource/samsung_pwm.h
2560 F:      include/linux/platform_data/*s3c*
2561 F:      include/linux/serial_s3c.h
2562 F:      include/linux/soc/samsung/
2563 N:      exynos
2564 N:      s3c2410
2565 N:      s3c64xx
2566 N:      s5pv210
2567
2568 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2569 M:      Andrzej Hajda <a.hajda@samsung.com>
2570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2571 L:      linux-media@vger.kernel.org
2572 S:      Maintained
2573 F:      drivers/media/platform/s5p-g2d/
2574
2575 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2576 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2577 L:      linux-samsung-soc@vger.kernel.org
2578 L:      linux-media@vger.kernel.org
2579 S:      Maintained
2580 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2581 F:      drivers/media/cec/platform/s5p/
2582
2583 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2584 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2585 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2586 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 L:      linux-media@vger.kernel.org
2589 S:      Maintained
2590 F:      drivers/media/platform/s5p-jpeg/
2591
2592 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2593 M:      Andrzej Hajda <a.hajda@samsung.com>
2594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2595 L:      linux-media@vger.kernel.org
2596 S:      Maintained
2597 F:      drivers/media/platform/s5p-mfc/
2598
2599 ARM/SHMOBILE ARM ARCHITECTURE
2600 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2601 M:      Magnus Damm <magnus.damm@gmail.com>
2602 L:      linux-renesas-soc@vger.kernel.org
2603 S:      Supported
2604 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2606 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2607 F:      arch/arm/boot/dts/emev2*
2608 F:      arch/arm/boot/dts/gr-peach*
2609 F:      arch/arm/boot/dts/iwg20d-q7*
2610 F:      arch/arm/boot/dts/r7s*
2611 F:      arch/arm/boot/dts/r8a*
2612 F:      arch/arm/boot/dts/r9a*
2613 F:      arch/arm/boot/dts/sh*
2614 F:      arch/arm/configs/shmobile_defconfig
2615 F:      arch/arm/include/debug/renesas-scif.S
2616 F:      arch/arm/mach-shmobile/
2617 F:      drivers/soc/renesas/
2618 F:      include/linux/soc/renesas/
2619
2620 ARM/SOCFPGA ARCHITECTURE
2621 M:      Dinh Nguyen <dinguyen@kernel.org>
2622 S:      Maintained
2623 W:      http://www.rocketboards.org
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2625 F:      arch/arm/boot/dts/socfpga*
2626 F:      arch/arm/configs/socfpga_defconfig
2627 F:      arch/arm/mach-socfpga/
2628 F:      arch/arm64/boot/dts/altera/
2629 F:      arch/arm64/boot/dts/intel/
2630
2631 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2632 M:      Dinh Nguyen <dinguyen@kernel.org>
2633 S:      Maintained
2634 F:      drivers/clk/socfpga/
2635
2636 ARM/SOCFPGA EDAC SUPPORT
2637 M:      Dinh Nguyen <dinguyen@kernel.org>
2638 S:      Maintained
2639 F:      drivers/edac/altera_edac.[ch]
2640
2641 ARM/SPREADTRUM SoC SUPPORT
2642 M:      Orson Zhai <orsonzhai@gmail.com>
2643 M:      Baolin Wang <baolin.wang7@gmail.com>
2644 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2645 S:      Maintained
2646 F:      arch/arm64/boot/dts/sprd
2647 N:      sprd
2648 N:      sc27xx
2649 N:      sc2731
2650
2651 ARM/STI ARCHITECTURE
2652 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2653 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2654 S:      Maintained
2655 W:      http://www.stlinux.com
2656 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2657 F:      arch/arm/boot/dts/sti*
2658 F:      arch/arm/mach-sti/
2659 F:      drivers/ata/ahci_st.c
2660 F:      drivers/char/hw_random/st-rng.c
2661 F:      drivers/clocksource/arm_global_timer.c
2662 F:      drivers/clocksource/clksrc_st_lpc.c
2663 F:      drivers/cpufreq/sti-cpufreq.c
2664 F:      drivers/dma/st_fdma*
2665 F:      drivers/i2c/busses/i2c-st.c
2666 F:      drivers/media/platform/sti/c8sectpfe/
2667 F:      drivers/media/rc/st_rc.c
2668 F:      drivers/mmc/host/sdhci-st.c
2669 F:      drivers/phy/st/phy-miphy28lp.c
2670 F:      drivers/phy/st/phy-stih407-usb.c
2671 F:      drivers/pinctrl/pinctrl-st.c
2672 F:      drivers/remoteproc/st_remoteproc.c
2673 F:      drivers/remoteproc/st_slim_rproc.c
2674 F:      drivers/reset/sti/
2675 F:      drivers/rtc/rtc-st-lpc.c
2676 F:      drivers/tty/serial/st-asc.c
2677 F:      drivers/usb/dwc3/dwc3-st.c
2678 F:      drivers/usb/host/ehci-st.c
2679 F:      drivers/usb/host/ohci-st.c
2680 F:      drivers/watchdog/st_lpc_wdt.c
2681 F:      include/linux/remoteproc/st_slim_rproc.h
2682
2683 ARM/STM32 ARCHITECTURE
2684 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2685 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2686 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2690 F:      arch/arm/boot/dts/stm32*
2691 F:      arch/arm/mach-stm32/
2692 F:      drivers/clocksource/armv7m_systick.c
2693 N:      stm32
2694 N:      stm
2695
2696 ARM/Synaptics SoC support
2697 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2698 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2700 S:      Maintained
2701 F:      arch/arm/boot/dts/berlin*
2702 F:      arch/arm/mach-berlin/
2703 F:      arch/arm64/boot/dts/synaptics/
2704
2705 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2706 M:      Lennert Buytenhek <kernel@wantstofly.org>
2707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2708 S:      Maintained
2709
2710 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2711 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2712 L:      linux-tegra@vger.kernel.org
2713 L:      linux-media@vger.kernel.org
2714 S:      Maintained
2715 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2716 F:      drivers/media/cec/platform/tegra/
2717
2718 ARM/TETON BGA MACHINE SUPPORT
2719 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2721 S:      Maintained
2722
2723 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-kernel@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/memory/*emif*
2728
2729 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2730 M:      Santosh Shilimkar <ssantosh@kernel.org>
2731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2732 S:      Maintained
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2734 F:      arch/arm/boot/dts/keystone-*
2735 F:      arch/arm/mach-keystone/
2736
2737 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2738 M:      Santosh Shilimkar <ssantosh@kernel.org>
2739 L:      linux-kernel@vger.kernel.org
2740 S:      Maintained
2741 F:      drivers/clk/keystone/
2742
2743 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2744 M:      Santosh Shilimkar <ssantosh@kernel.org>
2745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2746 L:      linux-kernel@vger.kernel.org
2747 S:      Maintained
2748 F:      drivers/clocksource/timer-keystone.c
2749
2750 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2751 M:      Santosh Shilimkar <ssantosh@kernel.org>
2752 L:      linux-kernel@vger.kernel.org
2753 S:      Maintained
2754 F:      drivers/power/reset/keystone-reset.c
2755
2756 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2757 M:      Nishanth Menon <nm@ti.com>
2758 M:      Vignesh Raghavendra <vigneshr@ti.com>
2759 M:      Tero Kristo <kristo@kernel.org>
2760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2761 S:      Supported
2762 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2763 F:      arch/arm64/boot/dts/ti/Makefile
2764 F:      arch/arm64/boot/dts/ti/k3-*
2765 F:      include/dt-bindings/pinctrl/k3.h
2766
2767 ARM/THECUS N2100 MACHINE SUPPORT
2768 M:      Lennert Buytenhek <kernel@wantstofly.org>
2769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2770 S:      Maintained
2771
2772 ARM/TOSA MACHINE SUPPORT
2773 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2774 M:      Dirk Opfer <dirk@opfer-online.de>
2775 S:      Maintained
2776
2777 ARM/TOSHIBA VISCONTI ARCHITECTURE
2778 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Supported
2781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2782 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2783 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2784 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2785 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2786 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2787 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2788 F:      arch/arm64/boot/dts/toshiba/
2789 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2790 F:      drivers/gpio/gpio-visconti.c
2791 F:      drivers/pci/controller/dwc/pcie-visconti.c
2792 F:      drivers/pinctrl/visconti/
2793 F:      drivers/watchdog/visconti_wdt.c
2794 N:      visconti
2795
2796 ARM/UNIPHIER ARCHITECTURE
2797 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2798 M:      Masami Hiramatsu <mhiramat@kernel.org>
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Maintained
2801 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2802 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2803 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2804 F:      arch/arm/boot/dts/uniphier*
2805 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2806 F:      arch/arm/mach-uniphier/
2807 F:      arch/arm/mm/cache-uniphier.c
2808 F:      arch/arm64/boot/dts/socionext/uniphier*
2809 F:      drivers/bus/uniphier-system-bus.c
2810 F:      drivers/clk/uniphier/
2811 F:      drivers/dma/uniphier-mdmac.c
2812 F:      drivers/gpio/gpio-uniphier.c
2813 F:      drivers/i2c/busses/i2c-uniphier*
2814 F:      drivers/irqchip/irq-uniphier-aidet.c
2815 F:      drivers/mmc/host/uniphier-sd.c
2816 F:      drivers/pinctrl/uniphier/
2817 F:      drivers/reset/reset-uniphier.c
2818 F:      drivers/tty/serial/8250/8250_uniphier.c
2819 N:      uniphier
2820
2821 ARM/VERSATILE EXPRESS PLATFORM
2822 M:      Liviu Dudau <liviu.dudau@arm.com>
2823 M:      Sudeep Holla <sudeep.holla@arm.com>
2824 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      */*/*/vexpress*
2828 F:      */*/vexpress*
2829 F:      arch/arm/boot/dts/vexpress*
2830 F:      arch/arm/mach-vexpress/
2831 F:      arch/arm64/boot/dts/arm/
2832 F:      drivers/clk/versatile/clk-vexpress-osc.c
2833 F:      drivers/clocksource/timer-versatile.c
2834 N:      mps2
2835
2836 ARM/VFP SUPPORT
2837 M:      Russell King <linux@armlinux.org.uk>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Maintained
2840 W:      http://www.armlinux.org.uk/
2841 F:      arch/arm/vfp/
2842
2843 ARM/VOIPAC PXA270 SUPPORT
2844 M:      Marek Vasut <marek.vasut@gmail.com>
2845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2846 S:      Maintained
2847 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2848 F:      arch/arm/mach-pxa/vpac270.c
2849
2850 ARM/VT8500 ARM ARCHITECTURE
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Orphan
2853 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2854 F:      arch/arm/mach-vt8500/
2855 F:      drivers/clocksource/timer-vt8500.c
2856 F:      drivers/i2c/busses/i2c-wmt.c
2857 F:      drivers/mmc/host/wmt-sdmmc.c
2858 F:      drivers/pwm/pwm-vt8500.c
2859 F:      drivers/rtc/rtc-vt8500.c
2860 F:      drivers/tty/serial/vt8500_serial.c
2861 F:      drivers/usb/host/ehci-platform.c
2862 F:      drivers/usb/host/uhci-platform.c
2863 F:      drivers/video/fbdev/vt8500lcdfb.*
2864 F:      drivers/video/fbdev/wm8505fb*
2865 F:      drivers/video/fbdev/wmt_ge_rops.*
2866
2867 ARM/ZIPIT Z2 SUPPORT
2868 M:      Marek Vasut <marek.vasut@gmail.com>
2869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2870 S:      Maintained
2871 F:      arch/arm/mach-pxa/include/mach/z2.h
2872 F:      arch/arm/mach-pxa/z2.c
2873
2874 ARM/ZYNQ ARCHITECTURE
2875 M:      Michal Simek <michal.simek@xilinx.com>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Supported
2878 W:      http://wiki.xilinx.com
2879 T:      git https://github.com/Xilinx/linux-xlnx.git
2880 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2881 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2882 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2883 F:      arch/arm/mach-zynq/
2884 F:      drivers/clocksource/timer-cadence-ttc.c
2885 F:      drivers/cpuidle/cpuidle-zynq.c
2886 F:      drivers/edac/synopsys_edac.c
2887 F:      drivers/i2c/busses/i2c-cadence.c
2888 F:      drivers/i2c/busses/i2c-xiic.c
2889 F:      drivers/mmc/host/sdhci-of-arasan.c
2890 N:      zynq
2891 N:      xilinx
2892
2893 ARM64 PORT (AARCH64 ARCHITECTURE)
2894 M:      Catalin Marinas <catalin.marinas@arm.com>
2895 M:      Will Deacon <will@kernel.org>
2896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2897 S:      Maintained
2898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2899 F:      Documentation/arm64/
2900 F:      arch/arm64/
2901 F:      tools/testing/selftests/arm64/
2902 X:      arch/arm64/boot/dts/
2903
2904 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2905 M:      George McCollister <george.mccollister@gmail.com>
2906 L:      netdev@vger.kernel.org
2907 S:      Maintained
2908 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2909 F:      drivers/net/dsa/xrs700x/*
2910 F:      net/dsa/tag_xrs700x.c
2911
2912 AS3645A LED FLASH CONTROLLER DRIVER
2913 M:      Sakari Ailus <sakari.ailus@iki.fi>
2914 L:      linux-leds@vger.kernel.org
2915 S:      Maintained
2916 F:      drivers/leds/flash/leds-as3645a.c
2917
2918 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2919 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2920 L:      linux-media@vger.kernel.org
2921 S:      Maintained
2922 T:      git git://linuxtv.org/media_tree.git
2923 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2924 F:      drivers/media/i2c/ak7375.c
2925
2926 ASAHI KASEI AK8974 DRIVER
2927 M:      Linus Walleij <linus.walleij@linaro.org>
2928 L:      linux-iio@vger.kernel.org
2929 S:      Supported
2930 W:      http://www.akm.com/
2931 F:      drivers/iio/magnetometer/ak8974.c
2932
2933 ASC7621 HARDWARE MONITOR DRIVER
2934 M:      George Joseph <george.joseph@fairview5.com>
2935 L:      linux-hwmon@vger.kernel.org
2936 S:      Maintained
2937 F:      Documentation/hwmon/asc7621.rst
2938 F:      drivers/hwmon/asc7621.c
2939
2940 ASIX AX88796C SPI ETHERNET ADAPTER
2941 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2944 F:      drivers/net/ethernet/asix/ax88796c_*
2945
2946 ASPEED PINCTRL DRIVERS
2947 M:      Andrew Jeffery <andrew@aj.id.au>
2948 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 L:      linux-gpio@vger.kernel.org
2951 S:      Maintained
2952 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2953 F:      drivers/pinctrl/aspeed/
2954
2955 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2956 M:      Eddie James <eajames@linux.ibm.com>
2957 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2958 S:      Maintained
2959 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2960 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2961 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2962
2963 ASPEED SD/MMC DRIVER
2964 M:      Andrew Jeffery <andrew@aj.id.au>
2965 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2966 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2967 L:      linux-mmc@vger.kernel.org
2968 S:      Maintained
2969 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2970 F:      drivers/mmc/host/sdhci-of-aspeed*
2971
2972 ASPEED VIDEO ENGINE DRIVER
2973 M:      Eddie James <eajames@linux.ibm.com>
2974 L:      linux-media@vger.kernel.org
2975 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2976 S:      Maintained
2977 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2978 F:      drivers/media/platform/aspeed-video.c
2979
2980 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2981 M:      Corentin Chary <corentin.chary@gmail.com>
2982 L:      acpi4asus-user@lists.sourceforge.net
2983 L:      platform-driver-x86@vger.kernel.org
2984 S:      Maintained
2985 W:      http://acpi4asus.sf.net
2986 F:      drivers/platform/x86/asus*.c
2987 F:      drivers/platform/x86/eeepc*.c
2988
2989 ASUS WIRELESS RADIO CONTROL DRIVER
2990 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2991 L:      platform-driver-x86@vger.kernel.org
2992 S:      Maintained
2993 F:      drivers/platform/x86/asus-wireless.c
2994
2995 ASYMMETRIC KEYS
2996 M:      David Howells <dhowells@redhat.com>
2997 L:      keyrings@vger.kernel.org
2998 S:      Maintained
2999 F:      Documentation/crypto/asymmetric-keys.rst
3000 F:      crypto/asymmetric_keys/
3001 F:      include/crypto/pkcs7.h
3002 F:      include/crypto/public_key.h
3003 F:      include/linux/verification.h
3004
3005 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3006 R:      Dan Williams <dan.j.williams@intel.com>
3007 S:      Odd fixes
3008 W:      http://sourceforge.net/projects/xscaleiop
3009 F:      Documentation/crypto/async-tx-api.rst
3010 F:      crypto/async_tx/
3011 F:      include/linux/async_tx.h
3012
3013 AT24 EEPROM DRIVER
3014 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3015 L:      linux-i2c@vger.kernel.org
3016 S:      Maintained
3017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3018 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3019 F:      drivers/misc/eeprom/at24.c
3020
3021 ATA OVER ETHERNET (AOE) DRIVER
3022 M:      "Justin Sanders" <justin@coraid.com>
3023 S:      Supported
3024 W:      http://www.openaoe.org/
3025 F:      Documentation/admin-guide/aoe/
3026 F:      drivers/block/aoe/
3027
3028 ATC260X PMIC MFD DRIVER
3029 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3030 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3031 L:      linux-actions@lists.infradead.org
3032 S:      Maintained
3033 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3034 F:      drivers/input/misc/atc260x-onkey.c
3035 F:      drivers/mfd/atc260*
3036 F:      drivers/power/reset/atc260x-poweroff.c
3037 F:      drivers/regulator/atc260x-regulator.c
3038 F:      include/linux/mfd/atc260x/*
3039
3040 ATHEROS 71XX/9XXX GPIO DRIVER
3041 M:      Alban Bedel <albeu@free.fr>
3042 S:      Maintained
3043 W:      https://github.com/AlbanBedel/linux
3044 T:      git git://github.com/AlbanBedel/linux
3045 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3046 F:      drivers/gpio/gpio-ath79.c
3047
3048 ATHEROS 71XX/9XXX USB PHY DRIVER
3049 M:      Alban Bedel <albeu@free.fr>
3050 S:      Maintained
3051 W:      https://github.com/AlbanBedel/linux
3052 T:      git git://github.com/AlbanBedel/linux
3053 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3054 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3055
3056 ATHEROS ATH GENERIC UTILITIES
3057 M:      Kalle Valo <kvalo@codeaurora.org>
3058 L:      linux-wireless@vger.kernel.org
3059 S:      Supported
3060 F:      drivers/net/wireless/ath/*
3061
3062 ATHEROS ATH5K WIRELESS DRIVER
3063 M:      Jiri Slaby <jirislaby@kernel.org>
3064 M:      Nick Kossifidis <mickflemm@gmail.com>
3065 M:      Luis Chamberlain <mcgrof@kernel.org>
3066 L:      linux-wireless@vger.kernel.org
3067 S:      Maintained
3068 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3069 F:      drivers/net/wireless/ath/ath5k/
3070
3071 ATHEROS ATH6KL WIRELESS DRIVER
3072 M:      Kalle Valo <kvalo@codeaurora.org>
3073 L:      linux-wireless@vger.kernel.org
3074 S:      Supported
3075 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3077 F:      drivers/net/wireless/ath/ath6kl/
3078
3079 ATI_REMOTE2 DRIVER
3080 M:      Ville Syrjala <syrjala@sci.fi>
3081 S:      Maintained
3082 F:      drivers/input/misc/ati_remote2.c
3083
3084 ATK0110 HWMON DRIVER
3085 M:      Luca Tettamanti <kronos.it@gmail.com>
3086 L:      linux-hwmon@vger.kernel.org
3087 S:      Maintained
3088 F:      drivers/hwmon/asus_atk0110.c
3089
3090 ATLX ETHERNET DRIVERS
3091 M:      Chris Snook <chris.snook@gmail.com>
3092 L:      netdev@vger.kernel.org
3093 S:      Maintained
3094 W:      http://sourceforge.net/projects/atl1
3095 W:      http://atl1.sourceforge.net
3096 F:      drivers/net/ethernet/atheros/
3097
3098 ATM
3099 M:      Chas Williams <3chas3@gmail.com>
3100 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3101 L:      netdev@vger.kernel.org
3102 S:      Maintained
3103 W:      http://linux-atm.sourceforge.net
3104 F:      drivers/atm/
3105 F:      include/linux/atm*
3106 F:      include/uapi/linux/atm*
3107
3108 ATMEL MACB ETHERNET DRIVER
3109 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3110 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3111 S:      Supported
3112 F:      drivers/net/ethernet/cadence/
3113
3114 ATMEL MAXTOUCH DRIVER
3115 M:      Nick Dyer <nick@shmanahar.org>
3116 S:      Maintained
3117 T:      git git://github.com/ndyer/linux.git
3118 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3119 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3120
3121 ATMEL WIRELESS DRIVER
3122 M:      Simon Kelley <simon@thekelleys.org.uk>
3123 L:      linux-wireless@vger.kernel.org
3124 S:      Maintained
3125 W:      http://www.thekelleys.org.uk/atmel
3126 W:      http://atmelwlandriver.sourceforge.net/
3127 F:      drivers/net/wireless/atmel/atmel*
3128
3129 ATOMIC INFRASTRUCTURE
3130 M:      Will Deacon <will@kernel.org>
3131 M:      Peter Zijlstra <peterz@infradead.org>
3132 R:      Boqun Feng <boqun.feng@gmail.com>
3133 L:      linux-kernel@vger.kernel.org
3134 S:      Maintained
3135 F:      arch/*/include/asm/atomic*.h
3136 F:      include/*/atomic*.h
3137 F:      include/linux/refcount.h
3138 F:      Documentation/atomic_*.txt
3139 F:      scripts/atomic/
3140
3141 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3142 M:      Bradley Grove <linuxdrivers@attotech.com>
3143 L:      linux-scsi@vger.kernel.org
3144 S:      Supported
3145 W:      http://www.attotech.com
3146 F:      drivers/scsi/esas2r
3147
3148 ATUSB IEEE 802.15.4 RADIO DRIVER
3149 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3150 L:      linux-wpan@vger.kernel.org
3151 S:      Maintained
3152 F:      drivers/net/ieee802154/at86rf230.h
3153 F:      drivers/net/ieee802154/atusb.c
3154 F:      drivers/net/ieee802154/atusb.h
3155
3156 AUDIT SUBSYSTEM
3157 M:      Paul Moore <paul@paul-moore.com>
3158 M:      Eric Paris <eparis@redhat.com>
3159 L:      linux-audit@redhat.com (moderated for non-subscribers)
3160 S:      Supported
3161 W:      https://github.com/linux-audit
3162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3163 F:      include/asm-generic/audit_*.h
3164 F:      include/linux/audit.h
3165 F:      include/linux/audit_arch.h
3166 F:      include/uapi/linux/audit.h
3167 F:      kernel/audit*
3168 F:      lib/*audit.c
3169
3170 AUXILIARY DISPLAY DRIVERS
3171 M:      Miguel Ojeda <ojeda@kernel.org>
3172 S:      Maintained
3173 F:      Documentation/devicetree/bindings/auxdisplay/
3174 F:      drivers/auxdisplay/
3175 F:      include/linux/cfag12864b.h
3176
3177 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3178 M:      Andreas Klinger <ak@it-klinger.de>
3179 L:      linux-iio@vger.kernel.org
3180 S:      Maintained
3181 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3182 F:      drivers/iio/adc/hx711.c
3183
3184 AX.25 NETWORK LAYER
3185 M:      Ralf Baechle <ralf@linux-mips.org>
3186 L:      linux-hams@vger.kernel.org
3187 S:      Maintained
3188 W:      http://www.linux-ax25.org/
3189 F:      include/net/ax25.h
3190 F:      include/uapi/linux/ax25.h
3191 F:      net/ax25/
3192
3193 AXENTIA ARM DEVICES
3194 M:      Peter Rosin <peda@axentia.se>
3195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3196 S:      Maintained
3197 F:      arch/arm/boot/dts/at91-linea.dtsi
3198 F:      arch/arm/boot/dts/at91-natte.dtsi
3199 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3200 F:      arch/arm/boot/dts/at91-tse850-3.dts
3201
3202 AXENTIA ASOC DRIVERS
3203 M:      Peter Rosin <peda@axentia.se>
3204 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3205 S:      Maintained
3206 F:      Documentation/devicetree/bindings/sound/axentia,*
3207 F:      sound/soc/atmel/tse850-pcm5142.c
3208
3209 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3210 M:      Nuno Sá <nuno.sa@analog.com>
3211 L:      linux-hwmon@vger.kernel.org
3212 S:      Supported
3213 W:      http://ez.analog.com/community/linux-device-drivers
3214 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3215 F:      drivers/hwmon/axi-fan-control.c
3216
3217 AXXIA I2C CONTROLLER
3218 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3219 L:      linux-i2c@vger.kernel.org
3220 S:      Maintained
3221 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3222 F:      drivers/i2c/busses/i2c-axxia.c
3223
3224 AZ6007 DVB DRIVER
3225 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3226 L:      linux-media@vger.kernel.org
3227 S:      Maintained
3228 W:      https://linuxtv.org
3229 T:      git git://linuxtv.org/media_tree.git
3230 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3231
3232 AZTECH FM RADIO RECEIVER DRIVER
3233 M:      Hans Verkuil <hverkuil@xs4all.nl>
3234 L:      linux-media@vger.kernel.org
3235 S:      Maintained
3236 W:      https://linuxtv.org
3237 T:      git git://linuxtv.org/media_tree.git
3238 F:      drivers/media/radio/radio-aztech*
3239
3240 B43 WIRELESS DRIVER
3241 L:      linux-wireless@vger.kernel.org
3242 L:      b43-dev@lists.infradead.org
3243 S:      Odd Fixes
3244 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3245 F:      drivers/net/wireless/broadcom/b43/
3246
3247 B43LEGACY WIRELESS DRIVER
3248 M:      Larry Finger <Larry.Finger@lwfinger.net>
3249 L:      linux-wireless@vger.kernel.org
3250 L:      b43-dev@lists.infradead.org
3251 S:      Maintained
3252 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3253 F:      drivers/net/wireless/broadcom/b43legacy/
3254
3255 BACKLIGHT CLASS/SUBSYSTEM
3256 M:      Lee Jones <lee.jones@linaro.org>
3257 M:      Daniel Thompson <daniel.thompson@linaro.org>
3258 M:      Jingoo Han <jingoohan1@gmail.com>
3259 L:      dri-devel@lists.freedesktop.org
3260 S:      Maintained
3261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3262 F:      Documentation/ABI/stable/sysfs-class-backlight
3263 F:      Documentation/ABI/testing/sysfs-class-backlight
3264 F:      Documentation/devicetree/bindings/leds/backlight
3265 F:      drivers/video/backlight/
3266 F:      include/linux/backlight.h
3267 F:      include/linux/pwm_backlight.h
3268
3269 BARCO P50 GPIO DRIVER
3270 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3271 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3272 S:      Maintained
3273 F:      drivers/platform/x86/barco-p50-gpio.c
3274
3275 BATMAN ADVANCED
3276 M:      Marek Lindner <mareklindner@neomailbox.ch>
3277 M:      Simon Wunderlich <sw@simonwunderlich.de>
3278 M:      Antonio Quartulli <a@unstable.cc>
3279 M:      Sven Eckelmann <sven@narfation.org>
3280 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3281 S:      Maintained
3282 W:      https://www.open-mesh.org/
3283 Q:      https://patchwork.open-mesh.org/project/batman/list/
3284 B:      https://www.open-mesh.org/projects/batman-adv/issues
3285 C:      ircs://irc.hackint.org/batadv
3286 T:      git https://git.open-mesh.org/linux-merge.git
3287 F:      Documentation/networking/batman-adv.rst
3288 F:      include/uapi/linux/batadv_packet.h
3289 F:      include/uapi/linux/batman_adv.h
3290 F:      net/batman-adv/
3291
3292 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3293 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3294 L:      linux-hams@vger.kernel.org
3295 S:      Maintained
3296 W:      http://www.baycom.org/~tom/ham/ham.html
3297 F:      drivers/net/hamradio/baycom*
3298
3299 BCACHE (BLOCK LAYER CACHE)
3300 M:      Coly Li <colyli@suse.de>
3301 M:      Kent Overstreet <kent.overstreet@gmail.com>
3302 L:      linux-bcache@vger.kernel.org
3303 S:      Maintained
3304 W:      http://bcache.evilpiepirate.org
3305 C:      irc://irc.oftc.net/bcache
3306 F:      drivers/md/bcache/
3307
3308 BDISP ST MEDIA DRIVER
3309 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3310 L:      linux-media@vger.kernel.org
3311 S:      Supported
3312 W:      https://linuxtv.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 F:      drivers/media/platform/sti/bdisp
3315
3316 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3317 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3318 L:      netdev@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/net/ethernet/ec_bhf.c
3321
3322 BEFS FILE SYSTEM
3323 M:      Luis de Bethencourt <luisbg@kernel.org>
3324 M:      Salah Triki <salah.triki@gmail.com>
3325 S:      Maintained
3326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3327 F:      Documentation/filesystems/befs.rst
3328 F:      fs/befs/
3329
3330 BFQ I/O SCHEDULER
3331 M:      Paolo Valente <paolo.valente@linaro.org>
3332 M:      Jens Axboe <axboe@kernel.dk>
3333 L:      linux-block@vger.kernel.org
3334 S:      Maintained
3335 F:      Documentation/block/bfq-iosched.rst
3336 F:      block/bfq-*
3337
3338 BFS FILE SYSTEM
3339 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3340 S:      Maintained
3341 F:      Documentation/filesystems/bfs.rst
3342 F:      fs/bfs/
3343 F:      include/uapi/linux/bfs_fs.h
3344
3345 BITMAP API
3346 M:      Yury Norov <yury.norov@gmail.com>
3347 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3348 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3349 S:      Maintained
3350 F:      include/asm-generic/bitops/find.h
3351 F:      include/linux/bitmap.h
3352 F:      lib/bitmap.c
3353 F:      lib/find_bit.c
3354 F:      lib/find_bit_benchmark.c
3355 F:      lib/test_bitmap.c
3356 F:      tools/include/asm-generic/bitops/find.h
3357 F:      tools/include/linux/bitmap.h
3358 F:      tools/lib/bitmap.c
3359 F:      tools/lib/find_bit.c
3360
3361 BLINKM RGB LED DRIVER
3362 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3363 S:      Maintained
3364 F:      drivers/leds/leds-blinkm.c
3365
3366 BLOCK LAYER
3367 M:      Jens Axboe <axboe@kernel.dk>
3368 L:      linux-block@vger.kernel.org
3369 S:      Maintained
3370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3371 F:      block/
3372 F:      drivers/block/
3373 F:      include/linux/blk*
3374 F:      kernel/trace/blktrace.c
3375 F:      lib/sbitmap.c
3376
3377 BLOCK2MTD DRIVER
3378 M:      Joern Engel <joern@lazybastard.org>
3379 L:      linux-mtd@lists.infradead.org
3380 S:      Maintained
3381 F:      drivers/mtd/devices/block2mtd.c
3382
3383 BLUETOOTH DRIVERS
3384 M:      Marcel Holtmann <marcel@holtmann.org>
3385 M:      Johan Hedberg <johan.hedberg@gmail.com>
3386 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3387 L:      linux-bluetooth@vger.kernel.org
3388 S:      Supported
3389 W:      http://www.bluez.org/
3390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3392 F:      drivers/bluetooth/
3393
3394 BLUETOOTH SUBSYSTEM
3395 M:      Marcel Holtmann <marcel@holtmann.org>
3396 M:      Johan Hedberg <johan.hedberg@gmail.com>
3397 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3398 L:      linux-bluetooth@vger.kernel.org
3399 S:      Supported
3400 W:      http://www.bluez.org/
3401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3403 F:      include/net/bluetooth/
3404 F:      net/bluetooth/
3405
3406 BONDING DRIVER
3407 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3408 M:      Veaceslav Falico <vfalico@gmail.com>
3409 M:      Andy Gospodarek <andy@greyhouse.net>
3410 L:      netdev@vger.kernel.org
3411 S:      Supported
3412 W:      http://sourceforge.net/projects/bonding/
3413 F:      drivers/net/bonding/
3414 F:      include/net/bonding.h
3415 F:      include/uapi/linux/if_bonding.h
3416
3417 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3418 M:      Dan Robertson <dan@dlrobertson.com>
3419 L:      linux-iio@vger.kernel.org
3420 S:      Maintained
3421 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3422 F:      drivers/iio/accel/bma400*
3423
3424 BPF (Safe dynamic programs and tools)
3425 M:      Alexei Starovoitov <ast@kernel.org>
3426 M:      Daniel Borkmann <daniel@iogearbox.net>
3427 M:      Andrii Nakryiko <andrii@kernel.org>
3428 R:      Martin KaFai Lau <kafai@fb.com>
3429 R:      Song Liu <songliubraving@fb.com>
3430 R:      Yonghong Song <yhs@fb.com>
3431 R:      John Fastabend <john.fastabend@gmail.com>
3432 R:      KP Singh <kpsingh@kernel.org>
3433 L:      netdev@vger.kernel.org
3434 L:      bpf@vger.kernel.org
3435 S:      Supported
3436 W:      https://bpf.io/
3437 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3440 F:      Documentation/bpf/
3441 F:      Documentation/networking/filter.rst
3442 F:      Documentation/userspace-api/ebpf/
3443 F:      arch/*/net/*
3444 F:      include/linux/bpf*
3445 F:      include/linux/btf*
3446 F:      include/linux/filter.h
3447 F:      include/trace/events/xdp.h
3448 F:      include/uapi/linux/bpf*
3449 F:      include/uapi/linux/btf*
3450 F:      include/uapi/linux/filter.h
3451 F:      kernel/bpf/
3452 F:      kernel/trace/bpf_trace.c
3453 F:      lib/test_bpf.c
3454 F:      net/bpf/
3455 F:      net/core/filter.c
3456 F:      net/sched/act_bpf.c
3457 F:      net/sched/cls_bpf.c
3458 F:      samples/bpf/
3459 F:      scripts/bpf_doc.py
3460 F:      tools/bpf/
3461 F:      tools/lib/bpf/
3462 F:      tools/testing/selftests/bpf/
3463 N:      bpf
3464 K:      bpf
3465
3466 BPF JIT for ARM
3467 M:      Shubham Bansal <illusionist.neo@gmail.com>
3468 L:      netdev@vger.kernel.org
3469 L:      bpf@vger.kernel.org
3470 S:      Maintained
3471 F:      arch/arm/net/
3472
3473 BPF JIT for ARM64
3474 M:      Daniel Borkmann <daniel@iogearbox.net>
3475 M:      Alexei Starovoitov <ast@kernel.org>
3476 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3477 L:      netdev@vger.kernel.org
3478 L:      bpf@vger.kernel.org
3479 S:      Supported
3480 F:      arch/arm64/net/
3481
3482 BPF JIT for MIPS (32-BIT AND 64-BIT)
3483 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3484 M:      Paul Burton <paulburton@kernel.org>
3485 L:      netdev@vger.kernel.org
3486 L:      bpf@vger.kernel.org
3487 S:      Maintained
3488 F:      arch/mips/net/
3489
3490 BPF JIT for NFP NICs
3491 M:      Jakub Kicinski <kuba@kernel.org>
3492 L:      netdev@vger.kernel.org
3493 L:      bpf@vger.kernel.org
3494 S:      Supported
3495 F:      drivers/net/ethernet/netronome/nfp/bpf/
3496
3497 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3498 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3499 L:      netdev@vger.kernel.org
3500 L:      bpf@vger.kernel.org
3501 S:      Maintained
3502 F:      arch/powerpc/net/
3503
3504 BPF JIT for RISC-V (32-bit)
3505 M:      Luke Nelson <luke.r.nels@gmail.com>
3506 M:      Xi Wang <xi.wang@gmail.com>
3507 L:      netdev@vger.kernel.org
3508 L:      bpf@vger.kernel.org
3509 S:      Maintained
3510 F:      arch/riscv/net/
3511 X:      arch/riscv/net/bpf_jit_comp64.c
3512
3513 BPF JIT for RISC-V (64-bit)
3514 M:      Björn Töpel <bjorn@kernel.org>
3515 L:      netdev@vger.kernel.org
3516 L:      bpf@vger.kernel.org
3517 S:      Maintained
3518 F:      arch/riscv/net/
3519 X:      arch/riscv/net/bpf_jit_comp32.c
3520
3521 BPF JIT for S390
3522 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3523 M:      Heiko Carstens <hca@linux.ibm.com>
3524 M:      Vasily Gorbik <gor@linux.ibm.com>
3525 L:      netdev@vger.kernel.org
3526 L:      bpf@vger.kernel.org
3527 S:      Maintained
3528 F:      arch/s390/net/
3529 X:      arch/s390/net/pnet.c
3530
3531 BPF JIT for SPARC (32-BIT AND 64-BIT)
3532 M:      David S. Miller <davem@davemloft.net>
3533 L:      netdev@vger.kernel.org
3534 L:      bpf@vger.kernel.org
3535 S:      Maintained
3536 F:      arch/sparc/net/
3537
3538 BPF JIT for X86 32-BIT
3539 M:      Wang YanQing <udknight@gmail.com>
3540 L:      netdev@vger.kernel.org
3541 L:      bpf@vger.kernel.org
3542 S:      Maintained
3543 F:      arch/x86/net/bpf_jit_comp32.c
3544
3545 BPF JIT for X86 64-BIT
3546 M:      Alexei Starovoitov <ast@kernel.org>
3547 M:      Daniel Borkmann <daniel@iogearbox.net>
3548 L:      netdev@vger.kernel.org
3549 L:      bpf@vger.kernel.org
3550 S:      Supported
3551 F:      arch/x86/net/
3552 X:      arch/x86/net/bpf_jit_comp32.c
3553
3554 BPF LSM (Security Audit and Enforcement using BPF)
3555 M:      KP Singh <kpsingh@kernel.org>
3556 R:      Florent Revest <revest@chromium.org>
3557 R:      Brendan Jackman <jackmanb@chromium.org>
3558 L:      bpf@vger.kernel.org
3559 S:      Maintained
3560 F:      Documentation/bpf/bpf_lsm.rst
3561 F:      include/linux/bpf_lsm.h
3562 F:      kernel/bpf/bpf_lsm.c
3563 F:      security/bpf/
3564
3565 BROADCOM B44 10/100 ETHERNET DRIVER
3566 M:      Michael Chan <michael.chan@broadcom.com>
3567 L:      netdev@vger.kernel.org
3568 S:      Supported
3569 F:      drivers/net/ethernet/broadcom/b44.*
3570
3571 BROADCOM B53 ETHERNET SWITCH DRIVER
3572 M:      Florian Fainelli <f.fainelli@gmail.com>
3573 L:      netdev@vger.kernel.org
3574 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3575 S:      Supported
3576 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3577 F:      drivers/net/dsa/b53/*
3578 F:      include/linux/dsa/brcm.h
3579 F:      include/linux/platform_data/b53.h
3580
3581 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3582 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3583 L:      bcm-kernel-feedback-list@broadcom.com
3584 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3586 S:      Maintained
3587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3588 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3589 F:      drivers/pci/controller/pcie-brcmstb.c
3590 F:      drivers/staging/vc04_services
3591 N:      bcm2711
3592 N:      bcm283*
3593
3594 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3595 M:      Florian Fainelli <f.fainelli@gmail.com>
3596 M:      Ray Jui <rjui@broadcom.com>
3597 M:      Scott Branden <sbranden@broadcom.com>
3598 M:      bcm-kernel-feedback-list@broadcom.com
3599 S:      Maintained
3600 T:      git git://github.com/broadcom/mach-bcm
3601 F:      arch/arm/mach-bcm/
3602 N:      bcm281*
3603 N:      bcm113*
3604 N:      bcm216*
3605 N:      kona
3606
3607 BROADCOM BCM47XX MIPS ARCHITECTURE
3608 M:      Hauke Mehrtens <hauke@hauke-m.de>
3609 M:      Rafał Miłecki <zajec5@gmail.com>
3610 L:      linux-mips@vger.kernel.org
3611 S:      Maintained
3612 F:      Documentation/devicetree/bindings/mips/brcm/
3613 F:      arch/mips/bcm47xx/*
3614 F:      arch/mips/include/asm/mach-bcm47xx/*
3615
3616 BROADCOM BCM4908 ETHERNET DRIVER
3617 M:      Rafał Miłecki <rafal@milecki.pl>
3618 M:      bcm-kernel-feedback-list@broadcom.com
3619 L:      netdev@vger.kernel.org
3620 S:      Maintained
3621 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3622 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3623 F:      drivers/net/ethernet/broadcom/unimac.h
3624
3625 BROADCOM BCM5301X ARM ARCHITECTURE
3626 M:      Hauke Mehrtens <hauke@hauke-m.de>
3627 M:      Rafał Miłecki <zajec5@gmail.com>
3628 M:      bcm-kernel-feedback-list@broadcom.com
3629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3630 S:      Maintained
3631 F:      arch/arm/boot/dts/bcm470*
3632 F:      arch/arm/boot/dts/bcm5301*
3633 F:      arch/arm/boot/dts/bcm953012*
3634 F:      arch/arm/mach-bcm/bcm_5301x.c
3635
3636 BROADCOM BCM53573 ARM ARCHITECTURE
3637 M:      Rafał Miłecki <rafal@milecki.pl>
3638 L:      bcm-kernel-feedback-list@broadcom.com
3639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3640 S:      Maintained
3641 F:      arch/arm/boot/dts/bcm47189*
3642 F:      arch/arm/boot/dts/bcm53573*
3643
3644 BROADCOM BCM63XX ARM ARCHITECTURE
3645 M:      Florian Fainelli <f.fainelli@gmail.com>
3646 M:      bcm-kernel-feedback-list@broadcom.com
3647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3648 S:      Maintained
3649 T:      git git://github.com/broadcom/stblinux.git
3650 N:      bcm63xx
3651
3652 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3653 M:      Kevin Cernekee <cernekee@gmail.com>
3654 L:      linux-usb@vger.kernel.org
3655 S:      Maintained
3656 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3657
3658 BROADCOM BCM7XXX ARM ARCHITECTURE
3659 M:      Florian Fainelli <f.fainelli@gmail.com>
3660 M:      bcm-kernel-feedback-list@broadcom.com
3661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3662 S:      Maintained
3663 T:      git git://github.com/broadcom/stblinux.git
3664 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3665 F:      arch/arm/boot/dts/bcm7*.dts*
3666 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3667 F:      arch/arm/mach-bcm/*brcmstb*
3668 F:      arch/arm/mm/cache-b15-rac.c
3669 F:      drivers/bus/brcmstb_gisb.c
3670 F:      drivers/pci/controller/pcie-brcmstb.c
3671 N:      brcmstb
3672 N:      bcm7038
3673 N:      bcm7120
3674
3675 BROADCOM BDC DRIVER
3676 M:      Al Cooper <alcooperx@gmail.com>
3677 L:      linux-usb@vger.kernel.org
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 S:      Maintained
3680 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3681 F:      drivers/usb/gadget/udc/bdc/
3682
3683 BROADCOM BMIPS CPUFREQ DRIVER
3684 M:      Markus Mayer <mmayer@broadcom.com>
3685 M:      bcm-kernel-feedback-list@broadcom.com
3686 L:      linux-pm@vger.kernel.org
3687 S:      Maintained
3688 F:      drivers/cpufreq/bmips-cpufreq.c
3689
3690 BROADCOM BMIPS MIPS ARCHITECTURE
3691 M:      Florian Fainelli <f.fainelli@gmail.com>
3692 L:      bcm-kernel-feedback-list@broadcom.com
3693 L:      linux-mips@vger.kernel.org
3694 S:      Maintained
3695 T:      git git://github.com/broadcom/stblinux.git
3696 F:      arch/mips/bmips/*
3697 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3698 F:      arch/mips/include/asm/mach-bmips/*
3699 F:      arch/mips/kernel/*bmips*
3700 F:      drivers/soc/bcm/bcm63xx
3701 F:      drivers/irqchip/irq-bcm63*
3702 F:      drivers/irqchip/irq-bcm7*
3703 F:      drivers/irqchip/irq-brcmstb*
3704 F:      include/linux/bcm963xx_nvram.h
3705 F:      include/linux/bcm963xx_tag.h
3706
3707 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3708 M:      Rasesh Mody <rmody@marvell.com>
3709 M:      GR-Linux-NIC-Dev@marvell.com
3710 L:      netdev@vger.kernel.org
3711 S:      Supported
3712 F:      drivers/net/ethernet/broadcom/bnx2.*
3713 F:      drivers/net/ethernet/broadcom/bnx2_*
3714
3715 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3716 M:      Saurav Kashyap <skashyap@marvell.com>
3717 M:      Javed Hasan <jhasan@marvell.com>
3718 M:      GR-QLogic-Storage-Upstream@marvell.com
3719 L:      linux-scsi@vger.kernel.org
3720 S:      Supported
3721 F:      drivers/scsi/bnx2fc/
3722
3723 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3724 M:      Nilesh Javali <njavali@marvell.com>
3725 M:      Manish Rangankar <mrangankar@marvell.com>
3726 M:      GR-QLogic-Storage-Upstream@marvell.com
3727 L:      linux-scsi@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/scsi/bnx2i/
3730
3731 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3732 M:      Ariel Elior <aelior@marvell.com>
3733 M:      Sudarsana Kalluru <skalluru@marvell.com>
3734 M:      GR-everest-linux-l2@marvell.com
3735 L:      netdev@vger.kernel.org
3736 S:      Supported
3737 F:      drivers/net/ethernet/broadcom/bnx2x/
3738
3739 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3740 M:      Michael Chan <michael.chan@broadcom.com>
3741 L:      netdev@vger.kernel.org
3742 S:      Supported
3743 F:      drivers/net/ethernet/broadcom/bnxt/
3744
3745 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3746 M:      Arend van Spriel <aspriel@gmail.com>
3747 M:      Franky Lin <franky.lin@broadcom.com>
3748 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3749 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3750 M:      Wright Feng <wright.feng@infineon.com>
3751 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3752 L:      linux-wireless@vger.kernel.org
3753 L:      brcm80211-dev-list.pdl@broadcom.com
3754 L:      SHA-cyfmac-dev-list@infineon.com
3755 S:      Supported
3756 F:      drivers/net/wireless/broadcom/brcm80211/
3757
3758 BROADCOM BRCMSTB GPIO DRIVER
3759 M:      Gregory Fong <gregory.0xf0@gmail.com>
3760 L:      bcm-kernel-feedback-list@broadcom.com
3761 S:      Supported
3762 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3763 F:      drivers/gpio/gpio-brcmstb.c
3764
3765 BROADCOM BRCMSTB I2C DRIVER
3766 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3767 L:      linux-i2c@vger.kernel.org
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 S:      Supported
3770 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3771 F:      drivers/i2c/busses/i2c-brcmstb.c
3772
3773 BROADCOM BRCMSTB UART DRIVER
3774 M:      Al Cooper <alcooperx@gmail.com>
3775 L:      linux-serial@vger.kernel.org
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 S:      Maintained
3778 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3779 F:      drivers/tty/serial/8250/8250_bcm7271.c
3780
3781 BROADCOM BRCMSTB USB EHCI DRIVER
3782 M:      Al Cooper <alcooperx@gmail.com>
3783 L:      linux-usb@vger.kernel.org
3784 L:      bcm-kernel-feedback-list@broadcom.com
3785 S:      Maintained
3786 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3787 F:      drivers/usb/host/ehci-brcm.*
3788
3789 BROADCOM BRCMSTB USB PIN MAP DRIVER
3790 M:      Al Cooper <alcooperx@gmail.com>
3791 L:      linux-usb@vger.kernel.org
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 S:      Maintained
3794 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3795 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3796
3797 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3798 M:      Al Cooper <alcooperx@gmail.com>
3799 L:      linux-kernel@vger.kernel.org
3800 L:      bcm-kernel-feedback-list@broadcom.com
3801 S:      Maintained
3802 F:      drivers/phy/broadcom/phy-brcm-usb*
3803
3804 BROADCOM ETHERNET PHY DRIVERS
3805 M:      Florian Fainelli <f.fainelli@gmail.com>
3806 L:      bcm-kernel-feedback-list@broadcom.com
3807 L:      netdev@vger.kernel.org
3808 S:      Supported
3809 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3810 F:      drivers/net/phy/bcm*.[ch]
3811 F:      drivers/net/phy/broadcom.c
3812 F:      include/linux/brcmphy.h
3813
3814 BROADCOM GENET ETHERNET DRIVER
3815 M:      Doug Berger <opendmb@gmail.com>
3816 M:      Florian Fainelli <f.fainelli@gmail.com>
3817 L:      bcm-kernel-feedback-list@broadcom.com
3818 L:      netdev@vger.kernel.org
3819 S:      Supported
3820 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3821 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3822 F:      drivers/net/ethernet/broadcom/genet/
3823 F:      drivers/net/ethernet/broadcom/unimac.h
3824 F:      drivers/net/mdio/mdio-bcm-unimac.c
3825 F:      include/linux/platform_data/bcmgenet.h
3826 F:      include/linux/platform_data/mdio-bcm-unimac.h
3827
3828 BROADCOM IPROC ARM ARCHITECTURE
3829 M:      Ray Jui <rjui@broadcom.com>
3830 M:      Scott Branden <sbranden@broadcom.com>
3831 M:      bcm-kernel-feedback-list@broadcom.com
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 T:      git git://github.com/broadcom/cygnus-linux.git
3835 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3836 F:      arch/arm64/boot/dts/broadcom/stingray/*
3837 F:      drivers/clk/bcm/clk-ns*
3838 F:      drivers/clk/bcm/clk-sr*
3839 F:      drivers/pinctrl/bcm/pinctrl-ns*
3840 F:      include/dt-bindings/clock/bcm-sr*
3841 N:      iproc
3842 N:      cygnus
3843 N:      bcm[-_]nsp
3844 N:      bcm9113*
3845 N:      bcm9583*
3846 N:      bcm9585*
3847 N:      bcm9586*
3848 N:      bcm988312
3849 N:      bcm113*
3850 N:      bcm583*
3851 N:      bcm585*
3852 N:      bcm586*
3853 N:      bcm88312
3854 N:      hr2
3855 N:      stingray
3856
3857 BROADCOM IPROC GBIT ETHERNET DRIVER
3858 M:      Rafał Miłecki <rafal@milecki.pl>
3859 M:      bcm-kernel-feedback-list@broadcom.com
3860 L:      netdev@vger.kernel.org
3861 S:      Maintained
3862 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3863 F:      drivers/net/ethernet/broadcom/bgmac*
3864 F:      drivers/net/ethernet/broadcom/unimac.h
3865
3866 BROADCOM KONA GPIO DRIVER
3867 M:      Ray Jui <rjui@broadcom.com>
3868 L:      bcm-kernel-feedback-list@broadcom.com
3869 S:      Supported
3870 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3871 F:      drivers/gpio/gpio-bcm-kona.c
3872
3873 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3874 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3875 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3876 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3877 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3878 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3879 L:      linux-scsi@vger.kernel.org
3880 S:      Supported
3881 W:      https://www.broadcom.com/support/storage
3882 F:      drivers/scsi/mpi3mr/
3883
3884 BROADCOM NETXTREME-E ROCE DRIVER
3885 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3886 L:      linux-rdma@vger.kernel.org
3887 S:      Supported
3888 W:      http://www.broadcom.com
3889 F:      drivers/infiniband/hw/bnxt_re/
3890 F:      include/uapi/rdma/bnxt_re-abi.h
3891
3892 BROADCOM NVRAM DRIVER
3893 M:      Rafał Miłecki <zajec5@gmail.com>
3894 L:      linux-mips@vger.kernel.org
3895 S:      Maintained
3896 F:      drivers/firmware/broadcom/*
3897
3898 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3899 M:      Rafał Miłecki <rafal@milecki.pl>
3900 M:      Florian Fainelli <f.fainelli@gmail.com>
3901 M:      bcm-kernel-feedback-list@broadcom.com
3902 L:      linux-pm@vger.kernel.org
3903 S:      Maintained
3904 T:      git git://github.com/broadcom/stblinux.git
3905 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3906 F:      include/dt-bindings/soc/bcm-pmb.h
3907
3908 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3909 M:      Rafał Miłecki <zajec5@gmail.com>
3910 L:      linux-wireless@vger.kernel.org
3911 S:      Maintained
3912 F:      drivers/bcma/
3913 F:      include/linux/bcma/
3914
3915 BROADCOM SPI DRIVER
3916 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3917 M:      bcm-kernel-feedback-list@broadcom.com
3918 S:      Maintained
3919 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3920 F:      drivers/spi/spi-bcm-qspi.*
3921 F:      drivers/spi/spi-brcmstb-qspi.c
3922 F:      drivers/spi/spi-iproc-qspi.c
3923
3924 BROADCOM STB AVS CPUFREQ DRIVER
3925 M:      Markus Mayer <mmayer@broadcom.com>
3926 M:      bcm-kernel-feedback-list@broadcom.com
3927 L:      linux-pm@vger.kernel.org
3928 S:      Maintained
3929 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3930 F:      drivers/cpufreq/brcmstb*
3931
3932 BROADCOM STB AVS TMON DRIVER
3933 M:      Markus Mayer <mmayer@broadcom.com>
3934 M:      bcm-kernel-feedback-list@broadcom.com
3935 L:      linux-pm@vger.kernel.org
3936 S:      Maintained
3937 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3938 F:      drivers/thermal/broadcom/brcmstb*
3939
3940 BROADCOM STB DPFE DRIVER
3941 M:      Markus Mayer <mmayer@broadcom.com>
3942 M:      bcm-kernel-feedback-list@broadcom.com
3943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3944 S:      Maintained
3945 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3946 F:      drivers/memory/brcmstb_dpfe.c
3947
3948 BROADCOM STB NAND FLASH DRIVER
3949 M:      Brian Norris <computersforpeace@gmail.com>
3950 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3951 L:      linux-mtd@lists.infradead.org
3952 L:      bcm-kernel-feedback-list@broadcom.com
3953 S:      Maintained
3954 F:      drivers/mtd/nand/raw/brcmnand/
3955
3956 BROADCOM STB PCIE DRIVER
3957 M:      Jim Quinlan <jim2101024@gmail.com>
3958 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3959 M:      Florian Fainelli <f.fainelli@gmail.com>
3960 M:      bcm-kernel-feedback-list@broadcom.com
3961 L:      linux-pci@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3964 F:      drivers/pci/controller/pcie-brcmstb.c
3965
3966 BROADCOM SYSTEMPORT ETHERNET DRIVER
3967 M:      Florian Fainelli <f.fainelli@gmail.com>
3968 L:      bcm-kernel-feedback-list@broadcom.com
3969 L:      netdev@vger.kernel.org
3970 S:      Supported
3971 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3972 F:      drivers/net/ethernet/broadcom/unimac.h
3973
3974 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3975 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3976 M:      Prashant Sreedharan <prashant@broadcom.com>
3977 M:      Michael Chan <mchan@broadcom.com>
3978 L:      netdev@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/net/ethernet/broadcom/tg3.*
3981
3982 BROADCOM VK DRIVER
3983 M:      Scott Branden <scott.branden@broadcom.com>
3984 L:      bcm-kernel-feedback-list@broadcom.com
3985 S:      Supported
3986 F:      drivers/misc/bcm-vk/
3987 F:      include/uapi/linux/misc/bcm_vk.h
3988
3989 BROCADE BFA FC SCSI DRIVER
3990 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3991 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      drivers/scsi/bfa/
3995
3996 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3997 M:      Rasesh Mody <rmody@marvell.com>
3998 M:      Sudarsana Kalluru <skalluru@marvell.com>
3999 M:      GR-Linux-NIC-Dev@marvell.com
4000 L:      netdev@vger.kernel.org
4001 S:      Supported
4002 F:      drivers/net/ethernet/brocade/bna/
4003
4004 BSG (block layer generic sg v4 driver)
4005 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4006 L:      linux-scsi@vger.kernel.org
4007 S:      Supported
4008 F:      block/bsg.c
4009 F:      include/linux/bsg.h
4010 F:      include/uapi/linux/bsg.h
4011
4012 BT87X AUDIO DRIVER
4013 M:      Clemens Ladisch <clemens@ladisch.de>
4014 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4015 S:      Maintained
4016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4017 F:      Documentation/sound/cards/bt87x.rst
4018 F:      sound/pci/bt87x.c
4019
4020 BT8XXGPIO DRIVER
4021 M:      Michael Buesch <m@bues.ch>
4022 S:      Maintained
4023 W:      http://bu3sch.de/btgpio.php
4024 F:      drivers/gpio/gpio-bt8xx.c
4025
4026 BTRFS FILE SYSTEM
4027 M:      Chris Mason <clm@fb.com>
4028 M:      Josef Bacik <josef@toxicpanda.com>
4029 M:      David Sterba <dsterba@suse.com>
4030 L:      linux-btrfs@vger.kernel.org
4031 S:      Maintained
4032 W:      http://btrfs.wiki.kernel.org/
4033 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4034 C:      irc://irc.libera.chat/btrfs
4035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4036 F:      Documentation/filesystems/btrfs.rst
4037 F:      fs/btrfs/
4038 F:      include/linux/btrfs*
4039 F:      include/uapi/linux/btrfs*
4040
4041 BTTV VIDEO4LINUX DRIVER
4042 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4043 L:      linux-media@vger.kernel.org
4044 S:      Odd fixes
4045 W:      https://linuxtv.org
4046 T:      git git://linuxtv.org/media_tree.git
4047 F:      Documentation/driver-api/media/drivers/bttv*
4048 F:      drivers/media/pci/bt8xx/bttv*
4049
4050 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4051 M:      Chanwoo Choi <cw00.choi@samsung.com>
4052 L:      linux-pm@vger.kernel.org
4053 L:      linux-samsung-soc@vger.kernel.org
4054 S:      Maintained
4055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4056 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4057 F:      drivers/devfreq/exynos-bus.c
4058
4059 BUSLOGIC SCSI DRIVER
4060 M:      Khalid Aziz <khalid@gonehiking.org>
4061 L:      linux-scsi@vger.kernel.org
4062 S:      Maintained
4063 F:      drivers/scsi/BusLogic.*
4064 F:      drivers/scsi/FlashPoint.*
4065
4066 C-MEDIA CMI8788 DRIVER
4067 M:      Clemens Ladisch <clemens@ladisch.de>
4068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4069 S:      Maintained
4070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4071 F:      sound/pci/oxygen/
4072
4073 C-SKY ARCHITECTURE
4074 M:      Guo Ren <guoren@kernel.org>
4075 L:      linux-csky@vger.kernel.org
4076 S:      Supported
4077 T:      git https://github.com/c-sky/csky-linux.git
4078 F:      Documentation/devicetree/bindings/csky/
4079 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4080 F:      Documentation/devicetree/bindings/timer/csky,*
4081 F:      arch/csky/
4082 F:      drivers/clocksource/timer-gx6605s.c
4083 F:      drivers/clocksource/timer-mp-csky.c
4084 F:      drivers/irqchip/irq-csky-*
4085 N:      csky
4086 K:      csky
4087
4088 CA8210 IEEE-802.15.4 RADIO DRIVER
4089 M:      Harry Morris <h.morris@cascoda.com>
4090 L:      linux-wpan@vger.kernel.org
4091 S:      Maintained
4092 W:      https://github.com/Cascoda/ca8210-linux.git
4093 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4094 F:      drivers/net/ieee802154/ca8210.c
4095
4096 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4097 M:      Damien Le Moal <damien.lemoal@wdc.com>
4098 L:      linux-riscv@lists.infradead.org
4099 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4100 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4101 F:      drivers/pinctrl/pinctrl-k210.c
4102
4103 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4104 M:      Damien Le Moal <damien.lemoal@wdc.com>
4105 L:      linux-kernel@vger.kernel.org
4106 L:      linux-riscv@lists.infradead.org
4107 S:      Maintained
4108 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4109 F:      drivers/reset/reset-k210.c
4110
4111 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4112 M:      Damien Le Moal <damien.lemoal@wdc.com>
4113 L:      linux-riscv@lists.infradead.org
4114 S:      Maintained
4115 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4116 F:      drivers/soc/canaan/
4117 F:      include/soc/canaan/
4118
4119 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4120 M:      David Howells <dhowells@redhat.com>
4121 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4122 S:      Supported
4123 F:      Documentation/filesystems/caching/cachefiles.rst
4124 F:      fs/cachefiles/
4125
4126 CADENCE MIPI-CSI2 BRIDGES
4127 M:      Maxime Ripard <mripard@kernel.org>
4128 L:      linux-media@vger.kernel.org
4129 S:      Maintained
4130 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4131 F:      drivers/media/platform/cadence/cdns-csi2*
4132
4133 CADENCE NAND DRIVER
4134 L:      linux-mtd@lists.infradead.org
4135 S:      Orphan
4136 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4137 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4138
4139 CADENCE USB3 DRD IP DRIVER
4140 M:      Peter Chen <peter.chen@kernel.org>
4141 M:      Pawel Laszczak <pawell@cadence.com>
4142 R:      Roger Quadros <rogerq@kernel.org>
4143 R:      Aswath Govindraju <a-govindraju@ti.com>
4144 L:      linux-usb@vger.kernel.org
4145 S:      Maintained
4146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4147 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4148 F:      drivers/usb/cdns3/
4149 X:      drivers/usb/cdns3/cdnsp*
4150
4151 CADENCE USBSSP DRD IP DRIVER
4152 M:      Pawel Laszczak <pawell@cadence.com>
4153 L:      linux-usb@vger.kernel.org
4154 S:      Maintained
4155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4156 F:      drivers/usb/cdns3/
4157 X:      drivers/usb/cdns3/cdns3*
4158
4159 CADET FM/AM RADIO RECEIVER DRIVER
4160 M:      Hans Verkuil <hverkuil@xs4all.nl>
4161 L:      linux-media@vger.kernel.org
4162 S:      Maintained
4163 W:      https://linuxtv.org
4164 T:      git git://linuxtv.org/media_tree.git
4165 F:      drivers/media/radio/radio-cadet*
4166
4167 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4168 L:      linux-media@vger.kernel.org
4169 S:      Orphan
4170 T:      git git://linuxtv.org/media_tree.git
4171 F:      Documentation/admin-guide/media/cafe_ccic*
4172 F:      drivers/media/platform/marvell-ccic/
4173
4174 CAIF NETWORK LAYER
4175 L:      netdev@vger.kernel.org
4176 S:      Orphan
4177 F:      Documentation/networking/caif/
4178 F:      drivers/net/caif/
4179 F:      include/net/caif/
4180 F:      include/uapi/linux/caif/
4181 F:      net/caif/
4182
4183 CAKE QDISC
4184 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4185 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4186 S:      Maintained
4187 F:      net/sched/sch_cake.c
4188
4189 CAN NETWORK DRIVERS
4190 M:      Wolfgang Grandegger <wg@grandegger.com>
4191 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4192 L:      linux-can@vger.kernel.org
4193 S:      Maintained
4194 W:      https://github.com/linux-can
4195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4197 F:      Documentation/devicetree/bindings/net/can/
4198 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4199 F:      drivers/net/can/
4200 F:      drivers/phy/phy-can-transceiver.c
4201 F:      include/linux/can/bittiming.h
4202 F:      include/linux/can/dev.h
4203 F:      include/linux/can/led.h
4204 F:      include/linux/can/length.h
4205 F:      include/linux/can/platform/
4206 F:      include/linux/can/rx-offload.h
4207 F:      include/uapi/linux/can/error.h
4208 F:      include/uapi/linux/can/netlink.h
4209 F:      include/uapi/linux/can/vxcan.h
4210
4211 CAN NETWORK LAYER
4212 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4213 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4214 L:      linux-can@vger.kernel.org
4215 S:      Maintained
4216 W:      https://github.com/linux-can
4217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4219 F:      Documentation/networking/can.rst
4220 F:      include/linux/can/can-ml.h
4221 F:      include/linux/can/core.h
4222 F:      include/linux/can/skb.h
4223 F:      include/net/netns/can.h
4224 F:      include/uapi/linux/can.h
4225 F:      include/uapi/linux/can/bcm.h
4226 F:      include/uapi/linux/can/gw.h
4227 F:      include/uapi/linux/can/isotp.h
4228 F:      include/uapi/linux/can/raw.h
4229 F:      net/can/
4230
4231 CAN-J1939 NETWORK LAYER
4232 M:      Robin van der Gracht <robin@protonic.nl>
4233 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4234 R:      kernel@pengutronix.de
4235 L:      linux-can@vger.kernel.org
4236 S:      Maintained
4237 F:      Documentation/networking/j1939.rst
4238 F:      include/uapi/linux/can/j1939.h
4239 F:      net/can/j1939/
4240
4241 CAPABILITIES
4242 M:      Serge Hallyn <serge@hallyn.com>
4243 L:      linux-security-module@vger.kernel.org
4244 S:      Supported
4245 F:      include/linux/capability.h
4246 F:      include/uapi/linux/capability.h
4247 F:      kernel/capability.c
4248 F:      security/commoncap.c
4249
4250 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4251 M:      Kevin Tsai <ktsai@capellamicro.com>
4252 S:      Maintained
4253 F:      drivers/iio/light/cm*
4254
4255 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4256 M:      Christian Lamparter <chunkeey@googlemail.com>
4257 L:      linux-wireless@vger.kernel.org
4258 S:      Maintained
4259 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4260 F:      drivers/net/wireless/ath/carl9170/
4261
4262 CAVIUM I2C DRIVER
4263 M:      Robert Richter <rric@kernel.org>
4264 S:      Odd Fixes
4265 W:      http://www.marvell.com
4266 F:      drivers/i2c/busses/i2c-octeon*
4267 F:      drivers/i2c/busses/i2c-thunderx*
4268
4269 CAVIUM LIQUIDIO NETWORK DRIVER
4270 M:      Derek Chickles <dchickles@marvell.com>
4271 M:      Satanand Burla <sburla@marvell.com>
4272 M:      Felix Manlunas <fmanlunas@marvell.com>
4273 L:      netdev@vger.kernel.org
4274 S:      Supported
4275 W:      http://www.marvell.com
4276 F:      drivers/net/ethernet/cavium/liquidio/
4277
4278 CAVIUM MMC DRIVER
4279 M:      Robert Richter <rric@kernel.org>
4280 S:      Odd Fixes
4281 W:      http://www.marvell.com
4282 F:      drivers/mmc/host/cavium*
4283
4284 CAVIUM OCTEON-TX CRYPTO DRIVER
4285 M:      George Cherian <gcherian@marvell.com>
4286 L:      linux-crypto@vger.kernel.org
4287 S:      Supported
4288 W:      http://www.marvell.com
4289 F:      drivers/crypto/cavium/cpt/
4290
4291 CAVIUM THUNDERX2 ARM64 SOC
4292 M:      Robert Richter <rric@kernel.org>
4293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4294 S:      Odd Fixes
4295 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4296 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4297
4298 CBS/ETF/TAPRIO QDISCS
4299 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4300 S:      Maintained
4301 L:      netdev@vger.kernel.org
4302 F:      net/sched/sch_cbs.c
4303 F:      net/sched/sch_etf.c
4304 F:      net/sched/sch_taprio.c
4305
4306 CC2520 IEEE-802.15.4 RADIO DRIVER
4307 M:      Varka Bhadram <varkabhadram@gmail.com>
4308 L:      linux-wpan@vger.kernel.org
4309 S:      Maintained
4310 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4311 F:      drivers/net/ieee802154/cc2520.c
4312 F:      include/linux/spi/cc2520.h
4313
4314 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4315 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4316 L:      linux-crypto@vger.kernel.org
4317 S:      Supported
4318 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4319 F:      drivers/crypto/ccree/
4320
4321 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4322 M:      Hadar Gat <hadar.gat@arm.com>
4323 L:      linux-crypto@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/char/hw_random/cctrng.c
4326 F:      drivers/char/hw_random/cctrng.h
4327 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4328 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4329
4330 CEC FRAMEWORK
4331 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4332 L:      linux-media@vger.kernel.org
4333 S:      Supported
4334 W:      http://linuxtv.org
4335 T:      git git://linuxtv.org/media_tree.git
4336 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4337 F:      Documentation/devicetree/bindings/media/cec.txt
4338 F:      Documentation/driver-api/media/cec-core.rst
4339 F:      Documentation/userspace-api/media/cec
4340 F:      drivers/media/cec/
4341 F:      drivers/media/rc/keymaps/rc-cec.c
4342 F:      include/media/cec-notifier.h
4343 F:      include/media/cec.h
4344 F:      include/uapi/linux/cec-funcs.h
4345 F:      include/uapi/linux/cec.h
4346
4347 CEC GPIO DRIVER
4348 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4349 L:      linux-media@vger.kernel.org
4350 S:      Supported
4351 W:      http://linuxtv.org
4352 T:      git git://linuxtv.org/media_tree.git
4353 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4354 F:      drivers/media/cec/platform/cec-gpio/
4355
4356 CELL BROADBAND ENGINE ARCHITECTURE
4357 M:      Arnd Bergmann <arnd@arndb.de>
4358 L:      linuxppc-dev@lists.ozlabs.org
4359 S:      Supported
4360 W:      http://www.ibm.com/developerworks/power/cell/
4361 F:      arch/powerpc/include/asm/cell*.h
4362 F:      arch/powerpc/include/asm/spu*.h
4363 F:      arch/powerpc/include/uapi/asm/spu*.h
4364 F:      arch/powerpc/platforms/cell/
4365
4366 CELLWISE CW2015 BATTERY DRIVER
4367 M:      Tobias Schrammm <t.schramm@manjaro.org>
4368 S:      Maintained
4369 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4370 F:      drivers/power/supply/cw2015_battery.c
4371
4372 CEPH COMMON CODE (LIBCEPH)
4373 M:      Ilya Dryomov <idryomov@gmail.com>
4374 M:      Jeff Layton <jlayton@kernel.org>
4375 L:      ceph-devel@vger.kernel.org
4376 S:      Supported
4377 W:      http://ceph.com/
4378 T:      git git://github.com/ceph/ceph-client.git
4379 F:      include/linux/ceph/
4380 F:      include/linux/crush/
4381 F:      net/ceph/
4382
4383 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4384 M:      Jeff Layton <jlayton@kernel.org>
4385 M:      Ilya Dryomov <idryomov@gmail.com>
4386 L:      ceph-devel@vger.kernel.org
4387 S:      Supported
4388 W:      http://ceph.com/
4389 T:      git git://github.com/ceph/ceph-client.git
4390 F:      Documentation/filesystems/ceph.rst
4391 F:      fs/ceph/
4392
4393 CERTIFICATE HANDLING
4394 M:      David Howells <dhowells@redhat.com>
4395 M:      David Woodhouse <dwmw2@infradead.org>
4396 L:      keyrings@vger.kernel.org
4397 S:      Maintained
4398 F:      Documentation/admin-guide/module-signing.rst
4399 F:      certs/
4400 F:      scripts/extract-cert.c
4401 F:      scripts/sign-file.c
4402
4403 CFAG12864B LCD DRIVER
4404 M:      Miguel Ojeda <ojeda@kernel.org>
4405 S:      Maintained
4406 F:      drivers/auxdisplay/cfag12864b.c
4407 F:      include/linux/cfag12864b.h
4408
4409 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4410 M:      Miguel Ojeda <ojeda@kernel.org>
4411 S:      Maintained
4412 F:      drivers/auxdisplay/cfag12864bfb.c
4413 F:      include/linux/cfag12864b.h
4414
4415 CHAR and MISC DRIVERS
4416 M:      Arnd Bergmann <arnd@arndb.de>
4417 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4418 S:      Supported
4419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4420 F:      drivers/char/
4421 F:      drivers/misc/
4422 F:      include/linux/miscdevice.h
4423 X:      drivers/char/agp/
4424 X:      drivers/char/hw_random/
4425 X:      drivers/char/ipmi/
4426 X:      drivers/char/random.c
4427 X:      drivers/char/tpm/
4428
4429 CHECKPATCH
4430 M:      Andy Whitcroft <apw@canonical.com>
4431 M:      Joe Perches <joe@perches.com>
4432 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4433 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4434 S:      Maintained
4435 F:      scripts/checkpatch.pl
4436
4437 CHECKPATCH DOCUMENTATION
4438 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4439 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4440 R:      Joe Perches <joe@perches.com>
4441 S:      Maintained
4442 F:      Documentation/dev-tools/checkpatch.rst
4443
4444 CHINESE DOCUMENTATION
4445 M:      Alex Shi <alexs@kernel.org>
4446 S:      Maintained
4447 F:      Documentation/translations/zh_CN/
4448
4449 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4450 M:      Peter Chen <peter.chen@kernel.org>
4451 L:      linux-usb@vger.kernel.org
4452 S:      Maintained
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4454 F:      drivers/usb/chipidea/
4455
4456 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4457 M:      Hans de Goede <hdegoede@redhat.com>
4458 L:      linux-input@vger.kernel.org
4459 S:      Maintained
4460 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4461 F:      drivers/input/touchscreen/chipone_icn8318.c
4462
4463 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4464 M:      Hans de Goede <hdegoede@redhat.com>
4465 L:      linux-input@vger.kernel.org
4466 S:      Maintained
4467 F:      drivers/input/touchscreen/chipone_icn8505.c
4468
4469 CHROME HARDWARE PLATFORM SUPPORT
4470 M:      Benson Leung <bleung@chromium.org>
4471 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4472 S:      Maintained
4473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4474 F:      drivers/platform/chrome/
4475
4476 CHROMEOS EC CODEC DRIVER
4477 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4478 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4479 R:      Guenter Roeck <groeck@chromium.org>
4480 S:      Maintained
4481 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4482 F:      sound/soc/codecs/cros_ec_codec.*
4483
4484 CHROMEOS EC SUBDRIVERS
4485 M:      Benson Leung <bleung@chromium.org>
4486 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4487 R:      Guenter Roeck <groeck@chromium.org>
4488 S:      Maintained
4489 F:      drivers/power/supply/cros_usbpd-charger.c
4490 N:      cros_ec
4491 N:      cros-ec
4492
4493 CHRONTEL CH7322 CEC DRIVER
4494 M:      Joe Tessler <jrt@google.com>
4495 L:      linux-media@vger.kernel.org
4496 S:      Maintained
4497 T:      git git://linuxtv.org/media_tree.git
4498 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4499 F:      drivers/media/cec/i2c/ch7322.c
4500
4501 CIRRUS LOGIC AUDIO CODEC DRIVERS
4502 M:      James Schulman <james.schulman@cirrus.com>
4503 M:      David Rhodes <david.rhodes@cirrus.com>
4504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4505 L:      patches@opensource.cirrus.com
4506 S:      Maintained
4507 F:      sound/soc/codecs/cs*
4508
4509 CIRRUS LOGIC DSP FIRMWARE DRIVER
4510 M:      Simon Trimmer <simont@opensource.cirrus.com>
4511 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4512 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4513 L:      patches@opensource.cirrus.com
4514 S:      Supported
4515 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4516 T:      git https://github.com/CirrusLogic/linux-drivers.git
4517 F:      drivers/firmware/cirrus/*
4518 F:      include/linux/firmware/cirrus/*
4519
4520 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4521 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4522 L:      netdev@vger.kernel.org
4523 S:      Maintained
4524 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4525
4526 CIRRUS LOGIC LOCHNAGAR DRIVER
4527 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4528 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4529 L:      patches@opensource.cirrus.com
4530 S:      Supported
4531 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4532 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4533 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4534 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4535 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4536 F:      Documentation/hwmon/lochnagar.rst
4537 F:      drivers/clk/clk-lochnagar.c
4538 F:      drivers/hwmon/lochnagar-hwmon.c
4539 F:      drivers/mfd/lochnagar-i2c.c
4540 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4541 F:      drivers/regulator/lochnagar-regulator.c
4542 F:      include/dt-bindings/clk/lochnagar.h
4543 F:      include/dt-bindings/pinctrl/lochnagar.h
4544 F:      include/linux/mfd/lochnagar*
4545 F:      sound/soc/codecs/lochnagar-sc.c
4546
4547 CIRRUS LOGIC MADERA CODEC DRIVERS
4548 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4549 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4551 L:      patches@opensource.cirrus.com
4552 S:      Supported
4553 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4554 T:      git https://github.com/CirrusLogic/linux-drivers.git
4555 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4556 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4557 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4558 F:      drivers/gpio/gpio-madera*
4559 F:      drivers/irqchip/irq-madera*
4560 F:      drivers/mfd/cs47l*
4561 F:      drivers/mfd/madera*
4562 F:      drivers/pinctrl/cirrus/*
4563 F:      include/dt-bindings/sound/madera*
4564 F:      include/linux/irqchip/irq-madera*
4565 F:      include/linux/mfd/madera/*
4566 F:      include/sound/madera*
4567 F:      sound/soc/codecs/cs47l*
4568 F:      sound/soc/codecs/madera*
4569
4570 CISCO FCOE HBA DRIVER
4571 M:      Satish Kharat <satishkh@cisco.com>
4572 M:      Sesidhar Baddela <sebaddel@cisco.com>
4573 M:      Karan Tilak Kumar <kartilak@cisco.com>
4574 L:      linux-scsi@vger.kernel.org
4575 S:      Supported
4576 F:      drivers/scsi/fnic/
4577
4578 CISCO SCSI HBA DRIVER
4579 M:      Karan Tilak Kumar <kartilak@cisco.com>
4580 M:      Sesidhar Baddela <sebaddel@cisco.com>
4581 L:      linux-scsi@vger.kernel.org
4582 S:      Supported
4583 F:      drivers/scsi/snic/
4584
4585 CISCO VIC ETHERNET NIC DRIVER
4586 M:      Christian Benvenuti <benve@cisco.com>
4587 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4588 S:      Supported
4589 F:      drivers/net/ethernet/cisco/enic/
4590
4591 CISCO VIC LOW LATENCY NIC DRIVER
4592 M:      Christian Benvenuti <benve@cisco.com>
4593 M:      Nelson Escobar <neescoba@cisco.com>
4594 S:      Supported
4595 F:      drivers/infiniband/hw/usnic/
4596
4597 CLANG-FORMAT FILE
4598 M:      Miguel Ojeda <ojeda@kernel.org>
4599 S:      Maintained
4600 F:      .clang-format
4601
4602 CLANG/LLVM BUILD SUPPORT
4603 M:      Nathan Chancellor <nathan@kernel.org>
4604 M:      Nick Desaulniers <ndesaulniers@google.com>
4605 L:      llvm@lists.linux.dev
4606 S:      Supported
4607 W:      https://clangbuiltlinux.github.io/
4608 B:      https://github.com/ClangBuiltLinux/linux/issues
4609 C:      irc://irc.libera.chat/clangbuiltlinux
4610 F:      Documentation/kbuild/llvm.rst
4611 F:      include/linux/compiler-clang.h
4612 F:      scripts/Makefile.clang
4613 F:      scripts/clang-tools/
4614 K:      \b(?i:clang|llvm)\b
4615
4616 CLANG CONTROL FLOW INTEGRITY SUPPORT
4617 M:      Sami Tolvanen <samitolvanen@google.com>
4618 M:      Kees Cook <keescook@chromium.org>
4619 R:      Nathan Chancellor <nathan@kernel.org>
4620 R:      Nick Desaulniers <ndesaulniers@google.com>
4621 L:      llvm@lists.linux.dev
4622 S:      Supported
4623 B:      https://github.com/ClangBuiltLinux/linux/issues
4624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4625 F:      include/linux/cfi.h
4626 F:      kernel/cfi.c
4627
4628 CLEANCACHE API
4629 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4630 L:      linux-kernel@vger.kernel.org
4631 S:      Maintained
4632 F:      include/linux/cleancache.h
4633 F:      mm/cleancache.c
4634
4635 CLK API
4636 M:      Russell King <linux@armlinux.org.uk>
4637 L:      linux-clk@vger.kernel.org
4638 S:      Maintained
4639 F:      include/linux/clk.h
4640
4641 CLOCKSOURCE, CLOCKEVENT DRIVERS
4642 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4643 M:      Thomas Gleixner <tglx@linutronix.de>
4644 L:      linux-kernel@vger.kernel.org
4645 S:      Supported
4646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4647 F:      Documentation/devicetree/bindings/timer/
4648 F:      drivers/clocksource/
4649
4650 CMPC ACPI DRIVER
4651 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4652 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4653 L:      platform-driver-x86@vger.kernel.org
4654 S:      Supported
4655 F:      drivers/platform/x86/classmate-laptop.c
4656
4657 COBALT MEDIA DRIVER
4658 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4659 L:      linux-media@vger.kernel.org
4660 S:      Supported
4661 W:      https://linuxtv.org
4662 T:      git git://linuxtv.org/media_tree.git
4663 F:      drivers/media/pci/cobalt/
4664
4665 COCCINELLE/Semantic Patches (SmPL)
4666 M:      Julia Lawall <Julia.Lawall@inria.fr>
4667 M:      Gilles Muller <Gilles.Muller@inria.fr>
4668 M:      Nicolas Palix <nicolas.palix@imag.fr>
4669 M:      Michal Marek <michal.lkml@markovi.net>
4670 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4671 S:      Supported
4672 W:      http://coccinelle.lip6.fr/
4673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4674 F:      Documentation/dev-tools/coccinelle.rst
4675 F:      scripts/coccicheck
4676 F:      scripts/coccinelle/
4677
4678 CODA FILE SYSTEM
4679 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4680 M:      coda@cs.cmu.edu
4681 L:      codalist@coda.cs.cmu.edu
4682 S:      Maintained
4683 W:      http://www.coda.cs.cmu.edu/
4684 F:      Documentation/filesystems/coda.rst
4685 F:      fs/coda/
4686 F:      include/linux/coda*.h
4687 F:      include/uapi/linux/coda*.h
4688
4689 CODA V4L2 MEM2MEM DRIVER
4690 M:      Philipp Zabel <p.zabel@pengutronix.de>
4691 L:      linux-media@vger.kernel.org
4692 S:      Maintained
4693 F:      Documentation/devicetree/bindings/media/coda.yaml
4694 F:      drivers/media/platform/coda/
4695
4696 CODE OF CONDUCT
4697 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4698 S:      Supported
4699 F:      Documentation/process/code-of-conduct-interpretation.rst
4700 F:      Documentation/process/code-of-conduct.rst
4701
4702 COMEDI DRIVERS
4703 M:      Ian Abbott <abbotti@mev.co.uk>
4704 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4705 S:      Odd Fixes
4706 F:      drivers/comedi/
4707
4708 COMMON CLK FRAMEWORK
4709 M:      Michael Turquette <mturquette@baylibre.com>
4710 M:      Stephen Boyd <sboyd@kernel.org>
4711 L:      linux-clk@vger.kernel.org
4712 S:      Maintained
4713 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4715 F:      Documentation/devicetree/bindings/clock/
4716 F:      drivers/clk/
4717 F:      include/linux/clk-pr*
4718 F:      include/linux/clk/
4719 F:      include/linux/of_clk.h
4720 X:      drivers/clk/clkdev.c
4721
4722 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4723 M:      Steve French <sfrench@samba.org>
4724 L:      linux-cifs@vger.kernel.org
4725 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4726 S:      Supported
4727 W:      http://linux-cifs.samba.org/
4728 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4729 F:      Documentation/admin-guide/cifs/
4730 F:      fs/cifs/
4731 F:      fs/smbfs_common/
4732
4733 COMPACTPCI HOTPLUG CORE
4734 M:      Scott Murray <scott@spiteful.org>
4735 L:      linux-pci@vger.kernel.org
4736 S:      Maintained
4737 F:      drivers/pci/hotplug/cpci_hotplug*
4738
4739 COMPACTPCI HOTPLUG GENERIC DRIVER
4740 M:      Scott Murray <scott@spiteful.org>
4741 L:      linux-pci@vger.kernel.org
4742 S:      Maintained
4743 F:      drivers/pci/hotplug/cpcihp_generic.c
4744
4745 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4746 M:      Scott Murray <scott@spiteful.org>
4747 L:      linux-pci@vger.kernel.org
4748 S:      Maintained
4749 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4750
4751 COMPAL LAPTOP SUPPORT
4752 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4753 L:      platform-driver-x86@vger.kernel.org
4754 S:      Maintained
4755 F:      drivers/platform/x86/compal-laptop.c
4756
4757 COMPILER ATTRIBUTES
4758 M:      Miguel Ojeda <ojeda@kernel.org>
4759 R:      Nick Desaulniers <ndesaulniers@google.com>
4760 S:      Maintained
4761 F:      include/linux/compiler_attributes.h
4762
4763 COMPUTE EXPRESS LINK (CXL)
4764 M:      Alison Schofield <alison.schofield@intel.com>
4765 M:      Vishal Verma <vishal.l.verma@intel.com>
4766 M:      Ira Weiny <ira.weiny@intel.com>
4767 M:      Ben Widawsky <ben.widawsky@intel.com>
4768 M:      Dan Williams <dan.j.williams@intel.com>
4769 L:      linux-cxl@vger.kernel.org
4770 S:      Maintained
4771 F:      drivers/cxl/
4772 F:      include/uapi/linux/cxl_mem.h
4773
4774 CONEXANT ACCESSRUNNER USB DRIVER
4775 L:      accessrunner-general@lists.sourceforge.net
4776 S:      Orphan
4777 W:      http://accessrunner.sourceforge.net/
4778 F:      drivers/usb/atm/cxacru.c
4779
4780 CONFIGFS
4781 M:      Joel Becker <jlbec@evilplan.org>
4782 M:      Christoph Hellwig <hch@lst.de>
4783 S:      Supported
4784 T:      git git://git.infradead.org/users/hch/configfs.git
4785 F:      fs/configfs/
4786 F:      include/linux/configfs.h
4787 F:      samples/configfs/
4788
4789 CONSOLE SUBSYSTEM
4790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4791 S:      Supported
4792 F:      drivers/video/console/
4793 F:      include/linux/console*
4794
4795 CONTEXT TRACKING
4796 M:      Frederic Weisbecker <frederic@kernel.org>
4797 S:      Maintained
4798 F:      kernel/context_tracking.c
4799 F:      include/linux/context_tracking*
4800
4801 CONTROL GROUP (CGROUP)
4802 M:      Tejun Heo <tj@kernel.org>
4803 M:      Zefan Li <lizefan.x@bytedance.com>
4804 M:      Johannes Weiner <hannes@cmpxchg.org>
4805 L:      cgroups@vger.kernel.org
4806 S:      Maintained
4807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4808 F:      Documentation/admin-guide/cgroup-v1/
4809 F:      Documentation/admin-guide/cgroup-v2.rst
4810 F:      include/linux/cgroup*
4811 F:      kernel/cgroup/
4812
4813 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4814 M:      Tejun Heo <tj@kernel.org>
4815 M:      Jens Axboe <axboe@kernel.dk>
4816 L:      cgroups@vger.kernel.org
4817 L:      linux-block@vger.kernel.org
4818 T:      git git://git.kernel.dk/linux-block
4819 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4820 F:      block/bfq-cgroup.c
4821 F:      block/blk-cgroup.c
4822 F:      block/blk-iolatency.c
4823 F:      block/blk-throttle.c
4824 F:      include/linux/blk-cgroup.h
4825
4826 CONTROL GROUP - CPUSET
4827 M:      Zefan Li <lizefan.x@bytedance.com>
4828 L:      cgroups@vger.kernel.org
4829 S:      Maintained
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4831 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4832 F:      include/linux/cpuset.h
4833 F:      kernel/cgroup/cpuset.c
4834
4835 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4836 M:      Johannes Weiner <hannes@cmpxchg.org>
4837 M:      Michal Hocko <mhocko@kernel.org>
4838 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4839 L:      cgroups@vger.kernel.org
4840 L:      linux-mm@kvack.org
4841 S:      Maintained
4842 F:      mm/memcontrol.c
4843 F:      mm/swap_cgroup.c
4844
4845 CORETEMP HARDWARE MONITORING DRIVER
4846 M:      Fenghua Yu <fenghua.yu@intel.com>
4847 L:      linux-hwmon@vger.kernel.org
4848 S:      Maintained
4849 F:      Documentation/hwmon/coretemp.rst
4850 F:      drivers/hwmon/coretemp.c
4851
4852 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4853 M:      Marius Zachmann <mail@mariuszachmann.de>
4854 L:      linux-hwmon@vger.kernel.org
4855 S:      Maintained
4856 F:      drivers/hwmon/corsair-cpro.c
4857
4858 CORSAIR-PSU HARDWARE MONITOR DRIVER
4859 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4860 L:      linux-hwmon@vger.kernel.org
4861 S:      Maintained
4862 F:      Documentation/hwmon/corsair-psu.rst
4863 F:      drivers/hwmon/corsair-psu.c
4864
4865 COSA/SRP SYNC SERIAL DRIVER
4866 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4867 S:      Maintained
4868 W:      http://www.fi.muni.cz/~kas/cosa/
4869 F:      drivers/net/wan/cosa*
4870
4871 COUNTER SUBSYSTEM
4872 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4873 L:      linux-iio@vger.kernel.org
4874 S:      Maintained
4875 F:      Documentation/ABI/testing/sysfs-bus-counter
4876 F:      Documentation/driver-api/generic-counter.rst
4877 F:      drivers/counter/
4878 F:      include/linux/counter.h
4879 F:      include/uapi/linux/counter.h
4880 F:      tools/counter/
4881
4882 CP2615 I2C DRIVER
4883 M:      Bence Csókás <bence98@sch.bme.hu>
4884 S:      Maintained
4885 F:      drivers/i2c/busses/i2c-cp2615.c
4886
4887 CPMAC ETHERNET DRIVER
4888 M:      Florian Fainelli <f.fainelli@gmail.com>
4889 L:      netdev@vger.kernel.org
4890 S:      Maintained
4891 F:      drivers/net/ethernet/ti/cpmac.c
4892
4893 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4894 M:      Viresh Kumar <viresh.kumar@linaro.org>
4895 M:      Sudeep Holla <sudeep.holla@arm.com>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4899 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4900
4901 CPU FREQUENCY SCALING FRAMEWORK
4902 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4903 M:      Viresh Kumar <viresh.kumar@linaro.org>
4904 L:      linux-pm@vger.kernel.org
4905 S:      Maintained
4906 B:      https://bugzilla.kernel.org
4907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4909 F:      Documentation/admin-guide/pm/cpufreq.rst
4910 F:      Documentation/admin-guide/pm/intel_pstate.rst
4911 F:      Documentation/cpu-freq/
4912 F:      Documentation/devicetree/bindings/cpufreq/
4913 F:      drivers/cpufreq/
4914 F:      include/linux/cpufreq.h
4915 F:      include/linux/sched/cpufreq.h
4916 F:      kernel/sched/cpufreq*.c
4917 F:      tools/testing/selftests/cpufreq/
4918
4919 CPU IDLE TIME MANAGEMENT FRAMEWORK
4920 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 S:      Maintained
4924 B:      https://bugzilla.kernel.org
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      Documentation/admin-guide/pm/cpuidle.rst
4927 F:      Documentation/driver-api/pm/cpuidle.rst
4928 F:      drivers/cpuidle/
4929 F:      include/linux/cpuidle.h
4930
4931 CPU POWER MONITORING SUBSYSTEM
4932 M:      Thomas Renninger <trenn@suse.com>
4933 M:      Shuah Khan <shuah@kernel.org>
4934 M:      Shuah Khan <skhan@linuxfoundation.org>
4935 L:      linux-pm@vger.kernel.org
4936 S:      Maintained
4937 F:      tools/power/cpupower/
4938
4939 CPUID/MSR DRIVER
4940 M:      "H. Peter Anvin" <hpa@zytor.com>
4941 S:      Maintained
4942 F:      arch/x86/kernel/cpuid.c
4943 F:      arch/x86/kernel/msr.c
4944
4945 CPUIDLE DRIVER - ARM BIG LITTLE
4946 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4947 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4948 L:      linux-pm@vger.kernel.org
4949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4950 S:      Maintained
4951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4952 F:      drivers/cpuidle/cpuidle-big_little.c
4953
4954 CPUIDLE DRIVER - ARM EXYNOS
4955 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4956 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4957 M:      Kukjin Kim <kgene@kernel.org>
4958 L:      linux-pm@vger.kernel.org
4959 L:      linux-samsung-soc@vger.kernel.org
4960 S:      Supported
4961 F:      arch/arm/mach-exynos/pm.c
4962 F:      drivers/cpuidle/cpuidle-exynos.c
4963 F:      include/linux/platform_data/cpuidle-exynos.h
4964
4965 CPUIDLE DRIVER - ARM PSCI
4966 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4967 M:      Sudeep Holla <sudeep.holla@arm.com>
4968 L:      linux-pm@vger.kernel.org
4969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4970 S:      Supported
4971 F:      drivers/cpuidle/cpuidle-psci.c
4972
4973 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4974 M:      Ulf Hansson <ulf.hansson@linaro.org>
4975 L:      linux-pm@vger.kernel.org
4976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4977 S:      Supported
4978 F:      drivers/cpuidle/cpuidle-psci.h
4979 F:      drivers/cpuidle/cpuidle-psci-domain.c
4980
4981 CRAMFS FILESYSTEM
4982 M:      Nicolas Pitre <nico@fluxnic.net>
4983 S:      Maintained
4984 F:      Documentation/filesystems/cramfs.rst
4985 F:      fs/cramfs/
4986
4987 CREATIVE SB0540
4988 M:      Bastien Nocera <hadess@hadess.net>
4989 L:      linux-input@vger.kernel.org
4990 S:      Maintained
4991 F:      drivers/hid/hid-creative-sb0540.c
4992
4993 CRYPTO API
4994 M:      Herbert Xu <herbert@gondor.apana.org.au>
4995 M:      "David S. Miller" <davem@davemloft.net>
4996 L:      linux-crypto@vger.kernel.org
4997 S:      Maintained
4998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5000 F:      Documentation/crypto/
5001 F:      Documentation/devicetree/bindings/crypto/
5002 F:      arch/*/crypto/
5003 F:      crypto/
5004 F:      drivers/crypto/
5005 F:      include/crypto/
5006 F:      include/linux/crypto*
5007 F:      lib/crypto/
5008
5009 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5010 M:      Neil Horman <nhorman@tuxdriver.com>
5011 L:      linux-crypto@vger.kernel.org
5012 S:      Maintained
5013 F:      crypto/ansi_cprng.c
5014 F:      crypto/rng.c
5015
5016 CS3308 MEDIA DRIVER
5017 M:      Hans Verkuil <hverkuil@xs4all.nl>
5018 L:      linux-media@vger.kernel.org
5019 S:      Odd Fixes
5020 W:      http://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/i2c/cs3308.c
5023
5024 CS5535 Audio ALSA driver
5025 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5026 S:      Maintained
5027 F:      sound/pci/cs5535audio/
5028
5029 CSI DRIVERS FOR ALLWINNER V3s
5030 M:      Yong Deng <yong.deng@magewell.com>
5031 L:      linux-media@vger.kernel.org
5032 S:      Maintained
5033 T:      git git://linuxtv.org/media_tree.git
5034 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5035 F:      drivers/media/platform/sunxi/sun6i-csi/
5036
5037 CW1200 WLAN driver
5038 M:      Solomon Peachy <pizza@shaftnet.org>
5039 S:      Maintained
5040 F:      drivers/net/wireless/st/cw1200/
5041
5042 CX18 VIDEO4LINUX DRIVER
5043 M:      Andy Walls <awalls@md.metrocast.net>
5044 L:      linux-media@vger.kernel.org
5045 S:      Maintained
5046 W:      https://linuxtv.org
5047 T:      git git://linuxtv.org/media_tree.git
5048 F:      drivers/media/pci/cx18/
5049 F:      include/uapi/linux/ivtv*
5050
5051 CX2341X MPEG ENCODER HELPER MODULE
5052 M:      Hans Verkuil <hverkuil@xs4all.nl>
5053 L:      linux-media@vger.kernel.org
5054 S:      Maintained
5055 W:      https://linuxtv.org
5056 T:      git git://linuxtv.org/media_tree.git
5057 F:      drivers/media/common/cx2341x*
5058 F:      include/media/drv-intf/cx2341x.h
5059
5060 CX24120 MEDIA DRIVER
5061 M:      Jemma Denson <jdenson@gmail.com>
5062 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5063 L:      linux-media@vger.kernel.org
5064 S:      Maintained
5065 W:      https://linuxtv.org
5066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5067 F:      drivers/media/dvb-frontends/cx24120*
5068
5069 CX88 VIDEO4LINUX DRIVER
5070 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5071 L:      linux-media@vger.kernel.org
5072 S:      Odd fixes
5073 W:      https://linuxtv.org
5074 T:      git git://linuxtv.org/media_tree.git
5075 F:      Documentation/driver-api/media/drivers/cx88*
5076 F:      drivers/media/pci/cx88/
5077
5078 CXD2820R MEDIA DRIVER
5079 M:      Antti Palosaari <crope@iki.fi>
5080 L:      linux-media@vger.kernel.org
5081 S:      Maintained
5082 W:      https://linuxtv.org
5083 W:      http://palosaari.fi/linux/
5084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5085 T:      git git://linuxtv.org/anttip/media_tree.git
5086 F:      drivers/media/dvb-frontends/cxd2820r*
5087
5088 CXGB3 ETHERNET DRIVER (CXGB3)
5089 M:      Raju Rangoju <rajur@chelsio.com>
5090 L:      netdev@vger.kernel.org
5091 S:      Supported
5092 W:      http://www.chelsio.com
5093 F:      drivers/net/ethernet/chelsio/cxgb3/
5094
5095 CXGB3 ISCSI DRIVER (CXGB3I)
5096 M:      Karen Xie <kxie@chelsio.com>
5097 L:      linux-scsi@vger.kernel.org
5098 S:      Supported
5099 W:      http://www.chelsio.com
5100 F:      drivers/scsi/cxgbi/cxgb3i
5101
5102 CXGB4 CRYPTO DRIVER (chcr)
5103 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5104 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5105 M:      Rohit Maheshwari <rohitm@chelsio.com>
5106 L:      linux-crypto@vger.kernel.org
5107 S:      Supported
5108 W:      http://www.chelsio.com
5109 F:      drivers/crypto/chelsio
5110
5111 CXGB4 INLINE CRYPTO DRIVER
5112 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5113 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5114 M:      Rohit Maheshwari <rohitm@chelsio.com>
5115 L:      netdev@vger.kernel.org
5116 S:      Supported
5117 W:      http://www.chelsio.com
5118 F:      drivers/net/ethernet/chelsio/inline_crypto/
5119
5120 CXGB4 ETHERNET DRIVER (CXGB4)
5121 M:      Raju Rangoju <rajur@chelsio.com>
5122 L:      netdev@vger.kernel.org
5123 S:      Supported
5124 W:      http://www.chelsio.com
5125 F:      drivers/net/ethernet/chelsio/cxgb4/
5126
5127 CXGB4 ISCSI DRIVER (CXGB4I)
5128 M:      Karen Xie <kxie@chelsio.com>
5129 L:      linux-scsi@vger.kernel.org
5130 S:      Supported
5131 W:      http://www.chelsio.com
5132 F:      drivers/scsi/cxgbi/cxgb4i
5133
5134 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5135 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5136 L:      linux-rdma@vger.kernel.org
5137 S:      Supported
5138 W:      http://www.openfabrics.org
5139 F:      drivers/infiniband/hw/cxgb4/
5140 F:      include/uapi/rdma/cxgb4-abi.h
5141
5142 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5143 M:      Raju Rangoju <rajur@chelsio.com>
5144 L:      netdev@vger.kernel.org
5145 S:      Supported
5146 W:      http://www.chelsio.com
5147 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5148
5149 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5150 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5151 M:      Andrew Donnellan <ajd@linux.ibm.com>
5152 L:      linuxppc-dev@lists.ozlabs.org
5153 S:      Supported
5154 F:      Documentation/ABI/testing/sysfs-class-cxl
5155 F:      Documentation/powerpc/cxl.rst
5156 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5157 F:      drivers/misc/cxl/
5158 F:      include/misc/cxl*
5159 F:      include/uapi/misc/cxl.h
5160
5161 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5162 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5163 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5164 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5165 L:      linux-scsi@vger.kernel.org
5166 S:      Supported
5167 F:      Documentation/powerpc/cxlflash.rst
5168 F:      drivers/scsi/cxlflash/
5169 F:      include/uapi/scsi/cxlflash_ioctl.h
5170
5171 CYBERPRO FB DRIVER
5172 M:      Russell King <linux@armlinux.org.uk>
5173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5174 S:      Maintained
5175 W:      http://www.armlinux.org.uk/
5176 F:      drivers/video/fbdev/cyber2000fb.*
5177
5178 CYCLADES PC300 DRIVER
5179 S:      Orphan
5180 F:      drivers/net/wan/pc300*
5181
5182 CYPRESS_FIRMWARE MEDIA DRIVER
5183 M:      Antti Palosaari <crope@iki.fi>
5184 L:      linux-media@vger.kernel.org
5185 S:      Maintained
5186 W:      https://linuxtv.org
5187 W:      http://palosaari.fi/linux/
5188 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5189 T:      git git://linuxtv.org/anttip/media_tree.git
5190 F:      drivers/media/common/cypress_firmware*
5191
5192 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5193 M:      Linus Walleij <linus.walleij@linaro.org>
5194 L:      linux-input@vger.kernel.org
5195 S:      Maintained
5196 F:      drivers/input/touchscreen/cy8ctma140.c
5197
5198 CYTTSP TOUCHSCREEN DRIVER
5199 M:      Linus Walleij <linus.walleij@linaro.org>
5200 L:      linux-input@vger.kernel.org
5201 S:      Maintained
5202 F:      drivers/input/touchscreen/cyttsp*
5203
5204 D-LINK DIR-685 TOUCHKEYS DRIVER
5205 M:      Linus Walleij <linus.walleij@linaro.org>
5206 L:      linux-input@vger.kernel.org
5207 S:      Supported
5208 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5209
5210 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5211 M:      Joshua Kinard <kumba@gentoo.org>
5212 S:      Maintained
5213 F:      drivers/rtc/rtc-ds1685.c
5214 F:      include/linux/rtc/ds1685.h
5215
5216 DAMA SLAVE for AX.25
5217 M:      Joerg Reuter <jreuter@yaina.de>
5218 L:      linux-hams@vger.kernel.org
5219 S:      Maintained
5220 W:      http://yaina.de/jreuter/
5221 W:      http://www.qsl.net/dl1bke/
5222 F:      net/ax25/af_ax25.c
5223 F:      net/ax25/ax25_dev.c
5224 F:      net/ax25/ax25_ds_*
5225 F:      net/ax25/ax25_in.c
5226 F:      net/ax25/ax25_out.c
5227 F:      net/ax25/ax25_timer.c
5228 F:      net/ax25/sysctl_net_ax25.c
5229
5230 DATA ACCESS MONITOR
5231 M:      SeongJae Park <sj@kernel.org>
5232 L:      linux-mm@kvack.org
5233 S:      Maintained
5234 F:      Documentation/admin-guide/mm/damon/
5235 F:      Documentation/vm/damon/
5236 F:      include/linux/damon.h
5237 F:      include/trace/events/damon.h
5238 F:      mm/damon/
5239 F:      tools/testing/selftests/damon/
5240
5241 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5242 L:      netdev@vger.kernel.org
5243 S:      Orphan
5244 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5245 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5246
5247 DC390/AM53C974 SCSI driver
5248 M:      Hannes Reinecke <hare@suse.com>
5249 L:      linux-scsi@vger.kernel.org
5250 S:      Maintained
5251 F:      drivers/scsi/am53c974.c
5252
5253 DC395x SCSI driver
5254 M:      Oliver Neukum <oliver@neukum.org>
5255 M:      Ali Akcaagac <aliakc@web.de>
5256 M:      Jamie Lenehan <lenehan@twibble.org>
5257 L:      dc395x@twibble.org
5258 S:      Maintained
5259 W:      http://twibble.org/dist/dc395x/
5260 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5261 F:      Documentation/scsi/dc395x.rst
5262 F:      drivers/scsi/dc395x.*
5263
5264 DCCP PROTOCOL
5265 L:      dccp@vger.kernel.org
5266 S:      Orphan
5267 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5268 F:      include/linux/dccp.h
5269 F:      include/linux/tfrc.h
5270 F:      include/uapi/linux/dccp.h
5271 F:      net/dccp/
5272
5273 DECnet NETWORK LAYER
5274 L:      linux-decnet-user@lists.sourceforge.net
5275 S:      Orphan
5276 W:      http://linux-decnet.sourceforge.net
5277 F:      Documentation/networking/decnet.rst
5278 F:      net/decnet/
5279
5280 DECSTATION PLATFORM SUPPORT
5281 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5282 L:      linux-mips@vger.kernel.org
5283 S:      Maintained
5284 W:      http://www.linux-mips.org/wiki/DECstation
5285 F:      arch/mips/dec/
5286 F:      arch/mips/include/asm/dec/
5287 F:      arch/mips/include/asm/mach-dec/
5288
5289 DEFXX FDDI NETWORK DRIVER
5290 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5291 S:      Maintained
5292 F:      drivers/net/fddi/defxx.*
5293
5294 DEFZA FDDI NETWORK DRIVER
5295 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5296 S:      Maintained
5297 F:      drivers/net/fddi/defza.*
5298
5299 DEINTERLACE DRIVERS FOR ALLWINNER H3
5300 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5301 L:      linux-media@vger.kernel.org
5302 S:      Maintained
5303 T:      git git://linuxtv.org/media_tree.git
5304 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5305 F:      drivers/media/platform/sunxi/sun8i-di/
5306
5307 DELL LAPTOP DRIVER
5308 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5309 M:      Pali Rohár <pali@kernel.org>
5310 L:      platform-driver-x86@vger.kernel.org
5311 S:      Maintained
5312 F:      drivers/platform/x86/dell/dell-laptop.c
5313
5314 DELL LAPTOP FREEFALL DRIVER
5315 M:      Pali Rohár <pali@kernel.org>
5316 S:      Maintained
5317 F:      drivers/platform/x86/dell/dell-smo8800.c
5318
5319 DELL LAPTOP RBTN DRIVER
5320 M:      Pali Rohár <pali@kernel.org>
5321 S:      Maintained
5322 F:      drivers/platform/x86/dell/dell-rbtn.*
5323
5324 DELL LAPTOP SMM DRIVER
5325 M:      Pali Rohár <pali@kernel.org>
5326 S:      Maintained
5327 F:      drivers/hwmon/dell-smm-hwmon.c
5328 F:      include/uapi/linux/i8k.h
5329
5330 DELL REMOTE BIOS UPDATE DRIVER
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      drivers/platform/x86/dell/dell_rbu.c
5335
5336 DELL SMBIOS DRIVER
5337 M:      Pali Rohár <pali@kernel.org>
5338 L:      Dell.Client.Kernel@dell.com
5339 L:      platform-driver-x86@vger.kernel.org
5340 S:      Maintained
5341 F:      drivers/platform/x86/dell/dell-smbios.*
5342
5343 DELL SMBIOS SMM DRIVER
5344 L:      Dell.Client.Kernel@dell.com
5345 L:      platform-driver-x86@vger.kernel.org
5346 S:      Maintained
5347 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5348
5349 DELL SMBIOS WMI DRIVER
5350 L:      Dell.Client.Kernel@dell.com
5351 L:      platform-driver-x86@vger.kernel.org
5352 S:      Maintained
5353 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5354 F:      tools/wmi/dell-smbios-example.c
5355
5356 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5357 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5358 L:      platform-driver-x86@vger.kernel.org
5359 S:      Maintained
5360 F:      Documentation/driver-api/dcdbas.rst
5361 F:      drivers/platform/x86/dell/dcdbas.*
5362
5363 DELL WMI DESCRIPTOR DRIVER
5364 L:      Dell.Client.Kernel@dell.com
5365 S:      Maintained
5366 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5367
5368 DELL WMI SYSMAN DRIVER
5369 M:      Divya Bharathi <divya.bharathi@dell.com>
5370 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5371 L:      Dell.Client.Kernel@dell.com
5372 L:      platform-driver-x86@vger.kernel.org
5373 S:      Maintained
5374 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5375 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5376
5377 DELL WMI NOTIFICATIONS DRIVER
5378 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5379 M:      Pali Rohár <pali@kernel.org>
5380 S:      Maintained
5381 F:      drivers/platform/x86/dell/dell-wmi-base.c
5382
5383 DELL WMI HARDWARE PRIVACY SUPPORT
5384 M:      Perry Yuan <Perry.Yuan@dell.com>
5385 L:      Dell.Client.Kernel@dell.com
5386 L:      platform-driver-x86@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5389
5390 DELTA ST MEDIA DRIVER
5391 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5392 L:      linux-media@vger.kernel.org
5393 S:      Supported
5394 W:      https://linuxtv.org
5395 T:      git git://linuxtv.org/media_tree.git
5396 F:      drivers/media/platform/sti/delta
5397
5398 DELTA DPS920AB PSU DRIVER
5399 M:      Robert Marko <robert.marko@sartura.hr>
5400 L:      linux-hwmon@vger.kernel.org
5401 S:      Maintained
5402 F:      Documentation/hwmon/dps920ab.rst
5403 F:      drivers/hwmon/pmbus/dps920ab.c
5404
5405 DENALI NAND DRIVER
5406 L:      linux-mtd@lists.infradead.org
5407 S:      Orphan
5408 F:      drivers/mtd/nand/raw/denali*
5409
5410 DESIGNWARE EDMA CORE IP DRIVER
5411 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5412 L:      dmaengine@vger.kernel.org
5413 S:      Maintained
5414 F:      drivers/dma/dw-edma/
5415 F:      include/linux/dma/edma.h
5416
5417 DESIGNWARE XDATA IP DRIVER
5418 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5419 L:      linux-pci@vger.kernel.org
5420 S:      Maintained
5421 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5422 F:      drivers/misc/dw-xdata-pcie.c
5423
5424 DESIGNWARE USB2 DRD IP DRIVER
5425 M:      Minas Harutyunyan <hminas@synopsys.com>
5426 L:      linux-usb@vger.kernel.org
5427 S:      Maintained
5428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5429 F:      drivers/usb/dwc2/
5430
5431 DESIGNWARE USB3 DRD IP DRIVER
5432 M:      Felipe Balbi <balbi@kernel.org>
5433 L:      linux-usb@vger.kernel.org
5434 S:      Maintained
5435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5436 F:      drivers/usb/dwc3/
5437
5438 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5439 M:      Andreas Klinger <ak@it-klinger.de>
5440 L:      linux-iio@vger.kernel.org
5441 S:      Maintained
5442 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5443 F:      drivers/iio/proximity/srf*.c
5444
5445 DEVICE COREDUMP (DEV_COREDUMP)
5446 M:      Johannes Berg <johannes@sipsolutions.net>
5447 L:      linux-kernel@vger.kernel.org
5448 S:      Maintained
5449 F:      drivers/base/devcoredump.c
5450 F:      include/linux/devcoredump.h
5451
5452 DEVICE DEPENDENCY HELPER SCRIPT
5453 M:      Saravana Kannan <saravanak@google.com>
5454 L:      linux-kernel@vger.kernel.org
5455 S:      Maintained
5456 F:      scripts/dev-needs.sh
5457
5458 DEVICE DIRECT ACCESS (DAX)
5459 M:      Dan Williams <dan.j.williams@intel.com>
5460 M:      Vishal Verma <vishal.l.verma@intel.com>
5461 M:      Dave Jiang <dave.jiang@intel.com>
5462 L:      nvdimm@lists.linux.dev
5463 S:      Supported
5464 F:      drivers/dax/
5465
5466 DEVICE FREQUENCY (DEVFREQ)
5467 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5468 M:      Kyungmin Park <kyungmin.park@samsung.com>
5469 M:      Chanwoo Choi <cw00.choi@samsung.com>
5470 L:      linux-pm@vger.kernel.org
5471 S:      Maintained
5472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5473 F:      Documentation/devicetree/bindings/devfreq/
5474 F:      drivers/devfreq/
5475 F:      include/linux/devfreq.h
5476 F:      include/trace/events/devfreq.h
5477
5478 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5479 M:      Chanwoo Choi <cw00.choi@samsung.com>
5480 L:      linux-pm@vger.kernel.org
5481 S:      Supported
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5483 F:      Documentation/devicetree/bindings/devfreq/event/
5484 F:      drivers/devfreq/devfreq-event.c
5485 F:      drivers/devfreq/event/
5486 F:      include/dt-bindings/pmu/exynos_ppmu.h
5487 F:      include/linux/devfreq-event.h
5488
5489 DEVICE NUMBER REGISTRY
5490 M:      Torben Mathiasen <device@lanana.org>
5491 S:      Maintained
5492 W:      http://lanana.org/docs/device-list/index.html
5493
5494 DEVICE RESOURCE MANAGEMENT HELPERS
5495 M:      Hans de Goede <hdegoede@redhat.com>
5496 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5497 S:      Maintained
5498 F:      include/linux/devm-helpers.h
5499
5500 DEVICE-MAPPER  (LVM)
5501 M:      Alasdair Kergon <agk@redhat.com>
5502 M:      Mike Snitzer <snitzer@redhat.com>
5503 M:      dm-devel@redhat.com
5504 L:      dm-devel@redhat.com
5505 S:      Maintained
5506 W:      http://sources.redhat.com/dm
5507 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5509 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5510 F:      Documentation/admin-guide/device-mapper/
5511 F:      drivers/md/Kconfig
5512 F:      drivers/md/Makefile
5513 F:      drivers/md/dm*
5514 F:      drivers/md/persistent-data/
5515 F:      include/linux/device-mapper.h
5516 F:      include/linux/dm-*.h
5517 F:      include/uapi/linux/dm-*.h
5518
5519 DEVLINK
5520 M:      Jiri Pirko <jiri@nvidia.com>
5521 L:      netdev@vger.kernel.org
5522 S:      Supported
5523 F:      Documentation/networking/devlink
5524 F:      include/net/devlink.h
5525 F:      include/uapi/linux/devlink.h
5526 F:      net/core/devlink.c
5527
5528 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5529 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5530 L:      kernel@dh-electronics.com
5531 S:      Maintained
5532 F:      arch/arm/boot/dts/imx6*-dhcom-*
5533
5534 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5535 M:      Marek Vasut <marex@denx.de>
5536 L:      kernel@dh-electronics.com
5537 S:      Maintained
5538 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5539 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5540
5541 DIALOG SEMICONDUCTOR DRIVERS
5542 M:      Support Opensource <support.opensource@diasemi.com>
5543 S:      Supported
5544 W:      http://www.dialog-semiconductor.com/products
5545 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5546 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5547 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5548 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5549 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5550 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5551 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5552 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5553 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5554 F:      Documentation/hwmon/da90??.rst
5555 F:      drivers/gpio/gpio-da90??.c
5556 F:      drivers/hwmon/da90??-hwmon.c
5557 F:      drivers/iio/adc/da91??-*.c
5558 F:      drivers/input/misc/da72??.[ch]
5559 F:      drivers/input/misc/da90??_onkey.c
5560 F:      drivers/input/touchscreen/da9052_tsi.c
5561 F:      drivers/leds/leds-da90??.c
5562 F:      drivers/mfd/da903x.c
5563 F:      drivers/mfd/da90??-*.c
5564 F:      drivers/mfd/da91??-*.c
5565 F:      drivers/pinctrl/pinctrl-da90??.c
5566 F:      drivers/power/supply/da9052-battery.c
5567 F:      drivers/power/supply/da91??-*.c
5568 F:      drivers/regulator/da9???-regulator.[ch]
5569 F:      drivers/regulator/slg51000-regulator.[ch]
5570 F:      drivers/rtc/rtc-da90??.c
5571 F:      drivers/thermal/da90??-thermal.c
5572 F:      drivers/video/backlight/da90??_bl.c
5573 F:      drivers/watchdog/da90??_wdt.c
5574 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5575 F:      include/linux/mfd/da903x.h
5576 F:      include/linux/mfd/da9052/
5577 F:      include/linux/mfd/da9055/
5578 F:      include/linux/mfd/da9062/
5579 F:      include/linux/mfd/da9063/
5580 F:      include/linux/mfd/da9150/
5581 F:      include/linux/regulator/da9211.h
5582 F:      include/sound/da[79]*.h
5583 F:      sound/soc/codecs/da[79]*.[ch]
5584
5585 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5586 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5587 L:      linux-gpio@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/gpio/gpio-gpio-mm.c
5590
5591 DIOLAN U2C-12 I2C DRIVER
5592 M:      Guenter Roeck <linux@roeck-us.net>
5593 L:      linux-i2c@vger.kernel.org
5594 S:      Maintained
5595 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5596
5597 DIRECTORY NOTIFICATION (DNOTIFY)
5598 M:      Jan Kara <jack@suse.cz>
5599 R:      Amir Goldstein <amir73il@gmail.com>
5600 L:      linux-fsdevel@vger.kernel.org
5601 S:      Maintained
5602 F:      Documentation/filesystems/dnotify.rst
5603 F:      fs/notify/dnotify/
5604 F:      include/linux/dnotify.h
5605
5606 DISK GEOMETRY AND PARTITION HANDLING
5607 M:      Andries Brouwer <aeb@cwi.nl>
5608 S:      Maintained
5609 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5610 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5611 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5612
5613 DISKQUOTA
5614 M:      Jan Kara <jack@suse.com>
5615 S:      Maintained
5616 F:      Documentation/filesystems/quota.rst
5617 F:      fs/quota/
5618 F:      include/linux/quota*.h
5619 F:      include/uapi/linux/quota*.h
5620
5621 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5622 M:      Bernie Thompson <bernie@plugable.com>
5623 L:      linux-fbdev@vger.kernel.org
5624 S:      Maintained
5625 W:      http://plugable.com/category/projects/udlfb/
5626 F:      Documentation/fb/udlfb.rst
5627 F:      drivers/video/fbdev/udlfb.c
5628 F:      include/video/udlfb.h
5629
5630 DISTRIBUTED LOCK MANAGER (DLM)
5631 M:      Christine Caulfield <ccaulfie@redhat.com>
5632 M:      David Teigland <teigland@redhat.com>
5633 L:      cluster-devel@redhat.com
5634 S:      Supported
5635 W:      http://sources.redhat.com/cluster/
5636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5637 F:      fs/dlm/
5638
5639 DMA BUFFER SHARING FRAMEWORK
5640 M:      Sumit Semwal <sumit.semwal@linaro.org>
5641 M:      Christian König <christian.koenig@amd.com>
5642 L:      linux-media@vger.kernel.org
5643 L:      dri-devel@lists.freedesktop.org
5644 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5645 S:      Maintained
5646 T:      git git://anongit.freedesktop.org/drm/drm-misc
5647 F:      Documentation/driver-api/dma-buf.rst
5648 F:      drivers/dma-buf/
5649 F:      include/linux/*fence.h
5650 F:      include/linux/dma-buf*
5651 F:      include/linux/dma-resv.h
5652 K:      \bdma_(?:buf|fence|resv)\b
5653
5654 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5655 M:      Vinod Koul <vkoul@kernel.org>
5656 L:      dmaengine@vger.kernel.org
5657 S:      Maintained
5658 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5660 F:      Documentation/devicetree/bindings/dma/
5661 F:      Documentation/driver-api/dmaengine/
5662 F:      drivers/dma/
5663 F:      include/linux/dma/
5664 F:      include/linux/dmaengine.h
5665 F:      include/linux/of_dma.h
5666
5667 DMA MAPPING HELPERS
5668 M:      Christoph Hellwig <hch@lst.de>
5669 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5670 R:      Robin Murphy <robin.murphy@arm.com>
5671 L:      iommu@lists.linux-foundation.org
5672 S:      Supported
5673 W:      http://git.infradead.org/users/hch/dma-mapping.git
5674 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5675 F:      include/asm-generic/dma-mapping.h
5676 F:      include/linux/dma-direct.h
5677 F:      include/linux/dma-mapping.h
5678 F:      include/linux/dma-map-ops.h
5679 F:      kernel/dma/
5680
5681 DMA MAPPING BENCHMARK
5682 M:      Barry Song <song.bao.hua@hisilicon.com>
5683 L:      iommu@lists.linux-foundation.org
5684 F:      kernel/dma/map_benchmark.c
5685 F:      tools/testing/selftests/dma/
5686
5687 DMA-BUF HEAPS FRAMEWORK
5688 M:      Sumit Semwal <sumit.semwal@linaro.org>
5689 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5690 R:      Liam Mark <lmark@codeaurora.org>
5691 R:      Laura Abbott <labbott@redhat.com>
5692 R:      Brian Starkey <Brian.Starkey@arm.com>
5693 R:      John Stultz <john.stultz@linaro.org>
5694 L:      linux-media@vger.kernel.org
5695 L:      dri-devel@lists.freedesktop.org
5696 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5697 S:      Maintained
5698 T:      git git://anongit.freedesktop.org/drm/drm-misc
5699 F:      drivers/dma-buf/dma-heap.c
5700 F:      drivers/dma-buf/heaps/*
5701 F:      include/linux/dma-heap.h
5702 F:      include/uapi/linux/dma-heap.h
5703
5704 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5705 M:      Lukasz Luba <lukasz.luba@arm.com>
5706 L:      linux-pm@vger.kernel.org
5707 L:      linux-samsung-soc@vger.kernel.org
5708 S:      Maintained
5709 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5710 F:      drivers/memory/samsung/exynos5422-dmc.c
5711
5712 DME1737 HARDWARE MONITOR DRIVER
5713 M:      Juerg Haefliger <juergh@gmail.com>
5714 L:      linux-hwmon@vger.kernel.org
5715 S:      Maintained
5716 F:      Documentation/hwmon/dme1737.rst
5717 F:      drivers/hwmon/dme1737.c
5718
5719 DMI/SMBIOS SUPPORT
5720 M:      Jean Delvare <jdelvare@suse.com>
5721 S:      Maintained
5722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5723 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5724 F:      drivers/firmware/dmi-id.c
5725 F:      drivers/firmware/dmi_scan.c
5726 F:      include/linux/dmi.h
5727
5728 DOCUMENTATION
5729 M:      Jonathan Corbet <corbet@lwn.net>
5730 L:      linux-doc@vger.kernel.org
5731 S:      Maintained
5732 P:      Documentation/doc-guide/maintainer-profile.rst
5733 T:      git git://git.lwn.net/linux.git docs-next
5734 F:      Documentation/
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/kernel-doc
5737 F:      scripts/sphinx-pre-install
5738 X:      Documentation/ABI/
5739 X:      Documentation/admin-guide/media/
5740 X:      Documentation/devicetree/
5741 X:      Documentation/driver-api/media/
5742 X:      Documentation/firmware-guide/acpi/
5743 X:      Documentation/i2c/
5744 X:      Documentation/power/
5745 X:      Documentation/spi/
5746 X:      Documentation/userspace-api/media/
5747
5748 DOCUMENTATION REPORTING ISSUES
5749 M:      Thorsten Leemhuis <linux@leemhuis.info>
5750 L:      linux-doc@vger.kernel.org
5751 S:      Maintained
5752 F:      Documentation/admin-guide/reporting-issues.rst
5753
5754 DOCUMENTATION SCRIPTS
5755 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5756 L:      linux-doc@vger.kernel.org
5757 S:      Maintained
5758 F:      Documentation/sphinx/parse-headers.pl
5759 F:      scripts/documentation-file-ref-check
5760 F:      scripts/sphinx-pre-install
5761
5762 DOCUMENTATION/ITALIAN
5763 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5764 L:      linux-doc@vger.kernel.org
5765 S:      Maintained
5766 F:      Documentation/translations/it_IT
5767
5768 DONGWOON DW9714 LENS VOICE COIL DRIVER
5769 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5770 L:      linux-media@vger.kernel.org
5771 S:      Maintained
5772 T:      git git://linuxtv.org/media_tree.git
5773 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5774 F:      drivers/media/i2c/dw9714.c
5775
5776 DONGWOON DW9768 LENS VOICE COIL DRIVER
5777 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5778 L:      linux-media@vger.kernel.org
5779 S:      Maintained
5780 T:      git git://linuxtv.org/media_tree.git
5781 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5782 F:      drivers/media/i2c/dw9768.c
5783
5784 DONGWOON DW9807 LENS VOICE COIL DRIVER
5785 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5786 L:      linux-media@vger.kernel.org
5787 S:      Maintained
5788 T:      git git://linuxtv.org/media_tree.git
5789 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5790 F:      drivers/media/i2c/dw9807-vcm.c
5791
5792 DOUBLETALK DRIVER
5793 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5794 L:      blinux-list@redhat.com
5795 S:      Maintained
5796 F:      drivers/char/dtlk.c
5797 F:      include/linux/dtlk.h
5798
5799 DPAA2 DATAPATH I/O (DPIO) DRIVER
5800 M:      Roy Pledge <Roy.Pledge@nxp.com>
5801 L:      linux-kernel@vger.kernel.org
5802 S:      Maintained
5803 F:      drivers/soc/fsl/dpio
5804
5805 DPAA2 ETHERNET DRIVER
5806 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5807 L:      netdev@vger.kernel.org
5808 S:      Maintained
5809 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5810 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5811 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5812 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5813 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5814 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5815 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5816 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5817 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5818
5819 DPAA2 ETHERNET SWITCH DRIVER
5820 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5821 L:      netdev@vger.kernel.org
5822 S:      Maintained
5823 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5824 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5825 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5826
5827 DPT_I2O SCSI RAID DRIVER
5828 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5829 L:      linux-scsi@vger.kernel.org
5830 S:      Maintained
5831 W:      http://www.adaptec.com/
5832 F:      drivers/scsi/dpt*
5833 F:      drivers/scsi/dpt/
5834
5835 DRBD DRIVER
5836 M:      Philipp Reisner <philipp.reisner@linbit.com>
5837 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5838 L:      drbd-dev@lists.linbit.com
5839 S:      Supported
5840 W:      http://www.drbd.org
5841 T:      git git://git.linbit.com/linux-drbd.git
5842 T:      git git://git.linbit.com/drbd-8.4.git
5843 F:      Documentation/admin-guide/blockdev/
5844 F:      drivers/block/drbd/
5845 F:      lib/lru_cache.c
5846
5847 DRIVER COMPONENT FRAMEWORK
5848 L:      dri-devel@lists.freedesktop.org
5849 F:      drivers/base/component.c
5850 F:      include/linux/component.h
5851
5852 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5853 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5854 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5855 S:      Supported
5856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5857 F:      Documentation/core-api/kobject.rst
5858 F:      drivers/base/
5859 F:      fs/debugfs/
5860 F:      fs/sysfs/
5861 F:      include/linux/debugfs.h
5862 F:      include/linux/kobj*
5863 F:      lib/kobj*
5864
5865 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5866 M:      Nishanth Menon <nm@ti.com>
5867 L:      linux-pm@vger.kernel.org
5868 S:      Maintained
5869 F:      drivers/soc/ti/smartreflex.c
5870 F:      include/linux/power/smartreflex.h
5871
5872 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5873 M:      Maxime Ripard <mripard@kernel.org>
5874 M:      Chen-Yu Tsai <wens@csie.org>
5875 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5876 L:      dri-devel@lists.freedesktop.org
5877 S:      Supported
5878 T:      git git://anongit.freedesktop.org/drm/drm-misc
5879 F:      drivers/gpu/drm/sun4i/sun8i*
5880
5881 DRM DRIVER FOR ARM PL111 CLCD
5882 M:      Emma Anholt <emma@anholt.net>
5883 S:      Supported
5884 T:      git git://anongit.freedesktop.org/drm/drm-misc
5885 F:      drivers/gpu/drm/pl111/
5886
5887 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5888 M:      Linus Walleij <linus.walleij@linaro.org>
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5892 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5893
5894 DRM DRIVER FOR ASPEED BMC GFX
5895 M:      Joel Stanley <joel@jms.id.au>
5896 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5897 S:      Supported
5898 T:      git git://anongit.freedesktop.org/drm/drm-misc
5899 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5900 F:      drivers/gpu/drm/aspeed/
5901
5902 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5903 M:      Dave Airlie <airlied@redhat.com>
5904 R:      Thomas Zimmermann <tzimmermann@suse.de>
5905 L:      dri-devel@lists.freedesktop.org
5906 S:      Supported
5907 T:      git git://anongit.freedesktop.org/drm/drm-misc
5908 F:      drivers/gpu/drm/ast/
5909
5910 DRM DRIVER FOR BOCHS VIRTUAL GPU
5911 M:      Gerd Hoffmann <kraxel@redhat.com>
5912 L:      virtualization@lists.linux-foundation.org
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      drivers/gpu/drm/tiny/bochs.c
5916
5917 DRM DRIVER FOR BOE HIMAX8279D PANELS
5918 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5921 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5922
5923 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5924 M:      Jagan Teki <jagan@amarulasolutions.com>
5925 S:      Maintained
5926 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5927 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5928
5929 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5930 M:      Linus Walleij <linus.walleij@linaro.org>
5931 S:      Maintained
5932 T:      git git://anongit.freedesktop.org/drm/drm-misc
5933 F:      drivers/gpu/drm/tve200/
5934
5935 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5936 M:      Icenowy Zheng <icenowy@aosc.io>
5937 S:      Maintained
5938 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5939 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5940
5941 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5942 M:      Jagan Teki <jagan@amarulasolutions.com>
5943 S:      Maintained
5944 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5945 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5946
5947 DRM DRIVER FOR GENERIC USB DISPLAY
5948 M:      Noralf Trønnes <noralf@tronnes.org>
5949 S:      Maintained
5950 W:      https://github.com/notro/gud/wiki
5951 T:      git git://anongit.freedesktop.org/drm/drm-misc
5952 F:      drivers/gpu/drm/gud/
5953 F:      include/drm/gud.h
5954
5955 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5956 M:      Hans de Goede <hdegoede@redhat.com>
5957 S:      Maintained
5958 T:      git git://anongit.freedesktop.org/drm/drm-misc
5959 F:      drivers/gpu/drm/tiny/gm12u320.c
5960
5961 DRM DRIVER FOR HX8357D PANELS
5962 M:      Emma Anholt <emma@anholt.net>
5963 S:      Maintained
5964 T:      git git://anongit.freedesktop.org/drm/drm-misc
5965 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5966 F:      drivers/gpu/drm/tiny/hx8357d.c
5967
5968 DRM DRIVER FOR ILITEK ILI9225 PANELS
5969 M:      David Lechner <david@lechnology.com>
5970 S:      Maintained
5971 T:      git git://anongit.freedesktop.org/drm/drm-misc
5972 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5973 F:      drivers/gpu/drm/tiny/ili9225.c
5974
5975 DRM DRIVER FOR ILITEK ILI9486 PANELS
5976 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5977 S:      Maintained
5978 T:      git git://anongit.freedesktop.org/drm/drm-misc
5979 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5980 F:      drivers/gpu/drm/tiny/ili9486.c
5981
5982 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5983 S:      Orphan / Obsolete
5984 F:      drivers/gpu/drm/i810/
5985 F:      include/uapi/drm/i810_drm.h
5986
5987 DRM DRIVER FOR LVDS PANELS
5988 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5989 L:      dri-devel@lists.freedesktop.org
5990 T:      git git://anongit.freedesktop.org/drm/drm-misc
5991 S:      Maintained
5992 F:      drivers/gpu/drm/panel/panel-lvds.c
5993 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5994
5995 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5996 M:      Guido Günther <agx@sigxcpu.org>
5997 R:      Purism Kernel Team <kernel@puri.sm>
5998 S:      Maintained
5999 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6000 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6001
6002 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6003 S:      Orphan / Obsolete
6004 F:      drivers/gpu/drm/mga/
6005 F:      include/uapi/drm/mga_drm.h
6006
6007 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6008 M:      Dave Airlie <airlied@redhat.com>
6009 R:      Thomas Zimmermann <tzimmermann@suse.de>
6010 L:      dri-devel@lists.freedesktop.org
6011 S:      Supported
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      drivers/gpu/drm/mgag200/
6014
6015 DRM DRIVER FOR MI0283QT
6016 M:      Noralf Trønnes <noralf@tronnes.org>
6017 S:      Maintained
6018 T:      git git://anongit.freedesktop.org/drm/drm-misc
6019 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6020 F:      drivers/gpu/drm/tiny/mi0283qt.c
6021
6022 DRM DRIVER FOR MSM ADRENO GPU
6023 M:      Rob Clark <robdclark@gmail.com>
6024 M:      Sean Paul <sean@poorly.run>
6025 L:      linux-arm-msm@vger.kernel.org
6026 L:      dri-devel@lists.freedesktop.org
6027 L:      freedreno@lists.freedesktop.org
6028 S:      Maintained
6029 T:      git https://gitlab.freedesktop.org/drm/msm.git
6030 F:      Documentation/devicetree/bindings/display/msm/
6031 F:      drivers/gpu/drm/msm/
6032 F:      include/uapi/drm/msm_drm.h
6033
6034 DRM DRIVER FOR NOVATEK NT35510 PANELS
6035 M:      Linus Walleij <linus.walleij@linaro.org>
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6039 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6040
6041 DRM DRIVER FOR NOVATEK NT36672A PANELS
6042 M:      Sumit Semwal <sumit.semwal@linaro.org>
6043 S:      Maintained
6044 T:      git git://anongit.freedesktop.org/drm/drm-misc
6045 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6046 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6047
6048 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6049 M:      Ben Skeggs <bskeggs@redhat.com>
6050 L:      dri-devel@lists.freedesktop.org
6051 L:      nouveau@lists.freedesktop.org
6052 S:      Supported
6053 T:      git git://github.com/skeggsb/linux
6054 F:      drivers/gpu/drm/nouveau/
6055 F:      include/uapi/drm/nouveau_drm.h
6056
6057 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6058 M:      Stefan Mavrodiev <stefan@olimex.com>
6059 S:      Maintained
6060 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6061 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6062
6063 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6064 M:      Noralf Trønnes <noralf@tronnes.org>
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/devicetree/bindings/display/repaper.txt
6068 F:      drivers/gpu/drm/tiny/repaper.c
6069
6070 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6071 M:      Dave Airlie <airlied@redhat.com>
6072 M:      Gerd Hoffmann <kraxel@redhat.com>
6073 L:      virtualization@lists.linux-foundation.org
6074 S:      Obsolete
6075 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      drivers/gpu/drm/tiny/cirrus.c
6078
6079 DRM DRIVER FOR QXL VIRTUAL GPU
6080 M:      Dave Airlie <airlied@redhat.com>
6081 M:      Gerd Hoffmann <kraxel@redhat.com>
6082 L:      virtualization@lists.linux-foundation.org
6083 L:      spice-devel@lists.freedesktop.org
6084 S:      Maintained
6085 T:      git git://anongit.freedesktop.org/drm/drm-misc
6086 F:      drivers/gpu/drm/qxl/
6087 F:      include/uapi/drm/qxl_drm.h
6088
6089 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6090 S:      Orphan / Obsolete
6091 F:      drivers/gpu/drm/r128/
6092 F:      include/uapi/drm/r128_drm.h
6093
6094 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6095 M:      Robert Chiras <robert.chiras@nxp.com>
6096 S:      Maintained
6097 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6098 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6099
6100 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6101 M:      Linus Walleij <linus.walleij@linaro.org>
6102 S:      Maintained
6103 T:      git git://anongit.freedesktop.org/drm/drm-misc
6104 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6105 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6106
6107 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6108 M:      Markuss Broks <markuss.broks@gmail.com>
6109 S:      Maintained
6110 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6111 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6112
6113 DRM DRIVER FOR SITRONIX ST7703 PANELS
6114 M:      Guido Günther <agx@sigxcpu.org>
6115 R:      Purism Kernel Team <kernel@puri.sm>
6116 R:      Ondrej Jirman <megous@megous.com>
6117 S:      Maintained
6118 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6119 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6120
6121 DRM DRIVER FOR SAVAGE VIDEO CARDS
6122 S:      Orphan / Obsolete
6123 F:      drivers/gpu/drm/savage/
6124 F:      include/uapi/drm/savage_drm.h
6125
6126 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6127 M:      Thomas Zimmermann <tzimmermann@suse.de>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Maintained
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/tiny/simpledrm.c
6132
6133 DRM DRIVER FOR SIS VIDEO CARDS
6134 S:      Orphan / Obsolete
6135 F:      drivers/gpu/drm/sis/
6136 F:      include/uapi/drm/sis_drm.h
6137
6138 DRM DRIVER FOR SITRONIX ST7586 PANELS
6139 M:      David Lechner <david@lechnology.com>
6140 S:      Maintained
6141 T:      git git://anongit.freedesktop.org/drm/drm-misc
6142 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6143 F:      drivers/gpu/drm/tiny/st7586.c
6144
6145 DRM DRIVER FOR SITRONIX ST7701 PANELS
6146 M:      Jagan Teki <jagan@amarulasolutions.com>
6147 S:      Maintained
6148 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6149 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6150
6151 DRM DRIVER FOR SITRONIX ST7735R PANELS
6152 M:      David Lechner <david@lechnology.com>
6153 S:      Maintained
6154 T:      git git://anongit.freedesktop.org/drm/drm-misc
6155 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6156 F:      drivers/gpu/drm/tiny/st7735r.c
6157
6158 DRM DRIVER FOR SONY ACX424AKP PANELS
6159 M:      Linus Walleij <linus.walleij@linaro.org>
6160 S:      Maintained
6161 T:      git git://anongit.freedesktop.org/drm/drm-misc
6162 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6163
6164 DRM DRIVER FOR ST-ERICSSON MCDE
6165 M:      Linus Walleij <linus.walleij@linaro.org>
6166 S:      Maintained
6167 T:      git git://anongit.freedesktop.org/drm/drm-misc
6168 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6169 F:      drivers/gpu/drm/mcde/
6170
6171 DRM DRIVER FOR TDFX VIDEO CARDS
6172 S:      Orphan / Obsolete
6173 F:      drivers/gpu/drm/tdfx/
6174
6175 DRM DRIVER FOR TPO TPG110 PANELS
6176 M:      Linus Walleij <linus.walleij@linaro.org>
6177 S:      Maintained
6178 T:      git git://anongit.freedesktop.org/drm/drm-misc
6179 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6180 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6181
6182 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6183 M:      Dave Airlie <airlied@redhat.com>
6184 R:      Sean Paul <sean@poorly.run>
6185 R:      Thomas Zimmermann <tzimmermann@suse.de>
6186 L:      dri-devel@lists.freedesktop.org
6187 S:      Supported
6188 T:      git git://anongit.freedesktop.org/drm/drm-misc
6189 F:      drivers/gpu/drm/udl/
6190
6191 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6192 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6193 M:      Melissa Wen <melissa.srw@gmail.com>
6194 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6195 R:      Daniel Vetter <daniel@ffwll.ch>
6196 L:      dri-devel@lists.freedesktop.org
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      Documentation/gpu/vkms.rst
6200 F:      drivers/gpu/drm/vkms/
6201
6202 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6203 M:      Hans de Goede <hdegoede@redhat.com>
6204 L:      dri-devel@lists.freedesktop.org
6205 S:      Maintained
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      drivers/gpu/drm/vboxvideo/
6208
6209 DRM DRIVER FOR VMWARE VIRTUAL GPU
6210 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6211 M:      Zack Rusin <zackr@vmware.com>
6212 L:      dri-devel@lists.freedesktop.org
6213 S:      Supported
6214 T:      git git://anongit.freedesktop.org/drm/drm-misc
6215 F:      drivers/gpu/drm/vmwgfx/
6216 F:      include/uapi/drm/vmwgfx_drm.h
6217
6218 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6219 M:      Linus Walleij <linus.walleij@linaro.org>
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6223 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6224
6225 DRM DRIVERS
6226 M:      David Airlie <airlied@linux.ie>
6227 M:      Daniel Vetter <daniel@ffwll.ch>
6228 L:      dri-devel@lists.freedesktop.org
6229 S:      Maintained
6230 B:      https://gitlab.freedesktop.org/drm
6231 C:      irc://irc.oftc.net/dri-devel
6232 T:      git git://anongit.freedesktop.org/drm/drm
6233 F:      Documentation/devicetree/bindings/display/
6234 F:      Documentation/devicetree/bindings/gpu/
6235 F:      Documentation/gpu/
6236 F:      drivers/gpu/
6237 F:      include/drm/
6238 F:      include/linux/vga*
6239 F:      include/uapi/drm/
6240
6241 DRM DRIVERS AND MISC GPU PATCHES
6242 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6243 M:      Maxime Ripard <mripard@kernel.org>
6244 M:      Thomas Zimmermann <tzimmermann@suse.de>
6245 S:      Maintained
6246 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      Documentation/gpu/
6249 F:      drivers/gpu/drm/*
6250 F:      drivers/gpu/vga/
6251 F:      include/drm/drm*
6252 F:      include/linux/vga*
6253 F:      include/uapi/drm/drm*
6254
6255 DRM DRIVERS FOR ALLWINNER A10
6256 M:      Maxime Ripard <mripard@kernel.org>
6257 M:      Chen-Yu Tsai <wens@csie.org>
6258 L:      dri-devel@lists.freedesktop.org
6259 S:      Supported
6260 T:      git git://anongit.freedesktop.org/drm/drm-misc
6261 F:      Documentation/devicetree/bindings/display/allwinner*
6262 F:      drivers/gpu/drm/sun4i/
6263
6264 DRM DRIVERS FOR AMLOGIC SOCS
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 L:      dri-devel@lists.freedesktop.org
6267 L:      linux-amlogic@lists.infradead.org
6268 S:      Supported
6269 W:      http://linux-meson.com/
6270 T:      git git://anongit.freedesktop.org/drm/drm-misc
6271 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6272 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6273 F:      Documentation/gpu/meson.rst
6274 F:      drivers/gpu/drm/meson/
6275
6276 DRM DRIVERS FOR ATMEL HLCDC
6277 M:      Sam Ravnborg <sam@ravnborg.org>
6278 M:      Boris Brezillon <bbrezillon@kernel.org>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      Documentation/devicetree/bindings/display/atmel/
6283 F:      drivers/gpu/drm/atmel-hlcdc/
6284
6285 DRM DRIVERS FOR BRIDGE CHIPS
6286 M:      Andrzej Hajda <a.hajda@samsung.com>
6287 M:      Neil Armstrong <narmstrong@baylibre.com>
6288 M:      Robert Foss <robert.foss@linaro.org>
6289 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6290 R:      Jonas Karlman <jonas@kwiboo.se>
6291 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6292 S:      Maintained
6293 T:      git git://anongit.freedesktop.org/drm/drm-misc
6294 F:      drivers/gpu/drm/bridge/
6295
6296 DRM DRIVERS FOR EXYNOS
6297 M:      Inki Dae <inki.dae@samsung.com>
6298 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6299 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6300 M:      Kyungmin Park <kyungmin.park@samsung.com>
6301 L:      dri-devel@lists.freedesktop.org
6302 S:      Supported
6303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6304 F:      Documentation/devicetree/bindings/display/exynos/
6305 F:      drivers/gpu/drm/exynos/
6306 F:      include/uapi/drm/exynos_drm.h
6307
6308 DRM DRIVERS FOR FREESCALE DCU
6309 M:      Stefan Agner <stefan@agner.ch>
6310 M:      Alison Wang <alison.wang@nxp.com>
6311 L:      dri-devel@lists.freedesktop.org
6312 S:      Supported
6313 T:      git git://anongit.freedesktop.org/drm/drm-misc
6314 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6315 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6316 F:      drivers/gpu/drm/fsl-dcu/
6317
6318 DRM DRIVERS FOR FREESCALE IMX
6319 M:      Philipp Zabel <p.zabel@pengutronix.de>
6320 L:      dri-devel@lists.freedesktop.org
6321 S:      Maintained
6322 F:      Documentation/devicetree/bindings/display/imx/
6323 F:      drivers/gpu/drm/imx/
6324 F:      drivers/gpu/ipu-v3/
6325
6326 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6327 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6328 L:      dri-devel@lists.freedesktop.org
6329 S:      Maintained
6330 T:      git git://github.com/patjak/drm-gma500
6331 F:      drivers/gpu/drm/gma500/
6332
6333 DRM DRIVERS FOR HISILICON
6334 M:      Xinliang Liu <xinliang.liu@linaro.org>
6335 M:      Tian Tao  <tiantao6@hisilicon.com>
6336 R:      John Stultz <john.stultz@linaro.org>
6337 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6338 R:      Chen Feng <puck.chen@hisilicon.com>
6339 L:      dri-devel@lists.freedesktop.org
6340 S:      Maintained
6341 T:      git git://anongit.freedesktop.org/drm/drm-misc
6342 F:      Documentation/devicetree/bindings/display/hisilicon/
6343 F:      drivers/gpu/drm/hisilicon/
6344
6345 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6346 M:      Deepak Rawat <drawat.floss@gmail.com>
6347 L:      linux-hyperv@vger.kernel.org
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Maintained
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/hyperv
6352
6353 DRM DRIVERS FOR LIMA
6354 M:      Qiang Yu <yuq825@gmail.com>
6355 L:      dri-devel@lists.freedesktop.org
6356 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      drivers/gpu/drm/lima/
6360 F:      include/uapi/drm/lima_drm.h
6361
6362 DRM DRIVERS FOR MEDIATEK
6363 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6364 M:      Philipp Zabel <p.zabel@pengutronix.de>
6365 L:      dri-devel@lists.freedesktop.org
6366 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6367 S:      Supported
6368 F:      Documentation/devicetree/bindings/display/mediatek/
6369 F:      drivers/gpu/drm/mediatek/
6370 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6371 F:      drivers/phy/mediatek/phy-mtk-mipi*
6372
6373 DRM DRIVERS FOR NVIDIA TEGRA
6374 M:      Thierry Reding <thierry.reding@gmail.com>
6375 L:      dri-devel@lists.freedesktop.org
6376 L:      linux-tegra@vger.kernel.org
6377 S:      Supported
6378 T:      git git://anongit.freedesktop.org/tegra/linux.git
6379 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6380 F:      Documentation/devicetree/bindings/gpu/host1x/
6381 F:      drivers/gpu/drm/tegra/
6382 F:      drivers/gpu/host1x/
6383 F:      include/linux/host1x.h
6384 F:      include/uapi/drm/tegra_drm.h
6385
6386 DRM DRIVERS FOR RENESAS
6387 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6388 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6389 L:      dri-devel@lists.freedesktop.org
6390 L:      linux-renesas-soc@vger.kernel.org
6391 S:      Supported
6392 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6393 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6394 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6395 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6396 F:      drivers/gpu/drm/rcar-du/
6397 F:      drivers/gpu/drm/shmobile/
6398 F:      include/linux/platform_data/shmob_drm.h
6399
6400 DRM DRIVERS FOR ROCKCHIP
6401 M:      Sandy Huang <hjc@rock-chips.com>
6402 M:      Heiko Stübner <heiko@sntech.de>
6403 L:      dri-devel@lists.freedesktop.org
6404 S:      Maintained
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/display/rockchip/
6407 F:      drivers/gpu/drm/rockchip/
6408
6409 DRM DRIVERS FOR STI
6410 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6411 L:      dri-devel@lists.freedesktop.org
6412 S:      Maintained
6413 T:      git git://anongit.freedesktop.org/drm/drm-misc
6414 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6415 F:      drivers/gpu/drm/sti
6416
6417 DRM DRIVERS FOR STM
6418 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6419 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6420 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6421 L:      dri-devel@lists.freedesktop.org
6422 S:      Maintained
6423 T:      git git://anongit.freedesktop.org/drm/drm-misc
6424 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6425 F:      drivers/gpu/drm/stm
6426
6427 DRM DRIVERS FOR TI KEYSTONE
6428 M:      Jyri Sarha <jyri.sarha@iki.fi>
6429 M:      Tomi Valkeinen <tomba@kernel.org>
6430 L:      dri-devel@lists.freedesktop.org
6431 S:      Maintained
6432 T:      git git://anongit.freedesktop.org/drm/drm-misc
6433 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6434 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6435 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6436 F:      drivers/gpu/drm/tidss/
6437
6438 DRM DRIVERS FOR TI LCDC
6439 M:      Jyri Sarha <jyri.sarha@iki.fi>
6440 R:      Tomi Valkeinen <tomba@kernel.org>
6441 L:      dri-devel@lists.freedesktop.org
6442 S:      Maintained
6443 F:      Documentation/devicetree/bindings/display/tilcdc/
6444 F:      drivers/gpu/drm/tilcdc/
6445
6446 DRM DRIVERS FOR TI OMAP
6447 M:      Tomi Valkeinen <tomba@kernel.org>
6448 L:      dri-devel@lists.freedesktop.org
6449 S:      Maintained
6450 F:      Documentation/devicetree/bindings/display/ti/
6451 F:      drivers/gpu/drm/omapdrm/
6452
6453 DRM DRIVERS FOR V3D
6454 M:      Emma Anholt <emma@anholt.net>
6455 S:      Supported
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6458 F:      drivers/gpu/drm/v3d/
6459 F:      include/uapi/drm/v3d_drm.h
6460
6461 DRM DRIVERS FOR VC4
6462 M:      Emma Anholt <emma@anholt.net>
6463 M:      Maxime Ripard <mripard@kernel.org>
6464 S:      Supported
6465 T:      git git://github.com/anholt/linux
6466 T:      git git://anongit.freedesktop.org/drm/drm-misc
6467 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6468 F:      drivers/gpu/drm/vc4/
6469 F:      include/uapi/drm/vc4_drm.h
6470
6471 DRM DRIVERS FOR VIVANTE GPU IP
6472 M:      Lucas Stach <l.stach@pengutronix.de>
6473 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6474 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6475 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6476 L:      dri-devel@lists.freedesktop.org
6477 S:      Maintained
6478 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6479 F:      drivers/gpu/drm/etnaviv/
6480 F:      include/uapi/drm/etnaviv_drm.h
6481
6482 DRM DRIVERS FOR XEN
6483 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6484 L:      dri-devel@lists.freedesktop.org
6485 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6486 S:      Supported
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/gpu/xen-front.rst
6489 F:      drivers/gpu/drm/xen/
6490
6491 DRM DRIVERS FOR XILINX
6492 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6493 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6494 L:      dri-devel@lists.freedesktop.org
6495 S:      Maintained
6496 T:      git git://anongit.freedesktop.org/drm/drm-misc
6497 F:      Documentation/devicetree/bindings/display/xlnx/
6498 F:      drivers/gpu/drm/xlnx/
6499
6500 DRM PANEL DRIVERS
6501 M:      Thierry Reding <thierry.reding@gmail.com>
6502 R:      Sam Ravnborg <sam@ravnborg.org>
6503 L:      dri-devel@lists.freedesktop.org
6504 S:      Maintained
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 F:      Documentation/devicetree/bindings/display/panel/
6507 F:      drivers/gpu/drm/drm_panel.c
6508 F:      drivers/gpu/drm/panel/
6509 F:      include/drm/drm_panel.h
6510
6511 DRM TTM SUBSYSTEM
6512 M:      Christian Koenig <christian.koenig@amd.com>
6513 M:      Huang Rui <ray.huang@amd.com>
6514 L:      dri-devel@lists.freedesktop.org
6515 S:      Maintained
6516 T:      git git://anongit.freedesktop.org/drm/drm-misc
6517 F:      drivers/gpu/drm/ttm/
6518 F:      include/drm/ttm/
6519
6520 DRM GPU SCHEDULER
6521 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6522 L:      dri-devel@lists.freedesktop.org
6523 S:      Maintained
6524 T:      git git://anongit.freedesktop.org/drm/drm-misc
6525 F:      drivers/gpu/drm/scheduler/
6526 F:      include/drm/gpu_scheduler.h
6527
6528 DSBR100 USB FM RADIO DRIVER
6529 M:      Alexey Klimov <klimov.linux@gmail.com>
6530 L:      linux-media@vger.kernel.org
6531 S:      Maintained
6532 T:      git git://linuxtv.org/media_tree.git
6533 F:      drivers/media/radio/dsbr100.c
6534
6535 DT3155 MEDIA DRIVER
6536 M:      Hans Verkuil <hverkuil@xs4all.nl>
6537 L:      linux-media@vger.kernel.org
6538 S:      Odd Fixes
6539 W:      https://linuxtv.org
6540 T:      git git://linuxtv.org/media_tree.git
6541 F:      drivers/media/pci/dt3155/
6542
6543 DVB_USB_AF9015 MEDIA DRIVER
6544 M:      Antti Palosaari <crope@iki.fi>
6545 L:      linux-media@vger.kernel.org
6546 S:      Maintained
6547 W:      https://linuxtv.org
6548 W:      http://palosaari.fi/linux/
6549 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6550 T:      git git://linuxtv.org/anttip/media_tree.git
6551 F:      drivers/media/usb/dvb-usb-v2/af9015*
6552
6553 DVB_USB_AF9035 MEDIA DRIVER
6554 M:      Antti Palosaari <crope@iki.fi>
6555 L:      linux-media@vger.kernel.org
6556 S:      Maintained
6557 W:      https://linuxtv.org
6558 W:      http://palosaari.fi/linux/
6559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6560 T:      git git://linuxtv.org/anttip/media_tree.git
6561 F:      drivers/media/usb/dvb-usb-v2/af9035*
6562
6563 DVB_USB_ANYSEE MEDIA DRIVER
6564 M:      Antti Palosaari <crope@iki.fi>
6565 L:      linux-media@vger.kernel.org
6566 S:      Maintained
6567 W:      https://linuxtv.org
6568 W:      http://palosaari.fi/linux/
6569 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6570 T:      git git://linuxtv.org/anttip/media_tree.git
6571 F:      drivers/media/usb/dvb-usb-v2/anysee*
6572
6573 DVB_USB_AU6610 MEDIA DRIVER
6574 M:      Antti Palosaari <crope@iki.fi>
6575 L:      linux-media@vger.kernel.org
6576 S:      Maintained
6577 W:      https://linuxtv.org
6578 W:      http://palosaari.fi/linux/
6579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6580 T:      git git://linuxtv.org/anttip/media_tree.git
6581 F:      drivers/media/usb/dvb-usb-v2/au6610*
6582
6583 DVB_USB_CE6230 MEDIA DRIVER
6584 M:      Antti Palosaari <crope@iki.fi>
6585 L:      linux-media@vger.kernel.org
6586 S:      Maintained
6587 W:      https://linuxtv.org
6588 W:      http://palosaari.fi/linux/
6589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6590 T:      git git://linuxtv.org/anttip/media_tree.git
6591 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6592
6593 DVB_USB_CXUSB MEDIA DRIVER
6594 M:      Michael Krufky <mkrufky@linuxtv.org>
6595 L:      linux-media@vger.kernel.org
6596 S:      Maintained
6597 W:      https://linuxtv.org
6598 W:      http://github.com/mkrufky
6599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6600 T:      git git://linuxtv.org/media_tree.git
6601 F:      drivers/media/usb/dvb-usb/cxusb*
6602
6603 DVB_USB_EC168 MEDIA DRIVER
6604 M:      Antti Palosaari <crope@iki.fi>
6605 L:      linux-media@vger.kernel.org
6606 S:      Maintained
6607 W:      https://linuxtv.org
6608 W:      http://palosaari.fi/linux/
6609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6610 T:      git git://linuxtv.org/anttip/media_tree.git
6611 F:      drivers/media/usb/dvb-usb-v2/ec168*
6612
6613 DVB_USB_GL861 MEDIA DRIVER
6614 M:      Antti Palosaari <crope@iki.fi>
6615 L:      linux-media@vger.kernel.org
6616 S:      Maintained
6617 W:      https://linuxtv.org
6618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6619 T:      git git://linuxtv.org/anttip/media_tree.git
6620 F:      drivers/media/usb/dvb-usb-v2/gl861*
6621
6622 DVB_USB_MXL111SF MEDIA DRIVER
6623 M:      Michael Krufky <mkrufky@linuxtv.org>
6624 L:      linux-media@vger.kernel.org
6625 S:      Maintained
6626 W:      https://linuxtv.org
6627 W:      http://github.com/mkrufky
6628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6629 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6630 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6631
6632 DVB_USB_RTL28XXU MEDIA DRIVER
6633 M:      Antti Palosaari <crope@iki.fi>
6634 L:      linux-media@vger.kernel.org
6635 S:      Maintained
6636 W:      https://linuxtv.org
6637 W:      http://palosaari.fi/linux/
6638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6639 T:      git git://linuxtv.org/anttip/media_tree.git
6640 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6641
6642 DVB_USB_V2 MEDIA DRIVER
6643 M:      Antti Palosaari <crope@iki.fi>
6644 L:      linux-media@vger.kernel.org
6645 S:      Maintained
6646 W:      https://linuxtv.org
6647 W:      http://palosaari.fi/linux/
6648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6649 T:      git git://linuxtv.org/anttip/media_tree.git
6650 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6651 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6652
6653 DYNAMIC DEBUG
6654 M:      Jason Baron <jbaron@akamai.com>
6655 S:      Maintained
6656 F:      include/linux/dynamic_debug.h
6657 F:      lib/dynamic_debug.c
6658
6659 DYNAMIC INTERRUPT MODERATION
6660 M:      Tal Gilboa <talgi@nvidia.com>
6661 S:      Maintained
6662 F:      Documentation/networking/net_dim.rst
6663 F:      include/linux/dim.h
6664 F:      lib/dim/
6665
6666 DZ DECSTATION DZ11 SERIAL DRIVER
6667 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6668 S:      Maintained
6669 F:      drivers/tty/serial/dz.*
6670
6671 E3X0 POWER BUTTON DRIVER
6672 M:      Moritz Fischer <moritz.fischer@ettus.com>
6673 L:      usrp-users@lists.ettus.com
6674 S:      Supported
6675 W:      http://www.ettus.com
6676 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6677 F:      drivers/input/misc/e3x0-button.c
6678
6679 E4000 MEDIA DRIVER
6680 M:      Antti Palosaari <crope@iki.fi>
6681 L:      linux-media@vger.kernel.org
6682 S:      Maintained
6683 W:      https://linuxtv.org
6684 W:      http://palosaari.fi/linux/
6685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6686 T:      git git://linuxtv.org/anttip/media_tree.git
6687 F:      drivers/media/tuners/e4000*
6688
6689 EARTH_PT1 MEDIA DRIVER
6690 M:      Akihiro Tsukada <tskd08@gmail.com>
6691 L:      linux-media@vger.kernel.org
6692 S:      Odd Fixes
6693 F:      drivers/media/pci/pt1/
6694
6695 EARTH_PT3 MEDIA DRIVER
6696 M:      Akihiro Tsukada <tskd08@gmail.com>
6697 L:      linux-media@vger.kernel.org
6698 S:      Odd Fixes
6699 F:      drivers/media/pci/pt3/
6700
6701 EC100 MEDIA DRIVER
6702 M:      Antti Palosaari <crope@iki.fi>
6703 L:      linux-media@vger.kernel.org
6704 S:      Maintained
6705 W:      https://linuxtv.org
6706 W:      http://palosaari.fi/linux/
6707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6708 T:      git git://linuxtv.org/anttip/media_tree.git
6709 F:      drivers/media/dvb-frontends/ec100*
6710
6711 ECRYPT FILE SYSTEM
6712 M:      Tyler Hicks <code@tyhicks.com>
6713 L:      ecryptfs@vger.kernel.org
6714 S:      Odd Fixes
6715 W:      http://ecryptfs.org
6716 W:      https://launchpad.net/ecryptfs
6717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6718 F:      Documentation/filesystems/ecryptfs.rst
6719 F:      fs/ecryptfs/
6720
6721 EDAC-AMD64
6722 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6723 L:      linux-edac@vger.kernel.org
6724 S:      Supported
6725 F:      drivers/edac/amd64_edac*
6726 F:      drivers/edac/mce_amd*
6727
6728 EDAC-ARMADA
6729 M:      Jan Luebbe <jlu@pengutronix.de>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Maintained
6732 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6733 F:      drivers/edac/armada_xp_*
6734
6735 EDAC-AST2500
6736 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6737 S:      Supported
6738 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6739 F:      drivers/edac/aspeed_edac.c
6740
6741 EDAC-BLUEFIELD
6742 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6743 S:      Supported
6744 F:      drivers/edac/bluefield_edac.c
6745
6746 EDAC-CALXEDA
6747 M:      Andre Przywara <andre.przywara@arm.com>
6748 L:      linux-edac@vger.kernel.org
6749 S:      Maintained
6750 F:      drivers/edac/highbank*
6751
6752 EDAC-CAVIUM OCTEON
6753 M:      Ralf Baechle <ralf@linux-mips.org>
6754 L:      linux-edac@vger.kernel.org
6755 L:      linux-mips@vger.kernel.org
6756 S:      Supported
6757 F:      drivers/edac/octeon_edac*
6758
6759 EDAC-CAVIUM THUNDERX
6760 M:      Robert Richter <rric@kernel.org>
6761 L:      linux-edac@vger.kernel.org
6762 S:      Odd Fixes
6763 F:      drivers/edac/thunderx_edac*
6764
6765 EDAC-CORE
6766 M:      Borislav Petkov <bp@alien8.de>
6767 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6768 M:      Tony Luck <tony.luck@intel.com>
6769 R:      James Morse <james.morse@arm.com>
6770 R:      Robert Richter <rric@kernel.org>
6771 L:      linux-edac@vger.kernel.org
6772 S:      Supported
6773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6774 F:      Documentation/admin-guide/ras.rst
6775 F:      Documentation/driver-api/edac.rst
6776 F:      drivers/edac/
6777 F:      include/linux/edac.h
6778
6779 EDAC-DMC520
6780 M:      Lei Wang <lewan@microsoft.com>
6781 L:      linux-edac@vger.kernel.org
6782 S:      Supported
6783 F:      drivers/edac/dmc520_edac.c
6784
6785 EDAC-E752X
6786 M:      Mark Gross <markgross@kernel.org>
6787 L:      linux-edac@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/edac/e752x_edac.c
6790
6791 EDAC-E7XXX
6792 L:      linux-edac@vger.kernel.org
6793 S:      Maintained
6794 F:      drivers/edac/e7xxx_edac.c
6795
6796 EDAC-FSL_DDR
6797 M:      York Sun <york.sun@nxp.com>
6798 L:      linux-edac@vger.kernel.org
6799 S:      Maintained
6800 F:      drivers/edac/fsl_ddr_edac.*
6801
6802 EDAC-GHES
6803 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6804 L:      linux-edac@vger.kernel.org
6805 S:      Maintained
6806 F:      drivers/edac/ghes_edac.c
6807
6808 EDAC-I10NM
6809 M:      Tony Luck <tony.luck@intel.com>
6810 L:      linux-edac@vger.kernel.org
6811 S:      Maintained
6812 F:      drivers/edac/i10nm_base.c
6813
6814 EDAC-I3000
6815 L:      linux-edac@vger.kernel.org
6816 S:      Orphan
6817 F:      drivers/edac/i3000_edac.c
6818
6819 EDAC-I5000
6820 L:      linux-edac@vger.kernel.org
6821 S:      Maintained
6822 F:      drivers/edac/i5000_edac.c
6823
6824 EDAC-I5400
6825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6826 L:      linux-edac@vger.kernel.org
6827 S:      Maintained
6828 F:      drivers/edac/i5400_edac.c
6829
6830 EDAC-I7300
6831 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/i7300_edac.c
6835
6836 EDAC-I7CORE
6837 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/i7core_edac.c
6841
6842 EDAC-I82443BXGX
6843 M:      Tim Small <tim@buttersideup.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/i82443bxgx_edac.c
6847
6848 EDAC-I82975X
6849 M:      "Arvind R." <arvino55@gmail.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/i82975x_edac.c
6853
6854 EDAC-IE31200
6855 M:      Jason Baron <jbaron@akamai.com>
6856 L:      linux-edac@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/edac/ie31200_edac.c
6859
6860 EDAC-IGEN6
6861 M:      Tony Luck <tony.luck@intel.com>
6862 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6863 L:      linux-edac@vger.kernel.org
6864 S:      Maintained
6865 F:      drivers/edac/igen6_edac.c
6866
6867 EDAC-MPC85XX
6868 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6869 L:      linux-edac@vger.kernel.org
6870 S:      Maintained
6871 F:      drivers/edac/mpc85xx_edac.[ch]
6872
6873 EDAC-PASEMI
6874 M:      Egor Martovetsky <egor@pasemi.com>
6875 L:      linux-edac@vger.kernel.org
6876 S:      Maintained
6877 F:      drivers/edac/pasemi_edac.c
6878
6879 EDAC-PND2
6880 M:      Tony Luck <tony.luck@intel.com>
6881 L:      linux-edac@vger.kernel.org
6882 S:      Maintained
6883 F:      drivers/edac/pnd2_edac.[ch]
6884
6885 EDAC-QCOM
6886 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6887 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6888 L:      linux-arm-msm@vger.kernel.org
6889 L:      linux-edac@vger.kernel.org
6890 S:      Maintained
6891 F:      drivers/edac/qcom_edac.c
6892
6893 EDAC-R82600
6894 M:      Tim Small <tim@buttersideup.com>
6895 L:      linux-edac@vger.kernel.org
6896 S:      Maintained
6897 F:      drivers/edac/r82600_edac.c
6898
6899 EDAC-SBRIDGE
6900 M:      Tony Luck <tony.luck@intel.com>
6901 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6902 L:      linux-edac@vger.kernel.org
6903 S:      Maintained
6904 F:      drivers/edac/sb_edac.c
6905
6906 EDAC-SIFIVE
6907 M:      Yash Shah <yash.shah@sifive.com>
6908 L:      linux-edac@vger.kernel.org
6909 S:      Supported
6910 F:      drivers/edac/sifive_edac.c
6911
6912 EDAC-SKYLAKE
6913 M:      Tony Luck <tony.luck@intel.com>
6914 L:      linux-edac@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/edac/skx_*.[ch]
6917
6918 EDAC-TI
6919 M:      Tero Kristo <kristo@kernel.org>
6920 L:      linux-edac@vger.kernel.org
6921 S:      Odd Fixes
6922 F:      drivers/edac/ti_edac.c
6923
6924 EDIROL UA-101/UA-1000 DRIVER
6925 M:      Clemens Ladisch <clemens@ladisch.de>
6926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6927 S:      Maintained
6928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6929 F:      sound/usb/misc/ua101.c
6930
6931 EFI TEST DRIVER
6932 M:      Ivan Hu <ivan.hu@canonical.com>
6933 M:      Ard Biesheuvel <ardb@kernel.org>
6934 L:      linux-efi@vger.kernel.org
6935 S:      Maintained
6936 F:      drivers/firmware/efi/test/
6937
6938 EFI VARIABLE FILESYSTEM
6939 M:      Matthew Garrett <matthew.garrett@nebula.com>
6940 M:      Jeremy Kerr <jk@ozlabs.org>
6941 M:      Ard Biesheuvel <ardb@kernel.org>
6942 L:      linux-efi@vger.kernel.org
6943 S:      Maintained
6944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6945 F:      fs/efivarfs/
6946
6947 EFIFB FRAMEBUFFER DRIVER
6948 M:      Peter Jones <pjones@redhat.com>
6949 L:      linux-fbdev@vger.kernel.org
6950 S:      Maintained
6951 F:      drivers/video/fbdev/efifb.c
6952
6953 EFS FILESYSTEM
6954 S:      Orphan
6955 W:      http://aeschi.ch.eu.org/efs/
6956 F:      fs/efs/
6957
6958 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6959 M:      Douglas Miller <dougmill@linux.ibm.com>
6960 L:      netdev@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/net/ethernet/ibm/ehea/
6963
6964 EM28XX VIDEO4LINUX DRIVER
6965 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6966 L:      linux-media@vger.kernel.org
6967 S:      Maintained
6968 W:      https://linuxtv.org
6969 T:      git git://linuxtv.org/media_tree.git
6970 F:      Documentation/admin-guide/media/em28xx*
6971 F:      drivers/media/usb/em28xx/
6972
6973 EMBEDDED LINUX
6974 M:      Matt Mackall <mpm@selenic.com>
6975 M:      David Woodhouse <dwmw2@infradead.org>
6976 L:      linux-embedded@vger.kernel.org
6977 S:      Maintained
6978
6979 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6980 M:      Adrian Hunter <adrian.hunter@intel.com>
6981 M:      Ritesh Harjani <riteshh@codeaurora.org>
6982 M:      Asutosh Das <asutoshd@codeaurora.org>
6983 L:      linux-mmc@vger.kernel.org
6984 S:      Maintained
6985 F:      drivers/mmc/host/cqhci*
6986
6987 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6988 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6989 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6990 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6991 L:      linux-scsi@vger.kernel.org
6992 S:      Supported
6993 W:      http://www.broadcom.com
6994 F:      drivers/scsi/be2iscsi/
6995
6996 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6997 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6998 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6999 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7000 L:      netdev@vger.kernel.org
7001 S:      Supported
7002 W:      http://www.emulex.com
7003 F:      drivers/net/ethernet/emulex/benet/
7004
7005 EMULEX ONECONNECT ROCE DRIVER
7006 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7007 L:      linux-rdma@vger.kernel.org
7008 S:      Odd Fixes
7009 W:      http://www.broadcom.com
7010 F:      drivers/infiniband/hw/ocrdma/
7011 F:      include/uapi/rdma/ocrdma-abi.h
7012
7013 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7014 M:      James Smart <james.smart@broadcom.com>
7015 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7016 L:      linux-scsi@vger.kernel.org
7017 S:      Supported
7018 W:      http://www.broadcom.com
7019 F:      drivers/scsi/lpfc/
7020
7021 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7022 M:      James Smart <james.smart@broadcom.com>
7023 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7024 L:      linux-scsi@vger.kernel.org
7025 L:      target-devel@vger.kernel.org
7026 S:      Supported
7027 W:      http://www.broadcom.com
7028 F:      drivers/scsi/elx/
7029
7030 ENE CB710 FLASH CARD READER DRIVER
7031 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7032 S:      Maintained
7033 F:      drivers/misc/cb710/
7034 F:      drivers/mmc/host/cb710-mmc.*
7035 F:      include/linux/cb710.h
7036
7037 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7038 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7039 S:      Maintained
7040 F:      drivers/media/rc/ene_ir.*
7041
7042 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7043 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7044 L:      linuxppc-dev@lists.ozlabs.org
7045 S:      Maintained
7046 F:      drivers/tty/ehv_bytechan.c
7047
7048 EPSON S1D13XXX FRAMEBUFFER DRIVER
7049 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7050 S:      Maintained
7051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7052 F:      drivers/video/fbdev/s1d13xxxfb.c
7053 F:      include/video/s1d13xxxfb.h
7054
7055 EROFS FILE SYSTEM
7056 M:      Gao Xiang <xiang@kernel.org>
7057 M:      Chao Yu <chao@kernel.org>
7058 L:      linux-erofs@lists.ozlabs.org
7059 S:      Maintained
7060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7061 F:      Documentation/filesystems/erofs.rst
7062 F:      fs/erofs/
7063 F:      include/trace/events/erofs.h
7064
7065 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7066 M:      Jeff Layton <jlayton@kernel.org>
7067 S:      Maintained
7068 F:      include/linux/errseq.h
7069 F:      lib/errseq.c
7070
7071 ET131X NETWORK DRIVER
7072 M:      Mark Einon <mark.einon@gmail.com>
7073 S:      Odd Fixes
7074 F:      drivers/net/ethernet/agere/
7075
7076 ETAS ES58X CAN/USB DRIVER
7077 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7078 L:      linux-can@vger.kernel.org
7079 S:      Maintained
7080 F:      drivers/net/can/usb/etas_es58x/
7081
7082 ETHERNET BRIDGE
7083 M:      Roopa Prabhu <roopa@nvidia.com>
7084 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7085 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7086 L:      netdev@vger.kernel.org
7087 S:      Maintained
7088 W:      http://www.linuxfoundation.org/en/Net:Bridge
7089 F:      include/linux/netfilter_bridge/
7090 F:      net/bridge/
7091
7092 ETHERNET PHY LIBRARY
7093 M:      Andrew Lunn <andrew@lunn.ch>
7094 M:      Heiner Kallweit <hkallweit1@gmail.com>
7095 R:      Russell King <linux@armlinux.org.uk>
7096 L:      netdev@vger.kernel.org
7097 S:      Maintained
7098 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7099 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7100 F:      Documentation/devicetree/bindings/net/mdio*
7101 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7102 F:      Documentation/networking/phy.rst
7103 F:      drivers/net/mdio/
7104 F:      drivers/net/mdio/acpi_mdio.c
7105 F:      drivers/net/mdio/fwnode_mdio.c
7106 F:      drivers/net/mdio/of_mdio.c
7107 F:      drivers/net/pcs/
7108 F:      drivers/net/phy/
7109 F:      include/dt-bindings/net/qca-ar803x.h
7110 F:      include/linux/*mdio*.h
7111 F:      include/linux/mdio/*.h
7112 F:      include/linux/of_net.h
7113 F:      include/linux/phy.h
7114 F:      include/linux/phy_fixed.h
7115 F:      include/linux/platform_data/mdio-bcm-unimac.h
7116 F:      include/linux/platform_data/mdio-gpio.h
7117 F:      include/trace/events/mdio.h
7118 F:      include/uapi/linux/mdio.h
7119 F:      include/uapi/linux/mii.h
7120 F:      net/core/of_net.c
7121
7122 EXFAT FILE SYSTEM
7123 M:      Namjae Jeon <linkinjeon@kernel.org>
7124 M:      Sungjong Seo <sj1557.seo@samsung.com>
7125 L:      linux-fsdevel@vger.kernel.org
7126 S:      Maintained
7127 F:      fs/exfat/
7128
7129 EXT2 FILE SYSTEM
7130 M:      Jan Kara <jack@suse.com>
7131 L:      linux-ext4@vger.kernel.org
7132 S:      Maintained
7133 F:      Documentation/filesystems/ext2.rst
7134 F:      fs/ext2/
7135 F:      include/linux/ext2*
7136
7137 EXT4 FILE SYSTEM
7138 M:      "Theodore Ts'o" <tytso@mit.edu>
7139 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7140 L:      linux-ext4@vger.kernel.org
7141 S:      Maintained
7142 W:      http://ext4.wiki.kernel.org
7143 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7145 F:      Documentation/filesystems/ext4/
7146 F:      fs/ext4/
7147 F:      include/trace/events/ext4.h
7148
7149 Extended Verification Module (EVM)
7150 M:      Mimi Zohar <zohar@linux.ibm.com>
7151 L:      linux-integrity@vger.kernel.org
7152 S:      Supported
7153 F:      security/integrity/evm/
7154
7155 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7156 M:      Ard Biesheuvel <ardb@kernel.org>
7157 L:      linux-efi@vger.kernel.org
7158 S:      Maintained
7159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7160 F:      Documentation/admin-guide/efi-stub.rst
7161 F:      arch/*/include/asm/efi.h
7162 F:      arch/*/kernel/efi.c
7163 F:      arch/arm/boot/compressed/efi-header.S
7164 F:      arch/arm64/kernel/efi-entry.S
7165 F:      arch/x86/platform/efi/
7166 F:      drivers/firmware/efi/
7167 F:      include/linux/efi*.h
7168
7169 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7170 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7171 M:      Chanwoo Choi <cw00.choi@samsung.com>
7172 L:      linux-kernel@vger.kernel.org
7173 S:      Maintained
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7175 F:      Documentation/devicetree/bindings/extcon/
7176 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7177 F:      drivers/extcon/
7178 F:      include/linux/extcon.h
7179 F:      include/linux/extcon/
7180
7181 EXTRA BOOT CONFIG
7182 M:      Masami Hiramatsu <mhiramat@kernel.org>
7183 S:      Maintained
7184 F:      Documentation/admin-guide/bootconfig.rst
7185 F:      fs/proc/bootconfig.c
7186 F:      include/linux/bootconfig.h
7187 F:      lib/bootconfig.c
7188 F:      tools/bootconfig/*
7189 F:      tools/bootconfig/scripts/*
7190
7191 EXYNOS DP DRIVER
7192 M:      Jingoo Han <jingoohan1@gmail.com>
7193 L:      dri-devel@lists.freedesktop.org
7194 S:      Maintained
7195 F:      drivers/gpu/drm/exynos/exynos_dp*
7196
7197 EXYNOS SYSMMU (IOMMU) driver
7198 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7199 L:      iommu@lists.linux-foundation.org
7200 S:      Maintained
7201 F:      drivers/iommu/exynos-iommu.c
7202
7203 F2FS FILE SYSTEM
7204 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7205 M:      Chao Yu <chao@kernel.org>
7206 L:      linux-f2fs-devel@lists.sourceforge.net
7207 S:      Maintained
7208 W:      https://f2fs.wiki.kernel.org/
7209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7210 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7211 F:      Documentation/filesystems/f2fs.rst
7212 F:      fs/f2fs/
7213 F:      include/linux/f2fs_fs.h
7214 F:      include/trace/events/f2fs.h
7215 F:      include/uapi/linux/f2fs.h
7216
7217 F71805F HARDWARE MONITORING DRIVER
7218 M:      Jean Delvare <jdelvare@suse.com>
7219 L:      linux-hwmon@vger.kernel.org
7220 S:      Maintained
7221 F:      Documentation/hwmon/f71805f.rst
7222 F:      drivers/hwmon/f71805f.c
7223
7224 FADDR2LINE
7225 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7226 S:      Maintained
7227 F:      scripts/faddr2line
7228
7229 FAILOVER MODULE
7230 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7231 L:      netdev@vger.kernel.org
7232 S:      Supported
7233 F:      Documentation/networking/failover.rst
7234 F:      include/net/failover.h
7235 F:      net/core/failover.c
7236
7237 FANOTIFY
7238 M:      Jan Kara <jack@suse.cz>
7239 R:      Amir Goldstein <amir73il@gmail.com>
7240 R:      Matthew Bobrowski <repnop@google.com>
7241 L:      linux-fsdevel@vger.kernel.org
7242 S:      Maintained
7243 F:      fs/notify/fanotify/
7244 F:      include/linux/fanotify.h
7245 F:      include/uapi/linux/fanotify.h
7246
7247 FARSYNC SYNCHRONOUS DRIVER
7248 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7249 S:      Supported
7250 W:      http://www.farsite.co.uk/
7251 F:      drivers/net/wan/farsync.*
7252
7253 FAULT INJECTION SUPPORT
7254 M:      Akinobu Mita <akinobu.mita@gmail.com>
7255 S:      Supported
7256 F:      Documentation/fault-injection/
7257 F:      lib/fault-inject.c
7258
7259 FBTFT Framebuffer drivers
7260 L:      dri-devel@lists.freedesktop.org
7261 L:      linux-fbdev@vger.kernel.org
7262 S:      Orphan
7263 F:      drivers/staging/fbtft/
7264
7265 FC0011 TUNER DRIVER
7266 M:      Michael Buesch <m@bues.ch>
7267 L:      linux-media@vger.kernel.org
7268 S:      Maintained
7269 F:      drivers/media/tuners/fc0011.c
7270 F:      drivers/media/tuners/fc0011.h
7271
7272 FC2580 MEDIA DRIVER
7273 M:      Antti Palosaari <crope@iki.fi>
7274 L:      linux-media@vger.kernel.org
7275 S:      Maintained
7276 W:      https://linuxtv.org
7277 W:      http://palosaari.fi/linux/
7278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7279 T:      git git://linuxtv.org/anttip/media_tree.git
7280 F:      drivers/media/tuners/fc2580*
7281
7282 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7283 M:      Hannes Reinecke <hare@suse.de>
7284 L:      linux-scsi@vger.kernel.org
7285 S:      Supported
7286 W:      www.Open-FCoE.org
7287 F:      drivers/scsi/fcoe/
7288 F:      drivers/scsi/libfc/
7289 F:      include/scsi/fc/
7290 F:      include/scsi/libfc.h
7291 F:      include/scsi/libfcoe.h
7292 F:      include/uapi/scsi/fc/
7293
7294 FILE LOCKING (flock() and fcntl()/lockf())
7295 M:      Jeff Layton <jlayton@kernel.org>
7296 M:      "J. Bruce Fields" <bfields@fieldses.org>
7297 L:      linux-fsdevel@vger.kernel.org
7298 S:      Maintained
7299 F:      fs/fcntl.c
7300 F:      fs/locks.c
7301 F:      include/linux/fcntl.h
7302 F:      include/uapi/linux/fcntl.h
7303
7304 FILESYSTEM DIRECT ACCESS (DAX)
7305 M:      Dan Williams <dan.j.williams@intel.com>
7306 R:      Matthew Wilcox <willy@infradead.org>
7307 R:      Jan Kara <jack@suse.cz>
7308 L:      linux-fsdevel@vger.kernel.org
7309 L:      nvdimm@lists.linux.dev
7310 S:      Supported
7311 F:      fs/dax.c
7312 F:      include/linux/dax.h
7313 F:      include/trace/events/fs_dax.h
7314
7315 FILESYSTEMS (VFS and infrastructure)
7316 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7317 L:      linux-fsdevel@vger.kernel.org
7318 S:      Maintained
7319 F:      fs/*
7320 F:      include/linux/fs.h
7321 F:      include/linux/fs_types.h
7322 F:      include/uapi/linux/fs.h
7323 F:      include/uapi/linux/openat2.h
7324 X:      fs/io-wq.c
7325 X:      fs/io-wq.h
7326 X:      fs/io_uring.c
7327
7328 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7329 M:      Riku Voipio <riku.voipio@iki.fi>
7330 L:      linux-hwmon@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/hwmon/f75375s.c
7333 F:      include/linux/f75375s.h
7334
7335 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7336 M:      Clemens Ladisch <clemens@ladisch.de>
7337 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7338 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7339 S:      Maintained
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7341 F:      include/uapi/sound/firewire.h
7342 F:      sound/firewire/
7343
7344 FIREWIRE MEDIA DRIVERS (firedtv)
7345 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7346 L:      linux-media@vger.kernel.org
7347 L:      linux1394-devel@lists.sourceforge.net
7348 S:      Maintained
7349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7350 F:      drivers/media/firewire/
7351
7352 FIREWIRE SBP-2 TARGET
7353 M:      Chris Boot <bootc@bootc.net>
7354 L:      linux-scsi@vger.kernel.org
7355 L:      target-devel@vger.kernel.org
7356 L:      linux1394-devel@lists.sourceforge.net
7357 S:      Maintained
7358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7359 F:      drivers/target/sbp/
7360
7361 FIREWIRE SUBSYSTEM
7362 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7363 L:      linux1394-devel@lists.sourceforge.net
7364 S:      Maintained
7365 W:      http://ieee1394.wiki.kernel.org/
7366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7367 F:      drivers/firewire/
7368 F:      include/linux/firewire.h
7369 F:      include/uapi/linux/firewire*.h
7370 F:      tools/firewire/
7371
7372 FIRMWARE FRAMEWORK FOR ARMV8-A
7373 M:      Sudeep Holla <sudeep.holla@arm.com>
7374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7375 S:      Maintained
7376 F:      drivers/firmware/arm_ffa/
7377 F:      include/linux/arm_ffa.h
7378
7379 FIRMWARE LOADER (request_firmware)
7380 M:      Luis Chamberlain <mcgrof@kernel.org>
7381 L:      linux-kernel@vger.kernel.org
7382 S:      Maintained
7383 F:      Documentation/firmware_class/
7384 F:      drivers/base/firmware_loader/
7385 F:      include/linux/firmware.h
7386
7387 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7388 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7389 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7390 S:      Maintained
7391 F:      drivers/block/rsxx/
7392
7393 FLEXTIMER FTM-QUADDEC DRIVER
7394 M:      Patrick Havelange <patrick.havelange@essensium.com>
7395 L:      linux-iio@vger.kernel.org
7396 S:      Maintained
7397 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7398 F:      drivers/counter/ftm-quaddec.c
7399
7400 FLOPPY DRIVER
7401 M:      Denis Efremov <efremov@linux.com>
7402 L:      linux-block@vger.kernel.org
7403 S:      Odd Fixes
7404 F:      drivers/block/floppy.c
7405
7406 FLYSKY FSIA6B RC RECEIVER
7407 M:      Markus Koch <markus@notsyncing.net>
7408 L:      linux-input@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/input/joystick/fsia6b.c
7411
7412 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7413 M:      Geoffrey D. Bennett <g@b4.vu>
7414 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7415 S:      Maintained
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7417 F:      sound/usb/mixer_scarlett_gen2.c
7418
7419 FORCEDETH GIGABIT ETHERNET DRIVER
7420 M:      Rain River <rain.1986.08.12@gmail.com>
7421 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7422 L:      netdev@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/net/ethernet/nvidia/*
7425
7426 FORTIFY_SOURCE
7427 M:      Kees Cook <keescook@chromium.org>
7428 L:      linux-hardening@vger.kernel.org
7429 S:      Supported
7430 F:      include/linux/fortify-string.h
7431 F:      lib/test_fortify/*
7432 F:      scripts/test_fortify.sh
7433 K:      \b__NO_FORTIFY\b
7434
7435 FPGA DFL DRIVERS
7436 M:      Wu Hao <hao.wu@intel.com>
7437 R:      Tom Rix <trix@redhat.com>
7438 L:      linux-fpga@vger.kernel.org
7439 S:      Maintained
7440 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7441 F:      Documentation/fpga/dfl.rst
7442 F:      drivers/fpga/dfl*
7443 F:      drivers/uio/uio_dfl.c
7444 F:      include/linux/dfl.h
7445 F:      include/uapi/linux/fpga-dfl.h
7446
7447 FPGA MANAGER FRAMEWORK
7448 M:      Moritz Fischer <mdf@kernel.org>
7449 M:      Wu Hao <hao.wu@intel.com>
7450 M:      Xu Yilun <yilun.xu@intel.com>
7451 R:      Tom Rix <trix@redhat.com>
7452 L:      linux-fpga@vger.kernel.org
7453 S:      Maintained
7454 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7456 F:      Documentation/devicetree/bindings/fpga/
7457 F:      Documentation/driver-api/fpga/
7458 F:      Documentation/fpga/
7459 F:      drivers/fpga/
7460 F:      include/linux/fpga/
7461
7462 FPU EMULATOR
7463 M:      Bill Metzenthen <billm@melbpc.org.au>
7464 S:      Maintained
7465 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7466 F:      arch/x86/math-emu/
7467
7468 FRAMEBUFFER LAYER
7469 L:      dri-devel@lists.freedesktop.org
7470 L:      linux-fbdev@vger.kernel.org
7471 S:      Orphan
7472 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7473 T:      git git://anongit.freedesktop.org/drm/drm-misc
7474 F:      Documentation/fb/
7475 F:      drivers/video/
7476 F:      include/linux/fb.h
7477 F:      include/uapi/linux/fb.h
7478 F:      include/uapi/video/
7479 F:      include/video/
7480
7481 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7482 M:      Horia Geantă <horia.geanta@nxp.com>
7483 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7484 L:      linux-crypto@vger.kernel.org
7485 S:      Maintained
7486 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7487 F:      drivers/crypto/caam/
7488
7489 FREESCALE COLDFIRE M5441X MMC DRIVER
7490 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7491 L:      linux-mmc@vger.kernel.org
7492 S:      Maintained
7493 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7494 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7495
7496 FREESCALE DIU FRAMEBUFFER DRIVER
7497 M:      Timur Tabi <timur@kernel.org>
7498 L:      linux-fbdev@vger.kernel.org
7499 S:      Maintained
7500 F:      drivers/video/fbdev/fsl-diu-fb.*
7501
7502 FREESCALE DMA DRIVER
7503 M:      Li Yang <leoyang.li@nxp.com>
7504 M:      Zhang Wei <zw@zh-kernel.org>
7505 L:      linuxppc-dev@lists.ozlabs.org
7506 S:      Maintained
7507 F:      drivers/dma/fsldma.*
7508
7509 FREESCALE DSPI DRIVER
7510 M:      Vladimir Oltean <olteanv@gmail.com>
7511 L:      linux-spi@vger.kernel.org
7512 S:      Maintained
7513 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7514 F:      drivers/spi/spi-fsl-dspi.c
7515 F:      include/linux/spi/spi-fsl-dspi.h
7516
7517 FREESCALE ENETC ETHERNET DRIVERS
7518 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7519 L:      netdev@vger.kernel.org
7520 S:      Maintained
7521 F:      drivers/net/ethernet/freescale/enetc/
7522
7523 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7524 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7525 L:      netdev@vger.kernel.org
7526 S:      Maintained
7527 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7528 F:      drivers/net/ethernet/freescale/gianfar*
7529
7530 FREESCALE GPMI NAND DRIVER
7531 M:      Han Xu <han.xu@nxp.com>
7532 L:      linux-mtd@lists.infradead.org
7533 S:      Maintained
7534 F:      drivers/mtd/nand/raw/gpmi-nand/*
7535
7536 FREESCALE I2C CPM DRIVER
7537 M:      Jochen Friedrich <jochen@scram.de>
7538 L:      linuxppc-dev@lists.ozlabs.org
7539 L:      linux-i2c@vger.kernel.org
7540 S:      Maintained
7541 F:      drivers/i2c/busses/i2c-cpm.c
7542
7543 FREESCALE IMX / MXC FEC DRIVER
7544 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7545 L:      netdev@vger.kernel.org
7546 S:      Maintained
7547 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7548 F:      drivers/net/ethernet/freescale/fec.h
7549 F:      drivers/net/ethernet/freescale/fec_main.c
7550 F:      drivers/net/ethernet/freescale/fec_ptp.c
7551
7552 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7553 M:      Sascha Hauer <s.hauer@pengutronix.de>
7554 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7555 L:      linux-fbdev@vger.kernel.org
7556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7557 S:      Maintained
7558 F:      drivers/video/fbdev/imxfb.c
7559 F:      include/linux/platform_data/video-imxfb.h
7560
7561 FREESCALE IMX DDR PMU DRIVER
7562 M:      Frank Li <Frank.li@nxp.com>
7563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7564 S:      Maintained
7565 F:      Documentation/admin-guide/perf/imx-ddr.rst
7566 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7567 F:      drivers/perf/fsl_imx8_ddr_perf.c
7568
7569 FREESCALE IMX I2C DRIVER
7570 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7571 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7572 L:      linux-i2c@vger.kernel.org
7573 S:      Maintained
7574 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7575 F:      drivers/i2c/busses/i2c-imx.c
7576
7577 FREESCALE IMX LPI2C DRIVER
7578 M:      Dong Aisheng <aisheng.dong@nxp.com>
7579 L:      linux-i2c@vger.kernel.org
7580 L:      linux-imx@nxp.com
7581 S:      Maintained
7582 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7583 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7584
7585 FREESCALE MPC I2C DRIVER
7586 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7587 L:      linux-i2c@vger.kernel.org
7588 S:      Maintained
7589 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7590 F:      drivers/i2c/busses/i2c-mpc.c
7591
7592 FREESCALE QORIQ DPAA ETHERNET DRIVER
7593 M:      Madalin Bucur <madalin.bucur@nxp.com>
7594 L:      netdev@vger.kernel.org
7595 S:      Maintained
7596 F:      drivers/net/ethernet/freescale/dpaa
7597
7598 FREESCALE QORIQ DPAA FMAN DRIVER
7599 M:      Madalin Bucur <madalin.bucur@nxp.com>
7600 L:      netdev@vger.kernel.org
7601 S:      Maintained
7602 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7603 F:      drivers/net/ethernet/freescale/fman
7604
7605 FREESCALE QORIQ PTP CLOCK DRIVER
7606 M:      Yangbo Lu <yangbo.lu@nxp.com>
7607 L:      netdev@vger.kernel.org
7608 S:      Maintained
7609 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7610 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7611 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7612 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7613 F:      drivers/ptp/ptp_qoriq.c
7614 F:      drivers/ptp/ptp_qoriq_debugfs.c
7615 F:      include/linux/fsl/ptp_qoriq.h
7616
7617 FREESCALE QUAD SPI DRIVER
7618 M:      Han Xu <han.xu@nxp.com>
7619 L:      linux-spi@vger.kernel.org
7620 S:      Maintained
7621 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7622 F:      drivers/spi/spi-fsl-qspi.c
7623
7624 FREESCALE QUICC ENGINE LIBRARY
7625 M:      Qiang Zhao <qiang.zhao@nxp.com>
7626 L:      linuxppc-dev@lists.ozlabs.org
7627 S:      Maintained
7628 F:      drivers/soc/fsl/qe/
7629 F:      include/soc/fsl/*qe*.h
7630 F:      include/soc/fsl/*ucc*.h
7631
7632 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7633 M:      Li Yang <leoyang.li@nxp.com>
7634 L:      netdev@vger.kernel.org
7635 L:      linuxppc-dev@lists.ozlabs.org
7636 S:      Maintained
7637 F:      drivers/net/ethernet/freescale/ucc_geth*
7638
7639 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7640 M:      Zhao Qiang <qiang.zhao@nxp.com>
7641 L:      netdev@vger.kernel.org
7642 L:      linuxppc-dev@lists.ozlabs.org
7643 S:      Maintained
7644 F:      drivers/net/wan/fsl_ucc_hdlc*
7645
7646 FREESCALE QUICC ENGINE UCC UART DRIVER
7647 M:      Timur Tabi <timur@kernel.org>
7648 L:      linuxppc-dev@lists.ozlabs.org
7649 S:      Maintained
7650 F:      drivers/tty/serial/ucc_uart.c
7651
7652 FREESCALE SOC DRIVERS
7653 M:      Li Yang <leoyang.li@nxp.com>
7654 L:      linuxppc-dev@lists.ozlabs.org
7655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7656 S:      Maintained
7657 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7658 F:      Documentation/devicetree/bindings/soc/fsl/
7659 F:      drivers/soc/fsl/
7660 F:      include/linux/fsl/
7661
7662 FREESCALE SOC FS_ENET DRIVER
7663 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7664 L:      linuxppc-dev@lists.ozlabs.org
7665 L:      netdev@vger.kernel.org
7666 S:      Maintained
7667 F:      drivers/net/ethernet/freescale/fs_enet/
7668 F:      include/linux/fs_enet_pd.h
7669
7670 FREESCALE SOC SOUND DRIVERS
7671 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7672 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7673 R:      Fabio Estevam <festevam@gmail.com>
7674 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7675 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7676 L:      linuxppc-dev@lists.ozlabs.org
7677 S:      Maintained
7678 F:      sound/soc/fsl/fsl*
7679 F:      sound/soc/fsl/imx*
7680 F:      sound/soc/fsl/mpc8610_hpcd.c
7681
7682 FREESCALE USB PERIPHERAL DRIVERS
7683 M:      Li Yang <leoyang.li@nxp.com>
7684 L:      linux-usb@vger.kernel.org
7685 L:      linuxppc-dev@lists.ozlabs.org
7686 S:      Maintained
7687 F:      drivers/usb/gadget/udc/fsl*
7688
7689 FREESCALE USB PHY DRIVER
7690 M:      Ran Wang <ran.wang_1@nxp.com>
7691 L:      linux-usb@vger.kernel.org
7692 L:      linuxppc-dev@lists.ozlabs.org
7693 S:      Maintained
7694 F:      drivers/usb/phy/phy-fsl-usb*
7695
7696 FREEVXFS FILESYSTEM
7697 M:      Christoph Hellwig <hch@infradead.org>
7698 S:      Maintained
7699 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7700 F:      fs/freevxfs/
7701
7702 FREEZER
7703 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7704 M:      Pavel Machek <pavel@ucw.cz>
7705 L:      linux-pm@vger.kernel.org
7706 S:      Supported
7707 F:      Documentation/power/freezing-of-tasks.rst
7708 F:      include/linux/freezer.h
7709 F:      kernel/freezer.c
7710
7711 FRONTSWAP API
7712 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7713 L:      linux-kernel@vger.kernel.org
7714 S:      Maintained
7715 F:      include/linux/frontswap.h
7716 F:      mm/frontswap.c
7717
7718 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7719 M:      David Howells <dhowells@redhat.com>
7720 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7721 S:      Supported
7722 F:      Documentation/filesystems/caching/
7723 F:      fs/fscache/
7724 F:      include/linux/fscache*.h
7725
7726 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7727 M:      Theodore Y. Ts'o <tytso@mit.edu>
7728 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7729 M:      Eric Biggers <ebiggers@kernel.org>
7730 L:      linux-fscrypt@vger.kernel.org
7731 S:      Supported
7732 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7733 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7734 F:      Documentation/filesystems/fscrypt.rst
7735 F:      fs/crypto/
7736 F:      include/linux/fscrypt*.h
7737 F:      include/uapi/linux/fscrypt.h
7738
7739 FSI SUBSYSTEM
7740 M:      Jeremy Kerr <jk@ozlabs.org>
7741 M:      Joel Stanley <joel@jms.id.au>
7742 R:      Alistar Popple <alistair@popple.id.au>
7743 R:      Eddie James <eajames@linux.ibm.com>
7744 L:      linux-fsi@lists.ozlabs.org
7745 S:      Supported
7746 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7748 F:      drivers/fsi/
7749 F:      include/linux/fsi*.h
7750 F:      include/trace/events/fsi*.h
7751
7752 FSI-ATTACHED I2C DRIVER
7753 M:      Eddie James <eajames@linux.ibm.com>
7754 L:      linux-i2c@vger.kernel.org
7755 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7756 S:      Maintained
7757 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7758 F:      drivers/i2c/busses/i2c-fsi.c
7759
7760 FSI-ATTACHED SPI DRIVER
7761 M:      Eddie James <eajames@linux.ibm.com>
7762 L:      linux-spi@vger.kernel.org
7763 S:      Maintained
7764 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7765 F:      drivers/spi/spi-fsi.c
7766
7767 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7768 M:      Jan Kara <jack@suse.cz>
7769 R:      Amir Goldstein <amir73il@gmail.com>
7770 L:      linux-fsdevel@vger.kernel.org
7771 S:      Maintained
7772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7773 F:      fs/notify/
7774 F:      include/linux/fsnotify*.h
7775
7776 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7777 M:      Eric Biggers <ebiggers@kernel.org>
7778 M:      Theodore Y. Ts'o <tytso@mit.edu>
7779 L:      linux-fscrypt@vger.kernel.org
7780 S:      Supported
7781 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7782 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7783 F:      Documentation/filesystems/fsverity.rst
7784 F:      fs/verity/
7785 F:      include/linux/fsverity.h
7786 F:      include/uapi/linux/fsverity.h
7787
7788 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7789 M:      Michael Zaidman <michael.zaidman@gmail.com>
7790 L:      linux-i2c@vger.kernel.org
7791 L:      linux-input@vger.kernel.org
7792 S:      Maintained
7793 F:      drivers/hid/hid-ft260.c
7794
7795 FUJITSU LAPTOP EXTRAS
7796 M:      Jonathan Woithe <jwoithe@just42.net>
7797 L:      platform-driver-x86@vger.kernel.org
7798 S:      Maintained
7799 F:      drivers/platform/x86/fujitsu-laptop.c
7800
7801 FUJITSU M-5MO LS CAMERA ISP DRIVER
7802 M:      Kyungmin Park <kyungmin.park@samsung.com>
7803 M:      Heungjun Kim <riverful.kim@samsung.com>
7804 L:      linux-media@vger.kernel.org
7805 S:      Maintained
7806 F:      drivers/media/i2c/m5mols/
7807 F:      include/media/i2c/m5mols.h
7808
7809 FUJITSU TABLET EXTRAS
7810 M:      Robert Gerlach <khnz@gmx.de>
7811 L:      platform-driver-x86@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/platform/x86/fujitsu-tablet.c
7814
7815 FUSE: FILESYSTEM IN USERSPACE
7816 M:      Miklos Szeredi <miklos@szeredi.hu>
7817 L:      linux-fsdevel@vger.kernel.org
7818 S:      Maintained
7819 W:      https://github.com/libfuse/
7820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7821 F:      Documentation/filesystems/fuse.rst
7822 F:      fs/fuse/
7823 F:      include/uapi/linux/fuse.h
7824
7825 FUTEX SUBSYSTEM
7826 M:      Thomas Gleixner <tglx@linutronix.de>
7827 M:      Ingo Molnar <mingo@redhat.com>
7828 R:      Peter Zijlstra <peterz@infradead.org>
7829 R:      Darren Hart <dvhart@infradead.org>
7830 R:      Davidlohr Bueso <dave@stgolabs.net>
7831 R:      André Almeida <andrealmeid@collabora.com>
7832 L:      linux-kernel@vger.kernel.org
7833 S:      Maintained
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7835 F:      Documentation/locking/*futex*
7836 F:      include/asm-generic/futex.h
7837 F:      include/linux/futex.h
7838 F:      include/uapi/linux/futex.h
7839 F:      kernel/futex/*
7840 F:      tools/perf/bench/futex*
7841 F:      tools/testing/selftests/futex/
7842
7843 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7844 M:      Tim Harvey <tharvey@gateworks.com>
7845 M:      Robert Jones <rjones@gateworks.com>
7846 S:      Maintained
7847 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7848 F:      drivers/mfd/gateworks-gsc.c
7849 F:      include/linux/mfd/gsc.h
7850 F:      Documentation/hwmon/gsc-hwmon.rst
7851 F:      drivers/hwmon/gsc-hwmon.c
7852 F:      include/linux/platform_data/gsc_hwmon.h
7853
7854 GCC PLUGINS
7855 M:      Kees Cook <keescook@chromium.org>
7856 L:      linux-hardening@vger.kernel.org
7857 S:      Maintained
7858 F:      Documentation/kbuild/gcc-plugins.rst
7859 F:      scripts/Makefile.gcc-plugins
7860 F:      scripts/gcc-plugins/
7861
7862 GCOV BASED KERNEL PROFILING
7863 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7864 S:      Maintained
7865 F:      Documentation/dev-tools/gcov.rst
7866 F:      kernel/gcov/
7867
7868 GDB KERNEL DEBUGGING HELPER SCRIPTS
7869 M:      Jan Kiszka <jan.kiszka@siemens.com>
7870 M:      Kieran Bingham <kbingham@kernel.org>
7871 S:      Supported
7872 F:      scripts/gdb/
7873
7874 GEMINI CRYPTO DRIVER
7875 M:      Corentin Labbe <clabbe@baylibre.com>
7876 L:      linux-crypto@vger.kernel.org
7877 S:      Maintained
7878 F:      drivers/crypto/gemini/
7879
7880 GEMTEK FM RADIO RECEIVER DRIVER
7881 M:      Hans Verkuil <hverkuil@xs4all.nl>
7882 L:      linux-media@vger.kernel.org
7883 S:      Maintained
7884 W:      https://linuxtv.org
7885 T:      git git://linuxtv.org/media_tree.git
7886 F:      drivers/media/radio/radio-gemtek*
7887
7888 GENERIC ARCHITECTURE TOPOLOGY
7889 M:      Sudeep Holla <sudeep.holla@arm.com>
7890 L:      linux-kernel@vger.kernel.org
7891 S:      Maintained
7892 F:      drivers/base/arch_topology.c
7893 F:      include/linux/arch_topology.h
7894
7895 GENERIC ENTRY CODE
7896 M:      Thomas Gleixner <tglx@linutronix.de>
7897 M:      Peter Zijlstra <peterz@infradead.org>
7898 M:      Andy Lutomirski <luto@kernel.org>
7899 L:      linux-kernel@vger.kernel.org
7900 S:      Maintained
7901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7902 F:      include/linux/entry-common.h
7903 F:      include/linux/entry-kvm.h
7904 F:      kernel/entry/
7905
7906 GENERIC GPIO I2C DRIVER
7907 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7908 S:      Supported
7909 F:      drivers/i2c/busses/i2c-gpio.c
7910 F:      include/linux/platform_data/i2c-gpio.h
7911
7912 GENERIC GPIO I2C MULTIPLEXER DRIVER
7913 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7914 L:      linux-i2c@vger.kernel.org
7915 S:      Supported
7916 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7917 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7918 F:      include/linux/platform_data/i2c-mux-gpio.h
7919
7920 GENERIC HDLC (WAN) DRIVERS
7921 M:      Krzysztof Halasa <khc@pm.waw.pl>
7922 S:      Maintained
7923 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7924 F:      drivers/net/wan/c101.c
7925 F:      drivers/net/wan/hd6457*
7926 F:      drivers/net/wan/hdlc*
7927 F:      drivers/net/wan/n2.c
7928 F:      drivers/net/wan/pc300too.c
7929 F:      drivers/net/wan/pci200syn.c
7930 F:      drivers/net/wan/wanxl*
7931
7932 GENERIC INCLUDE/ASM HEADER FILES
7933 M:      Arnd Bergmann <arnd@arndb.de>
7934 L:      linux-arch@vger.kernel.org
7935 S:      Maintained
7936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7937 F:      include/asm-generic/
7938 F:      include/uapi/asm-generic/
7939
7940 GENERIC PHY FRAMEWORK
7941 M:      Kishon Vijay Abraham I <kishon@ti.com>
7942 M:      Vinod Koul <vkoul@kernel.org>
7943 L:      linux-phy@lists.infradead.org
7944 S:      Supported
7945 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7947 F:      Documentation/devicetree/bindings/phy/
7948 F:      drivers/phy/
7949 F:      include/linux/phy/
7950
7951 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7952 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7953 S:      Supported
7954 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7955
7956 GENERIC PM DOMAINS
7957 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7958 M:      Kevin Hilman <khilman@kernel.org>
7959 M:      Ulf Hansson <ulf.hansson@linaro.org>
7960 L:      linux-pm@vger.kernel.org
7961 S:      Supported
7962 F:      Documentation/devicetree/bindings/power/power?domain*
7963 F:      drivers/base/power/domain*.c
7964 F:      include/linux/pm_domain.h
7965
7966 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7967 M:      Eugen Hristev <eugen.hristev@microchip.com>
7968 L:      linux-input@vger.kernel.org
7969 S:      Maintained
7970 F:      drivers/input/touchscreen/resistive-adc-touch.c
7971
7972 GENERIC STRING LIBRARY
7973 R:      Andy Shevchenko <andy@kernel.org>
7974 S:      Maintained
7975 F:      lib/string.c
7976 F:      lib/string_helpers.c
7977 F:      lib/test_string.c
7978 F:      lib/test-string_helpers.c
7979
7980 GENERIC UIO DRIVER FOR PCI DEVICES
7981 M:      "Michael S. Tsirkin" <mst@redhat.com>
7982 L:      kvm@vger.kernel.org
7983 S:      Supported
7984 F:      drivers/uio/uio_pci_generic.c
7985
7986 GENERIC VDSO LIBRARY
7987 M:      Andy Lutomirski <luto@kernel.org>
7988 M:      Thomas Gleixner <tglx@linutronix.de>
7989 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7990 L:      linux-kernel@vger.kernel.org
7991 S:      Maintained
7992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7993 F:      include/asm-generic/vdso/vsyscall.h
7994 F:      include/vdso/
7995 F:      kernel/time/vsyscall.c
7996 F:      lib/vdso/
7997
7998 GENWQE (IBM Generic Workqueue Card)
7999 M:      Frank Haverkamp <haver@linux.ibm.com>
8000 S:      Supported
8001 F:      drivers/misc/genwqe/
8002
8003 GET_MAINTAINER SCRIPT
8004 M:      Joe Perches <joe@perches.com>
8005 S:      Maintained
8006 F:      scripts/get_maintainer.pl
8007
8008 GFS2 FILE SYSTEM
8009 M:      Bob Peterson <rpeterso@redhat.com>
8010 M:      Andreas Gruenbacher <agruenba@redhat.com>
8011 L:      cluster-devel@redhat.com
8012 S:      Supported
8013 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8015 F:      Documentation/filesystems/gfs2*
8016 F:      fs/gfs2/
8017 F:      include/uapi/linux/gfs2_ondisk.h
8018
8019 GIGABYTE WMI DRIVER
8020 M:      Thomas Weißschuh <thomas@weissschuh.net>
8021 L:      platform-driver-x86@vger.kernel.org
8022 S:      Maintained
8023 F:      drivers/platform/x86/gigabyte-wmi.c
8024
8025 GNSS SUBSYSTEM
8026 M:      Johan Hovold <johan@kernel.org>
8027 S:      Maintained
8028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8029 F:      Documentation/ABI/testing/sysfs-class-gnss
8030 F:      Documentation/devicetree/bindings/gnss/
8031 F:      drivers/gnss/
8032 F:      include/linux/gnss.h
8033
8034 GO7007 MPEG CODEC
8035 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8036 L:      linux-media@vger.kernel.org
8037 S:      Maintained
8038 F:      drivers/media/usb/go7007/
8039
8040 GOODIX TOUCHSCREEN
8041 M:      Bastien Nocera <hadess@hadess.net>
8042 L:      linux-input@vger.kernel.org
8043 S:      Maintained
8044 F:      drivers/input/touchscreen/goodix.c
8045
8046 GOOGLE ETHERNET DRIVERS
8047 M:      Jeroen de Borst <jeroendb@google.com>
8048 R:      Catherine Sullivan <csully@google.com>
8049 R:      David Awogbemila <awogbemila@google.com>
8050 L:      netdev@vger.kernel.org
8051 S:      Supported
8052 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8053 F:      drivers/net/ethernet/google
8054
8055 GPD POCKET FAN DRIVER
8056 M:      Hans de Goede <hdegoede@redhat.com>
8057 L:      platform-driver-x86@vger.kernel.org
8058 S:      Maintained
8059 F:      drivers/platform/x86/gpd-pocket-fan.c
8060
8061 GPIO ACPI SUPPORT
8062 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8063 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8064 L:      linux-gpio@vger.kernel.org
8065 L:      linux-acpi@vger.kernel.org
8066 S:      Maintained
8067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8068 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8069 F:      drivers/gpio/gpiolib-acpi.c
8070 F:      drivers/gpio/gpiolib-acpi.h
8071
8072 GPIO AGGREGATOR
8073 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8074 L:      linux-gpio@vger.kernel.org
8075 S:      Supported
8076 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8077 F:      drivers/gpio/gpio-aggregator.c
8078
8079 GPIO IR Transmitter
8080 M:      Sean Young <sean@mess.org>
8081 L:      linux-media@vger.kernel.org
8082 S:      Maintained
8083 F:      drivers/media/rc/gpio-ir-tx.c
8084
8085 GPIO MOCKUP DRIVER
8086 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8087 L:      linux-gpio@vger.kernel.org
8088 S:      Maintained
8089 F:      drivers/gpio/gpio-mockup.c
8090 F:      tools/testing/selftests/gpio/
8091
8092 GPIO REGMAP
8093 R:      Michael Walle <michael@walle.cc>
8094 S:      Maintained
8095 F:      drivers/gpio/gpio-regmap.c
8096 F:      include/linux/gpio/regmap.h
8097
8098 GPIO SUBSYSTEM
8099 M:      Linus Walleij <linus.walleij@linaro.org>
8100 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8101 L:      linux-gpio@vger.kernel.org
8102 S:      Maintained
8103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8104 F:      Documentation/ABI/obsolete/sysfs-gpio
8105 F:      Documentation/ABI/testing/gpio-cdev
8106 F:      Documentation/admin-guide/gpio/
8107 F:      Documentation/devicetree/bindings/gpio/
8108 F:      Documentation/driver-api/gpio/
8109 F:      drivers/gpio/
8110 F:      include/asm-generic/gpio.h
8111 F:      include/linux/gpio.h
8112 F:      include/linux/gpio/
8113 F:      include/linux/of_gpio.h
8114 F:      include/uapi/linux/gpio.h
8115 F:      tools/gpio/
8116
8117 GRE DEMULTIPLEXER DRIVER
8118 M:      Dmitry Kozlov <xeb@mail.ru>
8119 L:      netdev@vger.kernel.org
8120 S:      Maintained
8121 F:      include/net/gre.h
8122 F:      net/ipv4/gre_demux.c
8123 F:      net/ipv4/gre_offload.c
8124
8125 GRETH 10/100/1G Ethernet MAC device driver
8126 M:      Andreas Larsson <andreas@gaisler.com>
8127 L:      netdev@vger.kernel.org
8128 S:      Maintained
8129 F:      drivers/net/ethernet/aeroflex/
8130
8131 GREYBUS AUDIO PROTOCOLS DRIVERS
8132 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8133 M:      Mark Greer <mgreer@animalcreek.com>
8134 S:      Maintained
8135 F:      drivers/staging/greybus/audio_apbridgea.c
8136 F:      drivers/staging/greybus/audio_apbridgea.h
8137 F:      drivers/staging/greybus/audio_codec.c
8138 F:      drivers/staging/greybus/audio_codec.h
8139 F:      drivers/staging/greybus/audio_gb.c
8140 F:      drivers/staging/greybus/audio_manager.c
8141 F:      drivers/staging/greybus/audio_manager.h
8142 F:      drivers/staging/greybus/audio_manager_module.c
8143 F:      drivers/staging/greybus/audio_manager_private.h
8144 F:      drivers/staging/greybus/audio_manager_sysfs.c
8145 F:      drivers/staging/greybus/audio_module.c
8146 F:      drivers/staging/greybus/audio_topology.c
8147
8148 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8149 M:      Viresh Kumar <vireshk@kernel.org>
8150 S:      Maintained
8151 F:      drivers/staging/greybus/authentication.c
8152 F:      drivers/staging/greybus/bootrom.c
8153 F:      drivers/staging/greybus/firmware.h
8154 F:      drivers/staging/greybus/fw-core.c
8155 F:      drivers/staging/greybus/fw-download.c
8156 F:      drivers/staging/greybus/fw-management.c
8157 F:      drivers/staging/greybus/greybus_authentication.h
8158 F:      drivers/staging/greybus/greybus_firmware.h
8159 F:      drivers/staging/greybus/hid.c
8160 F:      drivers/staging/greybus/i2c.c
8161 F:      drivers/staging/greybus/spi.c
8162 F:      drivers/staging/greybus/spilib.c
8163 F:      drivers/staging/greybus/spilib.h
8164
8165 GREYBUS LOOPBACK DRIVER
8166 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8167 S:      Maintained
8168 F:      drivers/staging/greybus/loopback.c
8169
8170 GREYBUS PLATFORM DRIVERS
8171 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8172 S:      Maintained
8173 F:      drivers/staging/greybus/arche-apb-ctrl.c
8174 F:      drivers/staging/greybus/arche-platform.c
8175 F:      drivers/staging/greybus/arche_platform.h
8176
8177 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8178 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8179 S:      Maintained
8180 F:      drivers/staging/greybus/gpio.c
8181 F:      drivers/staging/greybus/light.c
8182 F:      drivers/staging/greybus/power_supply.c
8183 F:      drivers/staging/greybus/sdio.c
8184 F:      drivers/staging/greybus/spi.c
8185 F:      drivers/staging/greybus/spilib.c
8186
8187 GREYBUS SUBSYSTEM
8188 M:      Johan Hovold <johan@kernel.org>
8189 M:      Alex Elder <elder@kernel.org>
8190 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8191 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8192 S:      Maintained
8193 F:      drivers/greybus/
8194 F:      drivers/staging/greybus/
8195 F:      include/linux/greybus.h
8196 F:      include/linux/greybus/
8197
8198 GREYBUS UART PROTOCOLS DRIVERS
8199 M:      David Lin <dtwlin@gmail.com>
8200 S:      Maintained
8201 F:      drivers/staging/greybus/log.c
8202 F:      drivers/staging/greybus/uart.c
8203
8204 GS1662 VIDEO SERIALIZER
8205 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8206 L:      linux-media@vger.kernel.org
8207 S:      Maintained
8208 T:      git git://linuxtv.org/media_tree.git
8209 F:      drivers/media/spi/gs1662.c
8210
8211 GSPCA FINEPIX SUBDRIVER
8212 M:      Frank Zago <frank@zago.net>
8213 L:      linux-media@vger.kernel.org
8214 S:      Maintained
8215 T:      git git://linuxtv.org/media_tree.git
8216 F:      drivers/media/usb/gspca/finepix.c
8217
8218 GSPCA GL860 SUBDRIVER
8219 M:      Olivier Lorin <o.lorin@laposte.net>
8220 L:      linux-media@vger.kernel.org
8221 S:      Maintained
8222 T:      git git://linuxtv.org/media_tree.git
8223 F:      drivers/media/usb/gspca/gl860/
8224
8225 GSPCA M5602 SUBDRIVER
8226 M:      Erik Andren <erik.andren@gmail.com>
8227 L:      linux-media@vger.kernel.org
8228 S:      Maintained
8229 T:      git git://linuxtv.org/media_tree.git
8230 F:      drivers/media/usb/gspca/m5602/
8231
8232 GSPCA PAC207 SONIXB SUBDRIVER
8233 M:      Hans Verkuil <hverkuil@xs4all.nl>
8234 L:      linux-media@vger.kernel.org
8235 S:      Odd Fixes
8236 T:      git git://linuxtv.org/media_tree.git
8237 F:      drivers/media/usb/gspca/pac207.c
8238
8239 GSPCA SN9C20X SUBDRIVER
8240 M:      Brian Johnson <brijohn@gmail.com>
8241 L:      linux-media@vger.kernel.org
8242 S:      Maintained
8243 T:      git git://linuxtv.org/media_tree.git
8244 F:      drivers/media/usb/gspca/sn9c20x.c
8245
8246 GSPCA T613 SUBDRIVER
8247 M:      Leandro Costantino <lcostantino@gmail.com>
8248 L:      linux-media@vger.kernel.org
8249 S:      Maintained
8250 T:      git git://linuxtv.org/media_tree.git
8251 F:      drivers/media/usb/gspca/t613.c
8252
8253 GSPCA USB WEBCAM DRIVER
8254 M:      Hans Verkuil <hverkuil@xs4all.nl>
8255 L:      linux-media@vger.kernel.org
8256 S:      Odd Fixes
8257 T:      git git://linuxtv.org/media_tree.git
8258 F:      drivers/media/usb/gspca/
8259
8260 GTP (GPRS Tunneling Protocol)
8261 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8262 M:      Harald Welte <laforge@gnumonks.org>
8263 L:      osmocom-net-gprs@lists.osmocom.org
8264 S:      Maintained
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8266 F:      drivers/net/gtp.c
8267
8268 GUID PARTITION TABLE (GPT)
8269 M:      Davidlohr Bueso <dave@stgolabs.net>
8270 L:      linux-efi@vger.kernel.org
8271 S:      Maintained
8272 F:      block/partitions/efi.*
8273
8274 H8/300 ARCHITECTURE
8275 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8276 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8277 S:      Maintained
8278 W:      http://uclinux-h8.sourceforge.jp
8279 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8280 F:      arch/h8300/
8281 F:      drivers/clk/h8300/
8282 F:      drivers/clocksource/h8300_*.c
8283 F:      drivers/irqchip/irq-renesas-h8*.c
8284
8285 HABANALABS PCI DRIVER
8286 M:      Oded Gabbay <ogabbay@kernel.org>
8287 S:      Supported
8288 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8289 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8290 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8291 F:      drivers/misc/habanalabs/
8292 F:      include/uapi/misc/habanalabs.h
8293
8294 HACKRF MEDIA DRIVER
8295 M:      Antti Palosaari <crope@iki.fi>
8296 L:      linux-media@vger.kernel.org
8297 S:      Maintained
8298 W:      https://linuxtv.org
8299 W:      http://palosaari.fi/linux/
8300 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8301 T:      git git://linuxtv.org/anttip/media_tree.git
8302 F:      drivers/media/usb/hackrf/
8303
8304 HANTRO VPU CODEC DRIVER
8305 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8306 M:      Philipp Zabel <p.zabel@pengutronix.de>
8307 L:      linux-media@vger.kernel.org
8308 L:      linux-rockchip@lists.infradead.org
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8311 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8312 F:      drivers/staging/media/hantro/
8313
8314 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8315 M:      Frank Seidel <frank@f-seidel.de>
8316 L:      platform-driver-x86@vger.kernel.org
8317 S:      Maintained
8318 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8319 F:      drivers/platform/x86/hdaps.c
8320
8321 HARDWARE MONITORING
8322 M:      Jean Delvare <jdelvare@suse.com>
8323 M:      Guenter Roeck <linux@roeck-us.net>
8324 L:      linux-hwmon@vger.kernel.org
8325 S:      Maintained
8326 W:      http://hwmon.wiki.kernel.org/
8327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8328 F:      Documentation/ABI/testing/sysfs-class-hwmon
8329 F:      Documentation/devicetree/bindings/hwmon/
8330 F:      Documentation/hwmon/
8331 F:      drivers/hwmon/
8332 F:      include/linux/hwmon*.h
8333 F:      include/trace/events/hwmon*.h
8334 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8335
8336 HARDWARE RANDOM NUMBER GENERATOR CORE
8337 M:      Matt Mackall <mpm@selenic.com>
8338 M:      Herbert Xu <herbert@gondor.apana.org.au>
8339 L:      linux-crypto@vger.kernel.org
8340 S:      Odd fixes
8341 F:      Documentation/admin-guide/hw_random.rst
8342 F:      Documentation/devicetree/bindings/rng/
8343 F:      drivers/char/hw_random/
8344 F:      include/linux/hw_random.h
8345
8346 HARDWARE SPINLOCK CORE
8347 M:      Ohad Ben-Cohen <ohad@wizery.com>
8348 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8349 R:      Baolin Wang <baolin.wang7@gmail.com>
8350 L:      linux-remoteproc@vger.kernel.org
8351 S:      Maintained
8352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8353 F:      Documentation/devicetree/bindings/hwlock/
8354 F:      Documentation/locking/hwspinlock.rst
8355 F:      drivers/hwspinlock/
8356 F:      include/linux/hwspinlock.h
8357
8358 HARDWARE TRACING FACILITIES
8359 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8360 S:      Maintained
8361 F:      drivers/hwtracing/
8362
8363 HARMONY SOUND DRIVER
8364 L:      linux-parisc@vger.kernel.org
8365 S:      Maintained
8366 F:      sound/parisc/harmony.*
8367
8368 HDPVR USB VIDEO ENCODER DRIVER
8369 M:      Hans Verkuil <hverkuil@xs4all.nl>
8370 L:      linux-media@vger.kernel.org
8371 S:      Odd Fixes
8372 W:      https://linuxtv.org
8373 T:      git git://linuxtv.org/media_tree.git
8374 F:      drivers/media/usb/hdpvr/
8375
8376 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8377 M:      Matt Hsiao <matt.hsiao@hpe.com>
8378 S:      Supported
8379 F:      drivers/misc/hpilo.[ch]
8380
8381 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8382 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8383 S:      Supported
8384 F:      Documentation/watchdog/hpwdt.rst
8385 F:      drivers/watchdog/hpwdt.c
8386
8387 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8388 M:      Don Brace <don.brace@microchip.com>
8389 L:      storagedev@microchip.com
8390 L:      linux-scsi@vger.kernel.org
8391 S:      Supported
8392 F:      Documentation/scsi/hpsa.rst
8393 F:      drivers/scsi/hpsa*.[ch]
8394 F:      include/linux/cciss*.h
8395 F:      include/uapi/linux/cciss*.h
8396
8397 HFI1 DRIVER
8398 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8399 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8400 L:      linux-rdma@vger.kernel.org
8401 S:      Supported
8402 F:      drivers/infiniband/hw/hfi1
8403
8404 HFS FILESYSTEM
8405 L:      linux-fsdevel@vger.kernel.org
8406 S:      Orphan
8407 F:      Documentation/filesystems/hfs.rst
8408 F:      fs/hfs/
8409
8410 HFSPLUS FILESYSTEM
8411 L:      linux-fsdevel@vger.kernel.org
8412 S:      Orphan
8413 F:      Documentation/filesystems/hfsplus.rst
8414 F:      fs/hfsplus/
8415
8416 HGA FRAMEBUFFER DRIVER
8417 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8418 L:      linux-nvidia@lists.surfsouth.com
8419 S:      Maintained
8420 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8421 F:      drivers/video/fbdev/hgafb.c
8422
8423 HIBERNATION (aka Software Suspend, aka swsusp)
8424 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8425 M:      Pavel Machek <pavel@ucw.cz>
8426 L:      linux-pm@vger.kernel.org
8427 S:      Supported
8428 B:      https://bugzilla.kernel.org
8429 F:      arch/*/include/asm/suspend*.h
8430 F:      arch/x86/power/
8431 F:      drivers/base/power/
8432 F:      include/linux/freezer.h
8433 F:      include/linux/pm.h
8434 F:      include/linux/suspend.h
8435 F:      kernel/power/
8436
8437 HID CORE LAYER
8438 M:      Jiri Kosina <jikos@kernel.org>
8439 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8440 L:      linux-input@vger.kernel.org
8441 S:      Maintained
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8443 F:      drivers/hid/
8444 F:      include/linux/hid*
8445 F:      include/uapi/linux/hid*
8446
8447 HID PLAYSTATION DRIVER
8448 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8449 L:      linux-input@vger.kernel.org
8450 S:      Supported
8451 F:      drivers/hid/hid-playstation.c
8452
8453 HID SENSOR HUB DRIVERS
8454 M:      Jiri Kosina <jikos@kernel.org>
8455 M:      Jonathan Cameron <jic23@kernel.org>
8456 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8457 L:      linux-input@vger.kernel.org
8458 L:      linux-iio@vger.kernel.org
8459 S:      Maintained
8460 F:      Documentation/hid/hid-sensor*
8461 F:      drivers/hid/hid-sensor-*
8462 F:      drivers/iio/*/hid-*
8463 F:      include/linux/hid-sensor-*
8464
8465 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8466 M:      Thomas Gleixner <tglx@linutronix.de>
8467 L:      linux-kernel@vger.kernel.org
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8470 F:      Documentation/timers/
8471 F:      include/linux/clockchips.h
8472 F:      include/linux/hrtimer.h
8473 F:      kernel/time/clockevents.c
8474 F:      kernel/time/hrtimer.c
8475 F:      kernel/time/timer_*.c
8476
8477 HIGH-SPEED SCC DRIVER FOR AX.25
8478 L:      linux-hams@vger.kernel.org
8479 S:      Orphan
8480 F:      drivers/net/hamradio/dmascc.c
8481 F:      drivers/net/hamradio/scc.c
8482
8483 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8484 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8485 S:      Supported
8486 W:      http://www.highpoint-tech.com
8487 F:      Documentation/scsi/hptiop.rst
8488 F:      drivers/scsi/hptiop.c
8489
8490 HIPPI
8491 M:      Jes Sorensen <jes@trained-monkey.org>
8492 L:      linux-hippi@sunsite.dk
8493 S:      Maintained
8494 F:      drivers/net/hippi/
8495 F:      include/linux/hippidevice.h
8496 F:      include/uapi/linux/if_hippi.h
8497 F:      net/802/hippi.c
8498
8499 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8500 M:      Kurt Kanzenbach <kurt@linutronix.de>
8501 L:      netdev@vger.kernel.org
8502 S:      Maintained
8503 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8504 F:      drivers/net/dsa/hirschmann/*
8505 F:      include/linux/platform_data/hirschmann-hellcreek.h
8506 F:      net/dsa/tag_hellcreek.c
8507
8508 HISILICON DMA DRIVER
8509 M:      Zhou Wang <wangzhou1@hisilicon.com>
8510 L:      dmaengine@vger.kernel.org
8511 S:      Maintained
8512 F:      drivers/dma/hisi_dma.c
8513
8514 HISILICON GPIO DRIVER
8515 M:      Luo Jiaxing <luojiaxing@huawei.com>
8516 L:      linux-gpio@vger.kernel.org
8517 S:      Maintained
8518 F:      drivers/gpio/gpio-hisi.c
8519
8520 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8521 M:      Zaibo Xu <xuzaibo@huawei.com>
8522 L:      linux-crypto@vger.kernel.org
8523 S:      Maintained
8524 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8525 F:      drivers/crypto/hisilicon/hpre/hpre.h
8526 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8527 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8528
8529 HISILICON I2C CONTROLLER DRIVER
8530 M:      Yicong Yang <yangyicong@hisilicon.com>
8531 L:      linux-i2c@vger.kernel.org
8532 S:      Maintained
8533 W:      https://www.hisilicon.com
8534 F:      drivers/i2c/busses/i2c-hisi.c
8535
8536 HISILICON LPC BUS DRIVER
8537 M:      john.garry@huawei.com
8538 S:      Maintained
8539 W:      http://www.hisilicon.com
8540 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8541 F:      drivers/bus/hisi_lpc.c
8542
8543 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8544 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8545 M:      Salil Mehta <salil.mehta@huawei.com>
8546 L:      netdev@vger.kernel.org
8547 S:      Maintained
8548 W:      http://www.hisilicon.com
8549 F:      drivers/net/ethernet/hisilicon/hns3/
8550
8551 HISILICON NETWORK SUBSYSTEM DRIVER
8552 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8553 M:      Salil Mehta <salil.mehta@huawei.com>
8554 L:      netdev@vger.kernel.org
8555 S:      Maintained
8556 W:      http://www.hisilicon.com
8557 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8558 F:      drivers/net/ethernet/hisilicon/
8559
8560 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8561 M:      John Stultz <john.stultz@linaro.org>
8562 L:      linux-kernel@vger.kernel.org
8563 S:      Maintained
8564 F:      drivers/misc/hisi_hikey_usb.c
8565 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8566
8567 HISILICON PMU DRIVER
8568 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8569 S:      Supported
8570 W:      http://www.hisilicon.com
8571 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8572 F:      drivers/perf/hisilicon
8573
8574 HISILICON QM AND ZIP Controller DRIVER
8575 M:      Zhou Wang <wangzhou1@hisilicon.com>
8576 L:      linux-crypto@vger.kernel.org
8577 S:      Maintained
8578 F:      Documentation/ABI/testing/debugfs-hisi-zip
8579 F:      drivers/crypto/hisilicon/qm.c
8580 F:      drivers/crypto/hisilicon/qm.h
8581 F:      drivers/crypto/hisilicon/sgl.c
8582 F:      drivers/crypto/hisilicon/zip/
8583
8584 HISILICON ROCE DRIVER
8585 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8586 M:      Weihang Li <liweihang@huawei.com>
8587 L:      linux-rdma@vger.kernel.org
8588 S:      Maintained
8589 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8590 F:      drivers/infiniband/hw/hns/
8591
8592 HISILICON SAS Controller
8593 M:      John Garry <john.garry@huawei.com>
8594 S:      Supported
8595 W:      http://www.hisilicon.com
8596 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8597 F:      drivers/scsi/hisi_sas/
8598
8599 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8600 M:      Zaibo Xu <xuzaibo@huawei.com>
8601 L:      linux-crypto@vger.kernel.org
8602 S:      Maintained
8603 F:      Documentation/ABI/testing/debugfs-hisi-sec
8604 F:      drivers/crypto/hisilicon/sec2/sec.h
8605 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8606 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8607 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8608
8609 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8610 M:      Jay Fang <f.fangjian@huawei.com>
8611 L:      linux-spi@vger.kernel.org
8612 S:      Maintained
8613 W:      http://www.hisilicon.com
8614 F:      drivers/spi/spi-hisi-kunpeng.c
8615
8616 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8617 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8618 L:      linux-kernel@vger.kernel.org
8619 S:      Maintained
8620 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8621 F:      drivers/spmi/hisi-spmi-controller.c
8622
8623 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8624 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8625 L:      linux-kernel@vger.kernel.org
8626 S:      Maintained
8627 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8628 F:      drivers/mfd/hi6421-spmi-pmic.c
8629
8630 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8631 M:      Zaibo Xu <xuzaibo@huawei.com>
8632 S:      Maintained
8633 F:      drivers/crypto/hisilicon/trng/trng.c
8634
8635 HISILICON V3XX SPI NOR FLASH Controller Driver
8636 M:      John Garry <john.garry@huawei.com>
8637 S:      Maintained
8638 W:      http://www.hisilicon.com
8639 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8640
8641 HMM - Heterogeneous Memory Management
8642 M:      Jérôme Glisse <jglisse@redhat.com>
8643 L:      linux-mm@kvack.org
8644 S:      Maintained
8645 F:      Documentation/vm/hmm.rst
8646 F:      include/linux/hmm*
8647 F:      lib/test_hmm*
8648 F:      mm/hmm*
8649 F:      tools/testing/selftests/vm/*hmm*
8650
8651 HOST AP DRIVER
8652 M:      Jouni Malinen <j@w1.fi>
8653 L:      linux-wireless@vger.kernel.org
8654 S:      Obsolete
8655 W:      http://w1.fi/hostap-driver.html
8656 F:      drivers/net/wireless/intersil/hostap/
8657
8658 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8659 L:      platform-driver-x86@vger.kernel.org
8660 S:      Orphan
8661 F:      drivers/platform/x86/tc1100-wmi.c
8662
8663 HPET:   High Precision Event Timers driver
8664 M:      Clemens Ladisch <clemens@ladisch.de>
8665 S:      Maintained
8666 F:      Documentation/timers/hpet.rst
8667 F:      drivers/char/hpet.c
8668 F:      include/linux/hpet.h
8669 F:      include/uapi/linux/hpet.h
8670
8671 HPET:   x86
8672 S:      Orphan
8673 F:      arch/x86/include/asm/hpet.h
8674 F:      arch/x86/kernel/hpet.c
8675
8676 HPFS FILESYSTEM
8677 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8678 S:      Maintained
8679 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8680 F:      fs/hpfs/
8681
8682 HSI SUBSYSTEM
8683 M:      Sebastian Reichel <sre@kernel.org>
8684 S:      Maintained
8685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8686 F:      Documentation/ABI/testing/sysfs-bus-hsi
8687 F:      Documentation/driver-api/hsi.rst
8688 F:      drivers/hsi/
8689 F:      include/linux/hsi/
8690 F:      include/uapi/linux/hsi/
8691
8692 HSO 3G MODEM DRIVER
8693 L:      linux-usb@vger.kernel.org
8694 S:      Orphan
8695 F:      drivers/net/usb/hso.c
8696
8697 HSR NETWORK PROTOCOL
8698 L:      netdev@vger.kernel.org
8699 S:      Orphan
8700 F:      net/hsr/
8701
8702 HT16K33 LED CONTROLLER DRIVER
8703 M:      Robin van der Gracht <robin@protonic.nl>
8704 S:      Maintained
8705 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8706 F:      drivers/auxdisplay/ht16k33.c
8707
8708 HTCPEN TOUCHSCREEN DRIVER
8709 M:      Pau Oliva Fora <pof@eslack.org>
8710 L:      linux-input@vger.kernel.org
8711 S:      Maintained
8712 F:      drivers/input/touchscreen/htcpen.c
8713
8714 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8715 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8716 L:      linux-iio@vger.kernel.org
8717 S:      Maintained
8718 W:      http://www.st.com/
8719 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8720 F:      drivers/iio/humidity/hts221*
8721
8722 HUAWEI ETHERNET DRIVER
8723 L:      netdev@vger.kernel.org
8724 S:      Orphan
8725 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8726 F:      drivers/net/ethernet/huawei/hinic/
8727
8728 HUGETLB FILESYSTEM
8729 M:      Mike Kravetz <mike.kravetz@oracle.com>
8730 L:      linux-mm@kvack.org
8731 S:      Maintained
8732 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8733 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8734 F:      Documentation/vm/hugetlbfs_reserv.rst
8735 F:      fs/hugetlbfs/
8736 F:      include/linux/hugetlb.h
8737 F:      mm/hugetlb.c
8738
8739 HVA ST MEDIA DRIVER
8740 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8741 L:      linux-media@vger.kernel.org
8742 S:      Supported
8743 W:      https://linuxtv.org
8744 T:      git git://linuxtv.org/media_tree.git
8745 F:      drivers/media/platform/sti/hva
8746
8747 HWPOISON MEMORY FAILURE HANDLING
8748 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8749 L:      linux-mm@kvack.org
8750 S:      Maintained
8751 F:      mm/hwpoison-inject.c
8752 F:      mm/memory-failure.c
8753
8754 HYCON HY46XX TOUCHSCREEN SUPPORT
8755 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8756 L:      linux-input@vger.kernel.org
8757 S:      Maintained
8758 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8759 F:      drivers/input/touchscreen/hycon-hy46xx.c
8760
8761 HYGON PROCESSOR SUPPORT
8762 M:      Pu Wen <puwen@hygon.cn>
8763 L:      linux-kernel@vger.kernel.org
8764 S:      Maintained
8765 F:      arch/x86/kernel/cpu/hygon.c
8766
8767 HYNIX HI556 SENSOR DRIVER
8768 M:      Shawn Tu <shawnx.tu@intel.com>
8769 L:      linux-media@vger.kernel.org
8770 S:      Maintained
8771 T:      git git://linuxtv.org/media_tree.git
8772 F:      drivers/media/i2c/hi556.c
8773
8774 HYNIX HI846 SENSOR DRIVER
8775 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8776 L:      linux-media@vger.kernel.org
8777 S:      Maintained
8778 F:      drivers/media/i2c/hi846.c
8779
8780 Hyper-V/Azure CORE AND DRIVERS
8781 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8782 M:      Haiyang Zhang <haiyangz@microsoft.com>
8783 M:      Stephen Hemminger <sthemmin@microsoft.com>
8784 M:      Wei Liu <wei.liu@kernel.org>
8785 M:      Dexuan Cui <decui@microsoft.com>
8786 L:      linux-hyperv@vger.kernel.org
8787 S:      Supported
8788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8789 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8790 F:      Documentation/ABI/testing/debugfs-hyperv
8791 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8792 F:      arch/arm64/hyperv
8793 F:      arch/arm64/include/asm/hyperv-tlfs.h
8794 F:      arch/arm64/include/asm/mshyperv.h
8795 F:      arch/x86/hyperv
8796 F:      arch/x86/include/asm/hyperv-tlfs.h
8797 F:      arch/x86/include/asm/mshyperv.h
8798 F:      arch/x86/include/asm/trace/hyperv.h
8799 F:      arch/x86/kernel/cpu/mshyperv.c
8800 F:      drivers/clocksource/hyperv_timer.c
8801 F:      drivers/hid/hid-hyperv.c
8802 F:      drivers/hv/
8803 F:      drivers/input/serio/hyperv-keyboard.c
8804 F:      drivers/iommu/hyperv-iommu.c
8805 F:      drivers/net/ethernet/microsoft/
8806 F:      drivers/net/hyperv/
8807 F:      drivers/pci/controller/pci-hyperv-intf.c
8808 F:      drivers/pci/controller/pci-hyperv.c
8809 F:      drivers/scsi/storvsc_drv.c
8810 F:      drivers/uio/uio_hv_generic.c
8811 F:      drivers/video/fbdev/hyperv_fb.c
8812 F:      include/asm-generic/hyperv-tlfs.h
8813 F:      include/asm-generic/mshyperv.h
8814 F:      include/clocksource/hyperv_timer.h
8815 F:      include/linux/hyperv.h
8816 F:      include/uapi/linux/hyperv.h
8817 F:      net/vmw_vsock/hyperv_transport.c
8818 F:      tools/hv/
8819
8820 HYPERBUS SUPPORT
8821 M:      Vignesh Raghavendra <vigneshr@ti.com>
8822 L:      linux-mtd@lists.infradead.org
8823 S:      Supported
8824 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8825 C:      irc://irc.oftc.net/mtd
8826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8827 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
8828 F:      drivers/mtd/hyperbus/
8829 F:      include/linux/mtd/hyperbus.h
8830
8831 HYPERVISOR VIRTUAL CONSOLE DRIVER
8832 L:      linuxppc-dev@lists.ozlabs.org
8833 S:      Odd Fixes
8834 F:      drivers/tty/hvc/
8835
8836 I2C ACPI SUPPORT
8837 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8838 L:      linux-i2c@vger.kernel.org
8839 L:      linux-acpi@vger.kernel.org
8840 S:      Maintained
8841 F:      drivers/i2c/i2c-core-acpi.c
8842
8843 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8844 M:      Ajay Gupta <ajayg@nvidia.com>
8845 L:      linux-i2c@vger.kernel.org
8846 S:      Maintained
8847 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8848 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8849
8850 I2C MUXES
8851 M:      Peter Rosin <peda@axentia.se>
8852 L:      linux-i2c@vger.kernel.org
8853 S:      Maintained
8854 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8855 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8856 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8857 F:      Documentation/i2c/i2c-topology.rst
8858 F:      Documentation/i2c/muxes/
8859 F:      drivers/i2c/i2c-mux.c
8860 F:      drivers/i2c/muxes/
8861 F:      include/linux/i2c-mux.h
8862
8863 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8864 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8865 L:      linux-i2c@vger.kernel.org
8866 S:      Maintained
8867 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8868 F:      drivers/i2c/busses/i2c-mv64xxx.c
8869
8870 I2C OVER PARALLEL PORT
8871 M:      Jean Delvare <jdelvare@suse.com>
8872 L:      linux-i2c@vger.kernel.org
8873 S:      Maintained
8874 F:      Documentation/i2c/busses/i2c-parport.rst
8875 F:      drivers/i2c/busses/i2c-parport.c
8876
8877 I2C SUBSYSTEM
8878 M:      Wolfram Sang <wsa@kernel.org>
8879 L:      linux-i2c@vger.kernel.org
8880 S:      Maintained
8881 W:      https://i2c.wiki.kernel.org/
8882 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8884 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8885 F:      Documentation/i2c/
8886 F:      drivers/i2c/*
8887 F:      include/linux/i2c-dev.h
8888 F:      include/linux/i2c-smbus.h
8889 F:      include/linux/i2c.h
8890 F:      include/uapi/linux/i2c-*.h
8891 F:      include/uapi/linux/i2c.h
8892
8893 I2C SUBSYSTEM HOST DRIVERS
8894 L:      linux-i2c@vger.kernel.org
8895 S:      Odd Fixes
8896 W:      https://i2c.wiki.kernel.org/
8897 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8899 F:      Documentation/devicetree/bindings/i2c/
8900 F:      drivers/i2c/algos/
8901 F:      drivers/i2c/busses/
8902
8903 I2C-TAOS-EVM DRIVER
8904 M:      Jean Delvare <jdelvare@suse.com>
8905 L:      linux-i2c@vger.kernel.org
8906 S:      Maintained
8907 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8908 F:      drivers/i2c/busses/i2c-taos-evm.c
8909
8910 I2C-TINY-USB DRIVER
8911 M:      Till Harbaum <till@harbaum.org>
8912 L:      linux-i2c@vger.kernel.org
8913 S:      Maintained
8914 W:      http://www.harbaum.org/till/i2c_tiny_usb
8915 F:      drivers/i2c/busses/i2c-tiny-usb.c
8916
8917 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8918 M:      Jean Delvare <jdelvare@suse.com>
8919 L:      linux-i2c@vger.kernel.org
8920 S:      Maintained
8921 F:      Documentation/i2c/busses/i2c-ali1535.rst
8922 F:      Documentation/i2c/busses/i2c-ali1563.rst
8923 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8924 F:      Documentation/i2c/busses/i2c-amd756.rst
8925 F:      Documentation/i2c/busses/i2c-amd8111.rst
8926 F:      Documentation/i2c/busses/i2c-i801.rst
8927 F:      Documentation/i2c/busses/i2c-nforce2.rst
8928 F:      Documentation/i2c/busses/i2c-piix4.rst
8929 F:      Documentation/i2c/busses/i2c-sis5595.rst
8930 F:      Documentation/i2c/busses/i2c-sis630.rst
8931 F:      Documentation/i2c/busses/i2c-sis96x.rst
8932 F:      Documentation/i2c/busses/i2c-via.rst
8933 F:      Documentation/i2c/busses/i2c-viapro.rst
8934 F:      drivers/i2c/busses/i2c-ali1535.c
8935 F:      drivers/i2c/busses/i2c-ali1563.c
8936 F:      drivers/i2c/busses/i2c-ali15x3.c
8937 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8938 F:      drivers/i2c/busses/i2c-amd756.c
8939 F:      drivers/i2c/busses/i2c-amd8111.c
8940 F:      drivers/i2c/busses/i2c-i801.c
8941 F:      drivers/i2c/busses/i2c-isch.c
8942 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8943 F:      drivers/i2c/busses/i2c-nforce2.c
8944 F:      drivers/i2c/busses/i2c-piix4.c
8945 F:      drivers/i2c/busses/i2c-sis5595.c
8946 F:      drivers/i2c/busses/i2c-sis630.c
8947 F:      drivers/i2c/busses/i2c-sis96x.c
8948 F:      drivers/i2c/busses/i2c-via.c
8949 F:      drivers/i2c/busses/i2c-viapro.c
8950
8951 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8952 M:      Hans de Goede <hdegoede@redhat.com>
8953 L:      linux-i2c@vger.kernel.org
8954 S:      Maintained
8955 F:      drivers/i2c/busses/i2c-cht-wc.c
8956
8957 I2C/SMBUS ISMT DRIVER
8958 M:      Seth Heasley <seth.heasley@intel.com>
8959 M:      Neil Horman <nhorman@tuxdriver.com>
8960 L:      linux-i2c@vger.kernel.org
8961 F:      Documentation/i2c/busses/i2c-ismt.rst
8962 F:      drivers/i2c/busses/i2c-ismt.c
8963
8964 I2C/SMBUS STUB DRIVER
8965 M:      Jean Delvare <jdelvare@suse.com>
8966 L:      linux-i2c@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/i2c/i2c-stub.c
8969
8970 I3C DRIVER FOR CADENCE I3C MASTER IP
8971 M:      Przemysław Gaj <pgaj@cadence.com>
8972 S:      Maintained
8973 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8974 F:      drivers/i3c/master/i3c-master-cdns.c
8975
8976 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8977 M:      Vitor Soares <vitor.soares@synopsys.com>
8978 S:      Maintained
8979 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8980 F:      drivers/i3c/master/dw*
8981
8982 I3C SUBSYSTEM
8983 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8984 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8985 S:      Maintained
8986 C:      irc://chat.freenode.net/linux-i3c
8987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8988 F:      Documentation/ABI/testing/sysfs-bus-i3c
8989 F:      Documentation/devicetree/bindings/i3c/
8990 F:      Documentation/driver-api/i3c
8991 F:      drivers/i3c/
8992 F:      include/linux/i3c/
8993
8994 IA64 (Itanium) PLATFORM
8995 L:      linux-ia64@vger.kernel.org
8996 S:      Orphan
8997 F:      Documentation/ia64/
8998 F:      arch/ia64/
8999
9000 IBM Power 842 compression accelerator
9001 M:      Haren Myneni <haren@us.ibm.com>
9002 S:      Supported
9003 F:      crypto/842.c
9004 F:      drivers/crypto/nx/Kconfig
9005 F:      drivers/crypto/nx/Makefile
9006 F:      drivers/crypto/nx/nx-842*
9007 F:      include/linux/sw842.h
9008 F:      lib/842/
9009
9010 IBM Power in-Nest Crypto Acceleration
9011 M:      Breno Leitão <leitao@debian.org>
9012 M:      Nayna Jain <nayna@linux.ibm.com>
9013 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9014 L:      linux-crypto@vger.kernel.org
9015 S:      Supported
9016 F:      drivers/crypto/nx/Kconfig
9017 F:      drivers/crypto/nx/Makefile
9018 F:      drivers/crypto/nx/nx-aes*
9019 F:      drivers/crypto/nx/nx-sha*
9020 F:      drivers/crypto/nx/nx.*
9021 F:      drivers/crypto/nx/nx_csbcpb.h
9022 F:      drivers/crypto/nx/nx_debugfs.c
9023
9024 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9025 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9026 L:      linux-pci@vger.kernel.org
9027 L:      linuxppc-dev@lists.ozlabs.org
9028 S:      Supported
9029 F:      drivers/pci/hotplug/rpadlpar*
9030
9031 IBM Power Linux RAID adapter
9032 M:      Brian King <brking@us.ibm.com>
9033 S:      Supported
9034 F:      drivers/scsi/ipr.*
9035
9036 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9037 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9038 L:      linux-pci@vger.kernel.org
9039 L:      linuxppc-dev@lists.ozlabs.org
9040 S:      Supported
9041 F:      drivers/pci/hotplug/rpaphp*
9042
9043 IBM Power SRIOV Virtual NIC Device Driver
9044 M:      Dany Madden <drt@linux.ibm.com>
9045 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9046 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9047 L:      netdev@vger.kernel.org
9048 S:      Supported
9049 F:      drivers/net/ethernet/ibm/ibmvnic.*
9050
9051 IBM Power Virtual Accelerator Switchboard
9052 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9053 L:      linuxppc-dev@lists.ozlabs.org
9054 S:      Supported
9055 F:      arch/powerpc/include/asm/vas.h
9056 F:      arch/powerpc/platforms/powernv/copy-paste.h
9057 F:      arch/powerpc/platforms/powernv/vas*
9058
9059 IBM Power Virtual Ethernet Device Driver
9060 M:      Cristobal Forno <cforno12@linux.ibm.com>
9061 L:      netdev@vger.kernel.org
9062 S:      Supported
9063 F:      drivers/net/ethernet/ibm/ibmveth.*
9064
9065 IBM Power Virtual FC Device Drivers
9066 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9067 L:      linux-scsi@vger.kernel.org
9068 S:      Supported
9069 F:      drivers/scsi/ibmvscsi/ibmvfc*
9070
9071 IBM Power Virtual Management Channel Driver
9072 M:      Brad Warrum <bwarrum@linux.ibm.com>
9073 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9074 S:      Supported
9075 F:      drivers/misc/ibmvmc.*
9076
9077 IBM Power Virtual SCSI Device Drivers
9078 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9079 L:      linux-scsi@vger.kernel.org
9080 S:      Supported
9081 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9082 F:      include/scsi/viosrp.h
9083
9084 IBM Power Virtual SCSI Device Target Driver
9085 M:      Michael Cyr <mikecyr@linux.ibm.com>
9086 L:      linux-scsi@vger.kernel.org
9087 L:      target-devel@vger.kernel.org
9088 S:      Supported
9089 F:      drivers/scsi/ibmvscsi_tgt/
9090
9091 IBM Power VMX Cryptographic instructions
9092 M:      Breno Leitão <leitao@debian.org>
9093 M:      Nayna Jain <nayna@linux.ibm.com>
9094 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9095 L:      linux-crypto@vger.kernel.org
9096 S:      Supported
9097 F:      drivers/crypto/vmx/Kconfig
9098 F:      drivers/crypto/vmx/Makefile
9099 F:      drivers/crypto/vmx/aes*
9100 F:      drivers/crypto/vmx/ghash*
9101 F:      drivers/crypto/vmx/ppc-xlate.pl
9102 F:      drivers/crypto/vmx/vmx.c
9103
9104 IBM ServeRAID RAID DRIVER
9105 S:      Orphan
9106 F:      drivers/scsi/ips.*
9107
9108 ICH LPC AND GPIO DRIVER
9109 M:      Peter Tyser <ptyser@xes-inc.com>
9110 S:      Maintained
9111 F:      drivers/gpio/gpio-ich.c
9112 F:      drivers/mfd/lpc_ich.c
9113
9114 ICY I2C DRIVER
9115 M:      Max Staudt <max@enpas.org>
9116 L:      linux-i2c@vger.kernel.org
9117 S:      Maintained
9118 F:      drivers/i2c/busses/i2c-icy.c
9119
9120 IDEAPAD LAPTOP EXTRAS DRIVER
9121 M:      Ike Panhc <ike.pan@canonical.com>
9122 L:      platform-driver-x86@vger.kernel.org
9123 S:      Maintained
9124 W:      http://launchpad.net/ideapad-laptop
9125 F:      drivers/platform/x86/ideapad-laptop.c
9126
9127 IDEAPAD LAPTOP SLIDEBAR DRIVER
9128 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9129 L:      linux-input@vger.kernel.org
9130 S:      Maintained
9131 W:      https://github.com/o2genum/ideapad-slidebar
9132 F:      drivers/input/misc/ideapad_slidebar.c
9133
9134 IDT VersaClock 5 CLOCK DRIVER
9135 M:      Luca Ceresoli <luca@lucaceresoli.net>
9136 S:      Maintained
9137 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9138 F:      drivers/clk/clk-versaclock5.c
9139
9140 IEEE 802.15.4 SUBSYSTEM
9141 M:      Alexander Aring <alex.aring@gmail.com>
9142 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9143 L:      linux-wpan@vger.kernel.org
9144 S:      Maintained
9145 W:      https://linux-wpan.org/
9146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9148 F:      Documentation/networking/ieee802154.rst
9149 F:      drivers/net/ieee802154/
9150 F:      include/linux/ieee802154.h
9151 F:      include/linux/nl802154.h
9152 F:      include/net/af_ieee802154.h
9153 F:      include/net/cfg802154.h
9154 F:      include/net/ieee802154_netdev.h
9155 F:      include/net/mac802154.h
9156 F:      include/net/nl802154.h
9157 F:      net/ieee802154/
9158 F:      net/mac802154/
9159
9160 IFE PROTOCOL
9161 M:      Yotam Gigi <yotam.gi@gmail.com>
9162 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9163 F:      include/net/ife.h
9164 F:      include/uapi/linux/ife.h
9165 F:      net/ife
9166
9167 IGORPLUG-USB IR RECEIVER
9168 M:      Sean Young <sean@mess.org>
9169 L:      linux-media@vger.kernel.org
9170 S:      Maintained
9171 F:      drivers/media/rc/igorplugusb.c
9172
9173 IGUANAWORKS USB IR TRANSCEIVER
9174 M:      Sean Young <sean@mess.org>
9175 L:      linux-media@vger.kernel.org
9176 S:      Maintained
9177 F:      drivers/media/rc/iguanair.c
9178
9179 IIO DIGITAL POTENTIOMETER DAC
9180 M:      Peter Rosin <peda@axentia.se>
9181 L:      linux-iio@vger.kernel.org
9182 S:      Maintained
9183 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9184 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9185 F:      drivers/iio/dac/dpot-dac.c
9186
9187 IIO ENVELOPE DETECTOR
9188 M:      Peter Rosin <peda@axentia.se>
9189 L:      linux-iio@vger.kernel.org
9190 S:      Maintained
9191 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9192 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9193 F:      drivers/iio/adc/envelope-detector.c
9194
9195 IIO MULTIPLEXER
9196 M:      Peter Rosin <peda@axentia.se>
9197 L:      linux-iio@vger.kernel.org
9198 S:      Maintained
9199 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9200 F:      drivers/iio/multiplexer/iio-mux.c
9201
9202 IIO SCMI BASED DRIVER
9203 M:      Jyoti Bhayana <jbhayana@google.com>
9204 L:      linux-iio@vger.kernel.org
9205 S:      Maintained
9206 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9207
9208 IIO SUBSYSTEM AND DRIVERS
9209 M:      Jonathan Cameron <jic23@kernel.org>
9210 R:      Lars-Peter Clausen <lars@metafoo.de>
9211 L:      linux-iio@vger.kernel.org
9212 S:      Maintained
9213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9214 F:      Documentation/ABI/testing/configfs-iio*
9215 F:      Documentation/ABI/testing/sysfs-bus-iio*
9216 F:      Documentation/devicetree/bindings/iio/
9217 F:      drivers/iio/
9218 F:      drivers/staging/iio/
9219 F:      include/linux/iio/
9220 F:      tools/iio/
9221
9222 IIO UNIT CONVERTER
9223 M:      Peter Rosin <peda@axentia.se>
9224 L:      linux-iio@vger.kernel.org
9225 S:      Maintained
9226 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9227 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9228 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9229 F:      drivers/iio/afe/iio-rescale.c
9230
9231 IKANOS/ADI EAGLE ADSL USB DRIVER
9232 M:      Matthieu Castet <castet.matthieu@free.fr>
9233 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9234 S:      Maintained
9235 F:      drivers/usb/atm/ueagle-atm.c
9236
9237 IMGTEC ASCII LCD DRIVER
9238 M:      Paul Burton <paulburton@kernel.org>
9239 S:      Maintained
9240 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9241 F:      drivers/auxdisplay/img-ascii-lcd.c
9242
9243 IMGTEC IR DECODER DRIVER
9244 S:      Orphan
9245 F:      drivers/media/rc/img-ir/
9246
9247 IMON SOUNDGRAPH USB IR RECEIVER
9248 M:      Sean Young <sean@mess.org>
9249 L:      linux-media@vger.kernel.org
9250 S:      Maintained
9251 F:      drivers/media/rc/imon.c
9252 F:      drivers/media/rc/imon_raw.c
9253
9254 IMS TWINTURBO FRAMEBUFFER DRIVER
9255 L:      linux-fbdev@vger.kernel.org
9256 S:      Orphan
9257 F:      drivers/video/fbdev/imsttfb.c
9258
9259 INA209 HARDWARE MONITOR DRIVER
9260 M:      Guenter Roeck <linux@roeck-us.net>
9261 L:      linux-hwmon@vger.kernel.org
9262 S:      Maintained
9263 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9264 F:      Documentation/hwmon/ina209.rst
9265 F:      drivers/hwmon/ina209.c
9266
9267 INA2XX HARDWARE MONITOR DRIVER
9268 M:      Guenter Roeck <linux@roeck-us.net>
9269 L:      linux-hwmon@vger.kernel.org
9270 S:      Maintained
9271 F:      Documentation/hwmon/ina2xx.rst
9272 F:      drivers/hwmon/ina2xx.c
9273 F:      include/linux/platform_data/ina2xx.h
9274
9275 INDUSTRY PACK SUBSYSTEM (IPACK)
9276 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9277 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9278 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9279 L:      industrypack-devel@lists.sourceforge.net
9280 S:      Maintained
9281 W:      http://industrypack.sourceforge.net
9282 F:      drivers/ipack/
9283
9284 INFINEON DPS310 Driver
9285 M:      Eddie James <eajames@linux.ibm.com>
9286 L:      linux-iio@vger.kernel.org
9287 S:      Maintained
9288 F:      drivers/iio/pressure/dps310.c
9289
9290 INFINIBAND SUBSYSTEM
9291 M:      Doug Ledford <dledford@redhat.com>
9292 M:      Jason Gunthorpe <jgg@nvidia.com>
9293 L:      linux-rdma@vger.kernel.org
9294 S:      Supported
9295 W:      https://github.com/linux-rdma/rdma-core
9296 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9298 F:      Documentation/devicetree/bindings/infiniband/
9299 F:      Documentation/infiniband/
9300 F:      drivers/infiniband/
9301 F:      include/rdma/
9302 F:      include/trace/events/ib_mad.h
9303 F:      include/trace/events/ib_umad.h
9304 F:      include/uapi/linux/if_infiniband.h
9305 F:      include/uapi/rdma/
9306 F:      samples/bpf/ibumad_kern.c
9307 F:      samples/bpf/ibumad_user.c
9308
9309 INGENIC JZ4780 NAND DRIVER
9310 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9311 L:      linux-mtd@lists.infradead.org
9312 L:      linux-mips@vger.kernel.org
9313 S:      Maintained
9314 F:      drivers/mtd/nand/raw/ingenic/
9315
9316 INGENIC JZ47xx SoCs
9317 M:      Paul Cercueil <paul@crapouillou.net>
9318 L:      linux-mips@vger.kernel.org
9319 S:      Maintained
9320 F:      arch/mips/boot/dts/ingenic/
9321 F:      arch/mips/generic/board-ingenic.c
9322 F:      arch/mips/include/asm/mach-ingenic/
9323 F:      arch/mips/ingenic/Kconfig
9324 F:      drivers/clk/ingenic/
9325 F:      drivers/dma/dma-jz4780.c
9326 F:      drivers/gpu/drm/ingenic/
9327 F:      drivers/i2c/busses/i2c-jz4780.c
9328 F:      drivers/iio/adc/ingenic-adc.c
9329 F:      drivers/irqchip/irq-ingenic.c
9330 F:      drivers/memory/jz4780-nemc.c
9331 F:      drivers/mmc/host/jz4740_mmc.c
9332 F:      drivers/mtd/nand/raw/ingenic/
9333 F:      drivers/pinctrl/pinctrl-ingenic.c
9334 F:      drivers/power/supply/ingenic-battery.c
9335 F:      drivers/pwm/pwm-jz4740.c
9336 F:      drivers/remoteproc/ingenic_rproc.c
9337 F:      drivers/rtc/rtc-jz4740.c
9338 F:      drivers/tty/serial/8250/8250_ingenic.c
9339 F:      drivers/usb/musb/jz4740.c
9340 F:      drivers/watchdog/jz4740_wdt.c
9341 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9342 F:      include/linux/mfd/ingenic-tcu.h
9343 F:      sound/soc/codecs/jz47*
9344 F:      sound/soc/jz4740/
9345
9346 INOTIFY
9347 M:      Jan Kara <jack@suse.cz>
9348 R:      Amir Goldstein <amir73il@gmail.com>
9349 L:      linux-fsdevel@vger.kernel.org
9350 S:      Maintained
9351 F:      Documentation/filesystems/inotify.rst
9352 F:      fs/notify/inotify/
9353 F:      include/linux/inotify.h
9354 F:      include/uapi/linux/inotify.h
9355
9356 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9357 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9358 L:      linux-input@vger.kernel.org
9359 S:      Maintained
9360 Q:      http://patchwork.kernel.org/project/linux-input/list/
9361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9362 F:      Documentation/devicetree/bindings/input/
9363 F:      Documentation/devicetree/bindings/serio/
9364 F:      Documentation/input/
9365 F:      drivers/input/
9366 F:      include/linux/input.h
9367 F:      include/linux/input/
9368 F:      include/uapi/linux/input-event-codes.h
9369 F:      include/uapi/linux/input.h
9370
9371 INPUT MULTITOUCH (MT) PROTOCOL
9372 M:      Henrik Rydberg <rydberg@bitmath.org>
9373 L:      linux-input@vger.kernel.org
9374 S:      Odd fixes
9375 F:      Documentation/input/multi-touch-protocol.rst
9376 F:      drivers/input/input-mt.c
9377 K:      \b(ABS|SYN)_MT_
9378
9379 INSIDE SECURE CRYPTO DRIVER
9380 M:      Antoine Tenart <atenart@kernel.org>
9381 L:      linux-crypto@vger.kernel.org
9382 S:      Maintained
9383 F:      drivers/crypto/inside-secure/
9384
9385 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9386 M:      Mimi Zohar <zohar@linux.ibm.com>
9387 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9388 L:      linux-integrity@vger.kernel.org
9389 S:      Supported
9390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9391 F:      security/integrity/ima/
9392
9393 INTEL 810/815 FRAMEBUFFER DRIVER
9394 M:      Antonino Daplas <adaplas@gmail.com>
9395 L:      linux-fbdev@vger.kernel.org
9396 S:      Maintained
9397 F:      drivers/video/fbdev/i810/
9398
9399 INTEL ASoC DRIVERS
9400 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9401 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9402 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9403 M:      Jie Yang <yang.jie@linux.intel.com>
9404 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9405 S:      Supported
9406 F:      sound/soc/intel/
9407
9408 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9409 M:      Hans de Goede <hdegoede@redhat.com>
9410 L:      platform-driver-x86@vger.kernel.org
9411 S:      Maintained
9412 F:      drivers/platform/x86/intel/atomisp2/pm.c
9413
9414 INTEL ATOMISP2 LED DRIVER
9415 M:      Hans de Goede <hdegoede@redhat.com>
9416 L:      platform-driver-x86@vger.kernel.org
9417 S:      Maintained
9418 F:      drivers/platform/x86/intel/atomisp2/led.c
9419
9420 INTEL BIOS SAR INT1092 DRIVER
9421 M:      Shravan Sudhakar <s.shravan@intel.com>
9422 M:      Intel Corporation <linuxwwan@intel.com>
9423 L:      platform-driver-x86@vger.kernel.org
9424 S:      Maintained
9425 F:      drivers/platform/x86/intel/int1092/
9426
9427 INTEL BROXTON PMC DRIVER
9428 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9429 M:      Zha Qipeng <qipeng.zha@intel.com>
9430 S:      Maintained
9431 F:      drivers/mfd/intel_pmc_bxt.c
9432 F:      include/linux/mfd/intel_pmc_bxt.h
9433
9434 INTEL C600 SERIES SAS CONTROLLER DRIVER
9435 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9436 L:      linux-scsi@vger.kernel.org
9437 S:      Supported
9438 T:      git git://git.code.sf.net/p/intel-sas/isci
9439 F:      drivers/scsi/isci/
9440
9441 INTEL CPU family model numbers
9442 M:      Tony Luck <tony.luck@intel.com>
9443 M:      x86@kernel.org
9444 L:      linux-kernel@vger.kernel.org
9445 S:      Supported
9446 F:      arch/x86/include/asm/intel-family.h
9447
9448 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9449 M:      Jani Nikula <jani.nikula@linux.intel.com>
9450 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9451 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9452 L:      intel-gfx@lists.freedesktop.org
9453 S:      Supported
9454 W:      https://01.org/linuxgraphics/
9455 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9456 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9457 C:      irc://irc.oftc.net/intel-gfx
9458 T:      git git://anongit.freedesktop.org/drm-intel
9459 F:      Documentation/gpu/i915.rst
9460 F:      drivers/gpu/drm/i915/
9461 F:      include/drm/i915*
9462 F:      include/uapi/drm/i915_drm.h
9463
9464 INTEL ETHERNET DRIVERS
9465 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9466 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9467 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9468 S:      Supported
9469 W:      http://www.intel.com/support/feedback.htm
9470 W:      http://e1000.sourceforge.net/
9471 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9474 F:      Documentation/networking/device_drivers/ethernet/intel/
9475 F:      drivers/net/ethernet/intel/
9476 F:      drivers/net/ethernet/intel/*/
9477 F:      include/linux/avf/virtchnl.h
9478 F:      include/linux/net/intel/iidc.h
9479
9480 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9481 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9482 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9483 L:      linux-rdma@vger.kernel.org
9484 S:      Supported
9485 F:      drivers/infiniband/hw/irdma/
9486 F:      include/uapi/rdma/irdma-abi.h
9487
9488 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9489 M:      Maik Broemme <mbroemme@libmpq.org>
9490 L:      linux-fbdev@vger.kernel.org
9491 S:      Maintained
9492 F:      Documentation/fb/intelfb.rst
9493 F:      drivers/video/fbdev/intelfb/
9494
9495 INTEL GPIO DRIVERS
9496 M:      Andy Shevchenko <andy@kernel.org>
9497 L:      linux-gpio@vger.kernel.org
9498 S:      Maintained
9499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9500 F:      drivers/gpio/gpio-ich.c
9501 F:      drivers/gpio/gpio-merrifield.c
9502 F:      drivers/gpio/gpio-ml-ioh.c
9503 F:      drivers/gpio/gpio-pch.c
9504 F:      drivers/gpio/gpio-sch.c
9505 F:      drivers/gpio/gpio-sodaville.c
9506
9507 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9508 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9509 M:      Zhi Wang <zhi.a.wang@intel.com>
9510 L:      intel-gvt-dev@lists.freedesktop.org
9511 L:      intel-gfx@lists.freedesktop.org
9512 S:      Supported
9513 W:      https://01.org/igvt-g
9514 T:      git https://github.com/intel/gvt-linux.git
9515 F:      drivers/gpu/drm/i915/gvt/
9516
9517 INTEL HID EVENT DRIVER
9518 M:      Alex Hung <alex.hung@canonical.com>
9519 L:      platform-driver-x86@vger.kernel.org
9520 S:      Maintained
9521 F:      drivers/platform/x86/intel/hid.c
9522
9523 INTEL I/OAT DMA DRIVER
9524 M:      Dave Jiang <dave.jiang@intel.com>
9525 R:      Dan Williams <dan.j.williams@intel.com>
9526 L:      dmaengine@vger.kernel.org
9527 S:      Supported
9528 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9529 F:      drivers/dma/ioat*
9530
9531 INTEL IADX DRIVER
9532 M:      Dave Jiang <dave.jiang@intel.com>
9533 L:      dmaengine@vger.kernel.org
9534 S:      Supported
9535 F:      drivers/dma/idxd/*
9536 F:      include/uapi/linux/idxd.h
9537
9538 INTEL IDLE DRIVER
9539 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9540 M:      Len Brown <lenb@kernel.org>
9541 L:      linux-pm@vger.kernel.org
9542 S:      Supported
9543 B:      https://bugzilla.kernel.org
9544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9545 F:      drivers/idle/intel_idle.c
9546
9547 INTEL INTEGRATED SENSOR HUB DRIVER
9548 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9549 M:      Jiri Kosina <jikos@kernel.org>
9550 L:      linux-input@vger.kernel.org
9551 S:      Maintained
9552 F:      drivers/hid/intel-ish-hid/
9553
9554 INTEL IOMMU (VT-d)
9555 M:      David Woodhouse <dwmw2@infradead.org>
9556 M:      Lu Baolu <baolu.lu@linux.intel.com>
9557 L:      iommu@lists.linux-foundation.org
9558 S:      Supported
9559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9560 F:      drivers/iommu/intel/
9561 F:      include/linux/intel-iommu.h
9562 F:      include/linux/intel-svm.h
9563
9564 INTEL IOP-ADMA DMA DRIVER
9565 R:      Dan Williams <dan.j.williams@intel.com>
9566 S:      Odd fixes
9567 F:      drivers/dma/iop-adma.c
9568
9569 INTEL IPU3 CSI-2 CIO2 DRIVER
9570 M:      Yong Zhi <yong.zhi@intel.com>
9571 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9572 M:      Bingbu Cao <bingbu.cao@intel.com>
9573 M:      Dan Scally <djrscally@gmail.com>
9574 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9575 L:      linux-media@vger.kernel.org
9576 S:      Maintained
9577 T:      git git://linuxtv.org/media_tree.git
9578 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9579 F:      drivers/media/pci/intel/ipu3/
9580
9581 INTEL IPU3 CSI-2 IMGU DRIVER
9582 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9583 R:      Bingbu Cao <bingbu.cao@intel.com>
9584 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9585 L:      linux-media@vger.kernel.org
9586 S:      Maintained
9587 F:      Documentation/admin-guide/media/ipu3.rst
9588 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9589 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9590 F:      drivers/staging/media/ipu3/
9591
9592 INTEL IXP4XX CRYPTO SUPPORT
9593 M:      Corentin Labbe <clabbe@baylibre.com>
9594 L:      linux-crypto@vger.kernel.org
9595 S:      Maintained
9596 F:      drivers/crypto/ixp4xx_crypto.c
9597
9598 INTEL ISHTP ECLITE DRIVER
9599 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9600 L:      platform-driver-x86@vger.kernel.org
9601 S:      Supported
9602 F:      drivers/platform/x86/intel/ishtp_eclite.c
9603
9604 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9605 M:      Krzysztof Halasa <khalasa@piap.pl>
9606 S:      Maintained
9607 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9608 F:      drivers/net/wan/ixp4xx_hss.c
9609 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9610 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9611 F:      include/linux/soc/ixp4xx/npe.h
9612 F:      include/linux/soc/ixp4xx/qmgr.h
9613
9614 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9615 M:      Deepak Saxena <dsaxena@plexity.net>
9616 S:      Maintained
9617 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9618 F:      drivers/char/hw_random/ixp4xx-rng.c
9619
9620 INTEL KEEM BAY DRM DRIVER
9621 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9622 M:      Edmund Dea <edmund.j.dea@intel.com>
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9625 F:      drivers/gpu/drm/kmb/
9626
9627 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9628 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9629 S:      Maintained
9630 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9631 F:      drivers/crypto/keembay/Kconfig
9632 F:      drivers/crypto/keembay/Makefile
9633 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9634 F:      drivers/crypto/keembay/ocs-aes.c
9635 F:      drivers/crypto/keembay/ocs-aes.h
9636
9637 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9638 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9639 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9640 M:      Mark Gross <mgross@linux.intel.com>
9641 S:      Maintained
9642 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9643 F:      drivers/crypto/keembay/Kconfig
9644 F:      drivers/crypto/keembay/Makefile
9645 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9646 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9647
9648 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9649 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9650 M:      Declan Murphy <declan.murphy@intel.com>
9651 S:      Maintained
9652 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9653 F:      drivers/crypto/keembay/Kconfig
9654 F:      drivers/crypto/keembay/Makefile
9655 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9656 F:      drivers/crypto/keembay/ocs-hcu.c
9657 F:      drivers/crypto/keembay/ocs-hcu.h
9658
9659 INTEL MANAGEMENT ENGINE (mei)
9660 M:      Tomas Winkler <tomas.winkler@intel.com>
9661 L:      linux-kernel@vger.kernel.org
9662 S:      Supported
9663 F:      Documentation/driver-api/mei/*
9664 F:      drivers/misc/mei/
9665 F:      drivers/watchdog/mei_wdt.c
9666 F:      include/linux/mei_cl_bus.h
9667 F:      include/uapi/linux/mei.h
9668 F:      samples/mei/*
9669
9670 INTEL MAX 10 BMC MFD DRIVER
9671 M:      Xu Yilun <yilun.xu@intel.com>
9672 R:      Tom Rix <trix@redhat.com>
9673 S:      Maintained
9674 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9675 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9676 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9677 F:      drivers/mfd/intel-m10-bmc.c
9678 F:      include/linux/mfd/intel-m10-bmc.h
9679
9680 INTEL MENLOW THERMAL DRIVER
9681 M:      Sujith Thomas <sujith.thomas@intel.com>
9682 L:      linux-pm@vger.kernel.org
9683 S:      Supported
9684 W:      https://01.org/linux-acpi
9685 F:      drivers/thermal/intel/intel_menlow.c
9686
9687 INTEL P-Unit IPC DRIVER
9688 M:      Zha Qipeng <qipeng.zha@intel.com>
9689 L:      platform-driver-x86@vger.kernel.org
9690 S:      Maintained
9691 F:      arch/x86/include/asm/intel_punit_ipc.h
9692 F:      drivers/platform/x86/intel/punit_ipc.c
9693
9694 INTEL PMC CORE DRIVER
9695 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9696 M:      David E Box <david.e.box@intel.com>
9697 L:      platform-driver-x86@vger.kernel.org
9698 S:      Maintained
9699 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9700 F:      drivers/platform/x86/intel/pmc/
9701
9702 INTEL PMIC GPIO DRIVERS
9703 M:      Andy Shevchenko <andy@kernel.org>
9704 S:      Maintained
9705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9706 F:      drivers/gpio/gpio-*cove.c
9707
9708 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9709 M:      Andy Shevchenko <andy@kernel.org>
9710 S:      Maintained
9711 F:      drivers/mfd/intel_soc_pmic*
9712 F:      include/linux/mfd/intel_soc_pmic*
9713
9714 INTEL PMT DRIVER
9715 M:      "David E. Box" <david.e.box@linux.intel.com>
9716 S:      Maintained
9717 F:      drivers/mfd/intel_pmt.c
9718 F:      drivers/platform/x86/intel/pmt/
9719
9720 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9721 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9722 L:      linux-wireless@vger.kernel.org
9723 S:      Maintained
9724 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9725 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9726 F:      drivers/net/wireless/intel/ipw2x00/
9727
9728 INTEL PSTATE DRIVER
9729 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9730 M:      Len Brown <lenb@kernel.org>
9731 L:      linux-pm@vger.kernel.org
9732 S:      Supported
9733 F:      drivers/cpufreq/intel_pstate.c
9734
9735 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9736 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9737 L:      linux-iio@vger.kernel.org
9738 F:      drivers/counter/intel-qep.c
9739
9740 INTEL SCU DRIVERS
9741 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9742 S:      Maintained
9743 F:      arch/x86/include/asm/intel_scu_ipc.h
9744 F:      drivers/platform/x86/intel_scu_*
9745
9746 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9747 M:      Daniel Scally <djrscally@gmail.com>
9748 S:      Maintained
9749 F:      drivers/platform/x86/intel/int3472/
9750
9751 INTEL SPEED SELECT TECHNOLOGY
9752 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9753 L:      platform-driver-x86@vger.kernel.org
9754 S:      Maintained
9755 F:      drivers/platform/x86/intel/speed_select_if/
9756 F:      include/uapi/linux/isst_if.h
9757 F:      tools/power/x86/intel-speed-select/
9758
9759 INTEL STRATIX10 FIRMWARE DRIVERS
9760 M:      Dinh Nguyen <dinguyen@kernel.org>
9761 L:      linux-kernel@vger.kernel.org
9762 S:      Maintained
9763 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9764 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9765 F:      drivers/firmware/stratix10-rsu.c
9766 F:      drivers/firmware/stratix10-svc.c
9767 F:      include/linux/firmware/intel/stratix10-smc.h
9768 F:      include/linux/firmware/intel/stratix10-svc-client.h
9769
9770 INTEL TELEMETRY DRIVER
9771 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9772 M:      "David E. Box" <david.e.box@linux.intel.com>
9773 L:      platform-driver-x86@vger.kernel.org
9774 S:      Maintained
9775 F:      arch/x86/include/asm/intel_telemetry.h
9776 F:      drivers/platform/x86/intel/telemetry/
9777
9778 INTEL UNCORE FREQUENCY CONTROL
9779 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9780 L:      platform-driver-x86@vger.kernel.org
9781 S:      Maintained
9782 F:      drivers/platform/x86/intel/uncore-frequency.c
9783
9784 INTEL VIRTUAL BUTTON DRIVER
9785 M:      AceLan Kao <acelan.kao@canonical.com>
9786 L:      platform-driver-x86@vger.kernel.org
9787 S:      Maintained
9788 F:      drivers/platform/x86/intel/vbtn.c
9789
9790 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9791 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9792 L:      linux-wireless@vger.kernel.org
9793 S:      Supported
9794 F:      drivers/net/wireless/intel/iwlegacy/
9795
9796 INTEL WIRELESS WIFI LINK (iwlwifi)
9797 M:      Luca Coelho <luciano.coelho@intel.com>
9798 L:      linux-wireless@vger.kernel.org
9799 S:      Supported
9800 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9802 F:      drivers/net/wireless/intel/iwlwifi/
9803
9804 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9805 M:      Jithu Joseph <jithu.joseph@intel.com>
9806 R:      Maurice Ma <maurice.ma@intel.com>
9807 S:      Maintained
9808 W:      https://slimbootloader.github.io/security/firmware-update.html
9809 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9810
9811 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9812 L:      Dell.Client.Kernel@dell.com
9813 S:      Maintained
9814 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9815
9816 INTEL WWAN IOSM DRIVER
9817 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9818 M:      Intel Corporation <linuxwwan@intel.com>
9819 L:      netdev@vger.kernel.org
9820 S:      Maintained
9821 F:      drivers/net/wwan/iosm/
9822
9823 INTEL(R) TRACE HUB
9824 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9825 S:      Supported
9826 F:      Documentation/trace/intel_th.rst
9827 F:      drivers/hwtracing/intel_th/
9828 F:      include/linux/intel_th.h
9829
9830 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9831 M:      Ning Sun <ning.sun@intel.com>
9832 L:      tboot-devel@lists.sourceforge.net
9833 S:      Supported
9834 W:      http://tboot.sourceforge.net
9835 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9836 F:      Documentation/x86/intel_txt.rst
9837 F:      arch/x86/kernel/tboot.c
9838 F:      include/linux/tboot.h
9839
9840 INTEL SGX
9841 M:      Jarkko Sakkinen <jarkko@kernel.org>
9842 R:      Dave Hansen <dave.hansen@linux.intel.com>
9843 L:      linux-sgx@vger.kernel.org
9844 S:      Supported
9845 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9847 F:      Documentation/x86/sgx.rst
9848 F:      arch/x86/entry/vdso/vsgx.S
9849 F:      arch/x86/include/asm/sgx.h
9850 F:      arch/x86/include/uapi/asm/sgx.h
9851 F:      arch/x86/kernel/cpu/sgx/*
9852 F:      tools/testing/selftests/sgx/*
9853 K:      \bSGX_
9854
9855 INTERCONNECT API
9856 M:      Georgi Djakov <djakov@kernel.org>
9857 L:      linux-pm@vger.kernel.org
9858 S:      Maintained
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9860 F:      Documentation/devicetree/bindings/interconnect/
9861 F:      Documentation/driver-api/interconnect.rst
9862 F:      drivers/interconnect/
9863 F:      include/dt-bindings/interconnect/
9864 F:      include/linux/interconnect-provider.h
9865 F:      include/linux/interconnect.h
9866
9867 INTERRUPT COUNTER DRIVER
9868 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9869 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9870 L:      linux-iio@vger.kernel.org
9871 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9872 F:      drivers/counter/interrupt-cnt.c
9873
9874 INVENSENSE ICM-426xx IMU DRIVER
9875 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9876 L:      linux-iio@vger.kernel.org
9877 S:      Maintained
9878 W:      https://invensense.tdk.com/
9879 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9880 F:      drivers/iio/imu/inv_icm42600/
9881
9882 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9883 M:      Linus Walleij <linus.walleij@linaro.org>
9884 L:      linux-iio@vger.kernel.org
9885 S:      Maintained
9886 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9887 F:      drivers/iio/gyro/mpu3050*
9888
9889 IOC3 ETHERNET DRIVER
9890 M:      Ralf Baechle <ralf@linux-mips.org>
9891 L:      linux-mips@vger.kernel.org
9892 S:      Maintained
9893 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9894
9895 IOMAP FILESYSTEM LIBRARY
9896 M:      Christoph Hellwig <hch@infradead.org>
9897 M:      Darrick J. Wong <djwong@kernel.org>
9898 M:      linux-xfs@vger.kernel.org
9899 M:      linux-fsdevel@vger.kernel.org
9900 L:      linux-xfs@vger.kernel.org
9901 L:      linux-fsdevel@vger.kernel.org
9902 S:      Supported
9903 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9904 F:      fs/iomap/
9905 F:      include/linux/iomap.h
9906
9907 IOMMU DRIVERS
9908 M:      Joerg Roedel <joro@8bytes.org>
9909 M:      Will Deacon <will@kernel.org>
9910 L:      iommu@lists.linux-foundation.org
9911 S:      Maintained
9912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9913 F:      Documentation/devicetree/bindings/iommu/
9914 F:      Documentation/userspace-api/iommu.rst
9915 F:      drivers/iommu/
9916 F:      include/linux/iommu.h
9917 F:      include/linux/iova.h
9918 F:      include/linux/of_iommu.h
9919 F:      include/uapi/linux/iommu.h
9920
9921 IO_URING
9922 M:      Jens Axboe <axboe@kernel.dk>
9923 R:      Pavel Begunkov <asml.silence@gmail.com>
9924 L:      io-uring@vger.kernel.org
9925 S:      Maintained
9926 T:      git git://git.kernel.dk/linux-block
9927 T:      git git://git.kernel.dk/liburing
9928 F:      fs/io-wq.c
9929 F:      fs/io-wq.h
9930 F:      fs/io_uring.c
9931 F:      include/linux/io_uring.h
9932 F:      include/uapi/linux/io_uring.h
9933 F:      tools/io_uring/
9934
9935 IPMI SUBSYSTEM
9936 M:      Corey Minyard <minyard@acm.org>
9937 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9938 S:      Supported
9939 W:      http://openipmi.sourceforge.net/
9940 F:      Documentation/driver-api/ipmi.rst
9941 F:      Documentation/devicetree/bindings/ipmi/
9942 F:      drivers/char/ipmi/
9943 F:      include/linux/ipmi*
9944 F:      include/uapi/linux/ipmi*
9945
9946 IPS SCSI RAID DRIVER
9947 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9948 L:      linux-scsi@vger.kernel.org
9949 S:      Maintained
9950 W:      http://www.adaptec.com/
9951 F:      drivers/scsi/ips*
9952
9953 IPVS
9954 M:      Simon Horman <horms@verge.net.au>
9955 M:      Julian Anastasov <ja@ssi.bg>
9956 L:      netdev@vger.kernel.org
9957 L:      lvs-devel@vger.kernel.org
9958 S:      Maintained
9959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9961 F:      Documentation/networking/ipvs-sysctl.rst
9962 F:      include/net/ip_vs.h
9963 F:      include/uapi/linux/ip_vs.h
9964 F:      net/netfilter/ipvs/
9965
9966 IPWIRELESS DRIVER
9967 M:      Jiri Kosina <jikos@kernel.org>
9968 M:      David Sterba <dsterba@suse.com>
9969 S:      Odd Fixes
9970 F:      drivers/tty/ipwireless/
9971
9972 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9973 M:      Marc Zyngier <maz@kernel.org>
9974 S:      Maintained
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9976 F:      Documentation/core-api/irq/irq-domain.rst
9977 F:      include/linux/irqdomain.h
9978 F:      kernel/irq/irqdomain.c
9979 F:      kernel/irq/msi.c
9980
9981 IRQ SUBSYSTEM
9982 M:      Thomas Gleixner <tglx@linutronix.de>
9983 L:      linux-kernel@vger.kernel.org
9984 S:      Maintained
9985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9986 F:      kernel/irq/
9987
9988 IRQCHIP DRIVERS
9989 M:      Thomas Gleixner <tglx@linutronix.de>
9990 M:      Marc Zyngier <maz@kernel.org>
9991 L:      linux-kernel@vger.kernel.org
9992 S:      Maintained
9993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9994 F:      Documentation/devicetree/bindings/interrupt-controller/
9995 F:      drivers/irqchip/
9996
9997 ISA
9998 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9999 S:      Maintained
10000 F:      Documentation/driver-api/isa.rst
10001 F:      drivers/base/isa.c
10002 F:      include/linux/isa.h
10003
10004 ISA RADIO MODULE
10005 M:      Hans Verkuil <hverkuil@xs4all.nl>
10006 L:      linux-media@vger.kernel.org
10007 S:      Maintained
10008 W:      https://linuxtv.org
10009 T:      git git://linuxtv.org/media_tree.git
10010 F:      drivers/media/radio/radio-isa*
10011
10012 ISAPNP
10013 M:      Jaroslav Kysela <perex@perex.cz>
10014 S:      Maintained
10015 F:      Documentation/driver-api/isapnp.rst
10016 F:      drivers/pnp/isapnp/
10017 F:      include/linux/isapnp.h
10018
10019 ISCSI
10020 M:      Lee Duncan <lduncan@suse.com>
10021 M:      Chris Leech <cleech@redhat.com>
10022 L:      open-iscsi@googlegroups.com
10023 L:      linux-scsi@vger.kernel.org
10024 S:      Maintained
10025 W:      www.open-iscsi.com
10026 F:      drivers/scsi/*iscsi*
10027 F:      include/scsi/*iscsi*
10028
10029 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10030 M:      Peter Jones <pjones@redhat.com>
10031 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10032 S:      Maintained
10033 F:      drivers/firmware/iscsi_ibft*
10034
10035 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10036 M:      Sagi Grimberg <sagi@grimberg.me>
10037 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10038 L:      linux-rdma@vger.kernel.org
10039 S:      Supported
10040 W:      http://www.openfabrics.org
10041 W:      www.open-iscsi.org
10042 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10043 F:      drivers/infiniband/ulp/iser/
10044
10045 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10046 M:      Sagi Grimberg <sagi@grimberg.me>
10047 L:      linux-rdma@vger.kernel.org
10048 L:      target-devel@vger.kernel.org
10049 S:      Supported
10050 W:      http://www.linux-iscsi.org
10051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10052 F:      drivers/infiniband/ulp/isert
10053
10054 ISDN/CMTP OVER BLUETOOTH
10055 M:      Karsten Keil <isdn@linux-pingi.de>
10056 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10057 L:      netdev@vger.kernel.org
10058 S:      Odd Fixes
10059 W:      http://www.isdn4linux.de
10060 F:      Documentation/isdn/
10061 F:      drivers/isdn/capi/
10062 F:      include/linux/isdn/
10063 F:      include/uapi/linux/isdn/
10064 F:      net/bluetooth/cmtp/
10065
10066 ISDN/mISDN SUBSYSTEM
10067 M:      Karsten Keil <isdn@linux-pingi.de>
10068 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10069 L:      netdev@vger.kernel.org
10070 S:      Maintained
10071 W:      http://www.isdn4linux.de
10072 F:      drivers/isdn/Kconfig
10073 F:      drivers/isdn/Makefile
10074 F:      drivers/isdn/hardware/
10075 F:      drivers/isdn/mISDN/
10076
10077 IT87 HARDWARE MONITORING DRIVER
10078 M:      Jean Delvare <jdelvare@suse.com>
10079 L:      linux-hwmon@vger.kernel.org
10080 S:      Maintained
10081 F:      Documentation/hwmon/it87.rst
10082 F:      drivers/hwmon/it87.c
10083
10084 IT913X MEDIA DRIVER
10085 M:      Antti Palosaari <crope@iki.fi>
10086 L:      linux-media@vger.kernel.org
10087 S:      Maintained
10088 W:      https://linuxtv.org
10089 W:      http://palosaari.fi/linux/
10090 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10091 T:      git git://linuxtv.org/anttip/media_tree.git
10092 F:      drivers/media/tuners/it913x*
10093
10094 ITE IT66121 HDMI BRIDGE DRIVER
10095 M:      Phong LE <ple@baylibre.com>
10096 M:      Neil Armstrong <narmstrong@baylibre.com>
10097 S:      Maintained
10098 T:      git git://anongit.freedesktop.org/drm/drm-misc
10099 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10100 F:      drivers/gpu/drm/bridge/ite-it66121.c
10101
10102 IVTV VIDEO4LINUX DRIVER
10103 M:      Andy Walls <awalls@md.metrocast.net>
10104 L:      linux-media@vger.kernel.org
10105 S:      Maintained
10106 W:      https://linuxtv.org
10107 T:      git git://linuxtv.org/media_tree.git
10108 F:      Documentation/admin-guide/media/ivtv*
10109 F:      drivers/media/pci/ivtv/
10110 F:      include/uapi/linux/ivtv*
10111
10112 IX2505V MEDIA DRIVER
10113 M:      Malcolm Priestley <tvboxspy@gmail.com>
10114 L:      linux-media@vger.kernel.org
10115 S:      Maintained
10116 W:      https://linuxtv.org
10117 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10118 F:      drivers/media/dvb-frontends/ix2505v*
10119
10120 JAILHOUSE HYPERVISOR INTERFACE
10121 M:      Jan Kiszka <jan.kiszka@siemens.com>
10122 L:      jailhouse-dev@googlegroups.com
10123 S:      Maintained
10124 F:      arch/x86/include/asm/jailhouse_para.h
10125 F:      arch/x86/kernel/jailhouse.c
10126
10127 JC42.4 TEMPERATURE SENSOR DRIVER
10128 M:      Guenter Roeck <linux@roeck-us.net>
10129 L:      linux-hwmon@vger.kernel.org
10130 S:      Maintained
10131 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10132 F:      Documentation/hwmon/jc42.rst
10133 F:      drivers/hwmon/jc42.c
10134
10135 JFS FILESYSTEM
10136 M:      Dave Kleikamp <shaggy@kernel.org>
10137 L:      jfs-discussion@lists.sourceforge.net
10138 S:      Maintained
10139 W:      http://jfs.sourceforge.net/
10140 T:      git git://github.com/kleikamp/linux-shaggy.git
10141 F:      Documentation/admin-guide/jfs.rst
10142 F:      fs/jfs/
10143
10144 JME NETWORK DRIVER
10145 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10146 L:      netdev@vger.kernel.org
10147 S:      Maintained
10148 F:      drivers/net/ethernet/jme.*
10149
10150 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10151 M:      David Woodhouse <dwmw2@infradead.org>
10152 M:      Richard Weinberger <richard@nod.at>
10153 L:      linux-mtd@lists.infradead.org
10154 S:      Odd Fixes
10155 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10156 T:      git git://git.infradead.org/ubifs-2.6.git
10157 F:      fs/jffs2/
10158 F:      include/uapi/linux/jffs2.h
10159
10160 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10161 M:      "Theodore Ts'o" <tytso@mit.edu>
10162 M:      Jan Kara <jack@suse.com>
10163 L:      linux-ext4@vger.kernel.org
10164 S:      Maintained
10165 F:      fs/jbd2/
10166 F:      include/linux/jbd2.h
10167
10168 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10169 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10170 L:      linux-media@vger.kernel.org
10171 L:      linux-renesas-soc@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/media/platform/rcar_jpu.c
10174
10175 JSM Neo PCI based serial card
10176 L:      linux-serial@vger.kernel.org
10177 S:      Orphan
10178 F:      drivers/tty/serial/jsm/
10179
10180 K10TEMP HARDWARE MONITORING DRIVER
10181 M:      Clemens Ladisch <clemens@ladisch.de>
10182 L:      linux-hwmon@vger.kernel.org
10183 S:      Maintained
10184 F:      Documentation/hwmon/k10temp.rst
10185 F:      drivers/hwmon/k10temp.c
10186
10187 K8TEMP HARDWARE MONITORING DRIVER
10188 M:      Rudolf Marek <r.marek@assembler.cz>
10189 L:      linux-hwmon@vger.kernel.org
10190 S:      Maintained
10191 F:      Documentation/hwmon/k8temp.rst
10192 F:      drivers/hwmon/k8temp.c
10193
10194 KASAN
10195 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10196 R:      Alexander Potapenko <glider@google.com>
10197 R:      Andrey Konovalov <andreyknvl@gmail.com>
10198 R:      Dmitry Vyukov <dvyukov@google.com>
10199 L:      kasan-dev@googlegroups.com
10200 S:      Maintained
10201 F:      Documentation/dev-tools/kasan.rst
10202 F:      arch/*/include/asm/*kasan.h
10203 F:      arch/*/mm/kasan_init*
10204 F:      include/linux/kasan*.h
10205 F:      lib/Kconfig.kasan
10206 F:      lib/test_kasan*.c
10207 F:      mm/kasan/
10208 F:      scripts/Makefile.kasan
10209
10210 KCONFIG
10211 M:      Masahiro Yamada <masahiroy@kernel.org>
10212 L:      linux-kbuild@vger.kernel.org
10213 S:      Maintained
10214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10215 F:      Documentation/kbuild/kconfig*
10216 F:      scripts/Kconfig.include
10217 F:      scripts/kconfig/
10218
10219 KCOV
10220 R:      Dmitry Vyukov <dvyukov@google.com>
10221 R:      Andrey Konovalov <andreyknvl@gmail.com>
10222 L:      kasan-dev@googlegroups.com
10223 S:      Maintained
10224 F:      Documentation/dev-tools/kcov.rst
10225 F:      include/linux/kcov.h
10226 F:      include/uapi/linux/kcov.h
10227 F:      kernel/kcov.c
10228 F:      scripts/Makefile.kcov
10229
10230 KCSAN
10231 M:      Marco Elver <elver@google.com>
10232 R:      Dmitry Vyukov <dvyukov@google.com>
10233 L:      kasan-dev@googlegroups.com
10234 S:      Maintained
10235 F:      Documentation/dev-tools/kcsan.rst
10236 F:      include/linux/kcsan*.h
10237 F:      kernel/kcsan/
10238 F:      lib/Kconfig.kcsan
10239 F:      scripts/Makefile.kcsan
10240
10241 KDUMP
10242 M:      Dave Young <dyoung@redhat.com>
10243 M:      Baoquan He <bhe@redhat.com>
10244 R:      Vivek Goyal <vgoyal@redhat.com>
10245 L:      kexec@lists.infradead.org
10246 S:      Maintained
10247 W:      http://lse.sourceforge.net/kdump/
10248 F:      Documentation/admin-guide/kdump/
10249 F:      fs/proc/vmcore.c
10250 F:      include/linux/crash_core.h
10251 F:      include/linux/crash_dump.h
10252 F:      include/uapi/linux/vmcore.h
10253 F:      kernel/crash_*.c
10254
10255 KEENE FM RADIO TRANSMITTER DRIVER
10256 M:      Hans Verkuil <hverkuil@xs4all.nl>
10257 L:      linux-media@vger.kernel.org
10258 S:      Maintained
10259 W:      https://linuxtv.org
10260 T:      git git://linuxtv.org/media_tree.git
10261 F:      drivers/media/radio/radio-keene*
10262
10263 KERNEL AUTOMOUNTER
10264 M:      Ian Kent <raven@themaw.net>
10265 L:      autofs@vger.kernel.org
10266 S:      Maintained
10267 F:      fs/autofs/
10268
10269 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10270 M:      Masahiro Yamada <masahiroy@kernel.org>
10271 M:      Michal Marek <michal.lkml@markovi.net>
10272 R:      Nick Desaulniers <ndesaulniers@google.com>
10273 L:      linux-kbuild@vger.kernel.org
10274 S:      Maintained
10275 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10276 F:      Documentation/kbuild/
10277 F:      Makefile
10278 F:      scripts/*vmlinux*
10279 F:      scripts/Kbuild*
10280 F:      scripts/Makefile*
10281 F:      scripts/basic/
10282 F:      scripts/dummy-tools/
10283 F:      scripts/mk*
10284 F:      scripts/mod/
10285 F:      scripts/package/
10286
10287 KERNEL JANITORS
10288 L:      kernel-janitors@vger.kernel.org
10289 S:      Odd Fixes
10290 W:      http://kernelnewbies.org/KernelJanitors
10291
10292 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10293 M:      "J. Bruce Fields" <bfields@fieldses.org>
10294 M:      Chuck Lever <chuck.lever@oracle.com>
10295 L:      linux-nfs@vger.kernel.org
10296 S:      Supported
10297 W:      http://nfs.sourceforge.net/
10298 T:      git git://linux-nfs.org/~bfields/linux.git
10299 F:      fs/lockd/
10300 F:      fs/nfs_common/
10301 F:      fs/nfsd/
10302 F:      include/linux/lockd/
10303 F:      include/linux/sunrpc/
10304 F:      include/uapi/linux/nfsd/
10305 F:      include/uapi/linux/sunrpc/
10306 F:      net/sunrpc/
10307 F:      Documentation/filesystems/nfs/
10308
10309 KERNEL REGRESSIONS
10310 M:      Thorsten Leemhuis <linux@leemhuis.info>
10311 L:      regressions@lists.linux.dev
10312 S:      Supported
10313
10314 KERNEL SELFTEST FRAMEWORK
10315 M:      Shuah Khan <shuah@kernel.org>
10316 M:      Shuah Khan <skhan@linuxfoundation.org>
10317 L:      linux-kselftest@vger.kernel.org
10318 S:      Maintained
10319 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10321 F:      Documentation/dev-tools/kselftest*
10322 F:      tools/testing/selftests/
10323
10324 KERNEL SMB3 SERVER (KSMBD)
10325 M:      Namjae Jeon <linkinjeon@kernel.org>
10326 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10327 M:      Steve French <sfrench@samba.org>
10328 M:      Hyunchul Lee <hyc.lee@gmail.com>
10329 L:      linux-cifs@vger.kernel.org
10330 S:      Maintained
10331 T:      git git://git.samba.org/ksmbd.git
10332 F:      fs/ksmbd/
10333 F:      fs/smbfs_common/
10334
10335 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10336 M:      Brendan Higgins <brendanhiggins@google.com>
10337 L:      linux-kselftest@vger.kernel.org
10338 L:      kunit-dev@googlegroups.com
10339 S:      Maintained
10340 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10341 F:      Documentation/dev-tools/kunit/
10342 F:      include/kunit/
10343 F:      lib/kunit/
10344 F:      tools/testing/kunit/
10345
10346 KERNEL USERMODE HELPER
10347 M:      Luis Chamberlain <mcgrof@kernel.org>
10348 L:      linux-kernel@vger.kernel.org
10349 S:      Maintained
10350 F:      include/linux/umh.h
10351 F:      kernel/umh.c
10352
10353 KERNEL VIRTUAL MACHINE (KVM)
10354 M:      Paolo Bonzini <pbonzini@redhat.com>
10355 L:      kvm@vger.kernel.org
10356 S:      Supported
10357 W:      http://www.linux-kvm.org
10358 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10359 F:      Documentation/virt/kvm/
10360 F:      include/asm-generic/kvm*
10361 F:      include/kvm/iodev.h
10362 F:      include/linux/kvm*
10363 F:      include/trace/events/kvm.h
10364 F:      include/uapi/asm-generic/kvm*
10365 F:      include/uapi/linux/kvm*
10366 F:      tools/kvm/
10367 F:      tools/testing/selftests/kvm/
10368 F:      virt/kvm/*
10369
10370 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10371 M:      Marc Zyngier <maz@kernel.org>
10372 R:      James Morse <james.morse@arm.com>
10373 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10374 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10376 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10377 S:      Maintained
10378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10379 F:      arch/arm64/include/asm/kvm*
10380 F:      arch/arm64/include/uapi/asm/kvm*
10381 F:      arch/arm64/kvm/
10382 F:      include/kvm/arm_*
10383 F:      tools/testing/selftests/kvm/*/aarch64/
10384 F:      tools/testing/selftests/kvm/aarch64/
10385
10386 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10387 M:      Huacai Chen <chenhuacai@kernel.org>
10388 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10389 L:      linux-mips@vger.kernel.org
10390 L:      kvm@vger.kernel.org
10391 S:      Maintained
10392 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10393 F:      arch/mips/include/asm/kvm*
10394 F:      arch/mips/include/uapi/asm/kvm*
10395 F:      arch/mips/kvm/
10396
10397 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10398 L:      linuxppc-dev@lists.ozlabs.org
10399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10400 F:      arch/powerpc/include/asm/kvm*
10401 F:      arch/powerpc/include/uapi/asm/kvm*
10402 F:      arch/powerpc/kernel/kvm*
10403 F:      arch/powerpc/kvm/
10404
10405 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10406 M:      Anup Patel <anup.patel@wdc.com>
10407 R:      Atish Patra <atish.patra@wdc.com>
10408 L:      kvm@vger.kernel.org
10409 L:      kvm-riscv@lists.infradead.org
10410 L:      linux-riscv@lists.infradead.org
10411 S:      Maintained
10412 T:      git git://github.com/kvm-riscv/linux.git
10413 F:      arch/riscv/include/asm/kvm*
10414 F:      arch/riscv/include/uapi/asm/kvm*
10415 F:      arch/riscv/kvm/
10416
10417 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10418 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10419 M:      Janosch Frank <frankja@linux.ibm.com>
10420 R:      David Hildenbrand <david@redhat.com>
10421 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10422 L:      kvm@vger.kernel.org
10423 S:      Supported
10424 W:      http://www.ibm.com/developerworks/linux/linux390/
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10426 F:      Documentation/virt/kvm/s390*
10427 F:      arch/s390/include/asm/gmap.h
10428 F:      arch/s390/include/asm/kvm*
10429 F:      arch/s390/include/uapi/asm/kvm*
10430 F:      arch/s390/kernel/uv.c
10431 F:      arch/s390/kvm/
10432 F:      arch/s390/mm/gmap.c
10433 F:      tools/testing/selftests/kvm/*/s390x/
10434 F:      tools/testing/selftests/kvm/s390x/
10435
10436 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10437 M:      Paolo Bonzini <pbonzini@redhat.com>
10438 R:      Sean Christopherson <seanjc@google.com>
10439 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10440 R:      Wanpeng Li <wanpengli@tencent.com>
10441 R:      Jim Mattson <jmattson@google.com>
10442 R:      Joerg Roedel <joro@8bytes.org>
10443 L:      kvm@vger.kernel.org
10444 S:      Supported
10445 W:      http://www.linux-kvm.org
10446 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10447 F:      arch/x86/include/asm/kvm*
10448 F:      arch/x86/include/asm/pvclock-abi.h
10449 F:      arch/x86/include/asm/svm.h
10450 F:      arch/x86/include/asm/vmx*.h
10451 F:      arch/x86/include/uapi/asm/kvm*
10452 F:      arch/x86/include/uapi/asm/svm.h
10453 F:      arch/x86/include/uapi/asm/vmx.h
10454 F:      arch/x86/kernel/kvm.c
10455 F:      arch/x86/kernel/kvmclock.c
10456 F:      arch/x86/kvm/
10457 F:      arch/x86/kvm/*/
10458
10459 KERNFS
10460 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10461 M:      Tejun Heo <tj@kernel.org>
10462 S:      Supported
10463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10464 F:      fs/kernfs/
10465 F:      include/linux/kernfs.h
10466
10467 KEXEC
10468 M:      Eric Biederman <ebiederm@xmission.com>
10469 L:      kexec@lists.infradead.org
10470 S:      Maintained
10471 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10472 F:      include/linux/kexec.h
10473 F:      include/uapi/linux/kexec.h
10474 F:      kernel/kexec*
10475
10476 KEYS-ENCRYPTED
10477 M:      Mimi Zohar <zohar@linux.ibm.com>
10478 L:      linux-integrity@vger.kernel.org
10479 L:      keyrings@vger.kernel.org
10480 S:      Supported
10481 F:      Documentation/security/keys/trusted-encrypted.rst
10482 F:      include/keys/encrypted-type.h
10483 F:      security/keys/encrypted-keys/
10484
10485 KEYS-TRUSTED
10486 M:      James Bottomley <jejb@linux.ibm.com>
10487 M:      Jarkko Sakkinen <jarkko@kernel.org>
10488 M:      Mimi Zohar <zohar@linux.ibm.com>
10489 L:      linux-integrity@vger.kernel.org
10490 L:      keyrings@vger.kernel.org
10491 S:      Supported
10492 F:      Documentation/security/keys/trusted-encrypted.rst
10493 F:      include/keys/trusted-type.h
10494 F:      include/keys/trusted_tpm.h
10495 F:      security/keys/trusted-keys/
10496
10497 KEYS-TRUSTED-TEE
10498 M:      Sumit Garg <sumit.garg@linaro.org>
10499 L:      linux-integrity@vger.kernel.org
10500 L:      keyrings@vger.kernel.org
10501 S:      Supported
10502 F:      include/keys/trusted_tee.h
10503 F:      security/keys/trusted-keys/trusted_tee.c
10504
10505 KEYS/KEYRINGS
10506 M:      David Howells <dhowells@redhat.com>
10507 M:      Jarkko Sakkinen <jarkko@kernel.org>
10508 L:      keyrings@vger.kernel.org
10509 S:      Maintained
10510 F:      Documentation/security/keys/core.rst
10511 F:      include/keys/
10512 F:      include/linux/key-type.h
10513 F:      include/linux/key.h
10514 F:      include/linux/keyctl.h
10515 F:      include/uapi/linux/keyctl.h
10516 F:      security/keys/
10517
10518 KFENCE
10519 M:      Alexander Potapenko <glider@google.com>
10520 M:      Marco Elver <elver@google.com>
10521 R:      Dmitry Vyukov <dvyukov@google.com>
10522 L:      kasan-dev@googlegroups.com
10523 S:      Maintained
10524 F:      Documentation/dev-tools/kfence.rst
10525 F:      arch/*/include/asm/kfence.h
10526 F:      include/linux/kfence.h
10527 F:      lib/Kconfig.kfence
10528 F:      mm/kfence/
10529
10530 KFIFO
10531 M:      Stefani Seibold <stefani@seibold.net>
10532 S:      Maintained
10533 F:      include/linux/kfifo.h
10534 F:      lib/kfifo.c
10535 F:      samples/kfifo/
10536
10537 KGDB / KDB /debug_core
10538 M:      Jason Wessel <jason.wessel@windriver.com>
10539 M:      Daniel Thompson <daniel.thompson@linaro.org>
10540 R:      Douglas Anderson <dianders@chromium.org>
10541 L:      kgdb-bugreport@lists.sourceforge.net
10542 S:      Maintained
10543 W:      http://kgdb.wiki.kernel.org/
10544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10545 F:      Documentation/dev-tools/kgdb.rst
10546 F:      drivers/misc/kgdbts.c
10547 F:      drivers/tty/serial/kgdboc.c
10548 F:      include/linux/kdb.h
10549 F:      include/linux/kgdb.h
10550 F:      kernel/debug/
10551
10552 KHADAS MCU MFD DRIVER
10553 M:      Neil Armstrong <narmstrong@baylibre.com>
10554 L:      linux-amlogic@lists.infradead.org
10555 S:      Maintained
10556 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10557 F:      drivers/mfd/khadas-mcu.c
10558 F:      include/linux/mfd/khadas-mcu.h
10559 F:      drivers/thermal/khadas_mcu_fan.c
10560
10561 KMEMLEAK
10562 M:      Catalin Marinas <catalin.marinas@arm.com>
10563 S:      Maintained
10564 F:      Documentation/dev-tools/kmemleak.rst
10565 F:      include/linux/kmemleak.h
10566 F:      mm/kmemleak.c
10567 F:      samples/kmemleak/kmemleak-test.c
10568
10569 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10570 M:      Luis Chamberlain <mcgrof@kernel.org>
10571 L:      linux-kernel@vger.kernel.org
10572 S:      Maintained
10573 F:      include/linux/kmod.h
10574 F:      kernel/kmod.c
10575 F:      lib/test_kmod.c
10576 F:      tools/testing/selftests/kmod/
10577
10578 KPROBES
10579 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10580 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10581 M:      "David S. Miller" <davem@davemloft.net>
10582 M:      Masami Hiramatsu <mhiramat@kernel.org>
10583 S:      Maintained
10584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10585 F:      Documentation/trace/kprobes.rst
10586 F:      include/asm-generic/kprobes.h
10587 F:      include/linux/kprobes.h
10588 F:      kernel/kprobes.c
10589 F:      lib/test_kprobes.c
10590 F:      samples/kprobes
10591
10592 KS0108 LCD CONTROLLER DRIVER
10593 M:      Miguel Ojeda <ojeda@kernel.org>
10594 S:      Maintained
10595 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10596 F:      drivers/auxdisplay/ks0108.c
10597 F:      include/linux/ks0108.h
10598
10599 KTD253 BACKLIGHT DRIVER
10600 M:      Linus Walleij <linus.walleij@linaro.org>
10601 S:      Maintained
10602 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10603 F:      drivers/video/backlight/ktd253-backlight.c
10604
10605 KTEST
10606 M:      Steven Rostedt <rostedt@goodmis.org>
10607 M:      John Hawley <warthog9@eaglescrag.net>
10608 S:      Maintained
10609 F:      tools/testing/ktest
10610
10611 L3MDEV
10612 M:      David Ahern <dsahern@kernel.org>
10613 L:      netdev@vger.kernel.org
10614 S:      Maintained
10615 F:      include/net/l3mdev.h
10616 F:      net/l3mdev
10617
10618 L7 BPF FRAMEWORK
10619 M:      John Fastabend <john.fastabend@gmail.com>
10620 M:      Daniel Borkmann <daniel@iogearbox.net>
10621 M:      Jakub Sitnicki <jakub@cloudflare.com>
10622 M:      Lorenz Bauer <lmb@cloudflare.com>
10623 L:      netdev@vger.kernel.org
10624 L:      bpf@vger.kernel.org
10625 S:      Maintained
10626 F:      include/linux/skmsg.h
10627 F:      net/core/skmsg.c
10628 F:      net/core/sock_map.c
10629 F:      net/ipv4/tcp_bpf.c
10630 F:      net/ipv4/udp_bpf.c
10631 F:      net/unix/unix_bpf.c
10632
10633 LANDLOCK SECURITY MODULE
10634 M:      Mickaël Salaün <mic@digikod.net>
10635 L:      linux-security-module@vger.kernel.org
10636 S:      Supported
10637 W:      https://landlock.io
10638 T:      git https://github.com/landlock-lsm/linux.git
10639 F:      Documentation/security/landlock.rst
10640 F:      Documentation/userspace-api/landlock.rst
10641 F:      include/uapi/linux/landlock.h
10642 F:      samples/landlock/
10643 F:      security/landlock/
10644 F:      tools/testing/selftests/landlock/
10645 K:      landlock
10646 K:      LANDLOCK
10647
10648 LANTIQ / INTEL Ethernet drivers
10649 M:      Hauke Mehrtens <hauke@hauke-m.de>
10650 L:      netdev@vger.kernel.org
10651 S:      Maintained
10652 F:      drivers/net/dsa/lantiq_gswip.c
10653 F:      drivers/net/dsa/lantiq_pce.h
10654 F:      drivers/net/ethernet/lantiq_xrx200.c
10655 F:      net/dsa/tag_gswip.c
10656
10657 LANTIQ MIPS ARCHITECTURE
10658 M:      John Crispin <john@phrozen.org>
10659 L:      linux-mips@vger.kernel.org
10660 S:      Maintained
10661 F:      arch/mips/lantiq
10662 F:      drivers/soc/lantiq
10663
10664 LASI 53c700 driver for PARISC
10665 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10666 L:      linux-scsi@vger.kernel.org
10667 S:      Maintained
10668 F:      Documentation/scsi/53c700.rst
10669 F:      drivers/scsi/53c700*
10670
10671 LEAKING_ADDRESSES
10672 M:      Tobin C. Harding <me@tobin.cc>
10673 M:      Tycho Andersen <tycho@tycho.pizza>
10674 L:      linux-hardening@vger.kernel.org
10675 S:      Maintained
10676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10677 F:      scripts/leaking_addresses.pl
10678
10679 LED SUBSYSTEM
10680 M:      Pavel Machek <pavel@ucw.cz>
10681 L:      linux-leds@vger.kernel.org
10682 S:      Maintained
10683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10684 F:      Documentation/devicetree/bindings/leds/
10685 F:      drivers/leds/
10686 F:      include/linux/leds.h
10687
10688 LEGACY EEPROM DRIVER
10689 M:      Jean Delvare <jdelvare@suse.com>
10690 S:      Maintained
10691 F:      Documentation/misc-devices/eeprom.rst
10692 F:      drivers/misc/eeprom/eeprom.c
10693
10694 LEGO MINDSTORMS EV3
10695 R:      David Lechner <david@lechnology.com>
10696 S:      Maintained
10697 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10698 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10699 F:      drivers/power/supply/lego_ev3_battery.c
10700
10701 LEGO USB Tower driver
10702 M:      Juergen Stuber <starblue@users.sourceforge.net>
10703 L:      legousb-devel@lists.sourceforge.net
10704 S:      Maintained
10705 W:      http://legousb.sourceforge.net/
10706 F:      drivers/usb/misc/legousbtower.c
10707
10708 LG LAPTOP EXTRAS
10709 M:      Matan Ziv-Av <matan@svgalib.org>
10710 L:      platform-driver-x86@vger.kernel.org
10711 S:      Maintained
10712 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10713 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10714 F:      drivers/platform/x86/lg-laptop.c
10715
10716 LG2160 MEDIA DRIVER
10717 M:      Michael Krufky <mkrufky@linuxtv.org>
10718 L:      linux-media@vger.kernel.org
10719 S:      Maintained
10720 W:      https://linuxtv.org
10721 W:      http://github.com/mkrufky
10722 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10723 T:      git git://linuxtv.org/mkrufky/tuners.git
10724 F:      drivers/media/dvb-frontends/lg2160.*
10725
10726 LGDT3305 MEDIA DRIVER
10727 M:      Michael Krufky <mkrufky@linuxtv.org>
10728 L:      linux-media@vger.kernel.org
10729 S:      Maintained
10730 W:      https://linuxtv.org
10731 W:      http://github.com/mkrufky
10732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10733 T:      git git://linuxtv.org/mkrufky/tuners.git
10734 F:      drivers/media/dvb-frontends/lgdt3305.*
10735
10736 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10737 M:      Viresh Kumar <vireshk@kernel.org>
10738 L:      linux-ide@vger.kernel.org
10739 S:      Maintained
10740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10741 F:      drivers/ata/pata_arasan_cf.c
10742 F:      include/linux/pata_arasan_cf_data.h
10743
10744 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10745 M:      Linus Walleij <linus.walleij@linaro.org>
10746 L:      linux-ide@vger.kernel.org
10747 S:      Maintained
10748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10749 F:      drivers/ata/pata_ftide010.c
10750 F:      drivers/ata/sata_gemini.c
10751 F:      drivers/ata/sata_gemini.h
10752
10753 LIBATA SATA AHCI PLATFORM devices support
10754 M:      Hans de Goede <hdegoede@redhat.com>
10755 M:      Jens Axboe <axboe@kernel.dk>
10756 L:      linux-ide@vger.kernel.org
10757 S:      Maintained
10758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10759 F:      drivers/ata/ahci_platform.c
10760 F:      drivers/ata/libahci_platform.c
10761 F:      include/linux/ahci_platform.h
10762
10763 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10764 M:      Mikael Pettersson <mikpelinux@gmail.com>
10765 L:      linux-ide@vger.kernel.org
10766 S:      Maintained
10767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10768 F:      drivers/ata/sata_promise.*
10769
10770 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10771 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10772 L:      linux-ide@vger.kernel.org
10773 S:      Maintained
10774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10775 F:      Documentation/devicetree/bindings/ata/
10776 F:      drivers/ata/
10777 F:      include/linux/ata.h
10778 F:      include/linux/libata.h
10779
10780 LIBLOCKDEP
10781 M:      Sasha Levin <alexander.levin@microsoft.com>
10782 S:      Maintained
10783 F:      tools/lib/lockdep/
10784
10785 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10786 M:      Dan Williams <dan.j.williams@intel.com>
10787 M:      Vishal Verma <vishal.l.verma@intel.com>
10788 M:      Dave Jiang <dave.jiang@intel.com>
10789 L:      nvdimm@lists.linux.dev
10790 S:      Supported
10791 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10792 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10793 F:      drivers/nvdimm/blk.c
10794 F:      drivers/nvdimm/region_devs.c
10795
10796 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10797 M:      Vishal Verma <vishal.l.verma@intel.com>
10798 M:      Dan Williams <dan.j.williams@intel.com>
10799 M:      Dave Jiang <dave.jiang@intel.com>
10800 L:      nvdimm@lists.linux.dev
10801 S:      Supported
10802 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10803 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10804 F:      drivers/nvdimm/btt*
10805
10806 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10807 M:      Dan Williams <dan.j.williams@intel.com>
10808 M:      Vishal Verma <vishal.l.verma@intel.com>
10809 M:      Dave Jiang <dave.jiang@intel.com>
10810 L:      nvdimm@lists.linux.dev
10811 S:      Supported
10812 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10813 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10814 F:      drivers/nvdimm/pmem*
10815
10816 LIBNVDIMM: DEVICETREE BINDINGS
10817 M:      Oliver O'Halloran <oohall@gmail.com>
10818 L:      nvdimm@lists.linux.dev
10819 S:      Supported
10820 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10821 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10822 F:      drivers/nvdimm/of_pmem.c
10823
10824 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10825 M:      Dan Williams <dan.j.williams@intel.com>
10826 M:      Vishal Verma <vishal.l.verma@intel.com>
10827 M:      Dave Jiang <dave.jiang@intel.com>
10828 M:      Ira Weiny <ira.weiny@intel.com>
10829 L:      nvdimm@lists.linux.dev
10830 S:      Supported
10831 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10832 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10834 F:      drivers/acpi/nfit/*
10835 F:      drivers/nvdimm/*
10836 F:      include/linux/libnvdimm.h
10837 F:      include/linux/nd.h
10838 F:      include/uapi/linux/ndctl.h
10839 F:      tools/testing/nvdimm/
10840
10841 LICENSES and SPDX stuff
10842 M:      Thomas Gleixner <tglx@linutronix.de>
10843 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10844 L:      linux-spdx@vger.kernel.org
10845 S:      Maintained
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10847 F:      COPYING
10848 F:      Documentation/process/license-rules.rst
10849 F:      LICENSES/
10850 F:      scripts/spdxcheck-test.sh
10851 F:      scripts/spdxcheck.py
10852
10853 LINEAR RANGES HELPERS
10854 M:      Mark Brown <broonie@kernel.org>
10855 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10856 F:      lib/linear_ranges.c
10857 F:      lib/test_linear_ranges.c
10858 F:      include/linux/linear_range.h
10859
10860 LINUX FOR POWER MACINTOSH
10861 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10862 L:      linuxppc-dev@lists.ozlabs.org
10863 S:      Odd Fixes
10864 F:      arch/powerpc/platforms/powermac/
10865 F:      drivers/macintosh/
10866
10867 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10868 M:      Michael Ellerman <mpe@ellerman.id.au>
10869 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10870 R:      Paul Mackerras <paulus@samba.org>
10871 L:      linuxppc-dev@lists.ozlabs.org
10872 S:      Supported
10873 W:      https://github.com/linuxppc/wiki/wiki
10874 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10876 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10877 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10878 F:      Documentation/devicetree/bindings/powerpc/
10879 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10880 F:      Documentation/powerpc/
10881 F:      arch/powerpc/
10882 F:      drivers/*/*/*pasemi*
10883 F:      drivers/*/*pasemi*
10884 F:      drivers/char/tpm/tpm_ibmvtpm*
10885 F:      drivers/crypto/nx/
10886 F:      drivers/crypto/vmx/
10887 F:      drivers/i2c/busses/i2c-opal.c
10888 F:      drivers/net/ethernet/ibm/ibmveth.*
10889 F:      drivers/net/ethernet/ibm/ibmvnic.*
10890 F:      drivers/pci/hotplug/pnv_php.c
10891 F:      drivers/pci/hotplug/rpa*
10892 F:      drivers/rtc/rtc-opal.c
10893 F:      drivers/scsi/ibmvscsi/
10894 F:      drivers/tty/hvc/hvc_opal.c
10895 F:      drivers/watchdog/wdrtas.c
10896 F:      tools/testing/selftests/powerpc
10897 N:      /pmac
10898 N:      powermac
10899 N:      powernv
10900 N:      [^a-z0-9]ps3
10901 N:      pseries
10902
10903 LINUX FOR POWERPC EMBEDDED MPC5XXX
10904 M:      Anatolij Gustschin <agust@denx.de>
10905 L:      linuxppc-dev@lists.ozlabs.org
10906 S:      Odd Fixes
10907 F:      arch/powerpc/platforms/512x/
10908 F:      arch/powerpc/platforms/52xx/
10909
10910 LINUX FOR POWERPC EMBEDDED PPC4XX
10911 L:      linuxppc-dev@lists.ozlabs.org
10912 S:      Orphan
10913 F:      arch/powerpc/platforms/40x/
10914 F:      arch/powerpc/platforms/44x/
10915
10916 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10917 M:      Scott Wood <oss@buserror.net>
10918 L:      linuxppc-dev@lists.ozlabs.org
10919 S:      Odd fixes
10920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10921 F:      Documentation/devicetree/bindings/powerpc/fsl/
10922 F:      arch/powerpc/platforms/83xx/
10923 F:      arch/powerpc/platforms/85xx/
10924
10925 LINUX FOR POWERPC EMBEDDED PPC8XX
10926 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10927 L:      linuxppc-dev@lists.ozlabs.org
10928 S:      Maintained
10929 F:      arch/powerpc/platforms/8xx/
10930
10931 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10932 M:      Kees Cook <keescook@chromium.org>
10933 S:      Maintained
10934 F:      drivers/misc/lkdtm/*
10935 F:      tools/testing/selftests/lkdtm/*
10936
10937 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10938 M:      Alan Stern <stern@rowland.harvard.edu>
10939 M:      Andrea Parri <parri.andrea@gmail.com>
10940 M:      Will Deacon <will@kernel.org>
10941 M:      Peter Zijlstra <peterz@infradead.org>
10942 M:      Boqun Feng <boqun.feng@gmail.com>
10943 M:      Nicholas Piggin <npiggin@gmail.com>
10944 M:      David Howells <dhowells@redhat.com>
10945 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10946 M:      Luc Maranget <luc.maranget@inria.fr>
10947 M:      "Paul E. McKenney" <paulmck@kernel.org>
10948 R:      Akira Yokosawa <akiyks@gmail.com>
10949 R:      Daniel Lustig <dlustig@nvidia.com>
10950 R:      Joel Fernandes <joel@joelfernandes.org>
10951 L:      linux-kernel@vger.kernel.org
10952 L:      linux-arch@vger.kernel.org
10953 S:      Supported
10954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10955 F:      Documentation/atomic_bitops.txt
10956 F:      Documentation/atomic_t.txt
10957 F:      Documentation/core-api/refcount-vs-atomic.rst
10958 F:      Documentation/litmus-tests/
10959 F:      Documentation/memory-barriers.txt
10960 F:      tools/memory-model/
10961
10962 LIS3LV02D ACCELEROMETER DRIVER
10963 M:      Eric Piel <eric.piel@tremplin-utc.net>
10964 S:      Maintained
10965 F:      Documentation/misc-devices/lis3lv02d.rst
10966 F:      drivers/misc/lis3lv02d/
10967 F:      drivers/platform/x86/hp_accel.c
10968
10969 LIST KUNIT TEST
10970 M:      David Gow <davidgow@google.com>
10971 L:      linux-kselftest@vger.kernel.org
10972 L:      kunit-dev@googlegroups.com
10973 S:      Maintained
10974 F:      lib/list-test.c
10975
10976 LITEX PLATFORM
10977 M:      Karol Gugala <kgugala@antmicro.com>
10978 M:      Mateusz Holenko <mholenko@antmicro.com>
10979 S:      Maintained
10980 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10981 F:      arch/openrisc/boot/dts/or1klitex.dts
10982 F:      drivers/soc/litex/litex_soc_ctrl.c
10983 F:      drivers/tty/serial/liteuart.c
10984 F:      include/linux/litex.h
10985
10986 LIVE PATCHING
10987 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10988 M:      Jiri Kosina <jikos@kernel.org>
10989 M:      Miroslav Benes <mbenes@suse.cz>
10990 M:      Petr Mladek <pmladek@suse.com>
10991 R:      Joe Lawrence <joe.lawrence@redhat.com>
10992 L:      live-patching@vger.kernel.org
10993 S:      Maintained
10994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10995 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10996 F:      Documentation/livepatch/
10997 F:      arch/powerpc/include/asm/livepatch.h
10998 F:      arch/s390/include/asm/livepatch.h
10999 F:      arch/x86/include/asm/livepatch.h
11000 F:      include/linux/livepatch.h
11001 F:      kernel/livepatch/
11002 F:      lib/livepatch/
11003 F:      samples/livepatch/
11004 F:      tools/testing/selftests/livepatch/
11005
11006 LLC (802.2)
11007 L:      netdev@vger.kernel.org
11008 S:      Odd fixes
11009 F:      include/linux/llc.h
11010 F:      include/net/llc*
11011 F:      include/uapi/linux/llc.h
11012 F:      net/llc/
11013
11014 LM73 HARDWARE MONITOR DRIVER
11015 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11016 L:      linux-hwmon@vger.kernel.org
11017 S:      Maintained
11018 F:      drivers/hwmon/lm73.c
11019
11020 LM78 HARDWARE MONITOR DRIVER
11021 M:      Jean Delvare <jdelvare@suse.com>
11022 L:      linux-hwmon@vger.kernel.org
11023 S:      Maintained
11024 F:      Documentation/hwmon/lm78.rst
11025 F:      drivers/hwmon/lm78.c
11026
11027 LM83 HARDWARE MONITOR DRIVER
11028 M:      Jean Delvare <jdelvare@suse.com>
11029 L:      linux-hwmon@vger.kernel.org
11030 S:      Maintained
11031 F:      Documentation/hwmon/lm83.rst
11032 F:      drivers/hwmon/lm83.c
11033
11034 LM90 HARDWARE MONITOR DRIVER
11035 M:      Jean Delvare <jdelvare@suse.com>
11036 L:      linux-hwmon@vger.kernel.org
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11039 F:      Documentation/hwmon/lm90.rst
11040 F:      drivers/hwmon/lm90.c
11041 F:      include/dt-bindings/thermal/lm90.h
11042
11043 LM95234 HARDWARE MONITOR DRIVER
11044 M:      Guenter Roeck <linux@roeck-us.net>
11045 L:      linux-hwmon@vger.kernel.org
11046 S:      Maintained
11047 F:      Documentation/hwmon/lm95234.rst
11048 F:      drivers/hwmon/lm95234.c
11049
11050 LME2510 MEDIA DRIVER
11051 M:      Malcolm Priestley <tvboxspy@gmail.com>
11052 L:      linux-media@vger.kernel.org
11053 S:      Maintained
11054 W:      https://linuxtv.org
11055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11056 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11057
11058 LOADPIN SECURITY MODULE
11059 M:      Kees Cook <keescook@chromium.org>
11060 S:      Supported
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11062 F:      Documentation/admin-guide/LSM/LoadPin.rst
11063 F:      security/loadpin/
11064
11065 LOCKING PRIMITIVES
11066 M:      Peter Zijlstra <peterz@infradead.org>
11067 M:      Ingo Molnar <mingo@redhat.com>
11068 M:      Will Deacon <will@kernel.org>
11069 R:      Waiman Long <longman@redhat.com>
11070 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11071 L:      linux-kernel@vger.kernel.org
11072 S:      Maintained
11073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11074 F:      Documentation/locking/
11075 F:      arch/*/include/asm/spinlock*.h
11076 F:      include/linux/lockdep.h
11077 F:      include/linux/mutex*.h
11078 F:      include/linux/rwlock*.h
11079 F:      include/linux/rwsem*.h
11080 F:      include/linux/seqlock.h
11081 F:      include/linux/spinlock*.h
11082 F:      kernel/locking/
11083 F:      lib/locking*.[ch]
11084 X:      kernel/locking/locktorture.c
11085
11086 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11087 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11088 L:      linux-ntfs-dev@lists.sourceforge.net
11089 S:      Maintained
11090 W:      http://www.linux-ntfs.org/content/view/19/37/
11091 F:      Documentation/admin-guide/ldm.rst
11092 F:      block/partitions/ldm.*
11093
11094 LOGITECH HID GAMING KEYBOARDS
11095 M:      Hans de Goede <hdegoede@redhat.com>
11096 L:      linux-input@vger.kernel.org
11097 S:      Maintained
11098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11099 F:      drivers/hid/hid-lg-g15.c
11100
11101 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11102 M:      Adrien Grassein <adrien.grassein@gmail.com>
11103 S:      Maintained
11104 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11105 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11106
11107 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11108 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11109 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11110 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11111 L:      MPT-FusionLinux.pdl@broadcom.com
11112 L:      linux-scsi@vger.kernel.org
11113 S:      Supported
11114 W:      http://www.avagotech.com/support/
11115 F:      drivers/message/fusion/
11116 F:      drivers/scsi/mpt3sas/
11117
11118 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11119 M:      Matthew Wilcox <willy@infradead.org>
11120 L:      linux-scsi@vger.kernel.org
11121 S:      Maintained
11122 F:      drivers/scsi/sym53c8xx_2/
11123
11124 LTC1660 DAC DRIVER
11125 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11126 L:      linux-iio@vger.kernel.org
11127 S:      Maintained
11128 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11129 F:      drivers/iio/dac/ltc1660.c
11130
11131 LTC2947 HARDWARE MONITOR DRIVER
11132 M:      Nuno Sá <nuno.sa@analog.com>
11133 L:      linux-hwmon@vger.kernel.org
11134 S:      Supported
11135 W:      http://ez.analog.com/community/linux-device-drivers
11136 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11137 F:      drivers/hwmon/ltc2947-core.c
11138 F:      drivers/hwmon/ltc2947-i2c.c
11139 F:      drivers/hwmon/ltc2947-spi.c
11140 F:      drivers/hwmon/ltc2947.h
11141
11142 LTC2983 IIO TEMPERATURE DRIVER
11143 M:      Nuno Sá <nuno.sa@analog.com>
11144 L:      linux-iio@vger.kernel.org
11145 S:      Supported
11146 W:      http://ez.analog.com/community/linux-device-drivers
11147 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11148 F:      drivers/iio/temperature/ltc2983.c
11149
11150 LTC4261 HARDWARE MONITOR DRIVER
11151 M:      Guenter Roeck <linux@roeck-us.net>
11152 L:      linux-hwmon@vger.kernel.org
11153 S:      Maintained
11154 F:      Documentation/hwmon/ltc4261.rst
11155 F:      drivers/hwmon/ltc4261.c
11156
11157 LTC4306 I2C MULTIPLEXER DRIVER
11158 M:      Michael Hennerich <michael.hennerich@analog.com>
11159 L:      linux-i2c@vger.kernel.org
11160 S:      Supported
11161 W:      http://ez.analog.com/community/linux-device-drivers
11162 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11163 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11164
11165 LTP (Linux Test Project)
11166 M:      Mike Frysinger <vapier@gentoo.org>
11167 M:      Cyril Hrubis <chrubis@suse.cz>
11168 M:      Wanlong Gao <wanlong.gao@gmail.com>
11169 M:      Jan Stancek <jstancek@redhat.com>
11170 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11171 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11172 L:      ltp@lists.linux.it (subscribers-only)
11173 S:      Maintained
11174 W:      http://linux-test-project.github.io/
11175 T:      git git://github.com/linux-test-project/ltp.git
11176
11177 LYNX PCS MODULE
11178 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11179 L:      netdev@vger.kernel.org
11180 S:      Supported
11181 F:      drivers/net/pcs/pcs-lynx.c
11182 F:      include/linux/pcs-lynx.h
11183
11184 M68K ARCHITECTURE
11185 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11186 L:      linux-m68k@lists.linux-m68k.org
11187 S:      Maintained
11188 W:      http://www.linux-m68k.org/
11189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11190 F:      arch/m68k/
11191 F:      drivers/zorro/
11192
11193 M68K ON APPLE MACINTOSH
11194 M:      Joshua Thompson <funaho@jurai.org>
11195 L:      linux-m68k@lists.linux-m68k.org
11196 S:      Maintained
11197 W:      http://www.mac.linux-m68k.org/
11198 F:      arch/m68k/mac/
11199 F:      drivers/macintosh/adb-iop.c
11200 F:      drivers/macintosh/via-macii.c
11201
11202 M68K ON HP9000/300
11203 M:      Philip Blundell <philb@gnu.org>
11204 S:      Maintained
11205 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11206 F:      arch/m68k/hp300/
11207
11208 M88DS3103 MEDIA DRIVER
11209 M:      Antti Palosaari <crope@iki.fi>
11210 L:      linux-media@vger.kernel.org
11211 S:      Maintained
11212 W:      https://linuxtv.org
11213 W:      http://palosaari.fi/linux/
11214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11215 T:      git git://linuxtv.org/anttip/media_tree.git
11216 F:      drivers/media/dvb-frontends/m88ds3103*
11217
11218 M88RS2000 MEDIA DRIVER
11219 M:      Malcolm Priestley <tvboxspy@gmail.com>
11220 L:      linux-media@vger.kernel.org
11221 S:      Maintained
11222 W:      https://linuxtv.org
11223 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11224 F:      drivers/media/dvb-frontends/m88rs2000*
11225
11226 MA901 MASTERKIT USB FM RADIO DRIVER
11227 M:      Alexey Klimov <klimov.linux@gmail.com>
11228 L:      linux-media@vger.kernel.org
11229 S:      Maintained
11230 T:      git git://linuxtv.org/media_tree.git
11231 F:      drivers/media/radio/radio-ma901.c
11232
11233 MAC80211
11234 M:      Johannes Berg <johannes@sipsolutions.net>
11235 L:      linux-wireless@vger.kernel.org
11236 S:      Maintained
11237 W:      https://wireless.wiki.kernel.org/
11238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11240 F:      Documentation/networking/mac80211-injection.rst
11241 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11242 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11243 F:      include/net/mac80211.h
11244 F:      net/mac80211/
11245
11246 MAILBOX API
11247 M:      Jassi Brar <jassisinghbrar@gmail.com>
11248 L:      linux-kernel@vger.kernel.org
11249 S:      Maintained
11250 F:      drivers/mailbox/
11251 F:      include/linux/mailbox_client.h
11252 F:      include/linux/mailbox_controller.h
11253 F:      include/dt-bindings/mailbox/
11254 F:      Documentation/devicetree/bindings/mailbox/
11255
11256 MAILBOX ARM MHUv2
11257 M:      Viresh Kumar <viresh.kumar@linaro.org>
11258 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11259 L:      linux-kernel@vger.kernel.org
11260 S:      Maintained
11261 F:      drivers/mailbox/arm_mhuv2.c
11262 F:      include/linux/mailbox/arm_mhuv2_message.h
11263 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11264
11265 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11266 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11267 M:      Matt Johnston <matt@codeconstruct.com.au>
11268 L:      netdev@vger.kernel.org
11269 S:      Maintained
11270 F:      Documentation/networking/mctp.rst
11271 F:      drivers/net/mctp/
11272 F:      include/net/mctp.h
11273 F:      include/net/mctpdevice.h
11274 F:      include/net/netns/mctp.h
11275 F:      net/mctp/
11276
11277 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11278 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11279 L:      linux-man@vger.kernel.org
11280 S:      Maintained
11281 W:      http://www.kernel.org/doc/man-pages
11282
11283 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11284 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11285 L:      linux-mips@vger.kernel.org
11286 S:      Maintained
11287 F:      arch/mips/boot/dts/img/pistachio*
11288
11289 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11290 M:      Andrew Lunn <andrew@lunn.ch>
11291 M:      Vivien Didelot <vivien.didelot@gmail.com>
11292 L:      netdev@vger.kernel.org
11293 S:      Maintained
11294 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11295 F:      Documentation/networking/devlink/mv88e6xxx.rst
11296 F:      drivers/net/dsa/mv88e6xxx/
11297 F:      include/linux/dsa/mv88e6xxx.h
11298 F:      include/linux/platform_data/mv88e6xxx.h
11299
11300 MARVELL ARMADA 3700 PHY DRIVERS
11301 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11302 S:      Maintained
11303 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11304 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11305 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11306 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11307
11308 MARVELL ARMADA DRM SUPPORT
11309 M:      Russell King <linux@armlinux.org.uk>
11310 S:      Maintained
11311 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11312 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11313 F:      Documentation/devicetree/bindings/display/armada/
11314 F:      drivers/gpu/drm/armada/
11315 F:      include/uapi/drm/armada_drm.h
11316
11317 MARVELL CRYPTO DRIVER
11318 M:      Boris Brezillon <bbrezillon@kernel.org>
11319 M:      Arnaud Ebalard <arno@natisbad.org>
11320 M:      Srujana Challa <schalla@marvell.com>
11321 L:      linux-crypto@vger.kernel.org
11322 S:      Maintained
11323 F:      drivers/crypto/marvell/
11324 F:      include/linux/soc/marvell/octeontx2/
11325
11326 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11327 M:      Mirko Lindner <mlindner@marvell.com>
11328 M:      Stephen Hemminger <stephen@networkplumber.org>
11329 L:      netdev@vger.kernel.org
11330 S:      Maintained
11331 F:      drivers/net/ethernet/marvell/sk*
11332
11333 MARVELL LIBERTAS WIRELESS DRIVER
11334 L:      libertas-dev@lists.infradead.org
11335 S:      Orphan
11336 F:      drivers/net/wireless/marvell/libertas/
11337
11338 MARVELL MACCHIATOBIN SUPPORT
11339 M:      Russell King <linux@armlinux.org.uk>
11340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11341 S:      Maintained
11342 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11343
11344 MARVELL MV643XX ETHERNET DRIVER
11345 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11346 L:      netdev@vger.kernel.org
11347 S:      Maintained
11348 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11349 F:      include/linux/mv643xx.h
11350
11351 MARVELL MV88X3310 PHY DRIVER
11352 M:      Russell King <linux@armlinux.org.uk>
11353 M:      Marek Behún <kabel@kernel.org>
11354 L:      netdev@vger.kernel.org
11355 S:      Maintained
11356 F:      drivers/net/phy/marvell10g.c
11357
11358 MARVELL MVEBU THERMAL DRIVER
11359 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11360 S:      Maintained
11361 F:      drivers/thermal/armada_thermal.c
11362
11363 MARVELL MVNETA ETHERNET DRIVER
11364 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11365 L:      netdev@vger.kernel.org
11366 S:      Maintained
11367 F:      drivers/net/ethernet/marvell/mvneta.*
11368
11369 MARVELL MVPP2 ETHERNET DRIVER
11370 M:      Marcin Wojtas <mw@semihalf.com>
11371 M:      Russell King <linux@armlinux.org.uk>
11372 L:      netdev@vger.kernel.org
11373 S:      Maintained
11374 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11375 F:      drivers/net/ethernet/marvell/mvpp2/
11376
11377 MARVELL MWIFIEX WIRELESS DRIVER
11378 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11379 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11380 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11381 M:      Xinming Hu <huxinming820@gmail.com>
11382 L:      linux-wireless@vger.kernel.org
11383 S:      Maintained
11384 F:      drivers/net/wireless/marvell/mwifiex/
11385
11386 MARVELL MWL8K WIRELESS DRIVER
11387 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11388 L:      linux-wireless@vger.kernel.org
11389 S:      Odd Fixes
11390 F:      drivers/net/wireless/marvell/mwl8k.c
11391
11392 MARVELL NAND CONTROLLER DRIVER
11393 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11394 L:      linux-mtd@lists.infradead.org
11395 S:      Maintained
11396 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11397 F:      drivers/mtd/nand/raw/marvell_nand.c
11398
11399 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11400 M:      Sunil Goutham <sgoutham@marvell.com>
11401 M:      Geetha sowjanya <gakula@marvell.com>
11402 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11403 M:      hariprasad <hkelam@marvell.com>
11404 L:      netdev@vger.kernel.org
11405 S:      Supported
11406 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11407 F:      include/linux/soc/marvell/octeontx2/
11408
11409 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11410 M:      Sunil Goutham <sgoutham@marvell.com>
11411 M:      Linu Cherian <lcherian@marvell.com>
11412 M:      Geetha sowjanya <gakula@marvell.com>
11413 M:      Jerin Jacob <jerinj@marvell.com>
11414 M:      hariprasad <hkelam@marvell.com>
11415 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11416 L:      netdev@vger.kernel.org
11417 S:      Supported
11418 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11419 F:      drivers/net/ethernet/marvell/octeontx2/af/
11420
11421 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11422 M:      Taras Chornyi <tchornyi@marvell.com>
11423 S:      Supported
11424 W:      https://github.com/Marvell-switching/switchdev-prestera
11425 F:      drivers/net/ethernet/marvell/prestera/
11426
11427 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11428 M:      Nicolas Pitre <nico@fluxnic.net>
11429 S:      Odd Fixes
11430 F:      drivers/mmc/host/mvsdio.*
11431
11432 MARVELL USB MDIO CONTROLLER DRIVER
11433 M:      Tobias Waldekranz <tobias@waldekranz.com>
11434 L:      netdev@vger.kernel.org
11435 S:      Maintained
11436 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11437 F:      drivers/net/mdio/mdio-mvusb.c
11438
11439 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11440 M:      Hu Ziji <huziji@marvell.com>
11441 L:      linux-mmc@vger.kernel.org
11442 S:      Supported
11443 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11444 F:      drivers/mmc/host/sdhci-xenon*
11445
11446 MATROX FRAMEBUFFER DRIVER
11447 L:      linux-fbdev@vger.kernel.org
11448 S:      Orphan
11449 F:      drivers/video/fbdev/matrox/matroxfb_*
11450 F:      include/uapi/linux/matroxfb.h
11451
11452 MAX15301 DRIVER
11453 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11454 L:      linux-hwmon@vger.kernel.org
11455 S:      Maintained
11456 F:      Documentation/hwmon/max15301.rst
11457 F:      drivers/hwmon/pmbus/max15301.c
11458
11459 MAX16065 HARDWARE MONITOR DRIVER
11460 M:      Guenter Roeck <linux@roeck-us.net>
11461 L:      linux-hwmon@vger.kernel.org
11462 S:      Maintained
11463 F:      Documentation/hwmon/max16065.rst
11464 F:      drivers/hwmon/max16065.c
11465
11466 MAX2175 SDR TUNER DRIVER
11467 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11468 L:      linux-media@vger.kernel.org
11469 S:      Maintained
11470 T:      git git://linuxtv.org/media_tree.git
11471 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11472 F:      Documentation/userspace-api/media/drivers/max2175.rst
11473 F:      drivers/media/i2c/max2175*
11474 F:      include/uapi/linux/max2175.h
11475
11476 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11477 L:      linux-hwmon@vger.kernel.org
11478 S:      Orphan
11479 F:      Documentation/hwmon/max6650.rst
11480 F:      drivers/hwmon/max6650.c
11481
11482 MAX6697 HARDWARE MONITOR DRIVER
11483 M:      Guenter Roeck <linux@roeck-us.net>
11484 L:      linux-hwmon@vger.kernel.org
11485 S:      Maintained
11486 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11487 F:      Documentation/hwmon/max6697.rst
11488 F:      drivers/hwmon/max6697.c
11489 F:      include/linux/platform_data/max6697.h
11490
11491 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11492 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11493 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11494 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11495 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11496 L:      linux-media@vger.kernel.org
11497 S:      Maintained
11498 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11499 F:      drivers/media/i2c/max9286.c
11500
11501 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11502 M:      Peter Rosin <peda@axentia.se>
11503 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11504 S:      Maintained
11505 F:      Documentation/devicetree/bindings/sound/max9860.txt
11506 F:      sound/soc/codecs/max9860.*
11507
11508 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11509 M:      Andreas Klinger <ak@it-klinger.de>
11510 L:      linux-iio@vger.kernel.org
11511 S:      Maintained
11512 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11513 F:      drivers/iio/proximity/mb1232.c
11514
11515 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11516 R:      Iskren Chernev <iskren.chernev@gmail.com>
11517 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11518 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11519 R:      Matheus Castello <matheus@castello.eng.br>
11520 L:      linux-pm@vger.kernel.org
11521 S:      Maintained
11522 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11523 F:      drivers/power/supply/max17040_battery.c
11524
11525 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11526 R:      Hans de Goede <hdegoede@redhat.com>
11527 R:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11528 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11529 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11530 R:      Purism Kernel Team <kernel@puri.sm>
11531 L:      linux-pm@vger.kernel.org
11532 S:      Maintained
11533 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11534 F:      drivers/power/supply/max17042_battery.c
11535
11536 MAXIM MAX77650 PMIC MFD DRIVER
11537 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11538 L:      linux-kernel@vger.kernel.org
11539 S:      Maintained
11540 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11541 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11542 F:      drivers/gpio/gpio-max77650.c
11543 F:      drivers/input/misc/max77650-onkey.c
11544 F:      drivers/leds/leds-max77650.c
11545 F:      drivers/mfd/max77650.c
11546 F:      drivers/power/supply/max77650-charger.c
11547 F:      drivers/regulator/max77650-regulator.c
11548 F:      include/linux/mfd/max77650.h
11549
11550 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11551 M:      Javier Martinez Canillas <javier@dowhile0.org>
11552 L:      linux-kernel@vger.kernel.org
11553 S:      Supported
11554 F:      Documentation/devicetree/bindings/*/*max77802.txt
11555 F:      drivers/regulator/max77802-regulator.c
11556 F:      include/dt-bindings/*/*max77802.h
11557
11558 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11559 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11560 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11561 L:      linux-pm@vger.kernel.org
11562 S:      Supported
11563 F:      drivers/power/supply/max14577_charger.c
11564 F:      drivers/power/supply/max77693_charger.c
11565
11566 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11567 M:      Chanwoo Choi <cw00.choi@samsung.com>
11568 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11569 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11570 L:      linux-kernel@vger.kernel.org
11571 S:      Supported
11572 F:      Documentation/devicetree/bindings/*/max77686.txt
11573 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11574 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11575 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11576 F:      drivers/*/max14577*.c
11577 F:      drivers/*/max77686*.c
11578 F:      drivers/*/max77693*.c
11579 F:      drivers/clk/clk-max77686.c
11580 F:      drivers/extcon/extcon-max14577.c
11581 F:      drivers/extcon/extcon-max77693.c
11582 F:      drivers/rtc/rtc-max77686.c
11583 F:      include/linux/mfd/max14577*.h
11584 F:      include/linux/mfd/max77686*.h
11585 F:      include/linux/mfd/max77693*.h
11586
11587 MAXIRADIO FM RADIO RECEIVER DRIVER
11588 M:      Hans Verkuil <hverkuil@xs4all.nl>
11589 L:      linux-media@vger.kernel.org
11590 S:      Maintained
11591 W:      https://linuxtv.org
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      drivers/media/radio/radio-maxiradio*
11594
11595 MAXLINEAR ETHERNET PHY DRIVER
11596 M:      Xu Liang <lxu@maxlinear.com>
11597 L:      netdev@vger.kernel.org
11598 S:      Supported
11599 F:      drivers/net/phy/mxl-gpy.c
11600
11601 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11602 R:      Yasushi SHOJI <yashi@spacecubics.com>
11603 L:      linux-can@vger.kernel.org
11604 S:      Maintained
11605 F:      drivers/net/can/usb/mcba_usb.c
11606
11607 MCAN MMIO DEVICE DRIVER
11608 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11609 L:      linux-can@vger.kernel.org
11610 S:      Maintained
11611 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11612 F:      drivers/net/can/m_can/m_can.c
11613 F:      drivers/net/can/m_can/m_can.h
11614 F:      drivers/net/can/m_can/m_can_platform.c
11615
11616 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11617 M:      Rishi Gupta <gupt21@gmail.com>
11618 L:      linux-i2c@vger.kernel.org
11619 L:      linux-input@vger.kernel.org
11620 S:      Maintained
11621 F:      drivers/hid/hid-mcp2221.c
11622
11623 MCP251XFD SPI-CAN NETWORK DRIVER
11624 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11625 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11626 R:      Thomas Kopp <thomas.kopp@microchip.com>
11627 L:      linux-can@vger.kernel.org
11628 S:      Maintained
11629 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11630 F:      drivers/net/can/spi/mcp251xfd/
11631
11632 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11633 M:      Peter Rosin <peda@axentia.se>
11634 L:      linux-iio@vger.kernel.org
11635 S:      Maintained
11636 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11637 F:      drivers/iio/potentiometer/mcp4018.c
11638 F:      drivers/iio/potentiometer/mcp4531.c
11639
11640 MCR20A IEEE-802.15.4 RADIO DRIVER
11641 M:      Xue Liu <liuxuenetmail@gmail.com>
11642 L:      linux-wpan@vger.kernel.org
11643 S:      Maintained
11644 W:      https://github.com/xueliu/mcr20a-linux
11645 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11646 F:      drivers/net/ieee802154/mcr20a.c
11647 F:      drivers/net/ieee802154/mcr20a.h
11648
11649 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11650 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11651 L:      linux-iio@vger.kernel.org
11652 S:      Maintained
11653 F:      drivers/iio/dac/cio-dac.c
11654
11655 MEDIA CONTROLLER FRAMEWORK
11656 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11657 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11658 L:      linux-media@vger.kernel.org
11659 S:      Supported
11660 W:      https://www.linuxtv.org
11661 T:      git git://linuxtv.org/media_tree.git
11662 F:      drivers/media/mc/
11663 F:      include/media/media-*.h
11664 F:      include/uapi/linux/media.h
11665
11666 MEDIA DRIVER FOR FREESCALE IMX PXP
11667 M:      Philipp Zabel <p.zabel@pengutronix.de>
11668 L:      linux-media@vger.kernel.org
11669 S:      Maintained
11670 T:      git git://linuxtv.org/media_tree.git
11671 F:      drivers/media/platform/imx-pxp.[ch]
11672
11673 MEDIA DRIVERS FOR ASCOT2E
11674 M:      Sergey Kozlov <serjk@netup.ru>
11675 M:      Abylay Ospan <aospan@netup.ru>
11676 L:      linux-media@vger.kernel.org
11677 S:      Supported
11678 W:      https://linuxtv.org
11679 W:      http://netup.tv/
11680 T:      git git://linuxtv.org/media_tree.git
11681 F:      drivers/media/dvb-frontends/ascot2e*
11682
11683 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11684 M:      Jasmin Jessich <jasmin@anw.at>
11685 L:      linux-media@vger.kernel.org
11686 S:      Maintained
11687 W:      https://linuxtv.org
11688 T:      git git://linuxtv.org/media_tree.git
11689 F:      drivers/media/dvb-frontends/cxd2099*
11690
11691 MEDIA DRIVERS FOR CXD2841ER
11692 M:      Sergey Kozlov <serjk@netup.ru>
11693 M:      Abylay Ospan <aospan@netup.ru>
11694 L:      linux-media@vger.kernel.org
11695 S:      Supported
11696 W:      https://linuxtv.org
11697 W:      http://netup.tv/
11698 T:      git git://linuxtv.org/media_tree.git
11699 F:      drivers/media/dvb-frontends/cxd2841er*
11700
11701 MEDIA DRIVERS FOR CXD2880
11702 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11703 L:      linux-media@vger.kernel.org
11704 S:      Supported
11705 W:      http://linuxtv.org/
11706 T:      git git://linuxtv.org/media_tree.git
11707 F:      drivers/media/dvb-frontends/cxd2880/*
11708 F:      drivers/media/spi/cxd2880*
11709
11710 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11711 L:      linux-media@vger.kernel.org
11712 S:      Orphan
11713 W:      https://linuxtv.org
11714 T:      git git://linuxtv.org/media_tree.git
11715 F:      drivers/media/pci/ddbridge/*
11716
11717 MEDIA DRIVERS FOR FREESCALE IMX
11718 M:      Steve Longerbeam <slongerbeam@gmail.com>
11719 M:      Philipp Zabel <p.zabel@pengutronix.de>
11720 L:      linux-media@vger.kernel.org
11721 S:      Maintained
11722 T:      git git://linuxtv.org/media_tree.git
11723 F:      Documentation/admin-guide/media/imx.rst
11724 F:      Documentation/devicetree/bindings/media/imx.txt
11725 F:      drivers/staging/media/imx/
11726 F:      include/linux/imx-media.h
11727 F:      include/media/imx.h
11728
11729 MEDIA DRIVERS FOR FREESCALE IMX7
11730 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11732 L:      linux-media@vger.kernel.org
11733 S:      Maintained
11734 T:      git git://linuxtv.org/media_tree.git
11735 F:      Documentation/admin-guide/media/imx7.rst
11736 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11737 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11738 F:      drivers/staging/media/imx/imx7-media-csi.c
11739 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11740
11741 MEDIA DRIVERS FOR HELENE
11742 M:      Abylay Ospan <aospan@netup.ru>
11743 L:      linux-media@vger.kernel.org
11744 S:      Supported
11745 W:      https://linuxtv.org
11746 W:      http://netup.tv/
11747 T:      git git://linuxtv.org/media_tree.git
11748 F:      drivers/media/dvb-frontends/helene*
11749
11750 MEDIA DRIVERS FOR HORUS3A
11751 M:      Sergey Kozlov <serjk@netup.ru>
11752 M:      Abylay Ospan <aospan@netup.ru>
11753 L:      linux-media@vger.kernel.org
11754 S:      Supported
11755 W:      https://linuxtv.org
11756 W:      http://netup.tv/
11757 T:      git git://linuxtv.org/media_tree.git
11758 F:      drivers/media/dvb-frontends/horus3a*
11759
11760 MEDIA DRIVERS FOR LNBH25
11761 M:      Sergey Kozlov <serjk@netup.ru>
11762 M:      Abylay Ospan <aospan@netup.ru>
11763 L:      linux-media@vger.kernel.org
11764 S:      Supported
11765 W:      https://linuxtv.org
11766 W:      http://netup.tv/
11767 T:      git git://linuxtv.org/media_tree.git
11768 F:      drivers/media/dvb-frontends/lnbh25*
11769
11770 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11771 L:      linux-media@vger.kernel.org
11772 S:      Orphan
11773 W:      https://linuxtv.org
11774 T:      git git://linuxtv.org/media_tree.git
11775 F:      drivers/media/dvb-frontends/mxl5xx*
11776
11777 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11778 M:      Sergey Kozlov <serjk@netup.ru>
11779 M:      Abylay Ospan <aospan@netup.ru>
11780 L:      linux-media@vger.kernel.org
11781 S:      Supported
11782 W:      https://linuxtv.org
11783 W:      http://netup.tv/
11784 T:      git git://linuxtv.org/media_tree.git
11785 F:      drivers/media/pci/netup_unidvb/*
11786
11787 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11788 M:      Dmitry Osipenko <digetx@gmail.com>
11789 L:      linux-media@vger.kernel.org
11790 L:      linux-tegra@vger.kernel.org
11791 S:      Maintained
11792 T:      git git://linuxtv.org/media_tree.git
11793 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11794 F:      drivers/staging/media/tegra-vde/
11795
11796 MEDIA DRIVERS FOR RENESAS - CEU
11797 M:      Jacopo Mondi <jacopo@jmondi.org>
11798 L:      linux-media@vger.kernel.org
11799 L:      linux-renesas-soc@vger.kernel.org
11800 S:      Supported
11801 T:      git git://linuxtv.org/media_tree.git
11802 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11803 F:      drivers/media/platform/renesas-ceu.c
11804 F:      include/media/drv-intf/renesas-ceu.h
11805
11806 MEDIA DRIVERS FOR RENESAS - DRIF
11807 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11808 L:      linux-media@vger.kernel.org
11809 L:      linux-renesas-soc@vger.kernel.org
11810 S:      Supported
11811 T:      git git://linuxtv.org/media_tree.git
11812 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11813 F:      drivers/media/platform/rcar_drif.c
11814
11815 MEDIA DRIVERS FOR RENESAS - FCP
11816 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11817 L:      linux-media@vger.kernel.org
11818 L:      linux-renesas-soc@vger.kernel.org
11819 S:      Supported
11820 T:      git git://linuxtv.org/media_tree.git
11821 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11822 F:      drivers/media/platform/rcar-fcp.c
11823 F:      include/media/rcar-fcp.h
11824
11825 MEDIA DRIVERS FOR RENESAS - FDP1
11826 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11827 L:      linux-media@vger.kernel.org
11828 L:      linux-renesas-soc@vger.kernel.org
11829 S:      Supported
11830 T:      git git://linuxtv.org/media_tree.git
11831 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11832 F:      drivers/media/platform/rcar_fdp1.c
11833
11834 MEDIA DRIVERS FOR RENESAS - VIN
11835 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11836 L:      linux-media@vger.kernel.org
11837 L:      linux-renesas-soc@vger.kernel.org
11838 S:      Supported
11839 T:      git git://linuxtv.org/media_tree.git
11840 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11841 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11842 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11843 F:      drivers/media/platform/rcar-isp.c
11844 F:      drivers/media/platform/rcar-vin/
11845
11846 MEDIA DRIVERS FOR RENESAS - VSP1
11847 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11848 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11849 L:      linux-media@vger.kernel.org
11850 L:      linux-renesas-soc@vger.kernel.org
11851 S:      Supported
11852 T:      git git://linuxtv.org/media_tree.git
11853 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11854 F:      drivers/media/platform/vsp1/
11855
11856 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11857 L:      linux-media@vger.kernel.org
11858 S:      Orphan
11859 W:      https://linuxtv.org
11860 T:      git git://linuxtv.org/media_tree.git
11861 F:      drivers/media/dvb-frontends/stv0910*
11862
11863 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11864 L:      linux-media@vger.kernel.org
11865 S:      Orphan
11866 W:      https://linuxtv.org
11867 T:      git git://linuxtv.org/media_tree.git
11868 F:      drivers/media/dvb-frontends/stv6111*
11869
11870 MEDIA DRIVERS FOR STM32 - DCMI
11871 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11872 L:      linux-media@vger.kernel.org
11873 S:      Supported
11874 T:      git git://linuxtv.org/media_tree.git
11875 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11876 F:      drivers/media/platform/stm32/stm32-dcmi.c
11877
11878 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11879 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11880 L:      linux-media@vger.kernel.org
11881 S:      Maintained
11882 W:      https://linuxtv.org
11883 Q:      http://patchwork.kernel.org/project/linux-media/list/
11884 T:      git git://linuxtv.org/media_tree.git
11885 F:      Documentation/admin-guide/media/
11886 F:      Documentation/devicetree/bindings/media/
11887 F:      Documentation/driver-api/media/
11888 F:      Documentation/userspace-api/media/
11889 F:      drivers/media/
11890 F:      drivers/staging/media/
11891 F:      include/linux/platform_data/media/
11892 F:      include/media/
11893 F:      include/uapi/linux/dvb/
11894 F:      include/uapi/linux/ivtv*
11895 F:      include/uapi/linux/media.h
11896 F:      include/uapi/linux/meye.h
11897 F:      include/uapi/linux/uvcvideo.h
11898 F:      include/uapi/linux/v4l2-*
11899 F:      include/uapi/linux/videodev2.h
11900
11901 MEDIATEK BLUETOOTH DRIVER
11902 M:      Sean Wang <sean.wang@mediatek.com>
11903 L:      linux-bluetooth@vger.kernel.org
11904 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11905 S:      Maintained
11906 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11907 F:      drivers/bluetooth/btmtkuart.c
11908
11909 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11910 M:      Sean Wang <sean.wang@mediatek.com>
11911 L:      linux-pm@vger.kernel.org
11912 S:      Maintained
11913 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11914 F:      drivers/power/reset/mt6323-poweroff.c
11915
11916 MEDIATEK CIR DRIVER
11917 M:      Sean Wang <sean.wang@mediatek.com>
11918 S:      Maintained
11919 F:      drivers/media/rc/mtk-cir.c
11920
11921 MEDIATEK DMA DRIVER
11922 M:      Sean Wang <sean.wang@mediatek.com>
11923 L:      dmaengine@vger.kernel.org
11924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11925 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11926 S:      Maintained
11927 F:      Documentation/devicetree/bindings/dma/mtk-*
11928 F:      drivers/dma/mediatek/
11929
11930 MEDIATEK ETHERNET DRIVER
11931 M:      Felix Fietkau <nbd@nbd.name>
11932 M:      John Crispin <john@phrozen.org>
11933 M:      Sean Wang <sean.wang@mediatek.com>
11934 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11935 L:      netdev@vger.kernel.org
11936 S:      Maintained
11937 F:      drivers/net/ethernet/mediatek/
11938
11939 MEDIATEK I2C CONTROLLER DRIVER
11940 M:      Qii Wang <qii.wang@mediatek.com>
11941 L:      linux-i2c@vger.kernel.org
11942 S:      Maintained
11943 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11944 F:      drivers/i2c/busses/i2c-mt65xx.c
11945
11946 MEDIATEK IOMMU DRIVER
11947 M:      Yong Wu <yong.wu@mediatek.com>
11948 L:      iommu@lists.linux-foundation.org
11949 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11950 S:      Supported
11951 F:      Documentation/devicetree/bindings/iommu/mediatek*
11952 F:      drivers/iommu/mtk_iommu*
11953 F:      include/dt-bindings/memory/mt*-port.h
11954
11955 MEDIATEK JPEG DRIVER
11956 M:      Rick Chang <rick.chang@mediatek.com>
11957 M:      Bin Liu <bin.liu@mediatek.com>
11958 S:      Supported
11959 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11960 F:      drivers/media/platform/mtk-jpeg/
11961
11962 MEDIATEK MDP DRIVER
11963 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11964 M:      Houlong Wei <houlong.wei@mediatek.com>
11965 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11966 S:      Supported
11967 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11968 F:      drivers/media/platform/mtk-mdp/
11969 F:      drivers/media/platform/mtk-vpu/
11970
11971 MEDIATEK MEDIA DRIVER
11972 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11973 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11974 S:      Supported
11975 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11976 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11977 F:      drivers/media/platform/mtk-vcodec/
11978 F:      drivers/media/platform/mtk-vpu/
11979
11980 MEDIATEK MMC/SD/SDIO DRIVER
11981 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11982 S:      Maintained
11983 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11984 F:      drivers/mmc/host/mtk-sd.c
11985
11986 MEDIATEK MT76 WIRELESS LAN DRIVER
11987 M:      Felix Fietkau <nbd@nbd.name>
11988 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11989 M:      Ryder Lee <ryder.lee@mediatek.com>
11990 R:      Shayne Chen <shayne.chen@mediatek.com>
11991 R:      Sean Wang <sean.wang@mediatek.com>
11992 L:      linux-wireless@vger.kernel.org
11993 S:      Maintained
11994 F:      drivers/net/wireless/mediatek/mt76/
11995
11996 MEDIATEK MT7601U WIRELESS LAN DRIVER
11997 M:      Jakub Kicinski <kubakici@wp.pl>
11998 L:      linux-wireless@vger.kernel.org
11999 S:      Maintained
12000 F:      drivers/net/wireless/mediatek/mt7601u/
12001
12002 MEDIATEK MT7621 CLOCK DRIVER
12003 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12004 S:      Maintained
12005 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12006 F:      drivers/clk/ralink/clk-mt7621.c
12007
12008 MEDIATEK MT7621/28/88 I2C DRIVER
12009 M:      Stefan Roese <sr@denx.de>
12010 L:      linux-i2c@vger.kernel.org
12011 S:      Maintained
12012 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12013 F:      drivers/i2c/busses/i2c-mt7621.c
12014
12015 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12016 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12017 S:      Maintained
12018 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12019 F:      drivers/pci/controller/pcie-mt7621.c
12020
12021 MEDIATEK MT7621 PHY PCI DRIVER
12022 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12023 S:      Maintained
12024 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12025 F:      drivers/phy/ralink/phy-mt7621-pci.c
12026
12027 MEDIATEK NAND CONTROLLER DRIVER
12028 L:      linux-mtd@lists.infradead.org
12029 S:      Orphan
12030 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12031 F:      drivers/mtd/nand/raw/mtk_*
12032
12033 MEDIATEK PMIC LED DRIVER
12034 M:      Sean Wang <sean.wang@mediatek.com>
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12037 F:      drivers/leds/leds-mt6323.c
12038
12039 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12040 M:      Sean Wang <sean.wang@mediatek.com>
12041 S:      Maintained
12042 F:      drivers/char/hw_random/mtk-rng.c
12043
12044 MEDIATEK SMI DRIVER
12045 M:      Yong Wu <yong.wu@mediatek.com>
12046 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12047 S:      Supported
12048 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12049 F:      drivers/memory/mtk-smi.c
12050 F:      include/soc/mediatek/smi.h
12051
12052 MEDIATEK SWITCH DRIVER
12053 M:      Sean Wang <sean.wang@mediatek.com>
12054 M:      Landen Chao <Landen.Chao@mediatek.com>
12055 M:      DENG Qingfang <dqfext@gmail.com>
12056 L:      netdev@vger.kernel.org
12057 S:      Maintained
12058 F:      drivers/net/dsa/mt7530.*
12059 F:      net/dsa/tag_mtk.c
12060
12061 MEDIATEK USB3 DRD IP DRIVER
12062 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12063 L:      linux-usb@vger.kernel.org
12064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12065 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12066 S:      Maintained
12067 F:      Documentation/devicetree/bindings/usb/mediatek,*
12068 F:      drivers/usb/host/xhci-mtk*
12069 F:      drivers/usb/mtu3/
12070
12071 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12072 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12073 M:      Martin Donnelly <martin.donnelly@ge.com>
12074 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12075 S:      Maintained
12076 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12077 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12078
12079 MEGARAID SCSI/SAS DRIVERS
12080 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12081 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12082 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12083 L:      megaraidlinux.pdl@broadcom.com
12084 L:      linux-scsi@vger.kernel.org
12085 S:      Maintained
12086 W:      http://www.avagotech.com/support/
12087 F:      Documentation/scsi/megaraid.rst
12088 F:      drivers/scsi/megaraid.*
12089 F:      drivers/scsi/megaraid/
12090
12091 MELEXIS MLX90614 DRIVER
12092 M:      Crt Mori <cmo@melexis.com>
12093 L:      linux-iio@vger.kernel.org
12094 S:      Supported
12095 W:      http://www.melexis.com
12096 F:      drivers/iio/temperature/mlx90614.c
12097
12098 MELEXIS MLX90632 DRIVER
12099 M:      Crt Mori <cmo@melexis.com>
12100 L:      linux-iio@vger.kernel.org
12101 S:      Supported
12102 W:      http://www.melexis.com
12103 F:      drivers/iio/temperature/mlx90632.c
12104
12105 MELFAS MIP4 TOUCHSCREEN DRIVER
12106 M:      Sangwon Jee <jeesw@melfas.com>
12107 S:      Supported
12108 W:      http://www.melfas.com
12109 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12110 F:      drivers/input/touchscreen/melfas_mip4.c
12111
12112 MELLANOX BLUEFIELD I2C DRIVER
12113 M:      Khalil Blaiech <kblaiech@nvidia.com>
12114 L:      linux-i2c@vger.kernel.org
12115 S:      Supported
12116 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12117 F:      drivers/i2c/busses/i2c-mlxbf.c
12118
12119 MELLANOX ETHERNET DRIVER (mlx4_en)
12120 M:      Tariq Toukan <tariqt@nvidia.com>
12121 L:      netdev@vger.kernel.org
12122 S:      Supported
12123 W:      http://www.mellanox.com
12124 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12125 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12126
12127 MELLANOX ETHERNET DRIVER (mlx5e)
12128 M:      Saeed Mahameed <saeedm@nvidia.com>
12129 L:      netdev@vger.kernel.org
12130 S:      Supported
12131 W:      http://www.mellanox.com
12132 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12133 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12134
12135 MELLANOX ETHERNET INNOVA DRIVERS
12136 R:      Boris Pismenny <borisp@nvidia.com>
12137 L:      netdev@vger.kernel.org
12138 S:      Supported
12139 W:      http://www.mellanox.com
12140 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12141 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12142 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12143 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12144 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12145
12146 MELLANOX ETHERNET SWITCH DRIVERS
12147 M:      Jiri Pirko <jiri@nvidia.com>
12148 M:      Ido Schimmel <idosch@nvidia.com>
12149 L:      netdev@vger.kernel.org
12150 S:      Supported
12151 W:      http://www.mellanox.com
12152 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12153 F:      drivers/net/ethernet/mellanox/mlxsw/
12154 F:      tools/testing/selftests/drivers/net/mlxsw/
12155
12156 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12157 M:      mlxsw@nvidia.com
12158 L:      netdev@vger.kernel.org
12159 S:      Supported
12160 W:      http://www.mellanox.com
12161 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12162 F:      drivers/net/ethernet/mellanox/mlxfw/
12163
12164 MELLANOX HARDWARE PLATFORM SUPPORT
12165 M:      Hans de Goede <hdegoede@redhat.com>
12166 M:      Mark Gross <markgross@kernel.org>
12167 M:      Vadim Pasternak <vadimp@nvidia.com>
12168 L:      platform-driver-x86@vger.kernel.org
12169 S:      Supported
12170 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12171 F:      drivers/platform/mellanox/
12172 F:      include/linux/platform_data/mlxreg.h
12173
12174 MELLANOX MLX4 core VPI driver
12175 M:      Tariq Toukan <tariqt@nvidia.com>
12176 L:      netdev@vger.kernel.org
12177 L:      linux-rdma@vger.kernel.org
12178 S:      Supported
12179 W:      http://www.mellanox.com
12180 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12181 F:      drivers/net/ethernet/mellanox/mlx4/
12182 F:      include/linux/mlx4/
12183
12184 MELLANOX MLX4 IB driver
12185 M:      Yishai Hadas <yishaih@nvidia.com>
12186 L:      linux-rdma@vger.kernel.org
12187 S:      Supported
12188 W:      http://www.mellanox.com
12189 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12190 F:      drivers/infiniband/hw/mlx4/
12191 F:      include/linux/mlx4/
12192 F:      include/uapi/rdma/mlx4-abi.h
12193
12194 MELLANOX MLX5 core VPI driver
12195 M:      Saeed Mahameed <saeedm@nvidia.com>
12196 M:      Leon Romanovsky <leonro@nvidia.com>
12197 L:      netdev@vger.kernel.org
12198 L:      linux-rdma@vger.kernel.org
12199 S:      Supported
12200 W:      http://www.mellanox.com
12201 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12202 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12203 F:      drivers/net/ethernet/mellanox/mlx5/core/
12204 F:      include/linux/mlx5/
12205
12206 MELLANOX MLX5 IB driver
12207 M:      Leon Romanovsky <leonro@nvidia.com>
12208 L:      linux-rdma@vger.kernel.org
12209 S:      Supported
12210 W:      http://www.mellanox.com
12211 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12212 F:      drivers/infiniband/hw/mlx5/
12213 F:      include/linux/mlx5/
12214 F:      include/uapi/rdma/mlx5-abi.h
12215
12216 MELLANOX MLXCPLD I2C AND MUX DRIVER
12217 M:      Vadim Pasternak <vadimp@nvidia.com>
12218 M:      Michael Shych <michaelsh@nvidia.com>
12219 L:      linux-i2c@vger.kernel.org
12220 S:      Supported
12221 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12222 F:      drivers/i2c/busses/i2c-mlxcpld.c
12223 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12224
12225 MELLANOX MLXCPLD LED DRIVER
12226 M:      Vadim Pasternak <vadimp@nvidia.com>
12227 L:      linux-leds@vger.kernel.org
12228 S:      Supported
12229 F:      Documentation/leds/leds-mlxcpld.rst
12230 F:      drivers/leds/leds-mlxcpld.c
12231 F:      drivers/leds/leds-mlxreg.c
12232
12233 MELLANOX PLATFORM DRIVER
12234 M:      Vadim Pasternak <vadimp@nvidia.com>
12235 L:      platform-driver-x86@vger.kernel.org
12236 S:      Supported
12237 F:      drivers/platform/x86/mlx-platform.c
12238
12239 MEMBARRIER SUPPORT
12240 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12241 M:      "Paul E. McKenney" <paulmck@kernel.org>
12242 L:      linux-kernel@vger.kernel.org
12243 S:      Supported
12244 F:      arch/powerpc/include/asm/membarrier.h
12245 F:      include/uapi/linux/membarrier.h
12246 F:      kernel/sched/membarrier.c
12247
12248 MEMBLOCK
12249 M:      Mike Rapoport <rppt@linux.ibm.com>
12250 L:      linux-mm@kvack.org
12251 S:      Maintained
12252 F:      Documentation/core-api/boot-time-mm.rst
12253 F:      include/linux/memblock.h
12254 F:      mm/memblock.c
12255
12256 MEMORY CONTROLLER DRIVERS
12257 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12258 L:      linux-kernel@vger.kernel.org
12259 S:      Maintained
12260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12261 F:      Documentation/devicetree/bindings/memory-controllers/
12262 F:      drivers/memory/
12263 F:      include/dt-bindings/memory/
12264 F:      include/memory/
12265
12266 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12267 M:      Dmitry Osipenko <digetx@gmail.com>
12268 L:      linux-pm@vger.kernel.org
12269 L:      linux-tegra@vger.kernel.org
12270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12271 S:      Maintained
12272 F:      drivers/devfreq/tegra30-devfreq.c
12273
12274 MEMORY MANAGEMENT
12275 M:      Andrew Morton <akpm@linux-foundation.org>
12276 L:      linux-mm@kvack.org
12277 S:      Maintained
12278 W:      http://www.linux-mm.org
12279 T:      quilt https://ozlabs.org/~akpm/mmotm/
12280 T:      quilt https://ozlabs.org/~akpm/mmots/
12281 T:      git git://github.com/hnaz/linux-mm.git
12282 F:      include/linux/gfp.h
12283 F:      include/linux/memory_hotplug.h
12284 F:      include/linux/mm.h
12285 F:      include/linux/mmzone.h
12286 F:      include/linux/pagewalk.h
12287 F:      include/linux/vmalloc.h
12288 F:      mm/
12289 F:      tools/testing/selftests/vm/
12290
12291 MEMORY TECHNOLOGY DEVICES (MTD)
12292 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12293 M:      Richard Weinberger <richard@nod.at>
12294 M:      Vignesh Raghavendra <vigneshr@ti.com>
12295 L:      linux-mtd@lists.infradead.org
12296 S:      Maintained
12297 W:      http://www.linux-mtd.infradead.org/
12298 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12299 C:      irc://irc.oftc.net/mtd
12300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12302 F:      Documentation/devicetree/bindings/mtd/
12303 F:      drivers/mtd/
12304 F:      include/linux/mtd/
12305 F:      include/uapi/mtd/
12306
12307 MEN A21 WATCHDOG DRIVER
12308 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12309 L:      linux-watchdog@vger.kernel.org
12310 S:      Maintained
12311 F:      drivers/watchdog/mena21_wdt.c
12312
12313 MEN CHAMELEON BUS (mcb)
12314 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12315 S:      Maintained
12316 F:      Documentation/driver-api/men-chameleon-bus.rst
12317 F:      drivers/mcb/
12318 F:      include/linux/mcb.h
12319
12320 MEN F21BMC (Board Management Controller)
12321 M:      Andreas Werner <andreas.werner@men.de>
12322 S:      Supported
12323 F:      Documentation/hwmon/menf21bmc.rst
12324 F:      drivers/hwmon/menf21bmc_hwmon.c
12325 F:      drivers/leds/leds-menf21bmc.c
12326 F:      drivers/mfd/menf21bmc.c
12327 F:      drivers/watchdog/menf21bmc_wdt.c
12328
12329 MEN Z069 WATCHDOG DRIVER
12330 M:      Johannes Thumshirn <jth@kernel.org>
12331 L:      linux-watchdog@vger.kernel.org
12332 S:      Maintained
12333 F:      drivers/watchdog/menz69_wdt.c
12334
12335 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12336 M:      Neil Armstrong <narmstrong@baylibre.com>
12337 L:      linux-media@vger.kernel.org
12338 L:      linux-amlogic@lists.infradead.org
12339 S:      Supported
12340 W:      http://linux-meson.com/
12341 T:      git git://linuxtv.org/media_tree.git
12342 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12343 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12344 F:      drivers/media/cec/platform/meson/ao-cec.c
12345
12346 MESON GE2D DRIVER FOR AMLOGIC SOCS
12347 M:      Neil Armstrong <narmstrong@baylibre.com>
12348 L:      linux-media@vger.kernel.org
12349 L:      linux-amlogic@lists.infradead.org
12350 S:      Supported
12351 T:      git git://linuxtv.org/media_tree.git
12352 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12353 F:      drivers/media/platform/meson/ge2d/
12354
12355 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12356 M:      Liang Yang <liang.yang@amlogic.com>
12357 L:      linux-mtd@lists.infradead.org
12358 S:      Maintained
12359 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12360 F:      drivers/mtd/nand/raw/meson_*
12361
12362 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12363 M:      Neil Armstrong <narmstrong@baylibre.com>
12364 L:      linux-media@vger.kernel.org
12365 L:      linux-amlogic@lists.infradead.org
12366 S:      Supported
12367 T:      git git://linuxtv.org/media_tree.git
12368 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12369 F:      drivers/staging/media/meson/vdec/
12370
12371 METHODE UDPU SUPPORT
12372 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12373 S:      Maintained
12374 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12375
12376 MHI BUS
12377 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12378 R:      Hemant Kumar <hemantk@codeaurora.org>
12379 L:      mhi@lists.linux.dev
12380 L:      linux-arm-msm@vger.kernel.org
12381 S:      Maintained
12382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12383 F:      Documentation/ABI/stable/sysfs-bus-mhi
12384 F:      Documentation/mhi/
12385 F:      drivers/bus/mhi/
12386 F:      include/linux/mhi.h
12387
12388 MICROBLAZE ARCHITECTURE
12389 M:      Michal Simek <monstr@monstr.eu>
12390 S:      Supported
12391 W:      http://www.monstr.eu/fdt/
12392 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12393 F:      arch/microblaze/
12394
12395 MICROCHIP AT91 DMA DRIVERS
12396 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12397 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12399 L:      dmaengine@vger.kernel.org
12400 S:      Supported
12401 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12402 F:      drivers/dma/at_hdmac.c
12403 F:      drivers/dma/at_hdmac_regs.h
12404 F:      drivers/dma/at_xdmac.c
12405 F:      include/dt-bindings/dma/at91.h
12406
12407 MICROCHIP AT91 SERIAL DRIVER
12408 M:      Richard Genoud <richard.genoud@gmail.com>
12409 S:      Maintained
12410 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12411 F:      drivers/tty/serial/atmel_serial.c
12412 F:      drivers/tty/serial/atmel_serial.h
12413
12414 MICROCHIP AT91 USART MFD DRIVER
12415 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12416 L:      linux-kernel@vger.kernel.org
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12419 F:      drivers/mfd/at91-usart.c
12420 F:      include/dt-bindings/mfd/at91-usart.h
12421
12422 MICROCHIP AT91 USART SPI DRIVER
12423 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12424 L:      linux-spi@vger.kernel.org
12425 S:      Supported
12426 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12427 F:      drivers/spi/spi-at91-usart.c
12428
12429 MICROCHIP AUDIO ASOC DRIVERS
12430 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12431 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12432 S:      Supported
12433 F:      sound/soc/atmel
12434
12435 MICROCHIP ECC DRIVER
12436 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12437 L:      linux-crypto@vger.kernel.org
12438 S:      Maintained
12439 F:      drivers/crypto/atmel-ecc.*
12440
12441 MICROCHIP EIC DRIVER
12442 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12444 S:      Supported
12445 F:      drivers/irqchip/irq-mchp-eic.c
12446
12447 MICROCHIP I2C DRIVER
12448 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12449 L:      linux-i2c@vger.kernel.org
12450 S:      Supported
12451 F:      drivers/i2c/busses/i2c-at91-*.c
12452 F:      drivers/i2c/busses/i2c-at91.h
12453
12454 MICROCHIP ISC DRIVER
12455 M:      Eugen Hristev <eugen.hristev@microchip.com>
12456 L:      linux-media@vger.kernel.org
12457 S:      Supported
12458 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12459 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12460 F:      drivers/media/platform/atmel/atmel-isc-base.c
12461 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12462 F:      drivers/media/platform/atmel/atmel-isc.h
12463 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12464 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12465 F:      include/linux/atmel-isc-media.h
12466
12467 MICROCHIP ISI DRIVER
12468 M:      Eugen Hristev <eugen.hristev@microchip.com>
12469 L:      linux-media@vger.kernel.org
12470 S:      Supported
12471 F:      drivers/media/platform/atmel/atmel-isi.c
12472 F:      drivers/media/platform/atmel/atmel-isi.h
12473
12474 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12475 M:      Woojung Huh <woojung.huh@microchip.com>
12476 M:      UNGLinuxDriver@microchip.com
12477 L:      netdev@vger.kernel.org
12478 S:      Maintained
12479 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12480 F:      drivers/net/dsa/microchip/*
12481 F:      include/linux/platform_data/microchip-ksz.h
12482 F:      net/dsa/tag_ksz.c
12483
12484 MICROCHIP LAN743X ETHERNET DRIVER
12485 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12486 M:      UNGLinuxDriver@microchip.com
12487 L:      netdev@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/net/ethernet/microchip/lan743x_*
12490
12491 MICROCHIP LCDFB DRIVER
12492 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12493 L:      linux-fbdev@vger.kernel.org
12494 S:      Maintained
12495 F:      drivers/video/fbdev/atmel_lcdfb.c
12496 F:      include/video/atmel_lcdc.h
12497
12498 MICROCHIP MCP16502 PMIC DRIVER
12499 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12501 S:      Supported
12502 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12503 F:      drivers/regulator/mcp16502.c
12504
12505 MICROCHIP MCP3911 ADC DRIVER
12506 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12507 M:      Kent Gustavsson <kent@minoris.se>
12508 L:      linux-iio@vger.kernel.org
12509 S:      Supported
12510 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12511 F:      drivers/iio/adc/mcp3911.c
12512
12513 MICROCHIP MMC/SD/SDIO MCI DRIVER
12514 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12515 S:      Maintained
12516 F:      drivers/mmc/host/atmel-mci.c
12517
12518 MICROCHIP NAND DRIVER
12519 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12520 L:      linux-mtd@lists.infradead.org
12521 S:      Supported
12522 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12523 F:      drivers/mtd/nand/raw/atmel/*
12524
12525 MICROCHIP PWM DRIVER
12526 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12528 L:      linux-pwm@vger.kernel.org
12529 S:      Supported
12530 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12531 F:      drivers/pwm/pwm-atmel.c
12532
12533 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12534 M:      Eugen Hristev <eugen.hristev@microchip.com>
12535 L:      linux-iio@vger.kernel.org
12536 S:      Supported
12537 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12538 F:      drivers/iio/adc/at91-sama5d2_adc.c
12539 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12540
12541 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12542 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12543 S:      Supported
12544 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12545
12546 MICROCHIP SPI DRIVER
12547 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12548 S:      Supported
12549 F:      drivers/spi/spi-atmel.*
12550
12551 MICROCHIP SSC DRIVER
12552 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12554 S:      Supported
12555 F:      drivers/misc/atmel-ssc.c
12556 F:      include/linux/atmel-ssc.h
12557
12558 MICROCHIP USB251XB DRIVER
12559 M:      Richard Leitner <richard.leitner@skidata.com>
12560 L:      linux-usb@vger.kernel.org
12561 S:      Maintained
12562 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12563 F:      drivers/usb/misc/usb251xb.c
12564
12565 MICROCHIP USBA UDC DRIVER
12566 M:      Cristian Birsan <cristian.birsan@microchip.com>
12567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12568 S:      Supported
12569 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12570
12571 MICROCHIP WILC1000 WIFI DRIVER
12572 M:      Ajay Singh <ajay.kathat@microchip.com>
12573 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12574 L:      linux-wireless@vger.kernel.org
12575 S:      Supported
12576 F:      drivers/net/wireless/microchip/wilc1000/
12577
12578 MICROSEMI MIPS SOCS
12579 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12580 M:      UNGLinuxDriver@microchip.com
12581 L:      linux-mips@vger.kernel.org
12582 S:      Supported
12583 F:      Documentation/devicetree/bindings/mips/mscc.txt
12584 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12585 F:      arch/mips/boot/dts/mscc/
12586 F:      arch/mips/configs/generic/board-ocelot.config
12587 F:      arch/mips/generic/board-ocelot.c
12588
12589 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12590 M:      Don Brace <don.brace@microchip.com>
12591 L:      storagedev@microchip.com
12592 L:      linux-scsi@vger.kernel.org
12593 S:      Supported
12594 F:      Documentation/scsi/smartpqi.rst
12595 F:      drivers/scsi/smartpqi/Kconfig
12596 F:      drivers/scsi/smartpqi/Makefile
12597 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12598 F:      include/linux/cciss*.h
12599 F:      include/uapi/linux/cciss*.h
12600
12601 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12602 M:      Maximilian Luz <luzmaximilian@gmail.com>
12603 L:      linux-pm@vger.kernel.org
12604 L:      platform-driver-x86@vger.kernel.org
12605 S:      Maintained
12606 F:      drivers/power/supply/surface_battery.c
12607 F:      drivers/power/supply/surface_charger.c
12608
12609 MICROSOFT SURFACE DTX DRIVER
12610 M:      Maximilian Luz <luzmaximilian@gmail.com>
12611 L:      platform-driver-x86@vger.kernel.org
12612 S:      Maintained
12613 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12614 F:      drivers/platform/surface/surface_dtx.c
12615 F:      include/uapi/linux/surface_aggregator/dtx.h
12616
12617 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12618 M:      Maximilian Luz <luzmaximilian@gmail.com>
12619 L:      platform-driver-x86@vger.kernel.org
12620 S:      Maintained
12621 F:      drivers/platform/surface/surface_gpe.c
12622
12623 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12624 M:      Hans de Goede <hdegoede@redhat.com>
12625 M:      Mark Gross <markgross@kernel.org>
12626 M:      Maximilian Luz <luzmaximilian@gmail.com>
12627 L:      platform-driver-x86@vger.kernel.org
12628 S:      Maintained
12629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12630 F:      drivers/platform/surface/
12631
12632 MICROSOFT SURFACE HID TRANSPORT DRIVER
12633 M:      Maximilian Luz <luzmaximilian@gmail.com>
12634 L:      linux-input@vger.kernel.org
12635 L:      platform-driver-x86@vger.kernel.org
12636 S:      Maintained
12637 F:      drivers/hid/surface-hid/
12638
12639 MICROSOFT SURFACE HOT-PLUG DRIVER
12640 M:      Maximilian Luz <luzmaximilian@gmail.com>
12641 L:      platform-driver-x86@vger.kernel.org
12642 S:      Maintained
12643 F:      drivers/platform/surface/surface_hotplug.c
12644
12645 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12646 M:      Maximilian Luz <luzmaximilian@gmail.com>
12647 L:      platform-driver-x86@vger.kernel.org
12648 S:      Maintained
12649 F:      drivers/platform/surface/surface_platform_profile.c
12650
12651 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12652 M:      Chen Yu <yu.c.chen@intel.com>
12653 L:      platform-driver-x86@vger.kernel.org
12654 S:      Supported
12655 F:      drivers/platform/surface/surfacepro3_button.c
12656
12657 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12658 M:      Maximilian Luz <luzmaximilian@gmail.com>
12659 L:      platform-driver-x86@vger.kernel.org
12660 S:      Maintained
12661 W:      https://github.com/linux-surface/surface-aggregator-module
12662 C:      irc://irc.libera.chat/linux-surface
12663 F:      Documentation/driver-api/surface_aggregator/
12664 F:      drivers/platform/surface/aggregator/
12665 F:      drivers/platform/surface/surface_acpi_notify.c
12666 F:      drivers/platform/surface/surface_aggregator_cdev.c
12667 F:      drivers/platform/surface/surface_aggregator_registry.c
12668 F:      include/linux/surface_acpi_notify.h
12669 F:      include/linux/surface_aggregator/
12670 F:      include/uapi/linux/surface_aggregator/
12671
12672 MICROTEK X6 SCANNER
12673 M:      Oliver Neukum <oliver@neukum.org>
12674 S:      Maintained
12675 F:      drivers/usb/image/microtek.*
12676
12677 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12678 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12679 M:      Luka Perkov <luka.perkov@sartura.hr>
12680 S:      Maintained
12681 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12682 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12683 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12684 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12685 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12686 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12687
12688 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12689 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12690 L:      linux-media@vger.kernel.org
12691 S:      Maintained
12692 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12693 F:      Documentation/driver-api/media/drivers/ccs/
12694 F:      Documentation/userspace-api/media/drivers/ccs.rst
12695 F:      drivers/media/i2c/ccs-pll.c
12696 F:      drivers/media/i2c/ccs-pll.h
12697 F:      drivers/media/i2c/ccs/
12698 F:      include/uapi/linux/ccs.h
12699 F:      include/uapi/linux/smiapp.h
12700
12701 MIPS
12702 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12703 L:      linux-mips@vger.kernel.org
12704 S:      Maintained
12705 W:      http://www.linux-mips.org/
12706 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12708 F:      Documentation/devicetree/bindings/mips/
12709 F:      Documentation/mips/
12710 F:      arch/mips/
12711 F:      drivers/platform/mips/
12712
12713 MIPS BOSTON DEVELOPMENT BOARD
12714 M:      Paul Burton <paulburton@kernel.org>
12715 L:      linux-mips@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12718 F:      arch/mips/boot/dts/img/boston.dts
12719 F:      arch/mips/configs/generic/board-boston.config
12720 F:      drivers/clk/imgtec/clk-boston.c
12721 F:      include/dt-bindings/clock/boston-clock.h
12722
12723 MIPS CORE DRIVERS
12724 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12725 M:      Serge Semin <fancer.lancer@gmail.com>
12726 L:      linux-mips@vger.kernel.org
12727 S:      Supported
12728 F:      drivers/bus/mips_cdmm.c
12729 F:      drivers/clocksource/mips-gic-timer.c
12730 F:      drivers/cpuidle/cpuidle-cps.c
12731 F:      drivers/irqchip/irq-mips-cpu.c
12732 F:      drivers/irqchip/irq-mips-gic.c
12733
12734 MIPS GENERIC PLATFORM
12735 M:      Paul Burton <paulburton@kernel.org>
12736 L:      linux-mips@vger.kernel.org
12737 S:      Supported
12738 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12739 F:      arch/mips/generic/
12740 F:      arch/mips/tools/generic-board-config.sh
12741
12742 MIPS RINT INSTRUCTION EMULATION
12743 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12744 L:      linux-mips@vger.kernel.org
12745 S:      Supported
12746 F:      arch/mips/math-emu/dp_rint.c
12747 F:      arch/mips/math-emu/sp_rint.c
12748
12749 MIPS/LOONGSON1 ARCHITECTURE
12750 M:      Keguang Zhang <keguang.zhang@gmail.com>
12751 L:      linux-mips@vger.kernel.org
12752 S:      Maintained
12753 F:      arch/mips/include/asm/mach-loongson32/
12754 F:      arch/mips/loongson32/
12755 F:      drivers/*/*/*loongson1*
12756 F:      drivers/*/*loongson1*
12757
12758 MIPS/LOONGSON2EF ARCHITECTURE
12759 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12760 L:      linux-mips@vger.kernel.org
12761 S:      Maintained
12762 F:      arch/mips/include/asm/mach-loongson2ef/
12763 F:      arch/mips/loongson2ef/
12764 F:      drivers/cpufreq/loongson2_cpufreq.c
12765
12766 MIPS/LOONGSON64 ARCHITECTURE
12767 M:      Huacai Chen <chenhuacai@kernel.org>
12768 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12769 L:      linux-mips@vger.kernel.org
12770 S:      Maintained
12771 F:      arch/mips/include/asm/mach-loongson64/
12772 F:      arch/mips/loongson64/
12773 F:      drivers/irqchip/irq-loongson*
12774 F:      drivers/platform/mips/cpu_hwmon.c
12775
12776 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12777 M:      Hans Verkuil <hverkuil@xs4all.nl>
12778 L:      linux-media@vger.kernel.org
12779 S:      Odd Fixes
12780 W:      https://linuxtv.org
12781 T:      git git://linuxtv.org/media_tree.git
12782 F:      drivers/media/radio/radio-miropcm20*
12783
12784 MMP SUPPORT
12785 R:      Lubomir Rintel <lkundrak@v3.sk>
12786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12787 S:      Odd Fixes
12788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12789 F:      arch/arm/boot/dts/mmp*
12790 F:      arch/arm/mach-mmp/
12791 F:      include/linux/soc/mmp/
12792
12793 MMP USB PHY DRIVERS
12794 R:      Lubomir Rintel <lkundrak@v3.sk>
12795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12796 S:      Maintained
12797 F:      drivers/phy/marvell/phy-mmp3-usb.c
12798 F:      drivers/phy/marvell/phy-pxa-usb.c
12799
12800 MMU GATHER AND TLB INVALIDATION
12801 M:      Will Deacon <will@kernel.org>
12802 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12803 M:      Andrew Morton <akpm@linux-foundation.org>
12804 M:      Nick Piggin <npiggin@gmail.com>
12805 M:      Peter Zijlstra <peterz@infradead.org>
12806 L:      linux-arch@vger.kernel.org
12807 L:      linux-mm@kvack.org
12808 S:      Maintained
12809 F:      arch/*/include/asm/tlb.h
12810 F:      include/asm-generic/tlb.h
12811 F:      mm/mmu_gather.c
12812
12813 MN88472 MEDIA DRIVER
12814 M:      Antti Palosaari <crope@iki.fi>
12815 L:      linux-media@vger.kernel.org
12816 S:      Maintained
12817 W:      https://linuxtv.org
12818 W:      http://palosaari.fi/linux/
12819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12820 F:      drivers/media/dvb-frontends/mn88472*
12821
12822 MN88473 MEDIA DRIVER
12823 M:      Antti Palosaari <crope@iki.fi>
12824 L:      linux-media@vger.kernel.org
12825 S:      Maintained
12826 W:      https://linuxtv.org
12827 W:      http://palosaari.fi/linux/
12828 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12829 F:      drivers/media/dvb-frontends/mn88473*
12830
12831 MODULE SUPPORT
12832 M:      Luis Chamberlain <mcgrof@kernel.org>
12833 M:      Jessica Yu <jeyu@kernel.org>
12834 S:      Maintained
12835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12836 F:      include/linux/module.h
12837 F:      kernel/module.c
12838
12839 MONOLITHIC POWER SYSTEM PMIC DRIVER
12840 M:      Saravanan Sekar <sravanhome@gmail.com>
12841 S:      Maintained
12842 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12843 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12844 F:      drivers/iio/adc/mp2629_adc.c
12845 F:      drivers/mfd/mp2629.c
12846 F:      drivers/power/supply/mp2629_charger.c
12847 F:      drivers/regulator/mp5416.c
12848 F:      drivers/regulator/mpq7920.c
12849 F:      drivers/regulator/mpq7920.h
12850 F:      include/linux/mfd/mp2629.h
12851
12852 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12853 S:      Orphan
12854 W:      http://popies.net/meye/
12855 F:      Documentation/userspace-api/media/drivers/meye*
12856 F:      drivers/media/pci/meye/
12857 F:      include/uapi/linux/meye.h
12858
12859 MOTORCOMM PHY DRIVER
12860 M:      Peter Geis <pgwipeout@gmail.com>
12861 L:      netdev@vger.kernel.org
12862 S:      Maintained
12863 F:      drivers/net/phy/motorcomm.c
12864
12865 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12866 M:      Jiri Slaby <jirislaby@kernel.org>
12867 S:      Maintained
12868 F:      Documentation/driver-api/serial/moxa-smartio.rst
12869 F:      drivers/tty/mxser.*
12870
12871 MR800 AVERMEDIA USB FM RADIO DRIVER
12872 M:      Alexey Klimov <klimov.linux@gmail.com>
12873 L:      linux-media@vger.kernel.org
12874 S:      Maintained
12875 T:      git git://linuxtv.org/media_tree.git
12876 F:      drivers/media/radio/radio-mr800.c
12877
12878 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12879 M:      Alan Ott <alan@signal11.us>
12880 L:      linux-wpan@vger.kernel.org
12881 S:      Maintained
12882 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12883 F:      drivers/net/ieee802154/mrf24j40.c
12884
12885 MSI LAPTOP SUPPORT
12886 M:      "Lee, Chun-Yi" <jlee@suse.com>
12887 L:      platform-driver-x86@vger.kernel.org
12888 S:      Maintained
12889 F:      drivers/platform/x86/msi-laptop.c
12890
12891 MSI WMI SUPPORT
12892 L:      platform-driver-x86@vger.kernel.org
12893 S:      Orphan
12894 F:      drivers/platform/x86/msi-wmi.c
12895
12896 MSI001 MEDIA DRIVER
12897 M:      Antti Palosaari <crope@iki.fi>
12898 L:      linux-media@vger.kernel.org
12899 S:      Maintained
12900 W:      https://linuxtv.org
12901 W:      http://palosaari.fi/linux/
12902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12903 T:      git git://linuxtv.org/anttip/media_tree.git
12904 F:      drivers/media/tuners/msi001*
12905
12906 MSI2500 MEDIA DRIVER
12907 M:      Antti Palosaari <crope@iki.fi>
12908 L:      linux-media@vger.kernel.org
12909 S:      Maintained
12910 W:      https://linuxtv.org
12911 W:      http://palosaari.fi/linux/
12912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12913 T:      git git://linuxtv.org/anttip/media_tree.git
12914 F:      drivers/media/usb/msi2500/
12915
12916 MSTAR INTERRUPT CONTROLLER DRIVER
12917 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12918 M:      Daniel Palmer <daniel@thingy.jp>
12919 S:      Maintained
12920 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12921 F:      drivers/irqchip/irq-mst-intc.c
12922
12923 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12924 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12925 L:      linux-mtd@lists.infradead.org
12926 S:      Maintained
12927 F:      drivers/mtd/devices/docg3*
12928
12929 MT9M032 APTINA SENSOR DRIVER
12930 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12931 L:      linux-media@vger.kernel.org
12932 S:      Maintained
12933 T:      git git://linuxtv.org/media_tree.git
12934 F:      drivers/media/i2c/mt9m032.c
12935 F:      include/media/i2c/mt9m032.h
12936
12937 MT9P031 APTINA CAMERA SENSOR
12938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12939 L:      linux-media@vger.kernel.org
12940 S:      Maintained
12941 T:      git git://linuxtv.org/media_tree.git
12942 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12943 F:      drivers/media/i2c/mt9p031.c
12944 F:      include/media/i2c/mt9p031.h
12945
12946 MT9T001 APTINA CAMERA SENSOR
12947 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12948 L:      linux-media@vger.kernel.org
12949 S:      Maintained
12950 T:      git git://linuxtv.org/media_tree.git
12951 F:      drivers/media/i2c/mt9t001.c
12952 F:      include/media/i2c/mt9t001.h
12953
12954 MT9T112 APTINA CAMERA SENSOR
12955 M:      Jacopo Mondi <jacopo@jmondi.org>
12956 L:      linux-media@vger.kernel.org
12957 S:      Odd Fixes
12958 T:      git git://linuxtv.org/media_tree.git
12959 F:      drivers/media/i2c/mt9t112.c
12960 F:      include/media/i2c/mt9t112.h
12961
12962 MT9V032 APTINA CAMERA SENSOR
12963 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12964 L:      linux-media@vger.kernel.org
12965 S:      Maintained
12966 T:      git git://linuxtv.org/media_tree.git
12967 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12968 F:      drivers/media/i2c/mt9v032.c
12969 F:      include/media/i2c/mt9v032.h
12970
12971 MT9V111 APTINA CAMERA SENSOR
12972 M:      Jacopo Mondi <jacopo@jmondi.org>
12973 L:      linux-media@vger.kernel.org
12974 S:      Maintained
12975 T:      git git://linuxtv.org/media_tree.git
12976 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12977 F:      drivers/media/i2c/mt9v111.c
12978
12979 MULTIFUNCTION DEVICES (MFD)
12980 M:      Lee Jones <lee.jones@linaro.org>
12981 S:      Supported
12982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12983 F:      Documentation/devicetree/bindings/mfd/
12984 F:      drivers/mfd/
12985 F:      include/dt-bindings/mfd/
12986 F:      include/linux/mfd/
12987
12988 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12989 S:      Orphan
12990 F:      drivers/mmc/host/mmc_spi.c
12991 F:      include/linux/spi/mmc_spi.h
12992
12993 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12994 M:      Ulf Hansson <ulf.hansson@linaro.org>
12995 L:      linux-mmc@vger.kernel.org
12996 S:      Maintained
12997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12998 F:      Documentation/devicetree/bindings/mmc/
12999 F:      drivers/mmc/
13000 F:      include/linux/mmc/
13001 F:      include/uapi/linux/mmc/
13002
13003 MULTIPLEXER SUBSYSTEM
13004 M:      Peter Rosin <peda@axentia.se>
13005 S:      Maintained
13006 F:      Documentation/ABI/testing/sysfs-class-mux*
13007 F:      Documentation/devicetree/bindings/mux/
13008 F:      drivers/mux/
13009 F:      include/dt-bindings/mux/
13010 F:      include/linux/mux/
13011
13012 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13013 M:      Bin Liu <b-liu@ti.com>
13014 L:      linux-usb@vger.kernel.org
13015 S:      Maintained
13016 F:      drivers/usb/musb/
13017
13018 MXL301RF MEDIA DRIVER
13019 M:      Akihiro Tsukada <tskd08@gmail.com>
13020 L:      linux-media@vger.kernel.org
13021 S:      Odd Fixes
13022 F:      drivers/media/tuners/mxl301rf*
13023
13024 MXL5007T MEDIA DRIVER
13025 M:      Michael Krufky <mkrufky@linuxtv.org>
13026 L:      linux-media@vger.kernel.org
13027 S:      Maintained
13028 W:      https://linuxtv.org
13029 W:      http://github.com/mkrufky
13030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13031 T:      git git://linuxtv.org/mkrufky/tuners.git
13032 F:      drivers/media/tuners/mxl5007t.*
13033
13034 MXSFB DRM DRIVER
13035 M:      Marek Vasut <marex@denx.de>
13036 M:      Stefan Agner <stefan@agner.ch>
13037 L:      dri-devel@lists.freedesktop.org
13038 S:      Supported
13039 T:      git git://anongit.freedesktop.org/drm/drm-misc
13040 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13041 F:      drivers/gpu/drm/mxsfb/
13042
13043 MYLEX DAC960 PCI RAID Controller
13044 M:      Hannes Reinecke <hare@kernel.org>
13045 L:      linux-scsi@vger.kernel.org
13046 S:      Supported
13047 F:      drivers/scsi/myrb.*
13048 F:      drivers/scsi/myrs.*
13049
13050 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13051 M:      Chris Lee <christopher.lee@cspi.com>
13052 L:      netdev@vger.kernel.org
13053 S:      Supported
13054 W:      https://www.cspi.com/ethernet-products/support/downloads/
13055 F:      drivers/net/ethernet/myricom/myri10ge/
13056
13057 NAND FLASH SUBSYSTEM
13058 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13059 R:      Richard Weinberger <richard@nod.at>
13060 L:      linux-mtd@lists.infradead.org
13061 S:      Maintained
13062 W:      http://www.linux-mtd.infradead.org/
13063 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13064 C:      irc://irc.oftc.net/mtd
13065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13066 F:      drivers/mtd/nand/
13067 F:      include/linux/mtd/*nand*.h
13068
13069 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13070 M:      Daniel Mack <zonque@gmail.com>
13071 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13072 S:      Maintained
13073 W:      http://www.native-instruments.com
13074 F:      sound/usb/caiaq/
13075
13076 NATSEMI ETHERNET DRIVER (DP8381x)
13077 S:      Orphan
13078 F:      drivers/net/ethernet/natsemi/natsemi.c
13079
13080 NCR 5380 SCSI DRIVERS
13081 M:      Finn Thain <fthain@linux-m68k.org>
13082 M:      Michael Schmitz <schmitzmic@gmail.com>
13083 L:      linux-scsi@vger.kernel.org
13084 S:      Maintained
13085 F:      Documentation/scsi/g_NCR5380.rst
13086 F:      drivers/scsi/NCR5380.*
13087 F:      drivers/scsi/arm/cumana_1.c
13088 F:      drivers/scsi/arm/oak.c
13089 F:      drivers/scsi/atari_scsi.*
13090 F:      drivers/scsi/dmx3191d.c
13091 F:      drivers/scsi/g_NCR5380.*
13092 F:      drivers/scsi/mac_scsi.*
13093 F:      drivers/scsi/sun3_scsi.*
13094 F:      drivers/scsi/sun3_scsi_vme.c
13095
13096 NCSI LIBRARY
13097 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13098 S:      Maintained
13099 F:      net/ncsi/
13100
13101 NCT6775 HARDWARE MONITOR DRIVER
13102 M:      Guenter Roeck <linux@roeck-us.net>
13103 L:      linux-hwmon@vger.kernel.org
13104 S:      Maintained
13105 F:      Documentation/hwmon/nct6775.rst
13106 F:      drivers/hwmon/nct6775.c
13107
13108 NETDEVSIM
13109 M:      Jakub Kicinski <kuba@kernel.org>
13110 S:      Maintained
13111 F:      drivers/net/netdevsim/*
13112
13113 NETEM NETWORK EMULATOR
13114 M:      Stephen Hemminger <stephen@networkplumber.org>
13115 L:      netdev@vger.kernel.org
13116 S:      Maintained
13117 F:      net/sched/sch_netem.c
13118
13119 NETERION 10GbE DRIVERS (s2io/vxge)
13120 M:      Jon Mason <jdmason@kudzu.us>
13121 L:      netdev@vger.kernel.org
13122 S:      Supported
13123 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13124 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13125 F:      drivers/net/ethernet/neterion/
13126
13127 NETFILTER
13128 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13129 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13130 M:      Florian Westphal <fw@strlen.de>
13131 L:      netfilter-devel@vger.kernel.org
13132 L:      coreteam@netfilter.org
13133 S:      Maintained
13134 W:      http://www.netfilter.org/
13135 W:      http://www.iptables.org/
13136 W:      http://www.nftables.org/
13137 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13138 C:      irc://irc.libera.chat/netfilter
13139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13141 F:      include/linux/netfilter*
13142 F:      include/linux/netfilter/
13143 F:      include/net/netfilter/
13144 F:      include/uapi/linux/netfilter*
13145 F:      include/uapi/linux/netfilter/
13146 F:      net/*/netfilter.c
13147 F:      net/*/netfilter/
13148 F:      net/bridge/br_netfilter*.c
13149 F:      net/netfilter/
13150
13151 NETROM NETWORK LAYER
13152 M:      Ralf Baechle <ralf@linux-mips.org>
13153 L:      linux-hams@vger.kernel.org
13154 S:      Maintained
13155 W:      http://www.linux-ax25.org/
13156 F:      include/net/netrom.h
13157 F:      include/uapi/linux/netrom.h
13158 F:      net/netrom/
13159
13160 NETRONIX EMBEDDED CONTROLLER
13161 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13162 S:      Maintained
13163 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13164 F:      drivers/mfd/ntxec.c
13165 F:      drivers/pwm/pwm-ntxec.c
13166 F:      drivers/rtc/rtc-ntxec.c
13167 F:      include/linux/mfd/ntxec.h
13168
13169 NETRONOME ETHERNET DRIVERS
13170 M:      Simon Horman <simon.horman@corigine.com>
13171 R:      Jakub Kicinski <kuba@kernel.org>
13172 L:      oss-drivers@corigine.com
13173 S:      Maintained
13174 F:      drivers/net/ethernet/netronome/
13175
13176 NETWORK BLOCK DEVICE (NBD)
13177 M:      Josef Bacik <josef@toxicpanda.com>
13178 L:      linux-block@vger.kernel.org
13179 L:      nbd@other.debian.org
13180 S:      Maintained
13181 F:      Documentation/admin-guide/blockdev/nbd.rst
13182 F:      drivers/block/nbd.c
13183 F:      include/trace/events/nbd.h
13184 F:      include/uapi/linux/nbd.h
13185
13186 NETWORK DROP MONITOR
13187 M:      Neil Horman <nhorman@tuxdriver.com>
13188 L:      netdev@vger.kernel.org
13189 S:      Maintained
13190 W:      https://fedorahosted.org/dropwatch/
13191 F:      include/uapi/linux/net_dropmon.h
13192 F:      net/core/drop_monitor.c
13193
13194 NETWORKING DRIVERS
13195 M:      "David S. Miller" <davem@davemloft.net>
13196 M:      Jakub Kicinski <kuba@kernel.org>
13197 L:      netdev@vger.kernel.org
13198 S:      Maintained
13199 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13202 F:      Documentation/devicetree/bindings/net/
13203 F:      drivers/connector/
13204 F:      drivers/net/
13205 F:      include/linux/etherdevice.h
13206 F:      include/linux/fcdevice.h
13207 F:      include/linux/fddidevice.h
13208 F:      include/linux/hippidevice.h
13209 F:      include/linux/if_*
13210 F:      include/linux/inetdevice.h
13211 F:      include/linux/netdevice.h
13212 F:      include/uapi/linux/if_*
13213 F:      include/uapi/linux/netdevice.h
13214
13215 NETWORKING DRIVERS (WIRELESS)
13216 M:      Kalle Valo <kvalo@codeaurora.org>
13217 L:      linux-wireless@vger.kernel.org
13218 S:      Maintained
13219 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13222 F:      Documentation/devicetree/bindings/net/wireless/
13223 F:      drivers/net/wireless/
13224
13225 NETWORKING [DSA]
13226 M:      Andrew Lunn <andrew@lunn.ch>
13227 M:      Vivien Didelot <vivien.didelot@gmail.com>
13228 M:      Florian Fainelli <f.fainelli@gmail.com>
13229 M:      Vladimir Oltean <olteanv@gmail.com>
13230 S:      Maintained
13231 F:      Documentation/devicetree/bindings/net/dsa/
13232 F:      drivers/net/dsa/
13233 F:      include/linux/dsa/
13234 F:      include/linux/platform_data/dsa.h
13235 F:      include/net/dsa.h
13236 F:      net/dsa/
13237 F:      tools/testing/selftests/drivers/net/dsa/
13238
13239 NETWORKING [GENERAL]
13240 M:      "David S. Miller" <davem@davemloft.net>
13241 M:      Jakub Kicinski <kuba@kernel.org>
13242 L:      netdev@vger.kernel.org
13243 S:      Maintained
13244 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13245 B:      mailto:netdev@vger.kernel.org
13246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13248 F:      Documentation/networking/
13249 F:      include/linux/in.h
13250 F:      include/linux/net.h
13251 F:      include/linux/netdevice.h
13252 F:      include/net/
13253 F:      include/uapi/linux/in.h
13254 F:      include/uapi/linux/net.h
13255 F:      include/uapi/linux/net_namespace.h
13256 F:      include/uapi/linux/netdevice.h
13257 F:      lib/net_utils.c
13258 F:      lib/random32.c
13259 F:      net/
13260 F:      tools/testing/selftests/net/
13261
13262 NETWORKING [IPSEC]
13263 M:      Steffen Klassert <steffen.klassert@secunet.com>
13264 M:      Herbert Xu <herbert@gondor.apana.org.au>
13265 M:      "David S. Miller" <davem@davemloft.net>
13266 L:      netdev@vger.kernel.org
13267 S:      Maintained
13268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13270 F:      include/net/xfrm.h
13271 F:      include/uapi/linux/xfrm.h
13272 F:      net/ipv4/ah4.c
13273 F:      net/ipv4/esp4*
13274 F:      net/ipv4/ip_vti.c
13275 F:      net/ipv4/ipcomp.c
13276 F:      net/ipv4/xfrm*
13277 F:      net/ipv6/ah6.c
13278 F:      net/ipv6/esp6*
13279 F:      net/ipv6/ip6_vti.c
13280 F:      net/ipv6/ipcomp6.c
13281 F:      net/ipv6/xfrm*
13282 F:      net/key/
13283 F:      net/xfrm/
13284 F:      tools/testing/selftests/net/ipsec.c
13285
13286 NETWORKING [IPv4/IPv6]
13287 M:      "David S. Miller" <davem@davemloft.net>
13288 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13289 M:      David Ahern <dsahern@kernel.org>
13290 L:      netdev@vger.kernel.org
13291 S:      Maintained
13292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13293 F:      arch/x86/net/*
13294 F:      include/net/ip*
13295 F:      net/ipv4/
13296 F:      net/ipv6/
13297
13298 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13299 M:      Paul Moore <paul@paul-moore.com>
13300 L:      netdev@vger.kernel.org
13301 L:      linux-security-module@vger.kernel.org
13302 S:      Maintained
13303 W:      https://github.com/netlabel
13304 F:      Documentation/netlabel/
13305 F:      include/net/calipso.h
13306 F:      include/net/cipso_ipv4.h
13307 F:      include/net/netlabel.h
13308 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13309 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13310 F:      net/ipv4/cipso_ipv4.c
13311 F:      net/ipv6/calipso.c
13312 F:      net/netfilter/xt_CONNSECMARK.c
13313 F:      net/netfilter/xt_SECMARK.c
13314 F:      net/netlabel/
13315
13316 NETWORKING [MPTCP]
13317 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13318 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13319 L:      netdev@vger.kernel.org
13320 L:      mptcp@lists.linux.dev
13321 S:      Maintained
13322 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13323 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13324 F:      Documentation/networking/mptcp-sysctl.rst
13325 F:      include/net/mptcp.h
13326 F:      include/trace/events/mptcp.h
13327 F:      include/uapi/linux/mptcp.h
13328 F:      net/mptcp/
13329 F:      tools/testing/selftests/net/mptcp/
13330
13331 NETWORKING [TCP]
13332 M:      Eric Dumazet <edumazet@google.com>
13333 L:      netdev@vger.kernel.org
13334 S:      Maintained
13335 F:      include/linux/tcp.h
13336 F:      include/net/tcp.h
13337 F:      include/trace/events/tcp.h
13338 F:      include/uapi/linux/tcp.h
13339 F:      net/ipv4/syncookies.c
13340 F:      net/ipv4/tcp*.c
13341 F:      net/ipv6/syncookies.c
13342 F:      net/ipv6/tcp*.c
13343
13344 NETWORKING [TLS]
13345 M:      Boris Pismenny <borisp@nvidia.com>
13346 M:      John Fastabend <john.fastabend@gmail.com>
13347 M:      Daniel Borkmann <daniel@iogearbox.net>
13348 M:      Jakub Kicinski <kuba@kernel.org>
13349 L:      netdev@vger.kernel.org
13350 S:      Maintained
13351 F:      include/net/tls.h
13352 F:      include/uapi/linux/tls.h
13353 F:      net/tls/*
13354
13355 NETWORKING [WIRELESS]
13356 L:      linux-wireless@vger.kernel.org
13357 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13358
13359 NETXEN (1/10) GbE SUPPORT
13360 M:      Manish Chopra <manishc@marvell.com>
13361 M:      Rahul Verma <rahulv@marvell.com>
13362 M:      GR-Linux-NIC-Dev@marvell.com
13363 L:      netdev@vger.kernel.org
13364 S:      Supported
13365 F:      drivers/net/ethernet/qlogic/netxen/
13366
13367 NET_FAILOVER MODULE
13368 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13369 L:      netdev@vger.kernel.org
13370 S:      Supported
13371 F:      Documentation/networking/net_failover.rst
13372 F:      drivers/net/net_failover.c
13373 F:      include/net/net_failover.h
13374
13375 NEXTHOP
13376 M:      David Ahern <dsahern@kernel.org>
13377 L:      netdev@vger.kernel.org
13378 S:      Maintained
13379 F:      include/net/netns/nexthop.h
13380 F:      include/net/nexthop.h
13381 F:      include/uapi/linux/nexthop.h
13382 F:      net/ipv4/nexthop.c
13383
13384 NFC SUBSYSTEM
13385 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13386 L:      linux-nfc@lists.01.org (subscribers-only)
13387 L:      netdev@vger.kernel.org
13388 S:      Maintained
13389 F:      Documentation/devicetree/bindings/net/nfc/
13390 F:      drivers/nfc/
13391 F:      include/linux/platform_data/nfcmrvl.h
13392 F:      include/net/nfc/
13393 F:      include/uapi/linux/nfc.h
13394 F:      net/nfc/
13395
13396 NFC VIRTUAL NCI DEVICE DRIVER
13397 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13398 L:      netdev@vger.kernel.org
13399 L:      linux-nfc@lists.01.org (subscribers-only)
13400 S:      Supported
13401 F:      drivers/nfc/virtual_ncidev.c
13402 F:      tools/testing/selftests/nci/
13403
13404 NFS, SUNRPC, AND LOCKD CLIENTS
13405 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13406 M:      Anna Schumaker <anna.schumaker@netapp.com>
13407 L:      linux-nfs@vger.kernel.org
13408 S:      Maintained
13409 W:      http://client.linux-nfs.org
13410 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13411 F:      fs/lockd/
13412 F:      fs/nfs/
13413 F:      fs/nfs_common/
13414 F:      include/linux/lockd/
13415 F:      include/linux/nfs*
13416 F:      include/linux/sunrpc/
13417 F:      include/uapi/linux/nfs*
13418 F:      include/uapi/linux/sunrpc/
13419 F:      net/sunrpc/
13420 F:      Documentation/filesystems/nfs/
13421
13422 NILFS2 FILESYSTEM
13423 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13424 L:      linux-nilfs@vger.kernel.org
13425 S:      Supported
13426 W:      https://nilfs.sourceforge.io/
13427 W:      https://nilfs.osdn.jp/
13428 T:      git git://github.com/konis/nilfs2.git
13429 F:      Documentation/filesystems/nilfs2.rst
13430 F:      fs/nilfs2/
13431 F:      include/trace/events/nilfs2.h
13432 F:      include/uapi/linux/nilfs2_api.h
13433 F:      include/uapi/linux/nilfs2_ondisk.h
13434
13435 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13436 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13437 S:      Maintained
13438 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13439 F:      Documentation/scsi/NinjaSCSI.rst
13440 F:      drivers/scsi/pcmcia/nsp_*
13441
13442 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13443 M:      GOTO Masanori <gotom@debian.or.jp>
13444 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13445 S:      Maintained
13446 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13447 F:      Documentation/scsi/NinjaSCSI.rst
13448 F:      drivers/scsi/nsp32*
13449
13450 NINTENDO HID DRIVER
13451 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13452 L:      linux-input@vger.kernel.org
13453 S:      Maintained
13454 F:      drivers/hid/hid-nintendo*
13455
13456 NIOS2 ARCHITECTURE
13457 M:      Dinh Nguyen <dinguyen@kernel.org>
13458 S:      Maintained
13459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13460 F:      arch/nios2/
13461
13462 NITRO ENCLAVES (NE)
13463 M:      Andra Paraschiv <andraprs@amazon.com>
13464 M:      Alexandru Vasile <lexnv@amazon.com>
13465 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13466 L:      linux-kernel@vger.kernel.org
13467 S:      Supported
13468 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13469 F:      Documentation/virt/ne_overview.rst
13470 F:      drivers/virt/nitro_enclaves/
13471 F:      include/linux/nitro_enclaves.h
13472 F:      include/uapi/linux/nitro_enclaves.h
13473 F:      samples/nitro_enclaves/
13474
13475 NOHZ, DYNTICKS SUPPORT
13476 M:      Frederic Weisbecker <fweisbec@gmail.com>
13477 M:      Thomas Gleixner <tglx@linutronix.de>
13478 M:      Ingo Molnar <mingo@kernel.org>
13479 L:      linux-kernel@vger.kernel.org
13480 S:      Maintained
13481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13482 F:      include/linux/sched/nohz.h
13483 F:      include/linux/tick.h
13484 F:      kernel/time/tick*.*
13485
13486 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13487 M:      Pavel Machek <pavel@ucw.cz>
13488 M:      Sakari Ailus <sakari.ailus@iki.fi>
13489 L:      linux-media@vger.kernel.org
13490 S:      Maintained
13491 F:      drivers/media/i2c/ad5820.c
13492 F:      drivers/media/i2c/et8ek8
13493
13494 NOKIA N900 POWER SUPPLY DRIVERS
13495 R:      Pali Rohár <pali@kernel.org>
13496 F:      drivers/power/supply/bq2415x_charger.c
13497 F:      drivers/power/supply/bq27xxx_battery.c
13498 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13499 F:      drivers/power/supply/isp1704_charger.c
13500 F:      drivers/power/supply/rx51_battery.c
13501 F:      include/linux/power/bq2415x_charger.h
13502 F:      include/linux/power/bq27xxx_battery.h
13503
13504 NOLIBC HEADER FILE
13505 M:      Willy Tarreau <w@1wt.eu>
13506 S:      Maintained
13507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13508 F:      tools/include/nolibc/
13509
13510 NSDEPS
13511 M:      Matthias Maennich <maennich@google.com>
13512 S:      Maintained
13513 F:      Documentation/core-api/symbol-namespaces.rst
13514 F:      scripts/nsdeps
13515
13516 NTB AMD DRIVER
13517 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13518 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13519 L:      linux-ntb@googlegroups.com
13520 S:      Supported
13521 F:      drivers/ntb/hw/amd/
13522
13523 NTB DRIVER CORE
13524 M:      Jon Mason <jdmason@kudzu.us>
13525 M:      Dave Jiang <dave.jiang@intel.com>
13526 M:      Allen Hubbe <allenbh@gmail.com>
13527 L:      linux-ntb@googlegroups.com
13528 S:      Supported
13529 W:      https://github.com/jonmason/ntb/wiki
13530 T:      git git://github.com/jonmason/ntb.git
13531 F:      drivers/net/ntb_netdev.c
13532 F:      drivers/ntb/
13533 F:      include/linux/ntb.h
13534 F:      include/linux/ntb_transport.h
13535 F:      tools/testing/selftests/ntb/
13536
13537 NTB IDT DRIVER
13538 M:      Serge Semin <fancer.lancer@gmail.com>
13539 L:      linux-ntb@googlegroups.com
13540 S:      Supported
13541 F:      drivers/ntb/hw/idt/
13542
13543 NTB INTEL DRIVER
13544 M:      Dave Jiang <dave.jiang@intel.com>
13545 L:      linux-ntb@googlegroups.com
13546 S:      Supported
13547 W:      https://github.com/davejiang/linux/wiki
13548 T:      git https://github.com/davejiang/linux.git
13549 F:      drivers/ntb/hw/intel/
13550
13551 NTFS FILESYSTEM
13552 M:      Anton Altaparmakov <anton@tuxera.com>
13553 L:      linux-ntfs-dev@lists.sourceforge.net
13554 S:      Supported
13555 W:      http://www.tuxera.com/
13556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13557 F:      Documentation/filesystems/ntfs.rst
13558 F:      fs/ntfs/
13559
13560 NTFS3 FILESYSTEM
13561 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13562 L:      ntfs3@lists.linux.dev
13563 S:      Supported
13564 W:      http://www.paragon-software.com/
13565 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13566 F:      Documentation/filesystems/ntfs3.rst
13567 F:      fs/ntfs3/
13568
13569 NUBUS SUBSYSTEM
13570 M:      Finn Thain <fthain@linux-m68k.org>
13571 L:      linux-m68k@lists.linux-m68k.org
13572 S:      Maintained
13573 F:      arch/*/include/asm/nubus.h
13574 F:      drivers/nubus/
13575 F:      include/linux/nubus.h
13576 F:      include/uapi/linux/nubus.h
13577
13578 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13579 M:      Antonino Daplas <adaplas@gmail.com>
13580 L:      linux-fbdev@vger.kernel.org
13581 S:      Maintained
13582 F:      drivers/video/fbdev/nvidia/
13583 F:      drivers/video/fbdev/riva/
13584
13585 NVIDIA WMI EC BACKLIGHT DRIVER
13586 M:      Daniel Dadap <ddadap@nvidia.com>
13587 L:      platform-driver-x86@vger.kernel.org
13588 S:      Supported
13589 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13590
13591 NVM EXPRESS DRIVER
13592 M:      Keith Busch <kbusch@kernel.org>
13593 M:      Jens Axboe <axboe@fb.com>
13594 M:      Christoph Hellwig <hch@lst.de>
13595 M:      Sagi Grimberg <sagi@grimberg.me>
13596 L:      linux-nvme@lists.infradead.org
13597 S:      Supported
13598 W:      http://git.infradead.org/nvme.git
13599 T:      git://git.infradead.org/nvme.git
13600 F:      drivers/nvme/host/
13601 F:      include/linux/nvme.h
13602 F:      include/uapi/linux/nvme_ioctl.h
13603
13604 NVM EXPRESS FC TRANSPORT DRIVERS
13605 M:      James Smart <james.smart@broadcom.com>
13606 L:      linux-nvme@lists.infradead.org
13607 S:      Supported
13608 F:      drivers/nvme/host/fc.c
13609 F:      drivers/nvme/target/fc.c
13610 F:      drivers/nvme/target/fcloop.c
13611 F:      include/linux/nvme-fc-driver.h
13612 F:      include/linux/nvme-fc.h
13613
13614 NVM EXPRESS TARGET DRIVER
13615 M:      Christoph Hellwig <hch@lst.de>
13616 M:      Sagi Grimberg <sagi@grimberg.me>
13617 M:      Chaitanya Kulkarni <kch@nvidia.com>
13618 L:      linux-nvme@lists.infradead.org
13619 S:      Supported
13620 W:      http://git.infradead.org/nvme.git
13621 T:      git://git.infradead.org/nvme.git
13622 F:      drivers/nvme/target/
13623
13624 NVMEM FRAMEWORK
13625 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13626 S:      Maintained
13627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13628 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13629 F:      Documentation/devicetree/bindings/nvmem/
13630 F:      drivers/nvmem/
13631 F:      include/linux/nvmem-consumer.h
13632 F:      include/linux/nvmem-provider.h
13633
13634 NXP C45 TJA11XX PHY DRIVER
13635 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13636 L:      netdev@vger.kernel.org
13637 S:      Maintained
13638 F:      drivers/net/phy/nxp-c45-tja11xx.c
13639
13640 NXP FSPI DRIVER
13641 M:      Ashish Kumar <ashish.kumar@nxp.com>
13642 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13643 L:      linux-spi@vger.kernel.org
13644 S:      Maintained
13645 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13646 F:      drivers/spi/spi-nxp-fspi.c
13647
13648 NXP FXAS21002C DRIVER
13649 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13650 L:      linux-iio@vger.kernel.org
13651 S:      Maintained
13652 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13653 F:      drivers/iio/gyro/fxas21002c.h
13654 F:      drivers/iio/gyro/fxas21002c_core.c
13655 F:      drivers/iio/gyro/fxas21002c_i2c.c
13656 F:      drivers/iio/gyro/fxas21002c_spi.c
13657
13658 NXP i.MX CLOCK DRIVERS
13659 M:      Abel Vesa <abel.vesa@nxp.com>
13660 L:      linux-clk@vger.kernel.org
13661 L:      linux-imx@nxp.com
13662 S:      Maintained
13663 F:      drivers/clk/imx/
13664
13665 NXP i.MX 8MQ DCSS DRIVER
13666 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13667 R:      Lucas Stach <l.stach@pengutronix.de>
13668 L:      dri-devel@lists.freedesktop.org
13669 S:      Maintained
13670 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13671 F:      drivers/gpu/drm/imx/dcss/
13672
13673 NXP i.MX 8QXP ADC DRIVER
13674 M:      Cai Huoqing <caihuoqing@baidu.com>
13675 L:      linux-iio@vger.kernel.org
13676 S:      Supported
13677 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13678 F:      drivers/iio/adc/imx8qxp-adc.c
13679
13680 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13681 M:      Jagan Teki <jagan@amarulasolutions.com>
13682 S:      Maintained
13683 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13684 F:      drivers/regulator/pf8x00-regulator.c
13685
13686 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13687 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13688 L:      linux-kernel@vger.kernel.org
13689 S:      Maintained
13690 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13691 F:      drivers/extcon/extcon-ptn5150.c
13692
13693 NXP SGTL5000 DRIVER
13694 M:      Fabio Estevam <festevam@gmail.com>
13695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13696 S:      Maintained
13697 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13698 F:      sound/soc/codecs/sgtl5000*
13699
13700 NXP SJA1105 ETHERNET SWITCH DRIVER
13701 M:      Vladimir Oltean <olteanv@gmail.com>
13702 L:      linux-kernel@vger.kernel.org
13703 S:      Maintained
13704 F:      drivers/net/dsa/sja1105
13705 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13706
13707 NXP TDA998X DRM DRIVER
13708 M:      Russell King <linux@armlinux.org.uk>
13709 S:      Maintained
13710 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13711 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13712 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13713 F:      include/drm/i2c/tda998x.h
13714 F:      include/dt-bindings/display/tda998x.h
13715 K:      "nxp,tda998x"
13716
13717 NXP TFA9879 DRIVER
13718 M:      Peter Rosin <peda@axentia.se>
13719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13720 S:      Maintained
13721 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13722 F:      sound/soc/codecs/tfa9879*
13723
13724 NXP/Goodix TFA989X (TFA1) DRIVER
13725 M:      Stephan Gerhold <stephan@gerhold.net>
13726 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13727 S:      Maintained
13728 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13729 F:      sound/soc/codecs/tfa989x.c
13730
13731 NXP-NCI NFC DRIVER
13732 R:      Charles Gorand <charles.gorand@effinnov.com>
13733 L:      linux-nfc@lists.01.org (subscribers-only)
13734 S:      Supported
13735 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13736 F:      drivers/nfc/nxp-nci
13737
13738 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13739 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13740 R:      NXP Linux Team <linux-imx@nxp.com>
13741 L:      linux-media@vger.kernel.org
13742 S:      Maintained
13743 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13744 F:      drivers/media/platform/imx-jpeg
13745
13746 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13747 M:      Jonas Malaco <jonas@protocubo.io>
13748 L:      linux-hwmon@vger.kernel.org
13749 S:      Maintained
13750 F:      Documentation/hwmon/nzxt-kraken2.rst
13751 F:      drivers/hwmon/nzxt-kraken2.c
13752
13753 OBJAGG
13754 M:      Jiri Pirko <jiri@nvidia.com>
13755 L:      netdev@vger.kernel.org
13756 S:      Supported
13757 F:      include/linux/objagg.h
13758 F:      lib/objagg.c
13759 F:      lib/test_objagg.c
13760
13761 OBJTOOL
13762 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13763 M:      Peter Zijlstra <peterz@infradead.org>
13764 S:      Supported
13765 F:      tools/objtool/
13766 F:      include/linux/objtool.h
13767
13768 OCELOT ETHERNET SWITCH DRIVER
13769 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13770 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13771 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13772 M:      UNGLinuxDriver@microchip.com
13773 L:      netdev@vger.kernel.org
13774 S:      Supported
13775 F:      drivers/net/dsa/ocelot/*
13776 F:      drivers/net/ethernet/mscc/
13777 F:      include/soc/mscc/ocelot*
13778 F:      net/dsa/tag_ocelot.c
13779 F:      net/dsa/tag_ocelot_8021q.c
13780 F:      tools/testing/selftests/drivers/net/ocelot/*
13781
13782 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13783 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13784 M:      Andrew Donnellan <ajd@linux.ibm.com>
13785 L:      linuxppc-dev@lists.ozlabs.org
13786 S:      Supported
13787 F:      Documentation/userspace-api/accelerators/ocxl.rst
13788 F:      arch/powerpc/include/asm/pnv-ocxl.h
13789 F:      arch/powerpc/platforms/powernv/ocxl.c
13790 F:      drivers/misc/ocxl/
13791 F:      include/misc/ocxl*
13792 F:      include/uapi/misc/ocxl.h
13793
13794 OMAP AUDIO SUPPORT
13795 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13796 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13798 L:      linux-omap@vger.kernel.org
13799 S:      Maintained
13800 F:      sound/soc/ti/n810.c
13801 F:      sound/soc/ti/omap*
13802 F:      sound/soc/ti/rx51.c
13803 F:      sound/soc/ti/sdma-pcm.*
13804
13805 OMAP CLOCK FRAMEWORK SUPPORT
13806 M:      Paul Walmsley <paul@pwsan.com>
13807 L:      linux-omap@vger.kernel.org
13808 S:      Maintained
13809 F:      arch/arm/*omap*/*clock*
13810
13811 OMAP DEVICE TREE SUPPORT
13812 M:      Benoît Cousson <bcousson@baylibre.com>
13813 M:      Tony Lindgren <tony@atomide.com>
13814 L:      linux-omap@vger.kernel.org
13815 L:      devicetree@vger.kernel.org
13816 S:      Maintained
13817 F:      arch/arm/boot/dts/*am3*
13818 F:      arch/arm/boot/dts/*am4*
13819 F:      arch/arm/boot/dts/*am5*
13820 F:      arch/arm/boot/dts/*dra7*
13821 F:      arch/arm/boot/dts/*omap*
13822 F:      arch/arm/boot/dts/logicpd-som-lv*
13823 F:      arch/arm/boot/dts/logicpd-torpedo*
13824
13825 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13826 L:      linux-omap@vger.kernel.org
13827 L:      linux-fbdev@vger.kernel.org
13828 S:      Orphan
13829 F:      Documentation/arm/omap/dss.rst
13830 F:      drivers/video/fbdev/omap2/
13831
13832 OMAP FRAMEBUFFER SUPPORT
13833 L:      linux-fbdev@vger.kernel.org
13834 L:      linux-omap@vger.kernel.org
13835 S:      Orphan
13836 F:      drivers/video/fbdev/omap/
13837
13838 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13839 M:      Roger Quadros <rogerq@kernel.org>
13840 M:      Tony Lindgren <tony@atomide.com>
13841 L:      linux-omap@vger.kernel.org
13842 S:      Maintained
13843 F:      arch/arm/mach-omap2/*gpmc*
13844 F:      drivers/memory/omap-gpmc.c
13845
13846 OMAP GPIO DRIVER
13847 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13848 M:      Santosh Shilimkar <ssantosh@kernel.org>
13849 M:      Kevin Hilman <khilman@kernel.org>
13850 L:      linux-omap@vger.kernel.org
13851 S:      Maintained
13852 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13853 F:      drivers/gpio/gpio-omap.c
13854
13855 OMAP HARDWARE SPINLOCK SUPPORT
13856 M:      Ohad Ben-Cohen <ohad@wizery.com>
13857 L:      linux-omap@vger.kernel.org
13858 S:      Maintained
13859 F:      drivers/hwspinlock/omap_hwspinlock.c
13860
13861 OMAP HS MMC SUPPORT
13862 L:      linux-mmc@vger.kernel.org
13863 L:      linux-omap@vger.kernel.org
13864 S:      Orphan
13865 F:      drivers/mmc/host/omap_hsmmc.c
13866
13867 OMAP HWMOD DATA
13868 M:      Paul Walmsley <paul@pwsan.com>
13869 L:      linux-omap@vger.kernel.org
13870 S:      Maintained
13871 F:      arch/arm/mach-omap2/omap_hwmod*data*
13872
13873 OMAP HWMOD SUPPORT
13874 M:      Benoît Cousson <bcousson@baylibre.com>
13875 M:      Paul Walmsley <paul@pwsan.com>
13876 L:      linux-omap@vger.kernel.org
13877 S:      Maintained
13878 F:      arch/arm/mach-omap2/omap_hwmod.*
13879
13880 OMAP I2C DRIVER
13881 M:      Vignesh R <vigneshr@ti.com>
13882 L:      linux-omap@vger.kernel.org
13883 L:      linux-i2c@vger.kernel.org
13884 S:      Maintained
13885 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13886 F:      drivers/i2c/busses/i2c-omap.c
13887
13888 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13890 L:      linux-media@vger.kernel.org
13891 S:      Maintained
13892 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13893 F:      drivers/media/platform/omap3isp/
13894 F:      drivers/staging/media/omap4iss/
13895
13896 OMAP MMC SUPPORT
13897 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13898 L:      linux-omap@vger.kernel.org
13899 S:      Odd Fixes
13900 F:      drivers/mmc/host/omap.c
13901
13902 OMAP POWER MANAGEMENT SUPPORT
13903 M:      Kevin Hilman <khilman@kernel.org>
13904 L:      linux-omap@vger.kernel.org
13905 S:      Maintained
13906 F:      arch/arm/*omap*/*pm*
13907 F:      drivers/cpufreq/omap-cpufreq.c
13908
13909 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13910 M:      Rajendra Nayak <rnayak@codeaurora.org>
13911 M:      Paul Walmsley <paul@pwsan.com>
13912 L:      linux-omap@vger.kernel.org
13913 S:      Maintained
13914 F:      arch/arm/mach-omap2/prm*
13915
13916 OMAP RANDOM NUMBER GENERATOR SUPPORT
13917 M:      Deepak Saxena <dsaxena@plexity.net>
13918 S:      Maintained
13919 F:      drivers/char/hw_random/omap-rng.c
13920
13921 OMAP USB SUPPORT
13922 L:      linux-usb@vger.kernel.org
13923 L:      linux-omap@vger.kernel.org
13924 S:      Orphan
13925 F:      arch/arm/*omap*/usb*
13926 F:      drivers/usb/*/*omap*
13927
13928 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13929 M:      Mark Jackson <mpfj@newflow.co.uk>
13930 L:      linux-omap@vger.kernel.org
13931 S:      Maintained
13932 F:      arch/arm/boot/dts/am335x-nano.dts
13933
13934 OMAP1 SUPPORT
13935 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13936 M:      Tony Lindgren <tony@atomide.com>
13937 L:      linux-omap@vger.kernel.org
13938 S:      Maintained
13939 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13941 F:      arch/arm/configs/omap1_defconfig
13942 F:      arch/arm/mach-omap1/
13943 F:      arch/arm/plat-omap/
13944 F:      drivers/i2c/busses/i2c-omap.c
13945 F:      include/linux/platform_data/ams-delta-fiq.h
13946 F:      include/linux/platform_data/i2c-omap.h
13947
13948 OMAP2+ SUPPORT
13949 M:      Tony Lindgren <tony@atomide.com>
13950 L:      linux-omap@vger.kernel.org
13951 S:      Maintained
13952 W:      http://www.muru.com/linux/omap/
13953 W:      http://linux.omap.com/
13954 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13956 F:      arch/arm/configs/omap2plus_defconfig
13957 F:      arch/arm/mach-omap2/
13958 F:      arch/arm/plat-omap/
13959 F:      drivers/bus/ti-sysc.c
13960 F:      drivers/i2c/busses/i2c-omap.c
13961 F:      drivers/irqchip/irq-omap-intc.c
13962 F:      drivers/mfd/*omap*.c
13963 F:      drivers/mfd/menelaus.c
13964 F:      drivers/mfd/palmas.c
13965 F:      drivers/mfd/tps65217.c
13966 F:      drivers/mfd/tps65218.c
13967 F:      drivers/mfd/tps65910.c
13968 F:      drivers/mfd/twl-core.[ch]
13969 F:      drivers/mfd/twl4030*.c
13970 F:      drivers/mfd/twl6030*.c
13971 F:      drivers/mfd/twl6040*.c
13972 F:      drivers/regulator/palmas-regulator*.c
13973 F:      drivers/regulator/pbias-regulator.c
13974 F:      drivers/regulator/tps65217-regulator.c
13975 F:      drivers/regulator/tps65218-regulator.c
13976 F:      drivers/regulator/tps65910-regulator.c
13977 F:      drivers/regulator/twl-regulator.c
13978 F:      drivers/regulator/twl6030-regulator.c
13979 F:      include/linux/platform_data/i2c-omap.h
13980 F:      include/linux/platform_data/ti-sysc.h
13981
13982 OMFS FILESYSTEM
13983 M:      Bob Copeland <me@bobcopeland.com>
13984 L:      linux-karma-devel@lists.sourceforge.net
13985 S:      Maintained
13986 F:      Documentation/filesystems/omfs.rst
13987 F:      fs/omfs/
13988
13989 OMNIKEY CARDMAN 4000 DRIVER
13990 M:      Harald Welte <laforge@gnumonks.org>
13991 S:      Maintained
13992 F:      drivers/char/pcmcia/cm4000_cs.c
13993 F:      include/linux/cm4000_cs.h
13994 F:      include/uapi/linux/cm4000_cs.h
13995
13996 OMNIKEY CARDMAN 4040 DRIVER
13997 M:      Harald Welte <laforge@gnumonks.org>
13998 S:      Maintained
13999 F:      drivers/char/pcmcia/cm4040_cs.*
14000
14001 OMNIVISION OV02A10 SENSOR DRIVER
14002 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14003 L:      linux-media@vger.kernel.org
14004 S:      Maintained
14005 T:      git git://linuxtv.org/media_tree.git
14006 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14007 F:      drivers/media/i2c/ov02a10.c
14008
14009 OMNIVISION OV13858 SENSOR DRIVER
14010 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14011 L:      linux-media@vger.kernel.org
14012 S:      Maintained
14013 T:      git git://linuxtv.org/media_tree.git
14014 F:      drivers/media/i2c/ov13858.c
14015
14016 OMNIVISION OV13B10 SENSOR DRIVER
14017 M:      Arec Kao <arec.kao@intel.com>
14018 L:      linux-media@vger.kernel.org
14019 S:      Maintained
14020 T:      git git://linuxtv.org/media_tree.git
14021 F:      drivers/media/i2c/ov13b10.c
14022
14023 OMNIVISION OV2680 SENSOR DRIVER
14024 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14025 L:      linux-media@vger.kernel.org
14026 S:      Maintained
14027 T:      git git://linuxtv.org/media_tree.git
14028 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14029 F:      drivers/media/i2c/ov2680.c
14030
14031 OMNIVISION OV2685 SENSOR DRIVER
14032 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14033 L:      linux-media@vger.kernel.org
14034 S:      Maintained
14035 T:      git git://linuxtv.org/media_tree.git
14036 F:      drivers/media/i2c/ov2685.c
14037
14038 OMNIVISION OV2740 SENSOR DRIVER
14039 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14040 R:      Shawn Tu <shawnx.tu@intel.com>
14041 R:      Bingbu Cao <bingbu.cao@intel.com>
14042 L:      linux-media@vger.kernel.org
14043 S:      Maintained
14044 T:      git git://linuxtv.org/media_tree.git
14045 F:      drivers/media/i2c/ov2740.c
14046
14047 OMNIVISION OV5640 SENSOR DRIVER
14048 M:      Steve Longerbeam <slongerbeam@gmail.com>
14049 L:      linux-media@vger.kernel.org
14050 S:      Maintained
14051 T:      git git://linuxtv.org/media_tree.git
14052 F:      drivers/media/i2c/ov5640.c
14053
14054 OMNIVISION OV5647 SENSOR DRIVER
14055 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14056 M:      Jacopo Mondi <jacopo@jmondi.org>
14057 L:      linux-media@vger.kernel.org
14058 S:      Maintained
14059 T:      git git://linuxtv.org/media_tree.git
14060 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14061 F:      drivers/media/i2c/ov5647.c
14062
14063 OMNIVISION OV5670 SENSOR DRIVER
14064 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14065 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
14066 L:      linux-media@vger.kernel.org
14067 S:      Maintained
14068 T:      git git://linuxtv.org/media_tree.git
14069 F:      drivers/media/i2c/ov5670.c
14070
14071 OMNIVISION OV5675 SENSOR DRIVER
14072 M:      Shawn Tu <shawnx.tu@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/ov5675.c
14077
14078 OMNIVISION OV5695 SENSOR DRIVER
14079 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14080 L:      linux-media@vger.kernel.org
14081 S:      Maintained
14082 T:      git git://linuxtv.org/media_tree.git
14083 F:      drivers/media/i2c/ov5695.c
14084
14085 OMNIVISION OV7670 SENSOR DRIVER
14086 L:      linux-media@vger.kernel.org
14087 S:      Orphan
14088 T:      git git://linuxtv.org/media_tree.git
14089 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14090 F:      drivers/media/i2c/ov7670.c
14091
14092 OMNIVISION OV772x SENSOR DRIVER
14093 M:      Jacopo Mondi <jacopo@jmondi.org>
14094 L:      linux-media@vger.kernel.org
14095 S:      Odd fixes
14096 T:      git git://linuxtv.org/media_tree.git
14097 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14098 F:      drivers/media/i2c/ov772x.c
14099 F:      include/media/i2c/ov772x.h
14100
14101 OMNIVISION OV7740 SENSOR DRIVER
14102 M:      Wenyou Yang <wenyou.yang@microchip.com>
14103 L:      linux-media@vger.kernel.org
14104 S:      Maintained
14105 T:      git git://linuxtv.org/media_tree.git
14106 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14107 F:      drivers/media/i2c/ov7740.c
14108
14109 OMNIVISION OV8856 SENSOR DRIVER
14110 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14111 L:      linux-media@vger.kernel.org
14112 S:      Maintained
14113 T:      git git://linuxtv.org/media_tree.git
14114 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14115 F:      drivers/media/i2c/ov8856.c
14116
14117 OMNIVISION OV9282 SENSOR DRIVER
14118 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14119 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14120 L:      linux-media@vger.kernel.org
14121 S:      Maintained
14122 T:      git git://linuxtv.org/media_tree.git
14123 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14124 F:      drivers/media/i2c/ov9282.c
14125
14126 OMNIVISION OV9640 SENSOR DRIVER
14127 M:      Petr Cvek <petrcvekcz@gmail.com>
14128 L:      linux-media@vger.kernel.org
14129 S:      Maintained
14130 F:      drivers/media/i2c/ov9640.*
14131
14132 OMNIVISION OV9650 SENSOR DRIVER
14133 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14134 R:      Akinobu Mita <akinobu.mita@gmail.com>
14135 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14136 L:      linux-media@vger.kernel.org
14137 S:      Maintained
14138 T:      git git://linuxtv.org/media_tree.git
14139 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14140 F:      drivers/media/i2c/ov9650.c
14141
14142 OMNIVISION OV9734 SENSOR DRIVER
14143 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14144 R:      Bingbu Cao <bingbu.cao@intel.com>
14145 L:      linux-media@vger.kernel.org
14146 S:      Maintained
14147 T:      git git://linuxtv.org/media_tree.git
14148 F:      drivers/media/i2c/ov9734.c
14149
14150 ONENAND FLASH DRIVER
14151 M:      Kyungmin Park <kyungmin.park@samsung.com>
14152 L:      linux-mtd@lists.infradead.org
14153 S:      Maintained
14154 F:      drivers/mtd/nand/onenand/
14155 F:      include/linux/mtd/onenand*.h
14156
14157 ONION OMEGA2+ BOARD
14158 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14159 L:      linux-mips@vger.kernel.org
14160 S:      Maintained
14161 F:      arch/mips/boot/dts/ralink/omega2p.dts
14162
14163 OP-TEE DRIVER
14164 M:      Jens Wiklander <jens.wiklander@linaro.org>
14165 L:      op-tee@lists.trustedfirmware.org
14166 S:      Maintained
14167 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14168 F:      drivers/tee/optee/
14169
14170 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14171 M:      Sumit Garg <sumit.garg@linaro.org>
14172 L:      op-tee@lists.trustedfirmware.org
14173 S:      Maintained
14174 F:      drivers/char/hw_random/optee-rng.c
14175
14176 OPA-VNIC DRIVER
14177 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14178 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14179 L:      linux-rdma@vger.kernel.org
14180 S:      Supported
14181 F:      drivers/infiniband/ulp/opa_vnic
14182
14183 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14184 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14185 M:      Frank Rowand <frowand.list@gmail.com>
14186 L:      devicetree@vger.kernel.org
14187 S:      Maintained
14188 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14189 F:      Documentation/devicetree/overlay-notes.rst
14190 F:      drivers/of/overlay.c
14191 F:      drivers/of/resolver.c
14192 K:      of_overlay_notifier_
14193
14194 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14195 M:      Rob Herring <robh+dt@kernel.org>
14196 M:      Frank Rowand <frowand.list@gmail.com>
14197 L:      devicetree@vger.kernel.org
14198 S:      Maintained
14199 W:      http://www.devicetree.org/
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14201 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14202 F:      drivers/of/
14203 F:      include/linux/of*.h
14204 F:      scripts/dtc/
14205
14206 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14207 M:      Rob Herring <robh+dt@kernel.org>
14208 L:      devicetree@vger.kernel.org
14209 S:      Maintained
14210 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14212 F:      Documentation/devicetree/
14213 F:      arch/*/boot/dts/
14214 F:      include/dt-bindings/
14215
14216 OPENCOMPUTE PTP CLOCK DRIVER
14217 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14218 L:      netdev@vger.kernel.org
14219 S:      Maintained
14220 F:      drivers/ptp/ptp_ocp.c
14221
14222 OPENCORES I2C BUS DRIVER
14223 M:      Peter Korsgaard <peter@korsgaard.com>
14224 M:      Andrew Lunn <andrew@lunn.ch>
14225 L:      linux-i2c@vger.kernel.org
14226 S:      Maintained
14227 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14228 F:      Documentation/i2c/busses/i2c-ocores.rst
14229 F:      drivers/i2c/busses/i2c-ocores.c
14230 F:      include/linux/platform_data/i2c-ocores.h
14231
14232 OPENRISC ARCHITECTURE
14233 M:      Jonas Bonn <jonas@southpole.se>
14234 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14235 M:      Stafford Horne <shorne@gmail.com>
14236 L:      openrisc@lists.librecores.org
14237 S:      Maintained
14238 W:      http://openrisc.io
14239 T:      git git://github.com/openrisc/linux.git
14240 F:      Documentation/devicetree/bindings/openrisc/
14241 F:      Documentation/openrisc/
14242 F:      arch/openrisc/
14243 F:      drivers/irqchip/irq-ompic.c
14244 F:      drivers/irqchip/irq-or1k-*
14245
14246 OPENVSWITCH
14247 M:      Pravin B Shelar <pshelar@ovn.org>
14248 L:      netdev@vger.kernel.org
14249 L:      dev@openvswitch.org
14250 S:      Maintained
14251 W:      http://openvswitch.org
14252 F:      include/uapi/linux/openvswitch.h
14253 F:      net/openvswitch/
14254
14255 OPERATING PERFORMANCE POINTS (OPP)
14256 M:      Viresh Kumar <vireshk@kernel.org>
14257 M:      Nishanth Menon <nm@ti.com>
14258 M:      Stephen Boyd <sboyd@kernel.org>
14259 L:      linux-pm@vger.kernel.org
14260 S:      Maintained
14261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14262 F:      Documentation/devicetree/bindings/opp/
14263 F:      Documentation/power/opp.rst
14264 F:      drivers/opp/
14265 F:      include/linux/pm_opp.h
14266
14267 OPL4 DRIVER
14268 M:      Clemens Ladisch <clemens@ladisch.de>
14269 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14270 S:      Maintained
14271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14272 F:      sound/drivers/opl4/
14273
14274 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14275 M:      Mark Fasheh <mark@fasheh.com>
14276 M:      Joel Becker <jlbec@evilplan.org>
14277 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14278 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14279 S:      Supported
14280 W:      http://ocfs2.wiki.kernel.org
14281 F:      Documentation/filesystems/dlmfs.rst
14282 F:      Documentation/filesystems/ocfs2.rst
14283 F:      fs/ocfs2/
14284
14285 ORANGEFS FILESYSTEM
14286 M:      Mike Marshall <hubcap@omnibond.com>
14287 R:      Martin Brandenburg <martin@omnibond.com>
14288 L:      devel@lists.orangefs.org
14289 S:      Supported
14290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14291 F:      Documentation/filesystems/orangefs.rst
14292 F:      fs/orangefs/
14293
14294 ORINOCO DRIVER
14295 L:      linux-wireless@vger.kernel.org
14296 S:      Orphan
14297 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14298 W:      http://www.nongnu.org/orinoco/
14299 F:      drivers/net/wireless/intersil/orinoco/
14300
14301 OV2659 OMNIVISION SENSOR DRIVER
14302 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14303 L:      linux-media@vger.kernel.org
14304 S:      Maintained
14305 W:      https://linuxtv.org
14306 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14307 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14308 F:      drivers/media/i2c/ov2659.c
14309 F:      include/media/i2c/ov2659.h
14310
14311 OVERLAY FILESYSTEM
14312 M:      Miklos Szeredi <miklos@szeredi.hu>
14313 L:      linux-unionfs@vger.kernel.org
14314 S:      Supported
14315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14316 F:      Documentation/filesystems/overlayfs.rst
14317 F:      fs/overlayfs/
14318
14319 P54 WIRELESS DRIVER
14320 M:      Christian Lamparter <chunkeey@googlemail.com>
14321 L:      linux-wireless@vger.kernel.org
14322 S:      Maintained
14323 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14324 F:      drivers/net/wireless/intersil/p54/
14325
14326 PACKING
14327 M:      Vladimir Oltean <olteanv@gmail.com>
14328 L:      netdev@vger.kernel.org
14329 S:      Supported
14330 F:      Documentation/core-api/packing.rst
14331 F:      include/linux/packing.h
14332 F:      lib/packing.c
14333
14334 PADATA PARALLEL EXECUTION MECHANISM
14335 M:      Steffen Klassert <steffen.klassert@secunet.com>
14336 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14337 L:      linux-crypto@vger.kernel.org
14338 L:      linux-kernel@vger.kernel.org
14339 S:      Maintained
14340 F:      Documentation/core-api/padata.rst
14341 F:      include/linux/padata.h
14342 F:      kernel/padata.c
14343
14344 PAGE POOL
14345 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14346 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14347 L:      netdev@vger.kernel.org
14348 S:      Supported
14349 F:      Documentation/networking/page_pool.rst
14350 F:      include/net/page_pool.h
14351 F:      include/trace/events/page_pool.h
14352 F:      net/core/page_pool.c
14353
14354 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14355 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14356 L:      platform-driver-x86@vger.kernel.org
14357 S:      Maintained
14358 F:      drivers/platform/x86/panasonic-laptop.c
14359
14360 PARALLAX PING IIO SENSOR DRIVER
14361 M:      Andreas Klinger <ak@it-klinger.de>
14362 L:      linux-iio@vger.kernel.org
14363 S:      Maintained
14364 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14365 F:      drivers/iio/proximity/ping.c
14366
14367 PARALLEL LCD/KEYPAD PANEL DRIVER
14368 M:      Willy Tarreau <willy@haproxy.com>
14369 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14370 S:      Odd Fixes
14371 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14372 F:      drivers/auxdisplay/panel.c
14373
14374 PARALLEL PORT SUBSYSTEM
14375 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14376 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14377 L:      linux-parport@lists.infradead.org (subscribers-only)
14378 S:      Maintained
14379 F:      Documentation/driver-api/parport*.rst
14380 F:      drivers/char/ppdev.c
14381 F:      drivers/parport/
14382 F:      include/linux/parport*.h
14383 F:      include/uapi/linux/ppdev.h
14384
14385 PARAVIRT_OPS INTERFACE
14386 M:      Juergen Gross <jgross@suse.com>
14387 M:      Deep Shah <sdeep@vmware.com>
14388 M:      "VMware, Inc." <pv-drivers@vmware.com>
14389 L:      virtualization@lists.linux-foundation.org
14390 S:      Supported
14391 F:      Documentation/virt/paravirt_ops.rst
14392 F:      arch/*/include/asm/paravirt*.h
14393 F:      arch/*/kernel/paravirt*
14394 F:      include/linux/hypervisor.h
14395
14396 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14397 M:      Tim Waugh <tim@cyberelk.net>
14398 L:      linux-parport@lists.infradead.org (subscribers-only)
14399 S:      Maintained
14400 F:      Documentation/admin-guide/blockdev/paride.rst
14401 F:      drivers/block/paride/
14402
14403 PARISC ARCHITECTURE
14404 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14405 M:      Helge Deller <deller@gmx.de>
14406 L:      linux-parisc@vger.kernel.org
14407 S:      Maintained
14408 W:      https://parisc.wiki.kernel.org
14409 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14412 F:      Documentation/parisc/
14413 F:      arch/parisc/
14414 F:      drivers/char/agp/parisc-agp.c
14415 F:      drivers/input/misc/hp_sdc_rtc.c
14416 F:      drivers/input/serio/gscps2.c
14417 F:      drivers/input/serio/hp_sdc*
14418 F:      drivers/parisc/
14419 F:      drivers/parport/parport_gsc.*
14420 F:      drivers/tty/serial/8250/8250_gsc.c
14421 F:      drivers/video/console/sti*
14422 F:      drivers/video/fbdev/sti*
14423 F:      drivers/video/logo/logo_parisc*
14424 F:      include/linux/hp_sdc.h
14425
14426 PARMAN
14427 M:      Jiri Pirko <jiri@nvidia.com>
14428 L:      netdev@vger.kernel.org
14429 S:      Supported
14430 F:      include/linux/parman.h
14431 F:      lib/parman.c
14432 F:      lib/test_parman.c
14433
14434 PC ENGINES APU BOARD DRIVER
14435 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14436 S:      Maintained
14437 F:      drivers/platform/x86/pcengines-apuv2.c
14438
14439 PC87360 HARDWARE MONITORING DRIVER
14440 M:      Jim Cromie <jim.cromie@gmail.com>
14441 L:      linux-hwmon@vger.kernel.org
14442 S:      Maintained
14443 F:      Documentation/hwmon/pc87360.rst
14444 F:      drivers/hwmon/pc87360.c
14445
14446 PC8736x GPIO DRIVER
14447 M:      Jim Cromie <jim.cromie@gmail.com>
14448 S:      Maintained
14449 F:      drivers/char/pc8736x_gpio.c
14450
14451 PC87427 HARDWARE MONITORING DRIVER
14452 M:      Jean Delvare <jdelvare@suse.com>
14453 L:      linux-hwmon@vger.kernel.org
14454 S:      Maintained
14455 F:      Documentation/hwmon/pc87427.rst
14456 F:      drivers/hwmon/pc87427.c
14457
14458 PCA9532 LED DRIVER
14459 M:      Riku Voipio <riku.voipio@iki.fi>
14460 S:      Maintained
14461 F:      drivers/leds/leds-pca9532.c
14462 F:      include/linux/leds-pca9532.h
14463
14464 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14465 M:      Guenter Roeck <linux@roeck-us.net>
14466 L:      linux-i2c@vger.kernel.org
14467 S:      Maintained
14468 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14469
14470 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14471 M:      Khalid Aziz <khalid@gonehiking.org>
14472 S:      Maintained
14473 F:      drivers/firmware/pcdp.*
14474
14475 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14476 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14477 M:      Pali Rohár <pali@kernel.org>
14478 L:      linux-pci@vger.kernel.org
14479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14480 S:      Maintained
14481 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14482 F:      drivers/pci/controller/pci-aardvark.c
14483
14484 PCI DRIVER FOR ALTERA PCIE IP
14485 M:      Joyce Ooi <joyce.ooi@intel.com>
14486 L:      linux-pci@vger.kernel.org
14487 S:      Supported
14488 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14489 F:      drivers/pci/controller/pcie-altera.c
14490
14491 PCI DRIVER FOR APPLIEDMICRO XGENE
14492 M:      Toan Le <toan@os.amperecomputing.com>
14493 L:      linux-pci@vger.kernel.org
14494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14495 S:      Maintained
14496 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14497 F:      drivers/pci/controller/pci-xgene.c
14498
14499 PCI DRIVER FOR ARM VERSATILE PLATFORM
14500 M:      Rob Herring <robh@kernel.org>
14501 L:      linux-pci@vger.kernel.org
14502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14503 S:      Maintained
14504 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14505 F:      drivers/pci/controller/pci-versatile.c
14506
14507 PCI DRIVER FOR ARMADA 8K
14508 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14509 L:      linux-pci@vger.kernel.org
14510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14511 S:      Maintained
14512 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14513 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14514
14515 PCI DRIVER FOR CADENCE PCIE IP
14516 M:      Tom Joseph <tjoseph@cadence.com>
14517 L:      linux-pci@vger.kernel.org
14518 S:      Maintained
14519 F:      Documentation/devicetree/bindings/pci/cdns,*
14520 F:      drivers/pci/controller/cadence/
14521
14522 PCI DRIVER FOR FREESCALE LAYERSCAPE
14523 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14524 M:      Mingkai Hu <mingkai.hu@nxp.com>
14525 M:      Roy Zang <roy.zang@nxp.com>
14526 L:      linuxppc-dev@lists.ozlabs.org
14527 L:      linux-pci@vger.kernel.org
14528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14529 S:      Maintained
14530 F:      drivers/pci/controller/dwc/*layerscape*
14531
14532 PCI DRIVER FOR GENERIC OF HOSTS
14533 M:      Will Deacon <will@kernel.org>
14534 L:      linux-pci@vger.kernel.org
14535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14536 S:      Maintained
14537 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14538 F:      drivers/pci/controller/pci-host-common.c
14539 F:      drivers/pci/controller/pci-host-generic.c
14540
14541 PCI DRIVER FOR IMX6
14542 M:      Richard Zhu <hongxing.zhu@nxp.com>
14543 M:      Lucas Stach <l.stach@pengutronix.de>
14544 L:      linux-pci@vger.kernel.org
14545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14546 S:      Maintained
14547 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14548 F:      drivers/pci/controller/dwc/*imx6*
14549
14550 PCI DRIVER FOR FU740
14551 M:      Paul Walmsley <paul.walmsley@sifive.com>
14552 M:      Greentime Hu <greentime.hu@sifive.com>
14553 L:      linux-pci@vger.kernel.org
14554 S:      Maintained
14555 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14556 F:      drivers/pci/controller/dwc/pcie-fu740.c
14557
14558 PCI DRIVER FOR INTEL IXP4XX
14559 M:      Linus Walleij <linus.walleij@linaro.org>
14560 S:      Maintained
14561 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14562 F:      drivers/pci/controller/pci-ixp4xx.c
14563
14564 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14565 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14566 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14567 L:      linux-pci@vger.kernel.org
14568 S:      Supported
14569 F:      drivers/pci/controller/vmd.c
14570
14571 PCI DRIVER FOR MICROSEMI SWITCHTEC
14572 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14573 M:      Logan Gunthorpe <logang@deltatee.com>
14574 L:      linux-pci@vger.kernel.org
14575 S:      Maintained
14576 F:      Documentation/ABI/testing/sysfs-class-switchtec
14577 F:      Documentation/driver-api/switchtec.rst
14578 F:      drivers/ntb/hw/mscc/
14579 F:      drivers/pci/switch/switchtec*
14580 F:      include/linux/switchtec.h
14581 F:      include/uapi/linux/switchtec_ioctl.h
14582
14583 PCI DRIVER FOR MOBIVEIL PCIE IP
14584 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14585 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14586 L:      linux-pci@vger.kernel.org
14587 S:      Supported
14588 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14589 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14590
14591 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14592 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14593 L:      linux-pci@vger.kernel.org
14594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14595 S:      Maintained
14596 F:      drivers/pci/controller/*mvebu*
14597
14598 PCI DRIVER FOR NVIDIA TEGRA
14599 M:      Thierry Reding <thierry.reding@gmail.com>
14600 L:      linux-tegra@vger.kernel.org
14601 L:      linux-pci@vger.kernel.org
14602 S:      Supported
14603 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14604 F:      drivers/pci/controller/pci-tegra.c
14605
14606 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14607 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14608 L:      linux-pci@vger.kernel.org
14609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14610 S:      Maintained
14611 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14612 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14613
14614 PCI DRIVER FOR RENESAS R-CAR
14615 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14616 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14617 L:      linux-pci@vger.kernel.org
14618 L:      linux-renesas-soc@vger.kernel.org
14619 S:      Maintained
14620 F:      Documentation/devicetree/bindings/pci/*rcar*
14621 F:      drivers/pci/controller/*rcar*
14622
14623 PCI DRIVER FOR SAMSUNG EXYNOS
14624 M:      Jingoo Han <jingoohan1@gmail.com>
14625 L:      linux-pci@vger.kernel.org
14626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14627 L:      linux-samsung-soc@vger.kernel.org
14628 S:      Maintained
14629 F:      drivers/pci/controller/dwc/pci-exynos.c
14630
14631 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14632 M:      Jingoo Han <jingoohan1@gmail.com>
14633 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14634 L:      linux-pci@vger.kernel.org
14635 S:      Maintained
14636 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14637 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14638 F:      drivers/pci/controller/dwc/*designware*
14639
14640 PCI DRIVER FOR TI DRA7XX/J721E
14641 M:      Kishon Vijay Abraham I <kishon@ti.com>
14642 L:      linux-omap@vger.kernel.org
14643 L:      linux-pci@vger.kernel.org
14644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14645 S:      Supported
14646 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14647 F:      drivers/pci/controller/cadence/pci-j721e.c
14648 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14649
14650 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14651 M:      Linus Walleij <linus.walleij@linaro.org>
14652 L:      linux-pci@vger.kernel.org
14653 S:      Maintained
14654 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14655 F:      drivers/pci/controller/pci-v3-semi.c
14656
14657 PCI ENDPOINT SUBSYSTEM
14658 M:      Kishon Vijay Abraham I <kishon@ti.com>
14659 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14660 R:      Krzysztof Wilczyński <kw@linux.com>
14661 L:      linux-pci@vger.kernel.org
14662 S:      Supported
14663 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14664 B:      https://bugzilla.kernel.org
14665 C:      irc://irc.oftc.net/linux-pci
14666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14667 F:      Documentation/PCI/endpoint/*
14668 F:      Documentation/misc-devices/pci-endpoint-test.rst
14669 F:      drivers/misc/pci_endpoint_test.c
14670 F:      drivers/pci/endpoint/
14671 F:      tools/pci/
14672
14673 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14674 M:      Russell Currey <ruscur@russell.cc>
14675 M:      Oliver O'Halloran <oohall@gmail.com>
14676 L:      linuxppc-dev@lists.ozlabs.org
14677 S:      Supported
14678 F:      Documentation/PCI/pci-error-recovery.rst
14679 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14680 F:      arch/powerpc/include/*/eeh*.h
14681 F:      arch/powerpc/kernel/eeh*.c
14682 F:      arch/powerpc/platforms/*/eeh*.c
14683 F:      drivers/pci/pcie/aer.c
14684 F:      drivers/pci/pcie/dpc.c
14685 F:      drivers/pci/pcie/err.c
14686
14687 PCI ERROR RECOVERY
14688 M:      Linas Vepstas <linasvepstas@gmail.com>
14689 L:      linux-pci@vger.kernel.org
14690 S:      Supported
14691 F:      Documentation/PCI/pci-error-recovery.rst
14692
14693 PCI MSI DRIVER FOR ALTERA MSI IP
14694 M:      Joyce Ooi <joyce.ooi@intel.com>
14695 L:      linux-pci@vger.kernel.org
14696 S:      Supported
14697 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14698 F:      drivers/pci/controller/pcie-altera-msi.c
14699
14700 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14701 M:      Toan Le <toan@os.amperecomputing.com>
14702 L:      linux-pci@vger.kernel.org
14703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14704 S:      Maintained
14705 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14706 F:      drivers/pci/controller/pci-xgene-msi.c
14707
14708 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14709 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14710 R:      Rob Herring <robh@kernel.org>
14711 R:      Krzysztof Wilczyński <kw@linux.com>
14712 L:      linux-pci@vger.kernel.org
14713 S:      Supported
14714 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14715 B:      https://bugzilla.kernel.org
14716 C:      irc://irc.oftc.net/linux-pci
14717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14718 F:      drivers/pci/controller/
14719 F:      drivers/pci/pci-bridge-emul.c
14720 F:      drivers/pci/pci-bridge-emul.h
14721
14722 PCI SUBSYSTEM
14723 M:      Bjorn Helgaas <bhelgaas@google.com>
14724 L:      linux-pci@vger.kernel.org
14725 S:      Supported
14726 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14727 B:      https://bugzilla.kernel.org
14728 C:      irc://irc.oftc.net/linux-pci
14729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14730 F:      Documentation/PCI/
14731 F:      Documentation/devicetree/bindings/pci/
14732 F:      arch/x86/kernel/early-quirks.c
14733 F:      arch/x86/kernel/quirks.c
14734 F:      arch/x86/pci/
14735 F:      drivers/acpi/pci*
14736 F:      drivers/pci/
14737 F:      include/asm-generic/pci*
14738 F:      include/linux/of_pci.h
14739 F:      include/linux/pci*
14740 F:      include/uapi/linux/pci*
14741 F:      lib/pci*
14742
14743 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14744 M:      Jonathan Chocron <jonnyc@amazon.com>
14745 L:      linux-pci@vger.kernel.org
14746 S:      Maintained
14747 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14748 F:      drivers/pci/controller/dwc/pcie-al.c
14749
14750 PCIE DRIVER FOR AMLOGIC MESON
14751 M:      Yue Wang <yue.wang@Amlogic.com>
14752 L:      linux-pci@vger.kernel.org
14753 L:      linux-amlogic@lists.infradead.org
14754 S:      Maintained
14755 F:      drivers/pci/controller/dwc/pci-meson.c
14756
14757 PCIE DRIVER FOR AXIS ARTPEC
14758 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14759 L:      linux-arm-kernel@axis.com
14760 L:      linux-pci@vger.kernel.org
14761 S:      Maintained
14762 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14763 F:      drivers/pci/controller/dwc/*artpec*
14764
14765 PCIE DRIVER FOR CAVIUM THUNDERX
14766 M:      Robert Richter <rric@kernel.org>
14767 L:      linux-pci@vger.kernel.org
14768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14769 S:      Odd Fixes
14770 F:      drivers/pci/controller/pci-thunder-*
14771
14772 PCIE DRIVER FOR HISILICON
14773 M:      Zhou Wang <wangzhou1@hisilicon.com>
14774 L:      linux-pci@vger.kernel.org
14775 S:      Maintained
14776 F:      drivers/pci/controller/dwc/pcie-hisi.c
14777
14778 PCIE DRIVER FOR HISILICON KIRIN
14779 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14780 M:      Binghui Wang <wangbinghui@hisilicon.com>
14781 L:      linux-pci@vger.kernel.org
14782 S:      Maintained
14783 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14784 F:      drivers/pci/controller/dwc/pcie-kirin.c
14785
14786 PCIE DRIVER FOR HISILICON STB
14787 M:      Shawn Guo <shawn.guo@linaro.org>
14788 L:      linux-pci@vger.kernel.org
14789 S:      Maintained
14790 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14791 F:      drivers/pci/controller/dwc/pcie-histb.c
14792
14793 PCIE DRIVER FOR INTEL KEEM BAY
14794 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14795 L:      linux-pci@vger.kernel.org
14796 S:      Supported
14797 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14798 F:      drivers/pci/controller/dwc/pcie-keembay.c
14799
14800 PCIE DRIVER FOR INTEL LGM GW SOC
14801 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14802 L:      linux-pci@vger.kernel.org
14803 S:      Maintained
14804 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14805 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14806
14807 PCIE DRIVER FOR MEDIATEK
14808 M:      Ryder Lee <ryder.lee@mediatek.com>
14809 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14810 L:      linux-pci@vger.kernel.org
14811 L:      linux-mediatek@lists.infradead.org
14812 S:      Supported
14813 F:      Documentation/devicetree/bindings/pci/mediatek*
14814 F:      drivers/pci/controller/*mediatek*
14815
14816 PCIE DRIVER FOR MICROCHIP
14817 M:      Daire McNamara <daire.mcnamara@microchip.com>
14818 L:      linux-pci@vger.kernel.org
14819 S:      Supported
14820 F:      Documentation/devicetree/bindings/pci/microchip*
14821 F:      drivers/pci/controller/*microchip*
14822
14823 PCIE DRIVER FOR QUALCOMM MSM
14824 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14825 L:      linux-pci@vger.kernel.org
14826 L:      linux-arm-msm@vger.kernel.org
14827 S:      Maintained
14828 F:      drivers/pci/controller/dwc/pcie-qcom.c
14829
14830 PCIE ENDPOINT DRIVER FOR QUALCOMM
14831 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14832 L:      linux-pci@vger.kernel.org
14833 L:      linux-arm-msm@vger.kernel.org
14834 S:      Maintained
14835 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
14836 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
14837
14838 PCIE DRIVER FOR ROCKCHIP
14839 M:      Shawn Lin <shawn.lin@rock-chips.com>
14840 L:      linux-pci@vger.kernel.org
14841 L:      linux-rockchip@lists.infradead.org
14842 S:      Maintained
14843 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14844 F:      drivers/pci/controller/pcie-rockchip*
14845
14846 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14847 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14848 L:      linux-pci@vger.kernel.org
14849 S:      Maintained
14850 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14851 F:      drivers/pci/controller/dwc/pcie-uniphier*
14852
14853 PCIE DRIVER FOR ST SPEAR13XX
14854 M:      Pratyush Anand <pratyush.anand@gmail.com>
14855 L:      linux-pci@vger.kernel.org
14856 S:      Maintained
14857 F:      drivers/pci/controller/dwc/*spear*
14858
14859 PCMCIA SUBSYSTEM
14860 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14861 S:      Odd Fixes
14862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14863 F:      Documentation/pcmcia/
14864 F:      drivers/pcmcia/
14865 F:      include/pcmcia/
14866 F:      tools/pcmcia/
14867
14868 PCNET32 NETWORK DRIVER
14869 M:      Don Fry <pcnet32@frontier.com>
14870 L:      netdev@vger.kernel.org
14871 S:      Maintained
14872 F:      drivers/net/ethernet/amd/pcnet32.c
14873
14874 PCRYPT PARALLEL CRYPTO ENGINE
14875 M:      Steffen Klassert <steffen.klassert@secunet.com>
14876 L:      linux-crypto@vger.kernel.org
14877 S:      Maintained
14878 F:      crypto/pcrypt.c
14879 F:      include/crypto/pcrypt.h
14880
14881 PEAQ WMI HOTKEYS DRIVER
14882 M:      Hans de Goede <hdegoede@redhat.com>
14883 L:      platform-driver-x86@vger.kernel.org
14884 S:      Maintained
14885 F:      drivers/platform/x86/peaq-wmi.c
14886
14887 PENSANDO ETHERNET DRIVERS
14888 M:      Shannon Nelson <snelson@pensando.io>
14889 M:      drivers@pensando.io
14890 L:      netdev@vger.kernel.org
14891 S:      Supported
14892 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14893 F:      drivers/net/ethernet/pensando/
14894
14895 PER-CPU MEMORY ALLOCATOR
14896 M:      Dennis Zhou <dennis@kernel.org>
14897 M:      Tejun Heo <tj@kernel.org>
14898 M:      Christoph Lameter <cl@linux.com>
14899 L:      linux-mm@kvack.org
14900 S:      Maintained
14901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14902 F:      arch/*/include/asm/percpu.h
14903 F:      include/linux/percpu*.h
14904 F:      lib/percpu*.c
14905 F:      mm/percpu*.c
14906
14907 PER-TASK DELAY ACCOUNTING
14908 M:      Balbir Singh <bsingharora@gmail.com>
14909 S:      Maintained
14910 F:      include/linux/delayacct.h
14911 F:      kernel/delayacct.c
14912
14913 PERFORMANCE EVENTS SUBSYSTEM
14914 M:      Peter Zijlstra <peterz@infradead.org>
14915 M:      Ingo Molnar <mingo@redhat.com>
14916 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14917 R:      Mark Rutland <mark.rutland@arm.com>
14918 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14919 R:      Jiri Olsa <jolsa@redhat.com>
14920 R:      Namhyung Kim <namhyung@kernel.org>
14921 L:      linux-perf-users@vger.kernel.org
14922 L:      linux-kernel@vger.kernel.org
14923 S:      Supported
14924 W:      https://perf.wiki.kernel.org/
14925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14926 F:      arch/*/events/*
14927 F:      arch/*/events/*/*
14928 F:      arch/*/include/asm/perf_event.h
14929 F:      arch/*/kernel/*/*/perf_event*.c
14930 F:      arch/*/kernel/*/perf_event*.c
14931 F:      arch/*/kernel/perf_callchain.c
14932 F:      arch/*/kernel/perf_event*.c
14933 F:      include/linux/perf_event.h
14934 F:      include/uapi/linux/perf_event.h
14935 F:      kernel/events/*
14936 F:      tools/lib/perf/
14937 F:      tools/perf/
14938
14939 PERFORMANCE EVENTS TOOLING ARM64
14940 R:      John Garry <john.garry@huawei.com>
14941 R:      Will Deacon <will@kernel.org>
14942 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14943 R:      Leo Yan <leo.yan@linaro.org>
14944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14945 S:      Supported
14946 F:      tools/build/feature/test-libopencsd.c
14947 F:      tools/perf/arch/arm*/
14948 F:      tools/perf/pmu-events/arch/arm64/
14949 F:      tools/perf/util/arm-spe*
14950 F:      tools/perf/util/cs-etm*
14951
14952 PERSONALITY HANDLING
14953 M:      Christoph Hellwig <hch@infradead.org>
14954 L:      linux-abi-devel@lists.sourceforge.net
14955 S:      Maintained
14956 F:      include/linux/personality.h
14957 F:      include/uapi/linux/personality.h
14958
14959 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14960 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14961 L:      linux-input@vger.kernel.org
14962 S:      Maintained
14963 F:      Documentation/input/devices/pxrc.rst
14964 F:      drivers/input/joystick/pxrc.c
14965
14966 PHONET PROTOCOL
14967 M:      Remi Denis-Courmont <courmisch@gmail.com>
14968 S:      Supported
14969 F:      Documentation/networking/phonet.rst
14970 F:      include/linux/phonet.h
14971 F:      include/net/phonet/
14972 F:      include/uapi/linux/phonet.h
14973 F:      net/phonet/
14974
14975 PHRAM MTD DRIVER
14976 M:      Joern Engel <joern@lazybastard.org>
14977 L:      linux-mtd@lists.infradead.org
14978 S:      Maintained
14979 F:      drivers/mtd/devices/phram.c
14980
14981 PICOLCD HID DRIVER
14982 M:      Bruno Prémont <bonbons@linux-vserver.org>
14983 L:      linux-input@vger.kernel.org
14984 S:      Maintained
14985 F:      drivers/hid/hid-picolcd*
14986
14987 PIDFD API
14988 M:      Christian Brauner <christian@brauner.io>
14989 L:      linux-kernel@vger.kernel.org
14990 S:      Maintained
14991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14992 F:      samples/pidfd/
14993 F:      tools/testing/selftests/clone3/
14994 F:      tools/testing/selftests/pid_namespace/
14995 F:      tools/testing/selftests/pidfd/
14996 K:      (?i)pidfd
14997 K:      (?i)clone3
14998 K:      \b(clone_args|kernel_clone_args)\b
14999
15000 PIN CONTROL SUBSYSTEM
15001 M:      Linus Walleij <linus.walleij@linaro.org>
15002 L:      linux-gpio@vger.kernel.org
15003 S:      Maintained
15004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15005 F:      Documentation/devicetree/bindings/pinctrl/
15006 F:      Documentation/driver-api/pin-control.rst
15007 F:      drivers/pinctrl/
15008 F:      include/linux/pinctrl/
15009
15010 PIN CONTROLLER - AMD
15011 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15012 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15013 S:      Maintained
15014 F:      drivers/pinctrl/pinctrl-amd.c
15015
15016 PIN CONTROLLER - FREESCALE
15017 M:      Dong Aisheng <aisheng.dong@nxp.com>
15018 M:      Fabio Estevam <festevam@gmail.com>
15019 M:      Shawn Guo <shawnguo@kernel.org>
15020 M:      Stefan Agner <stefan@agner.ch>
15021 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15022 L:      linux-gpio@vger.kernel.org
15023 S:      Maintained
15024 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15025 F:      drivers/pinctrl/freescale/
15026
15027 PIN CONTROLLER - INTEL
15028 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15029 M:      Andy Shevchenko <andy@kernel.org>
15030 S:      Maintained
15031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15032 F:      drivers/pinctrl/intel/
15033
15034 PIN CONTROLLER - KEEMBAY
15035 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15036 S:      Supported
15037 F:      drivers/pinctrl/pinctrl-keembay*
15038
15039 PIN CONTROLLER - MEDIATEK
15040 M:      Sean Wang <sean.wang@kernel.org>
15041 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15042 S:      Maintained
15043 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15044 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15045 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15046 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15047 F:      drivers/pinctrl/mediatek/
15048
15049 PIN CONTROLLER - MICROCHIP AT91
15050 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15052 L:      linux-gpio@vger.kernel.org
15053 S:      Supported
15054 F:      drivers/gpio/gpio-sama5d2-piobu.c
15055 F:      drivers/pinctrl/pinctrl-at91*
15056
15057 PIN CONTROLLER - QUALCOMM
15058 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15059 L:      linux-arm-msm@vger.kernel.org
15060 S:      Maintained
15061 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15062 F:      drivers/pinctrl/qcom/
15063
15064 PIN CONTROLLER - RENESAS
15065 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15066 L:      linux-renesas-soc@vger.kernel.org
15067 S:      Supported
15068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15069 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15070 F:      drivers/pinctrl/renesas/
15071
15072 PIN CONTROLLER - SAMSUNG
15073 M:      Tomasz Figa <tomasz.figa@gmail.com>
15074 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
15075 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15077 L:      linux-samsung-soc@vger.kernel.org
15078 S:      Maintained
15079 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15081 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
15082 F:      drivers/pinctrl/samsung/
15083 F:      include/dt-bindings/pinctrl/samsung.h
15084
15085 PIN CONTROLLER - SINGLE
15086 M:      Tony Lindgren <tony@atomide.com>
15087 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15089 L:      linux-omap@vger.kernel.org
15090 S:      Maintained
15091 F:      drivers/pinctrl/pinctrl-single.c
15092
15093 PKTCDVD DRIVER
15094 M:      linux-block@vger.kernel.org
15095 S:      Orphan
15096 F:      drivers/block/pktcdvd.c
15097 F:      include/linux/pktcdvd.h
15098 F:      include/uapi/linux/pktcdvd.h
15099
15100 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15101 M:      Tomasz Duszynski <tduszyns@gmail.com>
15102 S:      Maintained
15103 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15104 F:      drivers/iio/chemical/pms7003.c
15105
15106 PLDMFW LIBRARY
15107 M:      Jacob Keller <jacob.e.keller@intel.com>
15108 S:      Maintained
15109 F:      Documentation/driver-api/pldmfw/
15110 F:      include/linux/pldmfw.h
15111 F:      lib/pldmfw/
15112
15113 PLX DMA DRIVER
15114 M:      Logan Gunthorpe <logang@deltatee.com>
15115 S:      Maintained
15116 F:      drivers/dma/plx_dma.c
15117
15118 PM6764TR DRIVER
15119 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15120 L:      linux-hwmon@vger.kernel.org
15121 S:      Maintained
15122 F:      Documentation/hwmon/pm6764tr.rst
15123 F:      drivers/hwmon/pmbus/pm6764tr.c
15124
15125 PM-GRAPH UTILITY
15126 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15127 L:      linux-pm@vger.kernel.org
15128 S:      Supported
15129 W:      https://01.org/pm-graph
15130 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15131 T:      git git://github.com/intel/pm-graph
15132 F:      tools/power/pm-graph
15133
15134 PMBUS HARDWARE MONITORING DRIVERS
15135 M:      Guenter Roeck <linux@roeck-us.net>
15136 L:      linux-hwmon@vger.kernel.org
15137 S:      Maintained
15138 W:      http://hwmon.wiki.kernel.org/
15139 W:      http://www.roeck-us.net/linux/drivers/
15140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15141 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15142 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15143 F:      Documentation/hwmon/adm1275.rst
15144 F:      Documentation/hwmon/ibm-cffps.rst
15145 F:      Documentation/hwmon/ir35221.rst
15146 F:      Documentation/hwmon/lm25066.rst
15147 F:      Documentation/hwmon/ltc2978.rst
15148 F:      Documentation/hwmon/ltc3815.rst
15149 F:      Documentation/hwmon/max16064.rst
15150 F:      Documentation/hwmon/max20751.rst
15151 F:      Documentation/hwmon/max31785.rst
15152 F:      Documentation/hwmon/max34440.rst
15153 F:      Documentation/hwmon/max8688.rst
15154 F:      Documentation/hwmon/pmbus-core.rst
15155 F:      Documentation/hwmon/pmbus.rst
15156 F:      Documentation/hwmon/tps40422.rst
15157 F:      Documentation/hwmon/ucd9000.rst
15158 F:      Documentation/hwmon/ucd9200.rst
15159 F:      Documentation/hwmon/zl6100.rst
15160 F:      drivers/hwmon/pmbus/
15161 F:      include/linux/pmbus.h
15162
15163 PMC SIERRA MaxRAID DRIVER
15164 L:      linux-scsi@vger.kernel.org
15165 S:      Orphan
15166 W:      http://www.pmc-sierra.com/
15167 F:      drivers/scsi/pmcraid.*
15168
15169 PMC SIERRA PM8001 DRIVER
15170 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15171 L:      linux-scsi@vger.kernel.org
15172 S:      Supported
15173 F:      drivers/scsi/pm8001/
15174
15175 PNI RM3100 IIO DRIVER
15176 M:      Song Qiang <songqiang1304521@gmail.com>
15177 L:      linux-iio@vger.kernel.org
15178 S:      Maintained
15179 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15180 F:      drivers/iio/magnetometer/rm3100*
15181
15182 PNP SUPPORT
15183 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15184 L:      linux-acpi@vger.kernel.org
15185 S:      Maintained
15186 F:      drivers/pnp/
15187 F:      include/linux/pnp.h
15188
15189 POSIX CLOCKS and TIMERS
15190 M:      Thomas Gleixner <tglx@linutronix.de>
15191 L:      linux-kernel@vger.kernel.org
15192 S:      Maintained
15193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15194 F:      fs/timerfd.c
15195 F:      include/linux/time_namespace.h
15196 F:      include/linux/timer*
15197 F:      kernel/time/*timer*
15198 F:      kernel/time/namespace.c
15199
15200 POWER MANAGEMENT CORE
15201 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15202 L:      linux-pm@vger.kernel.org
15203 S:      Supported
15204 B:      https://bugzilla.kernel.org
15205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15206 F:      drivers/base/power/
15207 F:      drivers/powercap/
15208 F:      include/linux/intel_rapl.h
15209 F:      include/linux/pm.h
15210 F:      include/linux/pm_*
15211 F:      include/linux/powercap.h
15212 F:      kernel/configs/nopm.config
15213
15214 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15215 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15216 L:      linux-pm@vger.kernel.org
15217 S:      Supported
15218 B:      https://bugzilla.kernel.org
15219 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15220 F:      drivers/powercap/dtpm*
15221 F:      include/linux/dtpm.h
15222
15223 POWER STATE COORDINATION INTERFACE (PSCI)
15224 M:      Mark Rutland <mark.rutland@arm.com>
15225 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15227 S:      Maintained
15228 F:      drivers/firmware/psci/
15229 F:      include/linux/psci.h
15230 F:      include/uapi/linux/psci.h
15231
15232 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15233 M:      Sebastian Reichel <sre@kernel.org>
15234 L:      linux-pm@vger.kernel.org
15235 S:      Maintained
15236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15237 F:      Documentation/ABI/testing/sysfs-class-power
15238 F:      Documentation/devicetree/bindings/power/supply/
15239 F:      drivers/power/supply/
15240 F:      include/linux/power/
15241 F:      include/linux/power_supply.h
15242
15243 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15244 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15245 L:      linuxppc-dev@lists.ozlabs.org
15246 S:      Maintained
15247 F:      drivers/char/powernv-op-panel.c
15248
15249 PPP OVER ATM (RFC 2364)
15250 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15251 S:      Maintained
15252 F:      include/uapi/linux/atmppp.h
15253 F:      net/atm/pppoatm.c
15254
15255 PPP OVER ETHERNET
15256 M:      Michal Ostrowski <mostrows@earthlink.net>
15257 S:      Maintained
15258 F:      drivers/net/ppp/pppoe.c
15259 F:      drivers/net/ppp/pppox.c
15260
15261 PPP OVER L2TP
15262 M:      James Chapman <jchapman@katalix.com>
15263 S:      Maintained
15264 F:      include/linux/if_pppol2tp.h
15265 F:      include/uapi/linux/if_pppol2tp.h
15266 F:      net/l2tp/l2tp_ppp.c
15267
15268 PPP PROTOCOL DRIVERS AND COMPRESSORS
15269 M:      Paul Mackerras <paulus@samba.org>
15270 L:      linux-ppp@vger.kernel.org
15271 S:      Maintained
15272 F:      drivers/net/ppp/ppp_*
15273
15274 PPS SUPPORT
15275 M:      Rodolfo Giometti <giometti@enneenne.com>
15276 L:      linuxpps@ml.enneenne.com (subscribers-only)
15277 S:      Maintained
15278 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15279 F:      Documentation/ABI/testing/sysfs-pps
15280 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15281 F:      Documentation/driver-api/pps.rst
15282 F:      drivers/pps/
15283 F:      include/linux/pps*.h
15284 F:      include/uapi/linux/pps.h
15285
15286 PPTP DRIVER
15287 M:      Dmitry Kozlov <xeb@mail.ru>
15288 L:      netdev@vger.kernel.org
15289 S:      Maintained
15290 W:      http://sourceforge.net/projects/accel-pptp
15291 F:      drivers/net/ppp/pptp.c
15292
15293 PRESSURE STALL INFORMATION (PSI)
15294 M:      Johannes Weiner <hannes@cmpxchg.org>
15295 S:      Maintained
15296 F:      include/linux/psi*
15297 F:      kernel/sched/psi.c
15298
15299 PRINTK
15300 M:      Petr Mladek <pmladek@suse.com>
15301 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15302 R:      Steven Rostedt <rostedt@goodmis.org>
15303 R:      John Ogness <john.ogness@linutronix.de>
15304 S:      Maintained
15305 F:      include/linux/printk.h
15306 F:      kernel/printk/
15307
15308 PRINTK INDEXING
15309 R:      Chris Down <chris@chrisdown.name>
15310 S:      Maintained
15311 F:      kernel/printk/index.c
15312
15313 PROC FILESYSTEM
15314 L:      linux-kernel@vger.kernel.org
15315 L:      linux-fsdevel@vger.kernel.org
15316 S:      Maintained
15317 F:      Documentation/filesystems/proc.rst
15318 F:      fs/proc/
15319 F:      include/linux/proc_fs.h
15320 F:      tools/testing/selftests/proc/
15321
15322 PROC SYSCTL
15323 M:      Luis Chamberlain <mcgrof@kernel.org>
15324 M:      Kees Cook <keescook@chromium.org>
15325 M:      Iurii Zaikin <yzaikin@google.com>
15326 L:      linux-kernel@vger.kernel.org
15327 L:      linux-fsdevel@vger.kernel.org
15328 S:      Maintained
15329 F:      fs/proc/proc_sysctl.c
15330 F:      include/linux/sysctl.h
15331 F:      kernel/sysctl-test.c
15332 F:      kernel/sysctl.c
15333 F:      tools/testing/selftests/sysctl/
15334
15335 PS3 NETWORK SUPPORT
15336 M:      Geoff Levand <geoff@infradead.org>
15337 L:      netdev@vger.kernel.org
15338 L:      linuxppc-dev@lists.ozlabs.org
15339 S:      Maintained
15340 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15341
15342 PS3 PLATFORM SUPPORT
15343 M:      Geoff Levand <geoff@infradead.org>
15344 L:      linuxppc-dev@lists.ozlabs.org
15345 S:      Maintained
15346 F:      arch/powerpc/boot/ps3*
15347 F:      arch/powerpc/include/asm/lv1call.h
15348 F:      arch/powerpc/include/asm/ps3*.h
15349 F:      arch/powerpc/platforms/ps3/
15350 F:      drivers/*/ps3*
15351 F:      drivers/ps3/
15352 F:      drivers/rtc/rtc-ps3.c
15353 F:      drivers/usb/host/*ps3.c
15354 F:      sound/ppc/snd_ps3*
15355
15356 PS3VRAM DRIVER
15357 M:      Jim Paris <jim@jtan.com>
15358 M:      Geoff Levand <geoff@infradead.org>
15359 L:      linuxppc-dev@lists.ozlabs.org
15360 S:      Maintained
15361 F:      drivers/block/ps3vram.c
15362
15363 PSAMPLE PACKET SAMPLING SUPPORT
15364 M:      Yotam Gigi <yotam.gi@gmail.com>
15365 S:      Maintained
15366 F:      include/net/psample.h
15367 F:      include/uapi/linux/psample.h
15368 F:      net/psample
15369
15370 PSTORE FILESYSTEM
15371 M:      Kees Cook <keescook@chromium.org>
15372 M:      Anton Vorontsov <anton@enomsg.org>
15373 M:      Colin Cross <ccross@android.com>
15374 M:      Tony Luck <tony.luck@intel.com>
15375 S:      Maintained
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15377 F:      Documentation/admin-guide/ramoops.rst
15378 F:      Documentation/admin-guide/pstore-blk.rst
15379 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15380 F:      drivers/acpi/apei/erst.c
15381 F:      drivers/firmware/efi/efi-pstore.c
15382 F:      fs/pstore/
15383 F:      include/linux/pstore*
15384 K:      \b(pstore|ramoops)
15385
15386 PTP HARDWARE CLOCK SUPPORT
15387 M:      Richard Cochran <richardcochran@gmail.com>
15388 L:      netdev@vger.kernel.org
15389 S:      Maintained
15390 W:      http://linuxptp.sourceforge.net/
15391 F:      Documentation/ABI/testing/sysfs-ptp
15392 F:      Documentation/driver-api/ptp.rst
15393 F:      drivers/net/phy/dp83640*
15394 F:      drivers/ptp/*
15395 F:      include/linux/ptp_cl*
15396
15397 PTP VIRTUAL CLOCK SUPPORT
15398 M:      Yangbo Lu <yangbo.lu@nxp.com>
15399 L:      netdev@vger.kernel.org
15400 S:      Maintained
15401 F:      drivers/ptp/ptp_vclock.c
15402 F:      net/ethtool/phc_vclocks.c
15403
15404 PTRACE SUPPORT
15405 M:      Oleg Nesterov <oleg@redhat.com>
15406 S:      Maintained
15407 F:      arch/*/*/ptrace*.c
15408 F:      arch/*/include/asm/ptrace*.h
15409 F:      arch/*/ptrace*.c
15410 F:      include/asm-generic/syscall.h
15411 F:      include/linux/ptrace.h
15412 F:      include/linux/regset.h
15413 F:      include/linux/tracehook.h
15414 F:      include/uapi/linux/ptrace.h
15415 F:      include/uapi/linux/ptrace.h
15416 F:      kernel/ptrace.c
15417
15418 PULSE8-CEC DRIVER
15419 M:      Hans Verkuil <hverkuil@xs4all.nl>
15420 L:      linux-media@vger.kernel.org
15421 S:      Maintained
15422 T:      git git://linuxtv.org/media_tree.git
15423 F:      Documentation/admin-guide/media/pulse8-cec.rst
15424 F:      drivers/media/cec/usb/pulse8/
15425
15426 PVRUSB2 VIDEO4LINUX DRIVER
15427 M:      Mike Isely <isely@pobox.com>
15428 L:      pvrusb2@isely.net       (subscribers-only)
15429 L:      linux-media@vger.kernel.org
15430 S:      Maintained
15431 W:      http://www.isely.net/pvrusb2/
15432 T:      git git://linuxtv.org/media_tree.git
15433 F:      Documentation/driver-api/media/drivers/pvrusb2*
15434 F:      drivers/media/usb/pvrusb2/
15435
15436 PWC WEBCAM DRIVER
15437 M:      Hans Verkuil <hverkuil@xs4all.nl>
15438 L:      linux-media@vger.kernel.org
15439 S:      Odd Fixes
15440 T:      git git://linuxtv.org/media_tree.git
15441 F:      drivers/media/usb/pwc/*
15442 F:      include/trace/events/pwc.h
15443
15444 PWM FAN DRIVER
15445 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15446 L:      linux-hwmon@vger.kernel.org
15447 S:      Supported
15448 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15449 F:      Documentation/hwmon/pwm-fan.rst
15450 F:      drivers/hwmon/pwm-fan.c
15451
15452 PWM IR Transmitter
15453 M:      Sean Young <sean@mess.org>
15454 L:      linux-media@vger.kernel.org
15455 S:      Maintained
15456 F:      drivers/media/rc/pwm-ir-tx.c
15457
15458 PWM SUBSYSTEM
15459 M:      Thierry Reding <thierry.reding@gmail.com>
15460 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15461 M:      Lee Jones <lee.jones@linaro.org>
15462 L:      linux-pwm@vger.kernel.org
15463 S:      Maintained
15464 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15466 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15467 F:      Documentation/devicetree/bindings/pwm/
15468 F:      Documentation/driver-api/pwm.rst
15469 F:      drivers/gpio/gpio-mvebu.c
15470 F:      drivers/pwm/
15471 F:      drivers/video/backlight/pwm_bl.c
15472 F:      include/linux/pwm.h
15473 F:      include/linux/pwm_backlight.h
15474 K:      pwm_(config|apply_state|ops)
15475
15476 PXA GPIO DRIVER
15477 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15478 L:      linux-gpio@vger.kernel.org
15479 S:      Maintained
15480 F:      drivers/gpio/gpio-pxa.c
15481
15482 PXA MMCI DRIVER
15483 S:      Orphan
15484
15485 PXA RTC DRIVER
15486 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15487 L:      linux-rtc@vger.kernel.org
15488 S:      Maintained
15489
15490 PXA2xx/PXA3xx SUPPORT
15491 M:      Daniel Mack <daniel@zonque.org>
15492 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15493 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15495 S:      Maintained
15496 T:      git git://github.com/hzhuang1/linux.git
15497 T:      git git://github.com/rjarzmik/linux.git
15498 F:      arch/arm/boot/dts/pxa*
15499 F:      arch/arm/mach-pxa/
15500 F:      drivers/dma/pxa*
15501 F:      drivers/pcmcia/pxa2xx*
15502 F:      drivers/pinctrl/pxa/
15503 F:      drivers/spi/spi-pxa2xx*
15504 F:      drivers/usb/gadget/udc/pxa2*
15505 F:      include/sound/pxa2xx-lib.h
15506 F:      sound/arm/pxa*
15507 F:      sound/soc/pxa/
15508
15509 QAT DRIVER
15510 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15511 L:      qat-linux@intel.com
15512 S:      Supported
15513 F:      drivers/crypto/qat/
15514
15515 QCOM AUDIO (ASoC) DRIVERS
15516 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15517 M:      Banajit Goswami <bgoswami@codeaurora.org>
15518 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15519 S:      Supported
15520 F:      sound/soc/codecs/lpass-va-macro.c
15521 F:      sound/soc/codecs/lpass-wsa-macro.*
15522 F:      sound/soc/codecs/msm8916-wcd-analog.c
15523 F:      sound/soc/codecs/msm8916-wcd-digital.c
15524 F:      sound/soc/codecs/wcd9335.*
15525 F:      sound/soc/codecs/wcd934x.c
15526 F:      sound/soc/codecs/wcd-clsh-v2.*
15527 F:      sound/soc/codecs/wsa881x.c
15528 F:      sound/soc/qcom/
15529
15530 QCOM IPA DRIVER
15531 M:      Alex Elder <elder@kernel.org>
15532 L:      netdev@vger.kernel.org
15533 S:      Supported
15534 F:      drivers/net/ipa/
15535
15536 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15537 M:      Gabriel Somlo <somlo@cmu.edu>
15538 M:      "Michael S. Tsirkin" <mst@redhat.com>
15539 L:      qemu-devel@nongnu.org
15540 S:      Maintained
15541 F:      drivers/firmware/qemu_fw_cfg.c
15542 F:      include/uapi/linux/qemu_fw_cfg.h
15543
15544 QIB DRIVER
15545 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15546 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15547 L:      linux-rdma@vger.kernel.org
15548 S:      Supported
15549 F:      drivers/infiniband/hw/qib/
15550
15551 QLOGIC QL41xxx FCOE DRIVER
15552 M:      Saurav Kashyap <skashyap@marvell.com>
15553 M:      Javed Hasan <jhasan@marvell.com>
15554 M:      GR-QLogic-Storage-Upstream@marvell.com
15555 L:      linux-scsi@vger.kernel.org
15556 S:      Supported
15557 F:      drivers/scsi/qedf/
15558
15559 QLOGIC QL41xxx ISCSI DRIVER
15560 M:      Nilesh Javali <njavali@marvell.com>
15561 M:      Manish Rangankar <mrangankar@marvell.com>
15562 M:      GR-QLogic-Storage-Upstream@marvell.com
15563 L:      linux-scsi@vger.kernel.org
15564 S:      Supported
15565 F:      drivers/scsi/qedi/
15566
15567 QLOGIC QL4xxx ETHERNET DRIVER
15568 M:      Ariel Elior <aelior@marvell.com>
15569 M:      GR-everest-linux-l2@marvell.com
15570 L:      netdev@vger.kernel.org
15571 S:      Supported
15572 F:      drivers/net/ethernet/qlogic/qed/
15573 F:      drivers/net/ethernet/qlogic/qede/
15574 F:      include/linux/qed/
15575
15576 QLOGIC QL4xxx RDMA DRIVER
15577 M:      Michal Kalderon <mkalderon@marvell.com>
15578 M:      Ariel Elior <aelior@marvell.com>
15579 L:      linux-rdma@vger.kernel.org
15580 S:      Supported
15581 F:      drivers/infiniband/hw/qedr/
15582 F:      include/uapi/rdma/qedr-abi.h
15583
15584 QLOGIC QLA1280 SCSI DRIVER
15585 M:      Michael Reed <mdr@sgi.com>
15586 L:      linux-scsi@vger.kernel.org
15587 S:      Maintained
15588 F:      drivers/scsi/qla1280.[ch]
15589
15590 QLOGIC QLA2XXX FC-SCSI DRIVER
15591 M:      Nilesh Javali <njavali@marvell.com>
15592 M:      GR-QLogic-Storage-Upstream@marvell.com
15593 L:      linux-scsi@vger.kernel.org
15594 S:      Supported
15595 F:      drivers/scsi/qla2xxx/
15596
15597 QLOGIC QLA3XXX NETWORK DRIVER
15598 M:      GR-Linux-NIC-Dev@marvell.com
15599 L:      netdev@vger.kernel.org
15600 S:      Supported
15601 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15602
15603 QLOGIC QLA4XXX iSCSI DRIVER
15604 M:      Nilesh Javali <njavali@marvell.com>
15605 M:      Manish Rangankar <mrangankar@marvell.com>
15606 M:      GR-QLogic-Storage-Upstream@marvell.com
15607 L:      linux-scsi@vger.kernel.org
15608 S:      Supported
15609 F:      drivers/scsi/qla4xxx/
15610
15611 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15612 M:      Shahed Shaikh <shshaikh@marvell.com>
15613 M:      Manish Chopra <manishc@marvell.com>
15614 M:      GR-Linux-NIC-Dev@marvell.com
15615 L:      netdev@vger.kernel.org
15616 S:      Supported
15617 F:      drivers/net/ethernet/qlogic/qlcnic/
15618
15619 QLOGIC QLGE 10Gb ETHERNET DRIVER
15620 M:      Manish Chopra <manishc@marvell.com>
15621 M:      GR-Linux-NIC-Dev@marvell.com
15622 M:      Coiby Xu <coiby.xu@gmail.com>
15623 L:      netdev@vger.kernel.org
15624 S:      Supported
15625 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15626 F:      drivers/staging/qlge/
15627
15628 QM1D1B0004 MEDIA DRIVER
15629 M:      Akihiro Tsukada <tskd08@gmail.com>
15630 L:      linux-media@vger.kernel.org
15631 S:      Odd Fixes
15632 F:      drivers/media/tuners/qm1d1b0004*
15633
15634 QM1D1C0042 MEDIA DRIVER
15635 M:      Akihiro Tsukada <tskd08@gmail.com>
15636 L:      linux-media@vger.kernel.org
15637 S:      Odd Fixes
15638 F:      drivers/media/tuners/qm1d1c0042*
15639
15640 QNX4 FILESYSTEM
15641 M:      Anders Larsen <al@alarsen.net>
15642 S:      Maintained
15643 W:      http://www.alarsen.net/linux/qnx4fs/
15644 F:      fs/qnx4/
15645 F:      include/uapi/linux/qnx4_fs.h
15646 F:      include/uapi/linux/qnxtypes.h
15647
15648 QORIQ DPAA2 FSL-MC BUS DRIVER
15649 M:      Stuart Yoder <stuyoder@gmail.com>
15650 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15651 L:      linux-kernel@vger.kernel.org
15652 S:      Maintained
15653 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15654 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15655 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15656 F:      drivers/bus/fsl-mc/
15657 F:      include/uapi/linux/fsl_mc.h
15658
15659 QT1010 MEDIA DRIVER
15660 M:      Antti Palosaari <crope@iki.fi>
15661 L:      linux-media@vger.kernel.org
15662 S:      Maintained
15663 W:      https://linuxtv.org
15664 W:      http://palosaari.fi/linux/
15665 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15666 T:      git git://linuxtv.org/anttip/media_tree.git
15667 F:      drivers/media/tuners/qt1010*
15668
15669 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15670 M:      Kalle Valo <kvalo@codeaurora.org>
15671 L:      ath10k@lists.infradead.org
15672 S:      Supported
15673 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15675 F:      drivers/net/wireless/ath/ath10k/
15676
15677 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15678 M:      Kalle Valo <kvalo@codeaurora.org>
15679 L:      ath11k@lists.infradead.org
15680 S:      Supported
15681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15682 F:      drivers/net/wireless/ath/ath11k/
15683
15684 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15685 M:      ath9k-devel@qca.qualcomm.com
15686 L:      linux-wireless@vger.kernel.org
15687 S:      Supported
15688 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15689 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15690 F:      drivers/net/wireless/ath/ath9k/
15691
15692 QUALCOMM CAMERA SUBSYSTEM DRIVER
15693 M:      Robert Foss <robert.foss@linaro.org>
15694 M:      Todor Tomov <todor.too@gmail.com>
15695 L:      linux-media@vger.kernel.org
15696 S:      Maintained
15697 F:      Documentation/admin-guide/media/qcom_camss.rst
15698 F:      Documentation/devicetree/bindings/media/*camss*
15699 F:      drivers/media/platform/qcom/camss/
15700
15701 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15702 M:      Niklas Cassel <nks@flawful.org>
15703 L:      linux-pm@vger.kernel.org
15704 L:      linux-arm-msm@vger.kernel.org
15705 S:      Maintained
15706 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15707 F:      drivers/soc/qcom/cpr.c
15708
15709 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15710 M:      Ilia Lin <ilia.lin@kernel.org>
15711 L:      linux-pm@vger.kernel.org
15712 S:      Maintained
15713 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15714 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15715
15716 QUALCOMM CRYPTO DRIVERS
15717 M:      Thara Gopinath <thara.gopinath@linaro.org>
15718 L:      linux-crypto@vger.kernel.org
15719 L:      linux-arm-msm@vger.kernel.org
15720 S:      Maintained
15721 F:      drivers/crypto/qce/
15722
15723 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15724 M:      Timur Tabi <timur@kernel.org>
15725 L:      netdev@vger.kernel.org
15726 S:      Maintained
15727 F:      drivers/net/ethernet/qualcomm/emac/
15728
15729 QUALCOMM ETHQOS ETHERNET DRIVER
15730 M:      Vinod Koul <vkoul@kernel.org>
15731 L:      netdev@vger.kernel.org
15732 S:      Maintained
15733 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15734 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15735
15736 QUALCOMM GENERIC INTERFACE I2C DRIVER
15737 M:      Akash Asthana <akashast@codeaurora.org>
15738 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15739 L:      linux-i2c@vger.kernel.org
15740 L:      linux-arm-msm@vger.kernel.org
15741 S:      Supported
15742 F:      drivers/i2c/busses/i2c-qcom-geni.c
15743
15744 QUALCOMM HEXAGON ARCHITECTURE
15745 M:      Brian Cain <bcain@codeaurora.org>
15746 L:      linux-hexagon@vger.kernel.org
15747 S:      Supported
15748 F:      arch/hexagon/
15749
15750 QUALCOMM HIDMA DRIVER
15751 M:      Sinan Kaya <okaya@kernel.org>
15752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15753 L:      linux-arm-msm@vger.kernel.org
15754 L:      dmaengine@vger.kernel.org
15755 S:      Supported
15756 F:      drivers/dma/qcom/hidma*
15757
15758 QUALCOMM I2C CCI DRIVER
15759 M:      Loic Poulain <loic.poulain@linaro.org>
15760 M:      Robert Foss <robert.foss@linaro.org>
15761 L:      linux-i2c@vger.kernel.org
15762 L:      linux-arm-msm@vger.kernel.org
15763 S:      Maintained
15764 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15765 F:      drivers/i2c/busses/i2c-qcom-cci.c
15766
15767 QUALCOMM IOMMU
15768 M:      Rob Clark <robdclark@gmail.com>
15769 L:      iommu@lists.linux-foundation.org
15770 L:      linux-arm-msm@vger.kernel.org
15771 S:      Maintained
15772 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15773
15774 QUALCOMM IPC ROUTER (QRTR) DRIVER
15775 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15776 L:      linux-arm-msm@vger.kernel.org
15777 S:      Maintained
15778 F:      include/trace/events/qrtr.h
15779 F:      include/uapi/linux/qrtr.h
15780 F:      net/qrtr/
15781
15782 QUALCOMM IPCC MAILBOX DRIVER
15783 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15784 L:      linux-arm-msm@vger.kernel.org
15785 S:      Supported
15786 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15787 F:      drivers/mailbox/qcom-ipcc.c
15788 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15789
15790 QUALCOMM IPQ4019 USB PHY DRIVER
15791 M:      Robert Marko <robert.marko@sartura.hr>
15792 M:      Luka Perkov <luka.perkov@sartura.hr>
15793 L:      linux-arm-msm@vger.kernel.org
15794 S:      Maintained
15795 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15796 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15797
15798 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15799 M:      Robert Marko <robert.marko@sartura.hr>
15800 M:      Luka Perkov <luka.perkov@sartura.hr>
15801 L:      linux-arm-msm@vger.kernel.org
15802 S:      Maintained
15803 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15804 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15805
15806 QUALCOMM NAND CONTROLLER DRIVER
15807 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15808 L:      linux-mtd@lists.infradead.org
15809 L:      linux-arm-msm@vger.kernel.org
15810 S:      Maintained
15811 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
15812 F:      drivers/mtd/nand/raw/qcom_nandc.c
15813
15814 QUALCOMM RMNET DRIVER
15815 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15816 M:      Sean Tranchetti <stranche@codeaurora.org>
15817 L:      netdev@vger.kernel.org
15818 S:      Maintained
15819 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15820 F:      drivers/net/ethernet/qualcomm/rmnet/
15821 F:      include/linux/if_rmnet.h
15822
15823 QUALCOMM TSENS THERMAL DRIVER
15824 M:      Amit Kucheria <amitk@kernel.org>
15825 M:      Thara Gopinath <thara.gopinath@linaro.org>
15826 L:      linux-pm@vger.kernel.org
15827 L:      linux-arm-msm@vger.kernel.org
15828 S:      Maintained
15829 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15830 F:      drivers/thermal/qcom/
15831
15832 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15833 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15834 L:      linux-media@vger.kernel.org
15835 L:      linux-arm-msm@vger.kernel.org
15836 S:      Maintained
15837 T:      git git://linuxtv.org/media_tree.git
15838 F:      Documentation/devicetree/bindings/media/*venus*
15839 F:      drivers/media/platform/qcom/venus/
15840
15841 QUALCOMM WCN36XX WIRELESS DRIVER
15842 M:      Kalle Valo <kvalo@codeaurora.org>
15843 L:      wcn36xx@lists.infradead.org
15844 S:      Supported
15845 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15846 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15847 F:      drivers/net/wireless/ath/wcn36xx/
15848
15849 QUANTENNA QTNFMAC WIRELESS DRIVER
15850 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15851 R:      Sergey Matyukevich <geomatsi@gmail.com>
15852 L:      linux-wireless@vger.kernel.org
15853 S:      Maintained
15854 F:      drivers/net/wireless/quantenna
15855
15856 RADEON and AMDGPU DRM DRIVERS
15857 M:      Alex Deucher <alexander.deucher@amd.com>
15858 M:      Christian König <christian.koenig@amd.com>
15859 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15860 L:      amd-gfx@lists.freedesktop.org
15861 S:      Supported
15862 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15863 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15864 C:      irc://irc.oftc.net/radeon
15865 F:      drivers/gpu/drm/amd/
15866 F:      drivers/gpu/drm/radeon/
15867 F:      include/uapi/drm/amdgpu_drm.h
15868 F:      include/uapi/drm/radeon_drm.h
15869
15870 RADEON FRAMEBUFFER DISPLAY DRIVER
15871 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15872 L:      linux-fbdev@vger.kernel.org
15873 S:      Maintained
15874 F:      drivers/video/fbdev/aty/radeon*
15875 F:      include/uapi/linux/radeonfb.h
15876
15877 RADIOSHARK RADIO DRIVER
15878 M:      Hans Verkuil <hverkuil@xs4all.nl>
15879 L:      linux-media@vger.kernel.org
15880 S:      Maintained
15881 T:      git git://linuxtv.org/media_tree.git
15882 F:      drivers/media/radio/radio-shark.c
15883
15884 RADIOSHARK2 RADIO DRIVER
15885 M:      Hans Verkuil <hverkuil@xs4all.nl>
15886 L:      linux-media@vger.kernel.org
15887 S:      Maintained
15888 T:      git git://linuxtv.org/media_tree.git
15889 F:      drivers/media/radio/radio-shark2.c
15890 F:      drivers/media/radio/radio-tea5777.c
15891
15892 RADOS BLOCK DEVICE (RBD)
15893 M:      Ilya Dryomov <idryomov@gmail.com>
15894 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15895 L:      ceph-devel@vger.kernel.org
15896 S:      Supported
15897 W:      http://ceph.com/
15898 T:      git git://github.com/ceph/ceph-client.git
15899 F:      Documentation/ABI/testing/sysfs-bus-rbd
15900 F:      drivers/block/rbd.c
15901 F:      drivers/block/rbd_types.h
15902
15903 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15904 M:      Paul Mackerras <paulus@samba.org>
15905 L:      linux-fbdev@vger.kernel.org
15906 S:      Maintained
15907 F:      drivers/video/fbdev/aty/aty128fb.c
15908
15909 RAINSHADOW-CEC DRIVER
15910 M:      Hans Verkuil <hverkuil@xs4all.nl>
15911 L:      linux-media@vger.kernel.org
15912 S:      Maintained
15913 T:      git git://linuxtv.org/media_tree.git
15914 F:      drivers/media/cec/usb/rainshadow/
15915
15916 RALINK MIPS ARCHITECTURE
15917 M:      John Crispin <john@phrozen.org>
15918 L:      linux-mips@vger.kernel.org
15919 S:      Maintained
15920 F:      arch/mips/ralink
15921
15922 RALINK RT2X00 WIRELESS LAN DRIVER
15923 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15924 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15925 L:      linux-wireless@vger.kernel.org
15926 S:      Maintained
15927 F:      drivers/net/wireless/ralink/rt2x00/
15928
15929 RAMDISK RAM BLOCK DEVICE DRIVER
15930 M:      Jens Axboe <axboe@kernel.dk>
15931 S:      Maintained
15932 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15933 F:      drivers/block/brd.c
15934
15935 RANCHU VIRTUAL BOARD FOR MIPS
15936 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15937 L:      linux-mips@vger.kernel.org
15938 S:      Supported
15939 F:      arch/mips/configs/generic/board-ranchu.config
15940 F:      arch/mips/generic/board-ranchu.c
15941
15942 RANDOM NUMBER DRIVER
15943 M:      "Theodore Ts'o" <tytso@mit.edu>
15944 S:      Maintained
15945 F:      drivers/char/random.c
15946
15947 RAPIDIO SUBSYSTEM
15948 M:      Matt Porter <mporter@kernel.crashing.org>
15949 M:      Alexandre Bounine <alex.bou9@gmail.com>
15950 S:      Maintained
15951 F:      drivers/rapidio/
15952
15953 RAS INFRASTRUCTURE
15954 M:      Tony Luck <tony.luck@intel.com>
15955 M:      Borislav Petkov <bp@alien8.de>
15956 L:      linux-edac@vger.kernel.org
15957 S:      Maintained
15958 F:      Documentation/admin-guide/ras.rst
15959 F:      drivers/ras/
15960 F:      include/linux/ras.h
15961 F:      include/ras/ras_event.h
15962
15963 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15964 L:      linux-wireless@vger.kernel.org
15965 S:      Orphan
15966 F:      drivers/net/wireless/ray*
15967
15968 RC-CORE / LIRC FRAMEWORK
15969 M:      Sean Young <sean@mess.org>
15970 L:      linux-media@vger.kernel.org
15971 S:      Maintained
15972 W:      http://linuxtv.org
15973 T:      git git://linuxtv.org/media_tree.git
15974 F:      Documentation/driver-api/media/rc-core.rst
15975 F:      Documentation/userspace-api/media/rc/
15976 F:      drivers/media/rc/
15977 F:      include/media/rc-map.h
15978 F:      include/media/rc-core.h
15979 F:      include/uapi/linux/lirc.h
15980
15981 RCMM REMOTE CONTROLS DECODER
15982 M:      Patrick Lerda <patrick9876@free.fr>
15983 S:      Maintained
15984 F:      drivers/media/rc/ir-rcmm-decoder.c
15985
15986 RCUTORTURE TEST FRAMEWORK
15987 M:      "Paul E. McKenney" <paulmck@kernel.org>
15988 M:      Josh Triplett <josh@joshtriplett.org>
15989 R:      Steven Rostedt <rostedt@goodmis.org>
15990 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15991 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15992 L:      rcu@vger.kernel.org
15993 S:      Supported
15994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15995 F:      tools/testing/selftests/rcutorture
15996
15997 RDACM20 Camera Sensor
15998 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15999 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16000 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16001 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16002 L:      linux-media@vger.kernel.org
16003 S:      Maintained
16004 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16005 F:      drivers/media/i2c/max9271.c
16006 F:      drivers/media/i2c/max9271.h
16007 F:      drivers/media/i2c/rdacm20.c
16008
16009 RDACM21 Camera Sensor
16010 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16011 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16012 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16013 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16014 L:      linux-media@vger.kernel.org
16015 S:      Maintained
16016 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16017 F:      drivers/media/i2c/max9271.c
16018 F:      drivers/media/i2c/max9271.h
16019 F:      drivers/media/i2c/rdacm21.c
16020
16021 RDC R-321X SoC
16022 M:      Florian Fainelli <florian@openwrt.org>
16023 S:      Maintained
16024
16025 RDC R6040 FAST ETHERNET DRIVER
16026 M:      Florian Fainelli <f.fainelli@gmail.com>
16027 L:      netdev@vger.kernel.org
16028 S:      Maintained
16029 F:      drivers/net/ethernet/rdc/r6040.c
16030
16031 RDMAVT - RDMA verbs software
16032 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16033 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16034 L:      linux-rdma@vger.kernel.org
16035 S:      Supported
16036 F:      drivers/infiniband/sw/rdmavt
16037
16038 RDS - RELIABLE DATAGRAM SOCKETS
16039 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16040 L:      netdev@vger.kernel.org
16041 L:      linux-rdma@vger.kernel.org
16042 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16043 S:      Supported
16044 W:      https://oss.oracle.com/projects/rds/
16045 F:      Documentation/networking/rds.rst
16046 F:      net/rds/
16047
16048 RDT - RESOURCE ALLOCATION
16049 M:      Fenghua Yu <fenghua.yu@intel.com>
16050 M:      Reinette Chatre <reinette.chatre@intel.com>
16051 L:      linux-kernel@vger.kernel.org
16052 S:      Supported
16053 F:      Documentation/x86/resctrl*
16054 F:      arch/x86/include/asm/resctrl.h
16055 F:      arch/x86/kernel/cpu/resctrl/
16056 F:      tools/testing/selftests/resctrl/
16057
16058 READ-COPY UPDATE (RCU)
16059 M:      "Paul E. McKenney" <paulmck@kernel.org>
16060 M:      Josh Triplett <josh@joshtriplett.org>
16061 R:      Steven Rostedt <rostedt@goodmis.org>
16062 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16063 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16064 R:      Joel Fernandes <joel@joelfernandes.org>
16065 L:      rcu@vger.kernel.org
16066 S:      Supported
16067 W:      http://www.rdrop.com/users/paulmck/RCU/
16068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16069 F:      Documentation/RCU/
16070 F:      include/linux/rcu*
16071 F:      kernel/rcu/
16072 X:      Documentation/RCU/torture.rst
16073 X:      include/linux/srcu*.h
16074 X:      kernel/rcu/srcu*.c
16075
16076 REAL TIME CLOCK (RTC) SUBSYSTEM
16077 M:      Alessandro Zummo <a.zummo@towertech.it>
16078 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16079 L:      linux-rtc@vger.kernel.org
16080 S:      Maintained
16081 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16083 F:      Documentation/admin-guide/rtc.rst
16084 F:      Documentation/devicetree/bindings/rtc/
16085 F:      drivers/rtc/
16086 F:      include/linux/platform_data/rtc-*
16087 F:      include/linux/rtc.h
16088 F:      include/linux/rtc/
16089 F:      include/uapi/linux/rtc.h
16090 F:      tools/testing/selftests/rtc/
16091
16092 REALTEK AUDIO CODECS
16093 M:      Oder Chiou <oder_chiou@realtek.com>
16094 S:      Maintained
16095 F:      include/sound/rt*.h
16096 F:      sound/soc/codecs/rt*
16097
16098 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16099 M:      Linus Walleij <linus.walleij@linaro.org>
16100 S:      Maintained
16101 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16102 F:      drivers/net/dsa/realtek-smi*
16103 F:      drivers/net/dsa/rtl83*
16104
16105 REALTEK WIRELESS DRIVER (rtlwifi family)
16106 M:      Ping-Ke Shih <pkshih@realtek.com>
16107 L:      linux-wireless@vger.kernel.org
16108 S:      Maintained
16109 W:      https://wireless.wiki.kernel.org/
16110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16111 F:      drivers/net/wireless/realtek/rtlwifi/
16112
16113 REALTEK WIRELESS DRIVER (rtw88)
16114 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16115 L:      linux-wireless@vger.kernel.org
16116 S:      Maintained
16117 F:      drivers/net/wireless/realtek/rtw88/
16118
16119 REALTEK WIRELESS DRIVER (rtw89)
16120 M:      Ping-Ke Shih <pkshih@realtek.com>
16121 L:      linux-wireless@vger.kernel.org
16122 S:      Maintained
16123 F:      drivers/net/wireless/realtek/rtw89/
16124
16125 REDPINE WIRELESS DRIVER
16126 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16127 M:      Siva Rebbagondla <siva8118@gmail.com>
16128 L:      linux-wireless@vger.kernel.org
16129 S:      Maintained
16130 F:      drivers/net/wireless/rsi/
16131
16132 REGISTER MAP ABSTRACTION
16133 M:      Mark Brown <broonie@kernel.org>
16134 L:      linux-kernel@vger.kernel.org
16135 S:      Supported
16136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16137 F:      Documentation/devicetree/bindings/regmap/
16138 F:      drivers/base/regmap/
16139 F:      include/linux/regmap.h
16140
16141 REISERFS FILE SYSTEM
16142 L:      reiserfs-devel@vger.kernel.org
16143 S:      Supported
16144 F:      fs/reiserfs/
16145
16146 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16147 M:      Ohad Ben-Cohen <ohad@wizery.com>
16148 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16149 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16150 L:      linux-remoteproc@vger.kernel.org
16151 S:      Maintained
16152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16153 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16154 F:      Documentation/devicetree/bindings/remoteproc/
16155 F:      Documentation/staging/remoteproc.rst
16156 F:      drivers/remoteproc/
16157 F:      include/linux/remoteproc.h
16158 F:      include/linux/remoteproc/
16159
16160 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16161 M:      Ohad Ben-Cohen <ohad@wizery.com>
16162 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16163 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16164 L:      linux-remoteproc@vger.kernel.org
16165 S:      Maintained
16166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16167 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16168 F:      Documentation/staging/rpmsg.rst
16169 F:      drivers/rpmsg/
16170 F:      include/linux/rpmsg.h
16171 F:      include/linux/rpmsg/
16172 F:      include/uapi/linux/rpmsg.h
16173 F:      samples/rpmsg/
16174
16175 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16176 M:      Stephan Gerhold <stephan@gerhold.net>
16177 L:      netdev@vger.kernel.org
16178 L:      linux-remoteproc@vger.kernel.org
16179 S:      Maintained
16180 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16181
16182 RENESAS CLOCK DRIVERS
16183 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16184 L:      linux-renesas-soc@vger.kernel.org
16185 S:      Supported
16186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16187 F:      Documentation/devicetree/bindings/clock/renesas,*
16188 F:      drivers/clk/renesas/
16189
16190 RENESAS EMEV2 I2C DRIVER
16191 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16192 L:      linux-renesas-soc@vger.kernel.org
16193 S:      Supported
16194 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16195 F:      drivers/i2c/busses/i2c-emev2.c
16196
16197 RENESAS ETHERNET DRIVERS
16198 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16199 L:      netdev@vger.kernel.org
16200 L:      linux-renesas-soc@vger.kernel.org
16201 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16202 F:      drivers/net/ethernet/renesas/
16203 F:      include/linux/sh_eth.h
16204
16205 RENESAS R-CAR GYROADC DRIVER
16206 M:      Marek Vasut <marek.vasut@gmail.com>
16207 L:      linux-iio@vger.kernel.org
16208 S:      Supported
16209 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16210 F:      drivers/iio/adc/rcar-gyroadc.c
16211
16212 RENESAS R-CAR I2C DRIVERS
16213 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16214 L:      linux-renesas-soc@vger.kernel.org
16215 S:      Supported
16216 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16217 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16218 F:      drivers/i2c/busses/i2c-rcar.c
16219 F:      drivers/i2c/busses/i2c-sh_mobile.c
16220
16221 RENESAS R-CAR THERMAL DRIVERS
16222 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16223 L:      linux-renesas-soc@vger.kernel.org
16224 S:      Supported
16225 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16226 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16227 F:      drivers/thermal/rcar_gen3_thermal.c
16228 F:      drivers/thermal/rcar_thermal.c
16229
16230 RENESAS RIIC DRIVER
16231 M:      Chris Brandt <chris.brandt@renesas.com>
16232 L:      linux-renesas-soc@vger.kernel.org
16233 S:      Supported
16234 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16235 F:      drivers/i2c/busses/i2c-riic.c
16236
16237 RENESAS USB PHY DRIVER
16238 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16239 L:      linux-renesas-soc@vger.kernel.org
16240 S:      Maintained
16241 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16242
16243 RENESAS RZ/G2L A/D DRIVER
16244 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16245 L:      linux-iio@vger.kernel.org
16246 L:      linux-renesas-soc@vger.kernel.org
16247 S:      Supported
16248 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16249 F:      drivers/iio/adc/rzg2l_adc.c
16250
16251 RESET CONTROLLER FRAMEWORK
16252 M:      Philipp Zabel <p.zabel@pengutronix.de>
16253 S:      Maintained
16254 T:      git git://git.pengutronix.de/git/pza/linux
16255 F:      Documentation/devicetree/bindings/reset/
16256 F:      Documentation/driver-api/reset.rst
16257 F:      drivers/reset/
16258 F:      include/dt-bindings/reset/
16259 F:      include/linux/reset-controller.h
16260 F:      include/linux/reset.h
16261 F:      include/linux/reset/
16262 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16263
16264 RESTARTABLE SEQUENCES SUPPORT
16265 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16266 M:      Peter Zijlstra <peterz@infradead.org>
16267 M:      "Paul E. McKenney" <paulmck@kernel.org>
16268 M:      Boqun Feng <boqun.feng@gmail.com>
16269 L:      linux-kernel@vger.kernel.org
16270 S:      Supported
16271 F:      include/trace/events/rseq.h
16272 F:      include/uapi/linux/rseq.h
16273 F:      kernel/rseq.c
16274 F:      tools/testing/selftests/rseq/
16275
16276 RFKILL
16277 M:      Johannes Berg <johannes@sipsolutions.net>
16278 L:      linux-wireless@vger.kernel.org
16279 S:      Maintained
16280 W:      https://wireless.wiki.kernel.org/
16281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16283 F:      Documentation/ABI/stable/sysfs-class-rfkill
16284 F:      Documentation/driver-api/rfkill.rst
16285 F:      include/linux/rfkill.h
16286 F:      include/uapi/linux/rfkill.h
16287 F:      net/rfkill/
16288
16289 RHASHTABLE
16290 M:      Thomas Graf <tgraf@suug.ch>
16291 M:      Herbert Xu <herbert@gondor.apana.org.au>
16292 L:      netdev@vger.kernel.org
16293 S:      Maintained
16294 F:      include/linux/rhashtable-types.h
16295 F:      include/linux/rhashtable.h
16296 F:      lib/rhashtable.c
16297 F:      lib/test_rhashtable.c
16298
16299 RICOH R5C592 MEMORYSTICK DRIVER
16300 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16301 S:      Maintained
16302 F:      drivers/memstick/host/r592.*
16303
16304 RICOH SMARTMEDIA/XD DRIVER
16305 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16306 S:      Maintained
16307 F:      drivers/mtd/nand/raw/r852.c
16308 F:      drivers/mtd/nand/raw/r852.h
16309
16310 RISC-V ARCHITECTURE
16311 M:      Paul Walmsley <paul.walmsley@sifive.com>
16312 M:      Palmer Dabbelt <palmer@dabbelt.com>
16313 M:      Albert Ou <aou@eecs.berkeley.edu>
16314 L:      linux-riscv@lists.infradead.org
16315 S:      Supported
16316 P:      Documentation/riscv/patch-acceptance.rst
16317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16318 F:      arch/riscv/
16319 N:      riscv
16320 K:      riscv
16321
16322 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16323 M:      Lewis Hanly <lewis.hanly@microchip.com>
16324 L:      linux-riscv@lists.infradead.org
16325 S:      Supported
16326 F:      drivers/mailbox/mailbox-mpfs.c
16327 F:      drivers/soc/microchip/
16328 F:      include/soc/microchip/mpfs.h
16329
16330 RNBD BLOCK DRIVERS
16331 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16332 M:      Jack Wang <jinpu.wang@ionos.com>
16333 L:      linux-block@vger.kernel.org
16334 S:      Maintained
16335 F:      drivers/block/rnbd/
16336
16337 ROCCAT DRIVERS
16338 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16339 S:      Maintained
16340 W:      http://sourceforge.net/projects/roccat/
16341 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16342 F:      drivers/hid/hid-roccat*
16343 F:      include/linux/hid-roccat*
16344
16345 ROCKCHIP I2S TDM DRIVER
16346 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16347 L:      linux-rockchip@lists.infradead.org
16348 S:      Maintained
16349 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16350 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16351
16352 ROCKCHIP ISP V1 DRIVER
16353 M:      Helen Koike <helen.koike@collabora.com>
16354 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16355 L:      linux-media@vger.kernel.org
16356 L:      linux-rockchip@lists.infradead.org
16357 S:      Maintained
16358 F:      Documentation/admin-guide/media/rkisp1.rst
16359 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16360 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16361 F:      drivers/media/platform/rockchip/rkisp1
16362 F:      include/uapi/linux/rkisp1-config.h
16363
16364 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16365 M:      Jacob Chen <jacob-chen@iotwrt.com>
16366 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16367 L:      linux-media@vger.kernel.org
16368 L:      linux-rockchip@lists.infradead.org
16369 S:      Maintained
16370 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16371 F:      drivers/media/platform/rockchip/rga/
16372
16373 ROCKCHIP VIDEO DECODER DRIVER
16374 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16375 L:      linux-media@vger.kernel.org
16376 L:      linux-rockchip@lists.infradead.org
16377 S:      Maintained
16378 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16379 F:      drivers/staging/media/rkvdec/
16380
16381 ROCKER DRIVER
16382 M:      Jiri Pirko <jiri@resnulli.us>
16383 L:      netdev@vger.kernel.org
16384 S:      Supported
16385 F:      drivers/net/ethernet/rocker/
16386
16387 ROCKETPORT EXPRESS/INFINITY DRIVER
16388 M:      Kevin Cernekee <cernekee@gmail.com>
16389 L:      linux-serial@vger.kernel.org
16390 S:      Odd Fixes
16391 F:      drivers/tty/serial/rp2.*
16392
16393 ROHM BD99954 CHARGER IC
16394 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16395 L:      linux-power@fi.rohmeurope.com
16396 S:      Supported
16397 F:      drivers/power/supply/bd99954-charger.c
16398 F:      drivers/power/supply/bd99954-charger.h
16399
16400 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16401 M:      Tomasz Duszynski <tduszyns@gmail.com>
16402 S:      Maintained
16403 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16404 F:      drivers/iio/light/bh1750.c
16405
16406 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16407 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16408 L:      linux-kernel@vger.kernel.org
16409 L:      linux-renesas-soc@vger.kernel.org
16410 S:      Supported
16411 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16412 F:      drivers/gpio/gpio-bd9571mwv.c
16413 F:      drivers/mfd/bd9571mwv.c
16414 F:      drivers/regulator/bd9571mwv-regulator.c
16415 F:      include/linux/mfd/bd9571mwv.h
16416
16417 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16418 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16419 L:      linux-power@fi.rohmeurope.com
16420 S:      Supported
16421 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16422 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16423 F:      drivers/clk/clk-bd718x7.c
16424 F:      drivers/gpio/gpio-bd70528.c
16425 F:      drivers/gpio/gpio-bd71815.c
16426 F:      drivers/gpio/gpio-bd71828.c
16427 F:      drivers/mfd/rohm-bd70528.c
16428 F:      drivers/mfd/rohm-bd71828.c
16429 F:      drivers/mfd/rohm-bd718x7.c
16430 F:      drivers/mfd/rohm-bd9576.c
16431 F:      drivers/power/supply/bd70528-charger.c
16432 F:      drivers/regulator/bd70528-regulator.c
16433 F:      drivers/regulator/bd71815-regulator.c
16434 F:      drivers/regulator/bd71828-regulator.c
16435 F:      drivers/regulator/bd718x7-regulator.c
16436 F:      drivers/regulator/bd9576-regulator.c
16437 F:      drivers/regulator/rohm-regulator.c
16438 F:      drivers/rtc/rtc-bd70528.c
16439 F:      drivers/watchdog/bd70528_wdt.c
16440 F:      drivers/watchdog/bd9576_wdt.c
16441 F:      include/linux/mfd/rohm-bd70528.h
16442 F:      include/linux/mfd/rohm-bd71815.h
16443 F:      include/linux/mfd/rohm-bd71828.h
16444 F:      include/linux/mfd/rohm-bd718x7.h
16445 F:      include/linux/mfd/rohm-bd957x.h
16446 F:      include/linux/mfd/rohm-generic.h
16447 F:      include/linux/mfd/rohm-shared.h
16448
16449 ROSE NETWORK LAYER
16450 M:      Ralf Baechle <ralf@linux-mips.org>
16451 L:      linux-hams@vger.kernel.org
16452 S:      Maintained
16453 W:      http://www.linux-ax25.org/
16454 F:      include/net/rose.h
16455 F:      include/uapi/linux/rose.h
16456 F:      net/rose/
16457
16458 ROTATION DRIVER FOR ALLWINNER A83T
16459 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16460 L:      linux-media@vger.kernel.org
16461 S:      Maintained
16462 T:      git git://linuxtv.org/media_tree.git
16463 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16464 F:      drivers/media/platform/sunxi/sun8i-rotate/
16465
16466 RTL2830 MEDIA DRIVER
16467 M:      Antti Palosaari <crope@iki.fi>
16468 L:      linux-media@vger.kernel.org
16469 S:      Maintained
16470 W:      https://linuxtv.org
16471 W:      http://palosaari.fi/linux/
16472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16473 T:      git git://linuxtv.org/anttip/media_tree.git
16474 F:      drivers/media/dvb-frontends/rtl2830*
16475
16476 RTL2832 MEDIA DRIVER
16477 M:      Antti Palosaari <crope@iki.fi>
16478 L:      linux-media@vger.kernel.org
16479 S:      Maintained
16480 W:      https://linuxtv.org
16481 W:      http://palosaari.fi/linux/
16482 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16483 T:      git git://linuxtv.org/anttip/media_tree.git
16484 F:      drivers/media/dvb-frontends/rtl2832*
16485
16486 RTL2832_SDR MEDIA DRIVER
16487 M:      Antti Palosaari <crope@iki.fi>
16488 L:      linux-media@vger.kernel.org
16489 S:      Maintained
16490 W:      https://linuxtv.org
16491 W:      http://palosaari.fi/linux/
16492 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16493 T:      git git://linuxtv.org/anttip/media_tree.git
16494 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16495
16496 RTL8180 WIRELESS DRIVER
16497 L:      linux-wireless@vger.kernel.org
16498 S:      Orphan
16499 W:      https://wireless.wiki.kernel.org/
16500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16501 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16502
16503 RTL8187 WIRELESS DRIVER
16504 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16505 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16506 M:      Larry Finger <Larry.Finger@lwfinger.net>
16507 L:      linux-wireless@vger.kernel.org
16508 S:      Maintained
16509 W:      https://wireless.wiki.kernel.org/
16510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16511 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16512
16513 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16514 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16515 L:      linux-wireless@vger.kernel.org
16516 S:      Maintained
16517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16518 F:      drivers/net/wireless/realtek/rtl8xxxu/
16519
16520 RTRS TRANSPORT DRIVERS
16521 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16522 M:      Jack Wang <jinpu.wang@ionos.com>
16523 L:      linux-rdma@vger.kernel.org
16524 S:      Maintained
16525 F:      drivers/infiniband/ulp/rtrs/
16526
16527 RXRPC SOCKETS (AF_RXRPC)
16528 M:      David Howells <dhowells@redhat.com>
16529 M:      Marc Dionne <marc.dionne@auristor.com>
16530 L:      linux-afs@lists.infradead.org
16531 S:      Supported
16532 W:      https://www.infradead.org/~dhowells/kafs/
16533 F:      Documentation/networking/rxrpc.rst
16534 F:      include/keys/rxrpc-type.h
16535 F:      include/net/af_rxrpc.h
16536 F:      include/trace/events/rxrpc.h
16537 F:      include/uapi/linux/rxrpc.h
16538 F:      net/rxrpc/
16539
16540 S3 SAVAGE FRAMEBUFFER DRIVER
16541 M:      Antonino Daplas <adaplas@gmail.com>
16542 L:      linux-fbdev@vger.kernel.org
16543 S:      Maintained
16544 F:      drivers/video/fbdev/savage/
16545
16546 S390
16547 M:      Heiko Carstens <hca@linux.ibm.com>
16548 M:      Vasily Gorbik <gor@linux.ibm.com>
16549 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16550 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16551 L:      linux-s390@vger.kernel.org
16552 S:      Supported
16553 W:      http://www.ibm.com/developerworks/linux/linux390/
16554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16555 F:      Documentation/driver-api/s390-drivers.rst
16556 F:      Documentation/s390/
16557 F:      arch/s390/
16558 F:      drivers/s390/
16559
16560 S390 COMMON I/O LAYER
16561 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16562 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16563 L:      linux-s390@vger.kernel.org
16564 S:      Supported
16565 W:      http://www.ibm.com/developerworks/linux/linux390/
16566 F:      drivers/s390/cio/
16567
16568 S390 DASD DRIVER
16569 M:      Stefan Haberland <sth@linux.ibm.com>
16570 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16571 L:      linux-s390@vger.kernel.org
16572 S:      Supported
16573 W:      http://www.ibm.com/developerworks/linux/linux390/
16574 F:      block/partitions/ibm.c
16575 F:      drivers/s390/block/dasd*
16576 F:      include/linux/dasd_mod.h
16577
16578 S390 IOMMU (PCI)
16579 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16580 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16581 L:      linux-s390@vger.kernel.org
16582 S:      Supported
16583 W:      http://www.ibm.com/developerworks/linux/linux390/
16584 F:      drivers/iommu/s390-iommu.c
16585
16586 S390 IUCV NETWORK LAYER
16587 M:      Julian Wiedmann <jwi@linux.ibm.com>
16588 M:      Karsten Graul <kgraul@linux.ibm.com>
16589 L:      linux-s390@vger.kernel.org
16590 L:      netdev@vger.kernel.org
16591 S:      Supported
16592 W:      http://www.ibm.com/developerworks/linux/linux390/
16593 F:      drivers/s390/net/*iucv*
16594 F:      include/net/iucv/
16595 F:      net/iucv/
16596
16597 S390 NETWORK DRIVERS
16598 M:      Julian Wiedmann <jwi@linux.ibm.com>
16599 M:      Karsten Graul <kgraul@linux.ibm.com>
16600 L:      linux-s390@vger.kernel.org
16601 L:      netdev@vger.kernel.org
16602 S:      Supported
16603 W:      http://www.ibm.com/developerworks/linux/linux390/
16604 F:      drivers/s390/net/
16605
16606 S390 PCI SUBSYSTEM
16607 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16608 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16609 L:      linux-s390@vger.kernel.org
16610 S:      Supported
16611 W:      http://www.ibm.com/developerworks/linux/linux390/
16612 F:      arch/s390/pci/
16613 F:      drivers/pci/hotplug/s390_pci_hpc.c
16614 F:      Documentation/s390/pci.rst
16615
16616 S390 VFIO AP DRIVER
16617 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16618 M:      Halil Pasic <pasic@linux.ibm.com>
16619 M:      Jason Herne <jjherne@linux.ibm.com>
16620 L:      linux-s390@vger.kernel.org
16621 S:      Supported
16622 W:      http://www.ibm.com/developerworks/linux/linux390/
16623 F:      Documentation/s390/vfio-ap.rst
16624 F:      drivers/s390/crypto/vfio_ap_drv.c
16625 F:      drivers/s390/crypto/vfio_ap_ops.c
16626 F:      drivers/s390/crypto/vfio_ap_private.h
16627
16628 S390 VFIO-CCW DRIVER
16629 M:      Eric Farman <farman@linux.ibm.com>
16630 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16631 R:      Halil Pasic <pasic@linux.ibm.com>
16632 L:      linux-s390@vger.kernel.org
16633 L:      kvm@vger.kernel.org
16634 S:      Supported
16635 F:      Documentation/s390/vfio-ccw.rst
16636 F:      drivers/s390/cio/vfio_ccw*
16637 F:      include/uapi/linux/vfio_ccw.h
16638
16639 S390 VFIO-PCI DRIVER
16640 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16641 M:      Eric Farman <farman@linux.ibm.com>
16642 L:      linux-s390@vger.kernel.org
16643 L:      kvm@vger.kernel.org
16644 S:      Supported
16645 F:      drivers/vfio/pci/vfio_pci_zdev.c
16646 F:      include/uapi/linux/vfio_zdev.h
16647
16648 S390 ZCRYPT DRIVER
16649 M:      Harald Freudenberger <freude@linux.ibm.com>
16650 L:      linux-s390@vger.kernel.org
16651 S:      Supported
16652 W:      http://www.ibm.com/developerworks/linux/linux390/
16653 F:      drivers/s390/crypto/
16654
16655 S390 ZFCP DRIVER
16656 M:      Steffen Maier <maier@linux.ibm.com>
16657 M:      Benjamin Block <bblock@linux.ibm.com>
16658 L:      linux-s390@vger.kernel.org
16659 S:      Supported
16660 W:      http://www.ibm.com/developerworks/linux/linux390/
16661 F:      drivers/s390/scsi/zfcp_*
16662
16663 S3C ADC BATTERY DRIVER
16664 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16665 L:      linux-samsung-soc@vger.kernel.org
16666 S:      Odd Fixes
16667 F:      drivers/power/supply/s3c_adc_battery.c
16668 F:      include/linux/s3c_adc_battery.h
16669
16670 S3C24XX SD/MMC Driver
16671 M:      Ben Dooks <ben-linux@fluff.org>
16672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16673 S:      Supported
16674 F:      drivers/mmc/host/s3cmci.*
16675
16676 SAA6588 RDS RECEIVER DRIVER
16677 M:      Hans Verkuil <hverkuil@xs4all.nl>
16678 L:      linux-media@vger.kernel.org
16679 S:      Odd Fixes
16680 W:      https://linuxtv.org
16681 T:      git git://linuxtv.org/media_tree.git
16682 F:      drivers/media/i2c/saa6588*
16683
16684 SAA7134 VIDEO4LINUX DRIVER
16685 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16686 L:      linux-media@vger.kernel.org
16687 S:      Odd fixes
16688 W:      https://linuxtv.org
16689 T:      git git://linuxtv.org/media_tree.git
16690 F:      Documentation/driver-api/media/drivers/saa7134*
16691 F:      drivers/media/pci/saa7134/
16692
16693 SAA7146 VIDEO4LINUX-2 DRIVER
16694 M:      Hans Verkuil <hverkuil@xs4all.nl>
16695 L:      linux-media@vger.kernel.org
16696 S:      Maintained
16697 T:      git git://linuxtv.org/media_tree.git
16698 F:      drivers/media/common/saa7146/
16699 F:      drivers/media/pci/saa7146/
16700 F:      include/media/drv-intf/saa7146*
16701
16702 SAFESETID SECURITY MODULE
16703 M:      Micah Morton <mortonm@chromium.org>
16704 S:      Supported
16705 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16706 F:      security/safesetid/
16707
16708 SAMSUNG AUDIO (ASoC) DRIVERS
16709 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16710 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16711 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16712 S:      Supported
16713 F:      Documentation/devicetree/bindings/sound/samsung*
16714 F:      sound/soc/samsung/
16715
16716 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16717 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16718 L:      linux-crypto@vger.kernel.org
16719 L:      linux-samsung-soc@vger.kernel.org
16720 S:      Maintained
16721 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16722 F:      drivers/crypto/exynos-rng.c
16723
16724 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16725 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16726 L:      linux-samsung-soc@vger.kernel.org
16727 S:      Maintained
16728 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16729 F:      drivers/char/hw_random/exynos-trng.c
16730
16731 SAMSUNG FRAMEBUFFER DRIVER
16732 M:      Jingoo Han <jingoohan1@gmail.com>
16733 L:      linux-fbdev@vger.kernel.org
16734 S:      Maintained
16735 F:      drivers/video/fbdev/s3c-fb.c
16736
16737 SAMSUNG INTERCONNECT DRIVERS
16738 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16739 M:      Artur Świgoń <a.swigon@samsung.com>
16740 L:      linux-pm@vger.kernel.org
16741 L:      linux-samsung-soc@vger.kernel.org
16742 S:      Supported
16743 F:      drivers/interconnect/samsung/
16744
16745 SAMSUNG LAPTOP DRIVER
16746 M:      Corentin Chary <corentin.chary@gmail.com>
16747 L:      platform-driver-x86@vger.kernel.org
16748 S:      Maintained
16749 F:      drivers/platform/x86/samsung-laptop.c
16750
16751 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16752 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16753 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16754 L:      linux-kernel@vger.kernel.org
16755 L:      linux-samsung-soc@vger.kernel.org
16756 S:      Supported
16757 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16758 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16759 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16760 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16761 F:      drivers/clk/clk-s2mps11.c
16762 F:      drivers/mfd/sec*.c
16763 F:      drivers/regulator/s2m*.c
16764 F:      drivers/regulator/s5m*.c
16765 F:      drivers/rtc/rtc-s5m.c
16766 F:      include/linux/mfd/samsung/
16767
16768 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16769 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16770 L:      linux-media@vger.kernel.org
16771 L:      linux-samsung-soc@vger.kernel.org
16772 S:      Maintained
16773 F:      drivers/media/platform/s3c-camif/
16774 F:      include/media/drv-intf/s3c_camif.h
16775
16776 SAMSUNG S3FWRN5 NFC DRIVER
16777 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16778 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16779 L:      linux-nfc@lists.01.org (subscribers-only)
16780 S:      Maintained
16781 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16782 F:      drivers/nfc/s3fwrn5
16783
16784 SAMSUNG S5C73M3 CAMERA DRIVER
16785 M:      Andrzej Hajda <a.hajda@samsung.com>
16786 L:      linux-media@vger.kernel.org
16787 S:      Supported
16788 F:      drivers/media/i2c/s5c73m3/*
16789
16790 SAMSUNG S5K5BAF CAMERA DRIVER
16791 M:      Andrzej Hajda <a.hajda@samsung.com>
16792 L:      linux-media@vger.kernel.org
16793 S:      Supported
16794 F:      drivers/media/i2c/s5k5baf.c
16795
16796 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16797 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16798 M:      Vladimir Zapolskiy <vz@mleia.com>
16799 L:      linux-crypto@vger.kernel.org
16800 L:      linux-samsung-soc@vger.kernel.org
16801 S:      Maintained
16802 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16803 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16804 F:      drivers/crypto/s5p-sss.c
16805
16806 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16807 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16808 L:      linux-media@vger.kernel.org
16809 S:      Supported
16810 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16811 F:      drivers/media/platform/exynos4-is/
16812
16813 SAMSUNG SOC CLOCK DRIVERS
16814 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16815 M:      Tomasz Figa <tomasz.figa@gmail.com>
16816 M:      Chanwoo Choi <cw00.choi@samsung.com>
16817 L:      linux-samsung-soc@vger.kernel.org
16818 S:      Supported
16819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16820 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16821 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16822 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16823 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16824 F:      drivers/clk/samsung/
16825 F:      include/dt-bindings/clock/exynos*.h
16826 F:      include/dt-bindings/clock/s3c*.h
16827 F:      include/dt-bindings/clock/s5p*.h
16828 F:      include/dt-bindings/clock/samsung,*.h
16829 F:      include/linux/clk/samsung.h
16830 F:      include/linux/platform_data/clk-s3c2410.h
16831
16832 SAMSUNG SPI DRIVERS
16833 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16834 M:      Andi Shyti <andi@etezian.org>
16835 L:      linux-spi@vger.kernel.org
16836 L:      linux-samsung-soc@vger.kernel.org
16837 S:      Maintained
16838 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16839 F:      drivers/spi/spi-s3c*
16840 F:      include/linux/platform_data/spi-s3c64xx.h
16841 F:      include/linux/spi/s3c24xx-fiq.h
16842
16843 SAMSUNG SXGBE DRIVERS
16844 M:      Byungho An <bh74.an@samsung.com>
16845 L:      netdev@vger.kernel.org
16846 S:      Supported
16847 F:      drivers/net/ethernet/samsung/sxgbe/
16848
16849 SAMSUNG THERMAL DRIVER
16850 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16851 L:      linux-pm@vger.kernel.org
16852 L:      linux-samsung-soc@vger.kernel.org
16853 S:      Supported
16854 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16855 F:      drivers/thermal/samsung/
16856
16857 SAMSUNG USB2 PHY DRIVER
16858 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16859 L:      linux-kernel@vger.kernel.org
16860 S:      Supported
16861 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16862 F:      Documentation/driver-api/phy/samsung-usb2.rst
16863 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16864 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16865 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16866 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16867 F:      drivers/phy/samsung/phy-samsung-usb2.c
16868 F:      drivers/phy/samsung/phy-samsung-usb2.h
16869
16870 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16871 M:      Paul Barker <paul.barker@sancloud.com>
16872 R:      Marc Murphy <marc.murphy@sancloud.com>
16873 S:      Supported
16874 F:      arch/arm/boot/dts/am335x-sancloud*
16875
16876 SC1200 WDT DRIVER
16877 M:      Zwane Mwaikambo <zwanem@gmail.com>
16878 S:      Maintained
16879 F:      drivers/watchdog/sc1200wdt.c
16880
16881 SCHEDULER
16882 M:      Ingo Molnar <mingo@redhat.com>
16883 M:      Peter Zijlstra <peterz@infradead.org>
16884 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16885 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16886 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16887 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16888 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16889 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16890 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16891 L:      linux-kernel@vger.kernel.org
16892 S:      Maintained
16893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16894 F:      include/linux/preempt.h
16895 F:      include/linux/sched.h
16896 F:      include/linux/wait.h
16897 F:      include/uapi/linux/sched.h
16898 F:      kernel/sched/
16899
16900 SCR24X CHIP CARD INTERFACE DRIVER
16901 M:      Lubomir Rintel <lkundrak@v3.sk>
16902 S:      Supported
16903 F:      drivers/char/pcmcia/scr24x_cs.c
16904
16905 SCSI RDMA PROTOCOL (SRP) INITIATOR
16906 M:      Bart Van Assche <bvanassche@acm.org>
16907 L:      linux-rdma@vger.kernel.org
16908 S:      Supported
16909 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16910 F:      drivers/infiniband/ulp/srp/
16911 F:      include/scsi/srp.h
16912
16913 SCSI RDMA PROTOCOL (SRP) TARGET
16914 M:      Bart Van Assche <bvanassche@acm.org>
16915 L:      linux-rdma@vger.kernel.org
16916 L:      target-devel@vger.kernel.org
16917 S:      Supported
16918 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16919 F:      drivers/infiniband/ulp/srpt/
16920
16921 SCSI SG DRIVER
16922 M:      Doug Gilbert <dgilbert@interlog.com>
16923 L:      linux-scsi@vger.kernel.org
16924 S:      Maintained
16925 W:      http://sg.danny.cz/sg
16926 F:      Documentation/scsi/scsi-generic.rst
16927 F:      drivers/scsi/sg.c
16928 F:      include/scsi/sg.h
16929
16930 SCSI SUBSYSTEM
16931 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16932 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16933 L:      linux-scsi@vger.kernel.org
16934 S:      Maintained
16935 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16938 F:      Documentation/devicetree/bindings/scsi/
16939 F:      drivers/scsi/
16940 F:      include/scsi/
16941
16942 SCSI TAPE DRIVER
16943 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16944 L:      linux-scsi@vger.kernel.org
16945 S:      Maintained
16946 F:      Documentation/scsi/st.rst
16947 F:      drivers/scsi/st.*
16948 F:      drivers/scsi/st_*.h
16949
16950 SCSI TARGET CORE USER DRIVER
16951 M:      Bodo Stroesser <bostroesser@gmail.com>
16952 L:      linux-scsi@vger.kernel.org
16953 L:      target-devel@vger.kernel.org
16954 S:      Supported
16955 F:      Documentation/target/tcmu-design.rst
16956 F:      drivers/target/target_core_user.c
16957 F:      include/uapi/linux/target_core_user.h
16958
16959 SCSI TARGET SUBSYSTEM
16960 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16961 L:      linux-scsi@vger.kernel.org
16962 L:      target-devel@vger.kernel.org
16963 S:      Supported
16964 W:      http://www.linux-iscsi.org
16965 Q:      https://patchwork.kernel.org/project/target-devel/list/
16966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16967 F:      Documentation/target/
16968 F:      drivers/target/
16969 F:      include/target/
16970
16971 SCTP PROTOCOL
16972 M:      Vlad Yasevich <vyasevich@gmail.com>
16973 M:      Neil Horman <nhorman@tuxdriver.com>
16974 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16975 L:      linux-sctp@vger.kernel.org
16976 S:      Maintained
16977 W:      http://lksctp.sourceforge.net
16978 F:      Documentation/networking/sctp.rst
16979 F:      include/linux/sctp.h
16980 F:      include/net/sctp/
16981 F:      include/uapi/linux/sctp.h
16982 F:      net/sctp/
16983
16984 SCx200 CPU SUPPORT
16985 M:      Jim Cromie <jim.cromie@gmail.com>
16986 S:      Odd Fixes
16987 F:      Documentation/i2c/busses/scx200_acb.rst
16988 F:      arch/x86/platform/scx200/
16989 F:      drivers/i2c/busses/scx200*
16990 F:      drivers/mtd/maps/scx200_docflash.c
16991 F:      drivers/watchdog/scx200_wdt.c
16992 F:      include/linux/scx200.h
16993
16994 SCx200 GPIO DRIVER
16995 M:      Jim Cromie <jim.cromie@gmail.com>
16996 S:      Maintained
16997 F:      drivers/char/scx200_gpio.c
16998 F:      include/linux/scx200_gpio.h
16999
17000 SCx200 HRT CLOCKSOURCE DRIVER
17001 M:      Jim Cromie <jim.cromie@gmail.com>
17002 S:      Maintained
17003 F:      drivers/clocksource/scx200_hrt.c
17004
17005 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17006 M:      Sascha Sommer <saschasommer@freenet.de>
17007 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17008 S:      Maintained
17009 F:      drivers/mmc/host/sdricoh_cs.c
17010
17011 SECO BOARDS CEC DRIVER
17012 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17013 S:      Maintained
17014 F:      drivers/media/cec/platform/seco/seco-cec.c
17015 F:      drivers/media/cec/platform/seco/seco-cec.h
17016
17017 SECURE COMPUTING
17018 M:      Kees Cook <keescook@chromium.org>
17019 R:      Andy Lutomirski <luto@amacapital.net>
17020 R:      Will Drewry <wad@chromium.org>
17021 S:      Supported
17022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17023 F:      Documentation/userspace-api/seccomp_filter.rst
17024 F:      include/linux/seccomp.h
17025 F:      include/uapi/linux/seccomp.h
17026 F:      kernel/seccomp.c
17027 F:      tools/testing/selftests/kselftest_harness.h
17028 F:      tools/testing/selftests/seccomp/*
17029 K:      \bsecure_computing
17030 K:      \bTIF_SECCOMP\b
17031
17032 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17033 M:      Al Cooper <alcooperx@gmail.com>
17034 L:      linux-mmc@vger.kernel.org
17035 L:      bcm-kernel-feedback-list@broadcom.com
17036 S:      Maintained
17037 F:      drivers/mmc/host/sdhci-brcmstb*
17038
17039 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17040 M:      Adrian Hunter <adrian.hunter@intel.com>
17041 L:      linux-mmc@vger.kernel.org
17042 S:      Maintained
17043 F:      drivers/mmc/host/sdhci*
17044
17045 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17046 M:      Eugen Hristev <eugen.hristev@microchip.com>
17047 L:      linux-mmc@vger.kernel.org
17048 S:      Supported
17049 F:      drivers/mmc/host/sdhci-of-at91.c
17050
17051 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17052 M:      Ben Dooks <ben-linux@fluff.org>
17053 M:      Jaehoon Chung <jh80.chung@samsung.com>
17054 L:      linux-mmc@vger.kernel.org
17055 S:      Maintained
17056 F:      drivers/mmc/host/sdhci-s3c*
17057
17058 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17059 M:      Viresh Kumar <vireshk@kernel.org>
17060 L:      linux-mmc@vger.kernel.org
17061 S:      Maintained
17062 F:      drivers/mmc/host/sdhci-spear.c
17063
17064 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17065 M:      Kishon Vijay Abraham I <kishon@ti.com>
17066 L:      linux-mmc@vger.kernel.org
17067 S:      Maintained
17068 F:      drivers/mmc/host/sdhci-omap.c
17069
17070 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17071 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17072 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17073 L:      linux-block@vger.kernel.org
17074 S:      Supported
17075 F:      block/opal_proto.h
17076 F:      block/sed*
17077 F:      include/linux/sed*
17078 F:      include/uapi/linux/sed*
17079
17080 SECURITY CONTACT
17081 M:      Security Officers <security@kernel.org>
17082 S:      Supported
17083 F:      Documentation/admin-guide/security-bugs.rst
17084
17085 SECURITY SUBSYSTEM
17086 M:      James Morris <jmorris@namei.org>
17087 M:      "Serge E. Hallyn" <serge@hallyn.com>
17088 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17089 S:      Supported
17090 W:      http://kernsec.org/
17091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17092 F:      security/
17093 X:      security/selinux/
17094
17095 SELINUX SECURITY MODULE
17096 M:      Paul Moore <paul@paul-moore.com>
17097 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17098 M:      Eric Paris <eparis@parisplace.org>
17099 L:      selinux@vger.kernel.org
17100 S:      Supported
17101 W:      https://selinuxproject.org
17102 W:      https://github.com/SELinuxProject
17103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17104 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17105 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17106 F:      Documentation/admin-guide/LSM/SELinux.rst
17107 F:      include/trace/events/avc.h
17108 F:      include/uapi/linux/selinux_netlink.h
17109 F:      scripts/selinux/
17110 F:      security/selinux/
17111
17112 SENSABLE PHANTOM
17113 M:      Jiri Slaby <jirislaby@kernel.org>
17114 S:      Maintained
17115 F:      drivers/misc/phantom.c
17116 F:      include/uapi/linux/phantom.h
17117
17118 SENSEAIR SUNRISE 006-0-0007
17119 M:      Jacopo Mondi <jacopo@jmondi.org>
17120 S:      Maintained
17121 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17122 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17123 F:      drivers/iio/chemical/sunrise_co2.c
17124
17125 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17126 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17127 S:      Maintained
17128 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17129 F:      drivers/iio/chemical/scd30.h
17130 F:      drivers/iio/chemical/scd30_core.c
17131 F:      drivers/iio/chemical/scd30_i2c.c
17132 F:      drivers/iio/chemical/scd30_serial.c
17133
17134 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17135 M:      Roan van Dijk <roan@protonic.nl>
17136 S:      Maintained
17137 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17138 F:      drivers/iio/chemical/scd4x.c
17139
17140 SENSIRION SGP40 GAS SENSOR DRIVER
17141 M:      Andreas Klinger <ak@it-klinger.de>
17142 S:      Maintained
17143 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17144 F:      drivers/iio/chemical/sgp40.c
17145
17146 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17147 M:      Tomasz Duszynski <tduszyns@gmail.com>
17148 S:      Maintained
17149 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17150 F:      drivers/iio/chemical/sps30.c
17151 F:      drivers/iio/chemical/sps30_i2c.c
17152 F:      drivers/iio/chemical/sps30_serial.c
17153
17154 SERIAL DEVICE BUS
17155 M:      Rob Herring <robh@kernel.org>
17156 L:      linux-serial@vger.kernel.org
17157 S:      Maintained
17158 F:      Documentation/devicetree/bindings/serial/serial.yaml
17159 F:      drivers/tty/serdev/
17160 F:      include/linux/serdev.h
17161
17162 SERIAL DRIVERS
17163 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17164 L:      linux-serial@vger.kernel.org
17165 S:      Maintained
17166 F:      Documentation/devicetree/bindings/serial/
17167 F:      drivers/tty/serial/
17168
17169 SERIAL IR RECEIVER
17170 M:      Sean Young <sean@mess.org>
17171 L:      linux-media@vger.kernel.org
17172 S:      Maintained
17173 F:      drivers/media/rc/serial_ir.c
17174
17175 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17176 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17178 S:      Maintained
17179 F:      Documentation/devicetree/bindings/slimbus/
17180 F:      drivers/slimbus/
17181 F:      include/linux/slimbus.h
17182
17183 SFC NETWORK DRIVER
17184 M:      Edward Cree <ecree.xilinx@gmail.com>
17185 M:      Martin Habets <habetsm.xilinx@gmail.com>
17186 L:      netdev@vger.kernel.org
17187 S:      Supported
17188 F:      drivers/net/ethernet/sfc/
17189
17190 SFF/SFP/SFP+ MODULE SUPPORT
17191 M:      Russell King <linux@armlinux.org.uk>
17192 L:      netdev@vger.kernel.org
17193 S:      Maintained
17194 F:      drivers/net/phy/phylink.c
17195 F:      drivers/net/phy/sfp*
17196 F:      include/linux/mdio/mdio-i2c.h
17197 F:      include/linux/phylink.h
17198 F:      include/linux/sfp.h
17199 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)
17200
17201 SGI GRU DRIVER
17202 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17203 S:      Maintained
17204 F:      drivers/misc/sgi-gru/
17205
17206 SGI XP/XPC/XPNET DRIVER
17207 M:      Robin Holt <robinmholt@gmail.com>
17208 M:      Steve Wahl <steve.wahl@hpe.com>
17209 R:      Mike Travis <mike.travis@hpe.com>
17210 S:      Maintained
17211 F:      drivers/misc/sgi-xp/
17212
17213 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17214 M:      Karsten Graul <kgraul@linux.ibm.com>
17215 L:      linux-s390@vger.kernel.org
17216 S:      Supported
17217 W:      http://www.ibm.com/developerworks/linux/linux390/
17218 F:      net/smc/
17219
17220 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17221 M:      Linus Walleij <linus.walleij@linaro.org>
17222 L:      linux-iio@vger.kernel.org
17223 S:      Maintained
17224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17225 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17226 F:      drivers/iio/light/gp2ap002.c
17227
17228 SHARP RJ54N1CB0C SENSOR DRIVER
17229 M:      Jacopo Mondi <jacopo@jmondi.org>
17230 L:      linux-media@vger.kernel.org
17231 S:      Odd fixes
17232 T:      git git://linuxtv.org/media_tree.git
17233 F:      drivers/media/i2c/rj54n1cb0c.c
17234 F:      include/media/i2c/rj54n1cb0c.h
17235
17236 SH_VOU V4L2 OUTPUT DRIVER
17237 L:      linux-media@vger.kernel.org
17238 S:      Orphan
17239 F:      drivers/media/platform/sh_vou.c
17240 F:      include/media/drv-intf/sh_vou.h
17241
17242 SI2157 MEDIA DRIVER
17243 M:      Antti Palosaari <crope@iki.fi>
17244 L:      linux-media@vger.kernel.org
17245 S:      Maintained
17246 W:      https://linuxtv.org
17247 W:      http://palosaari.fi/linux/
17248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17249 T:      git git://linuxtv.org/anttip/media_tree.git
17250 F:      drivers/media/tuners/si2157*
17251
17252 SI2165 MEDIA DRIVER
17253 M:      Matthias Schwarzott <zzam@gentoo.org>
17254 L:      linux-media@vger.kernel.org
17255 S:      Maintained
17256 W:      https://linuxtv.org
17257 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17258 F:      drivers/media/dvb-frontends/si2165*
17259
17260 SI2168 MEDIA DRIVER
17261 M:      Antti Palosaari <crope@iki.fi>
17262 L:      linux-media@vger.kernel.org
17263 S:      Maintained
17264 W:      https://linuxtv.org
17265 W:      http://palosaari.fi/linux/
17266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17267 T:      git git://linuxtv.org/anttip/media_tree.git
17268 F:      drivers/media/dvb-frontends/si2168*
17269
17270 SI470X FM RADIO RECEIVER I2C DRIVER
17271 M:      Hans Verkuil <hverkuil@xs4all.nl>
17272 L:      linux-media@vger.kernel.org
17273 S:      Odd Fixes
17274 W:      https://linuxtv.org
17275 T:      git git://linuxtv.org/media_tree.git
17276 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17277
17278 SI470X FM RADIO RECEIVER USB DRIVER
17279 M:      Hans Verkuil <hverkuil@xs4all.nl>
17280 L:      linux-media@vger.kernel.org
17281 S:      Maintained
17282 W:      https://linuxtv.org
17283 T:      git git://linuxtv.org/media_tree.git
17284 F:      drivers/media/radio/si470x/radio-si470x-common.c
17285 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17286 F:      drivers/media/radio/si470x/radio-si470x.h
17287
17288 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17289 M:      Eduardo Valentin <edubezval@gmail.com>
17290 L:      linux-media@vger.kernel.org
17291 S:      Odd Fixes
17292 W:      https://linuxtv.org
17293 T:      git git://linuxtv.org/media_tree.git
17294 F:      drivers/media/radio/si4713/si4713.?
17295
17296 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17297 M:      Eduardo Valentin <edubezval@gmail.com>
17298 L:      linux-media@vger.kernel.org
17299 S:      Odd Fixes
17300 W:      https://linuxtv.org
17301 T:      git git://linuxtv.org/media_tree.git
17302 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17303
17304 SI4713 FM RADIO TRANSMITTER USB DRIVER
17305 M:      Hans Verkuil <hverkuil@xs4all.nl>
17306 L:      linux-media@vger.kernel.org
17307 S:      Maintained
17308 W:      https://linuxtv.org
17309 T:      git git://linuxtv.org/media_tree.git
17310 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17311
17312 SIANO DVB DRIVER
17313 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17314 L:      linux-media@vger.kernel.org
17315 S:      Odd fixes
17316 W:      https://linuxtv.org
17317 T:      git git://linuxtv.org/media_tree.git
17318 F:      drivers/media/common/siano/
17319 F:      drivers/media/mmc/siano/
17320 F:      drivers/media/usb/siano/
17321 F:      drivers/media/usb/siano/
17322
17323 SIFIVE DRIVERS
17324 M:      Palmer Dabbelt <palmer@dabbelt.com>
17325 M:      Paul Walmsley <paul.walmsley@sifive.com>
17326 L:      linux-riscv@lists.infradead.org
17327 S:      Supported
17328 T:      git git://github.com/sifive/riscv-linux.git
17329 N:      sifive
17330 K:      [^@]sifive
17331
17332 SIFIVE FU540 SYSTEM-ON-CHIP
17333 M:      Paul Walmsley <paul.walmsley@sifive.com>
17334 M:      Palmer Dabbelt <palmer@dabbelt.com>
17335 L:      linux-riscv@lists.infradead.org
17336 S:      Supported
17337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17338 N:      fu540
17339 K:      fu540
17340
17341 SIFIVE PDMA DRIVER
17342 M:      Green Wan <green.wan@sifive.com>
17343 S:      Maintained
17344 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17345 F:      drivers/dma/sf-pdma/
17346
17347 SILEAD TOUCHSCREEN DRIVER
17348 M:      Hans de Goede <hdegoede@redhat.com>
17349 L:      linux-input@vger.kernel.org
17350 L:      platform-driver-x86@vger.kernel.org
17351 S:      Maintained
17352 F:      drivers/input/touchscreen/silead.c
17353 F:      drivers/platform/x86/touchscreen_dmi.c
17354
17355 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17356 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17357 S:      Supported
17358 F:      drivers/staging/wfx/
17359
17360 SILICON MOTION SM712 FRAME BUFFER DRIVER
17361 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17362 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17363 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17364 L:      linux-fbdev@vger.kernel.org
17365 S:      Maintained
17366 F:      Documentation/fb/sm712fb.rst
17367 F:      drivers/video/fbdev/sm712*
17368
17369 SILVACO I3C DUAL-ROLE MASTER
17370 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17371 M:      Conor Culhane <conor.culhane@silvaco.com>
17372 L:      linux-i3c@lists.infradead.org
17373 S:      Maintained
17374 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17375 F:      drivers/i3c/master/svc-i3c-master.c
17376
17377 SIMPLEFB FB DRIVER
17378 M:      Hans de Goede <hdegoede@redhat.com>
17379 L:      linux-fbdev@vger.kernel.org
17380 S:      Maintained
17381 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17382 F:      drivers/video/fbdev/simplefb.c
17383 F:      include/linux/platform_data/simplefb.h
17384
17385 SIMTEC EB110ATX (Chalice CATS)
17386 M:      Simtec Linux Team <linux@simtec.co.uk>
17387 S:      Supported
17388 W:      http://www.simtec.co.uk/products/EB110ATX/
17389
17390 SIMTEC EB2410ITX (BAST)
17391 M:      Simtec Linux Team <linux@simtec.co.uk>
17392 S:      Supported
17393 W:      http://www.simtec.co.uk/products/EB2410ITX/
17394 F:      arch/arm/mach-s3c/bast-ide.c
17395 F:      arch/arm/mach-s3c/bast-irq.c
17396 F:      arch/arm/mach-s3c/mach-bast.c
17397
17398 SIOX
17399 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17400 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17401 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17402 S:      Supported
17403 F:      drivers/gpio/gpio-siox.c
17404 F:      drivers/siox/*
17405 F:      include/trace/events/siox.h
17406
17407 SIPHASH PRF ROUTINES
17408 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17409 S:      Maintained
17410 F:      include/linux/siphash.h
17411 F:      lib/siphash.c
17412 F:      lib/test_siphash.c
17413
17414 SIS 190 ETHERNET DRIVER
17415 M:      Francois Romieu <romieu@fr.zoreil.com>
17416 L:      netdev@vger.kernel.org
17417 S:      Maintained
17418 F:      drivers/net/ethernet/sis/sis190.c
17419
17420 SIS 900/7016 FAST ETHERNET DRIVER
17421 M:      Daniele Venzano <venza@brownhat.org>
17422 L:      netdev@vger.kernel.org
17423 S:      Maintained
17424 W:      http://www.brownhat.org/sis900.html
17425 F:      drivers/net/ethernet/sis/sis900.*
17426
17427 SIS FRAMEBUFFER DRIVER
17428 M:      Thomas Winischhofer <thomas@winischhofer.net>
17429 S:      Maintained
17430 W:      http://www.winischhofer.net/linuxsisvga.shtml
17431 F:      Documentation/fb/sisfb.rst
17432 F:      drivers/video/fbdev/sis/
17433 F:      include/video/sisfb.h
17434
17435 SIS I2C TOUCHSCREEN DRIVER
17436 M:      Mika Penttilä <mika.penttila@nextfour.com>
17437 L:      linux-input@vger.kernel.org
17438 S:      Maintained
17439 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17440 F:      drivers/input/touchscreen/sis_i2c.c
17441
17442 SIS USB2VGA DRIVER
17443 M:      Thomas Winischhofer <thomas@winischhofer.net>
17444 S:      Maintained
17445 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17446 F:      drivers/usb/misc/sisusbvga/
17447
17448 SLAB ALLOCATOR
17449 M:      Christoph Lameter <cl@linux.com>
17450 M:      Pekka Enberg <penberg@kernel.org>
17451 M:      David Rientjes <rientjes@google.com>
17452 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17453 M:      Andrew Morton <akpm@linux-foundation.org>
17454 M:      Vlastimil Babka <vbabka@suse.cz>
17455 L:      linux-mm@kvack.org
17456 S:      Maintained
17457 F:      include/linux/sl?b*.h
17458 F:      mm/sl?b*
17459
17460 SLEEPABLE READ-COPY UPDATE (SRCU)
17461 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17462 M:      "Paul E. McKenney" <paulmck@kernel.org>
17463 M:      Josh Triplett <josh@joshtriplett.org>
17464 R:      Steven Rostedt <rostedt@goodmis.org>
17465 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17466 L:      rcu@vger.kernel.org
17467 S:      Supported
17468 W:      http://www.rdrop.com/users/paulmck/RCU/
17469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17470 F:      include/linux/srcu*.h
17471 F:      kernel/rcu/srcu*.c
17472
17473 SMACK SECURITY MODULE
17474 M:      Casey Schaufler <casey@schaufler-ca.com>
17475 L:      linux-security-module@vger.kernel.org
17476 S:      Maintained
17477 W:      http://schaufler-ca.com
17478 T:      git git://github.com/cschaufler/smack-next
17479 F:      Documentation/admin-guide/LSM/Smack.rst
17480 F:      security/smack/
17481
17482 SMC91x ETHERNET DRIVER
17483 M:      Nicolas Pitre <nico@fluxnic.net>
17484 S:      Odd Fixes
17485 F:      drivers/net/ethernet/smsc/smc91x.*
17486
17487 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17488 M:      Mark Rutland <mark.rutland@arm.com>
17489 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17490 M:      Sudeep Holla <sudeep.holla@arm.com>
17491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17492 S:      Maintained
17493 F:      drivers/firmware/smccc/
17494 F:      include/linux/arm-smccc.h
17495
17496 SMM665 HARDWARE MONITOR DRIVER
17497 M:      Guenter Roeck <linux@roeck-us.net>
17498 L:      linux-hwmon@vger.kernel.org
17499 S:      Maintained
17500 F:      Documentation/hwmon/smm665.rst
17501 F:      drivers/hwmon/smm665.c
17502
17503 SMSC EMC2103 HARDWARE MONITOR DRIVER
17504 M:      Steve Glendinning <steve.glendinning@shawell.net>
17505 L:      linux-hwmon@vger.kernel.org
17506 S:      Maintained
17507 F:      Documentation/hwmon/emc2103.rst
17508 F:      drivers/hwmon/emc2103.c
17509
17510 SMSC SCH5627 HARDWARE MONITOR DRIVER
17511 M:      Hans de Goede <hdegoede@redhat.com>
17512 L:      linux-hwmon@vger.kernel.org
17513 S:      Supported
17514 F:      Documentation/hwmon/sch5627.rst
17515 F:      drivers/hwmon/sch5627.c
17516
17517 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17518 M:      Steve Glendinning <steve.glendinning@shawell.net>
17519 L:      linux-fbdev@vger.kernel.org
17520 S:      Maintained
17521 F:      drivers/video/fbdev/smscufx.c
17522
17523 SMSC47B397 HARDWARE MONITOR DRIVER
17524 M:      Jean Delvare <jdelvare@suse.com>
17525 L:      linux-hwmon@vger.kernel.org
17526 S:      Maintained
17527 F:      Documentation/hwmon/smsc47b397.rst
17528 F:      drivers/hwmon/smsc47b397.c
17529
17530 SMSC911x ETHERNET DRIVER
17531 M:      Steve Glendinning <steve.glendinning@shawell.net>
17532 L:      netdev@vger.kernel.org
17533 S:      Maintained
17534 F:      drivers/net/ethernet/smsc/smsc911x.*
17535 F:      include/linux/smsc911x.h
17536
17537 SMSC9420 PCI ETHERNET DRIVER
17538 M:      Steve Glendinning <steve.glendinning@shawell.net>
17539 L:      netdev@vger.kernel.org
17540 S:      Maintained
17541 F:      drivers/net/ethernet/smsc/smsc9420.*
17542
17543 SOCIONEXT (SNI) AVE NETWORK DRIVER
17544 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17545 L:      netdev@vger.kernel.org
17546 S:      Maintained
17547 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17548 F:      drivers/net/ethernet/socionext/sni_ave.c
17549
17550 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17551 M:      Jassi Brar <jaswinder.singh@linaro.org>
17552 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17553 L:      netdev@vger.kernel.org
17554 S:      Maintained
17555 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17556 F:      drivers/net/ethernet/socionext/netsec.c
17557
17558 SOCIONEXT (SNI) Synquacer SPI DRIVER
17559 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17560 M:      Jassi Brar <jaswinder.singh@linaro.org>
17561 L:      linux-spi@vger.kernel.org
17562 S:      Maintained
17563 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17564 F:      drivers/spi/spi-synquacer.c
17565
17566 SOCIONEXT SYNQUACER I2C DRIVER
17567 M:      Ard Biesheuvel <ardb@kernel.org>
17568 L:      linux-i2c@vger.kernel.org
17569 S:      Maintained
17570 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17571 F:      drivers/i2c/busses/i2c-synquacer.c
17572
17573 SOCIONEXT UNIPHIER SOUND DRIVER
17574 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17575 S:      Orphan
17576 F:      sound/soc/uniphier/
17577
17578 SOEKRIS NET48XX LED SUPPORT
17579 M:      Chris Boot <bootc@bootc.net>
17580 S:      Maintained
17581 F:      drivers/leds/leds-net48xx.c
17582
17583 SOFT-IWARP DRIVER (siw)
17584 M:      Bernard Metzler <bmt@zurich.ibm.com>
17585 L:      linux-rdma@vger.kernel.org
17586 S:      Supported
17587 F:      drivers/infiniband/sw/siw/
17588 F:      include/uapi/rdma/siw-abi.h
17589
17590 SOFT-ROCE DRIVER (rxe)
17591 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17592 L:      linux-rdma@vger.kernel.org
17593 S:      Supported
17594 F:      drivers/infiniband/sw/rxe/
17595 F:      include/uapi/rdma/rdma_user_rxe.h
17596
17597 SOFTLOGIC 6x10 MPEG CODEC
17598 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17599 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17600 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17601 M:      Ismael Luceno <ismael@iodev.co.uk>
17602 L:      linux-media@vger.kernel.org
17603 S:      Supported
17604 F:      drivers/media/pci/solo6x10/
17605
17606 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17607 M:      James Morse <james.morse@arm.com>
17608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17609 S:      Maintained
17610 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17611 F:      drivers/firmware/arm_sdei.c
17612 F:      include/linux/arm_sdei.h
17613 F:      include/uapi/linux/arm_sdei.h
17614
17615 SOFTWARE NODES
17616 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17617 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17618 L:      linux-acpi@vger.kernel.org
17619 S:      Maintained
17620 F:      drivers/base/swnode.c
17621
17622 SOFTWARE RAID (Multiple Disks) SUPPORT
17623 M:      Song Liu <song@kernel.org>
17624 L:      linux-raid@vger.kernel.org
17625 S:      Supported
17626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17627 F:      drivers/md/Kconfig
17628 F:      drivers/md/Makefile
17629 F:      drivers/md/md*
17630 F:      drivers/md/raid*
17631 F:      include/linux/raid/
17632 F:      include/uapi/linux/raid/
17633
17634 SOLIDRUN CLEARFOG SUPPORT
17635 M:      Russell King <linux@armlinux.org.uk>
17636 S:      Maintained
17637 F:      arch/arm/boot/dts/armada-388-clearfog*
17638 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17639
17640 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17641 M:      Russell King <linux@armlinux.org.uk>
17642 S:      Maintained
17643 F:      arch/arm/boot/dts/imx6*-cubox-i*
17644 F:      arch/arm/boot/dts/imx6*-hummingboard*
17645 F:      arch/arm/boot/dts/imx6*-sr-*
17646
17647 SONIC NETWORK DRIVER
17648 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17649 L:      netdev@vger.kernel.org
17650 S:      Maintained
17651 F:      drivers/net/ethernet/natsemi/sonic.*
17652
17653 SONICS SILICON BACKPLANE DRIVER (SSB)
17654 M:      Michael Buesch <m@bues.ch>
17655 L:      linux-wireless@vger.kernel.org
17656 S:      Maintained
17657 F:      drivers/ssb/
17658 F:      include/linux/ssb/
17659
17660 SONY IMX208 SENSOR DRIVER
17661 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17662 L:      linux-media@vger.kernel.org
17663 S:      Maintained
17664 T:      git git://linuxtv.org/media_tree.git
17665 F:      drivers/media/i2c/imx208.c
17666
17667 SONY IMX214 SENSOR DRIVER
17668 M:      Ricardo Ribalda <ribalda@kernel.org>
17669 L:      linux-media@vger.kernel.org
17670 S:      Maintained
17671 T:      git git://linuxtv.org/media_tree.git
17672 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17673 F:      drivers/media/i2c/imx214.c
17674
17675 SONY IMX219 SENSOR DRIVER
17676 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17677 L:      linux-media@vger.kernel.org
17678 S:      Maintained
17679 T:      git git://linuxtv.org/media_tree.git
17680 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17681 F:      drivers/media/i2c/imx219.c
17682
17683 SONY IMX258 SENSOR DRIVER
17684 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17685 L:      linux-media@vger.kernel.org
17686 S:      Maintained
17687 T:      git git://linuxtv.org/media_tree.git
17688 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17689 F:      drivers/media/i2c/imx258.c
17690
17691 SONY IMX274 SENSOR DRIVER
17692 M:      Leon Luo <leonl@leopardimaging.com>
17693 L:      linux-media@vger.kernel.org
17694 S:      Maintained
17695 T:      git git://linuxtv.org/media_tree.git
17696 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17697 F:      drivers/media/i2c/imx274.c
17698
17699 SONY IMX290 SENSOR DRIVER
17700 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17701 L:      linux-media@vger.kernel.org
17702 S:      Maintained
17703 T:      git git://linuxtv.org/media_tree.git
17704 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17705 F:      drivers/media/i2c/imx290.c
17706
17707 SONY IMX319 SENSOR DRIVER
17708 M:      Bingbu Cao <bingbu.cao@intel.com>
17709 L:      linux-media@vger.kernel.org
17710 S:      Maintained
17711 T:      git git://linuxtv.org/media_tree.git
17712 F:      drivers/media/i2c/imx319.c
17713
17714 SONY IMX334 SENSOR DRIVER
17715 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17716 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17717 L:      linux-media@vger.kernel.org
17718 S:      Maintained
17719 T:      git git://linuxtv.org/media_tree.git
17720 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17721 F:      drivers/media/i2c/imx334.c
17722
17723 SONY IMX335 SENSOR DRIVER
17724 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17725 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17726 L:      linux-media@vger.kernel.org
17727 S:      Maintained
17728 T:      git git://linuxtv.org/media_tree.git
17729 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17730 F:      drivers/media/i2c/imx335.c
17731
17732 SONY IMX355 SENSOR DRIVER
17733 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17734 L:      linux-media@vger.kernel.org
17735 S:      Maintained
17736 T:      git git://linuxtv.org/media_tree.git
17737 F:      drivers/media/i2c/imx355.c
17738
17739 SONY IMX412 SENSOR DRIVER
17740 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17741 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17742 L:      linux-media@vger.kernel.org
17743 S:      Maintained
17744 T:      git git://linuxtv.org/media_tree.git
17745 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17746 F:      drivers/media/i2c/imx412.c
17747
17748 SONY MEMORYSTICK SUBSYSTEM
17749 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17750 M:      Alex Dubov <oakad@yahoo.com>
17751 M:      Ulf Hansson <ulf.hansson@linaro.org>
17752 L:      linux-mmc@vger.kernel.org
17753 S:      Maintained
17754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17755 F:      drivers/memstick/
17756 F:      include/linux/memstick.h
17757
17758 SONY VAIO CONTROL DEVICE DRIVER
17759 M:      Mattia Dongili <malattia@linux.it>
17760 L:      platform-driver-x86@vger.kernel.org
17761 S:      Maintained
17762 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17763 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17764 F:      drivers/char/sonypi.c
17765 F:      drivers/platform/x86/sony-laptop.c
17766 F:      include/linux/sony-laptop.h
17767
17768 SOUND
17769 M:      Jaroslav Kysela <perex@perex.cz>
17770 M:      Takashi Iwai <tiwai@suse.com>
17771 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17772 S:      Maintained
17773 W:      http://www.alsa-project.org/
17774 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17776 F:      Documentation/sound/
17777 F:      include/sound/
17778 F:      include/uapi/sound/
17779 F:      sound/
17780
17781 SOUND - COMPRESSED AUDIO
17782 M:      Vinod Koul <vkoul@kernel.org>
17783 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17784 S:      Supported
17785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17786 F:      Documentation/sound/designs/compress-offload.rst
17787 F:      include/sound/compress_driver.h
17788 F:      include/uapi/sound/compress_*
17789 F:      sound/core/compress_offload.c
17790 F:      sound/soc/soc-compress.c
17791
17792 SOUND - DMAENGINE HELPERS
17793 M:      Lars-Peter Clausen <lars@metafoo.de>
17794 S:      Supported
17795 F:      include/sound/dmaengine_pcm.h
17796 F:      sound/core/pcm_dmaengine.c
17797 F:      sound/soc/soc-generic-dmaengine-pcm.c
17798
17799 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17800 M:      Liam Girdwood <lgirdwood@gmail.com>
17801 M:      Mark Brown <broonie@kernel.org>
17802 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17803 S:      Supported
17804 W:      http://alsa-project.org/main/index.php/ASoC
17805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17806 F:      Documentation/devicetree/bindings/sound/
17807 F:      Documentation/sound/soc/
17808 F:      include/dt-bindings/sound/
17809 F:      include/sound/soc*
17810 F:      sound/soc/
17811
17812 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17813 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17814 M:      Liam Girdwood <lgirdwood@gmail.com>
17815 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17816 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17817 M:      Daniel Baluta <daniel.baluta@nxp.com>
17818 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17819 S:      Supported
17820 W:      https://github.com/thesofproject/linux/
17821 F:      sound/soc/sof/
17822
17823 SOUNDWIRE SUBSYSTEM
17824 M:      Vinod Koul <vkoul@kernel.org>
17825 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17826 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17827 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17828 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17829 S:      Supported
17830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17831 F:      Documentation/driver-api/soundwire/
17832 F:      drivers/soundwire/
17833 F:      include/linux/soundwire/
17834
17835 SP2 MEDIA DRIVER
17836 M:      Olli Salonen <olli.salonen@iki.fi>
17837 L:      linux-media@vger.kernel.org
17838 S:      Maintained
17839 W:      https://linuxtv.org
17840 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17841 F:      drivers/media/dvb-frontends/sp2*
17842
17843 SPARC + UltraSPARC (sparc/sparc64)
17844 M:      "David S. Miller" <davem@davemloft.net>
17845 L:      sparclinux@vger.kernel.org
17846 S:      Maintained
17847 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17850 F:      arch/sparc/
17851 F:      drivers/sbus/
17852
17853 SPARC SERIAL DRIVERS
17854 M:      "David S. Miller" <davem@davemloft.net>
17855 L:      sparclinux@vger.kernel.org
17856 S:      Maintained
17857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17859 F:      drivers/tty/serial/suncore.c
17860 F:      drivers/tty/serial/sunhv.c
17861 F:      drivers/tty/serial/sunsab.c
17862 F:      drivers/tty/serial/sunsab.h
17863 F:      drivers/tty/serial/sunsu.c
17864 F:      drivers/tty/serial/sunzilog.c
17865 F:      drivers/tty/serial/sunzilog.h
17866 F:      drivers/tty/vcc.c
17867 F:      include/linux/sunserialcore.h
17868
17869 SPARSE CHECKER
17870 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17871 L:      linux-sparse@vger.kernel.org
17872 S:      Maintained
17873 W:      https://sparse.docs.kernel.org/
17874 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17875 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17876 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17877 F:      include/linux/compiler.h
17878
17879 SPEAKUP CONSOLE SPEECH DRIVER
17880 M:      William Hubbs <w.d.hubbs@gmail.com>
17881 M:      Chris Brannon <chris@the-brannons.com>
17882 M:      Kirk Reiser <kirk@reisers.ca>
17883 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17884 L:      speakup@linux-speakup.org
17885 S:      Odd Fixes
17886 W:      http://www.linux-speakup.org/
17887 W:      https://github.com/linux-speakup/speakup
17888 B:      https://github.com/linux-speakup/speakup/issues
17889 F:      drivers/accessibility/speakup/
17890
17891 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
17892 M:      Viresh Kumar <vireshk@kernel.org>
17893 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17894 M:      soc@kernel.org
17895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17896 S:      Maintained
17897 W:      http://www.st.com/spear
17898 F:      arch/arm/boot/dts/spear*
17899 F:      arch/arm/mach-spear/
17900 F:      drivers/clk/spear/
17901 F:      drivers/pinctrl/spear/
17902
17903 SPI NOR SUBSYSTEM
17904 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17905 R:      Michael Walle <michael@walle.cc>
17906 R:      Pratyush Yadav <p.yadav@ti.com>
17907 L:      linux-mtd@lists.infradead.org
17908 S:      Maintained
17909 W:      http://www.linux-mtd.infradead.org/
17910 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17911 C:      irc://irc.oftc.net/mtd
17912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17913 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
17914 F:      drivers/mtd/spi-nor/
17915 F:      include/linux/mtd/spi-nor.h
17916
17917 SPI SUBSYSTEM
17918 M:      Mark Brown <broonie@kernel.org>
17919 L:      linux-spi@vger.kernel.org
17920 S:      Maintained
17921 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17923 F:      Documentation/devicetree/bindings/spi/
17924 F:      Documentation/spi/
17925 F:      drivers/spi/
17926 F:      include/linux/spi/
17927 F:      include/uapi/linux/spi/
17928 F:      tools/spi/
17929
17930 SPIDERNET NETWORK DRIVER for CELL
17931 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17932 M:      Geoff Levand <geoff@infradead.org>
17933 L:      netdev@vger.kernel.org
17934 L:      linuxppc-dev@lists.ozlabs.org
17935 S:      Maintained
17936 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17937 F:      drivers/net/ethernet/toshiba/spider_net*
17938
17939 SPMI SUBSYSTEM
17940 M:      Stephen Boyd <sboyd@kernel.org>
17941 L:      linux-kernel@vger.kernel.org
17942 S:      Maintained
17943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17944 F:      Documentation/devicetree/bindings/spmi/
17945 F:      drivers/spmi/
17946 F:      include/dt-bindings/spmi/spmi.h
17947 F:      include/linux/spmi.h
17948 F:      include/trace/events/spmi.h
17949
17950 SPU FILE SYSTEM
17951 M:      Jeremy Kerr <jk@ozlabs.org>
17952 L:      linuxppc-dev@lists.ozlabs.org
17953 S:      Supported
17954 W:      http://www.ibm.com/developerworks/power/cell/
17955 F:      Documentation/filesystems/spufs/spufs.rst
17956 F:      arch/powerpc/platforms/cell/spufs/
17957
17958 SQUASHFS FILE SYSTEM
17959 M:      Phillip Lougher <phillip@squashfs.org.uk>
17960 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17961 S:      Maintained
17962 W:      http://squashfs.org.uk
17963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17964 F:      Documentation/filesystems/squashfs.rst
17965 F:      fs/squashfs/
17966
17967 SRM (Alpha) environment access
17968 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17969 S:      Maintained
17970 F:      arch/alpha/kernel/srm_env.c
17971
17972 ST LSM6DSx IMU IIO DRIVER
17973 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17974 L:      linux-iio@vger.kernel.org
17975 S:      Maintained
17976 W:      http://www.st.com/
17977 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17978 F:      drivers/iio/imu/st_lsm6dsx/
17979
17980 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17981 M:      Mickael Guene <mickael.guene@st.com>
17982 L:      linux-media@vger.kernel.org
17983 S:      Maintained
17984 T:      git git://linuxtv.org/media_tree.git
17985 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17986 F:      drivers/media/i2c/st-mipid02.c
17987
17988 ST STM32 I2C/SMBUS DRIVER
17989 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17990 M:      Alain Volmat <alain.volmat@foss.st.com>
17991 L:      linux-i2c@vger.kernel.org
17992 S:      Maintained
17993 F:      drivers/i2c/busses/i2c-stm32*
17994
17995 ST STM32 SPI DRIVER
17996 M:      Alain Volmat <alain.volmat@foss.st.com>
17997 L:      linux-spi@vger.kernel.org
17998 S:      Maintained
17999 F:      drivers/spi/spi-stm32.c
18000
18001 ST STPDDC60 DRIVER
18002 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18003 L:      linux-hwmon@vger.kernel.org
18004 S:      Maintained
18005 F:      Documentation/hwmon/stpddc60.rst
18006 F:      drivers/hwmon/pmbus/stpddc60.c
18007
18008 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18009 M:      Song Qiang <songqiang1304521@gmail.com>
18010 L:      linux-iio@vger.kernel.org
18011 S:      Maintained
18012 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18013 F:      drivers/iio/proximity/vl53l0x-i2c.c
18014
18015 STABLE BRANCH
18016 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18017 M:      Sasha Levin <sashal@kernel.org>
18018 L:      stable@vger.kernel.org
18019 S:      Supported
18020 F:      Documentation/process/stable-kernel-rules.rst
18021
18022 STAGING - ATOMISP DRIVER
18023 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18024 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18025 L:      linux-media@vger.kernel.org
18026 S:      Maintained
18027 F:      drivers/staging/media/atomisp/
18028
18029 STAGING - FIELDBUS SUBSYSTEM
18030 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18031 S:      Maintained
18032 F:      drivers/staging/fieldbus/*
18033 F:      drivers/staging/fieldbus/Documentation/
18034
18035 STAGING - HMS ANYBUS-S BUS
18036 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18037 S:      Maintained
18038 F:      drivers/staging/fieldbus/anybuss/
18039
18040 STAGING - INDUSTRIAL IO
18041 M:      Jonathan Cameron <jic23@kernel.org>
18042 L:      linux-iio@vger.kernel.org
18043 S:      Odd Fixes
18044 F:      Documentation/devicetree/bindings/staging/iio/
18045 F:      drivers/staging/iio/
18046
18047 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18048 M:      Marc Dietrich <marvin24@gmx.de>
18049 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18050 L:      linux-tegra@vger.kernel.org
18051 S:      Maintained
18052 F:      drivers/staging/nvec/
18053
18054 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18055 M:      Jens Frederich <jfrederich@gmail.com>
18056 M:      Jon Nettleton <jon.nettleton@gmail.com>
18057 S:      Maintained
18058 W:      http://wiki.laptop.org/go/DCON
18059 F:      drivers/staging/olpc_dcon/
18060
18061 STAGING - REALTEK RTL8188EU DRIVERS
18062 M:      Larry Finger <Larry.Finger@lwfinger.net>
18063 M:      Phillip Potter <phil@philpotter.co.uk>
18064 S:      Supported
18065 F:      drivers/staging/r8188eu/
18066
18067 STAGING - REALTEK RTL8712U DRIVERS
18068 M:      Larry Finger <Larry.Finger@lwfinger.net>
18069 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18070 S:      Odd Fixes
18071 F:      drivers/staging/rtl8712/
18072
18073 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18074 M:      Michael Hennerich <michael.hennerich@analog.com>
18075 L:      linux-fbdev@vger.kernel.org
18076 S:      Supported
18077 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18078 F:      drivers/staging/fbtft/fb_seps525.c
18079
18080 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18081 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18082 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18083 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18084 L:      linux-fbdev@vger.kernel.org
18085 S:      Maintained
18086 F:      drivers/staging/sm750fb/
18087
18088 STAGING - VIA VT665X DRIVERS
18089 M:      Forest Bond <forest@alittletooquiet.net>
18090 S:      Odd Fixes
18091 F:      drivers/staging/vt665?/
18092
18093 STAGING SUBSYSTEM
18094 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18095 L:      linux-staging@lists.linux.dev
18096 S:      Supported
18097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18098 F:      drivers/staging/
18099
18100 STARFIRE/DURALAN NETWORK DRIVER
18101 M:      Ion Badulescu <ionut@badula.org>
18102 S:      Odd Fixes
18103 F:      drivers/net/ethernet/adaptec/starfire*
18104
18105 STATIC BRANCH/CALL
18106 M:      Peter Zijlstra <peterz@infradead.org>
18107 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18108 M:      Jason Baron <jbaron@akamai.com>
18109 R:      Steven Rostedt <rostedt@goodmis.org>
18110 R:      Ard Biesheuvel <ardb@kernel.org>
18111 S:      Supported
18112 F:      arch/*/include/asm/jump_label*.h
18113 F:      arch/*/include/asm/static_call*.h
18114 F:      arch/*/kernel/jump_label.c
18115 F:      arch/*/kernel/static_call.c
18116 F:      include/linux/jump_label*.h
18117 F:      include/linux/static_call*.h
18118 F:      kernel/jump_label.c
18119 F:      kernel/static_call.c
18120
18121 STI AUDIO (ASoC) DRIVERS
18122 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18123 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18124 S:      Maintained
18125 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18126 F:      sound/soc/sti/
18127
18128 STI CEC DRIVER
18129 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
18130 S:      Maintained
18131 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18132 F:      drivers/media/cec/platform/sti/
18133
18134 STK1160 USB VIDEO CAPTURE DRIVER
18135 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18136 L:      linux-media@vger.kernel.org
18137 S:      Maintained
18138 T:      git git://linuxtv.org/media_tree.git
18139 F:      drivers/media/usb/stk1160/
18140
18141 STM32 AUDIO (ASoC) DRIVERS
18142 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18143 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18144 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18145 S:      Maintained
18146 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18147 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18148 F:      sound/soc/stm/
18149
18150 STM32 TIMER/LPTIMER DRIVERS
18151 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18152 S:      Maintained
18153 F:      Documentation/ABI/testing/*timer-stm32
18154 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18155 F:      drivers/*/stm32-*timer*
18156 F:      drivers/pwm/pwm-stm32*
18157 F:      include/linux/*/stm32-*tim*
18158
18159 STMMAC ETHERNET DRIVER
18160 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18161 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18162 M:      Jose Abreu <joabreu@synopsys.com>
18163 L:      netdev@vger.kernel.org
18164 S:      Supported
18165 W:      http://www.stlinux.com
18166 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18167 F:      drivers/net/ethernet/stmicro/stmmac/
18168
18169 SUN3/3X
18170 M:      Sam Creasey <sammy@sammy.net>
18171 S:      Maintained
18172 W:      http://sammy.net/sun3/
18173 F:      arch/m68k/include/asm/sun3*
18174 F:      arch/m68k/kernel/*sun3*
18175 F:      arch/m68k/sun3*/
18176 F:      drivers/net/ethernet/i825xx/sun3*
18177
18178 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18179 M:      Hans de Goede <hdegoede@redhat.com>
18180 L:      linux-input@vger.kernel.org
18181 S:      Maintained
18182 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18183 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18184
18185 SUNDANCE NETWORK DRIVER
18186 M:      Denis Kirjanov <kda@linux-powerpc.org>
18187 L:      netdev@vger.kernel.org
18188 S:      Maintained
18189 F:      drivers/net/ethernet/dlink/sundance.c
18190
18191 SUPERH
18192 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18193 M:      Rich Felker <dalias@libc.org>
18194 L:      linux-sh@vger.kernel.org
18195 S:      Maintained
18196 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18197 F:      Documentation/sh/
18198 F:      arch/sh/
18199 F:      drivers/sh/
18200
18201 SUSPEND TO RAM
18202 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18203 M:      Len Brown <len.brown@intel.com>
18204 M:      Pavel Machek <pavel@ucw.cz>
18205 L:      linux-pm@vger.kernel.org
18206 S:      Supported
18207 B:      https://bugzilla.kernel.org
18208 F:      Documentation/power/
18209 F:      arch/x86/kernel/acpi/
18210 F:      drivers/base/power/
18211 F:      include/linux/freezer.h
18212 F:      include/linux/pm.h
18213 F:      include/linux/suspend.h
18214 F:      kernel/power/
18215
18216 SVGA HANDLING
18217 M:      Martin Mares <mj@ucw.cz>
18218 L:      linux-video@atrey.karlin.mff.cuni.cz
18219 S:      Maintained
18220 F:      Documentation/admin-guide/svga.rst
18221 F:      arch/x86/boot/video*
18222
18223 SWIOTLB SUBSYSTEM
18224 M:      Christoph Hellwig <hch@infradead.org>
18225 L:      iommu@lists.linux-foundation.org
18226 S:      Supported
18227 W:      http://git.infradead.org/users/hch/dma-mapping.git
18228 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18229 F:      arch/*/kernel/pci-swiotlb.c
18230 F:      include/linux/swiotlb.h
18231 F:      kernel/dma/swiotlb.c
18232
18233 SWITCHDEV
18234 M:      Jiri Pirko <jiri@resnulli.us>
18235 M:      Ivan Vecera <ivecera@redhat.com>
18236 L:      netdev@vger.kernel.org
18237 S:      Supported
18238 F:      include/net/switchdev.h
18239 F:      net/switchdev/
18240
18241 SY8106A REGULATOR DRIVER
18242 M:      Icenowy Zheng <icenowy@aosc.io>
18243 S:      Maintained
18244 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18245 F:      drivers/regulator/sy8106a-regulator.c
18246
18247 SYNC FILE FRAMEWORK
18248 M:      Sumit Semwal <sumit.semwal@linaro.org>
18249 R:      Gustavo Padovan <gustavo@padovan.org>
18250 L:      linux-media@vger.kernel.org
18251 L:      dri-devel@lists.freedesktop.org
18252 S:      Maintained
18253 T:      git git://anongit.freedesktop.org/drm/drm-misc
18254 F:      Documentation/driver-api/sync_file.rst
18255 F:      drivers/dma-buf/dma-fence*
18256 F:      drivers/dma-buf/sw_sync.c
18257 F:      drivers/dma-buf/sync_*
18258 F:      include/linux/sync_file.h
18259 F:      include/uapi/linux/sync_file.h
18260
18261 SYNOPSYS ARC ARCHITECTURE
18262 M:      Vineet Gupta <vgupta@kernel.org>
18263 L:      linux-snps-arc@lists.infradead.org
18264 S:      Supported
18265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18266 F:      Documentation/devicetree/bindings/arc/*
18267 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18268 F:      arch/arc/
18269 F:      drivers/clocksource/arc_timer.c
18270 F:      drivers/tty/serial/arc_uart.c
18271
18272 SYNOPSYS ARC HSDK SDP pll clock driver
18273 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18274 S:      Supported
18275 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18276 F:      drivers/clk/clk-hsdk-pll.c
18277
18278 SYNOPSYS ARC SDP clock driver
18279 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18280 S:      Supported
18281 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18282 F:      drivers/clk/axs10x/*
18283
18284 SYNOPSYS ARC SDP platform support
18285 M:      Alexey Brodkin <abrodkin@synopsys.com>
18286 S:      Supported
18287 F:      Documentation/devicetree/bindings/arc/axs10*
18288 F:      arch/arc/boot/dts/ax*
18289 F:      arch/arc/plat-axs10x
18290
18291 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18292 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18293 S:      Supported
18294 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18295 F:      drivers/reset/reset-axs10x.c
18296
18297 SYNOPSYS CREG GPIO DRIVER
18298 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18299 S:      Maintained
18300 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18301 F:      drivers/gpio/gpio-creg-snps.c
18302
18303 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18304 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18305 S:      Maintained
18306 F:      drivers/tty/serial/8250/8250_dw.c
18307 F:      drivers/tty/serial/8250/8250_dwlib.*
18308 F:      drivers/tty/serial/8250/8250_lpss.c
18309
18310 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18311 M:      Hoan Tran <hoan@os.amperecomputing.com>
18312 M:      Serge Semin <fancer.lancer@gmail.com>
18313 L:      linux-gpio@vger.kernel.org
18314 S:      Maintained
18315 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18316 F:      drivers/gpio/gpio-dwapb.c
18317
18318 SYNOPSYS DESIGNWARE APB SSI DRIVER
18319 M:      Serge Semin <fancer.lancer@gmail.com>
18320 L:      linux-spi@vger.kernel.org
18321 S:      Supported
18322 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18323 F:      drivers/spi/spi-dw*
18324
18325 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18326 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18327 S:      Maintained
18328 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18329 F:      drivers/dma/dw-axi-dmac/
18330
18331 SYNOPSYS DESIGNWARE DMAC DRIVER
18332 M:      Viresh Kumar <vireshk@kernel.org>
18333 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18334 S:      Maintained
18335 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18336 F:      drivers/dma/dw/
18337 F:      include/dt-bindings/dma/dw-dmac.h
18338 F:      include/linux/dma/dw.h
18339 F:      include/linux/platform_data/dma-dw.h
18340
18341 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18342 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18343 L:      netdev@vger.kernel.org
18344 S:      Supported
18345 F:      drivers/net/ethernet/synopsys/
18346
18347 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18348 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18349 L:      netdev@vger.kernel.org
18350 S:      Supported
18351 F:      drivers/net/pcs/pcs-xpcs.c
18352 F:      drivers/net/pcs/pcs-xpcs.h
18353 F:      include/linux/pcs/pcs-xpcs.h
18354
18355 SYNOPSYS DESIGNWARE I2C DRIVER
18356 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18357 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18358 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18359 L:      linux-i2c@vger.kernel.org
18360 S:      Maintained
18361 F:      drivers/i2c/busses/i2c-designware-*
18362
18363 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18364 M:      Jaehoon Chung <jh80.chung@samsung.com>
18365 L:      linux-mmc@vger.kernel.org
18366 S:      Maintained
18367 F:      drivers/mmc/host/dw_mmc*
18368
18369 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18370 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18371 S:      Supported
18372 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18373 F:      drivers/reset/reset-hsdk.c
18374 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18375
18376 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18377 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18378 M:      Manjunath M B <manjumb@synopsys.com>
18379 L:      linux-mmc@vger.kernel.org
18380 S:      Maintained
18381 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18382
18383 SYSTEM CONFIGURATION (SYSCON)
18384 M:      Lee Jones <lee.jones@linaro.org>
18385 M:      Arnd Bergmann <arnd@arndb.de>
18386 S:      Supported
18387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18388 F:      drivers/mfd/syscon.c
18389
18390 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18391 M:      Sudeep Holla <sudeep.holla@arm.com>
18392 R:      Cristian Marussi <cristian.marussi@arm.com>
18393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18394 S:      Maintained
18395 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18396 F:      drivers/clk/clk-sc[mp]i.c
18397 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18398 F:      drivers/firmware/arm_scmi/
18399 F:      drivers/firmware/arm_scpi.c
18400 F:      drivers/regulator/scmi-regulator.c
18401 F:      drivers/reset/reset-scmi.c
18402 F:      include/linux/sc[mp]i_protocol.h
18403 F:      include/trace/events/scmi.h
18404 F:      include/uapi/linux/virtio_scmi.h
18405
18406 SYSTEM RESET/SHUTDOWN DRIVERS
18407 M:      Sebastian Reichel <sre@kernel.org>
18408 L:      linux-pm@vger.kernel.org
18409 S:      Maintained
18410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18411 F:      Documentation/devicetree/bindings/power/reset/
18412 F:      drivers/power/reset/
18413
18414 SYSTEM TRACE MODULE CLASS
18415 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18416 S:      Maintained
18417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18418 F:      Documentation/trace/stm.rst
18419 F:      drivers/hwtracing/stm/
18420 F:      include/linux/stm.h
18421 F:      include/uapi/linux/stm.h
18422
18423 SYSTEM76 ACPI DRIVER
18424 M:      Jeremy Soller <jeremy@system76.com>
18425 M:      System76 Product Development <productdev@system76.com>
18426 L:      platform-driver-x86@vger.kernel.org
18427 S:      Maintained
18428 F:      drivers/platform/x86/system76_acpi.c
18429
18430 SYSV FILESYSTEM
18431 M:      Christoph Hellwig <hch@infradead.org>
18432 S:      Maintained
18433 F:      Documentation/filesystems/sysv-fs.rst
18434 F:      fs/sysv/
18435 F:      include/linux/sysv_fs.h
18436
18437 TASKSTATS STATISTICS INTERFACE
18438 M:      Balbir Singh <bsingharora@gmail.com>
18439 S:      Maintained
18440 F:      Documentation/accounting/taskstats*
18441 F:      include/linux/taskstats*
18442 F:      kernel/taskstats.c
18443
18444 TC subsystem
18445 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18446 M:      Cong Wang <xiyou.wangcong@gmail.com>
18447 M:      Jiri Pirko <jiri@resnulli.us>
18448 L:      netdev@vger.kernel.org
18449 S:      Maintained
18450 F:      include/net/pkt_cls.h
18451 F:      include/net/pkt_sched.h
18452 F:      include/net/tc_act/
18453 F:      include/uapi/linux/pkt_cls.h
18454 F:      include/uapi/linux/pkt_sched.h
18455 F:      include/uapi/linux/tc_act/
18456 F:      include/uapi/linux/tc_ematch/
18457 F:      net/sched/
18458
18459 TC90522 MEDIA DRIVER
18460 M:      Akihiro Tsukada <tskd08@gmail.com>
18461 L:      linux-media@vger.kernel.org
18462 S:      Odd Fixes
18463 F:      drivers/media/dvb-frontends/tc90522*
18464
18465 TCP LOW PRIORITY MODULE
18466 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18467 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18468 S:      Maintained
18469 W:      http://tcp-lp-mod.sourceforge.net/
18470 F:      net/ipv4/tcp_lp.c
18471
18472 TDA10071 MEDIA DRIVER
18473 M:      Antti Palosaari <crope@iki.fi>
18474 L:      linux-media@vger.kernel.org
18475 S:      Maintained
18476 W:      https://linuxtv.org
18477 W:      http://palosaari.fi/linux/
18478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18479 T:      git git://linuxtv.org/anttip/media_tree.git
18480 F:      drivers/media/dvb-frontends/tda10071*
18481
18482 TDA18212 MEDIA DRIVER
18483 M:      Antti Palosaari <crope@iki.fi>
18484 L:      linux-media@vger.kernel.org
18485 S:      Maintained
18486 W:      https://linuxtv.org
18487 W:      http://palosaari.fi/linux/
18488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18489 T:      git git://linuxtv.org/anttip/media_tree.git
18490 F:      drivers/media/tuners/tda18212*
18491
18492 TDA18218 MEDIA DRIVER
18493 M:      Antti Palosaari <crope@iki.fi>
18494 L:      linux-media@vger.kernel.org
18495 S:      Maintained
18496 W:      https://linuxtv.org
18497 W:      http://palosaari.fi/linux/
18498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18499 T:      git git://linuxtv.org/anttip/media_tree.git
18500 F:      drivers/media/tuners/tda18218*
18501
18502 TDA18250 MEDIA DRIVER
18503 M:      Olli Salonen <olli.salonen@iki.fi>
18504 L:      linux-media@vger.kernel.org
18505 S:      Maintained
18506 W:      https://linuxtv.org
18507 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18508 T:      git git://linuxtv.org/media_tree.git
18509 F:      drivers/media/tuners/tda18250*
18510
18511 TDA18271 MEDIA DRIVER
18512 M:      Michael Krufky <mkrufky@linuxtv.org>
18513 L:      linux-media@vger.kernel.org
18514 S:      Maintained
18515 W:      https://linuxtv.org
18516 W:      http://github.com/mkrufky
18517 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18518 T:      git git://linuxtv.org/mkrufky/tuners.git
18519 F:      drivers/media/tuners/tda18271*
18520
18521 TDA1997x MEDIA DRIVER
18522 M:      Tim Harvey <tharvey@gateworks.com>
18523 L:      linux-media@vger.kernel.org
18524 S:      Maintained
18525 W:      https://linuxtv.org
18526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18527 F:      drivers/media/i2c/tda1997x.*
18528
18529 TDA827x MEDIA DRIVER
18530 M:      Michael Krufky <mkrufky@linuxtv.org>
18531 L:      linux-media@vger.kernel.org
18532 S:      Maintained
18533 W:      https://linuxtv.org
18534 W:      http://github.com/mkrufky
18535 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18536 T:      git git://linuxtv.org/mkrufky/tuners.git
18537 F:      drivers/media/tuners/tda8290.*
18538
18539 TDA8290 MEDIA DRIVER
18540 M:      Michael Krufky <mkrufky@linuxtv.org>
18541 L:      linux-media@vger.kernel.org
18542 S:      Maintained
18543 W:      https://linuxtv.org
18544 W:      http://github.com/mkrufky
18545 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18546 T:      git git://linuxtv.org/mkrufky/tuners.git
18547 F:      drivers/media/tuners/tda8290.*
18548
18549 TDA9840 MEDIA DRIVER
18550 M:      Hans Verkuil <hverkuil@xs4all.nl>
18551 L:      linux-media@vger.kernel.org
18552 S:      Maintained
18553 W:      https://linuxtv.org
18554 T:      git git://linuxtv.org/media_tree.git
18555 F:      drivers/media/i2c/tda9840*
18556
18557 TEA5761 TUNER DRIVER
18558 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18559 L:      linux-media@vger.kernel.org
18560 S:      Odd fixes
18561 W:      https://linuxtv.org
18562 T:      git git://linuxtv.org/media_tree.git
18563 F:      drivers/media/tuners/tea5761.*
18564
18565 TEA5767 TUNER DRIVER
18566 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18567 L:      linux-media@vger.kernel.org
18568 S:      Maintained
18569 W:      https://linuxtv.org
18570 T:      git git://linuxtv.org/media_tree.git
18571 F:      drivers/media/tuners/tea5767.*
18572
18573 TEA6415C MEDIA DRIVER
18574 M:      Hans Verkuil <hverkuil@xs4all.nl>
18575 L:      linux-media@vger.kernel.org
18576 S:      Maintained
18577 W:      https://linuxtv.org
18578 T:      git git://linuxtv.org/media_tree.git
18579 F:      drivers/media/i2c/tea6415c*
18580
18581 TEA6420 MEDIA DRIVER
18582 M:      Hans Verkuil <hverkuil@xs4all.nl>
18583 L:      linux-media@vger.kernel.org
18584 S:      Maintained
18585 W:      https://linuxtv.org
18586 T:      git git://linuxtv.org/media_tree.git
18587 F:      drivers/media/i2c/tea6420*
18588
18589 TEAM DRIVER
18590 M:      Jiri Pirko <jiri@resnulli.us>
18591 L:      netdev@vger.kernel.org
18592 S:      Supported
18593 F:      drivers/net/team/
18594 F:      include/linux/if_team.h
18595 F:      include/uapi/linux/if_team.h
18596
18597 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18598 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18599 S:      Maintained
18600 F:      arch/x86/platform/ts5500/
18601
18602 TECHNOTREND USB IR RECEIVER
18603 M:      Sean Young <sean@mess.org>
18604 L:      linux-media@vger.kernel.org
18605 S:      Maintained
18606 F:      drivers/media/rc/ttusbir.c
18607
18608 TECHWELL TW9910 VIDEO DECODER
18609 L:      linux-media@vger.kernel.org
18610 S:      Orphan
18611 F:      drivers/media/i2c/tw9910.c
18612 F:      include/media/i2c/tw9910.h
18613
18614 TEE SUBSYSTEM
18615 M:      Jens Wiklander <jens.wiklander@linaro.org>
18616 R:      Sumit Garg <sumit.garg@linaro.org>
18617 L:      op-tee@lists.trustedfirmware.org
18618 S:      Maintained
18619 F:      Documentation/staging/tee.rst
18620 F:      drivers/tee/
18621 F:      include/linux/tee_drv.h
18622 F:      include/uapi/linux/tee.h
18623
18624 TEGRA ARCHITECTURE SUPPORT
18625 M:      Thierry Reding <thierry.reding@gmail.com>
18626 M:      Jonathan Hunter <jonathanh@nvidia.com>
18627 L:      linux-tegra@vger.kernel.org
18628 S:      Supported
18629 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18631 N:      [^a-z]tegra
18632
18633 TEGRA CLOCK DRIVER
18634 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18635 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18636 S:      Supported
18637 F:      drivers/clk/tegra/
18638
18639 TEGRA DMA DRIVERS
18640 M:      Laxman Dewangan <ldewangan@nvidia.com>
18641 M:      Jon Hunter <jonathanh@nvidia.com>
18642 S:      Supported
18643 F:      drivers/dma/tegra*
18644
18645 TEGRA I2C DRIVER
18646 M:      Laxman Dewangan <ldewangan@nvidia.com>
18647 R:      Dmitry Osipenko <digetx@gmail.com>
18648 S:      Supported
18649 F:      drivers/i2c/busses/i2c-tegra.c
18650
18651 TEGRA IOMMU DRIVERS
18652 M:      Thierry Reding <thierry.reding@gmail.com>
18653 R:      Krishna Reddy <vdumpa@nvidia.com>
18654 L:      linux-tegra@vger.kernel.org
18655 S:      Supported
18656 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18657 F:      drivers/iommu/tegra*
18658
18659 TEGRA KBC DRIVER
18660 M:      Laxman Dewangan <ldewangan@nvidia.com>
18661 S:      Supported
18662 F:      drivers/input/keyboard/tegra-kbc.c
18663
18664 TEGRA NAND DRIVER
18665 M:      Stefan Agner <stefan@agner.ch>
18666 M:      Lucas Stach <dev@lynxeye.de>
18667 S:      Maintained
18668 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18669 F:      drivers/mtd/nand/raw/tegra_nand.c
18670
18671 TEGRA PWM DRIVER
18672 M:      Thierry Reding <thierry.reding@gmail.com>
18673 S:      Supported
18674 F:      drivers/pwm/pwm-tegra.c
18675
18676 TEGRA SERIAL DRIVER
18677 M:      Laxman Dewangan <ldewangan@nvidia.com>
18678 S:      Supported
18679 F:      drivers/tty/serial/serial-tegra.c
18680
18681 TEGRA SPI DRIVER
18682 M:      Laxman Dewangan <ldewangan@nvidia.com>
18683 S:      Supported
18684 F:      drivers/spi/spi-tegra*
18685
18686 TEGRA QUAD SPI DRIVER
18687 M:      Thierry Reding <thierry.reding@gmail.com>
18688 M:      Jonathan Hunter <jonathanh@nvidia.com>
18689 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18690 L:      linux-tegra@vger.kernel.org
18691 S:      Maintained
18692 F:      drivers/spi/spi-tegra210-quad.c
18693
18694 TEGRA VIDEO DRIVER
18695 M:      Thierry Reding <thierry.reding@gmail.com>
18696 M:      Jonathan Hunter <jonathanh@nvidia.com>
18697 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18698 L:      linux-media@vger.kernel.org
18699 L:      linux-tegra@vger.kernel.org
18700 S:      Maintained
18701 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18702 F:      drivers/staging/media/tegra-video/
18703
18704 TEGRA XUSB PADCTL DRIVER
18705 M:      JC Kuo <jckuo@nvidia.com>
18706 S:      Supported
18707 F:      drivers/phy/tegra/xusb*
18708
18709 TEHUTI ETHERNET DRIVER
18710 M:      Andy Gospodarek <andy@greyhouse.net>
18711 L:      netdev@vger.kernel.org
18712 S:      Supported
18713 F:      drivers/net/ethernet/tehuti/*
18714
18715 TELECOM CLOCK DRIVER FOR MCPL0010
18716 M:      Mark Gross <markgross@kernel.org>
18717 S:      Supported
18718 F:      drivers/char/tlclk.c
18719
18720 TEMPO SEMICONDUCTOR DRIVERS
18721 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18722 S:      Maintained
18723 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18724 F:      sound/soc/codecs/tscs*.c
18725 F:      sound/soc/codecs/tscs*.h
18726
18727 TENSILICA XTENSA PORT (xtensa)
18728 M:      Chris Zankel <chris@zankel.net>
18729 M:      Max Filippov <jcmvbkbc@gmail.com>
18730 L:      linux-xtensa@linux-xtensa.org
18731 S:      Maintained
18732 T:      git git://github.com/czankel/xtensa-linux.git
18733 F:      arch/xtensa/
18734 F:      drivers/irqchip/irq-xtensa-*
18735
18736 TEXAS INSTRUMENTS ASoC DRIVERS
18737 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18738 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18739 S:      Maintained
18740 F:      sound/soc/ti/
18741
18742 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18743 M:      Ricardo Ribalda <ribalda@kernel.org>
18744 L:      linux-iio@vger.kernel.org
18745 S:      Supported
18746 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18747 F:      drivers/iio/dac/ti-dac7612.c
18748
18749 TEXAS INSTRUMENTS DMA DRIVERS
18750 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18751 L:      dmaengine@vger.kernel.org
18752 S:      Maintained
18753 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18754 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18755 F:      Documentation/devicetree/bindings/dma/ti/
18756 F:      drivers/dma/ti/
18757 X:      drivers/dma/ti/cppi41.c
18758 F:      include/linux/dma/k3-udma-glue.h
18759 F:      include/linux/dma/ti-cppi5.h
18760 F:      include/linux/dma/k3-psil.h
18761
18762 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18763 M:      Nishanth Menon <nm@ti.com>
18764 M:      Tero Kristo <kristo@kernel.org>
18765 M:      Santosh Shilimkar <ssantosh@kernel.org>
18766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18767 S:      Maintained
18768 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18769 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18770 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18771 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18772 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18773 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18774 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18775 F:      drivers/clk/keystone/sci-clk.c
18776 F:      drivers/firmware/ti_sci*
18777 F:      drivers/irqchip/irq-ti-sci-inta.c
18778 F:      drivers/irqchip/irq-ti-sci-intr.c
18779 F:      drivers/reset/reset-ti-sci.c
18780 F:      drivers/soc/ti/ti_sci_inta_msi.c
18781 F:      drivers/soc/ti/ti_sci_pm_domains.c
18782 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18783 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18784 F:      include/linux/soc/ti/ti_sci_protocol.h
18785
18786 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18787 M:      Robert Marko <robert.marko@sartura.hr>
18788 M:      Luka Perkov <luka.perkov@sartura.hr>
18789 L:      linux-hwmon@vger.kernel.org
18790 S:      Maintained
18791 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18792 F:      Documentation/hwmon/tps23861.rst
18793 F:      drivers/hwmon/tps23861.c
18794
18795 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18796 M:      Puranjay Mohan <puranjay12@gmail.com>
18797 L:      linux-iio@vger.kernel.org
18798 S:      Supported
18799 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18800 F:      drivers/iio/temperature/tmp117.c
18801
18802 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18803 M:      Hans Verkuil <hverkuil@xs4all.nl>
18804 L:      linux-media@vger.kernel.org
18805 S:      Maintained
18806 W:      https://linuxtv.org
18807 T:      git git://linuxtv.org/media_tree.git
18808 F:      drivers/media/radio/radio-raremono.c
18809
18810 THERMAL
18811 M:      Rafael J. Wysocki <rafael@kernel.org>
18812 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18813 R:      Amit Kucheria <amitk@kernel.org>
18814 R:      Zhang Rui <rui.zhang@intel.com>
18815 L:      linux-pm@vger.kernel.org
18816 S:      Supported
18817 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18818 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18819 F:      Documentation/ABI/testing/sysfs-class-thermal
18820 F:      Documentation/devicetree/bindings/thermal/
18821 F:      Documentation/driver-api/thermal/
18822 F:      drivers/thermal/
18823 F:      include/linux/cpu_cooling.h
18824 F:      include/linux/thermal.h
18825 F:      include/uapi/linux/thermal.h
18826 F:      tools/thermal/
18827
18828 THERMAL DRIVER FOR AMLOGIC SOCS
18829 M:      Guillaume La Roque <glaroque@baylibre.com>
18830 L:      linux-pm@vger.kernel.org
18831 L:      linux-amlogic@lists.infradead.org
18832 S:      Supported
18833 W:      http://linux-meson.com/
18834 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18835 F:      drivers/thermal/amlogic_thermal.c
18836
18837 THERMAL/CPU_COOLING
18838 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18839 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18840 M:      Viresh Kumar <viresh.kumar@linaro.org>
18841 R:      Lukasz Luba <lukasz.luba@arm.com>
18842 L:      linux-pm@vger.kernel.org
18843 S:      Supported
18844 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18845 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18846 F:      drivers/thermal/cpufreq_cooling.c
18847 F:      drivers/thermal/cpuidle_cooling.c
18848 F:      include/linux/cpu_cooling.h
18849
18850 THERMAL/POWER_ALLOCATOR
18851 M:      Lukasz Luba <lukasz.luba@arm.com>
18852 L:      linux-pm@vger.kernel.org
18853 S:      Maintained
18854 F:      Documentation/driver-api/thermal/power_allocator.rst
18855 F:      drivers/thermal/gov_power_allocator.c
18856 F:      include/trace/events/thermal_power_allocator.h
18857
18858 THINKPAD ACPI EXTRAS DRIVER
18859 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18860 L:      ibm-acpi-devel@lists.sourceforge.net
18861 L:      platform-driver-x86@vger.kernel.org
18862 S:      Maintained
18863 W:      http://ibm-acpi.sourceforge.net
18864 W:      http://thinkwiki.org/wiki/Ibm-acpi
18865 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18866 F:      drivers/platform/x86/thinkpad_acpi.c
18867
18868 THINKPAD LMI DRIVER
18869 M:      Mark Pearson <markpearson@lenovo.com>
18870 L:      platform-driver-x86@vger.kernel.org
18871 S:      Maintained
18872 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18873 F:      drivers/platform/x86/think-lmi.?
18874
18875 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18876 M:      Isaac Hazan <isaac.hazan@intel.com>
18877 L:      linux-usb@vger.kernel.org
18878 S:      Maintained
18879 F:      drivers/thunderbolt/dma_test.c
18880
18881 THUNDERBOLT DRIVER
18882 M:      Andreas Noever <andreas.noever@gmail.com>
18883 M:      Michael Jamet <michael.jamet@intel.com>
18884 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18885 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18886 L:      linux-usb@vger.kernel.org
18887 S:      Maintained
18888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18889 F:      Documentation/admin-guide/thunderbolt.rst
18890 F:      drivers/thunderbolt/
18891 F:      include/linux/thunderbolt.h
18892
18893 THUNDERBOLT NETWORK DRIVER
18894 M:      Michael Jamet <michael.jamet@intel.com>
18895 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18896 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18897 L:      netdev@vger.kernel.org
18898 S:      Maintained
18899 F:      drivers/net/thunderbolt.c
18900
18901 THUNDERX GPIO DRIVER
18902 M:      Robert Richter <rric@kernel.org>
18903 S:      Odd Fixes
18904 F:      drivers/gpio/gpio-thunderx.c
18905
18906 TI ADS131E0X ADC SERIES DRIVER
18907 M:      Tomislav Denis <tomislav.denis@avl.com>
18908 L:      linux-iio@vger.kernel.org
18909 S:      Maintained
18910 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18911 F:      drivers/iio/adc/ti-ads131e08.c
18912
18913 TI AM437X VPFE DRIVER
18914 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18915 L:      linux-media@vger.kernel.org
18916 S:      Maintained
18917 W:      https://linuxtv.org
18918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18919 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18920 F:      drivers/media/platform/am437x/
18921
18922 TI BANDGAP AND THERMAL DRIVER
18923 M:      Eduardo Valentin <edubezval@gmail.com>
18924 M:      Keerthy <j-keerthy@ti.com>
18925 L:      linux-pm@vger.kernel.org
18926 L:      linux-omap@vger.kernel.org
18927 S:      Maintained
18928 F:      drivers/thermal/ti-soc-thermal/
18929
18930 TI BQ27XXX POWER SUPPLY DRIVER
18931 F:      drivers/power/supply/bq27xxx_battery.c
18932 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18933 F:      include/linux/power/bq27xxx_battery.h
18934
18935 TI CDCE706 CLOCK DRIVER
18936 M:      Max Filippov <jcmvbkbc@gmail.com>
18937 S:      Maintained
18938 F:      drivers/clk/clk-cdce706.c
18939
18940 TI CLOCK DRIVER
18941 M:      Tero Kristo <kristo@kernel.org>
18942 L:      linux-omap@vger.kernel.org
18943 S:      Odd Fixes
18944 F:      drivers/clk/ti/
18945 F:      include/linux/clk/ti.h
18946
18947 TI DAVINCI MACHINE SUPPORT
18948 M:      Sekhar Nori <nsekhar@ti.com>
18949 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18951 S:      Supported
18952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18953 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18954 F:      arch/arm/boot/dts/da850*
18955 F:      arch/arm/mach-davinci/
18956 F:      drivers/i2c/busses/i2c-davinci.c
18957
18958 TI DAVINCI SERIES CLOCK DRIVER
18959 M:      David Lechner <david@lechnology.com>
18960 R:      Sekhar Nori <nsekhar@ti.com>
18961 S:      Maintained
18962 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18963 F:      drivers/clk/davinci/
18964
18965 TI DAVINCI SERIES GPIO DRIVER
18966 M:      Keerthy <j-keerthy@ti.com>
18967 L:      linux-gpio@vger.kernel.org
18968 S:      Maintained
18969 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18970 F:      drivers/gpio/gpio-davinci.c
18971
18972 TI DAVINCI SERIES MEDIA DRIVER
18973 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18974 L:      linux-media@vger.kernel.org
18975 S:      Maintained
18976 W:      https://linuxtv.org
18977 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18978 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18979 F:      drivers/media/platform/davinci/
18980 F:      include/media/davinci/
18981
18982 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18983 R:      David Lechner <david@lechnology.com>
18984 L:      linux-iio@vger.kernel.org
18985 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18986 F:      drivers/counter/ti-eqep.c
18987
18988 TI ETHERNET SWITCH DRIVER (CPSW)
18989 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18990 L:      linux-omap@vger.kernel.org
18991 L:      netdev@vger.kernel.org
18992 S:      Maintained
18993 F:      drivers/net/ethernet/ti/cpsw*
18994 F:      drivers/net/ethernet/ti/davinci*
18995
18996 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18997 M:      Alex Dubov <oakad@yahoo.com>
18998 S:      Maintained
18999 W:      http://tifmxx.berlios.de/
19000 F:      drivers/memstick/host/tifm_ms.c
19001 F:      drivers/misc/tifm*
19002 F:      drivers/mmc/host/tifm_sd.c
19003 F:      include/linux/tifm.h
19004
19005 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19006 M:      Santosh Shilimkar <ssantosh@kernel.org>
19007 L:      linux-kernel@vger.kernel.org
19008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19009 S:      Maintained
19010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
19011 F:      drivers/soc/ti/*
19012
19013 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19014 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19015 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19016 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19017 S:      Maintained
19018 F:      sound/soc/codecs/isabelle*
19019 F:      sound/soc/codecs/lm49453*
19020
19021 TI PCM3060 ASoC CODEC DRIVER
19022 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19024 S:      Maintained
19025 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19026 F:      sound/soc/codecs/pcm3060*
19027
19028 TI TAS571X FAMILY ASoC CODEC DRIVER
19029 M:      Kevin Cernekee <cernekee@chromium.org>
19030 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19031 S:      Odd Fixes
19032 F:      sound/soc/codecs/tas571x*
19033
19034 TI TRF7970A NFC DRIVER
19035 M:      Mark Greer <mgreer@animalcreek.com>
19036 L:      linux-wireless@vger.kernel.org
19037 L:      linux-nfc@lists.01.org (subscribers-only)
19038 S:      Supported
19039 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19040 F:      drivers/nfc/trf7970a.c
19041
19042 TI TSC2046 ADC DRIVER
19043 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19044 R:      kernel@pengutronix.de
19045 L:      linux-iio@vger.kernel.org
19046 S:      Maintained
19047 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19048 F:      drivers/iio/adc/ti-tsc2046.c
19049
19050 TI TWL4030 SERIES SOC CODEC DRIVER
19051 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19052 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19053 S:      Maintained
19054 F:      sound/soc/codecs/twl4030*
19055
19056 TI VPE/CAL DRIVERS
19057 M:      Benoit Parrot <bparrot@ti.com>
19058 L:      linux-media@vger.kernel.org
19059 S:      Maintained
19060 W:      http://linuxtv.org/
19061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19062 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19063 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19064 F:      drivers/media/platform/ti-vpe/
19065
19066 TI WILINK WIRELESS DRIVERS
19067 L:      linux-wireless@vger.kernel.org
19068 S:      Orphan
19069 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19070 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19072 F:      drivers/net/wireless/ti/
19073 F:      include/linux/wl12xx.h
19074
19075 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19076 M:      John Stultz <john.stultz@linaro.org>
19077 M:      Thomas Gleixner <tglx@linutronix.de>
19078 R:      Stephen Boyd <sboyd@kernel.org>
19079 L:      linux-kernel@vger.kernel.org
19080 S:      Supported
19081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19082 F:      include/linux/clocksource.h
19083 F:      include/linux/time.h
19084 F:      include/linux/timex.h
19085 F:      include/uapi/linux/time.h
19086 F:      include/uapi/linux/timex.h
19087 F:      kernel/time/alarmtimer.c
19088 F:      kernel/time/clocksource.c
19089 F:      kernel/time/ntp.c
19090 F:      kernel/time/time*.c
19091 F:      tools/testing/selftests/timers/
19092
19093 TIPC NETWORK LAYER
19094 M:      Jon Maloy <jmaloy@redhat.com>
19095 M:      Ying Xue <ying.xue@windriver.com>
19096 L:      netdev@vger.kernel.org (core kernel code)
19097 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19098 S:      Maintained
19099 W:      http://tipc.sourceforge.net/
19100 F:      include/uapi/linux/tipc*.h
19101 F:      net/tipc/
19102
19103 TLAN NETWORK DRIVER
19104 M:      Samuel Chessman <chessman@tux.org>
19105 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19106 S:      Maintained
19107 W:      http://sourceforge.net/projects/tlan/
19108 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19109 F:      drivers/net/ethernet/ti/tlan.*
19110
19111 TM6000 VIDEO4LINUX DRIVER
19112 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19113 L:      linux-media@vger.kernel.org
19114 S:      Odd fixes
19115 W:      https://linuxtv.org
19116 T:      git git://linuxtv.org/media_tree.git
19117 F:      Documentation/admin-guide/media/tm6000*
19118 F:      drivers/media/usb/tm6000/
19119
19120 TMIO/SDHI MMC DRIVER
19121 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19122 L:      linux-mmc@vger.kernel.org
19123 S:      Supported
19124 F:      drivers/mmc/host/renesas_sdhi*
19125 F:      drivers/mmc/host/tmio_mmc*
19126 F:      include/linux/mfd/tmio.h
19127
19128 TMP401 HARDWARE MONITOR DRIVER
19129 M:      Guenter Roeck <linux@roeck-us.net>
19130 L:      linux-hwmon@vger.kernel.org
19131 S:      Maintained
19132 F:      Documentation/hwmon/tmp401.rst
19133 F:      drivers/hwmon/tmp401.c
19134
19135 TMP513 HARDWARE MONITOR DRIVER
19136 M:      Eric Tremblay <etremblay@distech-controls.com>
19137 L:      linux-hwmon@vger.kernel.org
19138 S:      Maintained
19139 F:      Documentation/hwmon/tmp513.rst
19140 F:      drivers/hwmon/tmp513.c
19141
19142 TMPFS (SHMEM FILESYSTEM)
19143 M:      Hugh Dickins <hughd@google.com>
19144 L:      linux-mm@kvack.org
19145 S:      Maintained
19146 F:      include/linux/shmem_fs.h
19147 F:      mm/shmem.c
19148
19149 TOMOYO SECURITY MODULE
19150 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19151 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19152 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19153 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19154 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19155 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19156 S:      Maintained
19157 W:      https://tomoyo.osdn.jp/
19158 F:      security/tomoyo/
19159
19160 TOPSTAR LAPTOP EXTRAS DRIVER
19161 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19162 L:      platform-driver-x86@vger.kernel.org
19163 S:      Maintained
19164 F:      drivers/platform/x86/topstar-laptop.c
19165
19166 TORTURE-TEST MODULES
19167 M:      Davidlohr Bueso <dave@stgolabs.net>
19168 M:      "Paul E. McKenney" <paulmck@kernel.org>
19169 M:      Josh Triplett <josh@joshtriplett.org>
19170 L:      linux-kernel@vger.kernel.org
19171 S:      Supported
19172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19173 F:      Documentation/RCU/torture.rst
19174 F:      kernel/locking/locktorture.c
19175 F:      kernel/rcu/rcuscale.c
19176 F:      kernel/rcu/rcutorture.c
19177 F:      kernel/rcu/refscale.c
19178 F:      kernel/torture.c
19179
19180 TOSHIBA ACPI EXTRAS DRIVER
19181 M:      Azael Avalos <coproscefalo@gmail.com>
19182 L:      platform-driver-x86@vger.kernel.org
19183 S:      Maintained
19184 F:      drivers/platform/x86/toshiba_acpi.c
19185
19186 TOSHIBA BLUETOOTH DRIVER
19187 M:      Azael Avalos <coproscefalo@gmail.com>
19188 L:      platform-driver-x86@vger.kernel.org
19189 S:      Maintained
19190 F:      drivers/platform/x86/toshiba_bluetooth.c
19191
19192 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19193 M:      Azael Avalos <coproscefalo@gmail.com>
19194 L:      platform-driver-x86@vger.kernel.org
19195 S:      Maintained
19196 F:      drivers/platform/x86/toshiba_haps.c
19197
19198 TOSHIBA SMM DRIVER
19199 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19200 S:      Maintained
19201 W:      http://www.buzzard.org.uk/toshiba/
19202 F:      drivers/char/toshiba.c
19203 F:      include/linux/toshiba.h
19204 F:      include/uapi/linux/toshiba.h
19205
19206 TOSHIBA TC358743 DRIVER
19207 M:      Mats Randgaard <matrandg@cisco.com>
19208 L:      linux-media@vger.kernel.org
19209 S:      Maintained
19210 F:      drivers/media/i2c/tc358743*
19211 F:      include/media/i2c/tc358743.h
19212
19213 TOSHIBA WMI HOTKEYS DRIVER
19214 M:      Azael Avalos <coproscefalo@gmail.com>
19215 L:      platform-driver-x86@vger.kernel.org
19216 S:      Maintained
19217 F:      drivers/platform/x86/toshiba-wmi.c
19218
19219 TPM DEVICE DRIVER
19220 M:      Peter Huewe <peterhuewe@gmx.de>
19221 M:      Jarkko Sakkinen <jarkko@kernel.org>
19222 R:      Jason Gunthorpe <jgg@ziepe.ca>
19223 L:      linux-integrity@vger.kernel.org
19224 S:      Maintained
19225 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19226 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19228 F:      drivers/char/tpm/
19229
19230 TRACING
19231 M:      Steven Rostedt <rostedt@goodmis.org>
19232 M:      Ingo Molnar <mingo@redhat.com>
19233 S:      Maintained
19234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19235 F:      Documentation/trace/ftrace.rst
19236 F:      arch/*/*/*/ftrace.h
19237 F:      arch/*/kernel/ftrace.c
19238 F:      fs/tracefs/
19239 F:      include/*/ftrace.h
19240 F:      include/linux/trace*.h
19241 F:      include/trace/
19242 F:      kernel/trace/
19243 F:      tools/testing/selftests/ftrace/
19244
19245 TRACING MMIO ACCESSES (MMIOTRACE)
19246 M:      Steven Rostedt <rostedt@goodmis.org>
19247 M:      Ingo Molnar <mingo@kernel.org>
19248 R:      Karol Herbst <karolherbst@gmail.com>
19249 R:      Pekka Paalanen <ppaalanen@gmail.com>
19250 L:      linux-kernel@vger.kernel.org
19251 L:      nouveau@lists.freedesktop.org
19252 S:      Maintained
19253 F:      arch/x86/mm/kmmio.c
19254 F:      arch/x86/mm/mmio-mod.c
19255 F:      arch/x86/mm/testmmiotrace.c
19256 F:      include/linux/mmiotrace.h
19257 F:      kernel/trace/trace_mmiotrace.c
19258
19259 TRACING OS NOISE / LATENCY TRACERS
19260 M:      Steven Rostedt <rostedt@goodmis.org>
19261 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19262 S:      Maintained
19263 F:      kernel/trace/trace_osnoise.c
19264 F:      include/trace/events/osnoise.h
19265 F:      kernel/trace/trace_hwlat.c
19266 F:      kernel/trace/trace_irqsoff.c
19267 F:      kernel/trace/trace_sched_wakeup.c
19268 F:      Documentation/trace/osnoise-tracer.rst
19269 F:      Documentation/trace/timerlat-tracer.rst
19270 F:      Documentation/trace/hwlat_detector.rst
19271 F:      arch/*/kernel/trace.c
19272
19273 TRADITIONAL CHINESE DOCUMENTATION
19274 M:      Hu Haowen <src.res@email.cn>
19275 L:      linux-doc-tw-discuss@lists.sourceforge.net
19276 S:      Maintained
19277 W:      https://github.com/srcres258/linux-doc
19278 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19279 F:      Documentation/translations/zh_TW/
19280
19281 TRIVIAL PATCHES
19282 M:      Jiri Kosina <trivial@kernel.org>
19283 S:      Maintained
19284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19285 K:      ^Subject:.*(?i)trivial
19286
19287 TTY LAYER
19288 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19289 M:      Jiri Slaby <jirislaby@kernel.org>
19290 S:      Supported
19291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19292 F:      Documentation/driver-api/serial/
19293 F:      drivers/tty/
19294 F:      drivers/tty/serial/serial_core.c
19295 F:      include/linux/selection.h
19296 F:      include/linux/serial.h
19297 F:      include/linux/serial_core.h
19298 F:      include/linux/sysrq.h
19299 F:      include/linux/tty*.h
19300 F:      include/linux/vt.h
19301 F:      include/linux/vt_*.h
19302 F:      include/uapi/linux/serial.h
19303 F:      include/uapi/linux/serial_core.h
19304 F:      include/uapi/linux/tty.h
19305
19306 TUA9001 MEDIA DRIVER
19307 M:      Antti Palosaari <crope@iki.fi>
19308 L:      linux-media@vger.kernel.org
19309 S:      Maintained
19310 W:      https://linuxtv.org
19311 W:      http://palosaari.fi/linux/
19312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19313 T:      git git://linuxtv.org/anttip/media_tree.git
19314 F:      drivers/media/tuners/tua9001*
19315
19316 TULIP NETWORK DRIVERS
19317 L:      netdev@vger.kernel.org
19318 L:      linux-parisc@vger.kernel.org
19319 S:      Orphan
19320 F:      drivers/net/ethernet/dec/tulip/
19321
19322 TUN/TAP driver
19323 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19324 S:      Maintained
19325 W:      http://vtun.sourceforge.net/tun
19326 F:      Documentation/networking/tuntap.rst
19327 F:      arch/um/os-Linux/drivers/
19328
19329 TURBOCHANNEL SUBSYSTEM
19330 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19331 M:      Ralf Baechle <ralf@linux-mips.org>
19332 L:      linux-mips@vger.kernel.org
19333 S:      Maintained
19334 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19335 F:      drivers/tc/
19336 F:      include/linux/tc.h
19337
19338 TURBOSTAT UTILITY
19339 M:      "Len Brown" <lenb@kernel.org>
19340 L:      linux-pm@vger.kernel.org
19341 S:      Supported
19342 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19343 B:      https://bugzilla.kernel.org
19344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19345 F:      tools/power/x86/turbostat/
19346
19347 TW5864 VIDEO4LINUX DRIVER
19348 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19349 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19350 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19351 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19352 L:      linux-media@vger.kernel.org
19353 S:      Supported
19354 F:      drivers/media/pci/tw5864/
19355
19356 TW68 VIDEO4LINUX DRIVER
19357 M:      Hans Verkuil <hverkuil@xs4all.nl>
19358 L:      linux-media@vger.kernel.org
19359 S:      Odd Fixes
19360 W:      https://linuxtv.org
19361 T:      git git://linuxtv.org/media_tree.git
19362 F:      drivers/media/pci/tw68/
19363
19364 TW686X VIDEO4LINUX DRIVER
19365 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19366 L:      linux-media@vger.kernel.org
19367 S:      Maintained
19368 W:      http://linuxtv.org
19369 T:      git git://linuxtv.org/media_tree.git
19370 F:      drivers/media/pci/tw686x/
19371
19372 UACCE ACCELERATOR FRAMEWORK
19373 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19374 M:      Zhou Wang <wangzhou1@hisilicon.com>
19375 L:      linux-accelerators@lists.ozlabs.org
19376 L:      linux-kernel@vger.kernel.org
19377 S:      Maintained
19378 F:      Documentation/ABI/testing/sysfs-driver-uacce
19379 F:      Documentation/misc-devices/uacce.rst
19380 F:      drivers/misc/uacce/
19381 F:      include/linux/uacce.h
19382 F:      include/uapi/misc/uacce/
19383
19384 UBI FILE SYSTEM (UBIFS)
19385 M:      Richard Weinberger <richard@nod.at>
19386 L:      linux-mtd@lists.infradead.org
19387 S:      Supported
19388 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19391 F:      Documentation/filesystems/ubifs-authentication.rst
19392 F:      Documentation/filesystems/ubifs.rst
19393 F:      fs/ubifs/
19394
19395 UCLINUX (M68KNOMMU AND COLDFIRE)
19396 M:      Greg Ungerer <gerg@linux-m68k.org>
19397 L:      linux-m68k@lists.linux-m68k.org
19398 L:      uclinux-dev@uclinux.org  (subscribers-only)
19399 S:      Maintained
19400 W:      http://www.linux-m68k.org/
19401 W:      http://www.uclinux.org/
19402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19403 F:      arch/m68k/*/*_no.*
19404 F:      arch/m68k/68*/
19405 F:      arch/m68k/coldfire/
19406 F:      arch/m68k/include/asm/*_no.*
19407
19408 UDF FILESYSTEM
19409 M:      Jan Kara <jack@suse.com>
19410 S:      Maintained
19411 F:      Documentation/filesystems/udf.rst
19412 F:      fs/udf/
19413
19414 UDRAW TABLET
19415 M:      Bastien Nocera <hadess@hadess.net>
19416 L:      linux-input@vger.kernel.org
19417 S:      Maintained
19418 F:      drivers/hid/hid-udraw-ps3.c
19419
19420 UFS FILESYSTEM
19421 M:      Evgeniy Dushistov <dushistov@mail.ru>
19422 S:      Maintained
19423 F:      Documentation/admin-guide/ufs.rst
19424 F:      fs/ufs/
19425
19426 UHID USERSPACE HID IO DRIVER
19427 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19428 L:      linux-input@vger.kernel.org
19429 S:      Maintained
19430 F:      drivers/hid/uhid.c
19431 F:      include/uapi/linux/uhid.h
19432
19433 ULPI BUS
19434 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19435 L:      linux-usb@vger.kernel.org
19436 S:      Maintained
19437 F:      drivers/usb/common/ulpi.c
19438 F:      include/linux/ulpi/
19439
19440 UNICODE SUBSYSTEM
19441 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19442 L:      linux-fsdevel@vger.kernel.org
19443 S:      Supported
19444 F:      fs/unicode/
19445
19446 UNIFDEF
19447 M:      Tony Finch <dot@dotat.at>
19448 S:      Maintained
19449 W:      http://dotat.at/prog/unifdef
19450 F:      scripts/unifdef.c
19451
19452 UNIFORM CDROM DRIVER
19453 M:      Phillip Potter <phil@philpotter.co.uk>
19454 S:      Maintained
19455 F:      Documentation/cdrom/
19456 F:      drivers/cdrom/cdrom.c
19457 F:      include/linux/cdrom.h
19458 F:      include/uapi/linux/cdrom.h
19459
19460 UNISYS S-PAR DRIVERS
19461 M:      David Kershner <david.kershner@unisys.com>
19462 L:      sparmaintainer@unisys.com (Unisys internal)
19463 S:      Supported
19464 F:      drivers/staging/unisys/
19465 F:      drivers/visorbus/
19466 F:      include/linux/visorbus.h
19467
19468 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19469 R:      Alim Akhtar <alim.akhtar@samsung.com>
19470 R:      Avri Altman <avri.altman@wdc.com>
19471 L:      linux-scsi@vger.kernel.org
19472 S:      Supported
19473 F:      Documentation/scsi/ufs.rst
19474 F:      drivers/scsi/ufs/
19475
19476 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19477 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19478 L:      linux-scsi@vger.kernel.org
19479 S:      Supported
19480 F:      drivers/scsi/ufs/*dwc*
19481
19482 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19483 M:      Stanley Chu <stanley.chu@mediatek.com>
19484 L:      linux-scsi@vger.kernel.org
19485 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19486 S:      Maintained
19487 F:      drivers/scsi/ufs/ufs-mediatek*
19488
19489 UNSORTED BLOCK IMAGES (UBI)
19490 M:      Richard Weinberger <richard@nod.at>
19491 L:      linux-mtd@lists.infradead.org
19492 S:      Supported
19493 W:      http://www.linux-mtd.infradead.org/
19494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19496 F:      drivers/mtd/ubi/
19497 F:      include/linux/mtd/ubi.h
19498 F:      include/uapi/mtd/ubi-user.h
19499
19500 USB "USBNET" DRIVER FRAMEWORK
19501 M:      Oliver Neukum <oneukum@suse.com>
19502 L:      netdev@vger.kernel.org
19503 S:      Maintained
19504 W:      http://www.linux-usb.org/usbnet
19505 F:      drivers/net/usb/usbnet.c
19506 F:      include/linux/usb/usbnet.h
19507
19508 USB ACM DRIVER
19509 M:      Oliver Neukum <oneukum@suse.com>
19510 L:      linux-usb@vger.kernel.org
19511 S:      Maintained
19512 F:      Documentation/usb/acm.rst
19513 F:      drivers/usb/class/cdc-acm.*
19514
19515 USB APPLE MFI FASTCHARGE DRIVER
19516 M:      Bastien Nocera <hadess@hadess.net>
19517 L:      linux-usb@vger.kernel.org
19518 S:      Maintained
19519 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19520
19521 USB AR5523 WIRELESS DRIVER
19522 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19523 L:      linux-wireless@vger.kernel.org
19524 S:      Maintained
19525 F:      drivers/net/wireless/ath/ar5523/
19526
19527 USB ATTACHED SCSI
19528 M:      Oliver Neukum <oneukum@suse.com>
19529 L:      linux-usb@vger.kernel.org
19530 L:      linux-scsi@vger.kernel.org
19531 S:      Maintained
19532 F:      drivers/usb/storage/uas.c
19533
19534 USB CDC ETHERNET DRIVER
19535 M:      Oliver Neukum <oliver@neukum.org>
19536 L:      linux-usb@vger.kernel.org
19537 S:      Maintained
19538 F:      drivers/net/usb/cdc_*.c
19539 F:      include/uapi/linux/usb/cdc.h
19540
19541 USB CHAOSKEY DRIVER
19542 M:      Keith Packard <keithp@keithp.com>
19543 L:      linux-usb@vger.kernel.org
19544 S:      Maintained
19545 F:      drivers/usb/misc/chaoskey.c
19546
19547 USB CYPRESS C67X00 DRIVER
19548 L:      linux-usb@vger.kernel.org
19549 S:      Orphan
19550 F:      drivers/usb/c67x00/
19551
19552 USB DAVICOM DM9601 DRIVER
19553 M:      Peter Korsgaard <peter@korsgaard.com>
19554 L:      netdev@vger.kernel.org
19555 S:      Maintained
19556 W:      http://www.linux-usb.org/usbnet
19557 F:      drivers/net/usb/dm9601.c
19558
19559 USB EHCI DRIVER
19560 M:      Alan Stern <stern@rowland.harvard.edu>
19561 L:      linux-usb@vger.kernel.org
19562 S:      Maintained
19563 F:      Documentation/usb/ehci.rst
19564 F:      drivers/usb/host/ehci*
19565
19566 USB GADGET/PERIPHERAL SUBSYSTEM
19567 M:      Felipe Balbi <balbi@kernel.org>
19568 L:      linux-usb@vger.kernel.org
19569 S:      Maintained
19570 W:      http://www.linux-usb.org/gadget
19571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19572 F:      drivers/usb/gadget/
19573 F:      include/linux/usb/gadget*
19574
19575 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19576 M:      Jiri Kosina <jikos@kernel.org>
19577 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19578 L:      linux-usb@vger.kernel.org
19579 S:      Maintained
19580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19581 F:      Documentation/hid/hiddev.rst
19582 F:      drivers/hid/usbhid/
19583
19584 USB INTEL XHCI ROLE MUX DRIVER
19585 M:      Hans de Goede <hdegoede@redhat.com>
19586 L:      linux-usb@vger.kernel.org
19587 S:      Maintained
19588 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19589
19590 USB IP DRIVER FOR HISILICON KIRIN 960
19591 M:      Yu Chen <chenyu56@huawei.com>
19592 M:      Binghui Wang <wangbinghui@hisilicon.com>
19593 L:      linux-usb@vger.kernel.org
19594 S:      Maintained
19595 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19596 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19597
19598 USB IP DRIVER FOR HISILICON KIRIN 970
19599 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19600 L:      linux-usb@vger.kernel.org
19601 S:      Maintained
19602 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19603 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19604
19605 USB ISP116X DRIVER
19606 M:      Olav Kongas <ok@artecdesign.ee>
19607 L:      linux-usb@vger.kernel.org
19608 S:      Maintained
19609 F:      drivers/usb/host/isp116x*
19610 F:      include/linux/usb/isp116x.h
19611
19612 USB ISP1760 DRIVER
19613 M:      Rui Miguel Silva <rui.silva@linaro.org>
19614 L:      linux-usb@vger.kernel.org
19615 S:      Maintained
19616 F:      drivers/usb/isp1760/*
19617 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19618
19619 USB LAN78XX ETHERNET DRIVER
19620 M:      Woojung Huh <woojung.huh@microchip.com>
19621 M:      UNGLinuxDriver@microchip.com
19622 L:      netdev@vger.kernel.org
19623 S:      Maintained
19624 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19625 F:      drivers/net/usb/lan78xx.*
19626 F:      include/dt-bindings/net/microchip-lan78xx.h
19627
19628 USB MASS STORAGE DRIVER
19629 M:      Alan Stern <stern@rowland.harvard.edu>
19630 L:      linux-usb@vger.kernel.org
19631 L:      usb-storage@lists.one-eyed-alien.net
19632 S:      Maintained
19633 F:      drivers/usb/storage/
19634
19635 USB MIDI DRIVER
19636 M:      Clemens Ladisch <clemens@ladisch.de>
19637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19638 S:      Maintained
19639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19640 F:      sound/usb/midi.*
19641
19642 USB NETWORKING DRIVERS
19643 L:      linux-usb@vger.kernel.org
19644 S:      Odd Fixes
19645 F:      drivers/net/usb/
19646
19647 USB OHCI DRIVER
19648 M:      Alan Stern <stern@rowland.harvard.edu>
19649 L:      linux-usb@vger.kernel.org
19650 S:      Maintained
19651 F:      Documentation/usb/ohci.rst
19652 F:      drivers/usb/host/ohci*
19653
19654 USB OTG FSM (Finite State Machine)
19655 M:      Peter Chen <peter.chen@kernel.org>
19656 L:      linux-usb@vger.kernel.org
19657 S:      Maintained
19658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19659 F:      drivers/usb/common/usb-otg-fsm.c
19660
19661 USB OVER IP DRIVER
19662 M:      Valentina Manea <valentina.manea.m@gmail.com>
19663 M:      Shuah Khan <shuah@kernel.org>
19664 M:      Shuah Khan <skhan@linuxfoundation.org>
19665 L:      linux-usb@vger.kernel.org
19666 S:      Maintained
19667 F:      Documentation/usb/usbip_protocol.rst
19668 F:      drivers/usb/usbip/
19669 F:      tools/testing/selftests/drivers/usb/usbip/
19670 F:      tools/usb/usbip/
19671
19672 USB PEGASUS DRIVER
19673 M:      Petko Manolov <petkan@nucleusys.com>
19674 L:      linux-usb@vger.kernel.org
19675 L:      netdev@vger.kernel.org
19676 S:      Maintained
19677 W:      https://github.com/petkan/pegasus
19678 T:      git git://github.com/petkan/pegasus.git
19679 F:      drivers/net/usb/pegasus.*
19680
19681 USB PHY LAYER
19682 M:      Felipe Balbi <balbi@kernel.org>
19683 L:      linux-usb@vger.kernel.org
19684 S:      Maintained
19685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19686 F:      drivers/usb/phy/
19687
19688 USB PRINTER DRIVER (usblp)
19689 M:      Pete Zaitcev <zaitcev@redhat.com>
19690 L:      linux-usb@vger.kernel.org
19691 S:      Supported
19692 F:      drivers/usb/class/usblp.c
19693
19694 USB RAW GADGET DRIVER
19695 R:      Andrey Konovalov <andreyknvl@gmail.com>
19696 L:      linux-usb@vger.kernel.org
19697 S:      Maintained
19698 F:      Documentation/usb/raw-gadget.rst
19699 F:      drivers/usb/gadget/legacy/raw_gadget.c
19700 F:      include/uapi/linux/usb/raw_gadget.h
19701
19702 USB QMI WWAN NETWORK DRIVER
19703 M:      Bjørn Mork <bjorn@mork.no>
19704 L:      netdev@vger.kernel.org
19705 S:      Maintained
19706 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19707 F:      drivers/net/usb/qmi_wwan.c
19708
19709 USB RTL8150 DRIVER
19710 M:      Petko Manolov <petkan@nucleusys.com>
19711 L:      linux-usb@vger.kernel.org
19712 L:      netdev@vger.kernel.org
19713 S:      Maintained
19714 W:      https://github.com/petkan/rtl8150
19715 T:      git git://github.com/petkan/rtl8150.git
19716 F:      drivers/net/usb/rtl8150.c
19717
19718 USB SERIAL SUBSYSTEM
19719 M:      Johan Hovold <johan@kernel.org>
19720 L:      linux-usb@vger.kernel.org
19721 S:      Maintained
19722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19723 F:      Documentation/usb/usb-serial.rst
19724 F:      drivers/usb/serial/
19725 F:      include/linux/usb/serial.h
19726
19727 USB SMSC75XX ETHERNET DRIVER
19728 M:      Steve Glendinning <steve.glendinning@shawell.net>
19729 L:      netdev@vger.kernel.org
19730 S:      Maintained
19731 F:      drivers/net/usb/smsc75xx.*
19732
19733 USB SMSC95XX ETHERNET DRIVER
19734 M:      Steve Glendinning <steve.glendinning@shawell.net>
19735 M:      UNGLinuxDriver@microchip.com
19736 L:      netdev@vger.kernel.org
19737 S:      Maintained
19738 F:      drivers/net/usb/smsc95xx.*
19739
19740 USB SUBSYSTEM
19741 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19742 L:      linux-usb@vger.kernel.org
19743 S:      Supported
19744 W:      http://www.linux-usb.org
19745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19746 F:      Documentation/devicetree/bindings/usb/
19747 F:      Documentation/usb/
19748 F:      drivers/usb/
19749 F:      include/linux/usb.h
19750 F:      include/linux/usb/
19751
19752 USB TYPEC BUS FOR ALTERNATE MODES
19753 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19754 L:      linux-usb@vger.kernel.org
19755 S:      Maintained
19756 F:      Documentation/ABI/testing/sysfs-bus-typec
19757 F:      Documentation/driver-api/usb/typec_bus.rst
19758 F:      drivers/usb/typec/altmodes/
19759 F:      include/linux/usb/typec_altmode.h
19760
19761 USB TYPEC CLASS
19762 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19763 L:      linux-usb@vger.kernel.org
19764 S:      Maintained
19765 F:      Documentation/ABI/testing/sysfs-class-typec
19766 F:      Documentation/driver-api/usb/typec.rst
19767 F:      drivers/usb/typec/
19768 F:      include/linux/usb/typec.h
19769
19770 USB TYPEC INTEL PMC MUX DRIVER
19771 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19772 L:      linux-usb@vger.kernel.org
19773 S:      Maintained
19774 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19775 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19776
19777 USB TYPEC PI3USB30532 MUX DRIVER
19778 M:      Hans de Goede <hdegoede@redhat.com>
19779 L:      linux-usb@vger.kernel.org
19780 S:      Maintained
19781 F:      drivers/usb/typec/mux/pi3usb30532.c
19782
19783 USB TYPEC PORT CONTROLLER DRIVERS
19784 M:      Guenter Roeck <linux@roeck-us.net>
19785 L:      linux-usb@vger.kernel.org
19786 S:      Maintained
19787 F:      drivers/usb/typec/tcpm/
19788
19789 USB UHCI DRIVER
19790 M:      Alan Stern <stern@rowland.harvard.edu>
19791 L:      linux-usb@vger.kernel.org
19792 S:      Maintained
19793 F:      drivers/usb/host/uhci*
19794
19795 USB VIDEO CLASS
19796 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19797 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19798 L:      linux-media@vger.kernel.org
19799 S:      Maintained
19800 W:      http://www.ideasonboard.org/uvc/
19801 T:      git git://linuxtv.org/media_tree.git
19802 F:      drivers/media/usb/uvc/
19803 F:      include/uapi/linux/uvcvideo.h
19804
19805 USB WEBCAM GADGET
19806 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19807 L:      linux-usb@vger.kernel.org
19808 S:      Maintained
19809 F:      drivers/usb/gadget/function/*uvc*
19810 F:      drivers/usb/gadget/legacy/webcam.c
19811 F:      include/uapi/linux/usb/g_uvc.h
19812
19813 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19814 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19815 L:      linux-wireless@vger.kernel.org
19816 S:      Maintained
19817 F:      drivers/net/wireless/rndis_wlan.c
19818
19819 USB XHCI DRIVER
19820 M:      Mathias Nyman <mathias.nyman@intel.com>
19821 L:      linux-usb@vger.kernel.org
19822 S:      Supported
19823 F:      drivers/usb/host/pci-quirks*
19824 F:      drivers/usb/host/xhci*
19825
19826 USB ZD1201 DRIVER
19827 L:      linux-wireless@vger.kernel.org
19828 S:      Orphan
19829 W:      http://linux-lc100020.sourceforge.net
19830 F:      drivers/net/wireless/zydas/zd1201.*
19831
19832 USB ZR364XX DRIVER
19833 M:      Antoine Jacquet <royale@zerezo.com>
19834 L:      linux-usb@vger.kernel.org
19835 L:      linux-media@vger.kernel.org
19836 S:      Maintained
19837 W:      http://royale.zerezo.com/zr364xx/
19838 T:      git git://linuxtv.org/media_tree.git
19839 F:      Documentation/admin-guide/media/zr364xx*
19840 F:      drivers/media/usb/zr364xx/
19841
19842 USER-MODE LINUX (UML)
19843 M:      Jeff Dike <jdike@addtoit.com>
19844 M:      Richard Weinberger <richard@nod.at>
19845 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19846 L:      linux-um@lists.infradead.org
19847 S:      Maintained
19848 W:      http://user-mode-linux.sourceforge.net
19849 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19851 F:      Documentation/virt/uml/
19852 F:      arch/um/
19853 F:      arch/x86/um/
19854 F:      fs/hostfs/
19855
19856 USERSPACE COPYIN/COPYOUT (UIOVEC)
19857 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19858 S:      Maintained
19859 F:      include/linux/uio.h
19860 F:      lib/iov_iter.c
19861
19862 USERSPACE DMA BUFFER DRIVER
19863 M:      Gerd Hoffmann <kraxel@redhat.com>
19864 L:      dri-devel@lists.freedesktop.org
19865 S:      Maintained
19866 T:      git git://anongit.freedesktop.org/drm/drm-misc
19867 F:      drivers/dma-buf/udmabuf.c
19868 F:      include/uapi/linux/udmabuf.h
19869
19870 USERSPACE I/O (UIO)
19871 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19872 S:      Maintained
19873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19874 F:      Documentation/driver-api/uio-howto.rst
19875 F:      drivers/uio/
19876 F:      include/linux/uio_driver.h
19877
19878 UTIL-LINUX PACKAGE
19879 M:      Karel Zak <kzak@redhat.com>
19880 L:      util-linux@vger.kernel.org
19881 S:      Maintained
19882 W:      http://en.wikipedia.org/wiki/Util-linux
19883 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19884
19885 UUID HELPERS
19886 M:      Christoph Hellwig <hch@lst.de>
19887 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19888 L:      linux-kernel@vger.kernel.org
19889 S:      Maintained
19890 T:      git git://git.infradead.org/users/hch/uuid.git
19891 F:      include/linux/uuid.h
19892 F:      include/uapi/linux/uuid.h
19893 F:      lib/test_uuid.c
19894 F:      lib/uuid.c
19895
19896 UV SYSFS DRIVER
19897 M:      Justin Ernst <justin.ernst@hpe.com>
19898 L:      platform-driver-x86@vger.kernel.org
19899 S:      Maintained
19900 F:      drivers/platform/x86/uv_sysfs.c
19901
19902 UVESAFB DRIVER
19903 M:      Michal Januszewski <spock@gentoo.org>
19904 L:      linux-fbdev@vger.kernel.org
19905 S:      Maintained
19906 W:      https://github.com/mjanusz/v86d
19907 F:      Documentation/fb/uvesafb.rst
19908 F:      drivers/video/fbdev/uvesafb.*
19909
19910 Ux500 CLOCK DRIVERS
19911 M:      Ulf Hansson <ulf.hansson@linaro.org>
19912 L:      linux-clk@vger.kernel.org
19913 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19914 S:      Maintained
19915 F:      drivers/clk/ux500/
19916
19917 VF610 NAND DRIVER
19918 M:      Stefan Agner <stefan@agner.ch>
19919 L:      linux-mtd@lists.infradead.org
19920 S:      Supported
19921 F:      drivers/mtd/nand/raw/vf610_nfc.c
19922
19923 VFAT/FAT/MSDOS FILESYSTEM
19924 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19925 S:      Maintained
19926 F:      Documentation/filesystems/vfat.rst
19927 F:      fs/fat/
19928
19929 VFIO DRIVER
19930 M:      Alex Williamson <alex.williamson@redhat.com>
19931 R:      Cornelia Huck <cohuck@redhat.com>
19932 L:      kvm@vger.kernel.org
19933 S:      Maintained
19934 T:      git git://github.com/awilliam/linux-vfio.git
19935 F:      Documentation/driver-api/vfio.rst
19936 F:      drivers/vfio/
19937 F:      include/linux/vfio.h
19938 F:      include/linux/vfio_pci_core.h
19939 F:      include/uapi/linux/vfio.h
19940
19941 VFIO FSL-MC DRIVER
19942 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19943 L:      kvm@vger.kernel.org
19944 S:      Maintained
19945 F:      drivers/vfio/fsl-mc/
19946
19947 VFIO MEDIATED DEVICE DRIVERS
19948 M:      Kirti Wankhede <kwankhede@nvidia.com>
19949 L:      kvm@vger.kernel.org
19950 S:      Maintained
19951 F:      Documentation/driver-api/vfio-mediated-device.rst
19952 F:      drivers/vfio/mdev/
19953 F:      include/linux/mdev.h
19954 F:      samples/vfio-mdev/
19955
19956 VFIO PLATFORM DRIVER
19957 M:      Eric Auger <eric.auger@redhat.com>
19958 L:      kvm@vger.kernel.org
19959 S:      Maintained
19960 F:      drivers/vfio/platform/
19961
19962 VGA_SWITCHEROO
19963 R:      Lukas Wunner <lukas@wunner.de>
19964 S:      Maintained
19965 T:      git git://anongit.freedesktop.org/drm/drm-misc
19966 F:      Documentation/gpu/vga-switcheroo.rst
19967 F:      drivers/gpu/vga/vga_switcheroo.c
19968 F:      include/linux/vga_switcheroo.h
19969
19970 VIA RHINE NETWORK DRIVER
19971 S:      Maintained
19972 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19973 F:      drivers/net/ethernet/via/via-rhine.c
19974
19975 VIA SD/MMC CARD CONTROLLER DRIVER
19976 M:      Bruce Chang <brucechang@via.com.tw>
19977 M:      Harald Welte <HaraldWelte@viatech.com>
19978 S:      Maintained
19979 F:      drivers/mmc/host/via-sdmmc.c
19980
19981 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19982 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19983 L:      linux-fbdev@vger.kernel.org
19984 S:      Maintained
19985 F:      drivers/video/fbdev/via/
19986 F:      include/linux/via-core.h
19987 F:      include/linux/via-gpio.h
19988 F:      include/linux/via_i2c.h
19989
19990 VIA VELOCITY NETWORK DRIVER
19991 M:      Francois Romieu <romieu@fr.zoreil.com>
19992 L:      netdev@vger.kernel.org
19993 S:      Maintained
19994 F:      drivers/net/ethernet/via/via-velocity.*
19995
19996 VICODEC VIRTUAL CODEC DRIVER
19997 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19998 L:      linux-media@vger.kernel.org
19999 S:      Maintained
20000 W:      https://linuxtv.org
20001 T:      git git://linuxtv.org/media_tree.git
20002 F:      drivers/media/test-drivers/vicodec/*
20003
20004 VIDEO I2C POLLING DRIVER
20005 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20006 L:      linux-media@vger.kernel.org
20007 S:      Maintained
20008 F:      drivers/media/i2c/video-i2c.c
20009
20010 VIDEO MULTIPLEXER DRIVER
20011 M:      Philipp Zabel <p.zabel@pengutronix.de>
20012 L:      linux-media@vger.kernel.org
20013 S:      Maintained
20014 F:      drivers/media/platform/video-mux.c
20015
20016 VIDEOBUF2 FRAMEWORK
20017 M:      Tomasz Figa <tfiga@chromium.org>
20018 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20019 L:      linux-media@vger.kernel.org
20020 S:      Maintained
20021 F:      drivers/media/common/videobuf2/*
20022 F:      include/media/videobuf2-*
20023
20024 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20025 M:      Helen Koike <helen.koike@collabora.com>
20026 R:      Shuah Khan <skhan@linuxfoundation.org>
20027 L:      linux-media@vger.kernel.org
20028 S:      Maintained
20029 W:      https://linuxtv.org
20030 T:      git git://linuxtv.org/media_tree.git
20031 F:      drivers/media/test-drivers/vimc/*
20032
20033 VIRT LIB
20034 M:      Alex Williamson <alex.williamson@redhat.com>
20035 M:      Paolo Bonzini <pbonzini@redhat.com>
20036 L:      kvm@vger.kernel.org
20037 S:      Supported
20038 F:      virt/lib/
20039
20040 VIRTIO AND VHOST VSOCK DRIVER
20041 M:      Stefan Hajnoczi <stefanha@redhat.com>
20042 M:      Stefano Garzarella <sgarzare@redhat.com>
20043 L:      kvm@vger.kernel.org
20044 L:      virtualization@lists.linux-foundation.org
20045 L:      netdev@vger.kernel.org
20046 S:      Maintained
20047 F:      drivers/vhost/vsock.c
20048 F:      include/linux/virtio_vsock.h
20049 F:      include/uapi/linux/virtio_vsock.h
20050 F:      net/vmw_vsock/virtio_transport.c
20051 F:      net/vmw_vsock/virtio_transport_common.c
20052
20053 VIRTIO BLOCK AND SCSI DRIVERS
20054 M:      "Michael S. Tsirkin" <mst@redhat.com>
20055 M:      Jason Wang <jasowang@redhat.com>
20056 R:      Paolo Bonzini <pbonzini@redhat.com>
20057 R:      Stefan Hajnoczi <stefanha@redhat.com>
20058 L:      virtualization@lists.linux-foundation.org
20059 S:      Maintained
20060 F:      drivers/block/virtio_blk.c
20061 F:      drivers/scsi/virtio_scsi.c
20062 F:      drivers/vhost/scsi.c
20063 F:      include/uapi/linux/virtio_blk.h
20064 F:      include/uapi/linux/virtio_scsi.h
20065
20066 VIRTIO CONSOLE DRIVER
20067 M:      Amit Shah <amit@kernel.org>
20068 L:      virtualization@lists.linux-foundation.org
20069 S:      Maintained
20070 F:      drivers/char/virtio_console.c
20071 F:      include/linux/virtio_console.h
20072 F:      include/uapi/linux/virtio_console.h
20073
20074 VIRTIO CORE AND NET DRIVERS
20075 M:      "Michael S. Tsirkin" <mst@redhat.com>
20076 M:      Jason Wang <jasowang@redhat.com>
20077 L:      virtualization@lists.linux-foundation.org
20078 S:      Maintained
20079 F:      Documentation/devicetree/bindings/virtio/
20080 F:      drivers/block/virtio_blk.c
20081 F:      drivers/crypto/virtio/
20082 F:      drivers/net/virtio_net.c
20083 F:      drivers/vdpa/
20084 F:      drivers/virtio/
20085 F:      include/linux/vdpa.h
20086 F:      include/linux/virtio*.h
20087 F:      include/uapi/linux/virtio_*.h
20088 F:      tools/virtio/
20089
20090 VIRTIO BALLOON
20091 M:      "Michael S. Tsirkin" <mst@redhat.com>
20092 M:      David Hildenbrand <david@redhat.com>
20093 L:      virtualization@lists.linux-foundation.org
20094 S:      Maintained
20095 F:      drivers/virtio/virtio_balloon.c
20096 F:      include/uapi/linux/virtio_balloon.h
20097 F:      include/linux/balloon_compaction.h
20098 F:      mm/balloon_compaction.c
20099
20100 VIRTIO CRYPTO DRIVER
20101 M:      Gonglei <arei.gonglei@huawei.com>
20102 L:      virtualization@lists.linux-foundation.org
20103 L:      linux-crypto@vger.kernel.org
20104 S:      Maintained
20105 F:      drivers/crypto/virtio/
20106 F:      include/uapi/linux/virtio_crypto.h
20107
20108 VIRTIO DRIVERS FOR S390
20109 M:      Cornelia Huck <cohuck@redhat.com>
20110 M:      Halil Pasic <pasic@linux.ibm.com>
20111 L:      linux-s390@vger.kernel.org
20112 L:      virtualization@lists.linux-foundation.org
20113 L:      kvm@vger.kernel.org
20114 S:      Supported
20115 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20116 F:      drivers/s390/virtio/
20117
20118 VIRTIO FILE SYSTEM
20119 M:      Vivek Goyal <vgoyal@redhat.com>
20120 M:      Stefan Hajnoczi <stefanha@redhat.com>
20121 M:      Miklos Szeredi <miklos@szeredi.hu>
20122 L:      virtualization@lists.linux-foundation.org
20123 L:      linux-fsdevel@vger.kernel.org
20124 S:      Supported
20125 W:      https://virtio-fs.gitlab.io/
20126 F:      Documentation/filesystems/virtiofs.rst
20127 F:      fs/fuse/virtio_fs.c
20128 F:      include/uapi/linux/virtio_fs.h
20129
20130 VIRTIO GPIO DRIVER
20131 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20132 M:      Viresh Kumar <vireshk@kernel.org>
20133 L:      linux-gpio@vger.kernel.org
20134 L:      virtualization@lists.linux-foundation.org
20135 S:      Maintained
20136 F:      drivers/gpio/gpio-virtio.c
20137 F:      include/uapi/linux/virtio_gpio.h
20138
20139 VIRTIO GPU DRIVER
20140 M:      David Airlie <airlied@linux.ie>
20141 M:      Gerd Hoffmann <kraxel@redhat.com>
20142 L:      dri-devel@lists.freedesktop.org
20143 L:      virtualization@lists.linux-foundation.org
20144 S:      Maintained
20145 T:      git git://anongit.freedesktop.org/drm/drm-misc
20146 F:      drivers/gpu/drm/virtio/
20147 F:      include/uapi/linux/virtio_gpu.h
20148
20149 VIRTIO HOST (VHOST)
20150 M:      "Michael S. Tsirkin" <mst@redhat.com>
20151 M:      Jason Wang <jasowang@redhat.com>
20152 L:      kvm@vger.kernel.org
20153 L:      virtualization@lists.linux-foundation.org
20154 L:      netdev@vger.kernel.org
20155 S:      Maintained
20156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20157 F:      drivers/vhost/
20158 F:      include/linux/vhost_iotlb.h
20159 F:      include/uapi/linux/vhost.h
20160
20161 VIRTIO INPUT DRIVER
20162 M:      Gerd Hoffmann <kraxel@redhat.com>
20163 S:      Maintained
20164 F:      drivers/virtio/virtio_input.c
20165 F:      include/uapi/linux/virtio_input.h
20166
20167 VIRTIO IOMMU DRIVER
20168 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20169 L:      virtualization@lists.linux-foundation.org
20170 S:      Maintained
20171 F:      drivers/iommu/virtio-iommu.c
20172 F:      include/uapi/linux/virtio_iommu.h
20173
20174 VIRTIO MEM DRIVER
20175 M:      David Hildenbrand <david@redhat.com>
20176 L:      virtualization@lists.linux-foundation.org
20177 S:      Maintained
20178 W:      https://virtio-mem.gitlab.io/
20179 F:      drivers/virtio/virtio_mem.c
20180 F:      include/uapi/linux/virtio_mem.h
20181
20182 VIRTIO SOUND DRIVER
20183 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20184 M:      "Michael S. Tsirkin" <mst@redhat.com>
20185 L:      virtualization@lists.linux-foundation.org
20186 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20187 S:      Maintained
20188 F:      include/uapi/linux/virtio_snd.h
20189 F:      sound/virtio/*
20190
20191 VIRTIO I2C DRIVER
20192 M:      Conghui Chen <conghui.chen@intel.com>
20193 M:      Viresh Kumar <viresh.kumar@linaro.org>
20194 L:      linux-i2c@vger.kernel.org
20195 L:      virtualization@lists.linux-foundation.org
20196 S:      Maintained
20197 F:      drivers/i2c/busses/i2c-virtio.c
20198 F:      include/uapi/linux/virtio_i2c.h
20199
20200 VIRTIO PMEM DRIVER
20201 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20202 L:      virtualization@lists.linux-foundation.org
20203 S:      Maintained
20204 F:      drivers/nvdimm/virtio_pmem.c
20205 F:      drivers/nvdimm/nd_virtio.c
20206
20207 VIRTUAL BOX GUEST DEVICE DRIVER
20208 M:      Hans de Goede <hdegoede@redhat.com>
20209 M:      Arnd Bergmann <arnd@arndb.de>
20210 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20211 S:      Maintained
20212 F:      drivers/virt/vboxguest/
20213 F:      include/linux/vbox_utils.h
20214 F:      include/uapi/linux/vbox*.h
20215
20216 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20217 M:      Hans de Goede <hdegoede@redhat.com>
20218 L:      linux-fsdevel@vger.kernel.org
20219 S:      Maintained
20220 F:      fs/vboxsf/*
20221
20222 VIRTUAL SERIO DEVICE DRIVER
20223 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20224 S:      Maintained
20225 F:      drivers/input/serio/userio.c
20226 F:      include/uapi/linux/userio.h
20227
20228 VIVID VIRTUAL VIDEO DRIVER
20229 M:      Hans Verkuil <hverkuil@xs4all.nl>
20230 L:      linux-media@vger.kernel.org
20231 S:      Maintained
20232 W:      https://linuxtv.org
20233 T:      git git://linuxtv.org/media_tree.git
20234 F:      drivers/media/test-drivers/vivid/*
20235
20236 VIDTV VIRTUAL DIGITAL TV DRIVER
20237 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20238 L:      linux-media@vger.kernel.org
20239 S:      Maintained
20240 W:      https://linuxtv.org
20241 T:      git git://linuxtv.org/media_tree.git
20242 F:      drivers/media/test-drivers/vidtv/*
20243
20244 VLYNQ BUS
20245 M:      Florian Fainelli <f.fainelli@gmail.com>
20246 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20247 S:      Maintained
20248 F:      drivers/vlynq/vlynq.c
20249 F:      include/linux/vlynq.h
20250
20251 VME SUBSYSTEM
20252 M:      Martyn Welch <martyn@welchs.me.uk>
20253 M:      Manohar Vanga <manohar.vanga@gmail.com>
20254 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20255 L:      linux-kernel@vger.kernel.org
20256 S:      Maintained
20257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20258 F:      Documentation/driver-api/vme.rst
20259 F:      drivers/staging/vme/
20260 F:      drivers/vme/
20261 F:      include/linux/vme*
20262
20263 VM SOCKETS (AF_VSOCK)
20264 M:      Stefano Garzarella <sgarzare@redhat.com>
20265 L:      virtualization@lists.linux-foundation.org
20266 L:      netdev@vger.kernel.org
20267 S:      Maintained
20268 F:      drivers/net/vsockmon.c
20269 F:      include/net/af_vsock.h
20270 F:      include/uapi/linux/vm_sockets.h
20271 F:      include/uapi/linux/vm_sockets_diag.h
20272 F:      include/uapi/linux/vsockmon.h
20273 F:      net/vmw_vsock/
20274 F:      tools/testing/vsock/
20275
20276 VMWARE BALLOON DRIVER
20277 M:      Nadav Amit <namit@vmware.com>
20278 M:      "VMware, Inc." <pv-drivers@vmware.com>
20279 L:      linux-kernel@vger.kernel.org
20280 S:      Maintained
20281 F:      drivers/misc/vmw_balloon.c
20282
20283 VMWARE HYPERVISOR INTERFACE
20284 M:      Deep Shah <sdeep@vmware.com>
20285 M:      "VMware, Inc." <pv-drivers@vmware.com>
20286 L:      virtualization@lists.linux-foundation.org
20287 S:      Supported
20288 F:      arch/x86/include/asm/vmware.h
20289 F:      arch/x86/kernel/cpu/vmware.c
20290
20291 VMWARE PVRDMA DRIVER
20292 M:      Adit Ranadive <aditr@vmware.com>
20293 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20294 L:      linux-rdma@vger.kernel.org
20295 S:      Maintained
20296 F:      drivers/infiniband/hw/vmw_pvrdma/
20297
20298 VMware PVSCSI driver
20299 M:      Vishal Bhakta <vbhakta@vmware.com>
20300 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20301 L:      linux-scsi@vger.kernel.org
20302 S:      Maintained
20303 F:      drivers/scsi/vmw_pvscsi.c
20304 F:      drivers/scsi/vmw_pvscsi.h
20305
20306 VMWARE VIRTUAL PTP CLOCK DRIVER
20307 M:      Vivek Thampi <vithampi@vmware.com>
20308 M:      "VMware, Inc." <pv-drivers@vmware.com>
20309 L:      netdev@vger.kernel.org
20310 S:      Supported
20311 F:      drivers/ptp/ptp_vmw.c
20312
20313 VMWARE VMCI DRIVER
20314 M:      Jorgen Hansen <jhansen@vmware.com>
20315 M:      Vishnu Dasa <vdasa@vmware.com>
20316 L:      linux-kernel@vger.kernel.org
20317 L:      pv-drivers@vmware.com (private)
20318 S:      Maintained
20319 F:      drivers/misc/vmw_vmci/
20320
20321 VMWARE VMMOUSE SUBDRIVER
20322 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20323 M:      "VMware, Inc." <pv-drivers@vmware.com>
20324 L:      linux-input@vger.kernel.org
20325 S:      Maintained
20326 F:      drivers/input/mouse/vmmouse.c
20327 F:      drivers/input/mouse/vmmouse.h
20328
20329 VMWARE VMXNET3 ETHERNET DRIVER
20330 M:      Ronak Doshi <doshir@vmware.com>
20331 M:      pv-drivers@vmware.com
20332 L:      netdev@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/net/vmxnet3/
20335
20336 VOCORE VOCORE2 BOARD
20337 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20338 L:      linux-mips@vger.kernel.org
20339 S:      Maintained
20340 F:      arch/mips/boot/dts/ralink/vocore2.dts
20341
20342 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20343 M:      Liam Girdwood <lgirdwood@gmail.com>
20344 M:      Mark Brown <broonie@kernel.org>
20345 L:      linux-kernel@vger.kernel.org
20346 S:      Supported
20347 W:      http://www.slimlogic.co.uk/?p=48
20348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20349 F:      Documentation/devicetree/bindings/regulator/
20350 F:      Documentation/power/regulator/
20351 F:      drivers/regulator/
20352 F:      include/dt-bindings/regulator/
20353 F:      include/linux/regulator/
20354 K:      regulator_get_optional
20355
20356 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20357 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20358 F:      drivers/regulator/irq_helpers.c
20359
20360 VRF
20361 M:      David Ahern <dsahern@kernel.org>
20362 L:      netdev@vger.kernel.org
20363 S:      Maintained
20364 F:      Documentation/networking/vrf.rst
20365 F:      drivers/net/vrf.c
20366
20367 VSPRINTF
20368 M:      Petr Mladek <pmladek@suse.com>
20369 M:      Steven Rostedt <rostedt@goodmis.org>
20370 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20371 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20372 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20373 S:      Maintained
20374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20375 F:      Documentation/core-api/printk-formats.rst
20376 F:      lib/test_printf.c
20377 F:      lib/test_scanf.c
20378 F:      lib/vsprintf.c
20379
20380 VT1211 HARDWARE MONITOR DRIVER
20381 M:      Juerg Haefliger <juergh@gmail.com>
20382 L:      linux-hwmon@vger.kernel.org
20383 S:      Maintained
20384 F:      Documentation/hwmon/vt1211.rst
20385 F:      drivers/hwmon/vt1211.c
20386
20387 VT8231 HARDWARE MONITOR DRIVER
20388 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20389 L:      linux-hwmon@vger.kernel.org
20390 S:      Maintained
20391 F:      drivers/hwmon/vt8231.c
20392
20393 VUB300 USB to SDIO/SD/MMC bridge chip
20394 L:      linux-mmc@vger.kernel.org
20395 S:      Orphan
20396 F:      drivers/mmc/host/vub300.c
20397
20398 W1 DALLAS'S 1-WIRE BUS
20399 M:      Evgeniy Polyakov <zbr@ioremap.net>
20400 S:      Maintained
20401 F:      Documentation/devicetree/bindings/w1/
20402 F:      Documentation/w1/
20403 F:      drivers/w1/
20404 F:      include/linux/w1.h
20405
20406 W83791D HARDWARE MONITORING DRIVER
20407 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20408 L:      linux-hwmon@vger.kernel.org
20409 S:      Maintained
20410 F:      Documentation/hwmon/w83791d.rst
20411 F:      drivers/hwmon/w83791d.c
20412
20413 W83793 HARDWARE MONITORING DRIVER
20414 M:      Rudolf Marek <r.marek@assembler.cz>
20415 L:      linux-hwmon@vger.kernel.org
20416 S:      Maintained
20417 F:      Documentation/hwmon/w83793.rst
20418 F:      drivers/hwmon/w83793.c
20419
20420 W83795 HARDWARE MONITORING DRIVER
20421 M:      Jean Delvare <jdelvare@suse.com>
20422 L:      linux-hwmon@vger.kernel.org
20423 S:      Maintained
20424 F:      drivers/hwmon/w83795.c
20425
20426 W83L51xD SD/MMC CARD INTERFACE DRIVER
20427 M:      Pierre Ossman <pierre@ossman.eu>
20428 S:      Maintained
20429 F:      drivers/mmc/host/wbsd.*
20430
20431 WACOM PROTOCOL 4 SERIAL TABLETS
20432 M:      Julian Squires <julian@cipht.net>
20433 M:      Hans de Goede <hdegoede@redhat.com>
20434 L:      linux-input@vger.kernel.org
20435 S:      Maintained
20436 F:      drivers/input/tablet/wacom_serial4.c
20437
20438 WATCHDOG DEVICE DRIVERS
20439 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20440 M:      Guenter Roeck <linux@roeck-us.net>
20441 L:      linux-watchdog@vger.kernel.org
20442 S:      Maintained
20443 W:      http://www.linux-watchdog.org/
20444 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20445 F:      Documentation/devicetree/bindings/watchdog/
20446 F:      Documentation/watchdog/
20447 F:      drivers/watchdog/
20448 F:      include/linux/watchdog.h
20449 F:      include/uapi/linux/watchdog.h
20450
20451 WHISKEYCOVE PMIC GPIO DRIVER
20452 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20453 L:      linux-gpio@vger.kernel.org
20454 S:      Maintained
20455 F:      drivers/gpio/gpio-wcove.c
20456
20457 WHWAVE RTC DRIVER
20458 M:      Dianlong Li <long17.cool@163.com>
20459 L:      linux-rtc@vger.kernel.org
20460 S:      Maintained
20461 F:      drivers/rtc/rtc-sd3078.c
20462
20463 WIIMOTE HID DRIVER
20464 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20465 L:      linux-input@vger.kernel.org
20466 S:      Maintained
20467 F:      drivers/hid/hid-wiimote*
20468
20469 WILOCITY WIL6210 WIRELESS DRIVER
20470 M:      Maya Erez <merez@codeaurora.org>
20471 L:      linux-wireless@vger.kernel.org
20472 L:      wil6210@qti.qualcomm.com
20473 S:      Supported
20474 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20475 F:      drivers/net/wireless/ath/wil6210/
20476
20477 WINBOND CIR DRIVER
20478 M:      David Härdeman <david@hardeman.nu>
20479 S:      Maintained
20480 F:      drivers/media/rc/winbond-cir.c
20481
20482 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20483 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20484 L:      linux-watchdog@vger.kernel.org
20485 S:      Maintained
20486 F:      drivers/watchdog/ebc-c384_wdt.c
20487
20488 WINSYSTEMS WS16C48 GPIO DRIVER
20489 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20490 L:      linux-gpio@vger.kernel.org
20491 S:      Maintained
20492 F:      drivers/gpio/gpio-ws16c48.c
20493
20494 WIREGUARD SECURE NETWORK TUNNEL
20495 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20496 L:      wireguard@lists.zx2c4.com
20497 L:      netdev@vger.kernel.org
20498 S:      Maintained
20499 F:      drivers/net/wireguard/
20500 F:      tools/testing/selftests/wireguard/
20501
20502 WISTRON LAPTOP BUTTON DRIVER
20503 M:      Miloslav Trmac <mitr@volny.cz>
20504 S:      Maintained
20505 F:      drivers/input/misc/wistron_btns.c
20506
20507 WL3501 WIRELESS PCMCIA CARD DRIVER
20508 L:      linux-wireless@vger.kernel.org
20509 S:      Odd fixes
20510 F:      drivers/net/wireless/wl3501*
20511
20512 WOLFSON MICROELECTRONICS DRIVERS
20513 L:      patches@opensource.cirrus.com
20514 S:      Supported
20515 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20516 T:      git https://github.com/CirrusLogic/linux-drivers.git
20517 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20518 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20519 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20520 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20521 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20522 F:      Documentation/devicetree/bindings/sound/wm*
20523 F:      Documentation/hwmon/wm83??.rst
20524 F:      arch/arm/mach-s3c/mach-crag6410*
20525 F:      drivers/clk/clk-wm83*.c
20526 F:      drivers/gpio/gpio-*wm*.c
20527 F:      drivers/gpio/gpio-arizona.c
20528 F:      drivers/hwmon/wm83??-hwmon.c
20529 F:      drivers/input/misc/wm831x-on.c
20530 F:      drivers/input/touchscreen/wm831x-ts.c
20531 F:      drivers/input/touchscreen/wm97*.c
20532 F:      drivers/leds/leds-wm83*.c
20533 F:      drivers/mfd/arizona*
20534 F:      drivers/mfd/cs47l24*
20535 F:      drivers/mfd/wm*.c
20536 F:      drivers/power/supply/wm83*.c
20537 F:      drivers/regulator/arizona*
20538 F:      drivers/regulator/wm8*.c
20539 F:      drivers/rtc/rtc-wm83*.c
20540 F:      drivers/video/backlight/wm83*_bl.c
20541 F:      drivers/watchdog/wm83*_wdt.c
20542 F:      include/linux/mfd/arizona/
20543 F:      include/linux/mfd/wm831x/
20544 F:      include/linux/mfd/wm8350/
20545 F:      include/linux/mfd/wm8400*
20546 F:      include/linux/regulator/arizona*
20547 F:      include/linux/wm97xx.h
20548 F:      include/sound/wm????.h
20549 F:      sound/soc/codecs/arizona*
20550 F:      sound/soc/codecs/cs47l24*
20551 F:      sound/soc/codecs/wm*
20552
20553 WORKQUEUE
20554 M:      Tejun Heo <tj@kernel.org>
20555 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20556 S:      Maintained
20557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20558 F:      Documentation/core-api/workqueue.rst
20559 F:      include/linux/workqueue.h
20560 F:      kernel/workqueue.c
20561
20562 WWAN DRIVERS
20563 M:      Loic Poulain <loic.poulain@linaro.org>
20564 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20565 R:      Johannes Berg <johannes@sipsolutions.net>
20566 L:      netdev@vger.kernel.org
20567 S:      Maintained
20568 F:      drivers/net/wwan/
20569 F:      include/linux/wwan.h
20570 F:      include/uapi/linux/wwan.h
20571
20572 X-POWERS AXP288 PMIC DRIVERS
20573 M:      Hans de Goede <hdegoede@redhat.com>
20574 S:      Maintained
20575 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20576 N:      axp288
20577
20578 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20579 M:      Chen-Yu Tsai <wens@csie.org>
20580 L:      linux-kernel@vger.kernel.org
20581 S:      Maintained
20582 N:      axp[128]
20583
20584 X.25 STACK
20585 M:      Martin Schiller <ms@dev.tdt.de>
20586 L:      linux-x25@vger.kernel.org
20587 S:      Maintained
20588 F:      Documentation/networking/lapb-module.rst
20589 F:      Documentation/networking/x25*
20590 F:      drivers/net/wan/hdlc_x25.c
20591 F:      drivers/net/wan/lapbether.c
20592 F:      include/*/lapb.h
20593 F:      include/net/x25*
20594 F:      include/uapi/linux/x25.h
20595 F:      net/lapb/
20596 F:      net/x25/
20597
20598 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20599 M:      Thomas Gleixner <tglx@linutronix.de>
20600 M:      Ingo Molnar <mingo@redhat.com>
20601 M:      Borislav Petkov <bp@alien8.de>
20602 M:      Dave Hansen <dave.hansen@linux.intel.com>
20603 M:      x86@kernel.org
20604 R:      "H. Peter Anvin" <hpa@zytor.com>
20605 L:      linux-kernel@vger.kernel.org
20606 S:      Maintained
20607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20608 F:      Documentation/devicetree/bindings/x86/
20609 F:      Documentation/x86/
20610 F:      arch/x86/
20611
20612 X86 ENTRY CODE
20613 M:      Andy Lutomirski <luto@kernel.org>
20614 L:      linux-kernel@vger.kernel.org
20615 S:      Maintained
20616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20617 F:      arch/x86/entry/
20618
20619 X86 MCE INFRASTRUCTURE
20620 M:      Tony Luck <tony.luck@intel.com>
20621 M:      Borislav Petkov <bp@alien8.de>
20622 L:      linux-edac@vger.kernel.org
20623 S:      Maintained
20624 F:      Documentation/ABI/testing/sysfs-mce
20625 F:      Documentation/x86/x86_64/machinecheck.rst
20626 F:      arch/x86/kernel/cpu/mce/*
20627
20628 X86 MICROCODE UPDATE SUPPORT
20629 M:      Borislav Petkov <bp@alien8.de>
20630 S:      Maintained
20631 F:      arch/x86/kernel/cpu/microcode/*
20632
20633 X86 MM
20634 M:      Dave Hansen <dave.hansen@linux.intel.com>
20635 M:      Andy Lutomirski <luto@kernel.org>
20636 M:      Peter Zijlstra <peterz@infradead.org>
20637 L:      linux-kernel@vger.kernel.org
20638 S:      Maintained
20639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20640 F:      arch/x86/mm/
20641
20642 X86 PLATFORM DRIVERS
20643 M:      Hans de Goede <hdegoede@redhat.com>
20644 M:      Mark Gross <markgross@kernel.org>
20645 L:      platform-driver-x86@vger.kernel.org
20646 S:      Maintained
20647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20648 F:      drivers/platform/olpc/
20649 F:      drivers/platform/x86/
20650
20651 X86 PLATFORM DRIVERS - ARCH
20652 R:      Darren Hart <dvhart@infradead.org>
20653 R:      Andy Shevchenko <andy@infradead.org>
20654 L:      platform-driver-x86@vger.kernel.org
20655 L:      x86@kernel.org
20656 S:      Maintained
20657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20658 F:      arch/x86/platform
20659
20660 X86 PLATFORM UV HPE SUPERDOME FLEX
20661 M:      Steve Wahl <steve.wahl@hpe.com>
20662 R:      Mike Travis <mike.travis@hpe.com>
20663 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20664 R:      Russ Anderson <russ.anderson@hpe.com>
20665 S:      Supported
20666 F:      arch/x86/include/asm/uv/
20667 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20668 F:      arch/x86/platform/uv/
20669
20670 X86 VDSO
20671 M:      Andy Lutomirski <luto@kernel.org>
20672 L:      linux-kernel@vger.kernel.org
20673 S:      Maintained
20674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20675 F:      arch/x86/entry/vdso/
20676
20677 XARRAY
20678 M:      Matthew Wilcox <willy@infradead.org>
20679 L:      linux-fsdevel@vger.kernel.org
20680 S:      Supported
20681 F:      Documentation/core-api/xarray.rst
20682 F:      include/linux/idr.h
20683 F:      include/linux/xarray.h
20684 F:      lib/idr.c
20685 F:      lib/xarray.c
20686 F:      tools/testing/radix-tree
20687
20688 XBOX DVD IR REMOTE
20689 M:      Benjamin Valentin <benpicco@googlemail.com>
20690 S:      Maintained
20691 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20692 F:      drivers/media/rc/xbox_remote.c
20693
20694 XC2028/3028 TUNER DRIVER
20695 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20696 L:      linux-media@vger.kernel.org
20697 S:      Maintained
20698 W:      https://linuxtv.org
20699 T:      git git://linuxtv.org/media_tree.git
20700 F:      drivers/media/tuners/tuner-xc2028.*
20701
20702 XDP (eXpress Data Path)
20703 M:      Alexei Starovoitov <ast@kernel.org>
20704 M:      Daniel Borkmann <daniel@iogearbox.net>
20705 M:      David S. Miller <davem@davemloft.net>
20706 M:      Jakub Kicinski <kuba@kernel.org>
20707 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20708 M:      John Fastabend <john.fastabend@gmail.com>
20709 L:      netdev@vger.kernel.org
20710 L:      bpf@vger.kernel.org
20711 S:      Supported
20712 F:      include/net/xdp.h
20713 F:      include/net/xdp_priv.h
20714 F:      include/trace/events/xdp.h
20715 F:      kernel/bpf/cpumap.c
20716 F:      kernel/bpf/devmap.c
20717 F:      net/core/xdp.c
20718 F:      samples/bpf/xdp*
20719 F:      tools/testing/selftests/bpf/*xdp*
20720 F:      tools/testing/selftests/bpf/*/*xdp*
20721 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20722 F:      drivers/net/ethernet/*/*/*xdp*
20723 K:      (?:\b|_)xdp(?:\b|_)
20724
20725 XDP SOCKETS (AF_XDP)
20726 M:      Björn Töpel <bjorn@kernel.org>
20727 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20728 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20729 L:      netdev@vger.kernel.org
20730 L:      bpf@vger.kernel.org
20731 S:      Maintained
20732 F:      Documentation/networking/af_xdp.rst
20733 F:      include/net/xdp_sock*
20734 F:      include/net/xsk_buff_pool.h
20735 F:      include/uapi/linux/if_xdp.h
20736 F:      include/uapi/linux/xdp_diag.h
20737 F:      include/net/netns/xdp.h
20738 F:      net/xdp/
20739 F:      samples/bpf/xdpsock*
20740 F:      tools/lib/bpf/xsk*
20741
20742 XEN BLOCK SUBSYSTEM
20743 M:      Roger Pau Monné <roger.pau@citrix.com>
20744 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20745 S:      Supported
20746 F:      drivers/block/xen*
20747 F:      drivers/block/xen-blkback/*
20748
20749 XEN HYPERVISOR ARM
20750 M:      Stefano Stabellini <sstabellini@kernel.org>
20751 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20752 S:      Maintained
20753 F:      arch/arm/include/asm/xen/
20754 F:      arch/arm/xen/
20755
20756 XEN HYPERVISOR ARM64
20757 M:      Stefano Stabellini <sstabellini@kernel.org>
20758 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20759 S:      Maintained
20760 F:      arch/arm64/include/asm/xen/
20761 F:      arch/arm64/xen/
20762
20763 XEN HYPERVISOR INTERFACE
20764 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20765 M:      Juergen Gross <jgross@suse.com>
20766 R:      Stefano Stabellini <sstabellini@kernel.org>
20767 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20768 S:      Supported
20769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20770 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20771 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20772 F:      arch/x86/include/asm/pvclock-abi.h
20773 F:      arch/x86/include/asm/xen/
20774 F:      arch/x86/platform/pvh/
20775 F:      arch/x86/xen/
20776 F:      drivers/*/xen-*front.c
20777 F:      drivers/xen/
20778 F:      include/uapi/xen/
20779 F:      include/xen/
20780
20781 XEN NETWORK BACKEND DRIVER
20782 M:      Wei Liu <wei.liu@kernel.org>
20783 M:      Paul Durrant <paul@xen.org>
20784 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20785 L:      netdev@vger.kernel.org
20786 S:      Supported
20787 F:      drivers/net/xen-netback/*
20788
20789 XEN PCI SUBSYSTEM
20790 M:      Juergen Gross <jgross@suse.com>
20791 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20792 S:      Supported
20793 F:      arch/x86/pci/*xen*
20794 F:      drivers/pci/*xen*
20795
20796 XEN PVSCSI DRIVERS
20797 M:      Juergen Gross <jgross@suse.com>
20798 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20799 L:      linux-scsi@vger.kernel.org
20800 S:      Supported
20801 F:      drivers/scsi/xen-scsifront.c
20802 F:      drivers/xen/xen-scsiback.c
20803 F:      include/xen/interface/io/vscsiif.h
20804
20805 XEN SOUND FRONTEND DRIVER
20806 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20807 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20808 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20809 S:      Supported
20810 F:      sound/xen/*
20811
20812 XEN SWIOTLB SUBSYSTEM
20813 M:      Juergen Gross <jgross@suse.com>
20814 M:      Stefano Stabellini <sstabellini@kernel.org>
20815 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20816 L:      iommu@lists.linux-foundation.org
20817 S:      Supported
20818 F:      arch/x86/xen/*swiotlb*
20819 F:      drivers/xen/*swiotlb*
20820
20821 XFS FILESYSTEM
20822 C:      irc://irc.oftc.net/xfs
20823 M:      Darrick J. Wong <djwong@kernel.org>
20824 M:      linux-xfs@vger.kernel.org
20825 L:      linux-xfs@vger.kernel.org
20826 S:      Supported
20827 W:      http://xfs.org/
20828 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20829 F:      Documentation/ABI/testing/sysfs-fs-xfs
20830 F:      Documentation/admin-guide/xfs.rst
20831 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20832 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20833 F:      fs/xfs/
20834 F:      include/uapi/linux/dqblk_xfs.h
20835 F:      include/uapi/linux/fsmap.h
20836
20837 XILINX AXI ETHERNET DRIVER
20838 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20839 S:      Maintained
20840 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20841
20842 XILINX CAN DRIVER
20843 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20844 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20845 L:      linux-can@vger.kernel.org
20846 S:      Maintained
20847 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20848 F:      drivers/net/can/xilinx_can.c
20849
20850 XILINX GPIO DRIVER
20851 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20852 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20853 R:      Michal Simek <michal.simek@xilinx.com>
20854 S:      Maintained
20855 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20856 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20857 F:      drivers/gpio/gpio-xilinx.c
20858 F:      drivers/gpio/gpio-zynq.c
20859
20860 XILINX SD-FEC IP CORES
20861 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20862 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20863 S:      Maintained
20864 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20865 F:      Documentation/misc-devices/xilinx_sdfec.rst
20866 F:      drivers/misc/Kconfig
20867 F:      drivers/misc/Makefile
20868 F:      drivers/misc/xilinx_sdfec.c
20869 F:      include/uapi/misc/xilinx_sdfec.h
20870
20871 XILINX UARTLITE SERIAL DRIVER
20872 M:      Peter Korsgaard <jacmet@sunsite.dk>
20873 L:      linux-serial@vger.kernel.org
20874 S:      Maintained
20875 F:      drivers/tty/serial/uartlite.c
20876
20877 XILINX VIDEO IP CORES
20878 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20879 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20880 L:      linux-media@vger.kernel.org
20881 S:      Supported
20882 T:      git git://linuxtv.org/media_tree.git
20883 F:      Documentation/devicetree/bindings/media/xilinx/
20884 F:      drivers/media/platform/xilinx/
20885 F:      include/uapi/linux/xilinx-v4l2-controls.h
20886
20887 XILINX ZYNQMP DPDMA DRIVER
20888 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20889 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20890 L:      dmaengine@vger.kernel.org
20891 S:      Supported
20892 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20893 F:      drivers/dma/xilinx/xilinx_dpdma.c
20894 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20895
20896 XILINX ZYNQMP PSGTR PHY DRIVER
20897 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20898 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20899 L:      linux-kernel@vger.kernel.org
20900 S:      Supported
20901 T:      git https://github.com/Xilinx/linux-xlnx.git
20902 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20903 F:      drivers/phy/xilinx/phy-zynqmp.c
20904
20905 XILLYBUS DRIVER
20906 M:      Eli Billauer <eli.billauer@gmail.com>
20907 L:      linux-kernel@vger.kernel.org
20908 S:      Supported
20909 F:      drivers/char/xillybus/
20910
20911 XLP9XX I2C DRIVER
20912 M:      George Cherian <gcherian@marvell.com>
20913 L:      linux-i2c@vger.kernel.org
20914 S:      Supported
20915 W:      http://www.marvell.com
20916 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20917 F:      drivers/i2c/busses/i2c-xlp9xx.c
20918
20919 XRA1403 GPIO EXPANDER
20920 M:      Nandor Han <nandor.han@ge.com>
20921 M:      Semi Malinen <semi.malinen@ge.com>
20922 L:      linux-gpio@vger.kernel.org
20923 S:      Maintained
20924 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20925 F:      drivers/gpio/gpio-xra1403.c
20926
20927 XTENSA XTFPGA PLATFORM SUPPORT
20928 M:      Max Filippov <jcmvbkbc@gmail.com>
20929 L:      linux-xtensa@linux-xtensa.org
20930 S:      Maintained
20931 F:      drivers/spi/spi-xtensa-xtfpga.c
20932 F:      sound/soc/xtensa/xtfpga-i2s.c
20933
20934 YAM DRIVER FOR AX.25
20935 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20936 L:      linux-hams@vger.kernel.org
20937 S:      Maintained
20938 F:      drivers/net/hamradio/yam*
20939 F:      include/linux/yam.h
20940
20941 YAMA SECURITY MODULE
20942 M:      Kees Cook <keescook@chromium.org>
20943 S:      Supported
20944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20945 F:      Documentation/admin-guide/LSM/Yama.rst
20946 F:      security/yama/
20947
20948 YEALINK PHONE DRIVER
20949 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20950 L:      usbb2k-api-dev@nongnu.org
20951 S:      Maintained
20952 F:      Documentation/input/devices/yealink.rst
20953 F:      drivers/input/misc/yealink.*
20954
20955 Z8530 DRIVER FOR AX.25
20956 M:      Joerg Reuter <jreuter@yaina.de>
20957 L:      linux-hams@vger.kernel.org
20958 S:      Maintained
20959 W:      http://yaina.de/jreuter/
20960 W:      http://www.qsl.net/dl1bke/
20961 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20962 F:      drivers/net/hamradio/*scc.c
20963 F:      drivers/net/hamradio/z8530.h
20964
20965 ZBUD COMPRESSED PAGE ALLOCATOR
20966 M:      Seth Jennings <sjenning@redhat.com>
20967 M:      Dan Streetman <ddstreet@ieee.org>
20968 L:      linux-mm@kvack.org
20969 S:      Maintained
20970 F:      mm/zbud.c
20971
20972 ZD1211RW WIRELESS DRIVER
20973 M:      Ulrich Kunitz <kune@deine-taler.de>
20974 L:      linux-wireless@vger.kernel.org
20975 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20976 S:      Maintained
20977 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20978 F:      drivers/net/wireless/zydas/zd1211rw/
20979
20980 ZD1301 MEDIA DRIVER
20981 M:      Antti Palosaari <crope@iki.fi>
20982 L:      linux-media@vger.kernel.org
20983 S:      Maintained
20984 W:      https://linuxtv.org/
20985 W:      http://palosaari.fi/linux/
20986 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20987 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20988
20989 ZD1301_DEMOD MEDIA DRIVER
20990 M:      Antti Palosaari <crope@iki.fi>
20991 L:      linux-media@vger.kernel.org
20992 S:      Maintained
20993 W:      https://linuxtv.org/
20994 W:      http://palosaari.fi/linux/
20995 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20996 F:      drivers/media/dvb-frontends/zd1301_demod*
20997
20998 ZHAOXIN PROCESSOR SUPPORT
20999 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21000 L:      linux-kernel@vger.kernel.org
21001 S:      Maintained
21002 F:      arch/x86/kernel/cpu/zhaoxin.c
21003
21004 ZONEFS FILESYSTEM
21005 M:      Damien Le Moal <damien.lemoal@wdc.com>
21006 M:      Naohiro Aota <naohiro.aota@wdc.com>
21007 R:      Johannes Thumshirn <jth@kernel.org>
21008 L:      linux-fsdevel@vger.kernel.org
21009 S:      Maintained
21010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21011 F:      Documentation/filesystems/zonefs.rst
21012 F:      fs/zonefs/
21013
21014 ZPOOL COMPRESSED PAGE STORAGE API
21015 M:      Dan Streetman <ddstreet@ieee.org>
21016 L:      linux-mm@kvack.org
21017 S:      Maintained
21018 F:      include/linux/zpool.h
21019 F:      mm/zpool.c
21020
21021 ZR36067 VIDEO FOR LINUX DRIVER
21022 M:      Corentin Labbe <clabbe@baylibre.com>
21023 L:      mjpeg-users@lists.sourceforge.net
21024 L:      linux-media@vger.kernel.org
21025 S:      Maintained
21026 W:      http://mjpeg.sourceforge.net/driver-zoran/
21027 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21028 F:      Documentation/driver-api/media/drivers/zoran.rst
21029 F:      drivers/staging/media/zoran/
21030
21031 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21032 M:      Minchan Kim <minchan@kernel.org>
21033 M:      Nitin Gupta <ngupta@vflare.org>
21034 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21035 L:      linux-kernel@vger.kernel.org
21036 S:      Maintained
21037 F:      Documentation/admin-guide/blockdev/zram.rst
21038 F:      drivers/block/zram/
21039
21040 ZS DECSTATION Z85C30 SERIAL DRIVER
21041 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21042 S:      Maintained
21043 F:      drivers/tty/serial/zs.*
21044
21045 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21046 M:      Minchan Kim <minchan@kernel.org>
21047 M:      Nitin Gupta <ngupta@vflare.org>
21048 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21049 L:      linux-mm@kvack.org
21050 S:      Maintained
21051 F:      Documentation/vm/zsmalloc.rst
21052 F:      include/linux/zsmalloc.h
21053 F:      mm/zsmalloc.c
21054
21055 ZSWAP COMPRESSED SWAP CACHING
21056 M:      Seth Jennings <sjenning@redhat.com>
21057 M:      Dan Streetman <ddstreet@ieee.org>
21058 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21059 L:      linux-mm@kvack.org
21060 S:      Maintained
21061 F:      mm/zswap.c
21062
21063 THE REST
21064 M:      Linus Torvalds <torvalds@linux-foundation.org>
21065 L:      linux-kernel@vger.kernel.org
21066 S:      Buried alive in reporters
21067 Q:      http://patchwork.kernel.org/project/LKML/list/
21068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21069 F:      *
21070 F:      */