Merge tag 'devicetree-for-5.16' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 R:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 R:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FOR ARM64 (ACPI/arm64)
382 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
383 M:      Hanjun Guo <guohanjun@huawei.com>
384 M:      Sudeep Holla <sudeep.holla@arm.com>
385 L:      linux-acpi@vger.kernel.org
386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
387 S:      Maintained
388 F:      drivers/acpi/arm64
389
390 ACPI I2C MULTI INSTANTIATE DRIVER
391 M:      Hans de Goede <hdegoede@redhat.com>
392 L:      platform-driver-x86@vger.kernel.org
393 S:      Maintained
394 F:      drivers/platform/x86/i2c-multi-instantiate.c
395
396 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
397 M:      Sudeep Holla <sudeep.holla@arm.com>
398 L:      linux-acpi@vger.kernel.org
399 S:      Supported
400 F:      drivers/mailbox/pcc.c
401
402 ACPI PMIC DRIVERS
403 M:      "Rafael J. Wysocki" <rafael@kernel.org>
404 M:      Len Brown <lenb@kernel.org>
405 R:      Andy Shevchenko <andy@kernel.org>
406 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
407 L:      linux-acpi@vger.kernel.org
408 S:      Supported
409 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
410 B:      https://bugzilla.kernel.org
411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
412 F:      drivers/acpi/pmic/
413
414 ACPI THERMAL DRIVER
415 M:      Rafael J. Wysocki <rafael@kernel.org>
416 R:      Zhang Rui <rui.zhang@intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 W:      https://01.org/linux-acpi
420 B:      https://bugzilla.kernel.org
421 F:      drivers/acpi/*thermal*
422
423 ACPI VIOT DRIVER
424 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
425 L:      linux-acpi@vger.kernel.org
426 L:      iommu@lists.linux-foundation.org
427 S:      Maintained
428 F:      drivers/acpi/viot.c
429 F:      include/linux/acpi_viot.h
430
431 ACPI WMI DRIVER
432 L:      platform-driver-x86@vger.kernel.org
433 S:      Orphan
434 F:      drivers/platform/x86/wmi.c
435 F:      include/uapi/linux/wmi.h
436
437 ACRN HYPERVISOR SERVICE MODULE
438 M:      Fei Li <fei1.li@intel.com>
439 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
440 S:      Supported
441 W:      https://projectacrn.org
442 F:      Documentation/virt/acrn/
443 F:      drivers/virt/acrn/
444 F:      include/uapi/linux/acrn.h
445
446 AD1889 ALSA SOUND DRIVER
447 L:      linux-parisc@vger.kernel.org
448 S:      Maintained
449 W:      https://parisc.wiki.kernel.org/index.php/AD1889
450 F:      sound/pci/ad1889.*
451
452 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
453 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
454 L:      linux-iio@vger.kernel.org
455 S:      Supported
456 F:      drivers/iio/potentiometer/ad5110.c
457
458 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
459 M:      Michael Hennerich <michael.hennerich@analog.com>
460 S:      Supported
461 W:      http://wiki.analog.com/AD5254
462 W:      http://ez.analog.com/community/linux-device-drivers
463 F:      drivers/misc/ad525x_dpot.c
464
465 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5398
469 W:      http://ez.analog.com/community/linux-device-drivers
470 F:      drivers/regulator/ad5398.c
471
472 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD7142
476 W:      http://ez.analog.com/community/linux-device-drivers
477 F:      drivers/input/misc/ad714x.c
478
479 AD7877 TOUCHSCREEN DRIVER
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7877
483 W:      http://ez.analog.com/community/linux-device-drivers
484 F:      drivers/input/touchscreen/ad7877.c
485
486 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7879
490 W:      http://ez.analog.com/community/linux-device-drivers
491 F:      drivers/input/touchscreen/ad7879.c
492
493 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
494 M:      Jiri Kosina <jikos@kernel.org>
495 S:      Maintained
496
497 ADF7242 IEEE 802.15.4 RADIO DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 L:      linux-wpan@vger.kernel.org
500 S:      Supported
501 W:      https://wiki.analog.com/ADF7242
502 W:      http://ez.analog.com/community/linux-device-drivers
503 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
504 F:      drivers/net/ieee802154/adf7242.c
505
506 ADM1025 HARDWARE MONITOR DRIVER
507 M:      Jean Delvare <jdelvare@suse.com>
508 L:      linux-hwmon@vger.kernel.org
509 S:      Maintained
510 F:      Documentation/hwmon/adm1025.rst
511 F:      drivers/hwmon/adm1025.c
512
513 ADM1029 HARDWARE MONITOR DRIVER
514 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      drivers/hwmon/adm1029.c
518
519 ADM8211 WIRELESS DRIVER
520 L:      linux-wireless@vger.kernel.org
521 S:      Orphan
522 W:      https://wireless.wiki.kernel.org/
523 F:      drivers/net/wireless/admtek/adm8211.*
524
525 ADP1653 FLASH CONTROLLER DRIVER
526 M:      Sakari Ailus <sakari.ailus@iki.fi>
527 L:      linux-media@vger.kernel.org
528 S:      Maintained
529 F:      drivers/media/i2c/adp1653.c
530 F:      include/media/i2c/adp1653.h
531
532 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
533 M:      Michael Hennerich <michael.hennerich@analog.com>
534 S:      Supported
535 W:      http://wiki.analog.com/ADP5520
536 W:      http://ez.analog.com/community/linux-device-drivers
537 F:      drivers/gpio/gpio-adp5520.c
538 F:      drivers/input/keyboard/adp5520-keys.c
539 F:      drivers/leds/leds-adp5520.c
540 F:      drivers/mfd/adp5520.c
541 F:      drivers/video/backlight/adp5520_bl.c
542
543 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5588
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5588.c
549 F:      drivers/input/keyboard/adp5588-keys.c
550
551 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP8860
555 W:      http://ez.analog.com/community/linux-device-drivers
556 F:      drivers/video/backlight/adp8860_bl.c
557
558 ADT746X FAN DRIVER
559 M:      Colin Leroy <colin@colino.net>
560 S:      Maintained
561 F:      drivers/macintosh/therm_adt746x.c
562
563 ADT7475 HARDWARE MONITOR DRIVER
564 M:      Jean Delvare <jdelvare@suse.com>
565 L:      linux-hwmon@vger.kernel.org
566 S:      Maintained
567 F:      Documentation/hwmon/adt7475.rst
568 F:      drivers/hwmon/adt7475.c
569
570 ADVANSYS SCSI DRIVER
571 M:      Matthew Wilcox <willy@infradead.org>
572 M:      Hannes Reinecke <hare@suse.com>
573 L:      linux-scsi@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/scsi/advansys.rst
576 F:      drivers/scsi/advansys.c
577
578 ADVANTECH SWBTN DRIVER
579 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
580 L:      platform-driver-x86@vger.kernel.org
581 S:      Maintained
582 F:      drivers/platform/x86/adv_swbutton.c
583
584 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
585 M:      Michael Hennerich <michael.hennerich@analog.com>
586 S:      Supported
587 W:      http://wiki.analog.com/ADXL345
588 W:      http://ez.analog.com/community/linux-device-drivers
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
590 F:      drivers/input/misc/adxl34x.c
591
592 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://ez.analog.com/community/linux-device-drivers
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
597 F:      drivers/iio/accel/adxl372.c
598 F:      drivers/iio/accel/adxl372_i2c.c
599 F:      drivers/iio/accel/adxl372_spi.c
600
601 AF9013 MEDIA DRIVER
602 M:      Antti Palosaari <crope@iki.fi>
603 L:      linux-media@vger.kernel.org
604 S:      Maintained
605 W:      https://linuxtv.org
606 W:      http://palosaari.fi/linux/
607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
608 T:      git git://linuxtv.org/anttip/media_tree.git
609 F:      drivers/media/dvb-frontends/af9013*
610
611 AF9033 MEDIA DRIVER
612 M:      Antti Palosaari <crope@iki.fi>
613 L:      linux-media@vger.kernel.org
614 S:      Maintained
615 W:      https://linuxtv.org
616 W:      http://palosaari.fi/linux/
617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
618 T:      git git://linuxtv.org/anttip/media_tree.git
619 F:      drivers/media/dvb-frontends/af9033*
620
621 AFFS FILE SYSTEM
622 M:      David Sterba <dsterba@suse.com>
623 L:      linux-fsdevel@vger.kernel.org
624 S:      Odd Fixes
625 F:      Documentation/filesystems/affs.rst
626 F:      fs/affs/
627
628 AFS FILESYSTEM
629 M:      David Howells <dhowells@redhat.com>
630 M:      Marc Dionne <marc.dionne@auristor.com>
631 L:      linux-afs@lists.infradead.org
632 S:      Supported
633 W:      https://www.infradead.org/~dhowells/kafs/
634 F:      Documentation/filesystems/afs.rst
635 F:      fs/afs/
636 F:      include/trace/events/afs.h
637
638 AGPGART DRIVER
639 M:      David Airlie <airlied@linux.ie>
640 S:      Maintained
641 T:      git git://anongit.freedesktop.org/drm/drm
642 F:      drivers/char/agp/
643 F:      include/linux/agp*
644 F:      include/uapi/linux/agp*
645
646 AHA152X SCSI DRIVER
647 M:      "Juergen E. Fischer" <fischer@norbit.de>
648 L:      linux-scsi@vger.kernel.org
649 S:      Maintained
650 F:      drivers/scsi/aha152x*
651 F:      drivers/scsi/pcmcia/aha152x*
652
653 AIC7XXX / AIC79XX SCSI DRIVER
654 M:      Hannes Reinecke <hare@suse.com>
655 L:      linux-scsi@vger.kernel.org
656 S:      Maintained
657 F:      drivers/scsi/aic7xxx/
658
659 AIMSLAB FM RADIO RECEIVER DRIVER
660 M:      Hans Verkuil <hverkuil@xs4all.nl>
661 L:      linux-media@vger.kernel.org
662 S:      Maintained
663 W:      https://linuxtv.org
664 T:      git git://linuxtv.org/media_tree.git
665 F:      drivers/media/radio/radio-aimslab*
666
667 AIO
668 M:      Benjamin LaHaise <bcrl@kvack.org>
669 L:      linux-aio@kvack.org
670 S:      Supported
671 F:      fs/aio.c
672 F:      include/linux/*aio*.h
673
674 AIRSPY MEDIA DRIVER
675 M:      Antti Palosaari <crope@iki.fi>
676 L:      linux-media@vger.kernel.org
677 S:      Maintained
678 W:      https://linuxtv.org
679 W:      http://palosaari.fi/linux/
680 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
681 T:      git git://linuxtv.org/anttip/media_tree.git
682 F:      drivers/media/usb/airspy/
683
684 ALACRITECH GIGABIT ETHERNET DRIVER
685 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
686 S:      Maintained
687 F:      drivers/net/ethernet/alacritech/*
688
689 ALCATEL SPEEDTOUCH USB DRIVER
690 M:      Duncan Sands <duncan.sands@free.fr>
691 L:      linux-usb@vger.kernel.org
692 S:      Maintained
693 W:      http://www.linux-usb.org/SpeedTouch/
694 F:      drivers/usb/atm/speedtch.c
695 F:      drivers/usb/atm/usbatm.c
696
697 ALCHEMY AU1XX0 MMC DRIVER
698 M:      Manuel Lauss <manuel.lauss@gmail.com>
699 S:      Maintained
700 F:      drivers/mmc/host/au1xmmc.c
701
702 ALI1563 I2C DRIVER
703 M:      Rudolf Marek <r.marek@assembler.cz>
704 L:      linux-i2c@vger.kernel.org
705 S:      Maintained
706 F:      Documentation/i2c/busses/i2c-ali1563.rst
707 F:      drivers/i2c/busses/i2c-ali1563.c
708
709 ALIENWARE WMI DRIVER
710 L:      Dell.Client.Kernel@dell.com
711 S:      Maintained
712 F:      drivers/platform/x86/dell/alienware-wmi.c
713
714 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
715 M:      Tomislav Denis <tomislav.denis@avl.com>
716 L:      linux-iio@vger.kernel.org
717 S:      Maintained
718 W:      http://www.allsensors.com/
719 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
720 F:      drivers/iio/pressure/dlhl60d.c
721
722 ALLEGRO DVT VIDEO IP CORE DRIVER
723 M:      Michael Tretter <m.tretter@pengutronix.de>
724 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
725 L:      linux-media@vger.kernel.org
726 S:      Maintained
727 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
728 F:      drivers/media/platform/allegro-dvt/
729
730 ALLWINNER A10 CSI DRIVER
731 M:      Maxime Ripard <mripard@kernel.org>
732 L:      linux-media@vger.kernel.org
733 S:      Maintained
734 T:      git git://linuxtv.org/media_tree.git
735 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
736 F:      drivers/media/platform/sunxi/sun4i-csi/
737
738 ALLWINNER CPUFREQ DRIVER
739 M:      Yangtao Li <tiny.windzz@gmail.com>
740 L:      linux-pm@vger.kernel.org
741 S:      Maintained
742 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
743 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
744
745 ALLWINNER CRYPTO DRIVERS
746 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
747 L:      linux-crypto@vger.kernel.org
748 S:      Maintained
749 F:      drivers/crypto/allwinner/
750
751 ALLWINNER HARDWARE SPINLOCK SUPPORT
752 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
755 F:      drivers/hwspinlock/sun6i_hwspinlock.c
756
757 ALLWINNER THERMAL DRIVER
758 M:      Vasily Khoruzhick <anarsoul@gmail.com>
759 M:      Yangtao Li <tiny.windzz@gmail.com>
760 L:      linux-pm@vger.kernel.org
761 S:      Maintained
762 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
763 F:      drivers/thermal/sun8i_thermal.c
764
765 ALLWINNER VPU DRIVER
766 M:      Maxime Ripard <mripard@kernel.org>
767 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
768 L:      linux-media@vger.kernel.org
769 S:      Maintained
770 F:      drivers/staging/media/sunxi/cedrus/
771
772 ALPHA PORT
773 M:      Richard Henderson <rth@twiddle.net>
774 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
775 M:      Matt Turner <mattst88@gmail.com>
776 L:      linux-alpha@vger.kernel.org
777 S:      Odd Fixes
778 F:      arch/alpha/
779
780 ALPS PS/2 TOUCHPAD DRIVER
781 R:      Pali Rohár <pali@kernel.org>
782 F:      drivers/input/mouse/alps.*
783
784 ALTERA I2C CONTROLLER DRIVER
785 M:      Thor Thayer <thor.thayer@linux.intel.com>
786 S:      Maintained
787 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
788 F:      drivers/i2c/busses/i2c-altera.c
789
790 ALTERA MAILBOX DRIVER
791 M:      Mun Yew Tham <mun.yew.tham@intel.com>
792 S:      Maintained
793 F:      drivers/mailbox/mailbox-altera.c
794
795 ALTERA MSGDMA IP CORE DRIVER
796 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
797 R:      Stefan Roese <sr@denx.de>
798 L:      dmaengine@vger.kernel.org
799 S:      Odd Fixes
800 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
801 F:      drivers/dma/altera-msgdma.c
802
803 ALTERA PIO DRIVER
804 M:      Mun Yew Tham <mun.yew.tham@intel.com>
805 L:      linux-gpio@vger.kernel.org
806 S:      Maintained
807 F:      drivers/gpio/gpio-altera.c
808
809 ALTERA SYSTEM MANAGER DRIVER
810 M:      Thor Thayer <thor.thayer@linux.intel.com>
811 S:      Maintained
812 F:      drivers/mfd/altera-sysmgr.c
813 F:      include/linux/mfd/altera-sysmgr.h
814
815 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
816 M:      Thor Thayer <thor.thayer@linux.intel.com>
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera-a10sr.c
819 F:      drivers/mfd/altera-a10sr.c
820 F:      drivers/reset/reset-a10sr.c
821 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
822 F:      include/linux/mfd/altera-a10sr.h
823
824 ALTERA TRIPLE SPEED ETHERNET DRIVER
825 M:      Joyce Ooi <joyce.ooi@intel.com>
826 L:      netdev@vger.kernel.org
827 S:      Maintained
828 F:      drivers/net/ethernet/altera/
829
830 ALTERA UART/JTAG UART SERIAL DRIVERS
831 M:      Tobias Klauser <tklauser@distanz.ch>
832 L:      linux-serial@vger.kernel.org
833 S:      Maintained
834 F:      drivers/tty/serial/altera_jtaguart.c
835 F:      drivers/tty/serial/altera_uart.c
836 F:      include/linux/altera_jtaguart.h
837 F:      include/linux/altera_uart.h
838
839 AMAZON ANNAPURNA LABS FIC DRIVER
840 M:      Talel Shenhar <talel@amazon.com>
841 S:      Maintained
842 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
843 F:      drivers/irqchip/irq-al-fic.c
844
845 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
846 M:      Talel Shenhar <talel@amazon.com>
847 M:      Talel Shenhar <talelshenhar@gmail.com>
848 S:      Maintained
849 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
850 F:      drivers/edac/al_mc_edac.c
851
852 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
853 M:      Talel Shenhar <talel@amazon.com>
854 S:      Maintained
855 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
856 F:      drivers/thermal/thermal_mmio.c
857
858 AMAZON ETHERNET DRIVERS
859 M:      Netanel Belgazal <netanel@amazon.com>
860 M:      Arthur Kiyanovski <akiyano@amazon.com>
861 R:      Guy Tzalik <gtzalik@amazon.com>
862 R:      Saeed Bishara <saeedb@amazon.com>
863 L:      netdev@vger.kernel.org
864 S:      Supported
865 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
866 F:      drivers/net/ethernet/amazon/
867
868 AMAZON RDMA EFA DRIVER
869 M:      Gal Pressman <galpress@amazon.com>
870 R:      Yossi Leybovich <sleybo@amazon.com>
871 L:      linux-rdma@vger.kernel.org
872 S:      Supported
873 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
874 F:      drivers/infiniband/hw/efa/
875 F:      include/uapi/rdma/efa-abi.h
876
877 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
878 M:      Tom Lendacky <thomas.lendacky@amd.com>
879 M:      John Allen <john.allen@amd.com>
880 L:      linux-crypto@vger.kernel.org
881 S:      Supported
882 F:      drivers/crypto/ccp/
883 F:      include/linux/ccp.h
884
885 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
886 M:      Brijesh Singh <brijesh.singh@amd.com>
887 M:      Tom Lendacky <thomas.lendacky@amd.com>
888 L:      linux-crypto@vger.kernel.org
889 S:      Supported
890 F:      drivers/crypto/ccp/sev*
891 F:      include/uapi/linux/psp-sev.h
892
893 AMD DISPLAY CORE
894 M:      Harry Wentland <harry.wentland@amd.com>
895 M:      Leo Li <sunpeng.li@amd.com>
896 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
897 L:      amd-gfx@lists.freedesktop.org
898 S:      Supported
899 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
900 F:      drivers/gpu/drm/amd/display/
901
902 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
903 M:      Huang Rui <ray.huang@amd.com>
904 L:      linux-hwmon@vger.kernel.org
905 S:      Supported
906 F:      Documentation/hwmon/fam15h_power.rst
907 F:      drivers/hwmon/fam15h_power.c
908
909 AMD FCH GPIO DRIVER
910 M:      Enrico Weigelt, metux IT consult <info@metux.net>
911 L:      linux-gpio@vger.kernel.org
912 S:      Maintained
913 F:      drivers/gpio/gpio-amd-fch.c
914 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
915
916 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
917 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
918 S:      Orphan
919 F:      drivers/usb/gadget/udc/amd5536udc.*
920
921 AMD GEODE PROCESSOR/CHIPSET SUPPORT
922 M:      Andres Salomon <dilinger@queued.net>
923 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
924 S:      Supported
925 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
926 F:      arch/x86/include/asm/geode.h
927 F:      drivers/char/hw_random/geode-rng.c
928 F:      drivers/crypto/geode*
929 F:      drivers/video/fbdev/geode/
930
931 AMD IOMMU (AMD-VI)
932 M:      Joerg Roedel <joro@8bytes.org>
933 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
934 L:      iommu@lists.linux-foundation.org
935 S:      Maintained
936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
937 F:      drivers/iommu/amd/
938 F:      include/linux/amd-iommu.h
939
940 AMD KFD
941 M:      Felix Kuehling <Felix.Kuehling@amd.com>
942 L:      amd-gfx@lists.freedesktop.org
943 S:      Supported
944 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
945 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
946 F:      drivers/gpu/drm/amd/amdkfd/
947 F:      drivers/gpu/drm/amd/include/cik_structs.h
948 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
949 F:      drivers/gpu/drm/amd/include/v9_structs.h
950 F:      drivers/gpu/drm/amd/include/vi_structs.h
951 F:      include/uapi/linux/kfd_ioctl.h
952
953 AMD SPI DRIVER
954 M:      Sanjay R Mehta <sanju.mehta@amd.com>
955 S:      Maintained
956 F:      drivers/spi/spi-amd.c
957
958 AMD MP2 I2C DRIVER
959 M:      Elie Morisse <syniurge@gmail.com>
960 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
961 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
962 L:      linux-i2c@vger.kernel.org
963 S:      Maintained
964 F:      drivers/i2c/busses/i2c-amd-mp2*
965
966 AMD PMC DRIVER
967 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
968 L:      platform-driver-x86@vger.kernel.org
969 S:      Maintained
970 F:      drivers/platform/x86/amd-pmc.*
971
972 AMD POWERPLAY AND SWSMU
973 M:      Evan Quan <evan.quan@amd.com>
974 L:      amd-gfx@lists.freedesktop.org
975 S:      Supported
976 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
977 F:      drivers/gpu/drm/amd/pm/
978
979 AMD PTDMA DRIVER
980 M:      Sanjay R Mehta <sanju.mehta@amd.com>
981 L:      dmaengine@vger.kernel.org
982 S:      Maintained
983 F:      drivers/dma/ptdma/
984
985 AMD SEATTLE DEVICE TREE SUPPORT
986 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
987 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
988 M:      Tom Lendacky <thomas.lendacky@amd.com>
989 S:      Supported
990 F:      arch/arm64/boot/dts/amd/
991
992 AMD XGBE DRIVER
993 M:      Tom Lendacky <thomas.lendacky@amd.com>
994 L:      netdev@vger.kernel.org
995 S:      Supported
996 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
997 F:      drivers/net/ethernet/amd/xgbe/
998
999 AMD SENSOR FUSION HUB DRIVER
1000 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1001 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1002 L:      linux-input@vger.kernel.org
1003 S:      Maintained
1004 F:      Documentation/hid/amd-sfh*
1005 F:      drivers/hid/amd-sfh-hid/
1006
1007 AMS AS73211 DRIVER
1008 M:      Christian Eggers <ceggers@arri.de>
1009 L:      linux-iio@vger.kernel.org
1010 S:      Maintained
1011 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1012 F:      drivers/iio/light/as73211.c
1013
1014 AMT (Automatic Multicast Tunneling)
1015 M:      Taehee Yoo <ap420073@gmail.com>
1016 L:      netdev@vger.kernel.org
1017 S:      Maintained
1018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1020 F:      drivers/net/amt.c
1021
1022 ANALOG DEVICES INC AD7192 DRIVER
1023 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1024 L:      linux-iio@vger.kernel.org
1025 S:      Supported
1026 W:      http://ez.analog.com/community/linux-device-drivers
1027 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1028 F:      drivers/iio/adc/ad7192.c
1029
1030 ANALOG DEVICES INC AD7292 DRIVER
1031 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1032 L:      linux-iio@vger.kernel.org
1033 S:      Supported
1034 W:      http://ez.analog.com/community/linux-device-drivers
1035 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1036 F:      drivers/iio/adc/ad7292.c
1037
1038 ANALOG DEVICES INC AD7768-1 DRIVER
1039 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1040 L:      linux-iio@vger.kernel.org
1041 S:      Supported
1042 W:      http://ez.analog.com/community/linux-device-drivers
1043 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1044 F:      drivers/iio/adc/ad7768-1.c
1045
1046 ANALOG DEVICES INC AD7780 DRIVER
1047 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1048 M:      Renato Lui Geh <renatogeh@gmail.com>
1049 L:      linux-iio@vger.kernel.org
1050 S:      Supported
1051 W:      http://ez.analog.com/community/linux-device-drivers
1052 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1053 F:      drivers/iio/adc/ad7780.c
1054
1055 ANALOG DEVICES INC AD9389B DRIVER
1056 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      drivers/media/i2c/ad9389b*
1060
1061 ANALOG DEVICES INC ADGS1408 DRIVER
1062 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1063 S:      Supported
1064 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1065 F:      drivers/mux/adgs1408.c
1066
1067 ANALOG DEVICES INC ADIN DRIVER
1068 M:      Michael Hennerich <michael.hennerich@analog.com>
1069 L:      netdev@vger.kernel.org
1070 S:      Supported
1071 W:      http://ez.analog.com/community/linux-device-drivers
1072 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1073 F:      drivers/net/phy/adin.c
1074
1075 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1076 M:      Nuno Sa <nuno.sa@analog.com>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Supported
1079 F:      drivers/iio/imu/adis.c
1080 F:      include/linux/iio/imu/adis.h
1081
1082 ANALOG DEVICES INC ADIS16460 DRIVER
1083 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1084 L:      linux-iio@vger.kernel.org
1085 S:      Supported
1086 W:      http://ez.analog.com/community/linux-device-drivers
1087 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1088 F:      drivers/iio/imu/adis16460.c
1089
1090 ANALOG DEVICES INC ADIS16475 DRIVER
1091 M:      Nuno Sa <nuno.sa@analog.com>
1092 L:      linux-iio@vger.kernel.org
1093 W:      http://ez.analog.com/community/linux-device-drivers
1094 S:      Supported
1095 F:      drivers/iio/imu/adis16475.c
1096 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1097
1098 ANALOG DEVICES INC ADM1177 DRIVER
1099 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1100 L:      linux-hwmon@vger.kernel.org
1101 S:      Supported
1102 W:      http://ez.analog.com/community/linux-device-drivers
1103 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1104 F:      drivers/hwmon/adm1177.c
1105
1106 ANALOG DEVICES INC ADP5061 DRIVER
1107 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1108 L:      linux-pm@vger.kernel.org
1109 S:      Supported
1110 W:      http://ez.analog.com/community/linux-device-drivers
1111 F:      drivers/power/supply/adp5061.c
1112
1113 ANALOG DEVICES INC ADV7180 DRIVER
1114 M:      Lars-Peter Clausen <lars@metafoo.de>
1115 L:      linux-media@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      drivers/media/i2c/adv7180.c
1119 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1120
1121 ANALOG DEVICES INC ADV748X DRIVER
1122 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1123 L:      linux-media@vger.kernel.org
1124 S:      Maintained
1125 F:      drivers/media/i2c/adv748x/*
1126
1127 ANALOG DEVICES INC ADV7511 DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/adv7511*
1132
1133 ANALOG DEVICES INC ADV7604 DRIVER
1134 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1135 L:      linux-media@vger.kernel.org
1136 S:      Maintained
1137 F:      drivers/media/i2c/adv7604*
1138 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1139
1140 ANALOG DEVICES INC ADV7842 DRIVER
1141 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1142 L:      linux-media@vger.kernel.org
1143 S:      Maintained
1144 F:      drivers/media/i2c/adv7842*
1145
1146 ANALOG DEVICES INC ADXRS290 DRIVER
1147 M:      Nishant Malpani <nish.malpani25@gmail.com>
1148 L:      linux-iio@vger.kernel.org
1149 S:      Supported
1150 F:      drivers/iio/gyro/adxrs290.c
1151 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1152
1153 ANALOG DEVICES INC ASOC CODEC DRIVERS
1154 M:      Lars-Peter Clausen <lars@metafoo.de>
1155 M:      Nuno Sá <nuno.sa@analog.com>
1156 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1157 S:      Supported
1158 W:      http://wiki.analog.com/
1159 W:      http://ez.analog.com/community/linux-device-drivers
1160 F:      sound/soc/codecs/ad1*
1161 F:      sound/soc/codecs/ad7*
1162 F:      sound/soc/codecs/adau*
1163 F:      sound/soc/codecs/adav*
1164 F:      sound/soc/codecs/sigmadsp.*
1165 F:      sound/soc/codecs/ssm*
1166
1167 ANALOG DEVICES INC DMA DRIVERS
1168 M:      Lars-Peter Clausen <lars@metafoo.de>
1169 S:      Supported
1170 W:      http://ez.analog.com/community/linux-device-drivers
1171 F:      drivers/dma/dma-axi-dmac.c
1172
1173 ANALOG DEVICES INC IIO DRIVERS
1174 M:      Lars-Peter Clausen <lars@metafoo.de>
1175 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1176 S:      Supported
1177 W:      http://wiki.analog.com/
1178 W:      http://ez.analog.com/community/linux-device-drivers
1179 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1180 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1181 F:      Documentation/devicetree/bindings/iio/*/adi,*
1182 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1183 F:      drivers/iio/*/ad*
1184 F:      drivers/iio/adc/ltc249*
1185 F:      drivers/iio/amplifiers/hmc425a.c
1186 F:      drivers/staging/iio/*/ad*
1187 X:      drivers/iio/*/adjd*
1188
1189 ANALOGBITS PLL LIBRARIES
1190 M:      Paul Walmsley <paul.walmsley@sifive.com>
1191 S:      Supported
1192 F:      drivers/clk/analogbits/*
1193 F:      include/linux/clk/analogbits*
1194
1195 ANDES ARCHITECTURE
1196 M:      Nick Hu <nickhu@andestech.com>
1197 M:      Greentime Hu <green.hu@gmail.com>
1198 M:      Vincent Chen <deanbo422@gmail.com>
1199 S:      Supported
1200 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1201 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1202 F:      Documentation/devicetree/bindings/nds32/
1203 F:      arch/nds32/
1204 N:      nds32
1205 K:      nds32
1206
1207 ANDROID CONFIG FRAGMENTS
1208 M:      Rob Herring <robh@kernel.org>
1209 S:      Supported
1210 F:      kernel/configs/android*
1211
1212 ANDROID DRIVERS
1213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1214 M:      Arve Hjønnevåg <arve@android.com>
1215 M:      Todd Kjos <tkjos@android.com>
1216 M:      Martijn Coenen <maco@android.com>
1217 M:      Joel Fernandes <joel@joelfernandes.org>
1218 M:      Christian Brauner <christian@brauner.io>
1219 M:      Hridya Valsaraju <hridya@google.com>
1220 M:      Suren Baghdasaryan <surenb@google.com>
1221 L:      linux-kernel@vger.kernel.org
1222 S:      Supported
1223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1224 F:      drivers/android/
1225 F:      drivers/staging/android/
1226
1227 ANDROID GOLDFISH PIC DRIVER
1228 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1229 S:      Supported
1230 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1231 F:      drivers/irqchip/irq-goldfish-pic.c
1232
1233 ANDROID GOLDFISH RTC DRIVER
1234 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1235 S:      Supported
1236 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1237 F:      drivers/rtc/rtc-goldfish.c
1238
1239 AOA (Apple Onboard Audio) ALSA DRIVER
1240 M:      Johannes Berg <johannes@sipsolutions.net>
1241 L:      linuxppc-dev@lists.ozlabs.org
1242 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1243 S:      Maintained
1244 F:      sound/aoa/
1245
1246 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1247 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1248 L:      linux-iio@vger.kernel.org
1249 S:      Maintained
1250 F:      drivers/iio/adc/stx104.c
1251
1252 APM DRIVER
1253 M:      Jiri Kosina <jikos@kernel.org>
1254 S:      Odd fixes
1255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1256 F:      arch/x86/kernel/apm_32.c
1257 F:      drivers/char/apm-emulation.c
1258 F:      include/linux/apm_bios.h
1259 F:      include/uapi/linux/apm_bios.h
1260
1261 APPARMOR SECURITY MODULE
1262 M:      John Johansen <john.johansen@canonical.com>
1263 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1264 S:      Supported
1265 W:      wiki.apparmor.net
1266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1267 F:      Documentation/admin-guide/LSM/apparmor.rst
1268 F:      security/apparmor/
1269
1270 APPLE BCM5974 MULTITOUCH DRIVER
1271 M:      Henrik Rydberg <rydberg@bitmath.org>
1272 L:      linux-input@vger.kernel.org
1273 S:      Odd fixes
1274 F:      drivers/input/mouse/bcm5974.c
1275
1276 APPLE DART IOMMU DRIVER
1277 M:      Sven Peter <sven@svenpeter.dev>
1278 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1279 L:      iommu@lists.linux-foundation.org
1280 S:      Maintained
1281 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1282 F:      drivers/iommu/apple-dart.c
1283
1284 APPLE SMC DRIVER
1285 M:      Henrik Rydberg <rydberg@bitmath.org>
1286 L:      linux-hwmon@vger.kernel.org
1287 S:      Odd fixes
1288 F:      drivers/hwmon/applesmc.c
1289
1290 APPLETALK NETWORK LAYER
1291 L:      netdev@vger.kernel.org
1292 S:      Odd fixes
1293 F:      drivers/net/appletalk/
1294 F:      include/linux/atalk.h
1295 F:      include/uapi/linux/atalk.h
1296 F:      net/appletalk/
1297
1298 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1299 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1300 S:      Supported
1301 F:      arch/arm64/boot/dts/apm/
1302
1303 APPLIED MICRO (APM) X-GENE SOC EDAC
1304 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1305 S:      Supported
1306 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1307 F:      drivers/edac/xgene_edac.c
1308
1309 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1310 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1311 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1312 S:      Supported
1313 F:      drivers/net/ethernet/apm/xgene-v2/
1314
1315 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1316 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1317 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1318 M:      Quan Nguyen <quan@os.amperecomputing.com>
1319 S:      Supported
1320 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1321 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1322 F:      drivers/net/ethernet/apm/xgene/
1323 F:      drivers/net/mdio/mdio-xgene.c
1324
1325 APPLIED MICRO (APM) X-GENE SOC PMU
1326 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1327 S:      Supported
1328 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1329 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1330 F:      drivers/perf/xgene_pmu.c
1331
1332 APTINA CAMERA SENSOR PLL
1333 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1334 L:      linux-media@vger.kernel.org
1335 S:      Maintained
1336 F:      drivers/media/i2c/aptina-pll.*
1337
1338 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1339 M:      Aleksa Savic <savicaleksa83@gmail.com>
1340 L:      linux-hwmon@vger.kernel.org
1341 S:      Maintained
1342 F:      Documentation/hwmon/aquacomputer_d5next.rst
1343 F:      drivers/hwmon/aquacomputer_d5next.c
1344
1345 AQUANTIA ETHERNET DRIVER (atlantic)
1346 M:      Igor Russkikh <irusskikh@marvell.com>
1347 L:      netdev@vger.kernel.org
1348 S:      Supported
1349 W:      https://www.marvell.com/
1350 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1351 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1352 F:      drivers/net/ethernet/aquantia/atlantic/
1353
1354 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1355 M:      Egor Pomozov <epomozov@marvell.com>
1356 L:      netdev@vger.kernel.org
1357 S:      Supported
1358 W:      http://www.aquantia.com
1359 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1360
1361 ARASAN NAND CONTROLLER DRIVER
1362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1363 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1364 L:      linux-mtd@lists.infradead.org
1365 S:      Maintained
1366 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1367 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1368
1369 ARC FRAMEBUFFER DRIVER
1370 M:      Jaya Kumar <jayalk@intworks.biz>
1371 S:      Maintained
1372 F:      drivers/video/fbdev/arcfb.c
1373 F:      drivers/video/fbdev/core/fb_defio.c
1374
1375 ARC PGU DRM DRIVER
1376 M:      Alexey Brodkin <abrodkin@synopsys.com>
1377 S:      Supported
1378 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1379 F:      drivers/gpu/drm/tiny/arcpgu.c
1380
1381 ARCNET NETWORK LAYER
1382 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1383 L:      netdev@vger.kernel.org
1384 S:      Maintained
1385 F:      drivers/net/arcnet/
1386 F:      include/uapi/linux/if_arcnet.h
1387
1388 ARM ARCHITECTED TIMER DRIVER
1389 M:      Mark Rutland <mark.rutland@arm.com>
1390 M:      Marc Zyngier <maz@kernel.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/include/asm/arch_timer.h
1394 F:      arch/arm64/include/asm/arch_timer.h
1395 F:      drivers/clocksource/arm_arch_timer.c
1396
1397 ARM HDLCD DRM DRIVER
1398 M:      Liviu Dudau <liviu.dudau@arm.com>
1399 S:      Supported
1400 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1401 F:      drivers/gpu/drm/arm/hdlcd_*
1402
1403 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1404 M:      Linus Walleij <linus.walleij@linaro.org>
1405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1408 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1409 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1410 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1411 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1412 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1413 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1414 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1415 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1416 F:      arch/arm/boot/dts/arm-realview-*
1417 F:      arch/arm/boot/dts/integrator*
1418 F:      arch/arm/boot/dts/versatile*
1419 F:      arch/arm/mach-integrator/
1420 F:      arch/arm/mach-realview/
1421 F:      arch/arm/mach-versatile/
1422 F:      arch/arm/plat-versatile/
1423 F:      drivers/bus/arm-integrator-lm.c
1424 F:      drivers/clk/versatile/
1425 F:      drivers/i2c/busses/i2c-versatile.c
1426 F:      drivers/irqchip/irq-versatile-fpga.c
1427 F:      drivers/mtd/maps/physmap-versatile.*
1428 F:      drivers/power/reset/arm-versatile-reboot.c
1429 F:      drivers/soc/versatile/
1430
1431 ARM KOMEDA DRM-KMS DRIVER
1432 M:      James (Qian) Wang <james.qian.wang@arm.com>
1433 M:      Liviu Dudau <liviu.dudau@arm.com>
1434 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1435 L:      Mali DP Maintainers <malidp@foss.arm.com>
1436 S:      Supported
1437 T:      git git://anongit.freedesktop.org/drm/drm-misc
1438 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1439 F:      Documentation/gpu/komeda-kms.rst
1440 F:      drivers/gpu/drm/arm/display/include/
1441 F:      drivers/gpu/drm/arm/display/komeda/
1442
1443 ARM MALI PANFROST DRM DRIVER
1444 M:      Rob Herring <robh@kernel.org>
1445 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1446 R:      Steven Price <steven.price@arm.com>
1447 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1448 L:      dri-devel@lists.freedesktop.org
1449 S:      Supported
1450 T:      git git://anongit.freedesktop.org/drm/drm-misc
1451 F:      drivers/gpu/drm/panfrost/
1452 F:      include/uapi/drm/panfrost_drm.h
1453
1454 ARM MALI-DP DRM DRIVER
1455 M:      Liviu Dudau <liviu.dudau@arm.com>
1456 M:      Brian Starkey <brian.starkey@arm.com>
1457 L:      Mali DP Maintainers <malidp@foss.arm.com>
1458 S:      Supported
1459 T:      git git://anongit.freedesktop.org/drm/drm-misc
1460 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1461 F:      Documentation/gpu/afbc.rst
1462 F:      drivers/gpu/drm/arm/
1463
1464 ARM MFM AND FLOPPY DRIVERS
1465 M:      Ian Molton <spyro@f2s.com>
1466 S:      Maintained
1467 F:      arch/arm/include/asm/floppy.h
1468 F:      arch/arm/mach-rpc/floppydma.S
1469
1470 ARM PMU PROFILING AND DEBUGGING
1471 M:      Will Deacon <will@kernel.org>
1472 M:      Mark Rutland <mark.rutland@arm.com>
1473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1476 F:      Documentation/devicetree/bindings/perf/
1477 F:      arch/arm*/include/asm/hw_breakpoint.h
1478 F:      arch/arm*/include/asm/perf_event.h
1479 F:      arch/arm*/kernel/hw_breakpoint.c
1480 F:      arch/arm*/kernel/perf_*
1481 F:      drivers/perf/
1482 F:      include/linux/perf/arm_pmu.h
1483
1484 ARM PORT
1485 M:      Russell King <linux@armlinux.org.uk>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 S:      Odd Fixes
1488 W:      http://www.armlinux.org.uk/
1489 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1490 F:      arch/arm/
1491 X:      arch/arm/boot/dts/
1492
1493 ARM PRIMECELL AACI PL041 DRIVER
1494 M:      Russell King <linux@armlinux.org.uk>
1495 S:      Odd Fixes
1496 F:      sound/arm/aaci.*
1497
1498 ARM PRIMECELL BUS SUPPORT
1499 M:      Russell King <linux@armlinux.org.uk>
1500 S:      Odd Fixes
1501 F:      drivers/amba/
1502 F:      include/linux/amba/bus.h
1503
1504 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1505 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1506 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1507 L:      linux-mtd@lists.infradead.org
1508 S:      Maintained
1509 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1510 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1511
1512 ARM PRIMECELL PL35X SMC DRIVER
1513 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1514 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1518 F:      drivers/memory/pl353-smc.c
1519
1520 ARM PRIMECELL CLCD PL110 DRIVER
1521 M:      Russell King <linux@armlinux.org.uk>
1522 S:      Odd Fixes
1523 F:      drivers/video/fbdev/amba-clcd.*
1524
1525 ARM PRIMECELL KMI PL050 DRIVER
1526 M:      Russell King <linux@armlinux.org.uk>
1527 S:      Odd Fixes
1528 F:      drivers/input/serio/ambakmi.*
1529 F:      include/linux/amba/kmi.h
1530
1531 ARM PRIMECELL MMCI PL180/1 DRIVER
1532 M:      Russell King <linux@armlinux.org.uk>
1533 S:      Odd Fixes
1534 F:      drivers/mmc/host/mmci.*
1535 F:      include/linux/amba/mmci.h
1536
1537 ARM PRIMECELL SSP PL022 SPI DRIVER
1538 M:      Linus Walleij <linus.walleij@linaro.org>
1539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1540 S:      Maintained
1541 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1542 F:      drivers/spi/spi-pl022.c
1543
1544 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/tty/serial/amba-pl01*.c
1548 F:      include/linux/amba/serial.h
1549
1550 ARM PRIMECELL VIC PL190/PL192 DRIVER
1551 M:      Linus Walleij <linus.walleij@linaro.org>
1552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 S:      Maintained
1554 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1555 F:      drivers/irqchip/irq-vic.c
1556
1557 ARM SMC WATCHDOG DRIVER
1558 M:      Julius Werner <jwerner@chromium.org>
1559 R:      Evan Benn <evanbenn@chromium.org>
1560 S:      Maintained
1561 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1562 F:      drivers/watchdog/arm_smc_wdt.c
1563
1564 ARM SMMU DRIVERS
1565 M:      Will Deacon <will@kernel.org>
1566 R:      Robin Murphy <robin.murphy@arm.com>
1567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1568 S:      Maintained
1569 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1570 F:      drivers/iommu/arm/
1571 F:      drivers/iommu/io-pgtable-arm*
1572
1573 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1574 M:      Arnd Bergmann <arnd@arndb.de>
1575 M:      Olof Johansson <olof@lixom.net>
1576 M:      soc@kernel.org
1577 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1578 S:      Maintained
1579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1580 F:      arch/arm/boot/dts/Makefile
1581 F:      arch/arm64/boot/dts/Makefile
1582
1583 ARM SUB-ARCHITECTURES
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1587 F:      arch/arm/mach-*/
1588 F:      arch/arm/plat-*/
1589
1590 ARM/ACTIONS SEMI ARCHITECTURE
1591 M:      Andreas Färber <afaerber@suse.de>
1592 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      Documentation/devicetree/bindings/arm/actions.yaml
1597 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1598 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1599 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1600 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1601 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1602 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1603 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1604 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1605 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1606 F:      arch/arm/boot/dts/owl-*
1607 F:      arch/arm/mach-actions/
1608 F:      arch/arm64/boot/dts/actions/
1609 F:      drivers/clk/actions/
1610 F:      drivers/clocksource/timer-owl*
1611 F:      drivers/dma/owl-dma.c
1612 F:      drivers/i2c/busses/i2c-owl.c
1613 F:      drivers/irqchip/irq-owl-sirq.c
1614 F:      drivers/mmc/host/owl-mmc.c
1615 F:      drivers/net/ethernet/actions/
1616 F:      drivers/pinctrl/actions/*
1617 F:      drivers/soc/actions/
1618 F:      include/dt-bindings/power/owl-*
1619 F:      include/dt-bindings/reset/actions,*
1620 F:      include/linux/soc/actions/
1621 N:      owl
1622
1623 ARM/ADS SPHERE MACHINE SUPPORT
1624 M:      Lennert Buytenhek <kernel@wantstofly.org>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627
1628 ARM/AFEB9260 MACHINE SUPPORT
1629 M:      Sergey Lapin <slapin@ossfans.org>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632
1633 ARM/AJECO 1ARM MACHINE SUPPORT
1634 M:      Lennert Buytenhek <kernel@wantstofly.org>
1635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 S:      Maintained
1637
1638 ARM/Allwinner SoC Clock Support
1639 M:      Emilio López <emilio@elopez.com.ar>
1640 S:      Maintained
1641 F:      drivers/clk/sunxi/
1642
1643 ARM/Allwinner sunXi SoC support
1644 M:      Maxime Ripard <mripard@kernel.org>
1645 M:      Chen-Yu Tsai <wens@csie.org>
1646 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1650 L:      linux-sunxi@lists.linux.dev
1651 F:      arch/arm/mach-sunxi/
1652 F:      arch/arm64/boot/dts/allwinner/
1653 F:      drivers/clk/sunxi-ng/
1654 F:      drivers/pinctrl/sunxi/
1655 F:      drivers/soc/sunxi/
1656 N:      allwinner
1657 N:      sun[x456789]i
1658 N:      sun50i
1659
1660 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1661 M:      Neil Armstrong <narmstrong@baylibre.com>
1662 M:      Jerome Brunet <jbrunet@baylibre.com>
1663 L:      linux-amlogic@lists.infradead.org
1664 S:      Maintained
1665 F:      Documentation/devicetree/bindings/clock/amlogic*
1666 F:      drivers/clk/meson/
1667 F:      include/dt-bindings/clock/gxbb*
1668 F:      include/dt-bindings/clock/meson*
1669
1670 ARM/Amlogic Meson SoC Crypto Drivers
1671 M:      Corentin Labbe <clabbe@baylibre.com>
1672 L:      linux-crypto@vger.kernel.org
1673 L:      linux-amlogic@lists.infradead.org
1674 S:      Maintained
1675 F:      Documentation/devicetree/bindings/crypto/amlogic*
1676 F:      drivers/crypto/amlogic/
1677
1678 ARM/Amlogic Meson SoC Sound Drivers
1679 M:      Jerome Brunet <jbrunet@baylibre.com>
1680 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1681 S:      Maintained
1682 F:      Documentation/devicetree/bindings/sound/amlogic*
1683 F:      sound/soc/meson/
1684
1685 ARM/Amlogic Meson SoC support
1686 M:      Neil Armstrong <narmstrong@baylibre.com>
1687 M:      Kevin Hilman <khilman@baylibre.com>
1688 R:      Jerome Brunet <jbrunet@baylibre.com>
1689 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 L:      linux-amlogic@lists.infradead.org
1692 S:      Maintained
1693 W:      http://linux-meson.com/
1694 F:      arch/arm/boot/dts/meson*
1695 F:      arch/arm/mach-meson/
1696 F:      arch/arm64/boot/dts/amlogic/
1697 F:      drivers/mmc/host/meson*
1698 F:      drivers/pinctrl/meson/
1699 F:      drivers/rtc/rtc-meson*
1700 F:      drivers/soc/amlogic/
1701 N:      meson
1702
1703 ARM/Annapurna Labs ALPINE ARCHITECTURE
1704 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1705 M:      Antoine Tenart <atenart@kernel.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      arch/arm/boot/dts/alpine*
1709 F:      arch/arm/mach-alpine/
1710 F:      arch/arm64/boot/dts/amazon/
1711 F:      drivers/*/*alpine*
1712
1713 ARM/APPLE MACHINE SUPPORT
1714 M:      Hector Martin <marcan@marcan.st>
1715 M:      Sven Peter <sven@svenpeter.dev>
1716 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1717 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1718 S:      Maintained
1719 W:      https://asahilinux.org
1720 B:      https://github.com/AsahiLinux/linux/issues
1721 C:      irc://irc.oftc.net/asahi-dev
1722 T:      git https://github.com/AsahiLinux/linux.git
1723 F:      Documentation/devicetree/bindings/arm/apple.yaml
1724 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1725 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1726 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1727 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1728 F:      arch/arm64/boot/dts/apple/
1729 F:      drivers/irqchip/irq-apple-aic.c
1730 F:      drivers/mailbox/apple-mailbox.c
1731 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1732 F:      include/dt-bindings/pinctrl/apple.h
1733 F:      include/linux/apple-mailbox.h
1734
1735 ARM/ARTPEC MACHINE SUPPORT
1736 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1737 M:      Lars Persson <lars.persson@axis.com>
1738 L:      linux-arm-kernel@axis.com
1739 S:      Maintained
1740 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1741 F:      arch/arm/boot/dts/artpec6*
1742 F:      arch/arm/mach-artpec
1743 F:      drivers/clk/axis
1744 F:      drivers/crypto/axis
1745 F:      drivers/mmc/host/usdhi6rol0.c
1746 F:      drivers/pinctrl/pinctrl-artpec*
1747
1748 ARM/ASPEED I2C DRIVER
1749 M:      Brendan Higgins <brendanhiggins@google.com>
1750 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1751 R:      Joel Stanley <joel@jms.id.au>
1752 L:      linux-i2c@vger.kernel.org
1753 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1754 S:      Maintained
1755 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1756 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1757 F:      drivers/i2c/busses/i2c-aspeed.c
1758 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1759
1760 ARM/ASPEED MACHINE SUPPORT
1761 M:      Joel Stanley <joel@jms.id.au>
1762 R:      Andrew Jeffery <andrew@aj.id.au>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1765 S:      Supported
1766 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1768 F:      arch/arm/boot/dts/aspeed-*
1769 F:      arch/arm/mach-aspeed/
1770 N:      aspeed
1771
1772 ARM/BITMAIN ARCHITECTURE
1773 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1775 S:      Maintained
1776 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1777 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1778 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1779 F:      arch/arm64/boot/dts/bitmain/
1780 F:      drivers/clk/clk-bm1880.c
1781 F:      drivers/pinctrl/pinctrl-bm1880.c
1782
1783 ARM/CALXEDA HIGHBANK ARCHITECTURE
1784 M:      Andre Przywara <andre.przywara@arm.com>
1785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1786 S:      Maintained
1787 F:      arch/arm/boot/dts/ecx-*.dts*
1788 F:      arch/arm/boot/dts/highbank.dts
1789 F:      arch/arm/mach-highbank/
1790
1791 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1792 M:      Krzysztof Halasa <khalasa@piap.pl>
1793 S:      Maintained
1794 F:      arch/arm/mach-cns3xxx/
1795
1796 ARM/CAVIUM THUNDER NETWORK DRIVER
1797 M:      Sunil Goutham <sgoutham@marvell.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Supported
1800 F:      drivers/net/ethernet/cavium/thunder/
1801
1802 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1803 M:      Lukasz Majewski <lukma@denx.de>
1804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1805 S:      Maintained
1806 F:      arch/arm/mach-ep93xx/ts72xx.c
1807
1808 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1809 M:      Alexander Shiyan <shc_work@mail.ru>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 S:      Odd Fixes
1812 N:      clps711x
1813
1814 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1815 M:      Lennert Buytenhek <kernel@wantstofly.org>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 S:      Maintained
1818
1819 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1820 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1821 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1823 S:      Maintained
1824 F:      arch/arm/mach-ep93xx/
1825 F:      arch/arm/mach-ep93xx/include/mach/
1826
1827 ARM/CLKDEV SUPPORT
1828 M:      Russell King <linux@armlinux.org.uk>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1832 F:      drivers/clk/clkdev.c
1833
1834 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1835 M:      Baruch Siach <baruch@tkos.co.il>
1836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1837 S:      Maintained
1838 F:      arch/arm/boot/dts/cx92755*
1839 N:      digicolor
1840
1841 ARM/CONTEC MICRO9 MACHINE SUPPORT
1842 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1843 S:      Maintained
1844 F:      arch/arm/mach-ep93xx/micro9.c
1845
1846 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1847 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1848 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1849 R:      Mike Leach <mike.leach@linaro.org>
1850 R:      Leo Yan <leo.yan@linaro.org>
1851 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1853 S:      Maintained
1854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1855 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1856 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1857 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1858 F:      Documentation/devicetree/bindings/arm/coresight.txt
1859 F:      Documentation/devicetree/bindings/arm/ete.yaml
1860 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1861 F:      Documentation/trace/coresight/*
1862 F:      drivers/hwtracing/coresight/*
1863 F:      include/dt-bindings/arm/coresight-cti-dt.h
1864 F:      include/linux/coresight*
1865 F:      tools/perf/arch/arm/util/auxtrace.c
1866 F:      tools/perf/arch/arm/util/cs-etm.c
1867 F:      tools/perf/arch/arm/util/cs-etm.h
1868 F:      tools/perf/arch/arm/util/pmu.c
1869 F:      tools/perf/util/cs-etm-decoder/*
1870 F:      tools/perf/util/cs-etm.*
1871
1872 ARM/CORGI MACHINE SUPPORT
1873 M:      Richard Purdie <rpurdie@rpsys.net>
1874 S:      Maintained
1875
1876 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1877 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1878 M:      Linus Walleij <linus.walleij@linaro.org>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 T:      git git://github.com/ulli-kroll/linux.git
1882 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1883 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1884 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1885 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1886 F:      arch/arm/boot/dts/gemini*
1887 F:      arch/arm/mach-gemini/
1888 F:      drivers/crypto/gemini/
1889 F:      drivers/net/ethernet/cortina/
1890 F:      drivers/pinctrl/pinctrl-gemini.c
1891 F:      drivers/rtc/rtc-ftrtc010.c
1892
1893 ARM/CZ.NIC TURRIS SUPPORT
1894 M:      Marek Behún <kabel@kernel.org>
1895 S:      Maintained
1896 W:      https://www.turris.cz/
1897 F:      Documentation/ABI/testing/debugfs-moxtet
1898 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1899 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1900 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1901 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1902 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1903 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1904 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1905 F:      drivers/bus/moxtet.c
1906 F:      drivers/firmware/turris-mox-rwtm.c
1907 F:      drivers/leds/leds-turris-omnia.c
1908 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1909 F:      drivers/gpio/gpio-moxtet.c
1910 F:      drivers/watchdog/armada_37xx_wdt.c
1911 F:      include/dt-bindings/bus/moxtet.h
1912 F:      include/linux/armada-37xx-rwtm-mailbox.h
1913 F:      include/linux/moxtet.h
1914
1915 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1916 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 F:      arch/arm/mach-pxa/ezx.c
1920
1921 ARM/FARADAY FA526 PORT
1922 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924 S:      Maintained
1925 T:      git git://git.berlios.de/gemini-board
1926 F:      arch/arm/mm/*-fa*
1927
1928 ARM/FOOTBRIDGE ARCHITECTURE
1929 M:      Russell King <linux@armlinux.org.uk>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Maintained
1932 W:      http://www.armlinux.org.uk/
1933 F:      arch/arm/include/asm/hardware/dec21285.h
1934 F:      arch/arm/mach-footbridge/
1935
1936 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1937 M:      Shawn Guo <shawnguo@kernel.org>
1938 M:      Sascha Hauer <s.hauer@pengutronix.de>
1939 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1940 R:      Fabio Estevam <festevam@gmail.com>
1941 R:      NXP Linux Team <linux-imx@nxp.com>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Maintained
1944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1945 X:      drivers/media/i2c/
1946 N:      imx
1947 N:      mxs
1948
1949 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1950 M:      Shawn Guo <shawnguo@kernel.org>
1951 M:      Li Yang <leoyang.li@nxp.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1955 F:      arch/arm/boot/dts/ls1021a*
1956 F:      arch/arm64/boot/dts/freescale/fsl-*
1957 F:      arch/arm64/boot/dts/freescale/qoriq-*
1958
1959 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1960 M:      Shawn Guo <shawnguo@kernel.org>
1961 M:      Sascha Hauer <s.hauer@pengutronix.de>
1962 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1963 R:      Stefan Agner <stefan@agner.ch>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1967 F:      arch/arm/boot/dts/vf*
1968 F:      arch/arm/mach-imx/*vf610*
1969
1970 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1971 M:      Lennert Buytenhek <kernel@wantstofly.org>
1972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 S:      Maintained
1974
1975 ARM/GUMSTIX MACHINE SUPPORT
1976 M:      Steve Sakoman <sakoman@gmail.com>
1977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1978 S:      Maintained
1979
1980 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1981 M:      Philipp Zabel <philipp.zabel@gmail.com>
1982 M:      Paul Parsons <lost.distance@yahoo.com>
1983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1984 S:      Maintained
1985 F:      arch/arm/mach-pxa/hx4700.c
1986 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1987 F:      sound/soc/pxa/hx4700.c
1988
1989 ARM/HISILICON SOC SUPPORT
1990 M:      Wei Xu <xuwei5@hisilicon.com>
1991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1992 S:      Supported
1993 W:      http://www.hisilicon.com
1994 T:      git git://github.com/hisilicon/linux-hisi.git
1995 F:      arch/arm/boot/dts/hi3*
1996 F:      arch/arm/boot/dts/hip*
1997 F:      arch/arm/boot/dts/hisi*
1998 F:      arch/arm/mach-hisi/
1999 F:      arch/arm64/boot/dts/hisilicon/
2000
2001 ARM/HP JORNADA 7XX MACHINE SUPPORT
2002 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2003 S:      Maintained
2004 W:      www.jlime.com
2005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2006 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2007 F:      arch/arm/mach-sa1100/jornada720.c
2008
2009 ARM/IGEP MACHINE SUPPORT
2010 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2011 M:      Javier Martinez Canillas <javier@dowhile0.org>
2012 L:      linux-omap@vger.kernel.org
2013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2014 S:      Maintained
2015 F:      arch/arm/boot/dts/omap3-igep*
2016
2017 ARM/INCOME PXA270 SUPPORT
2018 M:      Marek Vasut <marek.vasut@gmail.com>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 S:      Maintained
2021 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2022
2023 ARM/INTEL IOP32X ARM ARCHITECTURE
2024 M:      Lennert Buytenhek <kernel@wantstofly.org>
2025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2026 S:      Maintained
2027
2028 ARM/INTEL IQ81342EX MACHINE SUPPORT
2029 M:      Lennert Buytenhek <kernel@wantstofly.org>
2030 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2031 S:      Maintained
2032
2033 ARM/INTEL IXDP2850 MACHINE SUPPORT
2034 M:      Lennert Buytenhek <kernel@wantstofly.org>
2035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2036 S:      Maintained
2037
2038 ARM/INTEL IXP4XX ARM ARCHITECTURE
2039 M:      Linus Walleij <linusw@kernel.org>
2040 M:      Imre Kaloz <kaloz@openwrt.org>
2041 M:      Krzysztof Halasa <khalasa@piap.pl>
2042 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2043 S:      Maintained
2044 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2045 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2046 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2047 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2048 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2049 F:      arch/arm/mach-ixp4xx/
2050 F:      drivers/bus/intel-ixp4xx-eb.c
2051 F:      drivers/clocksource/timer-ixp4xx.c
2052 F:      drivers/crypto/ixp4xx_crypto.c
2053 F:      drivers/gpio/gpio-ixp4xx.c
2054 F:      drivers/irqchip/irq-ixp4xx.c
2055 F:      include/linux/irqchip/irq-ixp4xx.h
2056 F:      include/linux/platform_data/timer-ixp4xx.h
2057
2058 ARM/INTEL KEEMBAY ARCHITECTURE
2059 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2060 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2061 S:      Maintained
2062 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2063 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2064 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2065
2066 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2067 M:      Jonathan Cameron <jic23@cam.ac.uk>
2068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2069 S:      Maintained
2070 F:      arch/arm/mach-pxa/stargate2.c
2071 F:      drivers/pcmcia/pxa2xx_stargate2.c
2072
2073 ARM/INTEL XSC3 (MANZANO) ARM CORE
2074 M:      Lennert Buytenhek <kernel@wantstofly.org>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077
2078 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2079 M:      Lennert Buytenhek <kernel@wantstofly.org>
2080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 S:      Maintained
2082
2083 ARM/LG1K ARCHITECTURE
2084 M:      Chanho Min <chanho.min@lge.com>
2085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 S:      Maintained
2087 F:      arch/arm64/boot/dts/lg/
2088
2089 ARM/LOGICPD PXA270 MACHINE SUPPORT
2090 M:      Lennert Buytenhek <kernel@wantstofly.org>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Maintained
2093
2094 ARM/LPC18XX ARCHITECTURE
2095 M:      Vladimir Zapolskiy <vz@mleia.com>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2099 F:      arch/arm/boot/dts/lpc43*
2100 F:      drivers/i2c/busses/i2c-lpc2k.c
2101 F:      drivers/memory/pl172.c
2102 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2103 F:      drivers/rtc/rtc-lpc24xx.c
2104 N:      lpc18xx
2105
2106 ARM/LPC32XX SOC SUPPORT
2107 M:      Vladimir Zapolskiy <vz@mleia.com>
2108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2109 S:      Maintained
2110 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2111 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2112 F:      arch/arm/boot/dts/lpc32*
2113 F:      arch/arm/mach-lpc32xx/
2114 F:      drivers/i2c/busses/i2c-pnx.c
2115 F:      drivers/net/ethernet/nxp/lpc_eth.c
2116 F:      drivers/usb/host/ohci-nxp.c
2117 F:      drivers/watchdog/pnx4008_wdt.c
2118 N:      lpc32xx
2119
2120 ARM/MAGICIAN MACHINE SUPPORT
2121 M:      Philipp Zabel <philipp.zabel@gmail.com>
2122 S:      Maintained
2123
2124 ARM/Marvell Dove/MV78xx0/Orion SOC support
2125 M:      Andrew Lunn <andrew@lunn.ch>
2126 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2127 M:      Gregory Clement <gregory.clement@bootlin.com>
2128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2129 S:      Maintained
2130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2131 F:      Documentation/devicetree/bindings/soc/dove/
2132 F:      arch/arm/boot/dts/dove*
2133 F:      arch/arm/boot/dts/orion5x*
2134 F:      arch/arm/mach-dove/
2135 F:      arch/arm/mach-mv78xx0/
2136 F:      arch/arm/mach-orion5x/
2137 F:      arch/arm/plat-orion/
2138 F:      drivers/soc/dove/
2139
2140 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2141 M:      Andrew Lunn <andrew@lunn.ch>
2142 M:      Gregory Clement <gregory.clement@bootlin.com>
2143 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Maintained
2146 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2147 F:      arch/arm/boot/dts/armada*
2148 F:      arch/arm/boot/dts/kirkwood*
2149 F:      arch/arm/configs/mvebu_*_defconfig
2150 F:      arch/arm/mach-mvebu/
2151 F:      arch/arm64/boot/dts/marvell/armada*
2152 F:      arch/arm64/boot/dts/marvell/cn913*
2153 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2154 F:      drivers/cpufreq/armada-8k-cpufreq.c
2155 F:      drivers/cpufreq/mvebu-cpufreq.c
2156 F:      drivers/irqchip/irq-armada-370-xp.c
2157 F:      drivers/irqchip/irq-mvebu-*
2158 F:      drivers/pinctrl/mvebu/
2159 F:      drivers/rtc/rtc-armada38x.c
2160
2161 ARM/Mediatek RTC DRIVER
2162 M:      Eddie Huang <eddie.huang@mediatek.com>
2163 M:      Sean Wang <sean.wang@mediatek.com>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2166 S:      Maintained
2167 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2168 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2169 F:      drivers/rtc/rtc-mt2712.c
2170 F:      drivers/rtc/rtc-mt6397.c
2171 F:      drivers/rtc/rtc-mt7622.c
2172
2173 ARM/Mediatek SoC support
2174 M:      Matthias Brugger <matthias.bgg@gmail.com>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2177 S:      Maintained
2178 W:      https://mtk.wiki.kernel.org/
2179 C:      irc://chat.freenode.net/linux-mediatek
2180 F:      arch/arm/boot/dts/mt6*
2181 F:      arch/arm/boot/dts/mt7*
2182 F:      arch/arm/boot/dts/mt8*
2183 F:      arch/arm/mach-mediatek/
2184 F:      arch/arm64/boot/dts/mediatek/
2185 F:      drivers/soc/mediatek/
2186 N:      mtk
2187 N:      mt[678]
2188 K:      mediatek
2189
2190 ARM/Mediatek USB3 PHY DRIVER
2191 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2194 S:      Maintained
2195 F:      Documentation/devicetree/bindings/phy/mediatek,*
2196 F:      drivers/phy/mediatek/
2197
2198 ARM/Microchip (AT91) SoC support
2199 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2200 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2201 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Supported
2204 W:      http://www.linux4sam.org
2205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2206 F:      arch/arm/boot/dts/at91*.dts
2207 F:      arch/arm/boot/dts/at91*.dtsi
2208 F:      arch/arm/boot/dts/sama*.dts
2209 F:      arch/arm/boot/dts/sama*.dtsi
2210 F:      arch/arm/include/debug/at91.S
2211 F:      arch/arm/mach-at91/
2212 F:      drivers/memory/atmel*
2213 F:      drivers/watchdog/sama5d4_wdt.c
2214 F:      include/soc/at91/
2215 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2216 X:      drivers/net/wireless/atmel/
2217 N:      at91
2218 N:      atmel
2219
2220 ARM/Microchip Sparx5 SoC support
2221 M:      Lars Povlsen <lars.povlsen@microchip.com>
2222 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2223 M:      UNGLinuxDriver@microchip.com
2224 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2225 S:      Supported
2226 T:      git git://github.com/microchip-ung/linux-upstream.git
2227 F:      arch/arm64/boot/dts/microchip/
2228 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2229 N:      sparx5
2230
2231 Microchip Timer Counter Block (TCB) Capture Driver
2232 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2234 L:      linux-iio@vger.kernel.org
2235 S:      Maintained
2236 F:      drivers/counter/microchip-tcb-capture.c
2237
2238 ARM/MIOA701 MACHINE SUPPORT
2239 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242 F:      arch/arm/mach-pxa/mioa701.c
2243
2244 ARM/MStar/Sigmastar Armv7 SoC support
2245 M:      Daniel Palmer <daniel@thingy.jp>
2246 M:      Romain Perier <romain.perier@gmail.com>
2247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2248 S:      Maintained
2249 W:      http://linux-chenxing.org/
2250 T:      git git://github.com/linux-chenxing/linux.git
2251 F:      Documentation/devicetree/bindings/arm/mstar/*
2252 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2253 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2254 F:      arch/arm/boot/dts/mstar-*
2255 F:      arch/arm/mach-mstar/
2256 F:      drivers/clk/mstar/
2257 F:      drivers/gpio/gpio-msc313.c
2258 F:      drivers/watchdog/msc313e_wdt.c
2259 F:      include/dt-bindings/clock/mstar-*
2260 F:      include/dt-bindings/gpio/msc313-gpio.h
2261
2262 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2263 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2264 S:      Maintained
2265
2266 ARM/NOMADIK/Ux500 ARCHITECTURES
2267 M:      Linus Walleij <linus.walleij@linaro.org>
2268 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2269 S:      Maintained
2270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2271 F:      Documentation/devicetree/bindings/arm/ste-*
2272 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2273 F:      Documentation/devicetree/bindings/arm/ux500/
2274 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2275 F:      arch/arm/boot/dts/ste-*
2276 F:      arch/arm/mach-nomadik/
2277 F:      arch/arm/mach-ux500/
2278 F:      drivers/clk/clk-nomadik.c
2279 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2280 F:      drivers/dma/ste_dma40*
2281 F:      drivers/hwspinlock/u8500_hsem.c
2282 F:      drivers/i2c/busses/i2c-nomadik.c
2283 F:      drivers/iio/adc/ab8500-gpadc.c
2284 F:      drivers/mfd/ab8500*
2285 F:      drivers/mfd/abx500*
2286 F:      drivers/mfd/db8500*
2287 F:      drivers/pinctrl/nomadik/
2288 F:      drivers/rtc/rtc-ab8500.c
2289 F:      drivers/rtc/rtc-pl031.c
2290 F:      drivers/soc/ux500/
2291
2292 ARM/NUVOTON NPCM ARCHITECTURE
2293 M:      Avi Fishman <avifishman70@gmail.com>
2294 M:      Tomer Maimon <tmaimon77@gmail.com>
2295 M:      Tali Perry <tali.perry1@gmail.com>
2296 R:      Patrick Venture <venture@google.com>
2297 R:      Nancy Yuen <yuenn@google.com>
2298 R:      Benjamin Fair <benjaminfair@google.com>
2299 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2300 S:      Supported
2301 F:      Documentation/devicetree/bindings/*/*/*npcm*
2302 F:      Documentation/devicetree/bindings/*/*npcm*
2303 F:      arch/arm/boot/dts/nuvoton-npcm*
2304 F:      arch/arm/mach-npcm/
2305 F:      drivers/*/*npcm*
2306 F:      drivers/*/*/*npcm*
2307 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2308
2309 ARM/NUVOTON WPCM450 ARCHITECTURE
2310 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2311 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2312 S:      Maintained
2313 F:      Documentation/devicetree/bindings/*/*wpcm*
2314 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2315 F:      arch/arm/mach-npcm/wpcm450.c
2316 F:      drivers/*/*wpcm*
2317
2318 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2319 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2320 S:      Orphan
2321 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2322 F:      arch/arm/mach-s3c/gta02.h
2323 F:      arch/arm/mach-s3c/mach-gta02.c
2324
2325 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2326 M:      Alexander Clouter <alex@digriz.org.uk>
2327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2328 S:      Maintained
2329 W:      http://www.digriz.org.uk/ts78xx/kernel
2330 F:      arch/arm/mach-orion5x/ts78xx-*
2331
2332 ARM/OXNAS platform support
2333 M:      Neil Armstrong <narmstrong@baylibre.com>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2336 S:      Maintained
2337 F:      arch/arm/boot/dts/ox8*.dts*
2338 F:      arch/arm/mach-oxnas/
2339 F:      drivers/power/reset/oxnas-restart.c
2340 N:      oxnas
2341
2342 ARM/PALM TREO SUPPORT
2343 M:      Tomas Cech <sleep_walker@suse.com>
2344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2345 S:      Maintained
2346 W:      http://hackndev.com
2347 F:      arch/arm/mach-pxa/palmtreo.*
2348
2349 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2350 M:      Marek Vasut <marek.vasut@gmail.com>
2351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2352 S:      Maintained
2353 W:      http://hackndev.com
2354 F:      arch/arm/mach-pxa/include/mach/palmld.h
2355 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2356 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2357 F:      arch/arm/mach-pxa/palmld.c
2358 F:      arch/arm/mach-pxa/palmt5.*
2359 F:      arch/arm/mach-pxa/palmtc.c
2360 F:      arch/arm/mach-pxa/palmte2.*
2361 F:      arch/arm/mach-pxa/palmtx.c
2362
2363 ARM/PALMZ72 SUPPORT
2364 M:      Sergey Lapin <slapin@ossfans.org>
2365 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2366 S:      Maintained
2367 W:      http://hackndev.com
2368 F:      arch/arm/mach-pxa/palmz72.*
2369
2370 ARM/PLEB SUPPORT
2371 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2372 S:      Maintained
2373 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2374
2375 ARM/PT DIGITAL BOARD PORT
2376 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 W:      http://www.armlinux.org.uk/
2380
2381 ARM/QUALCOMM SUPPORT
2382 M:      Andy Gross <agross@kernel.org>
2383 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2384 L:      linux-arm-msm@vger.kernel.org
2385 S:      Maintained
2386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2387 F:      Documentation/devicetree/bindings/*/qcom*
2388 F:      Documentation/devicetree/bindings/soc/qcom/
2389 F:      arch/arm/boot/dts/qcom-*.dts
2390 F:      arch/arm/boot/dts/qcom-*.dtsi
2391 F:      arch/arm/mach-qcom/
2392 F:      arch/arm64/boot/dts/qcom/
2393 F:      drivers/*/*/qcom*
2394 F:      drivers/*/*/qcom/
2395 F:      drivers/*/pm8???-*
2396 F:      drivers/*/qcom*
2397 F:      drivers/*/qcom/
2398 F:      drivers/bluetooth/btqcomsmd.c
2399 F:      drivers/clocksource/timer-qcom.c
2400 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2401 F:      drivers/extcon/extcon-qcom*
2402 F:      drivers/i2c/busses/i2c-qcom-geni.c
2403 F:      drivers/i2c/busses/i2c-qup.c
2404 F:      drivers/iommu/msm*
2405 F:      drivers/mfd/ssbi.c
2406 F:      drivers/mmc/host/mmci_qcom*
2407 F:      drivers/mmc/host/sdhci-msm.c
2408 F:      drivers/pci/controller/dwc/pcie-qcom.c
2409 F:      drivers/phy/qualcomm/
2410 F:      drivers/power/*/msm*
2411 F:      drivers/reset/reset-qcom-*
2412 F:      drivers/scsi/ufs/ufs-qcom*
2413 F:      drivers/spi/spi-geni-qcom.c
2414 F:      drivers/spi/spi-qcom-qspi.c
2415 F:      drivers/spi/spi-qup.c
2416 F:      drivers/tty/serial/msm_serial.c
2417 F:      drivers/usb/dwc3/dwc3-qcom.c
2418 F:      include/dt-bindings/*/qcom*
2419 F:      include/linux/*/qcom*
2420 F:      include/linux/soc/qcom/
2421
2422 ARM/RADISYS ENP2611 MACHINE SUPPORT
2423 M:      Lennert Buytenhek <kernel@wantstofly.org>
2424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2425 S:      Maintained
2426
2427 ARM/RDA MICRO ARCHITECTURE
2428 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2429 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2430 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2431 S:      Maintained
2432 F:      Documentation/devicetree/bindings/arm/rda.yaml
2433 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2434 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2435 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2436 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2437 F:      arch/arm/boot/dts/rda8810pl-*
2438 F:      drivers/clocksource/timer-rda.c
2439 F:      drivers/gpio/gpio-rda.c
2440 F:      drivers/irqchip/irq-rda-intc.c
2441 F:      drivers/tty/serial/rda-uart.c
2442
2443 ARM/REALTEK ARCHITECTURE
2444 M:      Andreas Färber <afaerber@suse.de>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2447 S:      Maintained
2448 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2449 F:      arch/arm/boot/dts/rtd*
2450 F:      arch/arm/mach-realtek/
2451 F:      arch/arm64/boot/dts/realtek/
2452
2453 ARM/RENESAS ARM64 ARCHITECTURE
2454 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2455 M:      Magnus Damm <magnus.damm@gmail.com>
2456 L:      linux-renesas-soc@vger.kernel.org
2457 S:      Supported
2458 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2460 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2461 F:      arch/arm64/boot/dts/renesas/
2462 F:      drivers/soc/renesas/
2463 F:      include/linux/soc/renesas/
2464
2465 ARM/RISCPC ARCHITECTURE
2466 M:      Russell King <linux@armlinux.org.uk>
2467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2468 S:      Maintained
2469 W:      http://www.armlinux.org.uk/
2470 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2471 F:      arch/arm/include/asm/hardware/ioc.h
2472 F:      arch/arm/include/asm/hardware/iomd.h
2473 F:      arch/arm/include/asm/hardware/memc.h
2474 F:      arch/arm/mach-rpc/
2475 F:      drivers/net/ethernet/8390/etherh.c
2476 F:      drivers/net/ethernet/i825xx/ether1*
2477 F:      drivers/net/ethernet/seeq/ether3*
2478 F:      drivers/scsi/arm/
2479
2480 ARM/Rockchip SoC support
2481 M:      Heiko Stuebner <heiko@sntech.de>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 L:      linux-rockchip@lists.infradead.org
2484 S:      Maintained
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2486 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2487 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2488 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2489 F:      arch/arm/boot/dts/rk3*
2490 F:      arch/arm/boot/dts/rv1108*
2491 F:      arch/arm/mach-rockchip/
2492 F:      drivers/*/*/*rockchip*
2493 F:      drivers/*/*rockchip*
2494 F:      drivers/clk/rockchip/
2495 F:      drivers/i2c/busses/i2c-rk3x.c
2496 F:      sound/soc/rockchip/
2497 N:      rockchip
2498
2499 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2500 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2502 L:      linux-samsung-soc@vger.kernel.org
2503 S:      Maintained
2504 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2505 F:      Documentation/arm/samsung/
2506 F:      Documentation/devicetree/bindings/arm/samsung/
2507 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2508 F:      arch/arm/boot/dts/exynos*
2509 F:      arch/arm/boot/dts/s3c*
2510 F:      arch/arm/boot/dts/s5p*
2511 F:      arch/arm/mach-exynos*/
2512 F:      arch/arm/mach-s3c/
2513 F:      arch/arm/mach-s5p*/
2514 F:      arch/arm64/boot/dts/exynos/
2515 F:      drivers/*/*/*s3c24*
2516 F:      drivers/*/*s3c24*
2517 F:      drivers/*/*s3c64xx*
2518 F:      drivers/*/*s5pv210*
2519 F:      drivers/clocksource/samsung_pwm_timer.c
2520 F:      drivers/memory/samsung/
2521 F:      drivers/pwm/pwm-samsung.c
2522 F:      drivers/soc/samsung/
2523 F:      drivers/tty/serial/samsung*
2524 F:      include/clocksource/samsung_pwm.h
2525 F:      include/linux/platform_data/*s3c*
2526 F:      include/linux/serial_s3c.h
2527 F:      include/linux/soc/samsung/
2528 N:      exynos
2529 N:      s3c2410
2530 N:      s3c64xx
2531 N:      s5pv210
2532
2533 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2534 M:      Andrzej Hajda <a.hajda@samsung.com>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 L:      linux-media@vger.kernel.org
2537 S:      Maintained
2538 F:      drivers/media/platform/s5p-g2d/
2539
2540 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2541 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2542 L:      linux-samsung-soc@vger.kernel.org
2543 L:      linux-media@vger.kernel.org
2544 S:      Maintained
2545 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2546 F:      drivers/media/cec/platform/s5p/
2547
2548 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2549 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2550 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2551 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2553 L:      linux-media@vger.kernel.org
2554 S:      Maintained
2555 F:      drivers/media/platform/s5p-jpeg/
2556
2557 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2558 M:      Andrzej Hajda <a.hajda@samsung.com>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 L:      linux-media@vger.kernel.org
2561 S:      Maintained
2562 F:      drivers/media/platform/s5p-mfc/
2563
2564 ARM/SHMOBILE ARM ARCHITECTURE
2565 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2566 M:      Magnus Damm <magnus.damm@gmail.com>
2567 L:      linux-renesas-soc@vger.kernel.org
2568 S:      Supported
2569 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2571 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2572 F:      arch/arm/boot/dts/emev2*
2573 F:      arch/arm/boot/dts/gr-peach*
2574 F:      arch/arm/boot/dts/iwg20d-q7*
2575 F:      arch/arm/boot/dts/r7s*
2576 F:      arch/arm/boot/dts/r8a*
2577 F:      arch/arm/boot/dts/r9a*
2578 F:      arch/arm/boot/dts/sh*
2579 F:      arch/arm/configs/shmobile_defconfig
2580 F:      arch/arm/include/debug/renesas-scif.S
2581 F:      arch/arm/mach-shmobile/
2582 F:      drivers/soc/renesas/
2583 F:      include/linux/soc/renesas/
2584
2585 ARM/SOCFPGA ARCHITECTURE
2586 M:      Dinh Nguyen <dinguyen@kernel.org>
2587 S:      Maintained
2588 W:      http://www.rocketboards.org
2589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2590 F:      arch/arm/boot/dts/socfpga*
2591 F:      arch/arm/configs/socfpga_defconfig
2592 F:      arch/arm/mach-socfpga/
2593 F:      arch/arm64/boot/dts/altera/
2594 F:      arch/arm64/boot/dts/intel/
2595
2596 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2597 M:      Dinh Nguyen <dinguyen@kernel.org>
2598 S:      Maintained
2599 F:      drivers/clk/socfpga/
2600
2601 ARM/SOCFPGA EDAC SUPPORT
2602 M:      Dinh Nguyen <dinguyen@kernel.org>
2603 S:      Maintained
2604 F:      drivers/edac/altera_edac.[ch]
2605
2606 ARM/SPREADTRUM SoC SUPPORT
2607 M:      Orson Zhai <orsonzhai@gmail.com>
2608 M:      Baolin Wang <baolin.wang7@gmail.com>
2609 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2610 S:      Maintained
2611 F:      arch/arm64/boot/dts/sprd
2612 N:      sprd
2613 N:      sc27xx
2614 N:      sc2731
2615
2616 ARM/STI ARCHITECTURE
2617 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 S:      Maintained
2620 W:      http://www.stlinux.com
2621 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2622 F:      arch/arm/boot/dts/sti*
2623 F:      arch/arm/mach-sti/
2624 F:      drivers/ata/ahci_st.c
2625 F:      drivers/char/hw_random/st-rng.c
2626 F:      drivers/clocksource/arm_global_timer.c
2627 F:      drivers/clocksource/clksrc_st_lpc.c
2628 F:      drivers/cpufreq/sti-cpufreq.c
2629 F:      drivers/dma/st_fdma*
2630 F:      drivers/i2c/busses/i2c-st.c
2631 F:      drivers/media/platform/sti/c8sectpfe/
2632 F:      drivers/media/rc/st_rc.c
2633 F:      drivers/mmc/host/sdhci-st.c
2634 F:      drivers/phy/st/phy-miphy28lp.c
2635 F:      drivers/phy/st/phy-stih407-usb.c
2636 F:      drivers/pinctrl/pinctrl-st.c
2637 F:      drivers/remoteproc/st_remoteproc.c
2638 F:      drivers/remoteproc/st_slim_rproc.c
2639 F:      drivers/reset/sti/
2640 F:      drivers/rtc/rtc-st-lpc.c
2641 F:      drivers/tty/serial/st-asc.c
2642 F:      drivers/usb/dwc3/dwc3-st.c
2643 F:      drivers/usb/host/ehci-st.c
2644 F:      drivers/usb/host/ohci-st.c
2645 F:      drivers/watchdog/st_lpc_wdt.c
2646 F:      include/linux/remoteproc/st_slim_rproc.h
2647
2648 ARM/STM32 ARCHITECTURE
2649 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2650 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2651 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 S:      Maintained
2654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2655 F:      arch/arm/boot/dts/stm32*
2656 F:      arch/arm/mach-stm32/
2657 F:      drivers/clocksource/armv7m_systick.c
2658 N:      stm32
2659 N:      stm
2660
2661 ARM/Synaptics SoC support
2662 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2663 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2664 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2665 S:      Maintained
2666 F:      arch/arm/boot/dts/berlin*
2667 F:      arch/arm/mach-berlin/
2668 F:      arch/arm64/boot/dts/synaptics/
2669
2670 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2671 M:      Lennert Buytenhek <kernel@wantstofly.org>
2672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2673 S:      Maintained
2674
2675 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2676 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2677 L:      linux-tegra@vger.kernel.org
2678 L:      linux-media@vger.kernel.org
2679 S:      Maintained
2680 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2681 F:      drivers/media/cec/platform/tegra/
2682
2683 ARM/TETON BGA MACHINE SUPPORT
2684 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2686 S:      Maintained
2687
2688 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2689 M:      Santosh Shilimkar <ssantosh@kernel.org>
2690 L:      linux-kernel@vger.kernel.org
2691 S:      Maintained
2692 F:      drivers/memory/*emif*
2693
2694 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2695 M:      Santosh Shilimkar <ssantosh@kernel.org>
2696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2697 S:      Maintained
2698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2699 F:      arch/arm/boot/dts/keystone-*
2700 F:      arch/arm/mach-keystone/
2701
2702 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2703 M:      Santosh Shilimkar <ssantosh@kernel.org>
2704 L:      linux-kernel@vger.kernel.org
2705 S:      Maintained
2706 F:      drivers/clk/keystone/
2707
2708 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2709 M:      Santosh Shilimkar <ssantosh@kernel.org>
2710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2711 L:      linux-kernel@vger.kernel.org
2712 S:      Maintained
2713 F:      drivers/clocksource/timer-keystone.c
2714
2715 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2716 M:      Santosh Shilimkar <ssantosh@kernel.org>
2717 L:      linux-kernel@vger.kernel.org
2718 S:      Maintained
2719 F:      drivers/power/reset/keystone-reset.c
2720
2721 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2722 M:      Nishanth Menon <nm@ti.com>
2723 M:      Vignesh Raghavendra <vigneshr@ti.com>
2724 M:      Tero Kristo <kristo@kernel.org>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 S:      Supported
2727 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2728 F:      arch/arm64/boot/dts/ti/Makefile
2729 F:      arch/arm64/boot/dts/ti/k3-*
2730 F:      include/dt-bindings/pinctrl/k3.h
2731
2732 ARM/THECUS N2100 MACHINE SUPPORT
2733 M:      Lennert Buytenhek <kernel@wantstofly.org>
2734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2735 S:      Maintained
2736
2737 ARM/TOSA MACHINE SUPPORT
2738 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2739 M:      Dirk Opfer <dirk@opfer-online.de>
2740 S:      Maintained
2741
2742 ARM/TOSHIBA VISCONTI ARCHITECTURE
2743 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2745 S:      Supported
2746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2747 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2748 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2749 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2750 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2751 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2752 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2753 F:      arch/arm64/boot/dts/toshiba/
2754 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2755 F:      drivers/gpio/gpio-visconti.c
2756 F:      drivers/pci/controller/dwc/pcie-visconti.c
2757 F:      drivers/pinctrl/visconti/
2758 F:      drivers/watchdog/visconti_wdt.c
2759 N:      visconti
2760
2761 ARM/UNIPHIER ARCHITECTURE
2762 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2763 M:      Masami Hiramatsu <mhiramat@kernel.org>
2764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2765 S:      Maintained
2766 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2767 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2768 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2769 F:      arch/arm/boot/dts/uniphier*
2770 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2771 F:      arch/arm/mach-uniphier/
2772 F:      arch/arm/mm/cache-uniphier.c
2773 F:      arch/arm64/boot/dts/socionext/uniphier*
2774 F:      drivers/bus/uniphier-system-bus.c
2775 F:      drivers/clk/uniphier/
2776 F:      drivers/dma/uniphier-mdmac.c
2777 F:      drivers/gpio/gpio-uniphier.c
2778 F:      drivers/i2c/busses/i2c-uniphier*
2779 F:      drivers/irqchip/irq-uniphier-aidet.c
2780 F:      drivers/mmc/host/uniphier-sd.c
2781 F:      drivers/pinctrl/uniphier/
2782 F:      drivers/reset/reset-uniphier.c
2783 F:      drivers/tty/serial/8250/8250_uniphier.c
2784 N:      uniphier
2785
2786 ARM/VERSATILE EXPRESS PLATFORM
2787 M:      Liviu Dudau <liviu.dudau@arm.com>
2788 M:      Sudeep Holla <sudeep.holla@arm.com>
2789 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2791 S:      Maintained
2792 F:      */*/*/vexpress*
2793 F:      */*/vexpress*
2794 F:      arch/arm/boot/dts/vexpress*
2795 F:      arch/arm/mach-vexpress/
2796 F:      arch/arm64/boot/dts/arm/
2797 F:      drivers/clk/versatile/clk-vexpress-osc.c
2798 F:      drivers/clocksource/timer-versatile.c
2799 N:      mps2
2800
2801 ARM/VFP SUPPORT
2802 M:      Russell King <linux@armlinux.org.uk>
2803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2804 S:      Maintained
2805 W:      http://www.armlinux.org.uk/
2806 F:      arch/arm/vfp/
2807
2808 ARM/VOIPAC PXA270 SUPPORT
2809 M:      Marek Vasut <marek.vasut@gmail.com>
2810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2811 S:      Maintained
2812 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2813 F:      arch/arm/mach-pxa/vpac270.c
2814
2815 ARM/VT8500 ARM ARCHITECTURE
2816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2817 S:      Orphan
2818 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2819 F:      arch/arm/mach-vt8500/
2820 F:      drivers/clocksource/timer-vt8500.c
2821 F:      drivers/i2c/busses/i2c-wmt.c
2822 F:      drivers/mmc/host/wmt-sdmmc.c
2823 F:      drivers/pwm/pwm-vt8500.c
2824 F:      drivers/rtc/rtc-vt8500.c
2825 F:      drivers/tty/serial/vt8500_serial.c
2826 F:      drivers/usb/host/ehci-platform.c
2827 F:      drivers/usb/host/uhci-platform.c
2828 F:      drivers/video/fbdev/vt8500lcdfb.*
2829 F:      drivers/video/fbdev/wm8505fb*
2830 F:      drivers/video/fbdev/wmt_ge_rops.*
2831
2832 ARM/ZIPIT Z2 SUPPORT
2833 M:      Marek Vasut <marek.vasut@gmail.com>
2834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2835 S:      Maintained
2836 F:      arch/arm/mach-pxa/include/mach/z2.h
2837 F:      arch/arm/mach-pxa/z2.c
2838
2839 ARM/ZYNQ ARCHITECTURE
2840 M:      Michal Simek <michal.simek@xilinx.com>
2841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2842 S:      Supported
2843 W:      http://wiki.xilinx.com
2844 T:      git https://github.com/Xilinx/linux-xlnx.git
2845 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2846 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2847 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2848 F:      arch/arm/mach-zynq/
2849 F:      drivers/clocksource/timer-cadence-ttc.c
2850 F:      drivers/cpuidle/cpuidle-zynq.c
2851 F:      drivers/edac/synopsys_edac.c
2852 F:      drivers/i2c/busses/i2c-cadence.c
2853 F:      drivers/i2c/busses/i2c-xiic.c
2854 F:      drivers/mmc/host/sdhci-of-arasan.c
2855 N:      zynq
2856 N:      xilinx
2857
2858 ARM64 PORT (AARCH64 ARCHITECTURE)
2859 M:      Catalin Marinas <catalin.marinas@arm.com>
2860 M:      Will Deacon <will@kernel.org>
2861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2862 S:      Maintained
2863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2864 F:      Documentation/arm64/
2865 F:      arch/arm64/
2866 F:      tools/testing/selftests/arm64/
2867 X:      arch/arm64/boot/dts/
2868
2869 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2870 M:      George McCollister <george.mccollister@gmail.com>
2871 L:      netdev@vger.kernel.org
2872 S:      Maintained
2873 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2874 F:      drivers/net/dsa/xrs700x/*
2875 F:      net/dsa/tag_xrs700x.c
2876
2877 AS3645A LED FLASH CONTROLLER DRIVER
2878 M:      Sakari Ailus <sakari.ailus@iki.fi>
2879 L:      linux-leds@vger.kernel.org
2880 S:      Maintained
2881 F:      drivers/leds/flash/leds-as3645a.c
2882
2883 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2884 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2885 L:      linux-media@vger.kernel.org
2886 S:      Maintained
2887 T:      git git://linuxtv.org/media_tree.git
2888 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2889 F:      drivers/media/i2c/ak7375.c
2890
2891 ASAHI KASEI AK8974 DRIVER
2892 M:      Linus Walleij <linus.walleij@linaro.org>
2893 L:      linux-iio@vger.kernel.org
2894 S:      Supported
2895 W:      http://www.akm.com/
2896 F:      drivers/iio/magnetometer/ak8974.c
2897
2898 ASC7621 HARDWARE MONITOR DRIVER
2899 M:      George Joseph <george.joseph@fairview5.com>
2900 L:      linux-hwmon@vger.kernel.org
2901 S:      Maintained
2902 F:      Documentation/hwmon/asc7621.rst
2903 F:      drivers/hwmon/asc7621.c
2904
2905 ASIX AX88796C SPI ETHERNET ADAPTER
2906 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2907 S:      Maintained
2908 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2909 F:      drivers/net/ethernet/asix/ax88796c_*
2910
2911 ASPEED PINCTRL DRIVERS
2912 M:      Andrew Jeffery <andrew@aj.id.au>
2913 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2914 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2915 L:      linux-gpio@vger.kernel.org
2916 S:      Maintained
2917 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2918 F:      drivers/pinctrl/aspeed/
2919
2920 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2921 M:      Eddie James <eajames@linux.ibm.com>
2922 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2923 S:      Maintained
2924 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2925 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2926 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2927
2928 ASPEED SD/MMC DRIVER
2929 M:      Andrew Jeffery <andrew@aj.id.au>
2930 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2931 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2932 L:      linux-mmc@vger.kernel.org
2933 S:      Maintained
2934 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2935 F:      drivers/mmc/host/sdhci-of-aspeed*
2936
2937 ASPEED VIDEO ENGINE DRIVER
2938 M:      Eddie James <eajames@linux.ibm.com>
2939 L:      linux-media@vger.kernel.org
2940 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2941 S:      Maintained
2942 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2943 F:      drivers/media/platform/aspeed-video.c
2944
2945 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2946 M:      Corentin Chary <corentin.chary@gmail.com>
2947 L:      acpi4asus-user@lists.sourceforge.net
2948 L:      platform-driver-x86@vger.kernel.org
2949 S:      Maintained
2950 W:      http://acpi4asus.sf.net
2951 F:      drivers/platform/x86/asus*.c
2952 F:      drivers/platform/x86/eeepc*.c
2953
2954 ASUS WIRELESS RADIO CONTROL DRIVER
2955 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2956 L:      platform-driver-x86@vger.kernel.org
2957 S:      Maintained
2958 F:      drivers/platform/x86/asus-wireless.c
2959
2960 ASYMMETRIC KEYS
2961 M:      David Howells <dhowells@redhat.com>
2962 L:      keyrings@vger.kernel.org
2963 S:      Maintained
2964 F:      Documentation/crypto/asymmetric-keys.rst
2965 F:      crypto/asymmetric_keys/
2966 F:      include/crypto/pkcs7.h
2967 F:      include/crypto/public_key.h
2968 F:      include/linux/verification.h
2969
2970 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2971 R:      Dan Williams <dan.j.williams@intel.com>
2972 S:      Odd fixes
2973 W:      http://sourceforge.net/projects/xscaleiop
2974 F:      Documentation/crypto/async-tx-api.rst
2975 F:      crypto/async_tx/
2976 F:      include/linux/async_tx.h
2977
2978 AT24 EEPROM DRIVER
2979 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2980 L:      linux-i2c@vger.kernel.org
2981 S:      Maintained
2982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2983 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2984 F:      drivers/misc/eeprom/at24.c
2985
2986 ATA OVER ETHERNET (AOE) DRIVER
2987 M:      "Justin Sanders" <justin@coraid.com>
2988 S:      Supported
2989 W:      http://www.openaoe.org/
2990 F:      Documentation/admin-guide/aoe/
2991 F:      drivers/block/aoe/
2992
2993 ATC260X PMIC MFD DRIVER
2994 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2995 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2996 L:      linux-actions@lists.infradead.org
2997 S:      Maintained
2998 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2999 F:      drivers/input/misc/atc260x-onkey.c
3000 F:      drivers/mfd/atc260*
3001 F:      drivers/power/reset/atc260x-poweroff.c
3002 F:      drivers/regulator/atc260x-regulator.c
3003 F:      include/linux/mfd/atc260x/*
3004
3005 ATHEROS 71XX/9XXX GPIO DRIVER
3006 M:      Alban Bedel <albeu@free.fr>
3007 S:      Maintained
3008 W:      https://github.com/AlbanBedel/linux
3009 T:      git git://github.com/AlbanBedel/linux
3010 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3011 F:      drivers/gpio/gpio-ath79.c
3012
3013 ATHEROS 71XX/9XXX USB PHY DRIVER
3014 M:      Alban Bedel <albeu@free.fr>
3015 S:      Maintained
3016 W:      https://github.com/AlbanBedel/linux
3017 T:      git git://github.com/AlbanBedel/linux
3018 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3019 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3020
3021 ATHEROS ATH GENERIC UTILITIES
3022 M:      Kalle Valo <kvalo@codeaurora.org>
3023 L:      linux-wireless@vger.kernel.org
3024 S:      Supported
3025 F:      drivers/net/wireless/ath/*
3026
3027 ATHEROS ATH5K WIRELESS DRIVER
3028 M:      Jiri Slaby <jirislaby@kernel.org>
3029 M:      Nick Kossifidis <mickflemm@gmail.com>
3030 M:      Luis Chamberlain <mcgrof@kernel.org>
3031 L:      linux-wireless@vger.kernel.org
3032 S:      Maintained
3033 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3034 F:      drivers/net/wireless/ath/ath5k/
3035
3036 ATHEROS ATH6KL WIRELESS DRIVER
3037 M:      Kalle Valo <kvalo@codeaurora.org>
3038 L:      linux-wireless@vger.kernel.org
3039 S:      Supported
3040 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3042 F:      drivers/net/wireless/ath/ath6kl/
3043
3044 ATI_REMOTE2 DRIVER
3045 M:      Ville Syrjala <syrjala@sci.fi>
3046 S:      Maintained
3047 F:      drivers/input/misc/ati_remote2.c
3048
3049 ATK0110 HWMON DRIVER
3050 M:      Luca Tettamanti <kronos.it@gmail.com>
3051 L:      linux-hwmon@vger.kernel.org
3052 S:      Maintained
3053 F:      drivers/hwmon/asus_atk0110.c
3054
3055 ATLX ETHERNET DRIVERS
3056 M:      Chris Snook <chris.snook@gmail.com>
3057 L:      netdev@vger.kernel.org
3058 S:      Maintained
3059 W:      http://sourceforge.net/projects/atl1
3060 W:      http://atl1.sourceforge.net
3061 F:      drivers/net/ethernet/atheros/
3062
3063 ATM
3064 M:      Chas Williams <3chas3@gmail.com>
3065 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3066 L:      netdev@vger.kernel.org
3067 S:      Maintained
3068 W:      http://linux-atm.sourceforge.net
3069 F:      drivers/atm/
3070 F:      include/linux/atm*
3071 F:      include/uapi/linux/atm*
3072
3073 ATMEL MACB ETHERNET DRIVER
3074 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3075 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3076 S:      Supported
3077 F:      drivers/net/ethernet/cadence/
3078
3079 ATMEL MAXTOUCH DRIVER
3080 M:      Nick Dyer <nick@shmanahar.org>
3081 S:      Maintained
3082 T:      git git://github.com/ndyer/linux.git
3083 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3084 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3085
3086 ATMEL WIRELESS DRIVER
3087 M:      Simon Kelley <simon@thekelleys.org.uk>
3088 L:      linux-wireless@vger.kernel.org
3089 S:      Maintained
3090 W:      http://www.thekelleys.org.uk/atmel
3091 W:      http://atmelwlandriver.sourceforge.net/
3092 F:      drivers/net/wireless/atmel/atmel*
3093
3094 ATOMIC INFRASTRUCTURE
3095 M:      Will Deacon <will@kernel.org>
3096 M:      Peter Zijlstra <peterz@infradead.org>
3097 R:      Boqun Feng <boqun.feng@gmail.com>
3098 L:      linux-kernel@vger.kernel.org
3099 S:      Maintained
3100 F:      arch/*/include/asm/atomic*.h
3101 F:      include/*/atomic*.h
3102 F:      include/linux/refcount.h
3103 F:      Documentation/atomic_*.txt
3104 F:      scripts/atomic/
3105
3106 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3107 M:      Bradley Grove <linuxdrivers@attotech.com>
3108 L:      linux-scsi@vger.kernel.org
3109 S:      Supported
3110 W:      http://www.attotech.com
3111 F:      drivers/scsi/esas2r
3112
3113 ATUSB IEEE 802.15.4 RADIO DRIVER
3114 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3115 L:      linux-wpan@vger.kernel.org
3116 S:      Maintained
3117 F:      drivers/net/ieee802154/at86rf230.h
3118 F:      drivers/net/ieee802154/atusb.c
3119 F:      drivers/net/ieee802154/atusb.h
3120
3121 AUDIT SUBSYSTEM
3122 M:      Paul Moore <paul@paul-moore.com>
3123 M:      Eric Paris <eparis@redhat.com>
3124 L:      linux-audit@redhat.com (moderated for non-subscribers)
3125 S:      Supported
3126 W:      https://github.com/linux-audit
3127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3128 F:      include/asm-generic/audit_*.h
3129 F:      include/linux/audit.h
3130 F:      include/linux/audit_arch.h
3131 F:      include/uapi/linux/audit.h
3132 F:      kernel/audit*
3133 F:      lib/*audit.c
3134
3135 AUXILIARY DISPLAY DRIVERS
3136 M:      Miguel Ojeda <ojeda@kernel.org>
3137 S:      Maintained
3138 F:      drivers/auxdisplay/
3139 F:      include/linux/cfag12864b.h
3140
3141 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3142 M:      Andreas Klinger <ak@it-klinger.de>
3143 L:      linux-iio@vger.kernel.org
3144 S:      Maintained
3145 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3146 F:      drivers/iio/adc/hx711.c
3147
3148 AX.25 NETWORK LAYER
3149 M:      Ralf Baechle <ralf@linux-mips.org>
3150 L:      linux-hams@vger.kernel.org
3151 S:      Maintained
3152 W:      http://www.linux-ax25.org/
3153 F:      include/net/ax25.h
3154 F:      include/uapi/linux/ax25.h
3155 F:      net/ax25/
3156
3157 AXENTIA ARM DEVICES
3158 M:      Peter Rosin <peda@axentia.se>
3159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3160 S:      Maintained
3161 F:      arch/arm/boot/dts/at91-linea.dtsi
3162 F:      arch/arm/boot/dts/at91-natte.dtsi
3163 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3164 F:      arch/arm/boot/dts/at91-tse850-3.dts
3165
3166 AXENTIA ASOC DRIVERS
3167 M:      Peter Rosin <peda@axentia.se>
3168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3169 S:      Maintained
3170 F:      Documentation/devicetree/bindings/sound/axentia,*
3171 F:      sound/soc/atmel/tse850-pcm5142.c
3172
3173 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3174 M:      Nuno Sá <nuno.sa@analog.com>
3175 L:      linux-hwmon@vger.kernel.org
3176 S:      Supported
3177 W:      http://ez.analog.com/community/linux-device-drivers
3178 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3179 F:      drivers/hwmon/axi-fan-control.c
3180
3181 AXXIA I2C CONTROLLER
3182 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3183 L:      linux-i2c@vger.kernel.org
3184 S:      Maintained
3185 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3186 F:      drivers/i2c/busses/i2c-axxia.c
3187
3188 AZ6007 DVB DRIVER
3189 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3190 L:      linux-media@vger.kernel.org
3191 S:      Maintained
3192 W:      https://linuxtv.org
3193 T:      git git://linuxtv.org/media_tree.git
3194 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3195
3196 AZTECH FM RADIO RECEIVER DRIVER
3197 M:      Hans Verkuil <hverkuil@xs4all.nl>
3198 L:      linux-media@vger.kernel.org
3199 S:      Maintained
3200 W:      https://linuxtv.org
3201 T:      git git://linuxtv.org/media_tree.git
3202 F:      drivers/media/radio/radio-aztech*
3203
3204 B43 WIRELESS DRIVER
3205 L:      linux-wireless@vger.kernel.org
3206 L:      b43-dev@lists.infradead.org
3207 S:      Odd Fixes
3208 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3209 F:      drivers/net/wireless/broadcom/b43/
3210
3211 B43LEGACY WIRELESS DRIVER
3212 M:      Larry Finger <Larry.Finger@lwfinger.net>
3213 L:      linux-wireless@vger.kernel.org
3214 L:      b43-dev@lists.infradead.org
3215 S:      Maintained
3216 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3217 F:      drivers/net/wireless/broadcom/b43legacy/
3218
3219 BACKLIGHT CLASS/SUBSYSTEM
3220 M:      Lee Jones <lee.jones@linaro.org>
3221 M:      Daniel Thompson <daniel.thompson@linaro.org>
3222 M:      Jingoo Han <jingoohan1@gmail.com>
3223 L:      dri-devel@lists.freedesktop.org
3224 S:      Maintained
3225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3226 F:      Documentation/ABI/stable/sysfs-class-backlight
3227 F:      Documentation/ABI/testing/sysfs-class-backlight
3228 F:      Documentation/devicetree/bindings/leds/backlight
3229 F:      drivers/video/backlight/
3230 F:      include/linux/backlight.h
3231 F:      include/linux/pwm_backlight.h
3232
3233 BARCO P50 GPIO DRIVER
3234 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3235 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3236 S:      Maintained
3237 F:      drivers/platform/x86/barco-p50-gpio.c
3238
3239 BATMAN ADVANCED
3240 M:      Marek Lindner <mareklindner@neomailbox.ch>
3241 M:      Simon Wunderlich <sw@simonwunderlich.de>
3242 M:      Antonio Quartulli <a@unstable.cc>
3243 M:      Sven Eckelmann <sven@narfation.org>
3244 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3245 S:      Maintained
3246 W:      https://www.open-mesh.org/
3247 Q:      https://patchwork.open-mesh.org/project/batman/list/
3248 B:      https://www.open-mesh.org/projects/batman-adv/issues
3249 C:      ircs://irc.hackint.org/batadv
3250 T:      git https://git.open-mesh.org/linux-merge.git
3251 F:      Documentation/networking/batman-adv.rst
3252 F:      include/uapi/linux/batadv_packet.h
3253 F:      include/uapi/linux/batman_adv.h
3254 F:      net/batman-adv/
3255
3256 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3257 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3258 L:      linux-hams@vger.kernel.org
3259 S:      Maintained
3260 W:      http://www.baycom.org/~tom/ham/ham.html
3261 F:      drivers/net/hamradio/baycom*
3262
3263 BCACHE (BLOCK LAYER CACHE)
3264 M:      Coly Li <colyli@suse.de>
3265 M:      Kent Overstreet <kent.overstreet@gmail.com>
3266 L:      linux-bcache@vger.kernel.org
3267 S:      Maintained
3268 W:      http://bcache.evilpiepirate.org
3269 C:      irc://irc.oftc.net/bcache
3270 F:      drivers/md/bcache/
3271
3272 BDISP ST MEDIA DRIVER
3273 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3274 L:      linux-media@vger.kernel.org
3275 S:      Supported
3276 W:      https://linuxtv.org
3277 T:      git git://linuxtv.org/media_tree.git
3278 F:      drivers/media/platform/sti/bdisp
3279
3280 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3281 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3282 L:      netdev@vger.kernel.org
3283 S:      Maintained
3284 F:      drivers/net/ethernet/ec_bhf.c
3285
3286 BEFS FILE SYSTEM
3287 M:      Luis de Bethencourt <luisbg@kernel.org>
3288 M:      Salah Triki <salah.triki@gmail.com>
3289 S:      Maintained
3290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3291 F:      Documentation/filesystems/befs.rst
3292 F:      fs/befs/
3293
3294 BFQ I/O SCHEDULER
3295 M:      Paolo Valente <paolo.valente@linaro.org>
3296 M:      Jens Axboe <axboe@kernel.dk>
3297 L:      linux-block@vger.kernel.org
3298 S:      Maintained
3299 F:      Documentation/block/bfq-iosched.rst
3300 F:      block/bfq-*
3301
3302 BFS FILE SYSTEM
3303 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3304 S:      Maintained
3305 F:      Documentation/filesystems/bfs.rst
3306 F:      fs/bfs/
3307 F:      include/uapi/linux/bfs_fs.h
3308
3309 BITMAP API
3310 M:      Yury Norov <yury.norov@gmail.com>
3311 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3312 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3313 S:      Maintained
3314 F:      include/asm-generic/bitops/find.h
3315 F:      include/linux/bitmap.h
3316 F:      lib/bitmap.c
3317 F:      lib/find_bit.c
3318 F:      lib/find_bit_benchmark.c
3319 F:      lib/test_bitmap.c
3320 F:      tools/include/asm-generic/bitops/find.h
3321 F:      tools/include/linux/bitmap.h
3322 F:      tools/lib/bitmap.c
3323 F:      tools/lib/find_bit.c
3324
3325 BLINKM RGB LED DRIVER
3326 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3327 S:      Maintained
3328 F:      drivers/leds/leds-blinkm.c
3329
3330 BLOCK LAYER
3331 M:      Jens Axboe <axboe@kernel.dk>
3332 L:      linux-block@vger.kernel.org
3333 S:      Maintained
3334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3335 F:      block/
3336 F:      drivers/block/
3337 F:      include/linux/blk*
3338 F:      kernel/trace/blktrace.c
3339 F:      lib/sbitmap.c
3340
3341 BLOCK2MTD DRIVER
3342 M:      Joern Engel <joern@lazybastard.org>
3343 L:      linux-mtd@lists.infradead.org
3344 S:      Maintained
3345 F:      drivers/mtd/devices/block2mtd.c
3346
3347 BLUETOOTH DRIVERS
3348 M:      Marcel Holtmann <marcel@holtmann.org>
3349 M:      Johan Hedberg <johan.hedberg@gmail.com>
3350 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3351 L:      linux-bluetooth@vger.kernel.org
3352 S:      Supported
3353 W:      http://www.bluez.org/
3354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3356 F:      drivers/bluetooth/
3357
3358 BLUETOOTH SUBSYSTEM
3359 M:      Marcel Holtmann <marcel@holtmann.org>
3360 M:      Johan Hedberg <johan.hedberg@gmail.com>
3361 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3362 L:      linux-bluetooth@vger.kernel.org
3363 S:      Supported
3364 W:      http://www.bluez.org/
3365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3367 F:      include/net/bluetooth/
3368 F:      net/bluetooth/
3369
3370 BONDING DRIVER
3371 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3372 M:      Veaceslav Falico <vfalico@gmail.com>
3373 M:      Andy Gospodarek <andy@greyhouse.net>
3374 L:      netdev@vger.kernel.org
3375 S:      Supported
3376 W:      http://sourceforge.net/projects/bonding/
3377 F:      drivers/net/bonding/
3378 F:      include/net/bonding.h
3379 F:      include/uapi/linux/if_bonding.h
3380
3381 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3382 M:      Dan Robertson <dan@dlrobertson.com>
3383 L:      linux-iio@vger.kernel.org
3384 S:      Maintained
3385 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3386 F:      drivers/iio/accel/bma400*
3387
3388 BPF (Safe dynamic programs and tools)
3389 M:      Alexei Starovoitov <ast@kernel.org>
3390 M:      Daniel Borkmann <daniel@iogearbox.net>
3391 M:      Andrii Nakryiko <andrii@kernel.org>
3392 R:      Martin KaFai Lau <kafai@fb.com>
3393 R:      Song Liu <songliubraving@fb.com>
3394 R:      Yonghong Song <yhs@fb.com>
3395 R:      John Fastabend <john.fastabend@gmail.com>
3396 R:      KP Singh <kpsingh@kernel.org>
3397 L:      netdev@vger.kernel.org
3398 L:      bpf@vger.kernel.org
3399 S:      Supported
3400 W:      https://bpf.io/
3401 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3404 F:      Documentation/bpf/
3405 F:      Documentation/networking/filter.rst
3406 F:      Documentation/userspace-api/ebpf/
3407 F:      arch/*/net/*
3408 F:      include/linux/bpf*
3409 F:      include/linux/btf*
3410 F:      include/linux/filter.h
3411 F:      include/trace/events/xdp.h
3412 F:      include/uapi/linux/bpf*
3413 F:      include/uapi/linux/btf*
3414 F:      include/uapi/linux/filter.h
3415 F:      kernel/bpf/
3416 F:      kernel/trace/bpf_trace.c
3417 F:      lib/test_bpf.c
3418 F:      net/bpf/
3419 F:      net/core/filter.c
3420 F:      net/sched/act_bpf.c
3421 F:      net/sched/cls_bpf.c
3422 F:      samples/bpf/
3423 F:      scripts/bpf_doc.py
3424 F:      tools/bpf/
3425 F:      tools/lib/bpf/
3426 F:      tools/testing/selftests/bpf/
3427 N:      bpf
3428 K:      bpf
3429
3430 BPF JIT for ARM
3431 M:      Shubham Bansal <illusionist.neo@gmail.com>
3432 L:      netdev@vger.kernel.org
3433 L:      bpf@vger.kernel.org
3434 S:      Maintained
3435 F:      arch/arm/net/
3436
3437 BPF JIT for ARM64
3438 M:      Daniel Borkmann <daniel@iogearbox.net>
3439 M:      Alexei Starovoitov <ast@kernel.org>
3440 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3441 L:      netdev@vger.kernel.org
3442 L:      bpf@vger.kernel.org
3443 S:      Supported
3444 F:      arch/arm64/net/
3445
3446 BPF JIT for MIPS (32-BIT AND 64-BIT)
3447 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3448 M:      Paul Burton <paulburton@kernel.org>
3449 L:      netdev@vger.kernel.org
3450 L:      bpf@vger.kernel.org
3451 S:      Maintained
3452 F:      arch/mips/net/
3453
3454 BPF JIT for NFP NICs
3455 M:      Jakub Kicinski <kuba@kernel.org>
3456 L:      netdev@vger.kernel.org
3457 L:      bpf@vger.kernel.org
3458 S:      Supported
3459 F:      drivers/net/ethernet/netronome/nfp/bpf/
3460
3461 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3462 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3463 L:      netdev@vger.kernel.org
3464 L:      bpf@vger.kernel.org
3465 S:      Maintained
3466 F:      arch/powerpc/net/
3467
3468 BPF JIT for RISC-V (32-bit)
3469 M:      Luke Nelson <luke.r.nels@gmail.com>
3470 M:      Xi Wang <xi.wang@gmail.com>
3471 L:      netdev@vger.kernel.org
3472 L:      bpf@vger.kernel.org
3473 S:      Maintained
3474 F:      arch/riscv/net/
3475 X:      arch/riscv/net/bpf_jit_comp64.c
3476
3477 BPF JIT for RISC-V (64-bit)
3478 M:      Björn Töpel <bjorn@kernel.org>
3479 L:      netdev@vger.kernel.org
3480 L:      bpf@vger.kernel.org
3481 S:      Maintained
3482 F:      arch/riscv/net/
3483 X:      arch/riscv/net/bpf_jit_comp32.c
3484
3485 BPF JIT for S390
3486 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3487 M:      Heiko Carstens <hca@linux.ibm.com>
3488 M:      Vasily Gorbik <gor@linux.ibm.com>
3489 L:      netdev@vger.kernel.org
3490 L:      bpf@vger.kernel.org
3491 S:      Maintained
3492 F:      arch/s390/net/
3493 X:      arch/s390/net/pnet.c
3494
3495 BPF JIT for SPARC (32-BIT AND 64-BIT)
3496 M:      David S. Miller <davem@davemloft.net>
3497 L:      netdev@vger.kernel.org
3498 L:      bpf@vger.kernel.org
3499 S:      Maintained
3500 F:      arch/sparc/net/
3501
3502 BPF JIT for X86 32-BIT
3503 M:      Wang YanQing <udknight@gmail.com>
3504 L:      netdev@vger.kernel.org
3505 L:      bpf@vger.kernel.org
3506 S:      Maintained
3507 F:      arch/x86/net/bpf_jit_comp32.c
3508
3509 BPF JIT for X86 64-BIT
3510 M:      Alexei Starovoitov <ast@kernel.org>
3511 M:      Daniel Borkmann <daniel@iogearbox.net>
3512 L:      netdev@vger.kernel.org
3513 L:      bpf@vger.kernel.org
3514 S:      Supported
3515 F:      arch/x86/net/
3516 X:      arch/x86/net/bpf_jit_comp32.c
3517
3518 BPF LSM (Security Audit and Enforcement using BPF)
3519 M:      KP Singh <kpsingh@kernel.org>
3520 R:      Florent Revest <revest@chromium.org>
3521 R:      Brendan Jackman <jackmanb@chromium.org>
3522 L:      bpf@vger.kernel.org
3523 S:      Maintained
3524 F:      Documentation/bpf/bpf_lsm.rst
3525 F:      include/linux/bpf_lsm.h
3526 F:      kernel/bpf/bpf_lsm.c
3527 F:      security/bpf/
3528
3529 BROADCOM B44 10/100 ETHERNET DRIVER
3530 M:      Michael Chan <michael.chan@broadcom.com>
3531 L:      netdev@vger.kernel.org
3532 S:      Supported
3533 F:      drivers/net/ethernet/broadcom/b44.*
3534
3535 BROADCOM B53 ETHERNET SWITCH DRIVER
3536 M:      Florian Fainelli <f.fainelli@gmail.com>
3537 L:      netdev@vger.kernel.org
3538 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3539 S:      Supported
3540 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3541 F:      drivers/net/dsa/b53/*
3542 F:      include/linux/dsa/brcm.h
3543 F:      include/linux/platform_data/b53.h
3544
3545 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3546 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3547 L:      bcm-kernel-feedback-list@broadcom.com
3548 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3549 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3550 S:      Maintained
3551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3552 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3553 F:      drivers/pci/controller/pcie-brcmstb.c
3554 F:      drivers/staging/vc04_services
3555 N:      bcm2711
3556 N:      bcm283*
3557
3558 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3559 M:      Florian Fainelli <f.fainelli@gmail.com>
3560 M:      Ray Jui <rjui@broadcom.com>
3561 M:      Scott Branden <sbranden@broadcom.com>
3562 M:      bcm-kernel-feedback-list@broadcom.com
3563 S:      Maintained
3564 T:      git git://github.com/broadcom/mach-bcm
3565 F:      arch/arm/mach-bcm/
3566 N:      bcm281*
3567 N:      bcm113*
3568 N:      bcm216*
3569 N:      kona
3570
3571 BROADCOM BCM47XX MIPS ARCHITECTURE
3572 M:      Hauke Mehrtens <hauke@hauke-m.de>
3573 M:      Rafał Miłecki <zajec5@gmail.com>
3574 L:      linux-mips@vger.kernel.org
3575 S:      Maintained
3576 F:      Documentation/devicetree/bindings/mips/brcm/
3577 F:      arch/mips/bcm47xx/*
3578 F:      arch/mips/include/asm/mach-bcm47xx/*
3579
3580 BROADCOM BCM4908 ETHERNET DRIVER
3581 M:      Rafał Miłecki <rafal@milecki.pl>
3582 M:      bcm-kernel-feedback-list@broadcom.com
3583 L:      netdev@vger.kernel.org
3584 S:      Maintained
3585 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3586 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3587 F:      drivers/net/ethernet/broadcom/unimac.h
3588
3589 BROADCOM BCM5301X ARM ARCHITECTURE
3590 M:      Hauke Mehrtens <hauke@hauke-m.de>
3591 M:      Rafał Miłecki <zajec5@gmail.com>
3592 M:      bcm-kernel-feedback-list@broadcom.com
3593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3594 S:      Maintained
3595 F:      arch/arm/boot/dts/bcm470*
3596 F:      arch/arm/boot/dts/bcm5301*
3597 F:      arch/arm/boot/dts/bcm953012*
3598 F:      arch/arm/mach-bcm/bcm_5301x.c
3599
3600 BROADCOM BCM53573 ARM ARCHITECTURE
3601 M:      Rafał Miłecki <rafal@milecki.pl>
3602 L:      bcm-kernel-feedback-list@broadcom.com
3603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3604 S:      Maintained
3605 F:      arch/arm/boot/dts/bcm47189*
3606 F:      arch/arm/boot/dts/bcm53573*
3607
3608 BROADCOM BCM63XX ARM ARCHITECTURE
3609 M:      Florian Fainelli <f.fainelli@gmail.com>
3610 M:      bcm-kernel-feedback-list@broadcom.com
3611 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3612 S:      Maintained
3613 T:      git git://github.com/broadcom/stblinux.git
3614 N:      bcm63xx
3615
3616 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3617 M:      Kevin Cernekee <cernekee@gmail.com>
3618 L:      linux-usb@vger.kernel.org
3619 S:      Maintained
3620 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3621
3622 BROADCOM BCM7XXX ARM ARCHITECTURE
3623 M:      Florian Fainelli <f.fainelli@gmail.com>
3624 M:      bcm-kernel-feedback-list@broadcom.com
3625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3626 S:      Maintained
3627 T:      git git://github.com/broadcom/stblinux.git
3628 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3629 F:      arch/arm/boot/dts/bcm7*.dts*
3630 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3631 F:      arch/arm/mach-bcm/*brcmstb*
3632 F:      arch/arm/mm/cache-b15-rac.c
3633 F:      drivers/bus/brcmstb_gisb.c
3634 F:      drivers/pci/controller/pcie-brcmstb.c
3635 N:      brcmstb
3636
3637 BROADCOM BDC DRIVER
3638 M:      Al Cooper <alcooperx@gmail.com>
3639 L:      linux-usb@vger.kernel.org
3640 L:      bcm-kernel-feedback-list@broadcom.com
3641 S:      Maintained
3642 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3643 F:      drivers/usb/gadget/udc/bdc/
3644
3645 BROADCOM BMIPS CPUFREQ DRIVER
3646 M:      Markus Mayer <mmayer@broadcom.com>
3647 M:      bcm-kernel-feedback-list@broadcom.com
3648 L:      linux-pm@vger.kernel.org
3649 S:      Maintained
3650 F:      drivers/cpufreq/bmips-cpufreq.c
3651
3652 BROADCOM BMIPS MIPS ARCHITECTURE
3653 M:      Florian Fainelli <f.fainelli@gmail.com>
3654 L:      bcm-kernel-feedback-list@broadcom.com
3655 L:      linux-mips@vger.kernel.org
3656 S:      Maintained
3657 T:      git git://github.com/broadcom/stblinux.git
3658 F:      arch/mips/bmips/*
3659 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3660 F:      arch/mips/include/asm/mach-bmips/*
3661 F:      arch/mips/kernel/*bmips*
3662 F:      drivers/soc/bcm/bcm63xx
3663 F:      drivers/irqchip/irq-bcm63*
3664 F:      drivers/irqchip/irq-bcm7*
3665 F:      drivers/irqchip/irq-brcmstb*
3666 F:      include/linux/bcm963xx_nvram.h
3667 F:      include/linux/bcm963xx_tag.h
3668
3669 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3670 M:      Rasesh Mody <rmody@marvell.com>
3671 M:      GR-Linux-NIC-Dev@marvell.com
3672 L:      netdev@vger.kernel.org
3673 S:      Supported
3674 F:      drivers/net/ethernet/broadcom/bnx2.*
3675 F:      drivers/net/ethernet/broadcom/bnx2_*
3676
3677 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3678 M:      Saurav Kashyap <skashyap@marvell.com>
3679 M:      Javed Hasan <jhasan@marvell.com>
3680 M:      GR-QLogic-Storage-Upstream@marvell.com
3681 L:      linux-scsi@vger.kernel.org
3682 S:      Supported
3683 F:      drivers/scsi/bnx2fc/
3684
3685 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3686 M:      Nilesh Javali <njavali@marvell.com>
3687 M:      Manish Rangankar <mrangankar@marvell.com>
3688 M:      GR-QLogic-Storage-Upstream@marvell.com
3689 L:      linux-scsi@vger.kernel.org
3690 S:      Supported
3691 F:      drivers/scsi/bnx2i/
3692
3693 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3694 M:      Ariel Elior <aelior@marvell.com>
3695 M:      Sudarsana Kalluru <skalluru@marvell.com>
3696 M:      GR-everest-linux-l2@marvell.com
3697 L:      netdev@vger.kernel.org
3698 S:      Supported
3699 F:      drivers/net/ethernet/broadcom/bnx2x/
3700
3701 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3702 M:      Michael Chan <michael.chan@broadcom.com>
3703 L:      netdev@vger.kernel.org
3704 S:      Supported
3705 F:      drivers/net/ethernet/broadcom/bnxt/
3706
3707 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3708 M:      Arend van Spriel <aspriel@gmail.com>
3709 M:      Franky Lin <franky.lin@broadcom.com>
3710 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3711 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3712 M:      Wright Feng <wright.feng@infineon.com>
3713 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3714 L:      linux-wireless@vger.kernel.org
3715 L:      brcm80211-dev-list.pdl@broadcom.com
3716 L:      SHA-cyfmac-dev-list@infineon.com
3717 S:      Supported
3718 F:      drivers/net/wireless/broadcom/brcm80211/
3719
3720 BROADCOM BRCMSTB GPIO DRIVER
3721 M:      Gregory Fong <gregory.0xf0@gmail.com>
3722 L:      bcm-kernel-feedback-list@broadcom.com
3723 S:      Supported
3724 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3725 F:      drivers/gpio/gpio-brcmstb.c
3726
3727 BROADCOM BRCMSTB I2C DRIVER
3728 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3729 L:      linux-i2c@vger.kernel.org
3730 L:      bcm-kernel-feedback-list@broadcom.com
3731 S:      Supported
3732 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3733 F:      drivers/i2c/busses/i2c-brcmstb.c
3734
3735 BROADCOM BRCMSTB UART DRIVER
3736 M:      Al Cooper <alcooperx@gmail.com>
3737 L:      linux-serial@vger.kernel.org
3738 L:      bcm-kernel-feedback-list@broadcom.com
3739 S:      Maintained
3740 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3741 F:      drivers/tty/serial/8250/8250_bcm7271.c
3742
3743 BROADCOM BRCMSTB USB EHCI DRIVER
3744 M:      Al Cooper <alcooperx@gmail.com>
3745 L:      linux-usb@vger.kernel.org
3746 L:      bcm-kernel-feedback-list@broadcom.com
3747 S:      Maintained
3748 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3749 F:      drivers/usb/host/ehci-brcm.*
3750
3751 BROADCOM BRCMSTB USB PIN MAP DRIVER
3752 M:      Al Cooper <alcooperx@gmail.com>
3753 L:      linux-usb@vger.kernel.org
3754 L:      bcm-kernel-feedback-list@broadcom.com
3755 S:      Maintained
3756 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3757 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3758
3759 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3760 M:      Al Cooper <alcooperx@gmail.com>
3761 L:      linux-kernel@vger.kernel.org
3762 L:      bcm-kernel-feedback-list@broadcom.com
3763 S:      Maintained
3764 F:      drivers/phy/broadcom/phy-brcm-usb*
3765
3766 BROADCOM ETHERNET PHY DRIVERS
3767 M:      Florian Fainelli <f.fainelli@gmail.com>
3768 L:      bcm-kernel-feedback-list@broadcom.com
3769 L:      netdev@vger.kernel.org
3770 S:      Supported
3771 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3772 F:      drivers/net/phy/bcm*.[ch]
3773 F:      drivers/net/phy/broadcom.c
3774 F:      include/linux/brcmphy.h
3775
3776 BROADCOM GENET ETHERNET DRIVER
3777 M:      Doug Berger <opendmb@gmail.com>
3778 M:      Florian Fainelli <f.fainelli@gmail.com>
3779 L:      bcm-kernel-feedback-list@broadcom.com
3780 L:      netdev@vger.kernel.org
3781 S:      Supported
3782 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3783 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3784 F:      drivers/net/ethernet/broadcom/genet/
3785 F:      drivers/net/ethernet/broadcom/unimac.h
3786 F:      drivers/net/mdio/mdio-bcm-unimac.c
3787 F:      include/linux/platform_data/bcmgenet.h
3788 F:      include/linux/platform_data/mdio-bcm-unimac.h
3789
3790 BROADCOM IPROC ARM ARCHITECTURE
3791 M:      Ray Jui <rjui@broadcom.com>
3792 M:      Scott Branden <sbranden@broadcom.com>
3793 M:      bcm-kernel-feedback-list@broadcom.com
3794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3795 S:      Maintained
3796 T:      git git://github.com/broadcom/cygnus-linux.git
3797 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3798 F:      arch/arm64/boot/dts/broadcom/stingray/*
3799 F:      drivers/clk/bcm/clk-ns*
3800 F:      drivers/clk/bcm/clk-sr*
3801 F:      drivers/pinctrl/bcm/pinctrl-ns*
3802 F:      include/dt-bindings/clock/bcm-sr*
3803 N:      iproc
3804 N:      cygnus
3805 N:      bcm[-_]nsp
3806 N:      bcm9113*
3807 N:      bcm9583*
3808 N:      bcm9585*
3809 N:      bcm9586*
3810 N:      bcm988312
3811 N:      bcm113*
3812 N:      bcm583*
3813 N:      bcm585*
3814 N:      bcm586*
3815 N:      bcm88312
3816 N:      hr2
3817 N:      stingray
3818
3819 BROADCOM IPROC GBIT ETHERNET DRIVER
3820 M:      Rafał Miłecki <rafal@milecki.pl>
3821 M:      bcm-kernel-feedback-list@broadcom.com
3822 L:      netdev@vger.kernel.org
3823 S:      Maintained
3824 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3825 F:      drivers/net/ethernet/broadcom/bgmac*
3826 F:      drivers/net/ethernet/broadcom/unimac.h
3827
3828 BROADCOM KONA GPIO DRIVER
3829 M:      Ray Jui <rjui@broadcom.com>
3830 L:      bcm-kernel-feedback-list@broadcom.com
3831 S:      Supported
3832 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3833 F:      drivers/gpio/gpio-bcm-kona.c
3834
3835 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3836 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3837 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3838 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3839 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3840 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3841 L:      linux-scsi@vger.kernel.org
3842 S:      Supported
3843 W:      https://www.broadcom.com/support/storage
3844 F:      drivers/scsi/mpi3mr/
3845
3846 BROADCOM NETXTREME-E ROCE DRIVER
3847 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3848 L:      linux-rdma@vger.kernel.org
3849 S:      Supported
3850 W:      http://www.broadcom.com
3851 F:      drivers/infiniband/hw/bnxt_re/
3852 F:      include/uapi/rdma/bnxt_re-abi.h
3853
3854 BROADCOM NVRAM DRIVER
3855 M:      Rafał Miłecki <zajec5@gmail.com>
3856 L:      linux-mips@vger.kernel.org
3857 S:      Maintained
3858 F:      drivers/firmware/broadcom/*
3859
3860 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3861 M:      Rafał Miłecki <rafal@milecki.pl>
3862 M:      Florian Fainelli <f.fainelli@gmail.com>
3863 M:      bcm-kernel-feedback-list@broadcom.com
3864 L:      linux-pm@vger.kernel.org
3865 S:      Maintained
3866 T:      git git://github.com/broadcom/stblinux.git
3867 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3868 F:      include/dt-bindings/soc/bcm-pmb.h
3869
3870 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3871 M:      Rafał Miłecki <zajec5@gmail.com>
3872 L:      linux-wireless@vger.kernel.org
3873 S:      Maintained
3874 F:      drivers/bcma/
3875 F:      include/linux/bcma/
3876
3877 BROADCOM SPI DRIVER
3878 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3879 M:      bcm-kernel-feedback-list@broadcom.com
3880 S:      Maintained
3881 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3882 F:      drivers/spi/spi-bcm-qspi.*
3883 F:      drivers/spi/spi-brcmstb-qspi.c
3884 F:      drivers/spi/spi-iproc-qspi.c
3885
3886 BROADCOM STB AVS CPUFREQ DRIVER
3887 M:      Markus Mayer <mmayer@broadcom.com>
3888 M:      bcm-kernel-feedback-list@broadcom.com
3889 L:      linux-pm@vger.kernel.org
3890 S:      Maintained
3891 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3892 F:      drivers/cpufreq/brcmstb*
3893
3894 BROADCOM STB AVS TMON DRIVER
3895 M:      Markus Mayer <mmayer@broadcom.com>
3896 M:      bcm-kernel-feedback-list@broadcom.com
3897 L:      linux-pm@vger.kernel.org
3898 S:      Maintained
3899 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3900 F:      drivers/thermal/broadcom/brcmstb*
3901
3902 BROADCOM STB DPFE DRIVER
3903 M:      Markus Mayer <mmayer@broadcom.com>
3904 M:      bcm-kernel-feedback-list@broadcom.com
3905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3906 S:      Maintained
3907 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3908 F:      drivers/memory/brcmstb_dpfe.c
3909
3910 BROADCOM STB NAND FLASH DRIVER
3911 M:      Brian Norris <computersforpeace@gmail.com>
3912 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3913 L:      linux-mtd@lists.infradead.org
3914 L:      bcm-kernel-feedback-list@broadcom.com
3915 S:      Maintained
3916 F:      drivers/mtd/nand/raw/brcmnand/
3917
3918 BROADCOM STB PCIE DRIVER
3919 M:      Jim Quinlan <jim2101024@gmail.com>
3920 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3921 M:      Florian Fainelli <f.fainelli@gmail.com>
3922 M:      bcm-kernel-feedback-list@broadcom.com
3923 L:      linux-pci@vger.kernel.org
3924 S:      Maintained
3925 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3926 F:      drivers/pci/controller/pcie-brcmstb.c
3927
3928 BROADCOM SYSTEMPORT ETHERNET DRIVER
3929 M:      Florian Fainelli <f.fainelli@gmail.com>
3930 L:      bcm-kernel-feedback-list@broadcom.com
3931 L:      netdev@vger.kernel.org
3932 S:      Supported
3933 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3934 F:      drivers/net/ethernet/broadcom/unimac.h
3935
3936 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3937 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3938 M:      Prashant Sreedharan <prashant@broadcom.com>
3939 M:      Michael Chan <mchan@broadcom.com>
3940 L:      netdev@vger.kernel.org
3941 S:      Supported
3942 F:      drivers/net/ethernet/broadcom/tg3.*
3943
3944 BROADCOM VK DRIVER
3945 M:      Scott Branden <scott.branden@broadcom.com>
3946 L:      bcm-kernel-feedback-list@broadcom.com
3947 S:      Supported
3948 F:      drivers/misc/bcm-vk/
3949 F:      include/uapi/linux/misc/bcm_vk.h
3950
3951 BROCADE BFA FC SCSI DRIVER
3952 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3953 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3954 L:      linux-scsi@vger.kernel.org
3955 S:      Supported
3956 F:      drivers/scsi/bfa/
3957
3958 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3959 M:      Rasesh Mody <rmody@marvell.com>
3960 M:      Sudarsana Kalluru <skalluru@marvell.com>
3961 M:      GR-Linux-NIC-Dev@marvell.com
3962 L:      netdev@vger.kernel.org
3963 S:      Supported
3964 F:      drivers/net/ethernet/brocade/bna/
3965
3966 BSG (block layer generic sg v4 driver)
3967 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3968 L:      linux-scsi@vger.kernel.org
3969 S:      Supported
3970 F:      block/bsg.c
3971 F:      include/linux/bsg.h
3972 F:      include/uapi/linux/bsg.h
3973
3974 BT87X AUDIO DRIVER
3975 M:      Clemens Ladisch <clemens@ladisch.de>
3976 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3977 S:      Maintained
3978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3979 F:      Documentation/sound/cards/bt87x.rst
3980 F:      sound/pci/bt87x.c
3981
3982 BT8XXGPIO DRIVER
3983 M:      Michael Buesch <m@bues.ch>
3984 S:      Maintained
3985 W:      http://bu3sch.de/btgpio.php
3986 F:      drivers/gpio/gpio-bt8xx.c
3987
3988 BTRFS FILE SYSTEM
3989 M:      Chris Mason <clm@fb.com>
3990 M:      Josef Bacik <josef@toxicpanda.com>
3991 M:      David Sterba <dsterba@suse.com>
3992 L:      linux-btrfs@vger.kernel.org
3993 S:      Maintained
3994 W:      http://btrfs.wiki.kernel.org/
3995 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3996 C:      irc://irc.libera.chat/btrfs
3997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3998 F:      Documentation/filesystems/btrfs.rst
3999 F:      fs/btrfs/
4000 F:      include/linux/btrfs*
4001 F:      include/uapi/linux/btrfs*
4002
4003 BTTV VIDEO4LINUX DRIVER
4004 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4005 L:      linux-media@vger.kernel.org
4006 S:      Odd fixes
4007 W:      https://linuxtv.org
4008 T:      git git://linuxtv.org/media_tree.git
4009 F:      Documentation/driver-api/media/drivers/bttv*
4010 F:      drivers/media/pci/bt8xx/bttv*
4011
4012 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4013 M:      Chanwoo Choi <cw00.choi@samsung.com>
4014 L:      linux-pm@vger.kernel.org
4015 L:      linux-samsung-soc@vger.kernel.org
4016 S:      Maintained
4017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4018 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4019 F:      drivers/devfreq/exynos-bus.c
4020
4021 BUSLOGIC SCSI DRIVER
4022 M:      Khalid Aziz <khalid@gonehiking.org>
4023 L:      linux-scsi@vger.kernel.org
4024 S:      Maintained
4025 F:      drivers/scsi/BusLogic.*
4026 F:      drivers/scsi/FlashPoint.*
4027
4028 C-MEDIA CMI8788 DRIVER
4029 M:      Clemens Ladisch <clemens@ladisch.de>
4030 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4031 S:      Maintained
4032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4033 F:      sound/pci/oxygen/
4034
4035 C-SKY ARCHITECTURE
4036 M:      Guo Ren <guoren@kernel.org>
4037 L:      linux-csky@vger.kernel.org
4038 S:      Supported
4039 T:      git https://github.com/c-sky/csky-linux.git
4040 F:      Documentation/devicetree/bindings/csky/
4041 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4042 F:      Documentation/devicetree/bindings/timer/csky,*
4043 F:      arch/csky/
4044 F:      drivers/clocksource/timer-gx6605s.c
4045 F:      drivers/clocksource/timer-mp-csky.c
4046 F:      drivers/irqchip/irq-csky-*
4047 N:      csky
4048 K:      csky
4049
4050 CA8210 IEEE-802.15.4 RADIO DRIVER
4051 M:      Harry Morris <h.morris@cascoda.com>
4052 L:      linux-wpan@vger.kernel.org
4053 S:      Maintained
4054 W:      https://github.com/Cascoda/ca8210-linux.git
4055 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4056 F:      drivers/net/ieee802154/ca8210.c
4057
4058 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4059 M:      Damien Le Moal <damien.lemoal@wdc.com>
4060 L:      linux-riscv@lists.infradead.org
4061 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4062 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4063 F:      drivers/pinctrl/pinctrl-k210.c
4064
4065 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4066 M:      Damien Le Moal <damien.lemoal@wdc.com>
4067 L:      linux-kernel@vger.kernel.org
4068 L:      linux-riscv@lists.infradead.org
4069 S:      Maintained
4070 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4071 F:      drivers/reset/reset-k210.c
4072
4073 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4074 M:      Damien Le Moal <damien.lemoal@wdc.com>
4075 L:      linux-riscv@lists.infradead.org
4076 S:      Maintained
4077 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4078 F:      drivers/soc/canaan/
4079 F:      include/soc/canaan/
4080
4081 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4082 M:      David Howells <dhowells@redhat.com>
4083 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4084 S:      Supported
4085 F:      Documentation/filesystems/caching/cachefiles.rst
4086 F:      fs/cachefiles/
4087
4088 CADENCE MIPI-CSI2 BRIDGES
4089 M:      Maxime Ripard <mripard@kernel.org>
4090 L:      linux-media@vger.kernel.org
4091 S:      Maintained
4092 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4093 F:      drivers/media/platform/cadence/cdns-csi2*
4094
4095 CADENCE NAND DRIVER
4096 L:      linux-mtd@lists.infradead.org
4097 S:      Orphan
4098 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4099 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4100
4101 CADENCE USB3 DRD IP DRIVER
4102 M:      Peter Chen <peter.chen@kernel.org>
4103 M:      Pawel Laszczak <pawell@cadence.com>
4104 R:      Roger Quadros <rogerq@kernel.org>
4105 R:      Aswath Govindraju <a-govindraju@ti.com>
4106 L:      linux-usb@vger.kernel.org
4107 S:      Maintained
4108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4109 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4110 F:      drivers/usb/cdns3/
4111 X:      drivers/usb/cdns3/cdnsp*
4112
4113 CADENCE USBSSP DRD IP DRIVER
4114 M:      Pawel Laszczak <pawell@cadence.com>
4115 L:      linux-usb@vger.kernel.org
4116 S:      Maintained
4117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4118 F:      drivers/usb/cdns3/
4119 X:      drivers/usb/cdns3/cdns3*
4120
4121 CADET FM/AM RADIO RECEIVER DRIVER
4122 M:      Hans Verkuil <hverkuil@xs4all.nl>
4123 L:      linux-media@vger.kernel.org
4124 S:      Maintained
4125 W:      https://linuxtv.org
4126 T:      git git://linuxtv.org/media_tree.git
4127 F:      drivers/media/radio/radio-cadet*
4128
4129 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4130 L:      linux-media@vger.kernel.org
4131 S:      Orphan
4132 T:      git git://linuxtv.org/media_tree.git
4133 F:      Documentation/admin-guide/media/cafe_ccic*
4134 F:      drivers/media/platform/marvell-ccic/
4135
4136 CAIF NETWORK LAYER
4137 L:      netdev@vger.kernel.org
4138 S:      Orphan
4139 F:      Documentation/networking/caif/
4140 F:      drivers/net/caif/
4141 F:      include/net/caif/
4142 F:      include/uapi/linux/caif/
4143 F:      net/caif/
4144
4145 CAKE QDISC
4146 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4147 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4148 S:      Maintained
4149 F:      net/sched/sch_cake.c
4150
4151 CAN NETWORK DRIVERS
4152 M:      Wolfgang Grandegger <wg@grandegger.com>
4153 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4154 L:      linux-can@vger.kernel.org
4155 S:      Maintained
4156 W:      https://github.com/linux-can
4157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4159 F:      Documentation/devicetree/bindings/net/can/
4160 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4161 F:      drivers/net/can/
4162 F:      drivers/phy/phy-can-transceiver.c
4163 F:      include/linux/can/bittiming.h
4164 F:      include/linux/can/dev.h
4165 F:      include/linux/can/led.h
4166 F:      include/linux/can/length.h
4167 F:      include/linux/can/platform/
4168 F:      include/linux/can/rx-offload.h
4169 F:      include/uapi/linux/can/error.h
4170 F:      include/uapi/linux/can/netlink.h
4171 F:      include/uapi/linux/can/vxcan.h
4172
4173 CAN NETWORK LAYER
4174 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4175 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4176 L:      linux-can@vger.kernel.org
4177 S:      Maintained
4178 W:      https://github.com/linux-can
4179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4181 F:      Documentation/networking/can.rst
4182 F:      include/linux/can/can-ml.h
4183 F:      include/linux/can/core.h
4184 F:      include/linux/can/skb.h
4185 F:      include/net/netns/can.h
4186 F:      include/uapi/linux/can.h
4187 F:      include/uapi/linux/can/bcm.h
4188 F:      include/uapi/linux/can/gw.h
4189 F:      include/uapi/linux/can/isotp.h
4190 F:      include/uapi/linux/can/raw.h
4191 F:      net/can/
4192
4193 CAN-J1939 NETWORK LAYER
4194 M:      Robin van der Gracht <robin@protonic.nl>
4195 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4196 R:      kernel@pengutronix.de
4197 L:      linux-can@vger.kernel.org
4198 S:      Maintained
4199 F:      Documentation/networking/j1939.rst
4200 F:      include/uapi/linux/can/j1939.h
4201 F:      net/can/j1939/
4202
4203 CAPABILITIES
4204 M:      Serge Hallyn <serge@hallyn.com>
4205 L:      linux-security-module@vger.kernel.org
4206 S:      Supported
4207 F:      include/linux/capability.h
4208 F:      include/uapi/linux/capability.h
4209 F:      kernel/capability.c
4210 F:      security/commoncap.c
4211
4212 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4213 M:      Kevin Tsai <ktsai@capellamicro.com>
4214 S:      Maintained
4215 F:      drivers/iio/light/cm*
4216
4217 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4218 M:      Christian Lamparter <chunkeey@googlemail.com>
4219 L:      linux-wireless@vger.kernel.org
4220 S:      Maintained
4221 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4222 F:      drivers/net/wireless/ath/carl9170/
4223
4224 CAVIUM I2C DRIVER
4225 M:      Robert Richter <rric@kernel.org>
4226 S:      Odd Fixes
4227 W:      http://www.marvell.com
4228 F:      drivers/i2c/busses/i2c-octeon*
4229 F:      drivers/i2c/busses/i2c-thunderx*
4230
4231 CAVIUM LIQUIDIO NETWORK DRIVER
4232 M:      Derek Chickles <dchickles@marvell.com>
4233 M:      Satanand Burla <sburla@marvell.com>
4234 M:      Felix Manlunas <fmanlunas@marvell.com>
4235 L:      netdev@vger.kernel.org
4236 S:      Supported
4237 W:      http://www.marvell.com
4238 F:      drivers/net/ethernet/cavium/liquidio/
4239
4240 CAVIUM MMC DRIVER
4241 M:      Robert Richter <rric@kernel.org>
4242 S:      Odd Fixes
4243 W:      http://www.marvell.com
4244 F:      drivers/mmc/host/cavium*
4245
4246 CAVIUM OCTEON-TX CRYPTO DRIVER
4247 M:      George Cherian <gcherian@marvell.com>
4248 L:      linux-crypto@vger.kernel.org
4249 S:      Supported
4250 W:      http://www.marvell.com
4251 F:      drivers/crypto/cavium/cpt/
4252
4253 CAVIUM THUNDERX2 ARM64 SOC
4254 M:      Robert Richter <rric@kernel.org>
4255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4256 S:      Odd Fixes
4257 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4258 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4259
4260 CBS/ETF/TAPRIO QDISCS
4261 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4262 S:      Maintained
4263 L:      netdev@vger.kernel.org
4264 F:      net/sched/sch_cbs.c
4265 F:      net/sched/sch_etf.c
4266 F:      net/sched/sch_taprio.c
4267
4268 CC2520 IEEE-802.15.4 RADIO DRIVER
4269 M:      Varka Bhadram <varkabhadram@gmail.com>
4270 L:      linux-wpan@vger.kernel.org
4271 S:      Maintained
4272 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4273 F:      drivers/net/ieee802154/cc2520.c
4274 F:      include/linux/spi/cc2520.h
4275
4276 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4277 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4278 L:      linux-crypto@vger.kernel.org
4279 S:      Supported
4280 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4281 F:      drivers/crypto/ccree/
4282
4283 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4284 M:      Hadar Gat <hadar.gat@arm.com>
4285 L:      linux-crypto@vger.kernel.org
4286 S:      Supported
4287 F:      drivers/char/hw_random/cctrng.c
4288 F:      drivers/char/hw_random/cctrng.h
4289 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4290 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4291
4292 CEC FRAMEWORK
4293 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4294 L:      linux-media@vger.kernel.org
4295 S:      Supported
4296 W:      http://linuxtv.org
4297 T:      git git://linuxtv.org/media_tree.git
4298 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4299 F:      Documentation/devicetree/bindings/media/cec.txt
4300 F:      Documentation/driver-api/media/cec-core.rst
4301 F:      Documentation/userspace-api/media/cec
4302 F:      drivers/media/cec/
4303 F:      drivers/media/rc/keymaps/rc-cec.c
4304 F:      include/media/cec-notifier.h
4305 F:      include/media/cec.h
4306 F:      include/uapi/linux/cec-funcs.h
4307 F:      include/uapi/linux/cec.h
4308
4309 CEC GPIO DRIVER
4310 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4311 L:      linux-media@vger.kernel.org
4312 S:      Supported
4313 W:      http://linuxtv.org
4314 T:      git git://linuxtv.org/media_tree.git
4315 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4316 F:      drivers/media/cec/platform/cec-gpio/
4317
4318 CELL BROADBAND ENGINE ARCHITECTURE
4319 M:      Arnd Bergmann <arnd@arndb.de>
4320 L:      linuxppc-dev@lists.ozlabs.org
4321 S:      Supported
4322 W:      http://www.ibm.com/developerworks/power/cell/
4323 F:      arch/powerpc/include/asm/cell*.h
4324 F:      arch/powerpc/include/asm/spu*.h
4325 F:      arch/powerpc/include/uapi/asm/spu*.h
4326 F:      arch/powerpc/platforms/cell/
4327
4328 CELLWISE CW2015 BATTERY DRIVER
4329 M:      Tobias Schrammm <t.schramm@manjaro.org>
4330 S:      Maintained
4331 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4332 F:      drivers/power/supply/cw2015_battery.c
4333
4334 CEPH COMMON CODE (LIBCEPH)
4335 M:      Ilya Dryomov <idryomov@gmail.com>
4336 M:      Jeff Layton <jlayton@kernel.org>
4337 L:      ceph-devel@vger.kernel.org
4338 S:      Supported
4339 W:      http://ceph.com/
4340 T:      git git://github.com/ceph/ceph-client.git
4341 F:      include/linux/ceph/
4342 F:      include/linux/crush/
4343 F:      net/ceph/
4344
4345 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4346 M:      Jeff Layton <jlayton@kernel.org>
4347 M:      Ilya Dryomov <idryomov@gmail.com>
4348 L:      ceph-devel@vger.kernel.org
4349 S:      Supported
4350 W:      http://ceph.com/
4351 T:      git git://github.com/ceph/ceph-client.git
4352 F:      Documentation/filesystems/ceph.rst
4353 F:      fs/ceph/
4354
4355 CERTIFICATE HANDLING
4356 M:      David Howells <dhowells@redhat.com>
4357 M:      David Woodhouse <dwmw2@infradead.org>
4358 L:      keyrings@vger.kernel.org
4359 S:      Maintained
4360 F:      Documentation/admin-guide/module-signing.rst
4361 F:      certs/
4362 F:      scripts/extract-cert.c
4363 F:      scripts/sign-file.c
4364
4365 CFAG12864B LCD DRIVER
4366 M:      Miguel Ojeda <ojeda@kernel.org>
4367 S:      Maintained
4368 F:      drivers/auxdisplay/cfag12864b.c
4369 F:      include/linux/cfag12864b.h
4370
4371 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4372 M:      Miguel Ojeda <ojeda@kernel.org>
4373 S:      Maintained
4374 F:      drivers/auxdisplay/cfag12864bfb.c
4375 F:      include/linux/cfag12864b.h
4376
4377 CHAR and MISC DRIVERS
4378 M:      Arnd Bergmann <arnd@arndb.de>
4379 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4380 S:      Supported
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4382 F:      drivers/char/
4383 F:      drivers/misc/
4384 F:      include/linux/miscdevice.h
4385 X:      drivers/char/agp/
4386 X:      drivers/char/hw_random/
4387 X:      drivers/char/ipmi/
4388 X:      drivers/char/random.c
4389 X:      drivers/char/tpm/
4390
4391 CHECKPATCH
4392 M:      Andy Whitcroft <apw@canonical.com>
4393 M:      Joe Perches <joe@perches.com>
4394 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4395 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4396 S:      Maintained
4397 F:      scripts/checkpatch.pl
4398
4399 CHECKPATCH DOCUMENTATION
4400 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4401 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4402 R:      Joe Perches <joe@perches.com>
4403 S:      Maintained
4404 F:      Documentation/dev-tools/checkpatch.rst
4405
4406 CHINESE DOCUMENTATION
4407 M:      Alex Shi <alexs@kernel.org>
4408 S:      Maintained
4409 F:      Documentation/translations/zh_CN/
4410
4411 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4412 M:      Peter Chen <peter.chen@kernel.org>
4413 L:      linux-usb@vger.kernel.org
4414 S:      Maintained
4415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4416 F:      drivers/usb/chipidea/
4417
4418 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4419 M:      Hans de Goede <hdegoede@redhat.com>
4420 L:      linux-input@vger.kernel.org
4421 S:      Maintained
4422 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4423 F:      drivers/input/touchscreen/chipone_icn8318.c
4424
4425 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4426 M:      Hans de Goede <hdegoede@redhat.com>
4427 L:      linux-input@vger.kernel.org
4428 S:      Maintained
4429 F:      drivers/input/touchscreen/chipone_icn8505.c
4430
4431 CHROME HARDWARE PLATFORM SUPPORT
4432 M:      Benson Leung <bleung@chromium.org>
4433 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4434 S:      Maintained
4435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4436 F:      drivers/platform/chrome/
4437
4438 CHROMEOS EC CODEC DRIVER
4439 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4440 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4441 R:      Guenter Roeck <groeck@chromium.org>
4442 S:      Maintained
4443 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4444 F:      sound/soc/codecs/cros_ec_codec.*
4445
4446 CHROMEOS EC SUBDRIVERS
4447 M:      Benson Leung <bleung@chromium.org>
4448 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4449 R:      Guenter Roeck <groeck@chromium.org>
4450 S:      Maintained
4451 F:      drivers/power/supply/cros_usbpd-charger.c
4452 N:      cros_ec
4453 N:      cros-ec
4454
4455 CHRONTEL CH7322 CEC DRIVER
4456 M:      Joe Tessler <jrt@google.com>
4457 L:      linux-media@vger.kernel.org
4458 S:      Maintained
4459 T:      git git://linuxtv.org/media_tree.git
4460 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4461 F:      drivers/media/cec/i2c/ch7322.c
4462
4463 CIRRUS LOGIC AUDIO CODEC DRIVERS
4464 M:      James Schulman <james.schulman@cirrus.com>
4465 M:      David Rhodes <david.rhodes@cirrus.com>
4466 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4467 L:      patches@opensource.cirrus.com
4468 S:      Maintained
4469 F:      sound/soc/codecs/cs*
4470
4471 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4472 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4473 L:      netdev@vger.kernel.org
4474 S:      Maintained
4475 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4476
4477 CIRRUS LOGIC LOCHNAGAR DRIVER
4478 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4479 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4480 L:      patches@opensource.cirrus.com
4481 S:      Supported
4482 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4483 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4484 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4485 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4486 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4487 F:      Documentation/hwmon/lochnagar.rst
4488 F:      drivers/clk/clk-lochnagar.c
4489 F:      drivers/hwmon/lochnagar-hwmon.c
4490 F:      drivers/mfd/lochnagar-i2c.c
4491 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4492 F:      drivers/regulator/lochnagar-regulator.c
4493 F:      include/dt-bindings/clk/lochnagar.h
4494 F:      include/dt-bindings/pinctrl/lochnagar.h
4495 F:      include/linux/mfd/lochnagar*
4496 F:      sound/soc/codecs/lochnagar-sc.c
4497
4498 CIRRUS LOGIC MADERA CODEC DRIVERS
4499 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4500 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4501 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4502 L:      patches@opensource.cirrus.com
4503 S:      Supported
4504 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4505 T:      git https://github.com/CirrusLogic/linux-drivers.git
4506 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4507 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4508 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4509 F:      drivers/gpio/gpio-madera*
4510 F:      drivers/irqchip/irq-madera*
4511 F:      drivers/mfd/cs47l*
4512 F:      drivers/mfd/madera*
4513 F:      drivers/pinctrl/cirrus/*
4514 F:      include/dt-bindings/sound/madera*
4515 F:      include/linux/irqchip/irq-madera*
4516 F:      include/linux/mfd/madera/*
4517 F:      include/sound/madera*
4518 F:      sound/soc/codecs/cs47l*
4519 F:      sound/soc/codecs/madera*
4520
4521 CISCO FCOE HBA DRIVER
4522 M:      Satish Kharat <satishkh@cisco.com>
4523 M:      Sesidhar Baddela <sebaddel@cisco.com>
4524 M:      Karan Tilak Kumar <kartilak@cisco.com>
4525 L:      linux-scsi@vger.kernel.org
4526 S:      Supported
4527 F:      drivers/scsi/fnic/
4528
4529 CISCO SCSI HBA DRIVER
4530 M:      Karan Tilak Kumar <kartilak@cisco.com>
4531 M:      Sesidhar Baddela <sebaddel@cisco.com>
4532 L:      linux-scsi@vger.kernel.org
4533 S:      Supported
4534 F:      drivers/scsi/snic/
4535
4536 CISCO VIC ETHERNET NIC DRIVER
4537 M:      Christian Benvenuti <benve@cisco.com>
4538 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4539 S:      Supported
4540 F:      drivers/net/ethernet/cisco/enic/
4541
4542 CISCO VIC LOW LATENCY NIC DRIVER
4543 M:      Christian Benvenuti <benve@cisco.com>
4544 M:      Nelson Escobar <neescoba@cisco.com>
4545 S:      Supported
4546 F:      drivers/infiniband/hw/usnic/
4547
4548 CLANG-FORMAT FILE
4549 M:      Miguel Ojeda <ojeda@kernel.org>
4550 S:      Maintained
4551 F:      .clang-format
4552
4553 CLANG/LLVM BUILD SUPPORT
4554 M:      Nathan Chancellor <nathan@kernel.org>
4555 M:      Nick Desaulniers <ndesaulniers@google.com>
4556 L:      llvm@lists.linux.dev
4557 S:      Supported
4558 W:      https://clangbuiltlinux.github.io/
4559 B:      https://github.com/ClangBuiltLinux/linux/issues
4560 C:      irc://irc.libera.chat/clangbuiltlinux
4561 F:      Documentation/kbuild/llvm.rst
4562 F:      include/linux/compiler-clang.h
4563 F:      scripts/Makefile.clang
4564 F:      scripts/clang-tools/
4565 K:      \b(?i:clang|llvm)\b
4566
4567 CLANG CONTROL FLOW INTEGRITY SUPPORT
4568 M:      Sami Tolvanen <samitolvanen@google.com>
4569 M:      Kees Cook <keescook@chromium.org>
4570 R:      Nathan Chancellor <nathan@kernel.org>
4571 R:      Nick Desaulniers <ndesaulniers@google.com>
4572 L:      llvm@lists.linux.dev
4573 S:      Supported
4574 B:      https://github.com/ClangBuiltLinux/linux/issues
4575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4576 F:      include/linux/cfi.h
4577 F:      kernel/cfi.c
4578
4579 CLEANCACHE API
4580 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4581 L:      linux-kernel@vger.kernel.org
4582 S:      Maintained
4583 F:      include/linux/cleancache.h
4584 F:      mm/cleancache.c
4585
4586 CLK API
4587 M:      Russell King <linux@armlinux.org.uk>
4588 L:      linux-clk@vger.kernel.org
4589 S:      Maintained
4590 F:      include/linux/clk.h
4591
4592 CLOCKSOURCE, CLOCKEVENT DRIVERS
4593 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4594 M:      Thomas Gleixner <tglx@linutronix.de>
4595 L:      linux-kernel@vger.kernel.org
4596 S:      Supported
4597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4598 F:      Documentation/devicetree/bindings/timer/
4599 F:      drivers/clocksource/
4600
4601 CMPC ACPI DRIVER
4602 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4603 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4604 L:      platform-driver-x86@vger.kernel.org
4605 S:      Supported
4606 F:      drivers/platform/x86/classmate-laptop.c
4607
4608 COBALT MEDIA DRIVER
4609 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4610 L:      linux-media@vger.kernel.org
4611 S:      Supported
4612 W:      https://linuxtv.org
4613 T:      git git://linuxtv.org/media_tree.git
4614 F:      drivers/media/pci/cobalt/
4615
4616 COCCINELLE/Semantic Patches (SmPL)
4617 M:      Julia Lawall <Julia.Lawall@inria.fr>
4618 M:      Gilles Muller <Gilles.Muller@inria.fr>
4619 M:      Nicolas Palix <nicolas.palix@imag.fr>
4620 M:      Michal Marek <michal.lkml@markovi.net>
4621 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4622 S:      Supported
4623 W:      http://coccinelle.lip6.fr/
4624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4625 F:      Documentation/dev-tools/coccinelle.rst
4626 F:      scripts/coccicheck
4627 F:      scripts/coccinelle/
4628
4629 CODA FILE SYSTEM
4630 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4631 M:      coda@cs.cmu.edu
4632 L:      codalist@coda.cs.cmu.edu
4633 S:      Maintained
4634 W:      http://www.coda.cs.cmu.edu/
4635 F:      Documentation/filesystems/coda.rst
4636 F:      fs/coda/
4637 F:      include/linux/coda*.h
4638 F:      include/uapi/linux/coda*.h
4639
4640 CODA V4L2 MEM2MEM DRIVER
4641 M:      Philipp Zabel <p.zabel@pengutronix.de>
4642 L:      linux-media@vger.kernel.org
4643 S:      Maintained
4644 F:      Documentation/devicetree/bindings/media/coda.yaml
4645 F:      drivers/media/platform/coda/
4646
4647 CODE OF CONDUCT
4648 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4649 S:      Supported
4650 F:      Documentation/process/code-of-conduct-interpretation.rst
4651 F:      Documentation/process/code-of-conduct.rst
4652
4653 COMEDI DRIVERS
4654 M:      Ian Abbott <abbotti@mev.co.uk>
4655 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4656 S:      Odd Fixes
4657 F:      drivers/comedi/
4658
4659 COMMON CLK FRAMEWORK
4660 M:      Michael Turquette <mturquette@baylibre.com>
4661 M:      Stephen Boyd <sboyd@kernel.org>
4662 L:      linux-clk@vger.kernel.org
4663 S:      Maintained
4664 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4666 F:      Documentation/devicetree/bindings/clock/
4667 F:      drivers/clk/
4668 F:      include/linux/clk-pr*
4669 F:      include/linux/clk/
4670 F:      include/linux/of_clk.h
4671 X:      drivers/clk/clkdev.c
4672
4673 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4674 M:      Steve French <sfrench@samba.org>
4675 L:      linux-cifs@vger.kernel.org
4676 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4677 S:      Supported
4678 W:      http://linux-cifs.samba.org/
4679 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4680 F:      Documentation/admin-guide/cifs/
4681 F:      fs/cifs/
4682 F:      fs/smbfs_common/
4683
4684 COMPACTPCI HOTPLUG CORE
4685 M:      Scott Murray <scott@spiteful.org>
4686 L:      linux-pci@vger.kernel.org
4687 S:      Maintained
4688 F:      drivers/pci/hotplug/cpci_hotplug*
4689
4690 COMPACTPCI HOTPLUG GENERIC DRIVER
4691 M:      Scott Murray <scott@spiteful.org>
4692 L:      linux-pci@vger.kernel.org
4693 S:      Maintained
4694 F:      drivers/pci/hotplug/cpcihp_generic.c
4695
4696 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4697 M:      Scott Murray <scott@spiteful.org>
4698 L:      linux-pci@vger.kernel.org
4699 S:      Maintained
4700 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4701
4702 COMPAL LAPTOP SUPPORT
4703 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4704 L:      platform-driver-x86@vger.kernel.org
4705 S:      Maintained
4706 F:      drivers/platform/x86/compal-laptop.c
4707
4708 COMPILER ATTRIBUTES
4709 M:      Miguel Ojeda <ojeda@kernel.org>
4710 R:      Nick Desaulniers <ndesaulniers@google.com>
4711 S:      Maintained
4712 F:      include/linux/compiler_attributes.h
4713
4714 COMPUTE EXPRESS LINK (CXL)
4715 M:      Alison Schofield <alison.schofield@intel.com>
4716 M:      Vishal Verma <vishal.l.verma@intel.com>
4717 M:      Ira Weiny <ira.weiny@intel.com>
4718 M:      Ben Widawsky <ben.widawsky@intel.com>
4719 M:      Dan Williams <dan.j.williams@intel.com>
4720 L:      linux-cxl@vger.kernel.org
4721 S:      Maintained
4722 F:      drivers/cxl/
4723 F:      include/uapi/linux/cxl_mem.h
4724
4725 CONEXANT ACCESSRUNNER USB DRIVER
4726 L:      accessrunner-general@lists.sourceforge.net
4727 S:      Orphan
4728 W:      http://accessrunner.sourceforge.net/
4729 F:      drivers/usb/atm/cxacru.c
4730
4731 CONFIGFS
4732 M:      Joel Becker <jlbec@evilplan.org>
4733 M:      Christoph Hellwig <hch@lst.de>
4734 S:      Supported
4735 T:      git git://git.infradead.org/users/hch/configfs.git
4736 F:      fs/configfs/
4737 F:      include/linux/configfs.h
4738 F:      samples/configfs/
4739
4740 CONSOLE SUBSYSTEM
4741 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4742 S:      Supported
4743 F:      drivers/video/console/
4744 F:      include/linux/console*
4745
4746 CONTEXT TRACKING
4747 M:      Frederic Weisbecker <frederic@kernel.org>
4748 S:      Maintained
4749 F:      kernel/context_tracking.c
4750 F:      include/linux/context_tracking*
4751
4752 CONTROL GROUP (CGROUP)
4753 M:      Tejun Heo <tj@kernel.org>
4754 M:      Zefan Li <lizefan.x@bytedance.com>
4755 M:      Johannes Weiner <hannes@cmpxchg.org>
4756 L:      cgroups@vger.kernel.org
4757 S:      Maintained
4758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4759 F:      Documentation/admin-guide/cgroup-v1/
4760 F:      Documentation/admin-guide/cgroup-v2.rst
4761 F:      include/linux/cgroup*
4762 F:      kernel/cgroup/
4763
4764 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4765 M:      Tejun Heo <tj@kernel.org>
4766 M:      Jens Axboe <axboe@kernel.dk>
4767 L:      cgroups@vger.kernel.org
4768 L:      linux-block@vger.kernel.org
4769 T:      git git://git.kernel.dk/linux-block
4770 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4771 F:      block/bfq-cgroup.c
4772 F:      block/blk-cgroup.c
4773 F:      block/blk-iolatency.c
4774 F:      block/blk-throttle.c
4775 F:      include/linux/blk-cgroup.h
4776
4777 CONTROL GROUP - CPUSET
4778 M:      Zefan Li <lizefan.x@bytedance.com>
4779 L:      cgroups@vger.kernel.org
4780 S:      Maintained
4781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4782 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4783 F:      include/linux/cpuset.h
4784 F:      kernel/cgroup/cpuset.c
4785
4786 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4787 M:      Johannes Weiner <hannes@cmpxchg.org>
4788 M:      Michal Hocko <mhocko@kernel.org>
4789 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4790 L:      cgroups@vger.kernel.org
4791 L:      linux-mm@kvack.org
4792 S:      Maintained
4793 F:      mm/memcontrol.c
4794 F:      mm/swap_cgroup.c
4795
4796 CORETEMP HARDWARE MONITORING DRIVER
4797 M:      Fenghua Yu <fenghua.yu@intel.com>
4798 L:      linux-hwmon@vger.kernel.org
4799 S:      Maintained
4800 F:      Documentation/hwmon/coretemp.rst
4801 F:      drivers/hwmon/coretemp.c
4802
4803 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4804 M:      Marius Zachmann <mail@mariuszachmann.de>
4805 L:      linux-hwmon@vger.kernel.org
4806 S:      Maintained
4807 F:      drivers/hwmon/corsair-cpro.c
4808
4809 CORSAIR-PSU HARDWARE MONITOR DRIVER
4810 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4811 L:      linux-hwmon@vger.kernel.org
4812 S:      Maintained
4813 F:      Documentation/hwmon/corsair-psu.rst
4814 F:      drivers/hwmon/corsair-psu.c
4815
4816 COSA/SRP SYNC SERIAL DRIVER
4817 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4818 S:      Maintained
4819 W:      http://www.fi.muni.cz/~kas/cosa/
4820 F:      drivers/net/wan/cosa*
4821
4822 COUNTER SUBSYSTEM
4823 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4824 L:      linux-iio@vger.kernel.org
4825 S:      Maintained
4826 F:      Documentation/ABI/testing/sysfs-bus-counter
4827 F:      Documentation/driver-api/generic-counter.rst
4828 F:      drivers/counter/
4829 F:      include/linux/counter.h
4830 F:      include/linux/counter_enum.h
4831
4832 CP2615 I2C DRIVER
4833 M:      Bence Csókás <bence98@sch.bme.hu>
4834 S:      Maintained
4835 F:      drivers/i2c/busses/i2c-cp2615.c
4836
4837 CPMAC ETHERNET DRIVER
4838 M:      Florian Fainelli <f.fainelli@gmail.com>
4839 L:      netdev@vger.kernel.org
4840 S:      Maintained
4841 F:      drivers/net/ethernet/ti/cpmac.c
4842
4843 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4844 M:      Viresh Kumar <viresh.kumar@linaro.org>
4845 M:      Sudeep Holla <sudeep.holla@arm.com>
4846 L:      linux-pm@vger.kernel.org
4847 S:      Maintained
4848 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4849 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4850
4851 CPU FREQUENCY SCALING FRAMEWORK
4852 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4853 M:      Viresh Kumar <viresh.kumar@linaro.org>
4854 L:      linux-pm@vger.kernel.org
4855 S:      Maintained
4856 B:      https://bugzilla.kernel.org
4857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4859 F:      Documentation/admin-guide/pm/cpufreq.rst
4860 F:      Documentation/admin-guide/pm/intel_pstate.rst
4861 F:      Documentation/cpu-freq/
4862 F:      Documentation/devicetree/bindings/cpufreq/
4863 F:      drivers/cpufreq/
4864 F:      include/linux/cpufreq.h
4865 F:      include/linux/sched/cpufreq.h
4866 F:      kernel/sched/cpufreq*.c
4867 F:      tools/testing/selftests/cpufreq/
4868
4869 CPU IDLE TIME MANAGEMENT FRAMEWORK
4870 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4871 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4872 L:      linux-pm@vger.kernel.org
4873 S:      Maintained
4874 B:      https://bugzilla.kernel.org
4875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4876 F:      Documentation/admin-guide/pm/cpuidle.rst
4877 F:      Documentation/driver-api/pm/cpuidle.rst
4878 F:      drivers/cpuidle/
4879 F:      include/linux/cpuidle.h
4880
4881 CPU POWER MONITORING SUBSYSTEM
4882 M:      Thomas Renninger <trenn@suse.com>
4883 M:      Shuah Khan <shuah@kernel.org>
4884 M:      Shuah Khan <skhan@linuxfoundation.org>
4885 L:      linux-pm@vger.kernel.org
4886 S:      Maintained
4887 F:      tools/power/cpupower/
4888
4889 CPUID/MSR DRIVER
4890 M:      "H. Peter Anvin" <hpa@zytor.com>
4891 S:      Maintained
4892 F:      arch/x86/kernel/cpuid.c
4893 F:      arch/x86/kernel/msr.c
4894
4895 CPUIDLE DRIVER - ARM BIG LITTLE
4896 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4897 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4898 L:      linux-pm@vger.kernel.org
4899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4900 S:      Maintained
4901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4902 F:      drivers/cpuidle/cpuidle-big_little.c
4903
4904 CPUIDLE DRIVER - ARM EXYNOS
4905 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4906 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4907 M:      Kukjin Kim <kgene@kernel.org>
4908 L:      linux-pm@vger.kernel.org
4909 L:      linux-samsung-soc@vger.kernel.org
4910 S:      Supported
4911 F:      arch/arm/mach-exynos/pm.c
4912 F:      drivers/cpuidle/cpuidle-exynos.c
4913 F:      include/linux/platform_data/cpuidle-exynos.h
4914
4915 CPUIDLE DRIVER - ARM PSCI
4916 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4917 M:      Sudeep Holla <sudeep.holla@arm.com>
4918 L:      linux-pm@vger.kernel.org
4919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4920 S:      Supported
4921 F:      drivers/cpuidle/cpuidle-psci.c
4922
4923 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4924 M:      Ulf Hansson <ulf.hansson@linaro.org>
4925 L:      linux-pm@vger.kernel.org
4926 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4927 S:      Supported
4928 F:      drivers/cpuidle/cpuidle-psci.h
4929 F:      drivers/cpuidle/cpuidle-psci-domain.c
4930
4931 CRAMFS FILESYSTEM
4932 M:      Nicolas Pitre <nico@fluxnic.net>
4933 S:      Maintained
4934 F:      Documentation/filesystems/cramfs.rst
4935 F:      fs/cramfs/
4936
4937 CREATIVE SB0540
4938 M:      Bastien Nocera <hadess@hadess.net>
4939 L:      linux-input@vger.kernel.org
4940 S:      Maintained
4941 F:      drivers/hid/hid-creative-sb0540.c
4942
4943 CRYPTO API
4944 M:      Herbert Xu <herbert@gondor.apana.org.au>
4945 M:      "David S. Miller" <davem@davemloft.net>
4946 L:      linux-crypto@vger.kernel.org
4947 S:      Maintained
4948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4950 F:      Documentation/crypto/
4951 F:      Documentation/devicetree/bindings/crypto/
4952 F:      arch/*/crypto/
4953 F:      crypto/
4954 F:      drivers/crypto/
4955 F:      include/crypto/
4956 F:      include/linux/crypto*
4957 F:      lib/crypto/
4958
4959 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4960 M:      Neil Horman <nhorman@tuxdriver.com>
4961 L:      linux-crypto@vger.kernel.org
4962 S:      Maintained
4963 F:      crypto/ansi_cprng.c
4964 F:      crypto/rng.c
4965
4966 CS3308 MEDIA DRIVER
4967 M:      Hans Verkuil <hverkuil@xs4all.nl>
4968 L:      linux-media@vger.kernel.org
4969 S:      Odd Fixes
4970 W:      http://linuxtv.org
4971 T:      git git://linuxtv.org/media_tree.git
4972 F:      drivers/media/i2c/cs3308.c
4973
4974 CS5535 Audio ALSA driver
4975 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4976 S:      Maintained
4977 F:      sound/pci/cs5535audio/
4978
4979 CSI DRIVERS FOR ALLWINNER V3s
4980 M:      Yong Deng <yong.deng@magewell.com>
4981 L:      linux-media@vger.kernel.org
4982 S:      Maintained
4983 T:      git git://linuxtv.org/media_tree.git
4984 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4985 F:      drivers/media/platform/sunxi/sun6i-csi/
4986
4987 CW1200 WLAN driver
4988 M:      Solomon Peachy <pizza@shaftnet.org>
4989 S:      Maintained
4990 F:      drivers/net/wireless/st/cw1200/
4991
4992 CX18 VIDEO4LINUX DRIVER
4993 M:      Andy Walls <awalls@md.metrocast.net>
4994 L:      linux-media@vger.kernel.org
4995 S:      Maintained
4996 W:      https://linuxtv.org
4997 T:      git git://linuxtv.org/media_tree.git
4998 F:      drivers/media/pci/cx18/
4999 F:      include/uapi/linux/ivtv*
5000
5001 CX2341X MPEG ENCODER HELPER MODULE
5002 M:      Hans Verkuil <hverkuil@xs4all.nl>
5003 L:      linux-media@vger.kernel.org
5004 S:      Maintained
5005 W:      https://linuxtv.org
5006 T:      git git://linuxtv.org/media_tree.git
5007 F:      drivers/media/common/cx2341x*
5008 F:      include/media/drv-intf/cx2341x.h
5009
5010 CX24120 MEDIA DRIVER
5011 M:      Jemma Denson <jdenson@gmail.com>
5012 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5013 L:      linux-media@vger.kernel.org
5014 S:      Maintained
5015 W:      https://linuxtv.org
5016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5017 F:      drivers/media/dvb-frontends/cx24120*
5018
5019 CX88 VIDEO4LINUX DRIVER
5020 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5021 L:      linux-media@vger.kernel.org
5022 S:      Odd fixes
5023 W:      https://linuxtv.org
5024 T:      git git://linuxtv.org/media_tree.git
5025 F:      Documentation/driver-api/media/drivers/cx88*
5026 F:      drivers/media/pci/cx88/
5027
5028 CXD2820R MEDIA DRIVER
5029 M:      Antti Palosaari <crope@iki.fi>
5030 L:      linux-media@vger.kernel.org
5031 S:      Maintained
5032 W:      https://linuxtv.org
5033 W:      http://palosaari.fi/linux/
5034 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5035 T:      git git://linuxtv.org/anttip/media_tree.git
5036 F:      drivers/media/dvb-frontends/cxd2820r*
5037
5038 CXGB3 ETHERNET DRIVER (CXGB3)
5039 M:      Raju Rangoju <rajur@chelsio.com>
5040 L:      netdev@vger.kernel.org
5041 S:      Supported
5042 W:      http://www.chelsio.com
5043 F:      drivers/net/ethernet/chelsio/cxgb3/
5044
5045 CXGB3 ISCSI DRIVER (CXGB3I)
5046 M:      Karen Xie <kxie@chelsio.com>
5047 L:      linux-scsi@vger.kernel.org
5048 S:      Supported
5049 W:      http://www.chelsio.com
5050 F:      drivers/scsi/cxgbi/cxgb3i
5051
5052 CXGB4 CRYPTO DRIVER (chcr)
5053 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5054 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5055 M:      Rohit Maheshwari <rohitm@chelsio.com>
5056 L:      linux-crypto@vger.kernel.org
5057 S:      Supported
5058 W:      http://www.chelsio.com
5059 F:      drivers/crypto/chelsio
5060
5061 CXGB4 INLINE CRYPTO DRIVER
5062 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5063 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5064 M:      Rohit Maheshwari <rohitm@chelsio.com>
5065 L:      netdev@vger.kernel.org
5066 S:      Supported
5067 W:      http://www.chelsio.com
5068 F:      drivers/net/ethernet/chelsio/inline_crypto/
5069
5070 CXGB4 ETHERNET DRIVER (CXGB4)
5071 M:      Raju Rangoju <rajur@chelsio.com>
5072 L:      netdev@vger.kernel.org
5073 S:      Supported
5074 W:      http://www.chelsio.com
5075 F:      drivers/net/ethernet/chelsio/cxgb4/
5076
5077 CXGB4 ISCSI DRIVER (CXGB4I)
5078 M:      Karen Xie <kxie@chelsio.com>
5079 L:      linux-scsi@vger.kernel.org
5080 S:      Supported
5081 W:      http://www.chelsio.com
5082 F:      drivers/scsi/cxgbi/cxgb4i
5083
5084 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5085 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5086 L:      linux-rdma@vger.kernel.org
5087 S:      Supported
5088 W:      http://www.openfabrics.org
5089 F:      drivers/infiniband/hw/cxgb4/
5090 F:      include/uapi/rdma/cxgb4-abi.h
5091
5092 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5093 M:      Raju Rangoju <rajur@chelsio.com>
5094 L:      netdev@vger.kernel.org
5095 S:      Supported
5096 W:      http://www.chelsio.com
5097 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5098
5099 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5100 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5101 M:      Andrew Donnellan <ajd@linux.ibm.com>
5102 L:      linuxppc-dev@lists.ozlabs.org
5103 S:      Supported
5104 F:      Documentation/ABI/testing/sysfs-class-cxl
5105 F:      Documentation/powerpc/cxl.rst
5106 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5107 F:      drivers/misc/cxl/
5108 F:      include/misc/cxl*
5109 F:      include/uapi/misc/cxl.h
5110
5111 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5112 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5113 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5114 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5115 L:      linux-scsi@vger.kernel.org
5116 S:      Supported
5117 F:      Documentation/powerpc/cxlflash.rst
5118 F:      drivers/scsi/cxlflash/
5119 F:      include/uapi/scsi/cxlflash_ioctl.h
5120
5121 CYBERPRO FB DRIVER
5122 M:      Russell King <linux@armlinux.org.uk>
5123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5124 S:      Maintained
5125 W:      http://www.armlinux.org.uk/
5126 F:      drivers/video/fbdev/cyber2000fb.*
5127
5128 CYCLADES PC300 DRIVER
5129 S:      Orphan
5130 F:      drivers/net/wan/pc300*
5131
5132 CYPRESS_FIRMWARE MEDIA DRIVER
5133 M:      Antti Palosaari <crope@iki.fi>
5134 L:      linux-media@vger.kernel.org
5135 S:      Maintained
5136 W:      https://linuxtv.org
5137 W:      http://palosaari.fi/linux/
5138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5139 T:      git git://linuxtv.org/anttip/media_tree.git
5140 F:      drivers/media/common/cypress_firmware*
5141
5142 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5143 M:      Linus Walleij <linus.walleij@linaro.org>
5144 L:      linux-input@vger.kernel.org
5145 S:      Maintained
5146 F:      drivers/input/touchscreen/cy8ctma140.c
5147
5148 CYTTSP TOUCHSCREEN DRIVER
5149 M:      Linus Walleij <linus.walleij@linaro.org>
5150 L:      linux-input@vger.kernel.org
5151 S:      Maintained
5152 F:      drivers/input/touchscreen/cyttsp*
5153
5154 D-LINK DIR-685 TOUCHKEYS DRIVER
5155 M:      Linus Walleij <linus.walleij@linaro.org>
5156 L:      linux-input@vger.kernel.org
5157 S:      Supported
5158 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5159
5160 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5161 M:      Joshua Kinard <kumba@gentoo.org>
5162 S:      Maintained
5163 F:      drivers/rtc/rtc-ds1685.c
5164 F:      include/linux/rtc/ds1685.h
5165
5166 DAMA SLAVE for AX.25
5167 M:      Joerg Reuter <jreuter@yaina.de>
5168 L:      linux-hams@vger.kernel.org
5169 S:      Maintained
5170 W:      http://yaina.de/jreuter/
5171 W:      http://www.qsl.net/dl1bke/
5172 F:      net/ax25/af_ax25.c
5173 F:      net/ax25/ax25_dev.c
5174 F:      net/ax25/ax25_ds_*
5175 F:      net/ax25/ax25_in.c
5176 F:      net/ax25/ax25_out.c
5177 F:      net/ax25/ax25_timer.c
5178 F:      net/ax25/sysctl_net_ax25.c
5179
5180 DATA ACCESS MONITOR
5181 M:      SeongJae Park <sjpark@amazon.de>
5182 L:      linux-mm@kvack.org
5183 S:      Maintained
5184 F:      Documentation/admin-guide/mm/damon/
5185 F:      Documentation/vm/damon/
5186 F:      include/linux/damon.h
5187 F:      include/trace/events/damon.h
5188 F:      mm/damon/
5189 F:      tools/testing/selftests/damon/
5190
5191 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5192 L:      netdev@vger.kernel.org
5193 S:      Orphan
5194 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5195 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5196
5197 DC390/AM53C974 SCSI driver
5198 M:      Hannes Reinecke <hare@suse.com>
5199 L:      linux-scsi@vger.kernel.org
5200 S:      Maintained
5201 F:      drivers/scsi/am53c974.c
5202
5203 DC395x SCSI driver
5204 M:      Oliver Neukum <oliver@neukum.org>
5205 M:      Ali Akcaagac <aliakc@web.de>
5206 M:      Jamie Lenehan <lenehan@twibble.org>
5207 L:      dc395x@twibble.org
5208 S:      Maintained
5209 W:      http://twibble.org/dist/dc395x/
5210 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5211 F:      Documentation/scsi/dc395x.rst
5212 F:      drivers/scsi/dc395x.*
5213
5214 DCCP PROTOCOL
5215 L:      dccp@vger.kernel.org
5216 S:      Orphan
5217 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5218 F:      include/linux/dccp.h
5219 F:      include/linux/tfrc.h
5220 F:      include/uapi/linux/dccp.h
5221 F:      net/dccp/
5222
5223 DECnet NETWORK LAYER
5224 L:      linux-decnet-user@lists.sourceforge.net
5225 S:      Orphan
5226 W:      http://linux-decnet.sourceforge.net
5227 F:      Documentation/networking/decnet.rst
5228 F:      net/decnet/
5229
5230 DECSTATION PLATFORM SUPPORT
5231 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5232 L:      linux-mips@vger.kernel.org
5233 S:      Maintained
5234 W:      http://www.linux-mips.org/wiki/DECstation
5235 F:      arch/mips/dec/
5236 F:      arch/mips/include/asm/dec/
5237 F:      arch/mips/include/asm/mach-dec/
5238
5239 DEFXX FDDI NETWORK DRIVER
5240 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5241 S:      Maintained
5242 F:      drivers/net/fddi/defxx.*
5243
5244 DEFZA FDDI NETWORK DRIVER
5245 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5246 S:      Maintained
5247 F:      drivers/net/fddi/defza.*
5248
5249 DEINTERLACE DRIVERS FOR ALLWINNER H3
5250 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5251 L:      linux-media@vger.kernel.org
5252 S:      Maintained
5253 T:      git git://linuxtv.org/media_tree.git
5254 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5255 F:      drivers/media/platform/sunxi/sun8i-di/
5256
5257 DELL LAPTOP DRIVER
5258 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5259 M:      Pali Rohár <pali@kernel.org>
5260 L:      platform-driver-x86@vger.kernel.org
5261 S:      Maintained
5262 F:      drivers/platform/x86/dell/dell-laptop.c
5263
5264 DELL LAPTOP FREEFALL DRIVER
5265 M:      Pali Rohár <pali@kernel.org>
5266 S:      Maintained
5267 F:      drivers/platform/x86/dell/dell-smo8800.c
5268
5269 DELL LAPTOP RBTN DRIVER
5270 M:      Pali Rohár <pali@kernel.org>
5271 S:      Maintained
5272 F:      drivers/platform/x86/dell/dell-rbtn.*
5273
5274 DELL LAPTOP SMM DRIVER
5275 M:      Pali Rohár <pali@kernel.org>
5276 S:      Maintained
5277 F:      drivers/hwmon/dell-smm-hwmon.c
5278 F:      include/uapi/linux/i8k.h
5279
5280 DELL REMOTE BIOS UPDATE DRIVER
5281 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5282 L:      platform-driver-x86@vger.kernel.org
5283 S:      Maintained
5284 F:      drivers/platform/x86/dell/dell_rbu.c
5285
5286 DELL SMBIOS DRIVER
5287 M:      Pali Rohár <pali@kernel.org>
5288 L:      Dell.Client.Kernel@dell.com
5289 L:      platform-driver-x86@vger.kernel.org
5290 S:      Maintained
5291 F:      drivers/platform/x86/dell/dell-smbios.*
5292
5293 DELL SMBIOS SMM DRIVER
5294 L:      Dell.Client.Kernel@dell.com
5295 L:      platform-driver-x86@vger.kernel.org
5296 S:      Maintained
5297 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5298
5299 DELL SMBIOS WMI DRIVER
5300 L:      Dell.Client.Kernel@dell.com
5301 L:      platform-driver-x86@vger.kernel.org
5302 S:      Maintained
5303 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5304 F:      tools/wmi/dell-smbios-example.c
5305
5306 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5307 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5308 L:      platform-driver-x86@vger.kernel.org
5309 S:      Maintained
5310 F:      Documentation/driver-api/dcdbas.rst
5311 F:      drivers/platform/x86/dell/dcdbas.*
5312
5313 DELL WMI DESCRIPTOR DRIVER
5314 L:      Dell.Client.Kernel@dell.com
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5317
5318 DELL WMI SYSMAN DRIVER
5319 M:      Divya Bharathi <divya.bharathi@dell.com>
5320 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5321 L:      Dell.Client.Kernel@dell.com
5322 L:      platform-driver-x86@vger.kernel.org
5323 S:      Maintained
5324 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5325 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5326
5327 DELL WMI NOTIFICATIONS DRIVER
5328 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5329 M:      Pali Rohár <pali@kernel.org>
5330 S:      Maintained
5331 F:      drivers/platform/x86/dell/dell-wmi-base.c
5332
5333 DELL WMI HARDWARE PRIVACY SUPPORT
5334 M:      Perry Yuan <Perry.Yuan@dell.com>
5335 L:      Dell.Client.Kernel@dell.com
5336 L:      platform-driver-x86@vger.kernel.org
5337 S:      Maintained
5338 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5339
5340 DELTA ST MEDIA DRIVER
5341 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5342 L:      linux-media@vger.kernel.org
5343 S:      Supported
5344 W:      https://linuxtv.org
5345 T:      git git://linuxtv.org/media_tree.git
5346 F:      drivers/media/platform/sti/delta
5347
5348 DELTA DPS920AB PSU DRIVER
5349 M:      Robert Marko <robert.marko@sartura.hr>
5350 L:      linux-hwmon@vger.kernel.org
5351 S:      Maintained
5352 F:      Documentation/hwmon/dps920ab.rst
5353 F:      drivers/hwmon/pmbus/dps920ab.c
5354
5355 DENALI NAND DRIVER
5356 L:      linux-mtd@lists.infradead.org
5357 S:      Orphan
5358 F:      drivers/mtd/nand/raw/denali*
5359
5360 DESIGNWARE EDMA CORE IP DRIVER
5361 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5362 L:      dmaengine@vger.kernel.org
5363 S:      Maintained
5364 F:      drivers/dma/dw-edma/
5365 F:      include/linux/dma/edma.h
5366
5367 DESIGNWARE XDATA IP DRIVER
5368 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5369 L:      linux-pci@vger.kernel.org
5370 S:      Maintained
5371 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5372 F:      drivers/misc/dw-xdata-pcie.c
5373
5374 DESIGNWARE USB2 DRD IP DRIVER
5375 M:      Minas Harutyunyan <hminas@synopsys.com>
5376 L:      linux-usb@vger.kernel.org
5377 S:      Maintained
5378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5379 F:      drivers/usb/dwc2/
5380
5381 DESIGNWARE USB3 DRD IP DRIVER
5382 M:      Felipe Balbi <balbi@kernel.org>
5383 L:      linux-usb@vger.kernel.org
5384 S:      Maintained
5385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5386 F:      drivers/usb/dwc3/
5387
5388 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5389 M:      Andreas Klinger <ak@it-klinger.de>
5390 L:      linux-iio@vger.kernel.org
5391 S:      Maintained
5392 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5393 F:      drivers/iio/proximity/srf*.c
5394
5395 DEVICE COREDUMP (DEV_COREDUMP)
5396 M:      Johannes Berg <johannes@sipsolutions.net>
5397 L:      linux-kernel@vger.kernel.org
5398 S:      Maintained
5399 F:      drivers/base/devcoredump.c
5400 F:      include/linux/devcoredump.h
5401
5402 DEVICE DEPENDENCY HELPER SCRIPT
5403 M:      Saravana Kannan <saravanak@google.com>
5404 L:      linux-kernel@vger.kernel.org
5405 S:      Maintained
5406 F:      scripts/dev-needs.sh
5407
5408 DEVICE DIRECT ACCESS (DAX)
5409 M:      Dan Williams <dan.j.williams@intel.com>
5410 M:      Vishal Verma <vishal.l.verma@intel.com>
5411 M:      Dave Jiang <dave.jiang@intel.com>
5412 L:      nvdimm@lists.linux.dev
5413 S:      Supported
5414 F:      drivers/dax/
5415
5416 DEVICE FREQUENCY (DEVFREQ)
5417 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5418 M:      Kyungmin Park <kyungmin.park@samsung.com>
5419 M:      Chanwoo Choi <cw00.choi@samsung.com>
5420 L:      linux-pm@vger.kernel.org
5421 S:      Maintained
5422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5423 F:      Documentation/devicetree/bindings/devfreq/
5424 F:      drivers/devfreq/
5425 F:      include/linux/devfreq.h
5426 F:      include/trace/events/devfreq.h
5427
5428 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5429 M:      Chanwoo Choi <cw00.choi@samsung.com>
5430 L:      linux-pm@vger.kernel.org
5431 S:      Supported
5432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5433 F:      Documentation/devicetree/bindings/devfreq/event/
5434 F:      drivers/devfreq/devfreq-event.c
5435 F:      drivers/devfreq/event/
5436 F:      include/dt-bindings/pmu/exynos_ppmu.h
5437 F:      include/linux/devfreq-event.h
5438
5439 DEVICE NUMBER REGISTRY
5440 M:      Torben Mathiasen <device@lanana.org>
5441 S:      Maintained
5442 W:      http://lanana.org/docs/device-list/index.html
5443
5444 DEVICE RESOURCE MANAGEMENT HELPERS
5445 M:      Hans de Goede <hdegoede@redhat.com>
5446 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5447 S:      Maintained
5448 F:      include/linux/devm-helpers.h
5449
5450 DEVICE-MAPPER  (LVM)
5451 M:      Alasdair Kergon <agk@redhat.com>
5452 M:      Mike Snitzer <snitzer@redhat.com>
5453 M:      dm-devel@redhat.com
5454 L:      dm-devel@redhat.com
5455 S:      Maintained
5456 W:      http://sources.redhat.com/dm
5457 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5459 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5460 F:      Documentation/admin-guide/device-mapper/
5461 F:      drivers/md/Kconfig
5462 F:      drivers/md/Makefile
5463 F:      drivers/md/dm*
5464 F:      drivers/md/persistent-data/
5465 F:      include/linux/device-mapper.h
5466 F:      include/linux/dm-*.h
5467 F:      include/uapi/linux/dm-*.h
5468
5469 DEVLINK
5470 M:      Jiri Pirko <jiri@nvidia.com>
5471 L:      netdev@vger.kernel.org
5472 S:      Supported
5473 F:      Documentation/networking/devlink
5474 F:      include/net/devlink.h
5475 F:      include/uapi/linux/devlink.h
5476 F:      net/core/devlink.c
5477
5478 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5479 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5480 L:      kernel@dh-electronics.com
5481 S:      Maintained
5482 F:      arch/arm/boot/dts/imx6*-dhcom-*
5483
5484 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5485 M:      Marek Vasut <marex@denx.de>
5486 L:      kernel@dh-electronics.com
5487 S:      Maintained
5488 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5489 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5490
5491 DIALOG SEMICONDUCTOR DRIVERS
5492 M:      Support Opensource <support.opensource@diasemi.com>
5493 S:      Supported
5494 W:      http://www.dialog-semiconductor.com/products
5495 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5496 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5497 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5498 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5499 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5500 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5501 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5502 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5503 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5504 F:      Documentation/hwmon/da90??.rst
5505 F:      drivers/gpio/gpio-da90??.c
5506 F:      drivers/hwmon/da90??-hwmon.c
5507 F:      drivers/iio/adc/da91??-*.c
5508 F:      drivers/input/misc/da72??.[ch]
5509 F:      drivers/input/misc/da90??_onkey.c
5510 F:      drivers/input/touchscreen/da9052_tsi.c
5511 F:      drivers/leds/leds-da90??.c
5512 F:      drivers/mfd/da903x.c
5513 F:      drivers/mfd/da90??-*.c
5514 F:      drivers/mfd/da91??-*.c
5515 F:      drivers/pinctrl/pinctrl-da90??.c
5516 F:      drivers/power/supply/da9052-battery.c
5517 F:      drivers/power/supply/da91??-*.c
5518 F:      drivers/regulator/da9???-regulator.[ch]
5519 F:      drivers/regulator/slg51000-regulator.[ch]
5520 F:      drivers/rtc/rtc-da90??.c
5521 F:      drivers/thermal/da90??-thermal.c
5522 F:      drivers/video/backlight/da90??_bl.c
5523 F:      drivers/watchdog/da90??_wdt.c
5524 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5525 F:      include/linux/mfd/da903x.h
5526 F:      include/linux/mfd/da9052/
5527 F:      include/linux/mfd/da9055/
5528 F:      include/linux/mfd/da9062/
5529 F:      include/linux/mfd/da9063/
5530 F:      include/linux/mfd/da9150/
5531 F:      include/linux/regulator/da9211.h
5532 F:      include/sound/da[79]*.h
5533 F:      sound/soc/codecs/da[79]*.[ch]
5534
5535 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5536 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5537 L:      linux-gpio@vger.kernel.org
5538 S:      Maintained
5539 F:      drivers/gpio/gpio-gpio-mm.c
5540
5541 DIOLAN U2C-12 I2C DRIVER
5542 M:      Guenter Roeck <linux@roeck-us.net>
5543 L:      linux-i2c@vger.kernel.org
5544 S:      Maintained
5545 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5546
5547 DIRECTORY NOTIFICATION (DNOTIFY)
5548 M:      Jan Kara <jack@suse.cz>
5549 R:      Amir Goldstein <amir73il@gmail.com>
5550 L:      linux-fsdevel@vger.kernel.org
5551 S:      Maintained
5552 F:      Documentation/filesystems/dnotify.rst
5553 F:      fs/notify/dnotify/
5554 F:      include/linux/dnotify.h
5555
5556 DISK GEOMETRY AND PARTITION HANDLING
5557 M:      Andries Brouwer <aeb@cwi.nl>
5558 S:      Maintained
5559 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5560 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5561 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5562
5563 DISKQUOTA
5564 M:      Jan Kara <jack@suse.com>
5565 S:      Maintained
5566 F:      Documentation/filesystems/quota.rst
5567 F:      fs/quota/
5568 F:      include/linux/quota*.h
5569 F:      include/uapi/linux/quota*.h
5570
5571 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5572 M:      Bernie Thompson <bernie@plugable.com>
5573 L:      linux-fbdev@vger.kernel.org
5574 S:      Maintained
5575 W:      http://plugable.com/category/projects/udlfb/
5576 F:      Documentation/fb/udlfb.rst
5577 F:      drivers/video/fbdev/udlfb.c
5578 F:      include/video/udlfb.h
5579
5580 DISTRIBUTED LOCK MANAGER (DLM)
5581 M:      Christine Caulfield <ccaulfie@redhat.com>
5582 M:      David Teigland <teigland@redhat.com>
5583 L:      cluster-devel@redhat.com
5584 S:      Supported
5585 W:      http://sources.redhat.com/cluster/
5586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5587 F:      fs/dlm/
5588
5589 DMA BUFFER SHARING FRAMEWORK
5590 M:      Sumit Semwal <sumit.semwal@linaro.org>
5591 M:      Christian König <christian.koenig@amd.com>
5592 L:      linux-media@vger.kernel.org
5593 L:      dri-devel@lists.freedesktop.org
5594 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5595 S:      Maintained
5596 T:      git git://anongit.freedesktop.org/drm/drm-misc
5597 F:      Documentation/driver-api/dma-buf.rst
5598 F:      drivers/dma-buf/
5599 F:      include/linux/*fence.h
5600 F:      include/linux/dma-buf*
5601 F:      include/linux/dma-resv.h
5602 K:      \bdma_(?:buf|fence|resv)\b
5603
5604 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5605 M:      Vinod Koul <vkoul@kernel.org>
5606 L:      dmaengine@vger.kernel.org
5607 S:      Maintained
5608 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5610 F:      Documentation/devicetree/bindings/dma/
5611 F:      Documentation/driver-api/dmaengine/
5612 F:      drivers/dma/
5613 F:      include/linux/dma/
5614 F:      include/linux/dmaengine.h
5615 F:      include/linux/of_dma.h
5616
5617 DMA MAPPING HELPERS
5618 M:      Christoph Hellwig <hch@lst.de>
5619 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5620 R:      Robin Murphy <robin.murphy@arm.com>
5621 L:      iommu@lists.linux-foundation.org
5622 S:      Supported
5623 W:      http://git.infradead.org/users/hch/dma-mapping.git
5624 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5625 F:      include/asm-generic/dma-mapping.h
5626 F:      include/linux/dma-direct.h
5627 F:      include/linux/dma-mapping.h
5628 F:      include/linux/dma-map-ops.h
5629 F:      kernel/dma/
5630
5631 DMA MAPPING BENCHMARK
5632 M:      Barry Song <song.bao.hua@hisilicon.com>
5633 L:      iommu@lists.linux-foundation.org
5634 F:      kernel/dma/map_benchmark.c
5635 F:      tools/testing/selftests/dma/
5636
5637 DMA-BUF HEAPS FRAMEWORK
5638 M:      Sumit Semwal <sumit.semwal@linaro.org>
5639 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5640 R:      Liam Mark <lmark@codeaurora.org>
5641 R:      Laura Abbott <labbott@redhat.com>
5642 R:      Brian Starkey <Brian.Starkey@arm.com>
5643 R:      John Stultz <john.stultz@linaro.org>
5644 L:      linux-media@vger.kernel.org
5645 L:      dri-devel@lists.freedesktop.org
5646 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5647 S:      Maintained
5648 T:      git git://anongit.freedesktop.org/drm/drm-misc
5649 F:      drivers/dma-buf/dma-heap.c
5650 F:      drivers/dma-buf/heaps/*
5651 F:      include/linux/dma-heap.h
5652 F:      include/uapi/linux/dma-heap.h
5653
5654 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5655 M:      Lukasz Luba <lukasz.luba@arm.com>
5656 L:      linux-pm@vger.kernel.org
5657 L:      linux-samsung-soc@vger.kernel.org
5658 S:      Maintained
5659 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5660 F:      drivers/memory/samsung/exynos5422-dmc.c
5661
5662 DME1737 HARDWARE MONITOR DRIVER
5663 M:      Juerg Haefliger <juergh@gmail.com>
5664 L:      linux-hwmon@vger.kernel.org
5665 S:      Maintained
5666 F:      Documentation/hwmon/dme1737.rst
5667 F:      drivers/hwmon/dme1737.c
5668
5669 DMI/SMBIOS SUPPORT
5670 M:      Jean Delvare <jdelvare@suse.com>
5671 S:      Maintained
5672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5673 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5674 F:      drivers/firmware/dmi-id.c
5675 F:      drivers/firmware/dmi_scan.c
5676 F:      include/linux/dmi.h
5677
5678 DOCUMENTATION
5679 M:      Jonathan Corbet <corbet@lwn.net>
5680 L:      linux-doc@vger.kernel.org
5681 S:      Maintained
5682 P:      Documentation/doc-guide/maintainer-profile.rst
5683 T:      git git://git.lwn.net/linux.git docs-next
5684 F:      Documentation/
5685 F:      scripts/documentation-file-ref-check
5686 F:      scripts/kernel-doc
5687 F:      scripts/sphinx-pre-install
5688 X:      Documentation/ABI/
5689 X:      Documentation/admin-guide/media/
5690 X:      Documentation/devicetree/
5691 X:      Documentation/driver-api/media/
5692 X:      Documentation/firmware-guide/acpi/
5693 X:      Documentation/i2c/
5694 X:      Documentation/power/
5695 X:      Documentation/spi/
5696 X:      Documentation/userspace-api/media/
5697
5698 DOCUMENTATION REPORTING ISSUES
5699 M:      Thorsten Leemhuis <linux@leemhuis.info>
5700 L:      linux-doc@vger.kernel.org
5701 S:      Maintained
5702 F:      Documentation/admin-guide/reporting-issues.rst
5703
5704 DOCUMENTATION SCRIPTS
5705 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5706 L:      linux-doc@vger.kernel.org
5707 S:      Maintained
5708 F:      Documentation/sphinx/parse-headers.pl
5709 F:      scripts/documentation-file-ref-check
5710 F:      scripts/sphinx-pre-install
5711
5712 DOCUMENTATION/ITALIAN
5713 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5714 L:      linux-doc@vger.kernel.org
5715 S:      Maintained
5716 F:      Documentation/translations/it_IT
5717
5718 DONGWOON DW9714 LENS VOICE COIL DRIVER
5719 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5720 L:      linux-media@vger.kernel.org
5721 S:      Maintained
5722 T:      git git://linuxtv.org/media_tree.git
5723 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5724 F:      drivers/media/i2c/dw9714.c
5725
5726 DONGWOON DW9768 LENS VOICE COIL DRIVER
5727 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5728 L:      linux-media@vger.kernel.org
5729 S:      Maintained
5730 T:      git git://linuxtv.org/media_tree.git
5731 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5732 F:      drivers/media/i2c/dw9768.c
5733
5734 DONGWOON DW9807 LENS VOICE COIL DRIVER
5735 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5736 L:      linux-media@vger.kernel.org
5737 S:      Maintained
5738 T:      git git://linuxtv.org/media_tree.git
5739 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5740 F:      drivers/media/i2c/dw9807-vcm.c
5741
5742 DOUBLETALK DRIVER
5743 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5744 L:      blinux-list@redhat.com
5745 S:      Maintained
5746 F:      drivers/char/dtlk.c
5747 F:      include/linux/dtlk.h
5748
5749 DPAA2 DATAPATH I/O (DPIO) DRIVER
5750 M:      Roy Pledge <Roy.Pledge@nxp.com>
5751 L:      linux-kernel@vger.kernel.org
5752 S:      Maintained
5753 F:      drivers/soc/fsl/dpio
5754
5755 DPAA2 ETHERNET DRIVER
5756 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5757 L:      netdev@vger.kernel.org
5758 S:      Maintained
5759 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5760 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5761 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5762 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5763 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5764 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5765 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5766 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5767 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5768
5769 DPAA2 ETHERNET SWITCH DRIVER
5770 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5771 L:      netdev@vger.kernel.org
5772 S:      Maintained
5773 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5774 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5775 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5776
5777 DPT_I2O SCSI RAID DRIVER
5778 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5779 L:      linux-scsi@vger.kernel.org
5780 S:      Maintained
5781 W:      http://www.adaptec.com/
5782 F:      drivers/scsi/dpt*
5783 F:      drivers/scsi/dpt/
5784
5785 DRBD DRIVER
5786 M:      Philipp Reisner <philipp.reisner@linbit.com>
5787 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5788 L:      drbd-dev@lists.linbit.com
5789 S:      Supported
5790 W:      http://www.drbd.org
5791 T:      git git://git.linbit.com/linux-drbd.git
5792 T:      git git://git.linbit.com/drbd-8.4.git
5793 F:      Documentation/admin-guide/blockdev/
5794 F:      drivers/block/drbd/
5795 F:      lib/lru_cache.c
5796
5797 DRIVER COMPONENT FRAMEWORK
5798 L:      dri-devel@lists.freedesktop.org
5799 F:      drivers/base/component.c
5800 F:      include/linux/component.h
5801
5802 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5803 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5804 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5805 S:      Supported
5806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5807 F:      Documentation/core-api/kobject.rst
5808 F:      drivers/base/
5809 F:      fs/debugfs/
5810 F:      fs/sysfs/
5811 F:      include/linux/debugfs.h
5812 F:      include/linux/kobj*
5813 F:      lib/kobj*
5814
5815 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5816 M:      Nishanth Menon <nm@ti.com>
5817 L:      linux-pm@vger.kernel.org
5818 S:      Maintained
5819 F:      drivers/soc/ti/smartreflex.c
5820 F:      include/linux/power/smartreflex.h
5821
5822 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5823 M:      Maxime Ripard <mripard@kernel.org>
5824 M:      Chen-Yu Tsai <wens@csie.org>
5825 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5826 L:      dri-devel@lists.freedesktop.org
5827 S:      Supported
5828 T:      git git://anongit.freedesktop.org/drm/drm-misc
5829 F:      drivers/gpu/drm/sun4i/sun8i*
5830
5831 DRM DRIVER FOR ARM PL111 CLCD
5832 M:      Emma Anholt <emma@anholt.net>
5833 S:      Supported
5834 T:      git git://anongit.freedesktop.org/drm/drm-misc
5835 F:      drivers/gpu/drm/pl111/
5836
5837 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5838 M:      Linus Walleij <linus.walleij@linaro.org>
5839 S:      Maintained
5840 T:      git git://anongit.freedesktop.org/drm/drm-misc
5841 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5842 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5843
5844 DRM DRIVER FOR ASPEED BMC GFX
5845 M:      Joel Stanley <joel@jms.id.au>
5846 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5847 S:      Supported
5848 T:      git git://anongit.freedesktop.org/drm/drm-misc
5849 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5850 F:      drivers/gpu/drm/aspeed/
5851
5852 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5853 M:      Dave Airlie <airlied@redhat.com>
5854 R:      Thomas Zimmermann <tzimmermann@suse.de>
5855 L:      dri-devel@lists.freedesktop.org
5856 S:      Supported
5857 T:      git git://anongit.freedesktop.org/drm/drm-misc
5858 F:      drivers/gpu/drm/ast/
5859
5860 DRM DRIVER FOR BOCHS VIRTUAL GPU
5861 M:      Gerd Hoffmann <kraxel@redhat.com>
5862 L:      virtualization@lists.linux-foundation.org
5863 S:      Maintained
5864 T:      git git://anongit.freedesktop.org/drm/drm-misc
5865 F:      drivers/gpu/drm/tiny/bochs.c
5866
5867 DRM DRIVER FOR BOE HIMAX8279D PANELS
5868 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5869 S:      Maintained
5870 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5871 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5872
5873 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5874 M:      Jagan Teki <jagan@amarulasolutions.com>
5875 S:      Maintained
5876 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5877 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5878
5879 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5880 M:      Linus Walleij <linus.walleij@linaro.org>
5881 S:      Maintained
5882 T:      git git://anongit.freedesktop.org/drm/drm-misc
5883 F:      drivers/gpu/drm/tve200/
5884
5885 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5886 M:      Icenowy Zheng <icenowy@aosc.io>
5887 S:      Maintained
5888 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5889 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5890
5891 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5892 M:      Jagan Teki <jagan@amarulasolutions.com>
5893 S:      Maintained
5894 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5895 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5896
5897 DRM DRIVER FOR GENERIC USB DISPLAY
5898 M:      Noralf Trønnes <noralf@tronnes.org>
5899 S:      Maintained
5900 W:      https://github.com/notro/gud/wiki
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      drivers/gpu/drm/gud/
5903 F:      include/drm/gud.h
5904
5905 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5906 M:      Hans de Goede <hdegoede@redhat.com>
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      drivers/gpu/drm/tiny/gm12u320.c
5910
5911 DRM DRIVER FOR HX8357D PANELS
5912 M:      Emma Anholt <emma@anholt.net>
5913 S:      Maintained
5914 T:      git git://anongit.freedesktop.org/drm/drm-misc
5915 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5916 F:      drivers/gpu/drm/tiny/hx8357d.c
5917
5918 DRM DRIVER FOR ILITEK ILI9225 PANELS
5919 M:      David Lechner <david@lechnology.com>
5920 S:      Maintained
5921 T:      git git://anongit.freedesktop.org/drm/drm-misc
5922 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5923 F:      drivers/gpu/drm/tiny/ili9225.c
5924
5925 DRM DRIVER FOR ILITEK ILI9486 PANELS
5926 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5927 S:      Maintained
5928 T:      git git://anongit.freedesktop.org/drm/drm-misc
5929 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5930 F:      drivers/gpu/drm/tiny/ili9486.c
5931
5932 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5933 S:      Orphan / Obsolete
5934 F:      drivers/gpu/drm/i810/
5935 F:      include/uapi/drm/i810_drm.h
5936
5937 DRM DRIVER FOR LVDS PANELS
5938 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5939 L:      dri-devel@lists.freedesktop.org
5940 T:      git git://anongit.freedesktop.org/drm/drm-misc
5941 S:      Maintained
5942 F:      drivers/gpu/drm/panel/panel-lvds.c
5943 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5944
5945 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5946 M:      Guido Günther <agx@sigxcpu.org>
5947 R:      Purism Kernel Team <kernel@puri.sm>
5948 S:      Maintained
5949 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5950 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5951
5952 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5953 S:      Orphan / Obsolete
5954 F:      drivers/gpu/drm/mga/
5955 F:      include/uapi/drm/mga_drm.h
5956
5957 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5958 M:      Dave Airlie <airlied@redhat.com>
5959 R:      Thomas Zimmermann <tzimmermann@suse.de>
5960 L:      dri-devel@lists.freedesktop.org
5961 S:      Supported
5962 T:      git git://anongit.freedesktop.org/drm/drm-misc
5963 F:      drivers/gpu/drm/mgag200/
5964
5965 DRM DRIVER FOR MI0283QT
5966 M:      Noralf Trønnes <noralf@tronnes.org>
5967 S:      Maintained
5968 T:      git git://anongit.freedesktop.org/drm/drm-misc
5969 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5970 F:      drivers/gpu/drm/tiny/mi0283qt.c
5971
5972 DRM DRIVER FOR MSM ADRENO GPU
5973 M:      Rob Clark <robdclark@gmail.com>
5974 M:      Sean Paul <sean@poorly.run>
5975 L:      linux-arm-msm@vger.kernel.org
5976 L:      dri-devel@lists.freedesktop.org
5977 L:      freedreno@lists.freedesktop.org
5978 S:      Maintained
5979 T:      git https://gitlab.freedesktop.org/drm/msm.git
5980 F:      Documentation/devicetree/bindings/display/msm/
5981 F:      drivers/gpu/drm/msm/
5982 F:      include/uapi/drm/msm_drm.h
5983
5984 DRM DRIVER FOR NOVATEK NT35510 PANELS
5985 M:      Linus Walleij <linus.walleij@linaro.org>
5986 S:      Maintained
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5989 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5990
5991 DRM DRIVER FOR NOVATEK NT36672A PANELS
5992 M:      Sumit Semwal <sumit.semwal@linaro.org>
5993 S:      Maintained
5994 T:      git git://anongit.freedesktop.org/drm/drm-misc
5995 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5996 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5997
5998 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5999 M:      Ben Skeggs <bskeggs@redhat.com>
6000 L:      dri-devel@lists.freedesktop.org
6001 L:      nouveau@lists.freedesktop.org
6002 S:      Supported
6003 T:      git git://github.com/skeggsb/linux
6004 F:      drivers/gpu/drm/nouveau/
6005 F:      include/uapi/drm/nouveau_drm.h
6006
6007 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6008 M:      Stefan Mavrodiev <stefan@olimex.com>
6009 S:      Maintained
6010 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6011 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6012
6013 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6014 M:      Noralf Trønnes <noralf@tronnes.org>
6015 S:      Maintained
6016 T:      git git://anongit.freedesktop.org/drm/drm-misc
6017 F:      Documentation/devicetree/bindings/display/repaper.txt
6018 F:      drivers/gpu/drm/tiny/repaper.c
6019
6020 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6021 M:      Dave Airlie <airlied@redhat.com>
6022 M:      Gerd Hoffmann <kraxel@redhat.com>
6023 L:      virtualization@lists.linux-foundation.org
6024 S:      Obsolete
6025 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6026 T:      git git://anongit.freedesktop.org/drm/drm-misc
6027 F:      drivers/gpu/drm/tiny/cirrus.c
6028
6029 DRM DRIVER FOR QXL VIRTUAL GPU
6030 M:      Dave Airlie <airlied@redhat.com>
6031 M:      Gerd Hoffmann <kraxel@redhat.com>
6032 L:      virtualization@lists.linux-foundation.org
6033 L:      spice-devel@lists.freedesktop.org
6034 S:      Maintained
6035 T:      git git://anongit.freedesktop.org/drm/drm-misc
6036 F:      drivers/gpu/drm/qxl/
6037 F:      include/uapi/drm/qxl_drm.h
6038
6039 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6040 S:      Orphan / Obsolete
6041 F:      drivers/gpu/drm/r128/
6042 F:      include/uapi/drm/r128_drm.h
6043
6044 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6045 M:      Robert Chiras <robert.chiras@nxp.com>
6046 S:      Maintained
6047 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6048 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6049
6050 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6051 M:      Linus Walleij <linus.walleij@linaro.org>
6052 S:      Maintained
6053 T:      git git://anongit.freedesktop.org/drm/drm-misc
6054 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6055 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6056
6057 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6058 M:      Markuss Broks <markuss.broks@gmail.com>
6059 S:      Maintained
6060 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6061 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6062
6063 DRM DRIVER FOR SITRONIX ST7703 PANELS
6064 M:      Guido Günther <agx@sigxcpu.org>
6065 R:      Purism Kernel Team <kernel@puri.sm>
6066 R:      Ondrej Jirman <megous@megous.com>
6067 S:      Maintained
6068 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6069 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6070
6071 DRM DRIVER FOR SAVAGE VIDEO CARDS
6072 S:      Orphan / Obsolete
6073 F:      drivers/gpu/drm/savage/
6074 F:      include/uapi/drm/savage_drm.h
6075
6076 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6077 M:      Thomas Zimmermann <tzimmermann@suse.de>
6078 L:      dri-devel@lists.freedesktop.org
6079 S:      Maintained
6080 T:      git git://anongit.freedesktop.org/drm/drm-misc
6081 F:      drivers/gpu/drm/tiny/simpledrm.c
6082
6083 DRM DRIVER FOR SIS VIDEO CARDS
6084 S:      Orphan / Obsolete
6085 F:      drivers/gpu/drm/sis/
6086 F:      include/uapi/drm/sis_drm.h
6087
6088 DRM DRIVER FOR SITRONIX ST7586 PANELS
6089 M:      David Lechner <david@lechnology.com>
6090 S:      Maintained
6091 T:      git git://anongit.freedesktop.org/drm/drm-misc
6092 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6093 F:      drivers/gpu/drm/tiny/st7586.c
6094
6095 DRM DRIVER FOR SITRONIX ST7701 PANELS
6096 M:      Jagan Teki <jagan@amarulasolutions.com>
6097 S:      Maintained
6098 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6099 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6100
6101 DRM DRIVER FOR SITRONIX ST7735R PANELS
6102 M:      David Lechner <david@lechnology.com>
6103 S:      Maintained
6104 T:      git git://anongit.freedesktop.org/drm/drm-misc
6105 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6106 F:      drivers/gpu/drm/tiny/st7735r.c
6107
6108 DRM DRIVER FOR SONY ACX424AKP PANELS
6109 M:      Linus Walleij <linus.walleij@linaro.org>
6110 S:      Maintained
6111 T:      git git://anongit.freedesktop.org/drm/drm-misc
6112 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6113
6114 DRM DRIVER FOR ST-ERICSSON MCDE
6115 M:      Linus Walleij <linus.walleij@linaro.org>
6116 S:      Maintained
6117 T:      git git://anongit.freedesktop.org/drm/drm-misc
6118 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6119 F:      drivers/gpu/drm/mcde/
6120
6121 DRM DRIVER FOR TDFX VIDEO CARDS
6122 S:      Orphan / Obsolete
6123 F:      drivers/gpu/drm/tdfx/
6124
6125 DRM DRIVER FOR TPO TPG110 PANELS
6126 M:      Linus Walleij <linus.walleij@linaro.org>
6127 S:      Maintained
6128 T:      git git://anongit.freedesktop.org/drm/drm-misc
6129 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6130 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6131
6132 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6133 M:      Dave Airlie <airlied@redhat.com>
6134 R:      Sean Paul <sean@poorly.run>
6135 R:      Thomas Zimmermann <tzimmermann@suse.de>
6136 L:      dri-devel@lists.freedesktop.org
6137 S:      Supported
6138 T:      git git://anongit.freedesktop.org/drm/drm-misc
6139 F:      drivers/gpu/drm/udl/
6140
6141 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6142 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6143 M:      Melissa Wen <melissa.srw@gmail.com>
6144 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6145 R:      Daniel Vetter <daniel@ffwll.ch>
6146 L:      dri-devel@lists.freedesktop.org
6147 S:      Maintained
6148 T:      git git://anongit.freedesktop.org/drm/drm-misc
6149 F:      Documentation/gpu/vkms.rst
6150 F:      drivers/gpu/drm/vkms/
6151
6152 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6153 M:      Hans de Goede <hdegoede@redhat.com>
6154 L:      dri-devel@lists.freedesktop.org
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      drivers/gpu/drm/vboxvideo/
6158
6159 DRM DRIVER FOR VMWARE VIRTUAL GPU
6160 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6161 M:      Zack Rusin <zackr@vmware.com>
6162 L:      dri-devel@lists.freedesktop.org
6163 S:      Supported
6164 T:      git git://anongit.freedesktop.org/drm/drm-misc
6165 F:      drivers/gpu/drm/vmwgfx/
6166 F:      include/uapi/drm/vmwgfx_drm.h
6167
6168 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6169 M:      Linus Walleij <linus.walleij@linaro.org>
6170 S:      Maintained
6171 T:      git git://anongit.freedesktop.org/drm/drm-misc
6172 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6173 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6174
6175 DRM DRIVERS
6176 M:      David Airlie <airlied@linux.ie>
6177 M:      Daniel Vetter <daniel@ffwll.ch>
6178 L:      dri-devel@lists.freedesktop.org
6179 S:      Maintained
6180 B:      https://gitlab.freedesktop.org/drm
6181 C:      irc://irc.oftc.net/dri-devel
6182 T:      git git://anongit.freedesktop.org/drm/drm
6183 F:      Documentation/devicetree/bindings/display/
6184 F:      Documentation/devicetree/bindings/gpu/
6185 F:      Documentation/gpu/
6186 F:      drivers/gpu/
6187 F:      include/drm/
6188 F:      include/linux/vga*
6189 F:      include/uapi/drm/
6190
6191 DRM DRIVERS AND MISC GPU PATCHES
6192 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6193 M:      Maxime Ripard <mripard@kernel.org>
6194 M:      Thomas Zimmermann <tzimmermann@suse.de>
6195 S:      Maintained
6196 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6197 T:      git git://anongit.freedesktop.org/drm/drm-misc
6198 F:      Documentation/gpu/
6199 F:      drivers/gpu/drm/*
6200 F:      drivers/gpu/vga/
6201 F:      include/drm/drm*
6202 F:      include/linux/vga*
6203 F:      include/uapi/drm/drm*
6204
6205 DRM DRIVERS FOR ALLWINNER A10
6206 M:      Maxime Ripard <mripard@kernel.org>
6207 M:      Chen-Yu Tsai <wens@csie.org>
6208 L:      dri-devel@lists.freedesktop.org
6209 S:      Supported
6210 T:      git git://anongit.freedesktop.org/drm/drm-misc
6211 F:      Documentation/devicetree/bindings/display/allwinner*
6212 F:      drivers/gpu/drm/sun4i/
6213
6214 DRM DRIVERS FOR AMLOGIC SOCS
6215 M:      Neil Armstrong <narmstrong@baylibre.com>
6216 L:      dri-devel@lists.freedesktop.org
6217 L:      linux-amlogic@lists.infradead.org
6218 S:      Supported
6219 W:      http://linux-meson.com/
6220 T:      git git://anongit.freedesktop.org/drm/drm-misc
6221 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6222 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6223 F:      Documentation/gpu/meson.rst
6224 F:      drivers/gpu/drm/meson/
6225
6226 DRM DRIVERS FOR ATMEL HLCDC
6227 M:      Sam Ravnborg <sam@ravnborg.org>
6228 M:      Boris Brezillon <bbrezillon@kernel.org>
6229 L:      dri-devel@lists.freedesktop.org
6230 S:      Supported
6231 T:      git git://anongit.freedesktop.org/drm/drm-misc
6232 F:      Documentation/devicetree/bindings/display/atmel/
6233 F:      drivers/gpu/drm/atmel-hlcdc/
6234
6235 DRM DRIVERS FOR BRIDGE CHIPS
6236 M:      Andrzej Hajda <a.hajda@samsung.com>
6237 M:      Neil Armstrong <narmstrong@baylibre.com>
6238 M:      Robert Foss <robert.foss@linaro.org>
6239 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6240 R:      Jonas Karlman <jonas@kwiboo.se>
6241 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6242 S:      Maintained
6243 T:      git git://anongit.freedesktop.org/drm/drm-misc
6244 F:      drivers/gpu/drm/bridge/
6245
6246 DRM DRIVERS FOR EXYNOS
6247 M:      Inki Dae <inki.dae@samsung.com>
6248 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6249 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6250 M:      Kyungmin Park <kyungmin.park@samsung.com>
6251 L:      dri-devel@lists.freedesktop.org
6252 S:      Supported
6253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6254 F:      Documentation/devicetree/bindings/display/exynos/
6255 F:      drivers/gpu/drm/exynos/
6256 F:      include/uapi/drm/exynos_drm.h
6257
6258 DRM DRIVERS FOR FREESCALE DCU
6259 M:      Stefan Agner <stefan@agner.ch>
6260 M:      Alison Wang <alison.wang@nxp.com>
6261 L:      dri-devel@lists.freedesktop.org
6262 S:      Supported
6263 T:      git git://anongit.freedesktop.org/drm/drm-misc
6264 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6265 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6266 F:      drivers/gpu/drm/fsl-dcu/
6267
6268 DRM DRIVERS FOR FREESCALE IMX
6269 M:      Philipp Zabel <p.zabel@pengutronix.de>
6270 L:      dri-devel@lists.freedesktop.org
6271 S:      Maintained
6272 F:      Documentation/devicetree/bindings/display/imx/
6273 F:      drivers/gpu/drm/imx/
6274 F:      drivers/gpu/ipu-v3/
6275
6276 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6277 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6278 L:      dri-devel@lists.freedesktop.org
6279 S:      Maintained
6280 T:      git git://github.com/patjak/drm-gma500
6281 F:      drivers/gpu/drm/gma500/
6282
6283 DRM DRIVERS FOR HISILICON
6284 M:      Xinliang Liu <xinliang.liu@linaro.org>
6285 M:      Tian Tao  <tiantao6@hisilicon.com>
6286 R:      John Stultz <john.stultz@linaro.org>
6287 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6288 R:      Chen Feng <puck.chen@hisilicon.com>
6289 L:      dri-devel@lists.freedesktop.org
6290 S:      Maintained
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      Documentation/devicetree/bindings/display/hisilicon/
6293 F:      drivers/gpu/drm/hisilicon/
6294
6295 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6296 M:      Deepak Rawat <drawat.floss@gmail.com>
6297 L:      linux-hyperv@vger.kernel.org
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 T:      git git://anongit.freedesktop.org/drm/drm-misc
6301 F:      drivers/gpu/drm/hyperv
6302
6303 DRM DRIVERS FOR LIMA
6304 M:      Qiang Yu <yuq825@gmail.com>
6305 L:      dri-devel@lists.freedesktop.org
6306 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6307 S:      Maintained
6308 T:      git git://anongit.freedesktop.org/drm/drm-misc
6309 F:      drivers/gpu/drm/lima/
6310 F:      include/uapi/drm/lima_drm.h
6311
6312 DRM DRIVERS FOR MEDIATEK
6313 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6314 M:      Philipp Zabel <p.zabel@pengutronix.de>
6315 L:      dri-devel@lists.freedesktop.org
6316 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6317 S:      Supported
6318 F:      Documentation/devicetree/bindings/display/mediatek/
6319 F:      drivers/gpu/drm/mediatek/
6320 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6321 F:      drivers/phy/mediatek/phy-mtk-mipi*
6322
6323 DRM DRIVERS FOR NVIDIA TEGRA
6324 M:      Thierry Reding <thierry.reding@gmail.com>
6325 L:      dri-devel@lists.freedesktop.org
6326 L:      linux-tegra@vger.kernel.org
6327 S:      Supported
6328 T:      git git://anongit.freedesktop.org/tegra/linux.git
6329 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6330 F:      drivers/gpu/drm/tegra/
6331 F:      drivers/gpu/host1x/
6332 F:      include/linux/host1x.h
6333 F:      include/uapi/drm/tegra_drm.h
6334
6335 DRM DRIVERS FOR RENESAS
6336 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6337 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6338 L:      dri-devel@lists.freedesktop.org
6339 L:      linux-renesas-soc@vger.kernel.org
6340 S:      Supported
6341 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6342 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6343 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6344 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6345 F:      drivers/gpu/drm/rcar-du/
6346 F:      drivers/gpu/drm/shmobile/
6347 F:      include/linux/platform_data/shmob_drm.h
6348
6349 DRM DRIVERS FOR ROCKCHIP
6350 M:      Sandy Huang <hjc@rock-chips.com>
6351 M:      Heiko Stübner <heiko@sntech.de>
6352 L:      dri-devel@lists.freedesktop.org
6353 S:      Maintained
6354 T:      git git://anongit.freedesktop.org/drm/drm-misc
6355 F:      Documentation/devicetree/bindings/display/rockchip/
6356 F:      drivers/gpu/drm/rockchip/
6357
6358 DRM DRIVERS FOR STI
6359 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6360 L:      dri-devel@lists.freedesktop.org
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6364 F:      drivers/gpu/drm/sti
6365
6366 DRM DRIVERS FOR STM
6367 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6368 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6369 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6370 L:      dri-devel@lists.freedesktop.org
6371 S:      Maintained
6372 T:      git git://anongit.freedesktop.org/drm/drm-misc
6373 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6374 F:      drivers/gpu/drm/stm
6375
6376 DRM DRIVERS FOR TI KEYSTONE
6377 M:      Jyri Sarha <jyri.sarha@iki.fi>
6378 M:      Tomi Valkeinen <tomba@kernel.org>
6379 L:      dri-devel@lists.freedesktop.org
6380 S:      Maintained
6381 T:      git git://anongit.freedesktop.org/drm/drm-misc
6382 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6383 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6384 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6385 F:      drivers/gpu/drm/tidss/
6386
6387 DRM DRIVERS FOR TI LCDC
6388 M:      Jyri Sarha <jyri.sarha@iki.fi>
6389 R:      Tomi Valkeinen <tomba@kernel.org>
6390 L:      dri-devel@lists.freedesktop.org
6391 S:      Maintained
6392 F:      Documentation/devicetree/bindings/display/tilcdc/
6393 F:      drivers/gpu/drm/tilcdc/
6394
6395 DRM DRIVERS FOR TI OMAP
6396 M:      Tomi Valkeinen <tomba@kernel.org>
6397 L:      dri-devel@lists.freedesktop.org
6398 S:      Maintained
6399 F:      Documentation/devicetree/bindings/display/ti/
6400 F:      drivers/gpu/drm/omapdrm/
6401
6402 DRM DRIVERS FOR V3D
6403 M:      Emma Anholt <emma@anholt.net>
6404 S:      Supported
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6407 F:      drivers/gpu/drm/v3d/
6408 F:      include/uapi/drm/v3d_drm.h
6409
6410 DRM DRIVERS FOR VC4
6411 M:      Emma Anholt <emma@anholt.net>
6412 M:      Maxime Ripard <mripard@kernel.org>
6413 S:      Supported
6414 T:      git git://github.com/anholt/linux
6415 T:      git git://anongit.freedesktop.org/drm/drm-misc
6416 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6417 F:      drivers/gpu/drm/vc4/
6418 F:      include/uapi/drm/vc4_drm.h
6419
6420 DRM DRIVERS FOR VIVANTE GPU IP
6421 M:      Lucas Stach <l.stach@pengutronix.de>
6422 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6423 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6424 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6425 L:      dri-devel@lists.freedesktop.org
6426 S:      Maintained
6427 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6428 F:      drivers/gpu/drm/etnaviv/
6429 F:      include/uapi/drm/etnaviv_drm.h
6430
6431 DRM DRIVERS FOR XEN
6432 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6433 L:      dri-devel@lists.freedesktop.org
6434 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6435 S:      Supported
6436 T:      git git://anongit.freedesktop.org/drm/drm-misc
6437 F:      Documentation/gpu/xen-front.rst
6438 F:      drivers/gpu/drm/xen/
6439
6440 DRM DRIVERS FOR XILINX
6441 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6442 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6443 L:      dri-devel@lists.freedesktop.org
6444 S:      Maintained
6445 T:      git git://anongit.freedesktop.org/drm/drm-misc
6446 F:      Documentation/devicetree/bindings/display/xlnx/
6447 F:      drivers/gpu/drm/xlnx/
6448
6449 DRM PANEL DRIVERS
6450 M:      Thierry Reding <thierry.reding@gmail.com>
6451 R:      Sam Ravnborg <sam@ravnborg.org>
6452 L:      dri-devel@lists.freedesktop.org
6453 S:      Maintained
6454 T:      git git://anongit.freedesktop.org/drm/drm-misc
6455 F:      Documentation/devicetree/bindings/display/panel/
6456 F:      drivers/gpu/drm/drm_panel.c
6457 F:      drivers/gpu/drm/panel/
6458 F:      include/drm/drm_panel.h
6459
6460 DRM TTM SUBSYSTEM
6461 M:      Christian Koenig <christian.koenig@amd.com>
6462 M:      Huang Rui <ray.huang@amd.com>
6463 L:      dri-devel@lists.freedesktop.org
6464 S:      Maintained
6465 T:      git git://anongit.freedesktop.org/drm/drm-misc
6466 F:      drivers/gpu/drm/ttm/
6467 F:      include/drm/ttm/
6468
6469 DRM GPU SCHEDULER
6470 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://anongit.freedesktop.org/drm/drm-misc
6474 F:      drivers/gpu/drm/scheduler/
6475 F:      include/drm/gpu_scheduler.h
6476
6477 DSBR100 USB FM RADIO DRIVER
6478 M:      Alexey Klimov <klimov.linux@gmail.com>
6479 L:      linux-media@vger.kernel.org
6480 S:      Maintained
6481 T:      git git://linuxtv.org/media_tree.git
6482 F:      drivers/media/radio/dsbr100.c
6483
6484 DT3155 MEDIA DRIVER
6485 M:      Hans Verkuil <hverkuil@xs4all.nl>
6486 L:      linux-media@vger.kernel.org
6487 S:      Odd Fixes
6488 W:      https://linuxtv.org
6489 T:      git git://linuxtv.org/media_tree.git
6490 F:      drivers/media/pci/dt3155/
6491
6492 DVB_USB_AF9015 MEDIA DRIVER
6493 M:      Antti Palosaari <crope@iki.fi>
6494 L:      linux-media@vger.kernel.org
6495 S:      Maintained
6496 W:      https://linuxtv.org
6497 W:      http://palosaari.fi/linux/
6498 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6499 T:      git git://linuxtv.org/anttip/media_tree.git
6500 F:      drivers/media/usb/dvb-usb-v2/af9015*
6501
6502 DVB_USB_AF9035 MEDIA DRIVER
6503 M:      Antti Palosaari <crope@iki.fi>
6504 L:      linux-media@vger.kernel.org
6505 S:      Maintained
6506 W:      https://linuxtv.org
6507 W:      http://palosaari.fi/linux/
6508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6509 T:      git git://linuxtv.org/anttip/media_tree.git
6510 F:      drivers/media/usb/dvb-usb-v2/af9035*
6511
6512 DVB_USB_ANYSEE MEDIA DRIVER
6513 M:      Antti Palosaari <crope@iki.fi>
6514 L:      linux-media@vger.kernel.org
6515 S:      Maintained
6516 W:      https://linuxtv.org
6517 W:      http://palosaari.fi/linux/
6518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6519 T:      git git://linuxtv.org/anttip/media_tree.git
6520 F:      drivers/media/usb/dvb-usb-v2/anysee*
6521
6522 DVB_USB_AU6610 MEDIA DRIVER
6523 M:      Antti Palosaari <crope@iki.fi>
6524 L:      linux-media@vger.kernel.org
6525 S:      Maintained
6526 W:      https://linuxtv.org
6527 W:      http://palosaari.fi/linux/
6528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6529 T:      git git://linuxtv.org/anttip/media_tree.git
6530 F:      drivers/media/usb/dvb-usb-v2/au6610*
6531
6532 DVB_USB_CE6230 MEDIA DRIVER
6533 M:      Antti Palosaari <crope@iki.fi>
6534 L:      linux-media@vger.kernel.org
6535 S:      Maintained
6536 W:      https://linuxtv.org
6537 W:      http://palosaari.fi/linux/
6538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6539 T:      git git://linuxtv.org/anttip/media_tree.git
6540 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6541
6542 DVB_USB_CXUSB MEDIA DRIVER
6543 M:      Michael Krufky <mkrufky@linuxtv.org>
6544 L:      linux-media@vger.kernel.org
6545 S:      Maintained
6546 W:      https://linuxtv.org
6547 W:      http://github.com/mkrufky
6548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6549 T:      git git://linuxtv.org/media_tree.git
6550 F:      drivers/media/usb/dvb-usb/cxusb*
6551
6552 DVB_USB_EC168 MEDIA DRIVER
6553 M:      Antti Palosaari <crope@iki.fi>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 W:      https://linuxtv.org
6557 W:      http://palosaari.fi/linux/
6558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6559 T:      git git://linuxtv.org/anttip/media_tree.git
6560 F:      drivers/media/usb/dvb-usb-v2/ec168*
6561
6562 DVB_USB_GL861 MEDIA DRIVER
6563 M:      Antti Palosaari <crope@iki.fi>
6564 L:      linux-media@vger.kernel.org
6565 S:      Maintained
6566 W:      https://linuxtv.org
6567 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6568 T:      git git://linuxtv.org/anttip/media_tree.git
6569 F:      drivers/media/usb/dvb-usb-v2/gl861*
6570
6571 DVB_USB_MXL111SF MEDIA DRIVER
6572 M:      Michael Krufky <mkrufky@linuxtv.org>
6573 L:      linux-media@vger.kernel.org
6574 S:      Maintained
6575 W:      https://linuxtv.org
6576 W:      http://github.com/mkrufky
6577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6578 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6579 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6580
6581 DVB_USB_RTL28XXU MEDIA DRIVER
6582 M:      Antti Palosaari <crope@iki.fi>
6583 L:      linux-media@vger.kernel.org
6584 S:      Maintained
6585 W:      https://linuxtv.org
6586 W:      http://palosaari.fi/linux/
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 T:      git git://linuxtv.org/anttip/media_tree.git
6589 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6590
6591 DVB_USB_V2 MEDIA DRIVER
6592 M:      Antti Palosaari <crope@iki.fi>
6593 L:      linux-media@vger.kernel.org
6594 S:      Maintained
6595 W:      https://linuxtv.org
6596 W:      http://palosaari.fi/linux/
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/anttip/media_tree.git
6599 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6600 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6601
6602 DYNAMIC DEBUG
6603 M:      Jason Baron <jbaron@akamai.com>
6604 S:      Maintained
6605 F:      include/linux/dynamic_debug.h
6606 F:      lib/dynamic_debug.c
6607
6608 DYNAMIC INTERRUPT MODERATION
6609 M:      Tal Gilboa <talgi@nvidia.com>
6610 S:      Maintained
6611 F:      Documentation/networking/net_dim.rst
6612 F:      include/linux/dim.h
6613 F:      lib/dim/
6614
6615 DZ DECSTATION DZ11 SERIAL DRIVER
6616 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6617 S:      Maintained
6618 F:      drivers/tty/serial/dz.*
6619
6620 E3X0 POWER BUTTON DRIVER
6621 M:      Moritz Fischer <moritz.fischer@ettus.com>
6622 L:      usrp-users@lists.ettus.com
6623 S:      Supported
6624 W:      http://www.ettus.com
6625 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6626 F:      drivers/input/misc/e3x0-button.c
6627
6628 E4000 MEDIA DRIVER
6629 M:      Antti Palosaari <crope@iki.fi>
6630 L:      linux-media@vger.kernel.org
6631 S:      Maintained
6632 W:      https://linuxtv.org
6633 W:      http://palosaari.fi/linux/
6634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6635 T:      git git://linuxtv.org/anttip/media_tree.git
6636 F:      drivers/media/tuners/e4000*
6637
6638 EARTH_PT1 MEDIA DRIVER
6639 M:      Akihiro Tsukada <tskd08@gmail.com>
6640 L:      linux-media@vger.kernel.org
6641 S:      Odd Fixes
6642 F:      drivers/media/pci/pt1/
6643
6644 EARTH_PT3 MEDIA DRIVER
6645 M:      Akihiro Tsukada <tskd08@gmail.com>
6646 L:      linux-media@vger.kernel.org
6647 S:      Odd Fixes
6648 F:      drivers/media/pci/pt3/
6649
6650 EC100 MEDIA DRIVER
6651 M:      Antti Palosaari <crope@iki.fi>
6652 L:      linux-media@vger.kernel.org
6653 S:      Maintained
6654 W:      https://linuxtv.org
6655 W:      http://palosaari.fi/linux/
6656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6657 T:      git git://linuxtv.org/anttip/media_tree.git
6658 F:      drivers/media/dvb-frontends/ec100*
6659
6660 ECRYPT FILE SYSTEM
6661 M:      Tyler Hicks <code@tyhicks.com>
6662 L:      ecryptfs@vger.kernel.org
6663 S:      Odd Fixes
6664 W:      http://ecryptfs.org
6665 W:      https://launchpad.net/ecryptfs
6666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6667 F:      Documentation/filesystems/ecryptfs.rst
6668 F:      fs/ecryptfs/
6669
6670 EDAC-AMD64
6671 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6672 L:      linux-edac@vger.kernel.org
6673 S:      Supported
6674 F:      drivers/edac/amd64_edac*
6675 F:      drivers/edac/mce_amd*
6676
6677 EDAC-ARMADA
6678 M:      Jan Luebbe <jlu@pengutronix.de>
6679 L:      linux-edac@vger.kernel.org
6680 S:      Maintained
6681 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6682 F:      drivers/edac/armada_xp_*
6683
6684 EDAC-AST2500
6685 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6686 S:      Supported
6687 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6688 F:      drivers/edac/aspeed_edac.c
6689
6690 EDAC-BLUEFIELD
6691 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6692 S:      Supported
6693 F:      drivers/edac/bluefield_edac.c
6694
6695 EDAC-CALXEDA
6696 M:      Andre Przywara <andre.przywara@arm.com>
6697 L:      linux-edac@vger.kernel.org
6698 S:      Maintained
6699 F:      drivers/edac/highbank*
6700
6701 EDAC-CAVIUM OCTEON
6702 M:      Ralf Baechle <ralf@linux-mips.org>
6703 L:      linux-edac@vger.kernel.org
6704 L:      linux-mips@vger.kernel.org
6705 S:      Supported
6706 F:      drivers/edac/octeon_edac*
6707
6708 EDAC-CAVIUM THUNDERX
6709 M:      Robert Richter <rric@kernel.org>
6710 L:      linux-edac@vger.kernel.org
6711 S:      Odd Fixes
6712 F:      drivers/edac/thunderx_edac*
6713
6714 EDAC-CORE
6715 M:      Borislav Petkov <bp@alien8.de>
6716 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6717 M:      Tony Luck <tony.luck@intel.com>
6718 R:      James Morse <james.morse@arm.com>
6719 R:      Robert Richter <rric@kernel.org>
6720 L:      linux-edac@vger.kernel.org
6721 S:      Supported
6722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6723 F:      Documentation/admin-guide/ras.rst
6724 F:      Documentation/driver-api/edac.rst
6725 F:      drivers/edac/
6726 F:      include/linux/edac.h
6727
6728 EDAC-DMC520
6729 M:      Lei Wang <lewan@microsoft.com>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Supported
6732 F:      drivers/edac/dmc520_edac.c
6733
6734 EDAC-E752X
6735 M:      Mark Gross <markgross@kernel.org>
6736 L:      linux-edac@vger.kernel.org
6737 S:      Maintained
6738 F:      drivers/edac/e752x_edac.c
6739
6740 EDAC-E7XXX
6741 L:      linux-edac@vger.kernel.org
6742 S:      Maintained
6743 F:      drivers/edac/e7xxx_edac.c
6744
6745 EDAC-FSL_DDR
6746 M:      York Sun <york.sun@nxp.com>
6747 L:      linux-edac@vger.kernel.org
6748 S:      Maintained
6749 F:      drivers/edac/fsl_ddr_edac.*
6750
6751 EDAC-GHES
6752 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6753 L:      linux-edac@vger.kernel.org
6754 S:      Maintained
6755 F:      drivers/edac/ghes_edac.c
6756
6757 EDAC-I10NM
6758 M:      Tony Luck <tony.luck@intel.com>
6759 L:      linux-edac@vger.kernel.org
6760 S:      Maintained
6761 F:      drivers/edac/i10nm_base.c
6762
6763 EDAC-I3000
6764 L:      linux-edac@vger.kernel.org
6765 S:      Orphan
6766 F:      drivers/edac/i3000_edac.c
6767
6768 EDAC-I5000
6769 L:      linux-edac@vger.kernel.org
6770 S:      Maintained
6771 F:      drivers/edac/i5000_edac.c
6772
6773 EDAC-I5400
6774 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6775 L:      linux-edac@vger.kernel.org
6776 S:      Maintained
6777 F:      drivers/edac/i5400_edac.c
6778
6779 EDAC-I7300
6780 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6781 L:      linux-edac@vger.kernel.org
6782 S:      Maintained
6783 F:      drivers/edac/i7300_edac.c
6784
6785 EDAC-I7CORE
6786 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6787 L:      linux-edac@vger.kernel.org
6788 S:      Maintained
6789 F:      drivers/edac/i7core_edac.c
6790
6791 EDAC-I82443BXGX
6792 M:      Tim Small <tim@buttersideup.com>
6793 L:      linux-edac@vger.kernel.org
6794 S:      Maintained
6795 F:      drivers/edac/i82443bxgx_edac.c
6796
6797 EDAC-I82975X
6798 M:      "Arvind R." <arvino55@gmail.com>
6799 L:      linux-edac@vger.kernel.org
6800 S:      Maintained
6801 F:      drivers/edac/i82975x_edac.c
6802
6803 EDAC-IE31200
6804 M:      Jason Baron <jbaron@akamai.com>
6805 L:      linux-edac@vger.kernel.org
6806 S:      Maintained
6807 F:      drivers/edac/ie31200_edac.c
6808
6809 EDAC-IGEN6
6810 M:      Tony Luck <tony.luck@intel.com>
6811 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6812 L:      linux-edac@vger.kernel.org
6813 S:      Maintained
6814 F:      drivers/edac/igen6_edac.c
6815
6816 EDAC-MPC85XX
6817 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6818 L:      linux-edac@vger.kernel.org
6819 S:      Maintained
6820 F:      drivers/edac/mpc85xx_edac.[ch]
6821
6822 EDAC-PASEMI
6823 M:      Egor Martovetsky <egor@pasemi.com>
6824 L:      linux-edac@vger.kernel.org
6825 S:      Maintained
6826 F:      drivers/edac/pasemi_edac.c
6827
6828 EDAC-PND2
6829 M:      Tony Luck <tony.luck@intel.com>
6830 L:      linux-edac@vger.kernel.org
6831 S:      Maintained
6832 F:      drivers/edac/pnd2_edac.[ch]
6833
6834 EDAC-QCOM
6835 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6836 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6837 L:      linux-arm-msm@vger.kernel.org
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/qcom_edac.c
6841
6842 EDAC-R82600
6843 M:      Tim Small <tim@buttersideup.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/r82600_edac.c
6847
6848 EDAC-SBRIDGE
6849 M:      Tony Luck <tony.luck@intel.com>
6850 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6851 L:      linux-edac@vger.kernel.org
6852 S:      Maintained
6853 F:      drivers/edac/sb_edac.c
6854
6855 EDAC-SIFIVE
6856 M:      Yash Shah <yash.shah@sifive.com>
6857 L:      linux-edac@vger.kernel.org
6858 S:      Supported
6859 F:      drivers/edac/sifive_edac.c
6860
6861 EDAC-SKYLAKE
6862 M:      Tony Luck <tony.luck@intel.com>
6863 L:      linux-edac@vger.kernel.org
6864 S:      Maintained
6865 F:      drivers/edac/skx_*.[ch]
6866
6867 EDAC-TI
6868 M:      Tero Kristo <kristo@kernel.org>
6869 L:      linux-edac@vger.kernel.org
6870 S:      Odd Fixes
6871 F:      drivers/edac/ti_edac.c
6872
6873 EDIROL UA-101/UA-1000 DRIVER
6874 M:      Clemens Ladisch <clemens@ladisch.de>
6875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6876 S:      Maintained
6877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6878 F:      sound/usb/misc/ua101.c
6879
6880 EFI TEST DRIVER
6881 M:      Ivan Hu <ivan.hu@canonical.com>
6882 M:      Ard Biesheuvel <ardb@kernel.org>
6883 L:      linux-efi@vger.kernel.org
6884 S:      Maintained
6885 F:      drivers/firmware/efi/test/
6886
6887 EFI VARIABLE FILESYSTEM
6888 M:      Matthew Garrett <matthew.garrett@nebula.com>
6889 M:      Jeremy Kerr <jk@ozlabs.org>
6890 M:      Ard Biesheuvel <ardb@kernel.org>
6891 L:      linux-efi@vger.kernel.org
6892 S:      Maintained
6893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6894 F:      fs/efivarfs/
6895
6896 EFIFB FRAMEBUFFER DRIVER
6897 M:      Peter Jones <pjones@redhat.com>
6898 L:      linux-fbdev@vger.kernel.org
6899 S:      Maintained
6900 F:      drivers/video/fbdev/efifb.c
6901
6902 EFS FILESYSTEM
6903 S:      Orphan
6904 W:      http://aeschi.ch.eu.org/efs/
6905 F:      fs/efs/
6906
6907 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6908 M:      Douglas Miller <dougmill@linux.ibm.com>
6909 L:      netdev@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/net/ethernet/ibm/ehea/
6912
6913 EM28XX VIDEO4LINUX DRIVER
6914 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6915 L:      linux-media@vger.kernel.org
6916 S:      Maintained
6917 W:      https://linuxtv.org
6918 T:      git git://linuxtv.org/media_tree.git
6919 F:      Documentation/admin-guide/media/em28xx*
6920 F:      drivers/media/usb/em28xx/
6921
6922 EMBEDDED LINUX
6923 M:      Matt Mackall <mpm@selenic.com>
6924 M:      David Woodhouse <dwmw2@infradead.org>
6925 L:      linux-embedded@vger.kernel.org
6926 S:      Maintained
6927
6928 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6929 M:      Adrian Hunter <adrian.hunter@intel.com>
6930 M:      Ritesh Harjani <riteshh@codeaurora.org>
6931 M:      Asutosh Das <asutoshd@codeaurora.org>
6932 L:      linux-mmc@vger.kernel.org
6933 S:      Maintained
6934 F:      drivers/mmc/host/cqhci*
6935
6936 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6937 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6938 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6939 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6940 L:      linux-scsi@vger.kernel.org
6941 S:      Supported
6942 W:      http://www.broadcom.com
6943 F:      drivers/scsi/be2iscsi/
6944
6945 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6946 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6947 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6948 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6949 L:      netdev@vger.kernel.org
6950 S:      Supported
6951 W:      http://www.emulex.com
6952 F:      drivers/net/ethernet/emulex/benet/
6953
6954 EMULEX ONECONNECT ROCE DRIVER
6955 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6956 L:      linux-rdma@vger.kernel.org
6957 S:      Odd Fixes
6958 W:      http://www.broadcom.com
6959 F:      drivers/infiniband/hw/ocrdma/
6960 F:      include/uapi/rdma/ocrdma-abi.h
6961
6962 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6963 M:      James Smart <james.smart@broadcom.com>
6964 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6965 L:      linux-scsi@vger.kernel.org
6966 S:      Supported
6967 W:      http://www.broadcom.com
6968 F:      drivers/scsi/lpfc/
6969
6970 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6971 M:      James Smart <james.smart@broadcom.com>
6972 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6973 L:      linux-scsi@vger.kernel.org
6974 L:      target-devel@vger.kernel.org
6975 S:      Supported
6976 W:      http://www.broadcom.com
6977 F:      drivers/scsi/elx/
6978
6979 ENE CB710 FLASH CARD READER DRIVER
6980 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6981 S:      Maintained
6982 F:      drivers/misc/cb710/
6983 F:      drivers/mmc/host/cb710-mmc.*
6984 F:      include/linux/cb710.h
6985
6986 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6987 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6988 S:      Maintained
6989 F:      drivers/media/rc/ene_ir.*
6990
6991 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6992 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6993 L:      linuxppc-dev@lists.ozlabs.org
6994 S:      Maintained
6995 F:      drivers/tty/ehv_bytechan.c
6996
6997 EPSON S1D13XXX FRAMEBUFFER DRIVER
6998 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6999 S:      Maintained
7000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7001 F:      drivers/video/fbdev/s1d13xxxfb.c
7002 F:      include/video/s1d13xxxfb.h
7003
7004 EROFS FILE SYSTEM
7005 M:      Gao Xiang <xiang@kernel.org>
7006 M:      Chao Yu <chao@kernel.org>
7007 L:      linux-erofs@lists.ozlabs.org
7008 S:      Maintained
7009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7010 F:      Documentation/filesystems/erofs.rst
7011 F:      fs/erofs/
7012 F:      include/trace/events/erofs.h
7013
7014 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7015 M:      Jeff Layton <jlayton@kernel.org>
7016 S:      Maintained
7017 F:      include/linux/errseq.h
7018 F:      lib/errseq.c
7019
7020 ET131X NETWORK DRIVER
7021 M:      Mark Einon <mark.einon@gmail.com>
7022 S:      Odd Fixes
7023 F:      drivers/net/ethernet/agere/
7024
7025 ETAS ES58X CAN/USB DRIVER
7026 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7027 L:      linux-can@vger.kernel.org
7028 S:      Maintained
7029 F:      drivers/net/can/usb/etas_es58x/
7030
7031 ETHERNET BRIDGE
7032 M:      Roopa Prabhu <roopa@nvidia.com>
7033 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7034 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7035 L:      netdev@vger.kernel.org
7036 S:      Maintained
7037 W:      http://www.linuxfoundation.org/en/Net:Bridge
7038 F:      include/linux/netfilter_bridge/
7039 F:      net/bridge/
7040
7041 ETHERNET PHY LIBRARY
7042 M:      Andrew Lunn <andrew@lunn.ch>
7043 M:      Heiner Kallweit <hkallweit1@gmail.com>
7044 R:      Russell King <linux@armlinux.org.uk>
7045 L:      netdev@vger.kernel.org
7046 S:      Maintained
7047 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7048 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7049 F:      Documentation/devicetree/bindings/net/mdio*
7050 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7051 F:      Documentation/networking/phy.rst
7052 F:      drivers/net/mdio/
7053 F:      drivers/net/mdio/acpi_mdio.c
7054 F:      drivers/net/mdio/fwnode_mdio.c
7055 F:      drivers/net/mdio/of_mdio.c
7056 F:      drivers/net/pcs/
7057 F:      drivers/net/phy/
7058 F:      include/dt-bindings/net/qca-ar803x.h
7059 F:      include/linux/*mdio*.h
7060 F:      include/linux/mdio/*.h
7061 F:      include/linux/of_net.h
7062 F:      include/linux/phy.h
7063 F:      include/linux/phy_fixed.h
7064 F:      include/linux/platform_data/mdio-bcm-unimac.h
7065 F:      include/linux/platform_data/mdio-gpio.h
7066 F:      include/trace/events/mdio.h
7067 F:      include/uapi/linux/mdio.h
7068 F:      include/uapi/linux/mii.h
7069 F:      net/core/of_net.c
7070
7071 EXFAT FILE SYSTEM
7072 M:      Namjae Jeon <linkinjeon@kernel.org>
7073 M:      Sungjong Seo <sj1557.seo@samsung.com>
7074 L:      linux-fsdevel@vger.kernel.org
7075 S:      Maintained
7076 F:      fs/exfat/
7077
7078 EXT2 FILE SYSTEM
7079 M:      Jan Kara <jack@suse.com>
7080 L:      linux-ext4@vger.kernel.org
7081 S:      Maintained
7082 F:      Documentation/filesystems/ext2.rst
7083 F:      fs/ext2/
7084 F:      include/linux/ext2*
7085
7086 EXT4 FILE SYSTEM
7087 M:      "Theodore Ts'o" <tytso@mit.edu>
7088 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7089 L:      linux-ext4@vger.kernel.org
7090 S:      Maintained
7091 W:      http://ext4.wiki.kernel.org
7092 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7094 F:      Documentation/filesystems/ext4/
7095 F:      fs/ext4/
7096 F:      include/trace/events/ext4.h
7097
7098 Extended Verification Module (EVM)
7099 M:      Mimi Zohar <zohar@linux.ibm.com>
7100 L:      linux-integrity@vger.kernel.org
7101 S:      Supported
7102 F:      security/integrity/evm/
7103
7104 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7105 M:      Ard Biesheuvel <ardb@kernel.org>
7106 L:      linux-efi@vger.kernel.org
7107 S:      Maintained
7108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7109 F:      Documentation/admin-guide/efi-stub.rst
7110 F:      arch/*/include/asm/efi.h
7111 F:      arch/*/kernel/efi.c
7112 F:      arch/arm/boot/compressed/efi-header.S
7113 F:      arch/arm64/kernel/efi-entry.S
7114 F:      arch/x86/platform/efi/
7115 F:      drivers/firmware/efi/
7116 F:      include/linux/efi*.h
7117
7118 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7119 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7120 M:      Chanwoo Choi <cw00.choi@samsung.com>
7121 L:      linux-kernel@vger.kernel.org
7122 S:      Maintained
7123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7124 F:      Documentation/devicetree/bindings/extcon/
7125 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7126 F:      drivers/extcon/
7127 F:      include/linux/extcon.h
7128 F:      include/linux/extcon/
7129
7130 EXTRA BOOT CONFIG
7131 M:      Masami Hiramatsu <mhiramat@kernel.org>
7132 S:      Maintained
7133 F:      Documentation/admin-guide/bootconfig.rst
7134 F:      fs/proc/bootconfig.c
7135 F:      include/linux/bootconfig.h
7136 F:      lib/bootconfig.c
7137 F:      tools/bootconfig/*
7138 F:      tools/bootconfig/scripts/*
7139
7140 EXYNOS DP DRIVER
7141 M:      Jingoo Han <jingoohan1@gmail.com>
7142 L:      dri-devel@lists.freedesktop.org
7143 S:      Maintained
7144 F:      drivers/gpu/drm/exynos/exynos_dp*
7145
7146 EXYNOS SYSMMU (IOMMU) driver
7147 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7148 L:      iommu@lists.linux-foundation.org
7149 S:      Maintained
7150 F:      drivers/iommu/exynos-iommu.c
7151
7152 F2FS FILE SYSTEM
7153 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7154 M:      Chao Yu <chao@kernel.org>
7155 L:      linux-f2fs-devel@lists.sourceforge.net
7156 S:      Maintained
7157 W:      https://f2fs.wiki.kernel.org/
7158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7159 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7160 F:      Documentation/filesystems/f2fs.rst
7161 F:      fs/f2fs/
7162 F:      include/linux/f2fs_fs.h
7163 F:      include/trace/events/f2fs.h
7164 F:      include/uapi/linux/f2fs.h
7165
7166 F71805F HARDWARE MONITORING DRIVER
7167 M:      Jean Delvare <jdelvare@suse.com>
7168 L:      linux-hwmon@vger.kernel.org
7169 S:      Maintained
7170 F:      Documentation/hwmon/f71805f.rst
7171 F:      drivers/hwmon/f71805f.c
7172
7173 FADDR2LINE
7174 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7175 S:      Maintained
7176 F:      scripts/faddr2line
7177
7178 FAILOVER MODULE
7179 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7180 L:      netdev@vger.kernel.org
7181 S:      Supported
7182 F:      Documentation/networking/failover.rst
7183 F:      include/net/failover.h
7184 F:      net/core/failover.c
7185
7186 FANOTIFY
7187 M:      Jan Kara <jack@suse.cz>
7188 R:      Amir Goldstein <amir73il@gmail.com>
7189 R:      Matthew Bobrowski <repnop@google.com>
7190 L:      linux-fsdevel@vger.kernel.org
7191 S:      Maintained
7192 F:      fs/notify/fanotify/
7193 F:      include/linux/fanotify.h
7194 F:      include/uapi/linux/fanotify.h
7195
7196 FARSYNC SYNCHRONOUS DRIVER
7197 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7198 S:      Supported
7199 W:      http://www.farsite.co.uk/
7200 F:      drivers/net/wan/farsync.*
7201
7202 FAULT INJECTION SUPPORT
7203 M:      Akinobu Mita <akinobu.mita@gmail.com>
7204 S:      Supported
7205 F:      Documentation/fault-injection/
7206 F:      lib/fault-inject.c
7207
7208 FBTFT Framebuffer drivers
7209 L:      dri-devel@lists.freedesktop.org
7210 L:      linux-fbdev@vger.kernel.org
7211 S:      Orphan
7212 F:      drivers/staging/fbtft/
7213
7214 FC0011 TUNER DRIVER
7215 M:      Michael Buesch <m@bues.ch>
7216 L:      linux-media@vger.kernel.org
7217 S:      Maintained
7218 F:      drivers/media/tuners/fc0011.c
7219 F:      drivers/media/tuners/fc0011.h
7220
7221 FC2580 MEDIA DRIVER
7222 M:      Antti Palosaari <crope@iki.fi>
7223 L:      linux-media@vger.kernel.org
7224 S:      Maintained
7225 W:      https://linuxtv.org
7226 W:      http://palosaari.fi/linux/
7227 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7228 T:      git git://linuxtv.org/anttip/media_tree.git
7229 F:      drivers/media/tuners/fc2580*
7230
7231 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7232 M:      Hannes Reinecke <hare@suse.de>
7233 L:      linux-scsi@vger.kernel.org
7234 S:      Supported
7235 W:      www.Open-FCoE.org
7236 F:      drivers/scsi/fcoe/
7237 F:      drivers/scsi/libfc/
7238 F:      include/scsi/fc/
7239 F:      include/scsi/libfc.h
7240 F:      include/scsi/libfcoe.h
7241 F:      include/uapi/scsi/fc/
7242
7243 FILE LOCKING (flock() and fcntl()/lockf())
7244 M:      Jeff Layton <jlayton@kernel.org>
7245 M:      "J. Bruce Fields" <bfields@fieldses.org>
7246 L:      linux-fsdevel@vger.kernel.org
7247 S:      Maintained
7248 F:      fs/fcntl.c
7249 F:      fs/locks.c
7250 F:      include/linux/fcntl.h
7251 F:      include/uapi/linux/fcntl.h
7252
7253 FILESYSTEM DIRECT ACCESS (DAX)
7254 M:      Dan Williams <dan.j.williams@intel.com>
7255 R:      Matthew Wilcox <willy@infradead.org>
7256 R:      Jan Kara <jack@suse.cz>
7257 L:      linux-fsdevel@vger.kernel.org
7258 L:      nvdimm@lists.linux.dev
7259 S:      Supported
7260 F:      fs/dax.c
7261 F:      include/linux/dax.h
7262 F:      include/trace/events/fs_dax.h
7263
7264 FILESYSTEMS (VFS and infrastructure)
7265 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7266 L:      linux-fsdevel@vger.kernel.org
7267 S:      Maintained
7268 F:      fs/*
7269 F:      include/linux/fs.h
7270 F:      include/linux/fs_types.h
7271 F:      include/uapi/linux/fs.h
7272 F:      include/uapi/linux/openat2.h
7273 X:      fs/io-wq.c
7274 X:      fs/io-wq.h
7275 X:      fs/io_uring.c
7276
7277 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7278 M:      Riku Voipio <riku.voipio@iki.fi>
7279 L:      linux-hwmon@vger.kernel.org
7280 S:      Maintained
7281 F:      drivers/hwmon/f75375s.c
7282 F:      include/linux/f75375s.h
7283
7284 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7285 M:      Clemens Ladisch <clemens@ladisch.de>
7286 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7288 S:      Maintained
7289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7290 F:      include/uapi/sound/firewire.h
7291 F:      sound/firewire/
7292
7293 FIREWIRE MEDIA DRIVERS (firedtv)
7294 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7295 L:      linux-media@vger.kernel.org
7296 L:      linux1394-devel@lists.sourceforge.net
7297 S:      Maintained
7298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7299 F:      drivers/media/firewire/
7300
7301 FIREWIRE SBP-2 TARGET
7302 M:      Chris Boot <bootc@bootc.net>
7303 L:      linux-scsi@vger.kernel.org
7304 L:      target-devel@vger.kernel.org
7305 L:      linux1394-devel@lists.sourceforge.net
7306 S:      Maintained
7307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7308 F:      drivers/target/sbp/
7309
7310 FIREWIRE SUBSYSTEM
7311 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7312 L:      linux1394-devel@lists.sourceforge.net
7313 S:      Maintained
7314 W:      http://ieee1394.wiki.kernel.org/
7315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7316 F:      drivers/firewire/
7317 F:      include/linux/firewire.h
7318 F:      include/uapi/linux/firewire*.h
7319 F:      tools/firewire/
7320
7321 FIRMWARE FRAMEWORK FOR ARMV8-A
7322 M:      Sudeep Holla <sudeep.holla@arm.com>
7323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7324 S:      Maintained
7325 F:      drivers/firmware/arm_ffa/
7326 F:      include/linux/arm_ffa.h
7327
7328 FIRMWARE LOADER (request_firmware)
7329 M:      Luis Chamberlain <mcgrof@kernel.org>
7330 L:      linux-kernel@vger.kernel.org
7331 S:      Maintained
7332 F:      Documentation/firmware_class/
7333 F:      drivers/base/firmware_loader/
7334 F:      include/linux/firmware.h
7335
7336 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7337 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7338 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7339 S:      Maintained
7340 F:      drivers/block/rsxx/
7341
7342 FLEXTIMER FTM-QUADDEC DRIVER
7343 M:      Patrick Havelange <patrick.havelange@essensium.com>
7344 L:      linux-iio@vger.kernel.org
7345 S:      Maintained
7346 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7347 F:      drivers/counter/ftm-quaddec.c
7348
7349 FLOPPY DRIVER
7350 M:      Denis Efremov <efremov@linux.com>
7351 L:      linux-block@vger.kernel.org
7352 S:      Odd Fixes
7353 F:      drivers/block/floppy.c
7354
7355 FLYSKY FSIA6B RC RECEIVER
7356 M:      Markus Koch <markus@notsyncing.net>
7357 L:      linux-input@vger.kernel.org
7358 S:      Maintained
7359 F:      drivers/input/joystick/fsia6b.c
7360
7361 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7362 M:      Geoffrey D. Bennett <g@b4.vu>
7363 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7364 S:      Maintained
7365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7366 F:      sound/usb/mixer_scarlett_gen2.c
7367
7368 FORCEDETH GIGABIT ETHERNET DRIVER
7369 M:      Rain River <rain.1986.08.12@gmail.com>
7370 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7371 L:      netdev@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/net/ethernet/nvidia/*
7374
7375 FORTIFY_SOURCE
7376 M:      Kees Cook <keescook@chromium.org>
7377 L:      linux-hardening@vger.kernel.org
7378 S:      Supported
7379 F:      include/linux/fortify-string.h
7380 F:      lib/test_fortify/*
7381 F:      scripts/test_fortify.sh
7382 K:      \b__NO_FORTIFY\b
7383
7384 FPGA DFL DRIVERS
7385 M:      Wu Hao <hao.wu@intel.com>
7386 R:      Tom Rix <trix@redhat.com>
7387 L:      linux-fpga@vger.kernel.org
7388 S:      Maintained
7389 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7390 F:      Documentation/fpga/dfl.rst
7391 F:      drivers/fpga/dfl*
7392 F:      drivers/uio/uio_dfl.c
7393 F:      include/linux/dfl.h
7394 F:      include/uapi/linux/fpga-dfl.h
7395
7396 FPGA MANAGER FRAMEWORK
7397 M:      Moritz Fischer <mdf@kernel.org>
7398 M:      Wu Hao <hao.wu@intel.com>
7399 M:      Xu Yilun <yilun.xu@intel.com>
7400 R:      Tom Rix <trix@redhat.com>
7401 L:      linux-fpga@vger.kernel.org
7402 S:      Maintained
7403 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7405 F:      Documentation/devicetree/bindings/fpga/
7406 F:      Documentation/driver-api/fpga/
7407 F:      Documentation/fpga/
7408 F:      drivers/fpga/
7409 F:      include/linux/fpga/
7410
7411 FPU EMULATOR
7412 M:      Bill Metzenthen <billm@melbpc.org.au>
7413 S:      Maintained
7414 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7415 F:      arch/x86/math-emu/
7416
7417 FRAMEBUFFER LAYER
7418 L:      dri-devel@lists.freedesktop.org
7419 L:      linux-fbdev@vger.kernel.org
7420 S:      Orphan
7421 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7422 T:      git git://anongit.freedesktop.org/drm/drm-misc
7423 F:      Documentation/fb/
7424 F:      drivers/video/
7425 F:      include/linux/fb.h
7426 F:      include/uapi/linux/fb.h
7427 F:      include/uapi/video/
7428 F:      include/video/
7429
7430 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7431 M:      Horia Geantă <horia.geanta@nxp.com>
7432 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7433 L:      linux-crypto@vger.kernel.org
7434 S:      Maintained
7435 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7436 F:      drivers/crypto/caam/
7437
7438 FREESCALE COLDFIRE M5441X MMC DRIVER
7439 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7440 L:      linux-mmc@vger.kernel.org
7441 S:      Maintained
7442 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7443 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7444
7445 FREESCALE DIU FRAMEBUFFER DRIVER
7446 M:      Timur Tabi <timur@kernel.org>
7447 L:      linux-fbdev@vger.kernel.org
7448 S:      Maintained
7449 F:      drivers/video/fbdev/fsl-diu-fb.*
7450
7451 FREESCALE DMA DRIVER
7452 M:      Li Yang <leoyang.li@nxp.com>
7453 M:      Zhang Wei <zw@zh-kernel.org>
7454 L:      linuxppc-dev@lists.ozlabs.org
7455 S:      Maintained
7456 F:      drivers/dma/fsldma.*
7457
7458 FREESCALE DSPI DRIVER
7459 M:      Vladimir Oltean <olteanv@gmail.com>
7460 L:      linux-spi@vger.kernel.org
7461 S:      Maintained
7462 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7463 F:      drivers/spi/spi-fsl-dspi.c
7464 F:      include/linux/spi/spi-fsl-dspi.h
7465
7466 FREESCALE ENETC ETHERNET DRIVERS
7467 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7468 L:      netdev@vger.kernel.org
7469 S:      Maintained
7470 F:      drivers/net/ethernet/freescale/enetc/
7471
7472 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7473 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7474 L:      netdev@vger.kernel.org
7475 S:      Maintained
7476 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7477 F:      drivers/net/ethernet/freescale/gianfar*
7478
7479 FREESCALE GPMI NAND DRIVER
7480 M:      Han Xu <han.xu@nxp.com>
7481 L:      linux-mtd@lists.infradead.org
7482 S:      Maintained
7483 F:      drivers/mtd/nand/raw/gpmi-nand/*
7484
7485 FREESCALE I2C CPM DRIVER
7486 M:      Jochen Friedrich <jochen@scram.de>
7487 L:      linuxppc-dev@lists.ozlabs.org
7488 L:      linux-i2c@vger.kernel.org
7489 S:      Maintained
7490 F:      drivers/i2c/busses/i2c-cpm.c
7491
7492 FREESCALE IMX / MXC FEC DRIVER
7493 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7494 L:      netdev@vger.kernel.org
7495 S:      Maintained
7496 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7497 F:      drivers/net/ethernet/freescale/fec.h
7498 F:      drivers/net/ethernet/freescale/fec_main.c
7499 F:      drivers/net/ethernet/freescale/fec_ptp.c
7500
7501 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7502 M:      Sascha Hauer <s.hauer@pengutronix.de>
7503 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7504 L:      linux-fbdev@vger.kernel.org
7505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7506 S:      Maintained
7507 F:      drivers/video/fbdev/imxfb.c
7508 F:      include/linux/platform_data/video-imxfb.h
7509
7510 FREESCALE IMX DDR PMU DRIVER
7511 M:      Frank Li <Frank.li@nxp.com>
7512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7513 S:      Maintained
7514 F:      Documentation/admin-guide/perf/imx-ddr.rst
7515 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7516 F:      drivers/perf/fsl_imx8_ddr_perf.c
7517
7518 FREESCALE IMX I2C DRIVER
7519 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7520 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7521 L:      linux-i2c@vger.kernel.org
7522 S:      Maintained
7523 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7524 F:      drivers/i2c/busses/i2c-imx.c
7525
7526 FREESCALE IMX LPI2C DRIVER
7527 M:      Dong Aisheng <aisheng.dong@nxp.com>
7528 L:      linux-i2c@vger.kernel.org
7529 L:      linux-imx@nxp.com
7530 S:      Maintained
7531 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7532 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7533
7534 FREESCALE MPC I2C DRIVER
7535 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7536 L:      linux-i2c@vger.kernel.org
7537 S:      Maintained
7538 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7539 F:      drivers/i2c/busses/i2c-mpc.c
7540
7541 FREESCALE QORIQ DPAA ETHERNET DRIVER
7542 M:      Madalin Bucur <madalin.bucur@nxp.com>
7543 L:      netdev@vger.kernel.org
7544 S:      Maintained
7545 F:      drivers/net/ethernet/freescale/dpaa
7546
7547 FREESCALE QORIQ DPAA FMAN DRIVER
7548 M:      Madalin Bucur <madalin.bucur@nxp.com>
7549 L:      netdev@vger.kernel.org
7550 S:      Maintained
7551 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7552 F:      drivers/net/ethernet/freescale/fman
7553
7554 FREESCALE QORIQ PTP CLOCK DRIVER
7555 M:      Yangbo Lu <yangbo.lu@nxp.com>
7556 L:      netdev@vger.kernel.org
7557 S:      Maintained
7558 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7559 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7560 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7561 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7562 F:      drivers/ptp/ptp_qoriq.c
7563 F:      drivers/ptp/ptp_qoriq_debugfs.c
7564 F:      include/linux/fsl/ptp_qoriq.h
7565
7566 FREESCALE QUAD SPI DRIVER
7567 M:      Han Xu <han.xu@nxp.com>
7568 L:      linux-spi@vger.kernel.org
7569 S:      Maintained
7570 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7571 F:      drivers/spi/spi-fsl-qspi.c
7572
7573 FREESCALE QUICC ENGINE LIBRARY
7574 M:      Qiang Zhao <qiang.zhao@nxp.com>
7575 L:      linuxppc-dev@lists.ozlabs.org
7576 S:      Maintained
7577 F:      drivers/soc/fsl/qe/
7578 F:      include/soc/fsl/*qe*.h
7579 F:      include/soc/fsl/*ucc*.h
7580
7581 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7582 M:      Li Yang <leoyang.li@nxp.com>
7583 L:      netdev@vger.kernel.org
7584 L:      linuxppc-dev@lists.ozlabs.org
7585 S:      Maintained
7586 F:      drivers/net/ethernet/freescale/ucc_geth*
7587
7588 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7589 M:      Zhao Qiang <qiang.zhao@nxp.com>
7590 L:      netdev@vger.kernel.org
7591 L:      linuxppc-dev@lists.ozlabs.org
7592 S:      Maintained
7593 F:      drivers/net/wan/fsl_ucc_hdlc*
7594
7595 FREESCALE QUICC ENGINE UCC UART DRIVER
7596 M:      Timur Tabi <timur@kernel.org>
7597 L:      linuxppc-dev@lists.ozlabs.org
7598 S:      Maintained
7599 F:      drivers/tty/serial/ucc_uart.c
7600
7601 FREESCALE SOC DRIVERS
7602 M:      Li Yang <leoyang.li@nxp.com>
7603 L:      linuxppc-dev@lists.ozlabs.org
7604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7605 S:      Maintained
7606 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7607 F:      Documentation/devicetree/bindings/soc/fsl/
7608 F:      drivers/soc/fsl/
7609 F:      include/linux/fsl/
7610
7611 FREESCALE SOC FS_ENET DRIVER
7612 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7613 L:      linuxppc-dev@lists.ozlabs.org
7614 L:      netdev@vger.kernel.org
7615 S:      Maintained
7616 F:      drivers/net/ethernet/freescale/fs_enet/
7617 F:      include/linux/fs_enet_pd.h
7618
7619 FREESCALE SOC SOUND DRIVERS
7620 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7621 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7622 R:      Fabio Estevam <festevam@gmail.com>
7623 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7624 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7625 L:      linuxppc-dev@lists.ozlabs.org
7626 S:      Maintained
7627 F:      sound/soc/fsl/fsl*
7628 F:      sound/soc/fsl/imx*
7629 F:      sound/soc/fsl/mpc8610_hpcd.c
7630
7631 FREESCALE USB PERIPHERAL DRIVERS
7632 M:      Li Yang <leoyang.li@nxp.com>
7633 L:      linux-usb@vger.kernel.org
7634 L:      linuxppc-dev@lists.ozlabs.org
7635 S:      Maintained
7636 F:      drivers/usb/gadget/udc/fsl*
7637
7638 FREESCALE USB PHY DRIVER
7639 M:      Ran Wang <ran.wang_1@nxp.com>
7640 L:      linux-usb@vger.kernel.org
7641 L:      linuxppc-dev@lists.ozlabs.org
7642 S:      Maintained
7643 F:      drivers/usb/phy/phy-fsl-usb*
7644
7645 FREEVXFS FILESYSTEM
7646 M:      Christoph Hellwig <hch@infradead.org>
7647 S:      Maintained
7648 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7649 F:      fs/freevxfs/
7650
7651 FREEZER
7652 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7653 M:      Pavel Machek <pavel@ucw.cz>
7654 L:      linux-pm@vger.kernel.org
7655 S:      Supported
7656 F:      Documentation/power/freezing-of-tasks.rst
7657 F:      include/linux/freezer.h
7658 F:      kernel/freezer.c
7659
7660 FRONTSWAP API
7661 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7662 L:      linux-kernel@vger.kernel.org
7663 S:      Maintained
7664 F:      include/linux/frontswap.h
7665 F:      mm/frontswap.c
7666
7667 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7668 M:      David Howells <dhowells@redhat.com>
7669 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7670 S:      Supported
7671 F:      Documentation/filesystems/caching/
7672 F:      fs/fscache/
7673 F:      include/linux/fscache*.h
7674
7675 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7676 M:      Theodore Y. Ts'o <tytso@mit.edu>
7677 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7678 M:      Eric Biggers <ebiggers@kernel.org>
7679 L:      linux-fscrypt@vger.kernel.org
7680 S:      Supported
7681 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7682 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7683 F:      Documentation/filesystems/fscrypt.rst
7684 F:      fs/crypto/
7685 F:      include/linux/fscrypt*.h
7686 F:      include/uapi/linux/fscrypt.h
7687
7688 FSI SUBSYSTEM
7689 M:      Jeremy Kerr <jk@ozlabs.org>
7690 M:      Joel Stanley <joel@jms.id.au>
7691 R:      Alistar Popple <alistair@popple.id.au>
7692 R:      Eddie James <eajames@linux.ibm.com>
7693 L:      linux-fsi@lists.ozlabs.org
7694 S:      Supported
7695 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7697 F:      drivers/fsi/
7698 F:      include/linux/fsi*.h
7699 F:      include/trace/events/fsi*.h
7700
7701 FSI-ATTACHED I2C DRIVER
7702 M:      Eddie James <eajames@linux.ibm.com>
7703 L:      linux-i2c@vger.kernel.org
7704 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7705 S:      Maintained
7706 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7707 F:      drivers/i2c/busses/i2c-fsi.c
7708
7709 FSI-ATTACHED SPI DRIVER
7710 M:      Eddie James <eajames@linux.ibm.com>
7711 L:      linux-spi@vger.kernel.org
7712 S:      Maintained
7713 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7714 F:      drivers/spi/spi-fsi.c
7715
7716 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7717 M:      Jan Kara <jack@suse.cz>
7718 R:      Amir Goldstein <amir73il@gmail.com>
7719 L:      linux-fsdevel@vger.kernel.org
7720 S:      Maintained
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7722 F:      fs/notify/
7723 F:      include/linux/fsnotify*.h
7724
7725 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7726 M:      Eric Biggers <ebiggers@kernel.org>
7727 M:      Theodore Y. Ts'o <tytso@mit.edu>
7728 L:      linux-fscrypt@vger.kernel.org
7729 S:      Supported
7730 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7731 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7732 F:      Documentation/filesystems/fsverity.rst
7733 F:      fs/verity/
7734 F:      include/linux/fsverity.h
7735 F:      include/uapi/linux/fsverity.h
7736
7737 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7738 M:      Michael Zaidman <michael.zaidman@gmail.com>
7739 L:      linux-i2c@vger.kernel.org
7740 L:      linux-input@vger.kernel.org
7741 S:      Maintained
7742 F:      drivers/hid/hid-ft260.c
7743
7744 FUJITSU LAPTOP EXTRAS
7745 M:      Jonathan Woithe <jwoithe@just42.net>
7746 L:      platform-driver-x86@vger.kernel.org
7747 S:      Maintained
7748 F:      drivers/platform/x86/fujitsu-laptop.c
7749
7750 FUJITSU M-5MO LS CAMERA ISP DRIVER
7751 M:      Kyungmin Park <kyungmin.park@samsung.com>
7752 M:      Heungjun Kim <riverful.kim@samsung.com>
7753 L:      linux-media@vger.kernel.org
7754 S:      Maintained
7755 F:      drivers/media/i2c/m5mols/
7756 F:      include/media/i2c/m5mols.h
7757
7758 FUJITSU TABLET EXTRAS
7759 M:      Robert Gerlach <khnz@gmx.de>
7760 L:      platform-driver-x86@vger.kernel.org
7761 S:      Maintained
7762 F:      drivers/platform/x86/fujitsu-tablet.c
7763
7764 FUSE: FILESYSTEM IN USERSPACE
7765 M:      Miklos Szeredi <miklos@szeredi.hu>
7766 L:      linux-fsdevel@vger.kernel.org
7767 S:      Maintained
7768 W:      https://github.com/libfuse/
7769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7770 F:      Documentation/filesystems/fuse.rst
7771 F:      fs/fuse/
7772 F:      include/uapi/linux/fuse.h
7773
7774 FUTEX SUBSYSTEM
7775 M:      Thomas Gleixner <tglx@linutronix.de>
7776 M:      Ingo Molnar <mingo@redhat.com>
7777 R:      Peter Zijlstra <peterz@infradead.org>
7778 R:      Darren Hart <dvhart@infradead.org>
7779 R:      Davidlohr Bueso <dave@stgolabs.net>
7780 R:      André Almeida <andrealmeid@collabora.com>
7781 L:      linux-kernel@vger.kernel.org
7782 S:      Maintained
7783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7784 F:      Documentation/locking/*futex*
7785 F:      include/asm-generic/futex.h
7786 F:      include/linux/futex.h
7787 F:      include/uapi/linux/futex.h
7788 F:      kernel/futex/*
7789 F:      tools/perf/bench/futex*
7790 F:      tools/testing/selftests/futex/
7791
7792 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7793 M:      Tim Harvey <tharvey@gateworks.com>
7794 M:      Robert Jones <rjones@gateworks.com>
7795 S:      Maintained
7796 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7797 F:      drivers/mfd/gateworks-gsc.c
7798 F:      include/linux/mfd/gsc.h
7799 F:      Documentation/hwmon/gsc-hwmon.rst
7800 F:      drivers/hwmon/gsc-hwmon.c
7801 F:      include/linux/platform_data/gsc_hwmon.h
7802
7803 GCC PLUGINS
7804 M:      Kees Cook <keescook@chromium.org>
7805 L:      linux-hardening@vger.kernel.org
7806 S:      Maintained
7807 F:      Documentation/kbuild/gcc-plugins.rst
7808 F:      scripts/Makefile.gcc-plugins
7809 F:      scripts/gcc-plugins/
7810
7811 GCOV BASED KERNEL PROFILING
7812 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7813 S:      Maintained
7814 F:      Documentation/dev-tools/gcov.rst
7815 F:      kernel/gcov/
7816
7817 GDB KERNEL DEBUGGING HELPER SCRIPTS
7818 M:      Jan Kiszka <jan.kiszka@siemens.com>
7819 M:      Kieran Bingham <kbingham@kernel.org>
7820 S:      Supported
7821 F:      scripts/gdb/
7822
7823 GEMINI CRYPTO DRIVER
7824 M:      Corentin Labbe <clabbe@baylibre.com>
7825 L:      linux-crypto@vger.kernel.org
7826 S:      Maintained
7827 F:      drivers/crypto/gemini/
7828
7829 GEMTEK FM RADIO RECEIVER DRIVER
7830 M:      Hans Verkuil <hverkuil@xs4all.nl>
7831 L:      linux-media@vger.kernel.org
7832 S:      Maintained
7833 W:      https://linuxtv.org
7834 T:      git git://linuxtv.org/media_tree.git
7835 F:      drivers/media/radio/radio-gemtek*
7836
7837 GENERIC ARCHITECTURE TOPOLOGY
7838 M:      Sudeep Holla <sudeep.holla@arm.com>
7839 L:      linux-kernel@vger.kernel.org
7840 S:      Maintained
7841 F:      drivers/base/arch_topology.c
7842 F:      include/linux/arch_topology.h
7843
7844 GENERIC ENTRY CODE
7845 M:      Thomas Gleixner <tglx@linutronix.de>
7846 M:      Peter Zijlstra <peterz@infradead.org>
7847 M:      Andy Lutomirski <luto@kernel.org>
7848 L:      linux-kernel@vger.kernel.org
7849 S:      Maintained
7850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7851 F:      include/linux/entry-common.h
7852 F:      include/linux/entry-kvm.h
7853 F:      kernel/entry/
7854
7855 GENERIC GPIO I2C DRIVER
7856 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7857 S:      Supported
7858 F:      drivers/i2c/busses/i2c-gpio.c
7859 F:      include/linux/platform_data/i2c-gpio.h
7860
7861 GENERIC GPIO I2C MULTIPLEXER DRIVER
7862 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7863 L:      linux-i2c@vger.kernel.org
7864 S:      Supported
7865 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7866 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7867 F:      include/linux/platform_data/i2c-mux-gpio.h
7868
7869 GENERIC HDLC (WAN) DRIVERS
7870 M:      Krzysztof Halasa <khc@pm.waw.pl>
7871 S:      Maintained
7872 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7873 F:      drivers/net/wan/c101.c
7874 F:      drivers/net/wan/hd6457*
7875 F:      drivers/net/wan/hdlc*
7876 F:      drivers/net/wan/n2.c
7877 F:      drivers/net/wan/pc300too.c
7878 F:      drivers/net/wan/pci200syn.c
7879 F:      drivers/net/wan/wanxl*
7880
7881 GENERIC INCLUDE/ASM HEADER FILES
7882 M:      Arnd Bergmann <arnd@arndb.de>
7883 L:      linux-arch@vger.kernel.org
7884 S:      Maintained
7885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7886 F:      include/asm-generic/
7887 F:      include/uapi/asm-generic/
7888
7889 GENERIC PHY FRAMEWORK
7890 M:      Kishon Vijay Abraham I <kishon@ti.com>
7891 M:      Vinod Koul <vkoul@kernel.org>
7892 L:      linux-phy@lists.infradead.org
7893 S:      Supported
7894 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7896 F:      Documentation/devicetree/bindings/phy/
7897 F:      drivers/phy/
7898 F:      include/linux/phy/
7899
7900 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7901 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7902 S:      Supported
7903 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7904
7905 GENERIC PM DOMAINS
7906 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7907 M:      Kevin Hilman <khilman@kernel.org>
7908 M:      Ulf Hansson <ulf.hansson@linaro.org>
7909 L:      linux-pm@vger.kernel.org
7910 S:      Supported
7911 F:      Documentation/devicetree/bindings/power/power?domain*
7912 F:      drivers/base/power/domain*.c
7913 F:      include/linux/pm_domain.h
7914
7915 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7916 M:      Eugen Hristev <eugen.hristev@microchip.com>
7917 L:      linux-input@vger.kernel.org
7918 S:      Maintained
7919 F:      drivers/input/touchscreen/resistive-adc-touch.c
7920
7921 GENERIC STRING LIBRARY
7922 R:      Andy Shevchenko <andy@kernel.org>
7923 S:      Maintained
7924 F:      lib/string.c
7925 F:      lib/string_helpers.c
7926 F:      lib/test_string.c
7927 F:      lib/test-string_helpers.c
7928
7929 GENERIC UIO DRIVER FOR PCI DEVICES
7930 M:      "Michael S. Tsirkin" <mst@redhat.com>
7931 L:      kvm@vger.kernel.org
7932 S:      Supported
7933 F:      drivers/uio/uio_pci_generic.c
7934
7935 GENERIC VDSO LIBRARY
7936 M:      Andy Lutomirski <luto@kernel.org>
7937 M:      Thomas Gleixner <tglx@linutronix.de>
7938 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7939 L:      linux-kernel@vger.kernel.org
7940 S:      Maintained
7941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7942 F:      include/asm-generic/vdso/vsyscall.h
7943 F:      include/vdso/
7944 F:      kernel/time/vsyscall.c
7945 F:      lib/vdso/
7946
7947 GENWQE (IBM Generic Workqueue Card)
7948 M:      Frank Haverkamp <haver@linux.ibm.com>
7949 S:      Supported
7950 F:      drivers/misc/genwqe/
7951
7952 GET_MAINTAINER SCRIPT
7953 M:      Joe Perches <joe@perches.com>
7954 S:      Maintained
7955 F:      scripts/get_maintainer.pl
7956
7957 GFS2 FILE SYSTEM
7958 M:      Bob Peterson <rpeterso@redhat.com>
7959 M:      Andreas Gruenbacher <agruenba@redhat.com>
7960 L:      cluster-devel@redhat.com
7961 S:      Supported
7962 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7964 F:      Documentation/filesystems/gfs2*
7965 F:      fs/gfs2/
7966 F:      include/uapi/linux/gfs2_ondisk.h
7967
7968 GIGABYTE WMI DRIVER
7969 M:      Thomas Weißschuh <thomas@weissschuh.net>
7970 L:      platform-driver-x86@vger.kernel.org
7971 S:      Maintained
7972 F:      drivers/platform/x86/gigabyte-wmi.c
7973
7974 GNSS SUBSYSTEM
7975 M:      Johan Hovold <johan@kernel.org>
7976 S:      Maintained
7977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7978 F:      Documentation/ABI/testing/sysfs-class-gnss
7979 F:      Documentation/devicetree/bindings/gnss/
7980 F:      drivers/gnss/
7981 F:      include/linux/gnss.h
7982
7983 GO7007 MPEG CODEC
7984 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7985 L:      linux-media@vger.kernel.org
7986 S:      Maintained
7987 F:      drivers/media/usb/go7007/
7988
7989 GOODIX TOUCHSCREEN
7990 M:      Bastien Nocera <hadess@hadess.net>
7991 L:      linux-input@vger.kernel.org
7992 S:      Maintained
7993 F:      drivers/input/touchscreen/goodix.c
7994
7995 GOOGLE ETHERNET DRIVERS
7996 M:      Jeroen de Borst <jeroendb@google.com>
7997 R:      Catherine Sullivan <csully@google.com>
7998 R:      David Awogbemila <awogbemila@google.com>
7999 L:      netdev@vger.kernel.org
8000 S:      Supported
8001 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8002 F:      drivers/net/ethernet/google
8003
8004 GPD POCKET FAN DRIVER
8005 M:      Hans de Goede <hdegoede@redhat.com>
8006 L:      platform-driver-x86@vger.kernel.org
8007 S:      Maintained
8008 F:      drivers/platform/x86/gpd-pocket-fan.c
8009
8010 GPIO ACPI SUPPORT
8011 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8012 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8013 L:      linux-gpio@vger.kernel.org
8014 L:      linux-acpi@vger.kernel.org
8015 S:      Maintained
8016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8017 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8018 F:      drivers/gpio/gpiolib-acpi.c
8019 F:      drivers/gpio/gpiolib-acpi.h
8020
8021 GPIO AGGREGATOR
8022 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8023 L:      linux-gpio@vger.kernel.org
8024 S:      Supported
8025 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8026 F:      drivers/gpio/gpio-aggregator.c
8027
8028 GPIO IR Transmitter
8029 M:      Sean Young <sean@mess.org>
8030 L:      linux-media@vger.kernel.org
8031 S:      Maintained
8032 F:      drivers/media/rc/gpio-ir-tx.c
8033
8034 GPIO MOCKUP DRIVER
8035 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8036 L:      linux-gpio@vger.kernel.org
8037 S:      Maintained
8038 F:      drivers/gpio/gpio-mockup.c
8039 F:      tools/testing/selftests/gpio/
8040
8041 GPIO REGMAP
8042 R:      Michael Walle <michael@walle.cc>
8043 S:      Maintained
8044 F:      drivers/gpio/gpio-regmap.c
8045 F:      include/linux/gpio/regmap.h
8046
8047 GPIO SUBSYSTEM
8048 M:      Linus Walleij <linus.walleij@linaro.org>
8049 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8050 L:      linux-gpio@vger.kernel.org
8051 S:      Maintained
8052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8053 F:      Documentation/ABI/obsolete/sysfs-gpio
8054 F:      Documentation/ABI/testing/gpio-cdev
8055 F:      Documentation/admin-guide/gpio/
8056 F:      Documentation/devicetree/bindings/gpio/
8057 F:      Documentation/driver-api/gpio/
8058 F:      drivers/gpio/
8059 F:      include/asm-generic/gpio.h
8060 F:      include/linux/gpio.h
8061 F:      include/linux/gpio/
8062 F:      include/linux/of_gpio.h
8063 F:      include/uapi/linux/gpio.h
8064 F:      tools/gpio/
8065
8066 GRE DEMULTIPLEXER DRIVER
8067 M:      Dmitry Kozlov <xeb@mail.ru>
8068 L:      netdev@vger.kernel.org
8069 S:      Maintained
8070 F:      include/net/gre.h
8071 F:      net/ipv4/gre_demux.c
8072 F:      net/ipv4/gre_offload.c
8073
8074 GRETH 10/100/1G Ethernet MAC device driver
8075 M:      Andreas Larsson <andreas@gaisler.com>
8076 L:      netdev@vger.kernel.org
8077 S:      Maintained
8078 F:      drivers/net/ethernet/aeroflex/
8079
8080 GREYBUS AUDIO PROTOCOLS DRIVERS
8081 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8082 M:      Mark Greer <mgreer@animalcreek.com>
8083 S:      Maintained
8084 F:      drivers/staging/greybus/audio_apbridgea.c
8085 F:      drivers/staging/greybus/audio_apbridgea.h
8086 F:      drivers/staging/greybus/audio_codec.c
8087 F:      drivers/staging/greybus/audio_codec.h
8088 F:      drivers/staging/greybus/audio_gb.c
8089 F:      drivers/staging/greybus/audio_manager.c
8090 F:      drivers/staging/greybus/audio_manager.h
8091 F:      drivers/staging/greybus/audio_manager_module.c
8092 F:      drivers/staging/greybus/audio_manager_private.h
8093 F:      drivers/staging/greybus/audio_manager_sysfs.c
8094 F:      drivers/staging/greybus/audio_module.c
8095 F:      drivers/staging/greybus/audio_topology.c
8096
8097 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8098 M:      Viresh Kumar <vireshk@kernel.org>
8099 S:      Maintained
8100 F:      drivers/staging/greybus/authentication.c
8101 F:      drivers/staging/greybus/bootrom.c
8102 F:      drivers/staging/greybus/firmware.h
8103 F:      drivers/staging/greybus/fw-core.c
8104 F:      drivers/staging/greybus/fw-download.c
8105 F:      drivers/staging/greybus/fw-management.c
8106 F:      drivers/staging/greybus/greybus_authentication.h
8107 F:      drivers/staging/greybus/greybus_firmware.h
8108 F:      drivers/staging/greybus/hid.c
8109 F:      drivers/staging/greybus/i2c.c
8110 F:      drivers/staging/greybus/spi.c
8111 F:      drivers/staging/greybus/spilib.c
8112 F:      drivers/staging/greybus/spilib.h
8113
8114 GREYBUS LOOPBACK DRIVER
8115 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8116 S:      Maintained
8117 F:      drivers/staging/greybus/loopback.c
8118
8119 GREYBUS PLATFORM DRIVERS
8120 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8121 S:      Maintained
8122 F:      drivers/staging/greybus/arche-apb-ctrl.c
8123 F:      drivers/staging/greybus/arche-platform.c
8124 F:      drivers/staging/greybus/arche_platform.h
8125
8126 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8127 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8128 S:      Maintained
8129 F:      drivers/staging/greybus/gpio.c
8130 F:      drivers/staging/greybus/light.c
8131 F:      drivers/staging/greybus/power_supply.c
8132 F:      drivers/staging/greybus/sdio.c
8133 F:      drivers/staging/greybus/spi.c
8134 F:      drivers/staging/greybus/spilib.c
8135
8136 GREYBUS SUBSYSTEM
8137 M:      Johan Hovold <johan@kernel.org>
8138 M:      Alex Elder <elder@kernel.org>
8139 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8140 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8141 S:      Maintained
8142 F:      drivers/greybus/
8143 F:      drivers/staging/greybus/
8144 F:      include/linux/greybus.h
8145 F:      include/linux/greybus/
8146
8147 GREYBUS UART PROTOCOLS DRIVERS
8148 M:      David Lin <dtwlin@gmail.com>
8149 S:      Maintained
8150 F:      drivers/staging/greybus/log.c
8151 F:      drivers/staging/greybus/uart.c
8152
8153 GS1662 VIDEO SERIALIZER
8154 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8155 L:      linux-media@vger.kernel.org
8156 S:      Maintained
8157 T:      git git://linuxtv.org/media_tree.git
8158 F:      drivers/media/spi/gs1662.c
8159
8160 GSPCA FINEPIX SUBDRIVER
8161 M:      Frank Zago <frank@zago.net>
8162 L:      linux-media@vger.kernel.org
8163 S:      Maintained
8164 T:      git git://linuxtv.org/media_tree.git
8165 F:      drivers/media/usb/gspca/finepix.c
8166
8167 GSPCA GL860 SUBDRIVER
8168 M:      Olivier Lorin <o.lorin@laposte.net>
8169 L:      linux-media@vger.kernel.org
8170 S:      Maintained
8171 T:      git git://linuxtv.org/media_tree.git
8172 F:      drivers/media/usb/gspca/gl860/
8173
8174 GSPCA M5602 SUBDRIVER
8175 M:      Erik Andren <erik.andren@gmail.com>
8176 L:      linux-media@vger.kernel.org
8177 S:      Maintained
8178 T:      git git://linuxtv.org/media_tree.git
8179 F:      drivers/media/usb/gspca/m5602/
8180
8181 GSPCA PAC207 SONIXB SUBDRIVER
8182 M:      Hans Verkuil <hverkuil@xs4all.nl>
8183 L:      linux-media@vger.kernel.org
8184 S:      Odd Fixes
8185 T:      git git://linuxtv.org/media_tree.git
8186 F:      drivers/media/usb/gspca/pac207.c
8187
8188 GSPCA SN9C20X SUBDRIVER
8189 M:      Brian Johnson <brijohn@gmail.com>
8190 L:      linux-media@vger.kernel.org
8191 S:      Maintained
8192 T:      git git://linuxtv.org/media_tree.git
8193 F:      drivers/media/usb/gspca/sn9c20x.c
8194
8195 GSPCA T613 SUBDRIVER
8196 M:      Leandro Costantino <lcostantino@gmail.com>
8197 L:      linux-media@vger.kernel.org
8198 S:      Maintained
8199 T:      git git://linuxtv.org/media_tree.git
8200 F:      drivers/media/usb/gspca/t613.c
8201
8202 GSPCA USB WEBCAM DRIVER
8203 M:      Hans Verkuil <hverkuil@xs4all.nl>
8204 L:      linux-media@vger.kernel.org
8205 S:      Odd Fixes
8206 T:      git git://linuxtv.org/media_tree.git
8207 F:      drivers/media/usb/gspca/
8208
8209 GTP (GPRS Tunneling Protocol)
8210 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8211 M:      Harald Welte <laforge@gnumonks.org>
8212 L:      osmocom-net-gprs@lists.osmocom.org
8213 S:      Maintained
8214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8215 F:      drivers/net/gtp.c
8216
8217 GUID PARTITION TABLE (GPT)
8218 M:      Davidlohr Bueso <dave@stgolabs.net>
8219 L:      linux-efi@vger.kernel.org
8220 S:      Maintained
8221 F:      block/partitions/efi.*
8222
8223 H8/300 ARCHITECTURE
8224 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8225 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8226 S:      Maintained
8227 W:      http://uclinux-h8.sourceforge.jp
8228 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8229 F:      arch/h8300/
8230 F:      drivers/clk/h8300/
8231 F:      drivers/clocksource/h8300_*.c
8232 F:      drivers/irqchip/irq-renesas-h8*.c
8233
8234 HABANALABS PCI DRIVER
8235 M:      Oded Gabbay <ogabbay@kernel.org>
8236 S:      Supported
8237 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8238 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8239 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8240 F:      drivers/misc/habanalabs/
8241 F:      include/uapi/misc/habanalabs.h
8242
8243 HACKRF MEDIA DRIVER
8244 M:      Antti Palosaari <crope@iki.fi>
8245 L:      linux-media@vger.kernel.org
8246 S:      Maintained
8247 W:      https://linuxtv.org
8248 W:      http://palosaari.fi/linux/
8249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8250 T:      git git://linuxtv.org/anttip/media_tree.git
8251 F:      drivers/media/usb/hackrf/
8252
8253 HANTRO VPU CODEC DRIVER
8254 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8255 M:      Philipp Zabel <p.zabel@pengutronix.de>
8256 L:      linux-media@vger.kernel.org
8257 L:      linux-rockchip@lists.infradead.org
8258 S:      Maintained
8259 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8260 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8261 F:      drivers/staging/media/hantro/
8262
8263 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8264 M:      Frank Seidel <frank@f-seidel.de>
8265 L:      platform-driver-x86@vger.kernel.org
8266 S:      Maintained
8267 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8268 F:      drivers/platform/x86/hdaps.c
8269
8270 HARDWARE MONITORING
8271 M:      Jean Delvare <jdelvare@suse.com>
8272 M:      Guenter Roeck <linux@roeck-us.net>
8273 L:      linux-hwmon@vger.kernel.org
8274 S:      Maintained
8275 W:      http://hwmon.wiki.kernel.org/
8276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8277 F:      Documentation/devicetree/bindings/hwmon/
8278 F:      Documentation/hwmon/
8279 F:      drivers/hwmon/
8280 F:      include/linux/hwmon*.h
8281 F:      include/trace/events/hwmon*.h
8282 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8283
8284 HARDWARE RANDOM NUMBER GENERATOR CORE
8285 M:      Matt Mackall <mpm@selenic.com>
8286 M:      Herbert Xu <herbert@gondor.apana.org.au>
8287 L:      linux-crypto@vger.kernel.org
8288 S:      Odd fixes
8289 F:      Documentation/admin-guide/hw_random.rst
8290 F:      Documentation/devicetree/bindings/rng/
8291 F:      drivers/char/hw_random/
8292 F:      include/linux/hw_random.h
8293
8294 HARDWARE SPINLOCK CORE
8295 M:      Ohad Ben-Cohen <ohad@wizery.com>
8296 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8297 R:      Baolin Wang <baolin.wang7@gmail.com>
8298 L:      linux-remoteproc@vger.kernel.org
8299 S:      Maintained
8300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8301 F:      Documentation/devicetree/bindings/hwlock/
8302 F:      Documentation/locking/hwspinlock.rst
8303 F:      drivers/hwspinlock/
8304 F:      include/linux/hwspinlock.h
8305
8306 HARDWARE TRACING FACILITIES
8307 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8308 S:      Maintained
8309 F:      drivers/hwtracing/
8310
8311 HARMONY SOUND DRIVER
8312 L:      linux-parisc@vger.kernel.org
8313 S:      Maintained
8314 F:      sound/parisc/harmony.*
8315
8316 HDPVR USB VIDEO ENCODER DRIVER
8317 M:      Hans Verkuil <hverkuil@xs4all.nl>
8318 L:      linux-media@vger.kernel.org
8319 S:      Odd Fixes
8320 W:      https://linuxtv.org
8321 T:      git git://linuxtv.org/media_tree.git
8322 F:      drivers/media/usb/hdpvr/
8323
8324 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8325 M:      Matt Hsiao <matt.hsiao@hpe.com>
8326 S:      Supported
8327 F:      drivers/misc/hpilo.[ch]
8328
8329 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8330 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8331 S:      Supported
8332 F:      Documentation/watchdog/hpwdt.rst
8333 F:      drivers/watchdog/hpwdt.c
8334
8335 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8336 M:      Don Brace <don.brace@microchip.com>
8337 L:      storagedev@microchip.com
8338 L:      linux-scsi@vger.kernel.org
8339 S:      Supported
8340 F:      Documentation/scsi/hpsa.rst
8341 F:      drivers/scsi/hpsa*.[ch]
8342 F:      include/linux/cciss*.h
8343 F:      include/uapi/linux/cciss*.h
8344
8345 HFI1 DRIVER
8346 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8347 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8348 L:      linux-rdma@vger.kernel.org
8349 S:      Supported
8350 F:      drivers/infiniband/hw/hfi1
8351
8352 HFS FILESYSTEM
8353 L:      linux-fsdevel@vger.kernel.org
8354 S:      Orphan
8355 F:      Documentation/filesystems/hfs.rst
8356 F:      fs/hfs/
8357
8358 HFSPLUS FILESYSTEM
8359 L:      linux-fsdevel@vger.kernel.org
8360 S:      Orphan
8361 F:      Documentation/filesystems/hfsplus.rst
8362 F:      fs/hfsplus/
8363
8364 HGA FRAMEBUFFER DRIVER
8365 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8366 L:      linux-nvidia@lists.surfsouth.com
8367 S:      Maintained
8368 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8369 F:      drivers/video/fbdev/hgafb.c
8370
8371 HIBERNATION (aka Software Suspend, aka swsusp)
8372 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8373 M:      Pavel Machek <pavel@ucw.cz>
8374 L:      linux-pm@vger.kernel.org
8375 S:      Supported
8376 B:      https://bugzilla.kernel.org
8377 F:      arch/*/include/asm/suspend*.h
8378 F:      arch/x86/power/
8379 F:      drivers/base/power/
8380 F:      include/linux/freezer.h
8381 F:      include/linux/pm.h
8382 F:      include/linux/suspend.h
8383 F:      kernel/power/
8384
8385 HID CORE LAYER
8386 M:      Jiri Kosina <jikos@kernel.org>
8387 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8388 L:      linux-input@vger.kernel.org
8389 S:      Maintained
8390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8391 F:      drivers/hid/
8392 F:      include/linux/hid*
8393 F:      include/uapi/linux/hid*
8394
8395 HID PLAYSTATION DRIVER
8396 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8397 L:      linux-input@vger.kernel.org
8398 S:      Supported
8399 F:      drivers/hid/hid-playstation.c
8400
8401 HID SENSOR HUB DRIVERS
8402 M:      Jiri Kosina <jikos@kernel.org>
8403 M:      Jonathan Cameron <jic23@kernel.org>
8404 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8405 L:      linux-input@vger.kernel.org
8406 L:      linux-iio@vger.kernel.org
8407 S:      Maintained
8408 F:      Documentation/hid/hid-sensor*
8409 F:      drivers/hid/hid-sensor-*
8410 F:      drivers/iio/*/hid-*
8411 F:      include/linux/hid-sensor-*
8412
8413 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8414 M:      Thomas Gleixner <tglx@linutronix.de>
8415 L:      linux-kernel@vger.kernel.org
8416 S:      Maintained
8417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8418 F:      Documentation/timers/
8419 F:      include/linux/clockchips.h
8420 F:      include/linux/hrtimer.h
8421 F:      kernel/time/clockevents.c
8422 F:      kernel/time/hrtimer.c
8423 F:      kernel/time/timer_*.c
8424
8425 HIGH-SPEED SCC DRIVER FOR AX.25
8426 L:      linux-hams@vger.kernel.org
8427 S:      Orphan
8428 F:      drivers/net/hamradio/dmascc.c
8429 F:      drivers/net/hamradio/scc.c
8430
8431 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8432 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8433 S:      Supported
8434 W:      http://www.highpoint-tech.com
8435 F:      Documentation/scsi/hptiop.rst
8436 F:      drivers/scsi/hptiop.c
8437
8438 HIPPI
8439 M:      Jes Sorensen <jes@trained-monkey.org>
8440 L:      linux-hippi@sunsite.dk
8441 S:      Maintained
8442 F:      drivers/net/hippi/
8443 F:      include/linux/hippidevice.h
8444 F:      include/uapi/linux/if_hippi.h
8445 F:      net/802/hippi.c
8446
8447 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8448 M:      Kurt Kanzenbach <kurt@linutronix.de>
8449 L:      netdev@vger.kernel.org
8450 S:      Maintained
8451 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8452 F:      drivers/net/dsa/hirschmann/*
8453 F:      include/linux/platform_data/hirschmann-hellcreek.h
8454 F:      net/dsa/tag_hellcreek.c
8455
8456 HISILICON DMA DRIVER
8457 M:      Zhou Wang <wangzhou1@hisilicon.com>
8458 L:      dmaengine@vger.kernel.org
8459 S:      Maintained
8460 F:      drivers/dma/hisi_dma.c
8461
8462 HISILICON GPIO DRIVER
8463 M:      Luo Jiaxing <luojiaxing@huawei.com>
8464 L:      linux-gpio@vger.kernel.org
8465 S:      Maintained
8466 F:      drivers/gpio/gpio-hisi.c
8467
8468 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8469 M:      Zaibo Xu <xuzaibo@huawei.com>
8470 L:      linux-crypto@vger.kernel.org
8471 S:      Maintained
8472 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8473 F:      drivers/crypto/hisilicon/hpre/hpre.h
8474 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8475 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8476
8477 HISILICON I2C CONTROLLER DRIVER
8478 M:      Yicong Yang <yangyicong@hisilicon.com>
8479 L:      linux-i2c@vger.kernel.org
8480 S:      Maintained
8481 W:      https://www.hisilicon.com
8482 F:      drivers/i2c/busses/i2c-hisi.c
8483
8484 HISILICON LPC BUS DRIVER
8485 M:      john.garry@huawei.com
8486 S:      Maintained
8487 W:      http://www.hisilicon.com
8488 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8489 F:      drivers/bus/hisi_lpc.c
8490
8491 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8492 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8493 M:      Salil Mehta <salil.mehta@huawei.com>
8494 L:      netdev@vger.kernel.org
8495 S:      Maintained
8496 W:      http://www.hisilicon.com
8497 F:      drivers/net/ethernet/hisilicon/hns3/
8498
8499 HISILICON NETWORK SUBSYSTEM DRIVER
8500 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8501 M:      Salil Mehta <salil.mehta@huawei.com>
8502 L:      netdev@vger.kernel.org
8503 S:      Maintained
8504 W:      http://www.hisilicon.com
8505 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8506 F:      drivers/net/ethernet/hisilicon/
8507
8508 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8509 M:      John Stultz <john.stultz@linaro.org>
8510 L:      linux-kernel@vger.kernel.org
8511 S:      Maintained
8512 F:      drivers/misc/hisi_hikey_usb.c
8513 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8514
8515 HISILICON PMU DRIVER
8516 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8517 S:      Supported
8518 W:      http://www.hisilicon.com
8519 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8520 F:      drivers/perf/hisilicon
8521
8522 HISILICON QM AND ZIP Controller DRIVER
8523 M:      Zhou Wang <wangzhou1@hisilicon.com>
8524 L:      linux-crypto@vger.kernel.org
8525 S:      Maintained
8526 F:      Documentation/ABI/testing/debugfs-hisi-zip
8527 F:      drivers/crypto/hisilicon/qm.c
8528 F:      drivers/crypto/hisilicon/qm.h
8529 F:      drivers/crypto/hisilicon/sgl.c
8530 F:      drivers/crypto/hisilicon/zip/
8531
8532 HISILICON ROCE DRIVER
8533 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8534 M:      Weihang Li <liweihang@huawei.com>
8535 L:      linux-rdma@vger.kernel.org
8536 S:      Maintained
8537 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8538 F:      drivers/infiniband/hw/hns/
8539
8540 HISILICON SAS Controller
8541 M:      John Garry <john.garry@huawei.com>
8542 S:      Supported
8543 W:      http://www.hisilicon.com
8544 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8545 F:      drivers/scsi/hisi_sas/
8546
8547 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8548 M:      Zaibo Xu <xuzaibo@huawei.com>
8549 L:      linux-crypto@vger.kernel.org
8550 S:      Maintained
8551 F:      Documentation/ABI/testing/debugfs-hisi-sec
8552 F:      drivers/crypto/hisilicon/sec2/sec.h
8553 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8554 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8555 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8556
8557 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8558 M:      Jay Fang <f.fangjian@huawei.com>
8559 L:      linux-spi@vger.kernel.org
8560 S:      Maintained
8561 W:      http://www.hisilicon.com
8562 F:      drivers/spi/spi-hisi-kunpeng.c
8563
8564 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8565 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8566 L:      linux-kernel@vger.kernel.org
8567 S:      Maintained
8568 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8569 F:      drivers/spmi/hisi-spmi-controller.c
8570
8571 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8572 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8573 L:      linux-kernel@vger.kernel.org
8574 S:      Maintained
8575 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8576 F:      drivers/mfd/hi6421-spmi-pmic.c
8577
8578 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8579 M:      Zaibo Xu <xuzaibo@huawei.com>
8580 S:      Maintained
8581 F:      drivers/crypto/hisilicon/trng/trng.c
8582
8583 HISILICON V3XX SPI NOR FLASH Controller Driver
8584 M:      John Garry <john.garry@huawei.com>
8585 S:      Maintained
8586 W:      http://www.hisilicon.com
8587 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8588
8589 HMM - Heterogeneous Memory Management
8590 M:      Jérôme Glisse <jglisse@redhat.com>
8591 L:      linux-mm@kvack.org
8592 S:      Maintained
8593 F:      Documentation/vm/hmm.rst
8594 F:      include/linux/hmm*
8595 F:      lib/test_hmm*
8596 F:      mm/hmm*
8597 F:      tools/testing/selftests/vm/*hmm*
8598
8599 HOST AP DRIVER
8600 M:      Jouni Malinen <j@w1.fi>
8601 L:      linux-wireless@vger.kernel.org
8602 S:      Obsolete
8603 W:      http://w1.fi/hostap-driver.html
8604 F:      drivers/net/wireless/intersil/hostap/
8605
8606 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8607 L:      platform-driver-x86@vger.kernel.org
8608 S:      Orphan
8609 F:      drivers/platform/x86/tc1100-wmi.c
8610
8611 HPET:   High Precision Event Timers driver
8612 M:      Clemens Ladisch <clemens@ladisch.de>
8613 S:      Maintained
8614 F:      Documentation/timers/hpet.rst
8615 F:      drivers/char/hpet.c
8616 F:      include/linux/hpet.h
8617 F:      include/uapi/linux/hpet.h
8618
8619 HPET:   x86
8620 S:      Orphan
8621 F:      arch/x86/include/asm/hpet.h
8622 F:      arch/x86/kernel/hpet.c
8623
8624 HPFS FILESYSTEM
8625 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8626 S:      Maintained
8627 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8628 F:      fs/hpfs/
8629
8630 HSI SUBSYSTEM
8631 M:      Sebastian Reichel <sre@kernel.org>
8632 S:      Maintained
8633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8634 F:      Documentation/ABI/testing/sysfs-bus-hsi
8635 F:      Documentation/driver-api/hsi.rst
8636 F:      drivers/hsi/
8637 F:      include/linux/hsi/
8638 F:      include/uapi/linux/hsi/
8639
8640 HSO 3G MODEM DRIVER
8641 L:      linux-usb@vger.kernel.org
8642 S:      Orphan
8643 F:      drivers/net/usb/hso.c
8644
8645 HSR NETWORK PROTOCOL
8646 L:      netdev@vger.kernel.org
8647 S:      Orphan
8648 F:      net/hsr/
8649
8650 HT16K33 LED CONTROLLER DRIVER
8651 M:      Robin van der Gracht <robin@protonic.nl>
8652 S:      Maintained
8653 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8654 F:      drivers/auxdisplay/ht16k33.c
8655
8656 HTCPEN TOUCHSCREEN DRIVER
8657 M:      Pau Oliva Fora <pof@eslack.org>
8658 L:      linux-input@vger.kernel.org
8659 S:      Maintained
8660 F:      drivers/input/touchscreen/htcpen.c
8661
8662 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8663 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8664 L:      linux-iio@vger.kernel.org
8665 S:      Maintained
8666 W:      http://www.st.com/
8667 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8668 F:      drivers/iio/humidity/hts221*
8669
8670 HUAWEI ETHERNET DRIVER
8671 L:      netdev@vger.kernel.org
8672 S:      Orphan
8673 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8674 F:      drivers/net/ethernet/huawei/hinic/
8675
8676 HUGETLB FILESYSTEM
8677 M:      Mike Kravetz <mike.kravetz@oracle.com>
8678 L:      linux-mm@kvack.org
8679 S:      Maintained
8680 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8681 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8682 F:      Documentation/vm/hugetlbfs_reserv.rst
8683 F:      fs/hugetlbfs/
8684 F:      include/linux/hugetlb.h
8685 F:      mm/hugetlb.c
8686
8687 HVA ST MEDIA DRIVER
8688 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8689 L:      linux-media@vger.kernel.org
8690 S:      Supported
8691 W:      https://linuxtv.org
8692 T:      git git://linuxtv.org/media_tree.git
8693 F:      drivers/media/platform/sti/hva
8694
8695 HWPOISON MEMORY FAILURE HANDLING
8696 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8697 L:      linux-mm@kvack.org
8698 S:      Maintained
8699 F:      mm/hwpoison-inject.c
8700 F:      mm/memory-failure.c
8701
8702 HYCON HY46XX TOUCHSCREEN SUPPORT
8703 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8704 L:      linux-input@vger.kernel.org
8705 S:      Maintained
8706 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8707 F:      drivers/input/touchscreen/hycon-hy46xx.c
8708
8709 HYGON PROCESSOR SUPPORT
8710 M:      Pu Wen <puwen@hygon.cn>
8711 L:      linux-kernel@vger.kernel.org
8712 S:      Maintained
8713 F:      arch/x86/kernel/cpu/hygon.c
8714
8715 HYNIX HI556 SENSOR DRIVER
8716 M:      Shawn Tu <shawnx.tu@intel.com>
8717 L:      linux-media@vger.kernel.org
8718 S:      Maintained
8719 T:      git git://linuxtv.org/media_tree.git
8720 F:      drivers/media/i2c/hi556.c
8721
8722 HYNIX HI846 SENSOR DRIVER
8723 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8724 L:      linux-media@vger.kernel.org
8725 S:      Maintained
8726 F:      drivers/media/i2c/hi846.c
8727
8728 Hyper-V/Azure CORE AND DRIVERS
8729 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8730 M:      Haiyang Zhang <haiyangz@microsoft.com>
8731 M:      Stephen Hemminger <sthemmin@microsoft.com>
8732 M:      Wei Liu <wei.liu@kernel.org>
8733 M:      Dexuan Cui <decui@microsoft.com>
8734 L:      linux-hyperv@vger.kernel.org
8735 S:      Supported
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8737 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8738 F:      Documentation/ABI/testing/debugfs-hyperv
8739 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8740 F:      arch/arm64/hyperv
8741 F:      arch/arm64/include/asm/hyperv-tlfs.h
8742 F:      arch/arm64/include/asm/mshyperv.h
8743 F:      arch/x86/hyperv
8744 F:      arch/x86/include/asm/hyperv-tlfs.h
8745 F:      arch/x86/include/asm/mshyperv.h
8746 F:      arch/x86/include/asm/trace/hyperv.h
8747 F:      arch/x86/kernel/cpu/mshyperv.c
8748 F:      drivers/clocksource/hyperv_timer.c
8749 F:      drivers/hid/hid-hyperv.c
8750 F:      drivers/hv/
8751 F:      drivers/input/serio/hyperv-keyboard.c
8752 F:      drivers/iommu/hyperv-iommu.c
8753 F:      drivers/net/ethernet/microsoft/
8754 F:      drivers/net/hyperv/
8755 F:      drivers/pci/controller/pci-hyperv-intf.c
8756 F:      drivers/pci/controller/pci-hyperv.c
8757 F:      drivers/scsi/storvsc_drv.c
8758 F:      drivers/uio/uio_hv_generic.c
8759 F:      drivers/video/fbdev/hyperv_fb.c
8760 F:      include/asm-generic/hyperv-tlfs.h
8761 F:      include/asm-generic/mshyperv.h
8762 F:      include/clocksource/hyperv_timer.h
8763 F:      include/linux/hyperv.h
8764 F:      include/uapi/linux/hyperv.h
8765 F:      net/vmw_vsock/hyperv_transport.c
8766 F:      tools/hv/
8767
8768 HYPERBUS SUPPORT
8769 M:      Vignesh Raghavendra <vigneshr@ti.com>
8770 L:      linux-mtd@lists.infradead.org
8771 S:      Supported
8772 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8773 C:      irc://irc.oftc.net/mtd
8774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8775 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8776 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8777 F:      drivers/mtd/hyperbus/
8778 F:      include/linux/mtd/hyperbus.h
8779
8780 HYPERVISOR VIRTUAL CONSOLE DRIVER
8781 L:      linuxppc-dev@lists.ozlabs.org
8782 S:      Odd Fixes
8783 F:      drivers/tty/hvc/
8784
8785 I2C ACPI SUPPORT
8786 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8787 L:      linux-i2c@vger.kernel.org
8788 L:      linux-acpi@vger.kernel.org
8789 S:      Maintained
8790 F:      drivers/i2c/i2c-core-acpi.c
8791
8792 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8793 M:      Ajay Gupta <ajayg@nvidia.com>
8794 L:      linux-i2c@vger.kernel.org
8795 S:      Maintained
8796 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8797 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8798
8799 I2C MUXES
8800 M:      Peter Rosin <peda@axentia.se>
8801 L:      linux-i2c@vger.kernel.org
8802 S:      Maintained
8803 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8804 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8805 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8806 F:      Documentation/i2c/i2c-topology.rst
8807 F:      Documentation/i2c/muxes/
8808 F:      drivers/i2c/i2c-mux.c
8809 F:      drivers/i2c/muxes/
8810 F:      include/linux/i2c-mux.h
8811
8812 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8813 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8814 L:      linux-i2c@vger.kernel.org
8815 S:      Maintained
8816 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8817 F:      drivers/i2c/busses/i2c-mv64xxx.c
8818
8819 I2C OVER PARALLEL PORT
8820 M:      Jean Delvare <jdelvare@suse.com>
8821 L:      linux-i2c@vger.kernel.org
8822 S:      Maintained
8823 F:      Documentation/i2c/busses/i2c-parport.rst
8824 F:      drivers/i2c/busses/i2c-parport.c
8825
8826 I2C SUBSYSTEM
8827 M:      Wolfram Sang <wsa@kernel.org>
8828 L:      linux-i2c@vger.kernel.org
8829 S:      Maintained
8830 W:      https://i2c.wiki.kernel.org/
8831 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8833 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8834 F:      Documentation/i2c/
8835 F:      drivers/i2c/*
8836 F:      include/linux/i2c-dev.h
8837 F:      include/linux/i2c-smbus.h
8838 F:      include/linux/i2c.h
8839 F:      include/uapi/linux/i2c-*.h
8840 F:      include/uapi/linux/i2c.h
8841
8842 I2C SUBSYSTEM HOST DRIVERS
8843 L:      linux-i2c@vger.kernel.org
8844 S:      Odd Fixes
8845 W:      https://i2c.wiki.kernel.org/
8846 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8848 F:      Documentation/devicetree/bindings/i2c/
8849 F:      drivers/i2c/algos/
8850 F:      drivers/i2c/busses/
8851
8852 I2C-TAOS-EVM DRIVER
8853 M:      Jean Delvare <jdelvare@suse.com>
8854 L:      linux-i2c@vger.kernel.org
8855 S:      Maintained
8856 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8857 F:      drivers/i2c/busses/i2c-taos-evm.c
8858
8859 I2C-TINY-USB DRIVER
8860 M:      Till Harbaum <till@harbaum.org>
8861 L:      linux-i2c@vger.kernel.org
8862 S:      Maintained
8863 W:      http://www.harbaum.org/till/i2c_tiny_usb
8864 F:      drivers/i2c/busses/i2c-tiny-usb.c
8865
8866 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8867 M:      Jean Delvare <jdelvare@suse.com>
8868 L:      linux-i2c@vger.kernel.org
8869 S:      Maintained
8870 F:      Documentation/i2c/busses/i2c-ali1535.rst
8871 F:      Documentation/i2c/busses/i2c-ali1563.rst
8872 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8873 F:      Documentation/i2c/busses/i2c-amd756.rst
8874 F:      Documentation/i2c/busses/i2c-amd8111.rst
8875 F:      Documentation/i2c/busses/i2c-i801.rst
8876 F:      Documentation/i2c/busses/i2c-nforce2.rst
8877 F:      Documentation/i2c/busses/i2c-piix4.rst
8878 F:      Documentation/i2c/busses/i2c-sis5595.rst
8879 F:      Documentation/i2c/busses/i2c-sis630.rst
8880 F:      Documentation/i2c/busses/i2c-sis96x.rst
8881 F:      Documentation/i2c/busses/i2c-via.rst
8882 F:      Documentation/i2c/busses/i2c-viapro.rst
8883 F:      drivers/i2c/busses/i2c-ali1535.c
8884 F:      drivers/i2c/busses/i2c-ali1563.c
8885 F:      drivers/i2c/busses/i2c-ali15x3.c
8886 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8887 F:      drivers/i2c/busses/i2c-amd756.c
8888 F:      drivers/i2c/busses/i2c-amd8111.c
8889 F:      drivers/i2c/busses/i2c-i801.c
8890 F:      drivers/i2c/busses/i2c-isch.c
8891 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8892 F:      drivers/i2c/busses/i2c-nforce2.c
8893 F:      drivers/i2c/busses/i2c-piix4.c
8894 F:      drivers/i2c/busses/i2c-sis5595.c
8895 F:      drivers/i2c/busses/i2c-sis630.c
8896 F:      drivers/i2c/busses/i2c-sis96x.c
8897 F:      drivers/i2c/busses/i2c-via.c
8898 F:      drivers/i2c/busses/i2c-viapro.c
8899
8900 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8901 M:      Hans de Goede <hdegoede@redhat.com>
8902 L:      linux-i2c@vger.kernel.org
8903 S:      Maintained
8904 F:      drivers/i2c/busses/i2c-cht-wc.c
8905
8906 I2C/SMBUS ISMT DRIVER
8907 M:      Seth Heasley <seth.heasley@intel.com>
8908 M:      Neil Horman <nhorman@tuxdriver.com>
8909 L:      linux-i2c@vger.kernel.org
8910 F:      Documentation/i2c/busses/i2c-ismt.rst
8911 F:      drivers/i2c/busses/i2c-ismt.c
8912
8913 I2C/SMBUS STUB DRIVER
8914 M:      Jean Delvare <jdelvare@suse.com>
8915 L:      linux-i2c@vger.kernel.org
8916 S:      Maintained
8917 F:      drivers/i2c/i2c-stub.c
8918
8919 I3C DRIVER FOR CADENCE I3C MASTER IP
8920 M:      Przemysław Gaj <pgaj@cadence.com>
8921 S:      Maintained
8922 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8923 F:      drivers/i3c/master/i3c-master-cdns.c
8924
8925 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8926 M:      Vitor Soares <vitor.soares@synopsys.com>
8927 S:      Maintained
8928 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8929 F:      drivers/i3c/master/dw*
8930
8931 I3C SUBSYSTEM
8932 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8933 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8934 S:      Maintained
8935 C:      irc://chat.freenode.net/linux-i3c
8936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8937 F:      Documentation/ABI/testing/sysfs-bus-i3c
8938 F:      Documentation/devicetree/bindings/i3c/
8939 F:      Documentation/driver-api/i3c
8940 F:      drivers/i3c/
8941 F:      include/linux/i3c/
8942
8943 IA64 (Itanium) PLATFORM
8944 L:      linux-ia64@vger.kernel.org
8945 S:      Orphan
8946 F:      Documentation/ia64/
8947 F:      arch/ia64/
8948
8949 IBM Power 842 compression accelerator
8950 M:      Haren Myneni <haren@us.ibm.com>
8951 S:      Supported
8952 F:      crypto/842.c
8953 F:      drivers/crypto/nx/Kconfig
8954 F:      drivers/crypto/nx/Makefile
8955 F:      drivers/crypto/nx/nx-842*
8956 F:      include/linux/sw842.h
8957 F:      lib/842/
8958
8959 IBM Power in-Nest Crypto Acceleration
8960 M:      Breno Leitão <leitao@debian.org>
8961 M:      Nayna Jain <nayna@linux.ibm.com>
8962 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8963 L:      linux-crypto@vger.kernel.org
8964 S:      Supported
8965 F:      drivers/crypto/nx/Kconfig
8966 F:      drivers/crypto/nx/Makefile
8967 F:      drivers/crypto/nx/nx-aes*
8968 F:      drivers/crypto/nx/nx-sha*
8969 F:      drivers/crypto/nx/nx.*
8970 F:      drivers/crypto/nx/nx_csbcpb.h
8971 F:      drivers/crypto/nx/nx_debugfs.c
8972
8973 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8974 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8975 L:      linux-pci@vger.kernel.org
8976 L:      linuxppc-dev@lists.ozlabs.org
8977 S:      Supported
8978 F:      drivers/pci/hotplug/rpadlpar*
8979
8980 IBM Power Linux RAID adapter
8981 M:      Brian King <brking@us.ibm.com>
8982 S:      Supported
8983 F:      drivers/scsi/ipr.*
8984
8985 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8986 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8987 L:      linux-pci@vger.kernel.org
8988 L:      linuxppc-dev@lists.ozlabs.org
8989 S:      Supported
8990 F:      drivers/pci/hotplug/rpaphp*
8991
8992 IBM Power SRIOV Virtual NIC Device Driver
8993 M:      Dany Madden <drt@linux.ibm.com>
8994 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8995 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8996 L:      netdev@vger.kernel.org
8997 S:      Supported
8998 F:      drivers/net/ethernet/ibm/ibmvnic.*
8999
9000 IBM Power Virtual Accelerator Switchboard
9001 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9002 L:      linuxppc-dev@lists.ozlabs.org
9003 S:      Supported
9004 F:      arch/powerpc/include/asm/vas.h
9005 F:      arch/powerpc/platforms/powernv/copy-paste.h
9006 F:      arch/powerpc/platforms/powernv/vas*
9007
9008 IBM Power Virtual Ethernet Device Driver
9009 M:      Cristobal Forno <cforno12@linux.ibm.com>
9010 L:      netdev@vger.kernel.org
9011 S:      Supported
9012 F:      drivers/net/ethernet/ibm/ibmveth.*
9013
9014 IBM Power Virtual FC Device Drivers
9015 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9016 L:      linux-scsi@vger.kernel.org
9017 S:      Supported
9018 F:      drivers/scsi/ibmvscsi/ibmvfc*
9019
9020 IBM Power Virtual Management Channel Driver
9021 M:      Brad Warrum <bwarrum@linux.ibm.com>
9022 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9023 S:      Supported
9024 F:      drivers/misc/ibmvmc.*
9025
9026 IBM Power Virtual SCSI Device Drivers
9027 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9028 L:      linux-scsi@vger.kernel.org
9029 S:      Supported
9030 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9031 F:      include/scsi/viosrp.h
9032
9033 IBM Power Virtual SCSI Device Target Driver
9034 M:      Michael Cyr <mikecyr@linux.ibm.com>
9035 L:      linux-scsi@vger.kernel.org
9036 L:      target-devel@vger.kernel.org
9037 S:      Supported
9038 F:      drivers/scsi/ibmvscsi_tgt/
9039
9040 IBM Power VMX Cryptographic instructions
9041 M:      Breno Leitão <leitao@debian.org>
9042 M:      Nayna Jain <nayna@linux.ibm.com>
9043 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9044 L:      linux-crypto@vger.kernel.org
9045 S:      Supported
9046 F:      drivers/crypto/vmx/Kconfig
9047 F:      drivers/crypto/vmx/Makefile
9048 F:      drivers/crypto/vmx/aes*
9049 F:      drivers/crypto/vmx/ghash*
9050 F:      drivers/crypto/vmx/ppc-xlate.pl
9051 F:      drivers/crypto/vmx/vmx.c
9052
9053 IBM ServeRAID RAID DRIVER
9054 S:      Orphan
9055 F:      drivers/scsi/ips.*
9056
9057 ICH LPC AND GPIO DRIVER
9058 M:      Peter Tyser <ptyser@xes-inc.com>
9059 S:      Maintained
9060 F:      drivers/gpio/gpio-ich.c
9061 F:      drivers/mfd/lpc_ich.c
9062
9063 ICY I2C DRIVER
9064 M:      Max Staudt <max@enpas.org>
9065 L:      linux-i2c@vger.kernel.org
9066 S:      Maintained
9067 F:      drivers/i2c/busses/i2c-icy.c
9068
9069 IDEAPAD LAPTOP EXTRAS DRIVER
9070 M:      Ike Panhc <ike.pan@canonical.com>
9071 L:      platform-driver-x86@vger.kernel.org
9072 S:      Maintained
9073 W:      http://launchpad.net/ideapad-laptop
9074 F:      drivers/platform/x86/ideapad-laptop.c
9075
9076 IDEAPAD LAPTOP SLIDEBAR DRIVER
9077 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9078 L:      linux-input@vger.kernel.org
9079 S:      Maintained
9080 W:      https://github.com/o2genum/ideapad-slidebar
9081 F:      drivers/input/misc/ideapad_slidebar.c
9082
9083 IDT VersaClock 5 CLOCK DRIVER
9084 M:      Luca Ceresoli <luca@lucaceresoli.net>
9085 S:      Maintained
9086 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9087 F:      drivers/clk/clk-versaclock5.c
9088
9089 IEEE 802.15.4 SUBSYSTEM
9090 M:      Alexander Aring <alex.aring@gmail.com>
9091 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9092 L:      linux-wpan@vger.kernel.org
9093 S:      Maintained
9094 W:      https://linux-wpan.org/
9095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9097 F:      Documentation/networking/ieee802154.rst
9098 F:      drivers/net/ieee802154/
9099 F:      include/linux/ieee802154.h
9100 F:      include/linux/nl802154.h
9101 F:      include/net/af_ieee802154.h
9102 F:      include/net/cfg802154.h
9103 F:      include/net/ieee802154_netdev.h
9104 F:      include/net/mac802154.h
9105 F:      include/net/nl802154.h
9106 F:      net/ieee802154/
9107 F:      net/mac802154/
9108
9109 IFE PROTOCOL
9110 M:      Yotam Gigi <yotam.gi@gmail.com>
9111 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9112 F:      include/net/ife.h
9113 F:      include/uapi/linux/ife.h
9114 F:      net/ife
9115
9116 IGORPLUG-USB IR RECEIVER
9117 M:      Sean Young <sean@mess.org>
9118 L:      linux-media@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/media/rc/igorplugusb.c
9121
9122 IGUANAWORKS USB IR TRANSCEIVER
9123 M:      Sean Young <sean@mess.org>
9124 L:      linux-media@vger.kernel.org
9125 S:      Maintained
9126 F:      drivers/media/rc/iguanair.c
9127
9128 IIO DIGITAL POTENTIOMETER DAC
9129 M:      Peter Rosin <peda@axentia.se>
9130 L:      linux-iio@vger.kernel.org
9131 S:      Maintained
9132 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9133 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9134 F:      drivers/iio/dac/dpot-dac.c
9135
9136 IIO ENVELOPE DETECTOR
9137 M:      Peter Rosin <peda@axentia.se>
9138 L:      linux-iio@vger.kernel.org
9139 S:      Maintained
9140 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9141 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9142 F:      drivers/iio/adc/envelope-detector.c
9143
9144 IIO MULTIPLEXER
9145 M:      Peter Rosin <peda@axentia.se>
9146 L:      linux-iio@vger.kernel.org
9147 S:      Maintained
9148 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9149 F:      drivers/iio/multiplexer/iio-mux.c
9150
9151 IIO SCMI BASED DRIVER
9152 M:      Jyoti Bhayana <jbhayana@google.com>
9153 L:      linux-iio@vger.kernel.org
9154 S:      Maintained
9155 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9156
9157 IIO SUBSYSTEM AND DRIVERS
9158 M:      Jonathan Cameron <jic23@kernel.org>
9159 R:      Lars-Peter Clausen <lars@metafoo.de>
9160 L:      linux-iio@vger.kernel.org
9161 S:      Maintained
9162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9163 F:      Documentation/ABI/testing/configfs-iio*
9164 F:      Documentation/ABI/testing/sysfs-bus-iio*
9165 F:      Documentation/devicetree/bindings/iio/
9166 F:      drivers/iio/
9167 F:      drivers/staging/iio/
9168 F:      include/linux/iio/
9169 F:      tools/iio/
9170
9171 IIO UNIT CONVERTER
9172 M:      Peter Rosin <peda@axentia.se>
9173 L:      linux-iio@vger.kernel.org
9174 S:      Maintained
9175 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9176 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9177 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9178 F:      drivers/iio/afe/iio-rescale.c
9179
9180 IKANOS/ADI EAGLE ADSL USB DRIVER
9181 M:      Matthieu Castet <castet.matthieu@free.fr>
9182 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9183 S:      Maintained
9184 F:      drivers/usb/atm/ueagle-atm.c
9185
9186 IMGTEC ASCII LCD DRIVER
9187 M:      Paul Burton <paulburton@kernel.org>
9188 S:      Maintained
9189 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9190 F:      drivers/auxdisplay/img-ascii-lcd.c
9191
9192 IMGTEC IR DECODER DRIVER
9193 S:      Orphan
9194 F:      drivers/media/rc/img-ir/
9195
9196 IMON SOUNDGRAPH USB IR RECEIVER
9197 M:      Sean Young <sean@mess.org>
9198 L:      linux-media@vger.kernel.org
9199 S:      Maintained
9200 F:      drivers/media/rc/imon.c
9201 F:      drivers/media/rc/imon_raw.c
9202
9203 IMS TWINTURBO FRAMEBUFFER DRIVER
9204 L:      linux-fbdev@vger.kernel.org
9205 S:      Orphan
9206 F:      drivers/video/fbdev/imsttfb.c
9207
9208 INA209 HARDWARE MONITOR DRIVER
9209 M:      Guenter Roeck <linux@roeck-us.net>
9210 L:      linux-hwmon@vger.kernel.org
9211 S:      Maintained
9212 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9213 F:      Documentation/hwmon/ina209.rst
9214 F:      drivers/hwmon/ina209.c
9215
9216 INA2XX HARDWARE MONITOR DRIVER
9217 M:      Guenter Roeck <linux@roeck-us.net>
9218 L:      linux-hwmon@vger.kernel.org
9219 S:      Maintained
9220 F:      Documentation/hwmon/ina2xx.rst
9221 F:      drivers/hwmon/ina2xx.c
9222 F:      include/linux/platform_data/ina2xx.h
9223
9224 INDUSTRY PACK SUBSYSTEM (IPACK)
9225 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9226 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9227 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9228 L:      industrypack-devel@lists.sourceforge.net
9229 S:      Maintained
9230 W:      http://industrypack.sourceforge.net
9231 F:      drivers/ipack/
9232
9233 INFINEON DPS310 Driver
9234 M:      Eddie James <eajames@linux.ibm.com>
9235 L:      linux-iio@vger.kernel.org
9236 S:      Maintained
9237 F:      drivers/iio/pressure/dps310.c
9238
9239 INFINIBAND SUBSYSTEM
9240 M:      Doug Ledford <dledford@redhat.com>
9241 M:      Jason Gunthorpe <jgg@nvidia.com>
9242 L:      linux-rdma@vger.kernel.org
9243 S:      Supported
9244 W:      https://github.com/linux-rdma/rdma-core
9245 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9247 F:      Documentation/devicetree/bindings/infiniband/
9248 F:      Documentation/infiniband/
9249 F:      drivers/infiniband/
9250 F:      include/rdma/
9251 F:      include/trace/events/ib_mad.h
9252 F:      include/trace/events/ib_umad.h
9253 F:      include/uapi/linux/if_infiniband.h
9254 F:      include/uapi/rdma/
9255 F:      samples/bpf/ibumad_kern.c
9256 F:      samples/bpf/ibumad_user.c
9257
9258 INGENIC JZ4780 NAND DRIVER
9259 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9260 L:      linux-mtd@lists.infradead.org
9261 L:      linux-mips@vger.kernel.org
9262 S:      Maintained
9263 F:      drivers/mtd/nand/raw/ingenic/
9264
9265 INGENIC JZ47xx SoCs
9266 M:      Paul Cercueil <paul@crapouillou.net>
9267 L:      linux-mips@vger.kernel.org
9268 S:      Maintained
9269 F:      arch/mips/boot/dts/ingenic/
9270 F:      arch/mips/generic/board-ingenic.c
9271 F:      arch/mips/include/asm/mach-ingenic/
9272 F:      arch/mips/ingenic/Kconfig
9273 F:      drivers/clk/ingenic/
9274 F:      drivers/dma/dma-jz4780.c
9275 F:      drivers/gpu/drm/ingenic/
9276 F:      drivers/i2c/busses/i2c-jz4780.c
9277 F:      drivers/iio/adc/ingenic-adc.c
9278 F:      drivers/irqchip/irq-ingenic.c
9279 F:      drivers/memory/jz4780-nemc.c
9280 F:      drivers/mmc/host/jz4740_mmc.c
9281 F:      drivers/mtd/nand/raw/ingenic/
9282 F:      drivers/pinctrl/pinctrl-ingenic.c
9283 F:      drivers/power/supply/ingenic-battery.c
9284 F:      drivers/pwm/pwm-jz4740.c
9285 F:      drivers/remoteproc/ingenic_rproc.c
9286 F:      drivers/rtc/rtc-jz4740.c
9287 F:      drivers/tty/serial/8250/8250_ingenic.c
9288 F:      drivers/usb/musb/jz4740.c
9289 F:      drivers/watchdog/jz4740_wdt.c
9290 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9291 F:      include/linux/mfd/ingenic-tcu.h
9292 F:      sound/soc/codecs/jz47*
9293 F:      sound/soc/jz4740/
9294
9295 INOTIFY
9296 M:      Jan Kara <jack@suse.cz>
9297 R:      Amir Goldstein <amir73il@gmail.com>
9298 L:      linux-fsdevel@vger.kernel.org
9299 S:      Maintained
9300 F:      Documentation/filesystems/inotify.rst
9301 F:      fs/notify/inotify/
9302 F:      include/linux/inotify.h
9303 F:      include/uapi/linux/inotify.h
9304
9305 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9306 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9307 L:      linux-input@vger.kernel.org
9308 S:      Maintained
9309 Q:      http://patchwork.kernel.org/project/linux-input/list/
9310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9311 F:      Documentation/devicetree/bindings/input/
9312 F:      Documentation/devicetree/bindings/serio/
9313 F:      Documentation/input/
9314 F:      drivers/input/
9315 F:      include/linux/input.h
9316 F:      include/linux/input/
9317 F:      include/uapi/linux/input-event-codes.h
9318 F:      include/uapi/linux/input.h
9319
9320 INPUT MULTITOUCH (MT) PROTOCOL
9321 M:      Henrik Rydberg <rydberg@bitmath.org>
9322 L:      linux-input@vger.kernel.org
9323 S:      Odd fixes
9324 F:      Documentation/input/multi-touch-protocol.rst
9325 F:      drivers/input/input-mt.c
9326 K:      \b(ABS|SYN)_MT_
9327
9328 INSIDE SECURE CRYPTO DRIVER
9329 M:      Antoine Tenart <atenart@kernel.org>
9330 L:      linux-crypto@vger.kernel.org
9331 S:      Maintained
9332 F:      drivers/crypto/inside-secure/
9333
9334 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9335 M:      Mimi Zohar <zohar@linux.ibm.com>
9336 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9337 L:      linux-integrity@vger.kernel.org
9338 S:      Supported
9339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9340 F:      security/integrity/ima/
9341
9342 INTEL 810/815 FRAMEBUFFER DRIVER
9343 M:      Antonino Daplas <adaplas@gmail.com>
9344 L:      linux-fbdev@vger.kernel.org
9345 S:      Maintained
9346 F:      drivers/video/fbdev/i810/
9347
9348 INTEL ASoC DRIVERS
9349 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9350 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9351 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9352 M:      Jie Yang <yang.jie@linux.intel.com>
9353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9354 S:      Supported
9355 F:      sound/soc/intel/
9356
9357 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9358 M:      Hans de Goede <hdegoede@redhat.com>
9359 L:      platform-driver-x86@vger.kernel.org
9360 S:      Maintained
9361 F:      drivers/platform/x86/intel/atomisp2/pm.c
9362
9363 INTEL ATOMISP2 LED DRIVER
9364 M:      Hans de Goede <hdegoede@redhat.com>
9365 L:      platform-driver-x86@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/platform/x86/intel/atomisp2/led.c
9368
9369 INTEL BIOS SAR INT1092 DRIVER
9370 M:      Shravan Sudhakar <s.shravan@intel.com>
9371 M:      Intel Corporation <linuxwwan@intel.com>
9372 L:      platform-driver-x86@vger.kernel.org
9373 S:      Maintained
9374 F:      drivers/platform/x86/intel/int1092/
9375
9376 INTEL BROXTON PMC DRIVER
9377 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9378 M:      Zha Qipeng <qipeng.zha@intel.com>
9379 S:      Maintained
9380 F:      drivers/mfd/intel_pmc_bxt.c
9381 F:      include/linux/mfd/intel_pmc_bxt.h
9382
9383 INTEL C600 SERIES SAS CONTROLLER DRIVER
9384 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9385 L:      linux-scsi@vger.kernel.org
9386 S:      Supported
9387 T:      git git://git.code.sf.net/p/intel-sas/isci
9388 F:      drivers/scsi/isci/
9389
9390 INTEL CPU family model numbers
9391 M:      Tony Luck <tony.luck@intel.com>
9392 M:      x86@kernel.org
9393 L:      linux-kernel@vger.kernel.org
9394 S:      Supported
9395 F:      arch/x86/include/asm/intel-family.h
9396
9397 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9398 M:      Jani Nikula <jani.nikula@linux.intel.com>
9399 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9400 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9401 L:      intel-gfx@lists.freedesktop.org
9402 S:      Supported
9403 W:      https://01.org/linuxgraphics/
9404 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9405 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9406 C:      irc://irc.oftc.net/intel-gfx
9407 T:      git git://anongit.freedesktop.org/drm-intel
9408 F:      Documentation/gpu/i915.rst
9409 F:      drivers/gpu/drm/i915/
9410 F:      include/drm/i915*
9411 F:      include/uapi/drm/i915_drm.h
9412
9413 INTEL ETHERNET DRIVERS
9414 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9415 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9416 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9417 S:      Supported
9418 W:      http://www.intel.com/support/feedback.htm
9419 W:      http://e1000.sourceforge.net/
9420 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9423 F:      Documentation/networking/device_drivers/ethernet/intel/
9424 F:      drivers/net/ethernet/intel/
9425 F:      drivers/net/ethernet/intel/*/
9426 F:      include/linux/avf/virtchnl.h
9427 F:      include/linux/net/intel/iidc.h
9428
9429 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9430 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9431 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9432 L:      linux-rdma@vger.kernel.org
9433 S:      Supported
9434 F:      drivers/infiniband/hw/irdma/
9435 F:      include/uapi/rdma/irdma-abi.h
9436
9437 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9438 M:      Maik Broemme <mbroemme@libmpq.org>
9439 L:      linux-fbdev@vger.kernel.org
9440 S:      Maintained
9441 F:      Documentation/fb/intelfb.rst
9442 F:      drivers/video/fbdev/intelfb/
9443
9444 INTEL GPIO DRIVERS
9445 M:      Andy Shevchenko <andy@kernel.org>
9446 L:      linux-gpio@vger.kernel.org
9447 S:      Maintained
9448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9449 F:      drivers/gpio/gpio-ich.c
9450 F:      drivers/gpio/gpio-merrifield.c
9451 F:      drivers/gpio/gpio-ml-ioh.c
9452 F:      drivers/gpio/gpio-pch.c
9453 F:      drivers/gpio/gpio-sch.c
9454 F:      drivers/gpio/gpio-sodaville.c
9455
9456 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9457 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9458 M:      Zhi Wang <zhi.a.wang@intel.com>
9459 L:      intel-gvt-dev@lists.freedesktop.org
9460 L:      intel-gfx@lists.freedesktop.org
9461 S:      Supported
9462 W:      https://01.org/igvt-g
9463 T:      git https://github.com/intel/gvt-linux.git
9464 F:      drivers/gpu/drm/i915/gvt/
9465
9466 INTEL HID EVENT DRIVER
9467 M:      Alex Hung <alex.hung@canonical.com>
9468 L:      platform-driver-x86@vger.kernel.org
9469 S:      Maintained
9470 F:      drivers/platform/x86/intel/hid.c
9471
9472 INTEL I/OAT DMA DRIVER
9473 M:      Dave Jiang <dave.jiang@intel.com>
9474 R:      Dan Williams <dan.j.williams@intel.com>
9475 L:      dmaengine@vger.kernel.org
9476 S:      Supported
9477 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9478 F:      drivers/dma/ioat*
9479
9480 INTEL IADX DRIVER
9481 M:      Dave Jiang <dave.jiang@intel.com>
9482 L:      dmaengine@vger.kernel.org
9483 S:      Supported
9484 F:      drivers/dma/idxd/*
9485 F:      include/uapi/linux/idxd.h
9486
9487 INTEL IDLE DRIVER
9488 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9489 M:      Len Brown <lenb@kernel.org>
9490 L:      linux-pm@vger.kernel.org
9491 S:      Supported
9492 B:      https://bugzilla.kernel.org
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9494 F:      drivers/idle/intel_idle.c
9495
9496 INTEL INTEGRATED SENSOR HUB DRIVER
9497 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9498 M:      Jiri Kosina <jikos@kernel.org>
9499 L:      linux-input@vger.kernel.org
9500 S:      Maintained
9501 F:      drivers/hid/intel-ish-hid/
9502
9503 INTEL IOMMU (VT-d)
9504 M:      David Woodhouse <dwmw2@infradead.org>
9505 M:      Lu Baolu <baolu.lu@linux.intel.com>
9506 L:      iommu@lists.linux-foundation.org
9507 S:      Supported
9508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9509 F:      drivers/iommu/intel/
9510 F:      include/linux/intel-iommu.h
9511 F:      include/linux/intel-svm.h
9512
9513 INTEL IOP-ADMA DMA DRIVER
9514 R:      Dan Williams <dan.j.williams@intel.com>
9515 S:      Odd fixes
9516 F:      drivers/dma/iop-adma.c
9517
9518 INTEL IPU3 CSI-2 CIO2 DRIVER
9519 M:      Yong Zhi <yong.zhi@intel.com>
9520 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9521 M:      Bingbu Cao <bingbu.cao@intel.com>
9522 M:      Dan Scally <djrscally@gmail.com>
9523 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9524 L:      linux-media@vger.kernel.org
9525 S:      Maintained
9526 T:      git git://linuxtv.org/media_tree.git
9527 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9528 F:      drivers/media/pci/intel/ipu3/
9529
9530 INTEL IPU3 CSI-2 IMGU DRIVER
9531 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9532 R:      Bingbu Cao <bingbu.cao@intel.com>
9533 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9534 L:      linux-media@vger.kernel.org
9535 S:      Maintained
9536 F:      Documentation/admin-guide/media/ipu3.rst
9537 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9538 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9539 F:      drivers/staging/media/ipu3/
9540
9541 INTEL IXP4XX CRYPTO SUPPORT
9542 M:      Corentin Labbe <clabbe@baylibre.com>
9543 L:      linux-crypto@vger.kernel.org
9544 S:      Maintained
9545 F:      drivers/crypto/ixp4xx_crypto.c
9546
9547 INTEL ISHTP ECLITE DRIVER
9548 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9549 L:      platform-driver-x86@vger.kernel.org
9550 S:      Supported
9551 F:      drivers/platform/x86/intel/ishtp_eclite.c
9552
9553 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9554 M:      Krzysztof Halasa <khalasa@piap.pl>
9555 S:      Maintained
9556 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9557 F:      drivers/net/wan/ixp4xx_hss.c
9558 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9559 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9560 F:      include/linux/soc/ixp4xx/npe.h
9561 F:      include/linux/soc/ixp4xx/qmgr.h
9562
9563 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9564 M:      Deepak Saxena <dsaxena@plexity.net>
9565 S:      Maintained
9566 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9567 F:      drivers/char/hw_random/ixp4xx-rng.c
9568
9569 INTEL KEEM BAY DRM DRIVER
9570 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9571 M:      Edmund Dea <edmund.j.dea@intel.com>
9572 S:      Maintained
9573 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9574 F:      drivers/gpu/drm/kmb/
9575
9576 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9577 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9578 S:      Maintained
9579 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9580 F:      drivers/crypto/keembay/Kconfig
9581 F:      drivers/crypto/keembay/Makefile
9582 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9583 F:      drivers/crypto/keembay/ocs-aes.c
9584 F:      drivers/crypto/keembay/ocs-aes.h
9585
9586 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9587 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9588 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9589 M:      Mark Gross <mgross@linux.intel.com>
9590 S:      Maintained
9591 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9592 F:      drivers/crypto/keembay/Kconfig
9593 F:      drivers/crypto/keembay/Makefile
9594 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9595 F:      drivers/crypto/keembay/ocs-ecc-curve-defs.h
9596
9597 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9598 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9599 M:      Declan Murphy <declan.murphy@intel.com>
9600 S:      Maintained
9601 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9602 F:      drivers/crypto/keembay/Kconfig
9603 F:      drivers/crypto/keembay/Makefile
9604 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9605 F:      drivers/crypto/keembay/ocs-hcu.c
9606 F:      drivers/crypto/keembay/ocs-hcu.h
9607
9608 INTEL MANAGEMENT ENGINE (mei)
9609 M:      Tomas Winkler <tomas.winkler@intel.com>
9610 L:      linux-kernel@vger.kernel.org
9611 S:      Supported
9612 F:      Documentation/driver-api/mei/*
9613 F:      drivers/misc/mei/
9614 F:      drivers/watchdog/mei_wdt.c
9615 F:      include/linux/mei_cl_bus.h
9616 F:      include/uapi/linux/mei.h
9617 F:      samples/mei/*
9618
9619 INTEL MAX 10 BMC MFD DRIVER
9620 M:      Xu Yilun <yilun.xu@intel.com>
9621 R:      Tom Rix <trix@redhat.com>
9622 S:      Maintained
9623 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9624 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9625 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9626 F:      drivers/mfd/intel-m10-bmc.c
9627 F:      include/linux/mfd/intel-m10-bmc.h
9628
9629 INTEL MENLOW THERMAL DRIVER
9630 M:      Sujith Thomas <sujith.thomas@intel.com>
9631 L:      linux-pm@vger.kernel.org
9632 S:      Supported
9633 W:      https://01.org/linux-acpi
9634 F:      drivers/thermal/intel/intel_menlow.c
9635
9636 INTEL P-Unit IPC DRIVER
9637 M:      Zha Qipeng <qipeng.zha@intel.com>
9638 L:      platform-driver-x86@vger.kernel.org
9639 S:      Maintained
9640 F:      arch/x86/include/asm/intel_punit_ipc.h
9641 F:      drivers/platform/x86/intel/punit_ipc.c
9642
9643 INTEL PMC CORE DRIVER
9644 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9645 M:      David E Box <david.e.box@intel.com>
9646 L:      platform-driver-x86@vger.kernel.org
9647 S:      Maintained
9648 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9649 F:      drivers/platform/x86/intel/pmc/
9650
9651 INTEL PMIC GPIO DRIVERS
9652 M:      Andy Shevchenko <andy@kernel.org>
9653 S:      Maintained
9654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9655 F:      drivers/gpio/gpio-*cove.c
9656
9657 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9658 M:      Andy Shevchenko <andy@kernel.org>
9659 S:      Maintained
9660 F:      drivers/mfd/intel_soc_pmic*
9661 F:      include/linux/mfd/intel_soc_pmic*
9662
9663 INTEL PMT DRIVER
9664 M:      "David E. Box" <david.e.box@linux.intel.com>
9665 S:      Maintained
9666 F:      drivers/mfd/intel_pmt.c
9667 F:      drivers/platform/x86/intel/pmt/
9668
9669 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9670 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9671 L:      linux-wireless@vger.kernel.org
9672 S:      Maintained
9673 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9674 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9675 F:      drivers/net/wireless/intel/ipw2x00/
9676
9677 INTEL PSTATE DRIVER
9678 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9679 M:      Len Brown <lenb@kernel.org>
9680 L:      linux-pm@vger.kernel.org
9681 S:      Supported
9682 F:      drivers/cpufreq/intel_pstate.c
9683
9684 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9685 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9686 L:      linux-iio@vger.kernel.org
9687 F:      drivers/counter/intel-qep.c
9688
9689 INTEL SCU DRIVERS
9690 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9691 S:      Maintained
9692 F:      arch/x86/include/asm/intel_scu_ipc.h
9693 F:      drivers/platform/x86/intel_scu_*
9694
9695 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9696 M:      Daniel Scally <djrscally@gmail.com>
9697 S:      Maintained
9698 F:      drivers/platform/x86/intel/int3472/
9699
9700 INTEL SPEED SELECT TECHNOLOGY
9701 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9702 L:      platform-driver-x86@vger.kernel.org
9703 S:      Maintained
9704 F:      drivers/platform/x86/intel/speed_select_if/
9705 F:      include/uapi/linux/isst_if.h
9706 F:      tools/power/x86/intel-speed-select/
9707
9708 INTEL STRATIX10 FIRMWARE DRIVERS
9709 M:      Dinh Nguyen <dinguyen@kernel.org>
9710 L:      linux-kernel@vger.kernel.org
9711 S:      Maintained
9712 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9713 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9714 F:      drivers/firmware/stratix10-rsu.c
9715 F:      drivers/firmware/stratix10-svc.c
9716 F:      include/linux/firmware/intel/stratix10-smc.h
9717 F:      include/linux/firmware/intel/stratix10-svc-client.h
9718
9719 INTEL TELEMETRY DRIVER
9720 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9721 M:      "David E. Box" <david.e.box@linux.intel.com>
9722 L:      platform-driver-x86@vger.kernel.org
9723 S:      Maintained
9724 F:      arch/x86/include/asm/intel_telemetry.h
9725 F:      drivers/platform/x86/intel/telemetry/
9726
9727 INTEL UNCORE FREQUENCY CONTROL
9728 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9729 L:      platform-driver-x86@vger.kernel.org
9730 S:      Maintained
9731 F:      drivers/platform/x86/intel/uncore-frequency.c
9732
9733 INTEL VIRTUAL BUTTON DRIVER
9734 M:      AceLan Kao <acelan.kao@canonical.com>
9735 L:      platform-driver-x86@vger.kernel.org
9736 S:      Maintained
9737 F:      drivers/platform/x86/intel/vbtn.c
9738
9739 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9740 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9741 L:      linux-wireless@vger.kernel.org
9742 S:      Supported
9743 F:      drivers/net/wireless/intel/iwlegacy/
9744
9745 INTEL WIRELESS WIFI LINK (iwlwifi)
9746 M:      Luca Coelho <luciano.coelho@intel.com>
9747 L:      linux-wireless@vger.kernel.org
9748 S:      Supported
9749 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9751 F:      drivers/net/wireless/intel/iwlwifi/
9752
9753 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9754 M:      Jithu Joseph <jithu.joseph@intel.com>
9755 R:      Maurice Ma <maurice.ma@intel.com>
9756 S:      Maintained
9757 W:      https://slimbootloader.github.io/security/firmware-update.html
9758 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9759
9760 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9761 L:      Dell.Client.Kernel@dell.com
9762 S:      Maintained
9763 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9764
9765 INTEL WWAN IOSM DRIVER
9766 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9767 M:      Intel Corporation <linuxwwan@intel.com>
9768 L:      netdev@vger.kernel.org
9769 S:      Maintained
9770 F:      drivers/net/wwan/iosm/
9771
9772 INTEL(R) TRACE HUB
9773 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9774 S:      Supported
9775 F:      Documentation/trace/intel_th.rst
9776 F:      drivers/hwtracing/intel_th/
9777 F:      include/linux/intel_th.h
9778
9779 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9780 M:      Ning Sun <ning.sun@intel.com>
9781 L:      tboot-devel@lists.sourceforge.net
9782 S:      Supported
9783 W:      http://tboot.sourceforge.net
9784 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9785 F:      Documentation/x86/intel_txt.rst
9786 F:      arch/x86/kernel/tboot.c
9787 F:      include/linux/tboot.h
9788
9789 INTEL SGX
9790 M:      Jarkko Sakkinen <jarkko@kernel.org>
9791 R:      Dave Hansen <dave.hansen@linux.intel.com>
9792 L:      linux-sgx@vger.kernel.org
9793 S:      Supported
9794 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9796 F:      Documentation/x86/sgx.rst
9797 F:      arch/x86/entry/vdso/vsgx.S
9798 F:      arch/x86/include/asm/sgx.h
9799 F:      arch/x86/include/uapi/asm/sgx.h
9800 F:      arch/x86/kernel/cpu/sgx/*
9801 F:      tools/testing/selftests/sgx/*
9802 K:      \bSGX_
9803
9804 INTERCONNECT API
9805 M:      Georgi Djakov <djakov@kernel.org>
9806 L:      linux-pm@vger.kernel.org
9807 S:      Maintained
9808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9809 F:      Documentation/devicetree/bindings/interconnect/
9810 F:      Documentation/driver-api/interconnect.rst
9811 F:      drivers/interconnect/
9812 F:      include/dt-bindings/interconnect/
9813 F:      include/linux/interconnect-provider.h
9814 F:      include/linux/interconnect.h
9815
9816 INTERRUPT COUNTER DRIVER
9817 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9818 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9819 L:      linux-iio@vger.kernel.org
9820 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9821 F:      drivers/counter/interrupt-cnt.c
9822
9823 INVENSENSE ICM-426xx IMU DRIVER
9824 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9825 L:      linux-iio@vger.kernel.org
9826 S:      Maintained
9827 W:      https://invensense.tdk.com/
9828 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9829 F:      drivers/iio/imu/inv_icm42600/
9830
9831 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9832 M:      Linus Walleij <linus.walleij@linaro.org>
9833 L:      linux-iio@vger.kernel.org
9834 S:      Maintained
9835 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9836 F:      drivers/iio/gyro/mpu3050*
9837
9838 IOC3 ETHERNET DRIVER
9839 M:      Ralf Baechle <ralf@linux-mips.org>
9840 L:      linux-mips@vger.kernel.org
9841 S:      Maintained
9842 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9843
9844 IOMAP FILESYSTEM LIBRARY
9845 M:      Christoph Hellwig <hch@infradead.org>
9846 M:      Darrick J. Wong <djwong@kernel.org>
9847 M:      linux-xfs@vger.kernel.org
9848 M:      linux-fsdevel@vger.kernel.org
9849 L:      linux-xfs@vger.kernel.org
9850 L:      linux-fsdevel@vger.kernel.org
9851 S:      Supported
9852 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9853 F:      fs/iomap/
9854 F:      include/linux/iomap.h
9855
9856 IOMMU DRIVERS
9857 M:      Joerg Roedel <joro@8bytes.org>
9858 M:      Will Deacon <will@kernel.org>
9859 L:      iommu@lists.linux-foundation.org
9860 S:      Maintained
9861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9862 F:      Documentation/devicetree/bindings/iommu/
9863 F:      Documentation/userspace-api/iommu.rst
9864 F:      drivers/iommu/
9865 F:      include/linux/iommu.h
9866 F:      include/linux/iova.h
9867 F:      include/linux/of_iommu.h
9868 F:      include/uapi/linux/iommu.h
9869
9870 IO_URING
9871 M:      Jens Axboe <axboe@kernel.dk>
9872 R:      Pavel Begunkov <asml.silence@gmail.com>
9873 L:      io-uring@vger.kernel.org
9874 S:      Maintained
9875 T:      git git://git.kernel.dk/linux-block
9876 T:      git git://git.kernel.dk/liburing
9877 F:      fs/io-wq.c
9878 F:      fs/io-wq.h
9879 F:      fs/io_uring.c
9880 F:      include/linux/io_uring.h
9881 F:      include/uapi/linux/io_uring.h
9882 F:      tools/io_uring/
9883
9884 IPMI SUBSYSTEM
9885 M:      Corey Minyard <minyard@acm.org>
9886 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9887 S:      Supported
9888 W:      http://openipmi.sourceforge.net/
9889 F:      Documentation/driver-api/ipmi.rst
9890 F:      Documentation/devicetree/bindings/ipmi/
9891 F:      drivers/char/ipmi/
9892 F:      include/linux/ipmi*
9893 F:      include/uapi/linux/ipmi*
9894
9895 IPS SCSI RAID DRIVER
9896 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9897 L:      linux-scsi@vger.kernel.org
9898 S:      Maintained
9899 W:      http://www.adaptec.com/
9900 F:      drivers/scsi/ips*
9901
9902 IPVS
9903 M:      Simon Horman <horms@verge.net.au>
9904 M:      Julian Anastasov <ja@ssi.bg>
9905 L:      netdev@vger.kernel.org
9906 L:      lvs-devel@vger.kernel.org
9907 S:      Maintained
9908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9910 F:      Documentation/networking/ipvs-sysctl.rst
9911 F:      include/net/ip_vs.h
9912 F:      include/uapi/linux/ip_vs.h
9913 F:      net/netfilter/ipvs/
9914
9915 IPWIRELESS DRIVER
9916 M:      Jiri Kosina <jikos@kernel.org>
9917 M:      David Sterba <dsterba@suse.com>
9918 S:      Odd Fixes
9919 F:      drivers/tty/ipwireless/
9920
9921 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9922 M:      Marc Zyngier <maz@kernel.org>
9923 S:      Maintained
9924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9925 F:      Documentation/core-api/irq/irq-domain.rst
9926 F:      include/linux/irqdomain.h
9927 F:      kernel/irq/irqdomain.c
9928 F:      kernel/irq/msi.c
9929
9930 IRQ SUBSYSTEM
9931 M:      Thomas Gleixner <tglx@linutronix.de>
9932 L:      linux-kernel@vger.kernel.org
9933 S:      Maintained
9934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9935 F:      kernel/irq/
9936
9937 IRQCHIP DRIVERS
9938 M:      Thomas Gleixner <tglx@linutronix.de>
9939 M:      Marc Zyngier <maz@kernel.org>
9940 L:      linux-kernel@vger.kernel.org
9941 S:      Maintained
9942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9943 F:      Documentation/devicetree/bindings/interrupt-controller/
9944 F:      drivers/irqchip/
9945
9946 ISA
9947 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9948 S:      Maintained
9949 F:      Documentation/driver-api/isa.rst
9950 F:      drivers/base/isa.c
9951 F:      include/linux/isa.h
9952
9953 ISA RADIO MODULE
9954 M:      Hans Verkuil <hverkuil@xs4all.nl>
9955 L:      linux-media@vger.kernel.org
9956 S:      Maintained
9957 W:      https://linuxtv.org
9958 T:      git git://linuxtv.org/media_tree.git
9959 F:      drivers/media/radio/radio-isa*
9960
9961 ISAPNP
9962 M:      Jaroslav Kysela <perex@perex.cz>
9963 S:      Maintained
9964 F:      Documentation/driver-api/isapnp.rst
9965 F:      drivers/pnp/isapnp/
9966 F:      include/linux/isapnp.h
9967
9968 ISCSI
9969 M:      Lee Duncan <lduncan@suse.com>
9970 M:      Chris Leech <cleech@redhat.com>
9971 L:      open-iscsi@googlegroups.com
9972 L:      linux-scsi@vger.kernel.org
9973 S:      Maintained
9974 W:      www.open-iscsi.com
9975 F:      drivers/scsi/*iscsi*
9976 F:      include/scsi/*iscsi*
9977
9978 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9979 M:      Peter Jones <pjones@redhat.com>
9980 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9981 S:      Maintained
9982 F:      drivers/firmware/iscsi_ibft*
9983
9984 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9985 M:      Sagi Grimberg <sagi@grimberg.me>
9986 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9987 L:      linux-rdma@vger.kernel.org
9988 S:      Supported
9989 W:      http://www.openfabrics.org
9990 W:      www.open-iscsi.org
9991 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9992 F:      drivers/infiniband/ulp/iser/
9993
9994 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9995 M:      Sagi Grimberg <sagi@grimberg.me>
9996 L:      linux-rdma@vger.kernel.org
9997 L:      target-devel@vger.kernel.org
9998 S:      Supported
9999 W:      http://www.linux-iscsi.org
10000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10001 F:      drivers/infiniband/ulp/isert
10002
10003 ISDN/CMTP OVER BLUETOOTH
10004 M:      Karsten Keil <isdn@linux-pingi.de>
10005 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10006 L:      netdev@vger.kernel.org
10007 S:      Odd Fixes
10008 W:      http://www.isdn4linux.de
10009 F:      Documentation/isdn/
10010 F:      drivers/isdn/capi/
10011 F:      include/linux/isdn/
10012 F:      include/uapi/linux/isdn/
10013 F:      net/bluetooth/cmtp/
10014
10015 ISDN/mISDN SUBSYSTEM
10016 M:      Karsten Keil <isdn@linux-pingi.de>
10017 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10018 L:      netdev@vger.kernel.org
10019 S:      Maintained
10020 W:      http://www.isdn4linux.de
10021 F:      drivers/isdn/Kconfig
10022 F:      drivers/isdn/Makefile
10023 F:      drivers/isdn/hardware/
10024 F:      drivers/isdn/mISDN/
10025
10026 IT87 HARDWARE MONITORING DRIVER
10027 M:      Jean Delvare <jdelvare@suse.com>
10028 L:      linux-hwmon@vger.kernel.org
10029 S:      Maintained
10030 F:      Documentation/hwmon/it87.rst
10031 F:      drivers/hwmon/it87.c
10032
10033 IT913X MEDIA DRIVER
10034 M:      Antti Palosaari <crope@iki.fi>
10035 L:      linux-media@vger.kernel.org
10036 S:      Maintained
10037 W:      https://linuxtv.org
10038 W:      http://palosaari.fi/linux/
10039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10040 T:      git git://linuxtv.org/anttip/media_tree.git
10041 F:      drivers/media/tuners/it913x*
10042
10043 ITE IT66121 HDMI BRIDGE DRIVER
10044 M:      Phong LE <ple@baylibre.com>
10045 M:      Neil Armstrong <narmstrong@baylibre.com>
10046 S:      Maintained
10047 T:      git git://anongit.freedesktop.org/drm/drm-misc
10048 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10049 F:      drivers/gpu/drm/bridge/ite-it66121.c
10050
10051 IVTV VIDEO4LINUX DRIVER
10052 M:      Andy Walls <awalls@md.metrocast.net>
10053 L:      linux-media@vger.kernel.org
10054 S:      Maintained
10055 W:      https://linuxtv.org
10056 T:      git git://linuxtv.org/media_tree.git
10057 F:      Documentation/admin-guide/media/ivtv*
10058 F:      drivers/media/pci/ivtv/
10059 F:      include/uapi/linux/ivtv*
10060
10061 IX2505V MEDIA DRIVER
10062 M:      Malcolm Priestley <tvboxspy@gmail.com>
10063 L:      linux-media@vger.kernel.org
10064 S:      Maintained
10065 W:      https://linuxtv.org
10066 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10067 F:      drivers/media/dvb-frontends/ix2505v*
10068
10069 JAILHOUSE HYPERVISOR INTERFACE
10070 M:      Jan Kiszka <jan.kiszka@siemens.com>
10071 L:      jailhouse-dev@googlegroups.com
10072 S:      Maintained
10073 F:      arch/x86/include/asm/jailhouse_para.h
10074 F:      arch/x86/kernel/jailhouse.c
10075
10076 JC42.4 TEMPERATURE SENSOR DRIVER
10077 M:      Guenter Roeck <linux@roeck-us.net>
10078 L:      linux-hwmon@vger.kernel.org
10079 S:      Maintained
10080 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10081 F:      Documentation/hwmon/jc42.rst
10082 F:      drivers/hwmon/jc42.c
10083
10084 JFS FILESYSTEM
10085 M:      Dave Kleikamp <shaggy@kernel.org>
10086 L:      jfs-discussion@lists.sourceforge.net
10087 S:      Maintained
10088 W:      http://jfs.sourceforge.net/
10089 T:      git git://github.com/kleikamp/linux-shaggy.git
10090 F:      Documentation/admin-guide/jfs.rst
10091 F:      fs/jfs/
10092
10093 JME NETWORK DRIVER
10094 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10095 L:      netdev@vger.kernel.org
10096 S:      Maintained
10097 F:      drivers/net/ethernet/jme.*
10098
10099 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10100 M:      David Woodhouse <dwmw2@infradead.org>
10101 M:      Richard Weinberger <richard@nod.at>
10102 L:      linux-mtd@lists.infradead.org
10103 S:      Odd Fixes
10104 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10105 T:      git git://git.infradead.org/ubifs-2.6.git
10106 F:      fs/jffs2/
10107 F:      include/uapi/linux/jffs2.h
10108
10109 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10110 M:      "Theodore Ts'o" <tytso@mit.edu>
10111 M:      Jan Kara <jack@suse.com>
10112 L:      linux-ext4@vger.kernel.org
10113 S:      Maintained
10114 F:      fs/jbd2/
10115 F:      include/linux/jbd2.h
10116
10117 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10118 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10119 L:      linux-media@vger.kernel.org
10120 L:      linux-renesas-soc@vger.kernel.org
10121 S:      Maintained
10122 F:      drivers/media/platform/rcar_jpu.c
10123
10124 JSM Neo PCI based serial card
10125 L:      linux-serial@vger.kernel.org
10126 S:      Orphan
10127 F:      drivers/tty/serial/jsm/
10128
10129 K10TEMP HARDWARE MONITORING DRIVER
10130 M:      Clemens Ladisch <clemens@ladisch.de>
10131 L:      linux-hwmon@vger.kernel.org
10132 S:      Maintained
10133 F:      Documentation/hwmon/k10temp.rst
10134 F:      drivers/hwmon/k10temp.c
10135
10136 K8TEMP HARDWARE MONITORING DRIVER
10137 M:      Rudolf Marek <r.marek@assembler.cz>
10138 L:      linux-hwmon@vger.kernel.org
10139 S:      Maintained
10140 F:      Documentation/hwmon/k8temp.rst
10141 F:      drivers/hwmon/k8temp.c
10142
10143 KASAN
10144 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10145 R:      Alexander Potapenko <glider@google.com>
10146 R:      Andrey Konovalov <andreyknvl@gmail.com>
10147 R:      Dmitry Vyukov <dvyukov@google.com>
10148 L:      kasan-dev@googlegroups.com
10149 S:      Maintained
10150 F:      Documentation/dev-tools/kasan.rst
10151 F:      arch/*/include/asm/*kasan.h
10152 F:      arch/*/mm/kasan_init*
10153 F:      include/linux/kasan*.h
10154 F:      lib/Kconfig.kasan
10155 F:      lib/test_kasan*.c
10156 F:      mm/kasan/
10157 F:      scripts/Makefile.kasan
10158
10159 KCONFIG
10160 M:      Masahiro Yamada <masahiroy@kernel.org>
10161 L:      linux-kbuild@vger.kernel.org
10162 S:      Maintained
10163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10164 F:      Documentation/kbuild/kconfig*
10165 F:      scripts/Kconfig.include
10166 F:      scripts/kconfig/
10167
10168 KCOV
10169 R:      Dmitry Vyukov <dvyukov@google.com>
10170 R:      Andrey Konovalov <andreyknvl@gmail.com>
10171 L:      kasan-dev@googlegroups.com
10172 S:      Maintained
10173 F:      Documentation/dev-tools/kcov.rst
10174 F:      include/linux/kcov.h
10175 F:      include/uapi/linux/kcov.h
10176 F:      kernel/kcov.c
10177 F:      scripts/Makefile.kcov
10178
10179 KCSAN
10180 M:      Marco Elver <elver@google.com>
10181 R:      Dmitry Vyukov <dvyukov@google.com>
10182 L:      kasan-dev@googlegroups.com
10183 S:      Maintained
10184 F:      Documentation/dev-tools/kcsan.rst
10185 F:      include/linux/kcsan*.h
10186 F:      kernel/kcsan/
10187 F:      lib/Kconfig.kcsan
10188 F:      scripts/Makefile.kcsan
10189
10190 KDUMP
10191 M:      Dave Young <dyoung@redhat.com>
10192 M:      Baoquan He <bhe@redhat.com>
10193 R:      Vivek Goyal <vgoyal@redhat.com>
10194 L:      kexec@lists.infradead.org
10195 S:      Maintained
10196 W:      http://lse.sourceforge.net/kdump/
10197 F:      Documentation/admin-guide/kdump/
10198 F:      fs/proc/vmcore.c
10199 F:      include/linux/crash_core.h
10200 F:      include/linux/crash_dump.h
10201 F:      include/uapi/linux/vmcore.h
10202 F:      kernel/crash_*.c
10203
10204 KEENE FM RADIO TRANSMITTER DRIVER
10205 M:      Hans Verkuil <hverkuil@xs4all.nl>
10206 L:      linux-media@vger.kernel.org
10207 S:      Maintained
10208 W:      https://linuxtv.org
10209 T:      git git://linuxtv.org/media_tree.git
10210 F:      drivers/media/radio/radio-keene*
10211
10212 KERNEL AUTOMOUNTER
10213 M:      Ian Kent <raven@themaw.net>
10214 L:      autofs@vger.kernel.org
10215 S:      Maintained
10216 F:      fs/autofs/
10217
10218 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10219 M:      Masahiro Yamada <masahiroy@kernel.org>
10220 M:      Michal Marek <michal.lkml@markovi.net>
10221 R:      Nick Desaulniers <ndesaulniers@google.com>
10222 L:      linux-kbuild@vger.kernel.org
10223 S:      Maintained
10224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10225 F:      Documentation/kbuild/
10226 F:      Makefile
10227 F:      scripts/*vmlinux*
10228 F:      scripts/Kbuild*
10229 F:      scripts/Makefile*
10230 F:      scripts/basic/
10231 F:      scripts/dummy-tools/
10232 F:      scripts/mk*
10233 F:      scripts/mod/
10234 F:      scripts/package/
10235
10236 KERNEL JANITORS
10237 L:      kernel-janitors@vger.kernel.org
10238 S:      Odd Fixes
10239 W:      http://kernelnewbies.org/KernelJanitors
10240
10241 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10242 M:      "J. Bruce Fields" <bfields@fieldses.org>
10243 M:      Chuck Lever <chuck.lever@oracle.com>
10244 L:      linux-nfs@vger.kernel.org
10245 S:      Supported
10246 W:      http://nfs.sourceforge.net/
10247 T:      git git://linux-nfs.org/~bfields/linux.git
10248 F:      fs/lockd/
10249 F:      fs/nfs_common/
10250 F:      fs/nfsd/
10251 F:      include/linux/lockd/
10252 F:      include/linux/sunrpc/
10253 F:      include/uapi/linux/nfsd/
10254 F:      include/uapi/linux/sunrpc/
10255 F:      net/sunrpc/
10256 F:      Documentation/filesystems/nfs/
10257
10258 KERNEL REGRESSIONS
10259 M:      Thorsten Leemhuis <linux@leemhuis.info>
10260 L:      regressions@lists.linux.dev
10261 S:      Supported
10262
10263 KERNEL SELFTEST FRAMEWORK
10264 M:      Shuah Khan <shuah@kernel.org>
10265 M:      Shuah Khan <skhan@linuxfoundation.org>
10266 L:      linux-kselftest@vger.kernel.org
10267 S:      Maintained
10268 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10270 F:      Documentation/dev-tools/kselftest*
10271 F:      tools/testing/selftests/
10272
10273 KERNEL SMB3 SERVER (KSMBD)
10274 M:      Namjae Jeon <linkinjeon@kernel.org>
10275 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10276 M:      Steve French <sfrench@samba.org>
10277 M:      Hyunchul Lee <hyc.lee@gmail.com>
10278 L:      linux-cifs@vger.kernel.org
10279 S:      Maintained
10280 T:      git git://git.samba.org/ksmbd.git
10281 F:      fs/ksmbd/
10282 F:      fs/smbfs_common/
10283
10284 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10285 M:      Brendan Higgins <brendanhiggins@google.com>
10286 L:      linux-kselftest@vger.kernel.org
10287 L:      kunit-dev@googlegroups.com
10288 S:      Maintained
10289 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10290 F:      Documentation/dev-tools/kunit/
10291 F:      include/kunit/
10292 F:      lib/kunit/
10293 F:      tools/testing/kunit/
10294
10295 KERNEL USERMODE HELPER
10296 M:      Luis Chamberlain <mcgrof@kernel.org>
10297 L:      linux-kernel@vger.kernel.org
10298 S:      Maintained
10299 F:      include/linux/umh.h
10300 F:      kernel/umh.c
10301
10302 KERNEL VIRTUAL MACHINE (KVM)
10303 M:      Paolo Bonzini <pbonzini@redhat.com>
10304 L:      kvm@vger.kernel.org
10305 S:      Supported
10306 W:      http://www.linux-kvm.org
10307 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10308 F:      Documentation/virt/kvm/
10309 F:      include/asm-generic/kvm*
10310 F:      include/kvm/iodev.h
10311 F:      include/linux/kvm*
10312 F:      include/trace/events/kvm.h
10313 F:      include/uapi/asm-generic/kvm*
10314 F:      include/uapi/linux/kvm*
10315 F:      tools/kvm/
10316 F:      tools/testing/selftests/kvm/
10317 F:      virt/kvm/*
10318
10319 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10320 M:      Marc Zyngier <maz@kernel.org>
10321 R:      James Morse <james.morse@arm.com>
10322 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10323 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10325 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10326 S:      Maintained
10327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10328 F:      arch/arm64/include/asm/kvm*
10329 F:      arch/arm64/include/uapi/asm/kvm*
10330 F:      arch/arm64/kvm/
10331 F:      include/kvm/arm_*
10332 F:      tools/testing/selftests/kvm/*/aarch64/
10333 F:      tools/testing/selftests/kvm/aarch64/
10334
10335 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10336 M:      Huacai Chen <chenhuacai@kernel.org>
10337 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10338 L:      linux-mips@vger.kernel.org
10339 L:      kvm@vger.kernel.org
10340 S:      Maintained
10341 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10342 F:      arch/mips/include/asm/kvm*
10343 F:      arch/mips/include/uapi/asm/kvm*
10344 F:      arch/mips/kvm/
10345
10346 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10347 M:      Paul Mackerras <paulus@ozlabs.org>
10348 L:      kvm-ppc@vger.kernel.org
10349 S:      Supported
10350 W:      http://www.linux-kvm.org/
10351 T:      git git://github.com/agraf/linux-2.6.git
10352 F:      arch/powerpc/include/asm/kvm*
10353 F:      arch/powerpc/include/uapi/asm/kvm*
10354 F:      arch/powerpc/kernel/kvm*
10355 F:      arch/powerpc/kvm/
10356
10357 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10358 M:      Anup Patel <anup.patel@wdc.com>
10359 R:      Atish Patra <atish.patra@wdc.com>
10360 L:      kvm@vger.kernel.org
10361 L:      kvm-riscv@lists.infradead.org
10362 L:      linux-riscv@lists.infradead.org
10363 S:      Maintained
10364 T:      git git://github.com/kvm-riscv/linux.git
10365 F:      arch/riscv/include/asm/kvm*
10366 F:      arch/riscv/include/uapi/asm/kvm*
10367 F:      arch/riscv/kvm/
10368
10369 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10370 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10371 M:      Janosch Frank <frankja@linux.ibm.com>
10372 R:      David Hildenbrand <david@redhat.com>
10373 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10374 L:      kvm@vger.kernel.org
10375 S:      Supported
10376 W:      http://www.ibm.com/developerworks/linux/linux390/
10377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10378 F:      Documentation/virt/kvm/s390*
10379 F:      arch/s390/include/asm/gmap.h
10380 F:      arch/s390/include/asm/kvm*
10381 F:      arch/s390/include/uapi/asm/kvm*
10382 F:      arch/s390/kernel/uv.c
10383 F:      arch/s390/kvm/
10384 F:      arch/s390/mm/gmap.c
10385 F:      tools/testing/selftests/kvm/*/s390x/
10386 F:      tools/testing/selftests/kvm/s390x/
10387
10388 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10389 M:      Paolo Bonzini <pbonzini@redhat.com>
10390 R:      Sean Christopherson <seanjc@google.com>
10391 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10392 R:      Wanpeng Li <wanpengli@tencent.com>
10393 R:      Jim Mattson <jmattson@google.com>
10394 R:      Joerg Roedel <joro@8bytes.org>
10395 L:      kvm@vger.kernel.org
10396 S:      Supported
10397 W:      http://www.linux-kvm.org
10398 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10399 F:      arch/x86/include/asm/kvm*
10400 F:      arch/x86/include/asm/pvclock-abi.h
10401 F:      arch/x86/include/asm/svm.h
10402 F:      arch/x86/include/asm/vmx*.h
10403 F:      arch/x86/include/uapi/asm/kvm*
10404 F:      arch/x86/include/uapi/asm/svm.h
10405 F:      arch/x86/include/uapi/asm/vmx.h
10406 F:      arch/x86/kernel/kvm.c
10407 F:      arch/x86/kernel/kvmclock.c
10408 F:      arch/x86/kvm/
10409 F:      arch/x86/kvm/*/
10410
10411 KERNFS
10412 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10413 M:      Tejun Heo <tj@kernel.org>
10414 S:      Supported
10415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10416 F:      fs/kernfs/
10417 F:      include/linux/kernfs.h
10418
10419 KEXEC
10420 M:      Eric Biederman <ebiederm@xmission.com>
10421 L:      kexec@lists.infradead.org
10422 S:      Maintained
10423 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10424 F:      include/linux/kexec.h
10425 F:      include/uapi/linux/kexec.h
10426 F:      kernel/kexec*
10427
10428 KEYS-ENCRYPTED
10429 M:      Mimi Zohar <zohar@linux.ibm.com>
10430 L:      linux-integrity@vger.kernel.org
10431 L:      keyrings@vger.kernel.org
10432 S:      Supported
10433 F:      Documentation/security/keys/trusted-encrypted.rst
10434 F:      include/keys/encrypted-type.h
10435 F:      security/keys/encrypted-keys/
10436
10437 KEYS-TRUSTED
10438 M:      James Bottomley <jejb@linux.ibm.com>
10439 M:      Jarkko Sakkinen <jarkko@kernel.org>
10440 M:      Mimi Zohar <zohar@linux.ibm.com>
10441 L:      linux-integrity@vger.kernel.org
10442 L:      keyrings@vger.kernel.org
10443 S:      Supported
10444 F:      Documentation/security/keys/trusted-encrypted.rst
10445 F:      include/keys/trusted-type.h
10446 F:      include/keys/trusted_tpm.h
10447 F:      security/keys/trusted-keys/
10448
10449 KEYS-TRUSTED-TEE
10450 M:      Sumit Garg <sumit.garg@linaro.org>
10451 L:      linux-integrity@vger.kernel.org
10452 L:      keyrings@vger.kernel.org
10453 S:      Supported
10454 F:      include/keys/trusted_tee.h
10455 F:      security/keys/trusted-keys/trusted_tee.c
10456
10457 KEYS/KEYRINGS
10458 M:      David Howells <dhowells@redhat.com>
10459 M:      Jarkko Sakkinen <jarkko@kernel.org>
10460 L:      keyrings@vger.kernel.org
10461 S:      Maintained
10462 F:      Documentation/security/keys/core.rst
10463 F:      include/keys/
10464 F:      include/linux/key-type.h
10465 F:      include/linux/key.h
10466 F:      include/linux/keyctl.h
10467 F:      include/uapi/linux/keyctl.h
10468 F:      security/keys/
10469
10470 KFENCE
10471 M:      Alexander Potapenko <glider@google.com>
10472 M:      Marco Elver <elver@google.com>
10473 R:      Dmitry Vyukov <dvyukov@google.com>
10474 L:      kasan-dev@googlegroups.com
10475 S:      Maintained
10476 F:      Documentation/dev-tools/kfence.rst
10477 F:      arch/*/include/asm/kfence.h
10478 F:      include/linux/kfence.h
10479 F:      lib/Kconfig.kfence
10480 F:      mm/kfence/
10481
10482 KFIFO
10483 M:      Stefani Seibold <stefani@seibold.net>
10484 S:      Maintained
10485 F:      include/linux/kfifo.h
10486 F:      lib/kfifo.c
10487 F:      samples/kfifo/
10488
10489 KGDB / KDB /debug_core
10490 M:      Jason Wessel <jason.wessel@windriver.com>
10491 M:      Daniel Thompson <daniel.thompson@linaro.org>
10492 R:      Douglas Anderson <dianders@chromium.org>
10493 L:      kgdb-bugreport@lists.sourceforge.net
10494 S:      Maintained
10495 W:      http://kgdb.wiki.kernel.org/
10496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10497 F:      Documentation/dev-tools/kgdb.rst
10498 F:      drivers/misc/kgdbts.c
10499 F:      drivers/tty/serial/kgdboc.c
10500 F:      include/linux/kdb.h
10501 F:      include/linux/kgdb.h
10502 F:      kernel/debug/
10503
10504 KHADAS MCU MFD DRIVER
10505 M:      Neil Armstrong <narmstrong@baylibre.com>
10506 L:      linux-amlogic@lists.infradead.org
10507 S:      Maintained
10508 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10509 F:      drivers/mfd/khadas-mcu.c
10510 F:      include/linux/mfd/khadas-mcu.h
10511 F:      drivers/thermal/khadas_mcu_fan.c
10512
10513 KMEMLEAK
10514 M:      Catalin Marinas <catalin.marinas@arm.com>
10515 S:      Maintained
10516 F:      Documentation/dev-tools/kmemleak.rst
10517 F:      include/linux/kmemleak.h
10518 F:      mm/kmemleak.c
10519 F:      samples/kmemleak/kmemleak-test.c
10520
10521 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10522 M:      Luis Chamberlain <mcgrof@kernel.org>
10523 L:      linux-kernel@vger.kernel.org
10524 S:      Maintained
10525 F:      include/linux/kmod.h
10526 F:      kernel/kmod.c
10527 F:      lib/test_kmod.c
10528 F:      tools/testing/selftests/kmod/
10529
10530 KPROBES
10531 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10532 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10533 M:      "David S. Miller" <davem@davemloft.net>
10534 M:      Masami Hiramatsu <mhiramat@kernel.org>
10535 S:      Maintained
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10537 F:      Documentation/trace/kprobes.rst
10538 F:      include/asm-generic/kprobes.h
10539 F:      include/linux/kprobes.h
10540 F:      kernel/kprobes.c
10541 F:      lib/test_kprobes.c
10542 F:      samples/kprobes
10543
10544 KS0108 LCD CONTROLLER DRIVER
10545 M:      Miguel Ojeda <ojeda@kernel.org>
10546 S:      Maintained
10547 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10548 F:      drivers/auxdisplay/ks0108.c
10549 F:      include/linux/ks0108.h
10550
10551 KTD253 BACKLIGHT DRIVER
10552 M:      Linus Walleij <linus.walleij@linaro.org>
10553 S:      Maintained
10554 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10555 F:      drivers/video/backlight/ktd253-backlight.c
10556
10557 KTEST
10558 M:      Steven Rostedt <rostedt@goodmis.org>
10559 M:      John Hawley <warthog9@eaglescrag.net>
10560 S:      Maintained
10561 F:      tools/testing/ktest
10562
10563 L3MDEV
10564 M:      David Ahern <dsahern@kernel.org>
10565 L:      netdev@vger.kernel.org
10566 S:      Maintained
10567 F:      include/net/l3mdev.h
10568 F:      net/l3mdev
10569
10570 L7 BPF FRAMEWORK
10571 M:      John Fastabend <john.fastabend@gmail.com>
10572 M:      Daniel Borkmann <daniel@iogearbox.net>
10573 M:      Jakub Sitnicki <jakub@cloudflare.com>
10574 M:      Lorenz Bauer <lmb@cloudflare.com>
10575 L:      netdev@vger.kernel.org
10576 L:      bpf@vger.kernel.org
10577 S:      Maintained
10578 F:      include/linux/skmsg.h
10579 F:      net/core/skmsg.c
10580 F:      net/core/sock_map.c
10581 F:      net/ipv4/tcp_bpf.c
10582 F:      net/ipv4/udp_bpf.c
10583 F:      net/unix/unix_bpf.c
10584
10585 LANDLOCK SECURITY MODULE
10586 M:      Mickaël Salaün <mic@digikod.net>
10587 L:      linux-security-module@vger.kernel.org
10588 S:      Supported
10589 W:      https://landlock.io
10590 T:      git https://github.com/landlock-lsm/linux.git
10591 F:      Documentation/security/landlock.rst
10592 F:      Documentation/userspace-api/landlock.rst
10593 F:      include/uapi/linux/landlock.h
10594 F:      samples/landlock/
10595 F:      security/landlock/
10596 F:      tools/testing/selftests/landlock/
10597 K:      landlock
10598 K:      LANDLOCK
10599
10600 LANTIQ / INTEL Ethernet drivers
10601 M:      Hauke Mehrtens <hauke@hauke-m.de>
10602 L:      netdev@vger.kernel.org
10603 S:      Maintained
10604 F:      drivers/net/dsa/lantiq_gswip.c
10605 F:      drivers/net/dsa/lantiq_pce.h
10606 F:      drivers/net/ethernet/lantiq_xrx200.c
10607 F:      net/dsa/tag_gswip.c
10608
10609 LANTIQ MIPS ARCHITECTURE
10610 M:      John Crispin <john@phrozen.org>
10611 L:      linux-mips@vger.kernel.org
10612 S:      Maintained
10613 F:      arch/mips/lantiq
10614 F:      drivers/soc/lantiq
10615
10616 LASI 53c700 driver for PARISC
10617 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10618 L:      linux-scsi@vger.kernel.org
10619 S:      Maintained
10620 F:      Documentation/scsi/53c700.rst
10621 F:      drivers/scsi/53c700*
10622
10623 LEAKING_ADDRESSES
10624 M:      Tobin C. Harding <me@tobin.cc>
10625 M:      Tycho Andersen <tycho@tycho.pizza>
10626 L:      linux-hardening@vger.kernel.org
10627 S:      Maintained
10628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10629 F:      scripts/leaking_addresses.pl
10630
10631 LED SUBSYSTEM
10632 M:      Pavel Machek <pavel@ucw.cz>
10633 L:      linux-leds@vger.kernel.org
10634 S:      Maintained
10635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10636 F:      Documentation/devicetree/bindings/leds/
10637 F:      drivers/leds/
10638 F:      include/linux/leds.h
10639
10640 LEGACY EEPROM DRIVER
10641 M:      Jean Delvare <jdelvare@suse.com>
10642 S:      Maintained
10643 F:      Documentation/misc-devices/eeprom.rst
10644 F:      drivers/misc/eeprom/eeprom.c
10645
10646 LEGO MINDSTORMS EV3
10647 R:      David Lechner <david@lechnology.com>
10648 S:      Maintained
10649 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10650 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10651 F:      drivers/power/supply/lego_ev3_battery.c
10652
10653 LEGO USB Tower driver
10654 M:      Juergen Stuber <starblue@users.sourceforge.net>
10655 L:      legousb-devel@lists.sourceforge.net
10656 S:      Maintained
10657 W:      http://legousb.sourceforge.net/
10658 F:      drivers/usb/misc/legousbtower.c
10659
10660 LG LAPTOP EXTRAS
10661 M:      Matan Ziv-Av <matan@svgalib.org>
10662 L:      platform-driver-x86@vger.kernel.org
10663 S:      Maintained
10664 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10665 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10666 F:      drivers/platform/x86/lg-laptop.c
10667
10668 LG2160 MEDIA DRIVER
10669 M:      Michael Krufky <mkrufky@linuxtv.org>
10670 L:      linux-media@vger.kernel.org
10671 S:      Maintained
10672 W:      https://linuxtv.org
10673 W:      http://github.com/mkrufky
10674 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10675 T:      git git://linuxtv.org/mkrufky/tuners.git
10676 F:      drivers/media/dvb-frontends/lg2160.*
10677
10678 LGDT3305 MEDIA DRIVER
10679 M:      Michael Krufky <mkrufky@linuxtv.org>
10680 L:      linux-media@vger.kernel.org
10681 S:      Maintained
10682 W:      https://linuxtv.org
10683 W:      http://github.com/mkrufky
10684 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10685 T:      git git://linuxtv.org/mkrufky/tuners.git
10686 F:      drivers/media/dvb-frontends/lgdt3305.*
10687
10688 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10689 M:      Viresh Kumar <vireshk@kernel.org>
10690 L:      linux-ide@vger.kernel.org
10691 S:      Maintained
10692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10693 F:      drivers/ata/pata_arasan_cf.c
10694 F:      include/linux/pata_arasan_cf_data.h
10695
10696 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10697 M:      Linus Walleij <linus.walleij@linaro.org>
10698 L:      linux-ide@vger.kernel.org
10699 S:      Maintained
10700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10701 F:      drivers/ata/pata_ftide010.c
10702 F:      drivers/ata/sata_gemini.c
10703 F:      drivers/ata/sata_gemini.h
10704
10705 LIBATA SATA AHCI PLATFORM devices support
10706 M:      Hans de Goede <hdegoede@redhat.com>
10707 M:      Jens Axboe <axboe@kernel.dk>
10708 L:      linux-ide@vger.kernel.org
10709 S:      Maintained
10710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10711 F:      drivers/ata/ahci_platform.c
10712 F:      drivers/ata/libahci_platform.c
10713 F:      include/linux/ahci_platform.h
10714
10715 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10716 M:      Mikael Pettersson <mikpelinux@gmail.com>
10717 L:      linux-ide@vger.kernel.org
10718 S:      Maintained
10719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10720 F:      drivers/ata/sata_promise.*
10721
10722 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10723 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10724 L:      linux-ide@vger.kernel.org
10725 S:      Maintained
10726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10727 F:      Documentation/devicetree/bindings/ata/
10728 F:      drivers/ata/
10729 F:      include/linux/ata.h
10730 F:      include/linux/libata.h
10731
10732 LIBLOCKDEP
10733 M:      Sasha Levin <alexander.levin@microsoft.com>
10734 S:      Maintained
10735 F:      tools/lib/lockdep/
10736
10737 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10738 M:      Dan Williams <dan.j.williams@intel.com>
10739 M:      Vishal Verma <vishal.l.verma@intel.com>
10740 M:      Dave Jiang <dave.jiang@intel.com>
10741 L:      nvdimm@lists.linux.dev
10742 S:      Supported
10743 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10744 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10745 F:      drivers/nvdimm/blk.c
10746 F:      drivers/nvdimm/region_devs.c
10747
10748 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10749 M:      Vishal Verma <vishal.l.verma@intel.com>
10750 M:      Dan Williams <dan.j.williams@intel.com>
10751 M:      Dave Jiang <dave.jiang@intel.com>
10752 L:      nvdimm@lists.linux.dev
10753 S:      Supported
10754 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10755 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10756 F:      drivers/nvdimm/btt*
10757
10758 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10759 M:      Dan Williams <dan.j.williams@intel.com>
10760 M:      Vishal Verma <vishal.l.verma@intel.com>
10761 M:      Dave Jiang <dave.jiang@intel.com>
10762 L:      nvdimm@lists.linux.dev
10763 S:      Supported
10764 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10765 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10766 F:      drivers/nvdimm/pmem*
10767
10768 LIBNVDIMM: DEVICETREE BINDINGS
10769 M:      Oliver O'Halloran <oohall@gmail.com>
10770 L:      nvdimm@lists.linux.dev
10771 S:      Supported
10772 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10773 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10774 F:      drivers/nvdimm/of_pmem.c
10775
10776 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10777 M:      Dan Williams <dan.j.williams@intel.com>
10778 M:      Vishal Verma <vishal.l.verma@intel.com>
10779 M:      Dave Jiang <dave.jiang@intel.com>
10780 M:      Ira Weiny <ira.weiny@intel.com>
10781 L:      nvdimm@lists.linux.dev
10782 S:      Supported
10783 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10784 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10786 F:      drivers/acpi/nfit/*
10787 F:      drivers/nvdimm/*
10788 F:      include/linux/libnvdimm.h
10789 F:      include/linux/nd.h
10790 F:      include/uapi/linux/ndctl.h
10791 F:      tools/testing/nvdimm/
10792
10793 LICENSES and SPDX stuff
10794 M:      Thomas Gleixner <tglx@linutronix.de>
10795 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10796 L:      linux-spdx@vger.kernel.org
10797 S:      Maintained
10798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10799 F:      COPYING
10800 F:      Documentation/process/license-rules.rst
10801 F:      LICENSES/
10802 F:      scripts/spdxcheck-test.sh
10803 F:      scripts/spdxcheck.py
10804
10805 LINEAR RANGES HELPERS
10806 M:      Mark Brown <broonie@kernel.org>
10807 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10808 F:      lib/linear_ranges.c
10809 F:      lib/test_linear_ranges.c
10810 F:      include/linux/linear_range.h
10811
10812 LINUX FOR POWER MACINTOSH
10813 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10814 L:      linuxppc-dev@lists.ozlabs.org
10815 S:      Odd Fixes
10816 F:      arch/powerpc/platforms/powermac/
10817 F:      drivers/macintosh/
10818
10819 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10820 M:      Michael Ellerman <mpe@ellerman.id.au>
10821 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10822 R:      Paul Mackerras <paulus@samba.org>
10823 L:      linuxppc-dev@lists.ozlabs.org
10824 S:      Supported
10825 W:      https://github.com/linuxppc/wiki/wiki
10826 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10828 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10829 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10830 F:      Documentation/devicetree/bindings/powerpc/
10831 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10832 F:      Documentation/powerpc/
10833 F:      arch/powerpc/
10834 F:      drivers/*/*/*pasemi*
10835 F:      drivers/*/*pasemi*
10836 F:      drivers/char/tpm/tpm_ibmvtpm*
10837 F:      drivers/crypto/nx/
10838 F:      drivers/crypto/vmx/
10839 F:      drivers/i2c/busses/i2c-opal.c
10840 F:      drivers/net/ethernet/ibm/ibmveth.*
10841 F:      drivers/net/ethernet/ibm/ibmvnic.*
10842 F:      drivers/pci/hotplug/pnv_php.c
10843 F:      drivers/pci/hotplug/rpa*
10844 F:      drivers/rtc/rtc-opal.c
10845 F:      drivers/scsi/ibmvscsi/
10846 F:      drivers/tty/hvc/hvc_opal.c
10847 F:      drivers/watchdog/wdrtas.c
10848 F:      tools/testing/selftests/powerpc
10849 N:      /pmac
10850 N:      powermac
10851 N:      powernv
10852 N:      [^a-z0-9]ps3
10853 N:      pseries
10854
10855 LINUX FOR POWERPC EMBEDDED MPC5XXX
10856 M:      Anatolij Gustschin <agust@denx.de>
10857 L:      linuxppc-dev@lists.ozlabs.org
10858 S:      Odd Fixes
10859 F:      arch/powerpc/platforms/512x/
10860 F:      arch/powerpc/platforms/52xx/
10861
10862 LINUX FOR POWERPC EMBEDDED PPC4XX
10863 L:      linuxppc-dev@lists.ozlabs.org
10864 S:      Orphan
10865 F:      arch/powerpc/platforms/40x/
10866 F:      arch/powerpc/platforms/44x/
10867
10868 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10869 M:      Scott Wood <oss@buserror.net>
10870 L:      linuxppc-dev@lists.ozlabs.org
10871 S:      Odd fixes
10872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10873 F:      Documentation/devicetree/bindings/powerpc/fsl/
10874 F:      arch/powerpc/platforms/83xx/
10875 F:      arch/powerpc/platforms/85xx/
10876
10877 LINUX FOR POWERPC EMBEDDED PPC8XX
10878 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10879 L:      linuxppc-dev@lists.ozlabs.org
10880 S:      Maintained
10881 F:      arch/powerpc/platforms/8xx/
10882
10883 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10884 M:      Kees Cook <keescook@chromium.org>
10885 S:      Maintained
10886 F:      drivers/misc/lkdtm/*
10887 F:      tools/testing/selftests/lkdtm/*
10888
10889 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10890 M:      Alan Stern <stern@rowland.harvard.edu>
10891 M:      Andrea Parri <parri.andrea@gmail.com>
10892 M:      Will Deacon <will@kernel.org>
10893 M:      Peter Zijlstra <peterz@infradead.org>
10894 M:      Boqun Feng <boqun.feng@gmail.com>
10895 M:      Nicholas Piggin <npiggin@gmail.com>
10896 M:      David Howells <dhowells@redhat.com>
10897 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10898 M:      Luc Maranget <luc.maranget@inria.fr>
10899 M:      "Paul E. McKenney" <paulmck@kernel.org>
10900 R:      Akira Yokosawa <akiyks@gmail.com>
10901 R:      Daniel Lustig <dlustig@nvidia.com>
10902 R:      Joel Fernandes <joel@joelfernandes.org>
10903 L:      linux-kernel@vger.kernel.org
10904 L:      linux-arch@vger.kernel.org
10905 S:      Supported
10906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10907 F:      Documentation/atomic_bitops.txt
10908 F:      Documentation/atomic_t.txt
10909 F:      Documentation/core-api/refcount-vs-atomic.rst
10910 F:      Documentation/litmus-tests/
10911 F:      Documentation/memory-barriers.txt
10912 F:      tools/memory-model/
10913
10914 LIS3LV02D ACCELEROMETER DRIVER
10915 M:      Eric Piel <eric.piel@tremplin-utc.net>
10916 S:      Maintained
10917 F:      Documentation/misc-devices/lis3lv02d.rst
10918 F:      drivers/misc/lis3lv02d/
10919 F:      drivers/platform/x86/hp_accel.c
10920
10921 LIST KUNIT TEST
10922 M:      David Gow <davidgow@google.com>
10923 L:      linux-kselftest@vger.kernel.org
10924 L:      kunit-dev@googlegroups.com
10925 S:      Maintained
10926 F:      lib/list-test.c
10927
10928 LITEX PLATFORM
10929 M:      Karol Gugala <kgugala@antmicro.com>
10930 M:      Mateusz Holenko <mholenko@antmicro.com>
10931 S:      Maintained
10932 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10933 F:      arch/openrisc/boot/dts/or1klitex.dts
10934 F:      drivers/soc/litex/litex_soc_ctrl.c
10935 F:      drivers/tty/serial/liteuart.c
10936 F:      include/linux/litex.h
10937
10938 LIVE PATCHING
10939 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10940 M:      Jiri Kosina <jikos@kernel.org>
10941 M:      Miroslav Benes <mbenes@suse.cz>
10942 M:      Petr Mladek <pmladek@suse.com>
10943 R:      Joe Lawrence <joe.lawrence@redhat.com>
10944 L:      live-patching@vger.kernel.org
10945 S:      Maintained
10946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10947 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10948 F:      Documentation/livepatch/
10949 F:      arch/powerpc/include/asm/livepatch.h
10950 F:      arch/s390/include/asm/livepatch.h
10951 F:      arch/x86/include/asm/livepatch.h
10952 F:      include/linux/livepatch.h
10953 F:      kernel/livepatch/
10954 F:      lib/livepatch/
10955 F:      samples/livepatch/
10956 F:      tools/testing/selftests/livepatch/
10957
10958 LLC (802.2)
10959 L:      netdev@vger.kernel.org
10960 S:      Odd fixes
10961 F:      include/linux/llc.h
10962 F:      include/net/llc*
10963 F:      include/uapi/linux/llc.h
10964 F:      net/llc/
10965
10966 LM73 HARDWARE MONITOR DRIVER
10967 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10968 L:      linux-hwmon@vger.kernel.org
10969 S:      Maintained
10970 F:      drivers/hwmon/lm73.c
10971
10972 LM78 HARDWARE MONITOR DRIVER
10973 M:      Jean Delvare <jdelvare@suse.com>
10974 L:      linux-hwmon@vger.kernel.org
10975 S:      Maintained
10976 F:      Documentation/hwmon/lm78.rst
10977 F:      drivers/hwmon/lm78.c
10978
10979 LM83 HARDWARE MONITOR DRIVER
10980 M:      Jean Delvare <jdelvare@suse.com>
10981 L:      linux-hwmon@vger.kernel.org
10982 S:      Maintained
10983 F:      Documentation/hwmon/lm83.rst
10984 F:      drivers/hwmon/lm83.c
10985
10986 LM90 HARDWARE MONITOR DRIVER
10987 M:      Jean Delvare <jdelvare@suse.com>
10988 L:      linux-hwmon@vger.kernel.org
10989 S:      Maintained
10990 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
10991 F:      Documentation/hwmon/lm90.rst
10992 F:      drivers/hwmon/lm90.c
10993 F:      include/dt-bindings/thermal/lm90.h
10994
10995 LM95234 HARDWARE MONITOR DRIVER
10996 M:      Guenter Roeck <linux@roeck-us.net>
10997 L:      linux-hwmon@vger.kernel.org
10998 S:      Maintained
10999 F:      Documentation/hwmon/lm95234.rst
11000 F:      drivers/hwmon/lm95234.c
11001
11002 LME2510 MEDIA DRIVER
11003 M:      Malcolm Priestley <tvboxspy@gmail.com>
11004 L:      linux-media@vger.kernel.org
11005 S:      Maintained
11006 W:      https://linuxtv.org
11007 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11008 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11009
11010 LOADPIN SECURITY MODULE
11011 M:      Kees Cook <keescook@chromium.org>
11012 S:      Supported
11013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11014 F:      Documentation/admin-guide/LSM/LoadPin.rst
11015 F:      security/loadpin/
11016
11017 LOCKING PRIMITIVES
11018 M:      Peter Zijlstra <peterz@infradead.org>
11019 M:      Ingo Molnar <mingo@redhat.com>
11020 M:      Will Deacon <will@kernel.org>
11021 R:      Waiman Long <longman@redhat.com>
11022 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11023 L:      linux-kernel@vger.kernel.org
11024 S:      Maintained
11025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11026 F:      Documentation/locking/
11027 F:      arch/*/include/asm/spinlock*.h
11028 F:      include/linux/lockdep.h
11029 F:      include/linux/mutex*.h
11030 F:      include/linux/rwlock*.h
11031 F:      include/linux/rwsem*.h
11032 F:      include/linux/seqlock.h
11033 F:      include/linux/spinlock*.h
11034 F:      kernel/locking/
11035 F:      lib/locking*.[ch]
11036 X:      kernel/locking/locktorture.c
11037
11038 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11039 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11040 L:      linux-ntfs-dev@lists.sourceforge.net
11041 S:      Maintained
11042 W:      http://www.linux-ntfs.org/content/view/19/37/
11043 F:      Documentation/admin-guide/ldm.rst
11044 F:      block/partitions/ldm.*
11045
11046 LOGITECH HID GAMING KEYBOARDS
11047 M:      Hans de Goede <hdegoede@redhat.com>
11048 L:      linux-input@vger.kernel.org
11049 S:      Maintained
11050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11051 F:      drivers/hid/hid-lg-g15.c
11052
11053 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11054 M:      Adrien Grassein <adrien.grassein@gmail.com>
11055 S:      Maintained
11056 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11057 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11058
11059 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11060 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11061 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11062 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11063 L:      MPT-FusionLinux.pdl@broadcom.com
11064 L:      linux-scsi@vger.kernel.org
11065 S:      Supported
11066 W:      http://www.avagotech.com/support/
11067 F:      drivers/message/fusion/
11068 F:      drivers/scsi/mpt3sas/
11069
11070 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11071 M:      Matthew Wilcox <willy@infradead.org>
11072 L:      linux-scsi@vger.kernel.org
11073 S:      Maintained
11074 F:      drivers/scsi/sym53c8xx_2/
11075
11076 LTC1660 DAC DRIVER
11077 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11078 L:      linux-iio@vger.kernel.org
11079 S:      Maintained
11080 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11081 F:      drivers/iio/dac/ltc1660.c
11082
11083 LTC2947 HARDWARE MONITOR DRIVER
11084 M:      Nuno Sá <nuno.sa@analog.com>
11085 L:      linux-hwmon@vger.kernel.org
11086 S:      Supported
11087 W:      http://ez.analog.com/community/linux-device-drivers
11088 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11089 F:      drivers/hwmon/ltc2947-core.c
11090 F:      drivers/hwmon/ltc2947-i2c.c
11091 F:      drivers/hwmon/ltc2947-spi.c
11092 F:      drivers/hwmon/ltc2947.h
11093
11094 LTC2983 IIO TEMPERATURE DRIVER
11095 M:      Nuno Sá <nuno.sa@analog.com>
11096 L:      linux-iio@vger.kernel.org
11097 S:      Supported
11098 W:      http://ez.analog.com/community/linux-device-drivers
11099 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11100 F:      drivers/iio/temperature/ltc2983.c
11101
11102 LTC4261 HARDWARE MONITOR DRIVER
11103 M:      Guenter Roeck <linux@roeck-us.net>
11104 L:      linux-hwmon@vger.kernel.org
11105 S:      Maintained
11106 F:      Documentation/hwmon/ltc4261.rst
11107 F:      drivers/hwmon/ltc4261.c
11108
11109 LTC4306 I2C MULTIPLEXER DRIVER
11110 M:      Michael Hennerich <michael.hennerich@analog.com>
11111 L:      linux-i2c@vger.kernel.org
11112 S:      Supported
11113 W:      http://ez.analog.com/community/linux-device-drivers
11114 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11115 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11116
11117 LTP (Linux Test Project)
11118 M:      Mike Frysinger <vapier@gentoo.org>
11119 M:      Cyril Hrubis <chrubis@suse.cz>
11120 M:      Wanlong Gao <wanlong.gao@gmail.com>
11121 M:      Jan Stancek <jstancek@redhat.com>
11122 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11123 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11124 L:      ltp@lists.linux.it (subscribers-only)
11125 S:      Maintained
11126 W:      http://linux-test-project.github.io/
11127 T:      git git://github.com/linux-test-project/ltp.git
11128
11129 LYNX PCS MODULE
11130 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11131 L:      netdev@vger.kernel.org
11132 S:      Supported
11133 F:      drivers/net/pcs/pcs-lynx.c
11134 F:      include/linux/pcs-lynx.h
11135
11136 M68K ARCHITECTURE
11137 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11138 L:      linux-m68k@lists.linux-m68k.org
11139 S:      Maintained
11140 W:      http://www.linux-m68k.org/
11141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11142 F:      arch/m68k/
11143 F:      drivers/zorro/
11144
11145 M68K ON APPLE MACINTOSH
11146 M:      Joshua Thompson <funaho@jurai.org>
11147 L:      linux-m68k@lists.linux-m68k.org
11148 S:      Maintained
11149 W:      http://www.mac.linux-m68k.org/
11150 F:      arch/m68k/mac/
11151 F:      drivers/macintosh/adb-iop.c
11152 F:      drivers/macintosh/via-macii.c
11153
11154 M68K ON HP9000/300
11155 M:      Philip Blundell <philb@gnu.org>
11156 S:      Maintained
11157 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11158 F:      arch/m68k/hp300/
11159
11160 M88DS3103 MEDIA DRIVER
11161 M:      Antti Palosaari <crope@iki.fi>
11162 L:      linux-media@vger.kernel.org
11163 S:      Maintained
11164 W:      https://linuxtv.org
11165 W:      http://palosaari.fi/linux/
11166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11167 T:      git git://linuxtv.org/anttip/media_tree.git
11168 F:      drivers/media/dvb-frontends/m88ds3103*
11169
11170 M88RS2000 MEDIA DRIVER
11171 M:      Malcolm Priestley <tvboxspy@gmail.com>
11172 L:      linux-media@vger.kernel.org
11173 S:      Maintained
11174 W:      https://linuxtv.org
11175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11176 F:      drivers/media/dvb-frontends/m88rs2000*
11177
11178 MA901 MASTERKIT USB FM RADIO DRIVER
11179 M:      Alexey Klimov <klimov.linux@gmail.com>
11180 L:      linux-media@vger.kernel.org
11181 S:      Maintained
11182 T:      git git://linuxtv.org/media_tree.git
11183 F:      drivers/media/radio/radio-ma901.c
11184
11185 MAC80211
11186 M:      Johannes Berg <johannes@sipsolutions.net>
11187 L:      linux-wireless@vger.kernel.org
11188 S:      Maintained
11189 W:      https://wireless.wiki.kernel.org/
11190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11192 F:      Documentation/networking/mac80211-injection.rst
11193 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11194 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11195 F:      include/net/mac80211.h
11196 F:      net/mac80211/
11197
11198 MAILBOX API
11199 M:      Jassi Brar <jassisinghbrar@gmail.com>
11200 L:      linux-kernel@vger.kernel.org
11201 S:      Maintained
11202 F:      drivers/mailbox/
11203 F:      include/linux/mailbox_client.h
11204 F:      include/linux/mailbox_controller.h
11205 F:      include/dt-bindings/mailbox/
11206 F:      Documentation/devicetree/bindings/mailbox/
11207
11208 MAILBOX ARM MHUv2
11209 M:      Viresh Kumar <viresh.kumar@linaro.org>
11210 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11211 L:      linux-kernel@vger.kernel.org
11212 S:      Maintained
11213 F:      drivers/mailbox/arm_mhuv2.c
11214 F:      include/linux/mailbox/arm_mhuv2_message.h
11215 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11216
11217 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11218 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11219 M:      Matt Johnston <matt@codeconstruct.com.au>
11220 L:      netdev@vger.kernel.org
11221 S:      Maintained
11222 F:      Documentation/networking/mctp.rst
11223 F:      drivers/net/mctp/
11224 F:      include/net/mctp.h
11225 F:      include/net/mctpdevice.h
11226 F:      include/net/netns/mctp.h
11227 F:      net/mctp/
11228
11229 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11230 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11231 L:      linux-man@vger.kernel.org
11232 S:      Maintained
11233 W:      http://www.kernel.org/doc/man-pages
11234
11235 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11236 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11237 L:      linux-mips@vger.kernel.org
11238 S:      Maintained
11239 F:      arch/mips/boot/dts/img/pistachio*
11240
11241 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11242 M:      Andrew Lunn <andrew@lunn.ch>
11243 M:      Vivien Didelot <vivien.didelot@gmail.com>
11244 L:      netdev@vger.kernel.org
11245 S:      Maintained
11246 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11247 F:      Documentation/networking/devlink/mv88e6xxx.rst
11248 F:      drivers/net/dsa/mv88e6xxx/
11249 F:      include/linux/dsa/mv88e6xxx.h
11250 F:      include/linux/platform_data/mv88e6xxx.h
11251
11252 MARVELL ARMADA 3700 PHY DRIVERS
11253 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11254 S:      Maintained
11255 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11256 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11257 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11258 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11259
11260 MARVELL ARMADA DRM SUPPORT
11261 M:      Russell King <linux@armlinux.org.uk>
11262 S:      Maintained
11263 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11264 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11265 F:      Documentation/devicetree/bindings/display/armada/
11266 F:      drivers/gpu/drm/armada/
11267 F:      include/uapi/drm/armada_drm.h
11268
11269 MARVELL CRYPTO DRIVER
11270 M:      Boris Brezillon <bbrezillon@kernel.org>
11271 M:      Arnaud Ebalard <arno@natisbad.org>
11272 M:      Srujana Challa <schalla@marvell.com>
11273 L:      linux-crypto@vger.kernel.org
11274 S:      Maintained
11275 F:      drivers/crypto/marvell/
11276 F:      include/linux/soc/marvell/octeontx2/
11277
11278 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11279 M:      Mirko Lindner <mlindner@marvell.com>
11280 M:      Stephen Hemminger <stephen@networkplumber.org>
11281 L:      netdev@vger.kernel.org
11282 S:      Maintained
11283 F:      drivers/net/ethernet/marvell/sk*
11284
11285 MARVELL LIBERTAS WIRELESS DRIVER
11286 L:      libertas-dev@lists.infradead.org
11287 S:      Orphan
11288 F:      drivers/net/wireless/marvell/libertas/
11289
11290 MARVELL MACCHIATOBIN SUPPORT
11291 M:      Russell King <linux@armlinux.org.uk>
11292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11293 S:      Maintained
11294 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11295
11296 MARVELL MV643XX ETHERNET DRIVER
11297 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11298 L:      netdev@vger.kernel.org
11299 S:      Maintained
11300 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11301 F:      include/linux/mv643xx.h
11302
11303 MARVELL MV88X3310 PHY DRIVER
11304 M:      Russell King <linux@armlinux.org.uk>
11305 M:      Marek Behún <kabel@kernel.org>
11306 L:      netdev@vger.kernel.org
11307 S:      Maintained
11308 F:      drivers/net/phy/marvell10g.c
11309
11310 MARVELL MVEBU THERMAL DRIVER
11311 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11312 S:      Maintained
11313 F:      drivers/thermal/armada_thermal.c
11314
11315 MARVELL MVNETA ETHERNET DRIVER
11316 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11317 L:      netdev@vger.kernel.org
11318 S:      Maintained
11319 F:      drivers/net/ethernet/marvell/mvneta.*
11320
11321 MARVELL MVPP2 ETHERNET DRIVER
11322 M:      Marcin Wojtas <mw@semihalf.com>
11323 M:      Russell King <linux@armlinux.org.uk>
11324 L:      netdev@vger.kernel.org
11325 S:      Maintained
11326 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11327 F:      drivers/net/ethernet/marvell/mvpp2/
11328
11329 MARVELL MWIFIEX WIRELESS DRIVER
11330 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11331 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11332 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11333 M:      Xinming Hu <huxinming820@gmail.com>
11334 L:      linux-wireless@vger.kernel.org
11335 S:      Maintained
11336 F:      drivers/net/wireless/marvell/mwifiex/
11337
11338 MARVELL MWL8K WIRELESS DRIVER
11339 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11340 L:      linux-wireless@vger.kernel.org
11341 S:      Odd Fixes
11342 F:      drivers/net/wireless/marvell/mwl8k.c
11343
11344 MARVELL NAND CONTROLLER DRIVER
11345 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11346 L:      linux-mtd@lists.infradead.org
11347 S:      Maintained
11348 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11349 F:      drivers/mtd/nand/raw/marvell_nand.c
11350
11351 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11352 M:      Sunil Goutham <sgoutham@marvell.com>
11353 M:      Geetha sowjanya <gakula@marvell.com>
11354 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11355 M:      hariprasad <hkelam@marvell.com>
11356 L:      netdev@vger.kernel.org
11357 S:      Supported
11358 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11359 F:      include/linux/soc/marvell/octeontx2/
11360
11361 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11362 M:      Sunil Goutham <sgoutham@marvell.com>
11363 M:      Linu Cherian <lcherian@marvell.com>
11364 M:      Geetha sowjanya <gakula@marvell.com>
11365 M:      Jerin Jacob <jerinj@marvell.com>
11366 M:      hariprasad <hkelam@marvell.com>
11367 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11368 L:      netdev@vger.kernel.org
11369 S:      Supported
11370 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11371 F:      drivers/net/ethernet/marvell/octeontx2/af/
11372
11373 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11374 M:      Taras Chornyi <tchornyi@marvell.com>
11375 S:      Supported
11376 W:      https://github.com/Marvell-switching/switchdev-prestera
11377 F:      drivers/net/ethernet/marvell/prestera/
11378
11379 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11380 M:      Nicolas Pitre <nico@fluxnic.net>
11381 S:      Odd Fixes
11382 F:      drivers/mmc/host/mvsdio.*
11383
11384 MARVELL USB MDIO CONTROLLER DRIVER
11385 M:      Tobias Waldekranz <tobias@waldekranz.com>
11386 L:      netdev@vger.kernel.org
11387 S:      Maintained
11388 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11389 F:      drivers/net/mdio/mdio-mvusb.c
11390
11391 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11392 M:      Hu Ziji <huziji@marvell.com>
11393 L:      linux-mmc@vger.kernel.org
11394 S:      Supported
11395 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11396 F:      drivers/mmc/host/sdhci-xenon*
11397
11398 MATROX FRAMEBUFFER DRIVER
11399 L:      linux-fbdev@vger.kernel.org
11400 S:      Orphan
11401 F:      drivers/video/fbdev/matrox/matroxfb_*
11402 F:      include/uapi/linux/matroxfb.h
11403
11404 MAX15301 DRIVER
11405 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11406 L:      linux-hwmon@vger.kernel.org
11407 S:      Maintained
11408 F:      Documentation/hwmon/max15301.rst
11409 F:      drivers/hwmon/pmbus/max15301.c
11410
11411 MAX16065 HARDWARE MONITOR DRIVER
11412 M:      Guenter Roeck <linux@roeck-us.net>
11413 L:      linux-hwmon@vger.kernel.org
11414 S:      Maintained
11415 F:      Documentation/hwmon/max16065.rst
11416 F:      drivers/hwmon/max16065.c
11417
11418 MAX2175 SDR TUNER DRIVER
11419 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11420 L:      linux-media@vger.kernel.org
11421 S:      Maintained
11422 T:      git git://linuxtv.org/media_tree.git
11423 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11424 F:      Documentation/userspace-api/media/drivers/max2175.rst
11425 F:      drivers/media/i2c/max2175*
11426 F:      include/uapi/linux/max2175.h
11427
11428 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11429 L:      linux-hwmon@vger.kernel.org
11430 S:      Orphan
11431 F:      Documentation/hwmon/max6650.rst
11432 F:      drivers/hwmon/max6650.c
11433
11434 MAX6697 HARDWARE MONITOR DRIVER
11435 M:      Guenter Roeck <linux@roeck-us.net>
11436 L:      linux-hwmon@vger.kernel.org
11437 S:      Maintained
11438 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11439 F:      Documentation/hwmon/max6697.rst
11440 F:      drivers/hwmon/max6697.c
11441 F:      include/linux/platform_data/max6697.h
11442
11443 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11444 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11445 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11446 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11447 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11448 L:      linux-media@vger.kernel.org
11449 S:      Maintained
11450 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11451 F:      drivers/media/i2c/max9286.c
11452
11453 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11454 M:      Peter Rosin <peda@axentia.se>
11455 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11456 S:      Maintained
11457 F:      Documentation/devicetree/bindings/sound/max9860.txt
11458 F:      sound/soc/codecs/max9860.*
11459
11460 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11461 M:      Andreas Klinger <ak@it-klinger.de>
11462 L:      linux-iio@vger.kernel.org
11463 S:      Maintained
11464 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11465 F:      drivers/iio/proximity/mb1232.c
11466
11467 MAXIM MAX77650 PMIC MFD DRIVER
11468 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11469 L:      linux-kernel@vger.kernel.org
11470 S:      Maintained
11471 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11472 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11473 F:      drivers/gpio/gpio-max77650.c
11474 F:      drivers/input/misc/max77650-onkey.c
11475 F:      drivers/leds/leds-max77650.c
11476 F:      drivers/mfd/max77650.c
11477 F:      drivers/power/supply/max77650-charger.c
11478 F:      drivers/regulator/max77650-regulator.c
11479 F:      include/linux/mfd/max77650.h
11480
11481 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11482 M:      Javier Martinez Canillas <javier@dowhile0.org>
11483 L:      linux-kernel@vger.kernel.org
11484 S:      Supported
11485 F:      Documentation/devicetree/bindings/*/*max77802.txt
11486 F:      drivers/regulator/max77802-regulator.c
11487 F:      include/dt-bindings/*/*max77802.h
11488
11489 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11490 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11491 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11492 L:      linux-pm@vger.kernel.org
11493 S:      Supported
11494 F:      drivers/power/supply/max14577_charger.c
11495 F:      drivers/power/supply/max77693_charger.c
11496
11497 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11498 M:      Chanwoo Choi <cw00.choi@samsung.com>
11499 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11500 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11501 L:      linux-kernel@vger.kernel.org
11502 S:      Supported
11503 F:      Documentation/devicetree/bindings/*/max77686.txt
11504 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11505 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11506 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11507 F:      drivers/*/max14577*.c
11508 F:      drivers/*/max77686*.c
11509 F:      drivers/*/max77693*.c
11510 F:      drivers/clk/clk-max77686.c
11511 F:      drivers/extcon/extcon-max14577.c
11512 F:      drivers/extcon/extcon-max77693.c
11513 F:      drivers/rtc/rtc-max77686.c
11514 F:      include/linux/mfd/max14577*.h
11515 F:      include/linux/mfd/max77686*.h
11516 F:      include/linux/mfd/max77693*.h
11517
11518 MAXIRADIO FM RADIO RECEIVER DRIVER
11519 M:      Hans Verkuil <hverkuil@xs4all.nl>
11520 L:      linux-media@vger.kernel.org
11521 S:      Maintained
11522 W:      https://linuxtv.org
11523 T:      git git://linuxtv.org/media_tree.git
11524 F:      drivers/media/radio/radio-maxiradio*
11525
11526 MAXLINEAR ETHERNET PHY DRIVER
11527 M:      Xu Liang <lxu@maxlinear.com>
11528 L:      netdev@vger.kernel.org
11529 S:      Supported
11530 F:      drivers/net/phy/mxl-gpy.c
11531
11532 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11533 R:      Yasushi SHOJI <yashi@spacecubics.com>
11534 L:      linux-can@vger.kernel.org
11535 S:      Maintained
11536 F:      drivers/net/can/usb/mcba_usb.c
11537
11538 MCAN MMIO DEVICE DRIVER
11539 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11540 L:      linux-can@vger.kernel.org
11541 S:      Maintained
11542 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11543 F:      drivers/net/can/m_can/m_can.c
11544 F:      drivers/net/can/m_can/m_can.h
11545 F:      drivers/net/can/m_can/m_can_platform.c
11546
11547 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11548 M:      Rishi Gupta <gupt21@gmail.com>
11549 L:      linux-i2c@vger.kernel.org
11550 L:      linux-input@vger.kernel.org
11551 S:      Maintained
11552 F:      drivers/hid/hid-mcp2221.c
11553
11554 MCP251XFD SPI-CAN NETWORK DRIVER
11555 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11556 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11557 R:      Thomas Kopp <thomas.kopp@microchip.com>
11558 L:      linux-can@vger.kernel.org
11559 S:      Maintained
11560 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11561 F:      drivers/net/can/spi/mcp251xfd/
11562
11563 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11564 M:      Peter Rosin <peda@axentia.se>
11565 L:      linux-iio@vger.kernel.org
11566 S:      Maintained
11567 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11568 F:      drivers/iio/potentiometer/mcp4018.c
11569 F:      drivers/iio/potentiometer/mcp4531.c
11570
11571 MCR20A IEEE-802.15.4 RADIO DRIVER
11572 M:      Xue Liu <liuxuenetmail@gmail.com>
11573 L:      linux-wpan@vger.kernel.org
11574 S:      Maintained
11575 W:      https://github.com/xueliu/mcr20a-linux
11576 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11577 F:      drivers/net/ieee802154/mcr20a.c
11578 F:      drivers/net/ieee802154/mcr20a.h
11579
11580 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11581 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11582 L:      linux-iio@vger.kernel.org
11583 S:      Maintained
11584 F:      drivers/iio/dac/cio-dac.c
11585
11586 MEDIA CONTROLLER FRAMEWORK
11587 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11588 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11589 L:      linux-media@vger.kernel.org
11590 S:      Supported
11591 W:      https://www.linuxtv.org
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      drivers/media/mc/
11594 F:      include/media/media-*.h
11595 F:      include/uapi/linux/media.h
11596
11597 MEDIA DRIVER FOR FREESCALE IMX PXP
11598 M:      Philipp Zabel <p.zabel@pengutronix.de>
11599 L:      linux-media@vger.kernel.org
11600 S:      Maintained
11601 T:      git git://linuxtv.org/media_tree.git
11602 F:      drivers/media/platform/imx-pxp.[ch]
11603
11604 MEDIA DRIVERS FOR ASCOT2E
11605 M:      Sergey Kozlov <serjk@netup.ru>
11606 M:      Abylay Ospan <aospan@netup.ru>
11607 L:      linux-media@vger.kernel.org
11608 S:      Supported
11609 W:      https://linuxtv.org
11610 W:      http://netup.tv/
11611 T:      git git://linuxtv.org/media_tree.git
11612 F:      drivers/media/dvb-frontends/ascot2e*
11613
11614 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11615 M:      Jasmin Jessich <jasmin@anw.at>
11616 L:      linux-media@vger.kernel.org
11617 S:      Maintained
11618 W:      https://linuxtv.org
11619 T:      git git://linuxtv.org/media_tree.git
11620 F:      drivers/media/dvb-frontends/cxd2099*
11621
11622 MEDIA DRIVERS FOR CXD2841ER
11623 M:      Sergey Kozlov <serjk@netup.ru>
11624 M:      Abylay Ospan <aospan@netup.ru>
11625 L:      linux-media@vger.kernel.org
11626 S:      Supported
11627 W:      https://linuxtv.org
11628 W:      http://netup.tv/
11629 T:      git git://linuxtv.org/media_tree.git
11630 F:      drivers/media/dvb-frontends/cxd2841er*
11631
11632 MEDIA DRIVERS FOR CXD2880
11633 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11634 L:      linux-media@vger.kernel.org
11635 S:      Supported
11636 W:      http://linuxtv.org/
11637 T:      git git://linuxtv.org/media_tree.git
11638 F:      drivers/media/dvb-frontends/cxd2880/*
11639 F:      drivers/media/spi/cxd2880*
11640
11641 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11642 L:      linux-media@vger.kernel.org
11643 S:      Orphan
11644 W:      https://linuxtv.org
11645 T:      git git://linuxtv.org/media_tree.git
11646 F:      drivers/media/pci/ddbridge/*
11647
11648 MEDIA DRIVERS FOR FREESCALE IMX
11649 M:      Steve Longerbeam <slongerbeam@gmail.com>
11650 M:      Philipp Zabel <p.zabel@pengutronix.de>
11651 L:      linux-media@vger.kernel.org
11652 S:      Maintained
11653 T:      git git://linuxtv.org/media_tree.git
11654 F:      Documentation/admin-guide/media/imx.rst
11655 F:      Documentation/devicetree/bindings/media/imx.txt
11656 F:      drivers/staging/media/imx/
11657 F:      include/linux/imx-media.h
11658 F:      include/media/imx.h
11659
11660 MEDIA DRIVERS FOR FREESCALE IMX7
11661 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11662 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11663 L:      linux-media@vger.kernel.org
11664 S:      Maintained
11665 T:      git git://linuxtv.org/media_tree.git
11666 F:      Documentation/admin-guide/media/imx7.rst
11667 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11668 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11669 F:      drivers/staging/media/imx/imx7-media-csi.c
11670 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11671
11672 MEDIA DRIVERS FOR HELENE
11673 M:      Abylay Ospan <aospan@netup.ru>
11674 L:      linux-media@vger.kernel.org
11675 S:      Supported
11676 W:      https://linuxtv.org
11677 W:      http://netup.tv/
11678 T:      git git://linuxtv.org/media_tree.git
11679 F:      drivers/media/dvb-frontends/helene*
11680
11681 MEDIA DRIVERS FOR HORUS3A
11682 M:      Sergey Kozlov <serjk@netup.ru>
11683 M:      Abylay Ospan <aospan@netup.ru>
11684 L:      linux-media@vger.kernel.org
11685 S:      Supported
11686 W:      https://linuxtv.org
11687 W:      http://netup.tv/
11688 T:      git git://linuxtv.org/media_tree.git
11689 F:      drivers/media/dvb-frontends/horus3a*
11690
11691 MEDIA DRIVERS FOR LNBH25
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/lnbh25*
11700
11701 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11702 L:      linux-media@vger.kernel.org
11703 S:      Orphan
11704 W:      https://linuxtv.org
11705 T:      git git://linuxtv.org/media_tree.git
11706 F:      drivers/media/dvb-frontends/mxl5xx*
11707
11708 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11709 M:      Sergey Kozlov <serjk@netup.ru>
11710 M:      Abylay Ospan <aospan@netup.ru>
11711 L:      linux-media@vger.kernel.org
11712 S:      Supported
11713 W:      https://linuxtv.org
11714 W:      http://netup.tv/
11715 T:      git git://linuxtv.org/media_tree.git
11716 F:      drivers/media/pci/netup_unidvb/*
11717
11718 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11719 M:      Dmitry Osipenko <digetx@gmail.com>
11720 L:      linux-media@vger.kernel.org
11721 L:      linux-tegra@vger.kernel.org
11722 S:      Maintained
11723 T:      git git://linuxtv.org/media_tree.git
11724 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11725 F:      drivers/staging/media/tegra-vde/
11726
11727 MEDIA DRIVERS FOR RENESAS - CEU
11728 M:      Jacopo Mondi <jacopo@jmondi.org>
11729 L:      linux-media@vger.kernel.org
11730 L:      linux-renesas-soc@vger.kernel.org
11731 S:      Supported
11732 T:      git git://linuxtv.org/media_tree.git
11733 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11734 F:      drivers/media/platform/renesas-ceu.c
11735 F:      include/media/drv-intf/renesas-ceu.h
11736
11737 MEDIA DRIVERS FOR RENESAS - DRIF
11738 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11739 L:      linux-media@vger.kernel.org
11740 L:      linux-renesas-soc@vger.kernel.org
11741 S:      Supported
11742 T:      git git://linuxtv.org/media_tree.git
11743 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11744 F:      drivers/media/platform/rcar_drif.c
11745
11746 MEDIA DRIVERS FOR RENESAS - FCP
11747 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11748 L:      linux-media@vger.kernel.org
11749 L:      linux-renesas-soc@vger.kernel.org
11750 S:      Supported
11751 T:      git git://linuxtv.org/media_tree.git
11752 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11753 F:      drivers/media/platform/rcar-fcp.c
11754 F:      include/media/rcar-fcp.h
11755
11756 MEDIA DRIVERS FOR RENESAS - FDP1
11757 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11758 L:      linux-media@vger.kernel.org
11759 L:      linux-renesas-soc@vger.kernel.org
11760 S:      Supported
11761 T:      git git://linuxtv.org/media_tree.git
11762 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11763 F:      drivers/media/platform/rcar_fdp1.c
11764
11765 MEDIA DRIVERS FOR RENESAS - VIN
11766 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11767 L:      linux-media@vger.kernel.org
11768 L:      linux-renesas-soc@vger.kernel.org
11769 S:      Supported
11770 T:      git git://linuxtv.org/media_tree.git
11771 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11772 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11773 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11774 F:      drivers/media/platform/rcar-isp.c
11775 F:      drivers/media/platform/rcar-vin/
11776
11777 MEDIA DRIVERS FOR RENESAS - VSP1
11778 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11779 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11780 L:      linux-media@vger.kernel.org
11781 L:      linux-renesas-soc@vger.kernel.org
11782 S:      Supported
11783 T:      git git://linuxtv.org/media_tree.git
11784 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11785 F:      drivers/media/platform/vsp1/
11786
11787 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11788 L:      linux-media@vger.kernel.org
11789 S:      Orphan
11790 W:      https://linuxtv.org
11791 T:      git git://linuxtv.org/media_tree.git
11792 F:      drivers/media/dvb-frontends/stv0910*
11793
11794 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11795 L:      linux-media@vger.kernel.org
11796 S:      Orphan
11797 W:      https://linuxtv.org
11798 T:      git git://linuxtv.org/media_tree.git
11799 F:      drivers/media/dvb-frontends/stv6111*
11800
11801 MEDIA DRIVERS FOR STM32 - DCMI
11802 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11803 L:      linux-media@vger.kernel.org
11804 S:      Supported
11805 T:      git git://linuxtv.org/media_tree.git
11806 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11807 F:      drivers/media/platform/stm32/stm32-dcmi.c
11808
11809 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11810 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11811 L:      linux-media@vger.kernel.org
11812 S:      Maintained
11813 W:      https://linuxtv.org
11814 Q:      http://patchwork.kernel.org/project/linux-media/list/
11815 T:      git git://linuxtv.org/media_tree.git
11816 F:      Documentation/admin-guide/media/
11817 F:      Documentation/devicetree/bindings/media/
11818 F:      Documentation/driver-api/media/
11819 F:      Documentation/userspace-api/media/
11820 F:      drivers/media/
11821 F:      drivers/staging/media/
11822 F:      include/linux/platform_data/media/
11823 F:      include/media/
11824 F:      include/uapi/linux/dvb/
11825 F:      include/uapi/linux/ivtv*
11826 F:      include/uapi/linux/media.h
11827 F:      include/uapi/linux/meye.h
11828 F:      include/uapi/linux/uvcvideo.h
11829 F:      include/uapi/linux/v4l2-*
11830 F:      include/uapi/linux/videodev2.h
11831
11832 MEDIATEK BLUETOOTH DRIVER
11833 M:      Sean Wang <sean.wang@mediatek.com>
11834 L:      linux-bluetooth@vger.kernel.org
11835 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11836 S:      Maintained
11837 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11838 F:      drivers/bluetooth/btmtkuart.c
11839
11840 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11841 M:      Sean Wang <sean.wang@mediatek.com>
11842 L:      linux-pm@vger.kernel.org
11843 S:      Maintained
11844 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11845 F:      drivers/power/reset/mt6323-poweroff.c
11846
11847 MEDIATEK CIR DRIVER
11848 M:      Sean Wang <sean.wang@mediatek.com>
11849 S:      Maintained
11850 F:      drivers/media/rc/mtk-cir.c
11851
11852 MEDIATEK DMA DRIVER
11853 M:      Sean Wang <sean.wang@mediatek.com>
11854 L:      dmaengine@vger.kernel.org
11855 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11856 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11857 S:      Maintained
11858 F:      Documentation/devicetree/bindings/dma/mtk-*
11859 F:      drivers/dma/mediatek/
11860
11861 MEDIATEK ETHERNET DRIVER
11862 M:      Felix Fietkau <nbd@nbd.name>
11863 M:      John Crispin <john@phrozen.org>
11864 M:      Sean Wang <sean.wang@mediatek.com>
11865 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11866 L:      netdev@vger.kernel.org
11867 S:      Maintained
11868 F:      drivers/net/ethernet/mediatek/
11869
11870 MEDIATEK I2C CONTROLLER DRIVER
11871 M:      Qii Wang <qii.wang@mediatek.com>
11872 L:      linux-i2c@vger.kernel.org
11873 S:      Maintained
11874 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11875 F:      drivers/i2c/busses/i2c-mt65xx.c
11876
11877 MEDIATEK IOMMU DRIVER
11878 M:      Yong Wu <yong.wu@mediatek.com>
11879 L:      iommu@lists.linux-foundation.org
11880 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11881 S:      Supported
11882 F:      Documentation/devicetree/bindings/iommu/mediatek*
11883 F:      drivers/iommu/mtk_iommu*
11884 F:      include/dt-bindings/memory/mt*-port.h
11885
11886 MEDIATEK JPEG DRIVER
11887 M:      Rick Chang <rick.chang@mediatek.com>
11888 M:      Bin Liu <bin.liu@mediatek.com>
11889 S:      Supported
11890 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11891 F:      drivers/media/platform/mtk-jpeg/
11892
11893 MEDIATEK MDP DRIVER
11894 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11895 M:      Houlong Wei <houlong.wei@mediatek.com>
11896 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11897 S:      Supported
11898 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11899 F:      drivers/media/platform/mtk-mdp/
11900 F:      drivers/media/platform/mtk-vpu/
11901
11902 MEDIATEK MEDIA DRIVER
11903 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11904 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11905 S:      Supported
11906 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11907 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11908 F:      drivers/media/platform/mtk-vcodec/
11909 F:      drivers/media/platform/mtk-vpu/
11910
11911 MEDIATEK MMC/SD/SDIO DRIVER
11912 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11913 S:      Maintained
11914 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11915 F:      drivers/mmc/host/mtk-sd.c
11916
11917 MEDIATEK MT76 WIRELESS LAN DRIVER
11918 M:      Felix Fietkau <nbd@nbd.name>
11919 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11920 M:      Ryder Lee <ryder.lee@mediatek.com>
11921 R:      Shayne Chen <shayne.chen@mediatek.com>
11922 R:      Sean Wang <sean.wang@mediatek.com>
11923 L:      linux-wireless@vger.kernel.org
11924 S:      Maintained
11925 F:      drivers/net/wireless/mediatek/mt76/
11926
11927 MEDIATEK MT7601U WIRELESS LAN DRIVER
11928 M:      Jakub Kicinski <kubakici@wp.pl>
11929 L:      linux-wireless@vger.kernel.org
11930 S:      Maintained
11931 F:      drivers/net/wireless/mediatek/mt7601u/
11932
11933 MEDIATEK MT7621 CLOCK DRIVER
11934 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11935 S:      Maintained
11936 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11937 F:      drivers/clk/ralink/clk-mt7621.c
11938
11939 MEDIATEK MT7621/28/88 I2C DRIVER
11940 M:      Stefan Roese <sr@denx.de>
11941 L:      linux-i2c@vger.kernel.org
11942 S:      Maintained
11943 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11944 F:      drivers/i2c/busses/i2c-mt7621.c
11945
11946 MEDIATEK MT7621 PHY PCI DRIVER
11947 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11948 S:      Maintained
11949 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11950 F:      drivers/phy/ralink/phy-mt7621-pci.c
11951
11952 MEDIATEK NAND CONTROLLER DRIVER
11953 L:      linux-mtd@lists.infradead.org
11954 S:      Orphan
11955 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11956 F:      drivers/mtd/nand/raw/mtk_*
11957
11958 MEDIATEK PMIC LED DRIVER
11959 M:      Sean Wang <sean.wang@mediatek.com>
11960 S:      Maintained
11961 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11962 F:      drivers/leds/leds-mt6323.c
11963
11964 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11965 M:      Sean Wang <sean.wang@mediatek.com>
11966 S:      Maintained
11967 F:      drivers/char/hw_random/mtk-rng.c
11968
11969 MEDIATEK SWITCH DRIVER
11970 M:      Sean Wang <sean.wang@mediatek.com>
11971 M:      Landen Chao <Landen.Chao@mediatek.com>
11972 M:      DENG Qingfang <dqfext@gmail.com>
11973 L:      netdev@vger.kernel.org
11974 S:      Maintained
11975 F:      drivers/net/dsa/mt7530.*
11976 F:      net/dsa/tag_mtk.c
11977
11978 MEDIATEK USB3 DRD IP DRIVER
11979 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11980 L:      linux-usb@vger.kernel.org
11981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11982 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11983 S:      Maintained
11984 F:      Documentation/devicetree/bindings/usb/mediatek,*
11985 F:      drivers/usb/host/xhci-mtk*
11986 F:      drivers/usb/mtu3/
11987
11988 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11989 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11990 M:      Martin Donnelly <martin.donnelly@ge.com>
11991 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11992 S:      Maintained
11993 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11994 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11995
11996 MEGARAID SCSI/SAS DRIVERS
11997 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11998 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11999 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12000 L:      megaraidlinux.pdl@broadcom.com
12001 L:      linux-scsi@vger.kernel.org
12002 S:      Maintained
12003 W:      http://www.avagotech.com/support/
12004 F:      Documentation/scsi/megaraid.rst
12005 F:      drivers/scsi/megaraid.*
12006 F:      drivers/scsi/megaraid/
12007
12008 MELEXIS MLX90614 DRIVER
12009 M:      Crt Mori <cmo@melexis.com>
12010 L:      linux-iio@vger.kernel.org
12011 S:      Supported
12012 W:      http://www.melexis.com
12013 F:      drivers/iio/temperature/mlx90614.c
12014
12015 MELEXIS MLX90632 DRIVER
12016 M:      Crt Mori <cmo@melexis.com>
12017 L:      linux-iio@vger.kernel.org
12018 S:      Supported
12019 W:      http://www.melexis.com
12020 F:      drivers/iio/temperature/mlx90632.c
12021
12022 MELFAS MIP4 TOUCHSCREEN DRIVER
12023 M:      Sangwon Jee <jeesw@melfas.com>
12024 S:      Supported
12025 W:      http://www.melfas.com
12026 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12027 F:      drivers/input/touchscreen/melfas_mip4.c
12028
12029 MELLANOX BLUEFIELD I2C DRIVER
12030 M:      Khalil Blaiech <kblaiech@nvidia.com>
12031 L:      linux-i2c@vger.kernel.org
12032 S:      Supported
12033 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12034 F:      drivers/i2c/busses/i2c-mlxbf.c
12035
12036 MELLANOX ETHERNET DRIVER (mlx4_en)
12037 M:      Tariq Toukan <tariqt@nvidia.com>
12038 L:      netdev@vger.kernel.org
12039 S:      Supported
12040 W:      http://www.mellanox.com
12041 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12042 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12043
12044 MELLANOX ETHERNET DRIVER (mlx5e)
12045 M:      Saeed Mahameed <saeedm@nvidia.com>
12046 L:      netdev@vger.kernel.org
12047 S:      Supported
12048 W:      http://www.mellanox.com
12049 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12050 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12051
12052 MELLANOX ETHERNET INNOVA DRIVERS
12053 R:      Boris Pismenny <borisp@nvidia.com>
12054 L:      netdev@vger.kernel.org
12055 S:      Supported
12056 W:      http://www.mellanox.com
12057 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12058 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12059 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12060 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12061 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12062
12063 MELLANOX ETHERNET SWITCH DRIVERS
12064 M:      Jiri Pirko <jiri@nvidia.com>
12065 M:      Ido Schimmel <idosch@nvidia.com>
12066 L:      netdev@vger.kernel.org
12067 S:      Supported
12068 W:      http://www.mellanox.com
12069 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12070 F:      drivers/net/ethernet/mellanox/mlxsw/
12071 F:      tools/testing/selftests/drivers/net/mlxsw/
12072
12073 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12074 M:      mlxsw@nvidia.com
12075 L:      netdev@vger.kernel.org
12076 S:      Supported
12077 W:      http://www.mellanox.com
12078 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12079 F:      drivers/net/ethernet/mellanox/mlxfw/
12080
12081 MELLANOX HARDWARE PLATFORM SUPPORT
12082 M:      Hans de Goede <hdegoede@redhat.com>
12083 M:      Mark Gross <markgross@kernel.org>
12084 M:      Vadim Pasternak <vadimp@nvidia.com>
12085 L:      platform-driver-x86@vger.kernel.org
12086 S:      Supported
12087 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12088 F:      drivers/platform/mellanox/
12089 F:      include/linux/platform_data/mlxreg.h
12090
12091 MELLANOX MLX4 core VPI driver
12092 M:      Tariq Toukan <tariqt@nvidia.com>
12093 L:      netdev@vger.kernel.org
12094 L:      linux-rdma@vger.kernel.org
12095 S:      Supported
12096 W:      http://www.mellanox.com
12097 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12098 F:      drivers/net/ethernet/mellanox/mlx4/
12099 F:      include/linux/mlx4/
12100
12101 MELLANOX MLX4 IB driver
12102 M:      Yishai Hadas <yishaih@nvidia.com>
12103 L:      linux-rdma@vger.kernel.org
12104 S:      Supported
12105 W:      http://www.mellanox.com
12106 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12107 F:      drivers/infiniband/hw/mlx4/
12108 F:      include/linux/mlx4/
12109 F:      include/uapi/rdma/mlx4-abi.h
12110
12111 MELLANOX MLX5 core VPI driver
12112 M:      Saeed Mahameed <saeedm@nvidia.com>
12113 M:      Leon Romanovsky <leonro@nvidia.com>
12114 L:      netdev@vger.kernel.org
12115 L:      linux-rdma@vger.kernel.org
12116 S:      Supported
12117 W:      http://www.mellanox.com
12118 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12119 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12120 F:      drivers/net/ethernet/mellanox/mlx5/core/
12121 F:      include/linux/mlx5/
12122
12123 MELLANOX MLX5 IB driver
12124 M:      Leon Romanovsky <leonro@nvidia.com>
12125 L:      linux-rdma@vger.kernel.org
12126 S:      Supported
12127 W:      http://www.mellanox.com
12128 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12129 F:      drivers/infiniband/hw/mlx5/
12130 F:      include/linux/mlx5/
12131 F:      include/uapi/rdma/mlx5-abi.h
12132
12133 MELLANOX MLXCPLD I2C AND MUX DRIVER
12134 M:      Vadim Pasternak <vadimp@nvidia.com>
12135 M:      Michael Shych <michaelsh@nvidia.com>
12136 L:      linux-i2c@vger.kernel.org
12137 S:      Supported
12138 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12139 F:      drivers/i2c/busses/i2c-mlxcpld.c
12140 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12141
12142 MELLANOX MLXCPLD LED DRIVER
12143 M:      Vadim Pasternak <vadimp@nvidia.com>
12144 L:      linux-leds@vger.kernel.org
12145 S:      Supported
12146 F:      Documentation/leds/leds-mlxcpld.rst
12147 F:      drivers/leds/leds-mlxcpld.c
12148 F:      drivers/leds/leds-mlxreg.c
12149
12150 MELLANOX PLATFORM DRIVER
12151 M:      Vadim Pasternak <vadimp@nvidia.com>
12152 L:      platform-driver-x86@vger.kernel.org
12153 S:      Supported
12154 F:      drivers/platform/x86/mlx-platform.c
12155
12156 MEMBARRIER SUPPORT
12157 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12158 M:      "Paul E. McKenney" <paulmck@kernel.org>
12159 L:      linux-kernel@vger.kernel.org
12160 S:      Supported
12161 F:      arch/powerpc/include/asm/membarrier.h
12162 F:      include/uapi/linux/membarrier.h
12163 F:      kernel/sched/membarrier.c
12164
12165 MEMBLOCK
12166 M:      Mike Rapoport <rppt@linux.ibm.com>
12167 L:      linux-mm@kvack.org
12168 S:      Maintained
12169 F:      Documentation/core-api/boot-time-mm.rst
12170 F:      include/linux/memblock.h
12171 F:      mm/memblock.c
12172
12173 MEMORY CONTROLLER DRIVERS
12174 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12175 L:      linux-kernel@vger.kernel.org
12176 S:      Maintained
12177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12178 F:      Documentation/devicetree/bindings/memory-controllers/
12179 F:      drivers/memory/
12180 F:      include/dt-bindings/memory/
12181 F:      include/memory/
12182
12183 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12184 M:      Dmitry Osipenko <digetx@gmail.com>
12185 L:      linux-pm@vger.kernel.org
12186 L:      linux-tegra@vger.kernel.org
12187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12188 S:      Maintained
12189 F:      drivers/devfreq/tegra30-devfreq.c
12190
12191 MEMORY MANAGEMENT
12192 M:      Andrew Morton <akpm@linux-foundation.org>
12193 L:      linux-mm@kvack.org
12194 S:      Maintained
12195 W:      http://www.linux-mm.org
12196 T:      quilt https://ozlabs.org/~akpm/mmotm/
12197 T:      quilt https://ozlabs.org/~akpm/mmots/
12198 T:      git git://github.com/hnaz/linux-mm.git
12199 F:      include/linux/gfp.h
12200 F:      include/linux/memory_hotplug.h
12201 F:      include/linux/mm.h
12202 F:      include/linux/mmzone.h
12203 F:      include/linux/pagewalk.h
12204 F:      include/linux/vmalloc.h
12205 F:      mm/
12206 F:      tools/testing/selftests/vm/
12207
12208 MEMORY TECHNOLOGY DEVICES (MTD)
12209 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12210 M:      Richard Weinberger <richard@nod.at>
12211 M:      Vignesh Raghavendra <vigneshr@ti.com>
12212 L:      linux-mtd@lists.infradead.org
12213 S:      Maintained
12214 W:      http://www.linux-mtd.infradead.org/
12215 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12216 C:      irc://irc.oftc.net/mtd
12217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12219 F:      Documentation/devicetree/bindings/mtd/
12220 F:      drivers/mtd/
12221 F:      include/linux/mtd/
12222 F:      include/uapi/mtd/
12223
12224 MEN A21 WATCHDOG DRIVER
12225 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12226 L:      linux-watchdog@vger.kernel.org
12227 S:      Maintained
12228 F:      drivers/watchdog/mena21_wdt.c
12229
12230 MEN CHAMELEON BUS (mcb)
12231 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12232 S:      Maintained
12233 F:      Documentation/driver-api/men-chameleon-bus.rst
12234 F:      drivers/mcb/
12235 F:      include/linux/mcb.h
12236
12237 MEN F21BMC (Board Management Controller)
12238 M:      Andreas Werner <andreas.werner@men.de>
12239 S:      Supported
12240 F:      Documentation/hwmon/menf21bmc.rst
12241 F:      drivers/hwmon/menf21bmc_hwmon.c
12242 F:      drivers/leds/leds-menf21bmc.c
12243 F:      drivers/mfd/menf21bmc.c
12244 F:      drivers/watchdog/menf21bmc_wdt.c
12245
12246 MEN Z069 WATCHDOG DRIVER
12247 M:      Johannes Thumshirn <jth@kernel.org>
12248 L:      linux-watchdog@vger.kernel.org
12249 S:      Maintained
12250 F:      drivers/watchdog/menz69_wdt.c
12251
12252 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12253 M:      Neil Armstrong <narmstrong@baylibre.com>
12254 L:      linux-media@vger.kernel.org
12255 L:      linux-amlogic@lists.infradead.org
12256 S:      Supported
12257 W:      http://linux-meson.com/
12258 T:      git git://linuxtv.org/media_tree.git
12259 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12260 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12261 F:      drivers/media/cec/platform/meson/ao-cec.c
12262
12263 MESON GE2D DRIVER FOR AMLOGIC SOCS
12264 M:      Neil Armstrong <narmstrong@baylibre.com>
12265 L:      linux-media@vger.kernel.org
12266 L:      linux-amlogic@lists.infradead.org
12267 S:      Supported
12268 T:      git git://linuxtv.org/media_tree.git
12269 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12270 F:      drivers/media/platform/meson/ge2d/
12271
12272 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12273 M:      Liang Yang <liang.yang@amlogic.com>
12274 L:      linux-mtd@lists.infradead.org
12275 S:      Maintained
12276 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12277 F:      drivers/mtd/nand/raw/meson_*
12278
12279 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12280 M:      Neil Armstrong <narmstrong@baylibre.com>
12281 L:      linux-media@vger.kernel.org
12282 L:      linux-amlogic@lists.infradead.org
12283 S:      Supported
12284 T:      git git://linuxtv.org/media_tree.git
12285 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12286 F:      drivers/staging/media/meson/vdec/
12287
12288 METHODE UDPU SUPPORT
12289 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12290 S:      Maintained
12291 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12292
12293 MHI BUS
12294 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12295 M:      Hemant Kumar <hemantk@codeaurora.org>
12296 L:      linux-arm-msm@vger.kernel.org
12297 S:      Maintained
12298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12299 F:      Documentation/ABI/stable/sysfs-bus-mhi
12300 F:      Documentation/mhi/
12301 F:      drivers/bus/mhi/
12302 F:      include/linux/mhi.h
12303
12304 MICROBLAZE ARCHITECTURE
12305 M:      Michal Simek <monstr@monstr.eu>
12306 S:      Supported
12307 W:      http://www.monstr.eu/fdt/
12308 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12309 F:      arch/microblaze/
12310
12311 MICROCHIP AT91 DMA DRIVERS
12312 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12313 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12315 L:      dmaengine@vger.kernel.org
12316 S:      Supported
12317 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12318 F:      drivers/dma/at_hdmac.c
12319 F:      drivers/dma/at_hdmac_regs.h
12320 F:      drivers/dma/at_xdmac.c
12321 F:      include/dt-bindings/dma/at91.h
12322
12323 MICROCHIP AT91 SERIAL DRIVER
12324 M:      Richard Genoud <richard.genoud@gmail.com>
12325 S:      Maintained
12326 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12327 F:      drivers/tty/serial/atmel_serial.c
12328 F:      drivers/tty/serial/atmel_serial.h
12329
12330 MICROCHIP AT91 USART MFD DRIVER
12331 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12332 L:      linux-kernel@vger.kernel.org
12333 S:      Supported
12334 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12335 F:      drivers/mfd/at91-usart.c
12336 F:      include/dt-bindings/mfd/at91-usart.h
12337
12338 MICROCHIP AT91 USART SPI DRIVER
12339 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12340 L:      linux-spi@vger.kernel.org
12341 S:      Supported
12342 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12343 F:      drivers/spi/spi-at91-usart.c
12344
12345 MICROCHIP AUDIO ASOC DRIVERS
12346 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12347 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12348 S:      Supported
12349 F:      sound/soc/atmel
12350
12351 MICROCHIP ECC DRIVER
12352 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12353 L:      linux-crypto@vger.kernel.org
12354 S:      Maintained
12355 F:      drivers/crypto/atmel-ecc.*
12356
12357 MICROCHIP EIC DRIVER
12358 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12360 S:      Supported
12361 F:      drivers/irqchip/irq-mchp-eic.c
12362
12363 MICROCHIP I2C DRIVER
12364 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12365 L:      linux-i2c@vger.kernel.org
12366 S:      Supported
12367 F:      drivers/i2c/busses/i2c-at91-*.c
12368 F:      drivers/i2c/busses/i2c-at91.h
12369
12370 MICROCHIP ISC DRIVER
12371 M:      Eugen Hristev <eugen.hristev@microchip.com>
12372 L:      linux-media@vger.kernel.org
12373 S:      Supported
12374 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12375 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12376 F:      drivers/media/platform/atmel/atmel-isc-base.c
12377 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12378 F:      drivers/media/platform/atmel/atmel-isc.h
12379 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12380 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12381 F:      include/linux/atmel-isc-media.h
12382
12383 MICROCHIP ISI DRIVER
12384 M:      Eugen Hristev <eugen.hristev@microchip.com>
12385 L:      linux-media@vger.kernel.org
12386 S:      Supported
12387 F:      drivers/media/platform/atmel/atmel-isi.c
12388 F:      drivers/media/platform/atmel/atmel-isi.h
12389
12390 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12391 M:      Woojung Huh <woojung.huh@microchip.com>
12392 M:      UNGLinuxDriver@microchip.com
12393 L:      netdev@vger.kernel.org
12394 S:      Maintained
12395 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12396 F:      drivers/net/dsa/microchip/*
12397 F:      include/linux/platform_data/microchip-ksz.h
12398 F:      net/dsa/tag_ksz.c
12399
12400 MICROCHIP LAN743X ETHERNET DRIVER
12401 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12402 M:      UNGLinuxDriver@microchip.com
12403 L:      netdev@vger.kernel.org
12404 S:      Maintained
12405 F:      drivers/net/ethernet/microchip/lan743x_*
12406
12407 MICROCHIP LCDFB DRIVER
12408 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12409 L:      linux-fbdev@vger.kernel.org
12410 S:      Maintained
12411 F:      drivers/video/fbdev/atmel_lcdfb.c
12412 F:      include/video/atmel_lcdc.h
12413
12414 MICROCHIP MCP16502 PMIC DRIVER
12415 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12419 F:      drivers/regulator/mcp16502.c
12420
12421 MICROCHIP MCP3911 ADC DRIVER
12422 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12423 M:      Kent Gustavsson <kent@minoris.se>
12424 L:      linux-iio@vger.kernel.org
12425 S:      Supported
12426 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12427 F:      drivers/iio/adc/mcp3911.c
12428
12429 MICROCHIP MMC/SD/SDIO MCI DRIVER
12430 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12431 S:      Maintained
12432 F:      drivers/mmc/host/atmel-mci.c
12433
12434 MICROCHIP NAND DRIVER
12435 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12436 L:      linux-mtd@lists.infradead.org
12437 S:      Supported
12438 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12439 F:      drivers/mtd/nand/raw/atmel/*
12440
12441 MICROCHIP PWM DRIVER
12442 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12444 L:      linux-pwm@vger.kernel.org
12445 S:      Supported
12446 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12447 F:      drivers/pwm/pwm-atmel.c
12448
12449 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12450 M:      Eugen Hristev <eugen.hristev@microchip.com>
12451 L:      linux-iio@vger.kernel.org
12452 S:      Supported
12453 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12454 F:      drivers/iio/adc/at91-sama5d2_adc.c
12455 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12456
12457 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12458 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12459 S:      Supported
12460 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12461
12462 MICROCHIP SPI DRIVER
12463 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12464 S:      Supported
12465 F:      drivers/spi/spi-atmel.*
12466
12467 MICROCHIP SSC DRIVER
12468 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12469 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12470 S:      Supported
12471 F:      drivers/misc/atmel-ssc.c
12472 F:      include/linux/atmel-ssc.h
12473
12474 MICROCHIP USB251XB DRIVER
12475 M:      Richard Leitner <richard.leitner@skidata.com>
12476 L:      linux-usb@vger.kernel.org
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12479 F:      drivers/usb/misc/usb251xb.c
12480
12481 MICROCHIP USBA UDC DRIVER
12482 M:      Cristian Birsan <cristian.birsan@microchip.com>
12483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12484 S:      Supported
12485 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12486
12487 MICROCHIP WILC1000 WIFI DRIVER
12488 M:      Ajay Singh <ajay.kathat@microchip.com>
12489 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12490 L:      linux-wireless@vger.kernel.org
12491 S:      Supported
12492 F:      drivers/net/wireless/microchip/wilc1000/
12493
12494 MICROSEMI MIPS SOCS
12495 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12496 M:      UNGLinuxDriver@microchip.com
12497 L:      linux-mips@vger.kernel.org
12498 S:      Supported
12499 F:      Documentation/devicetree/bindings/mips/mscc.txt
12500 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12501 F:      arch/mips/boot/dts/mscc/
12502 F:      arch/mips/configs/generic/board-ocelot.config
12503 F:      arch/mips/generic/board-ocelot.c
12504
12505 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12506 M:      Don Brace <don.brace@microchip.com>
12507 L:      storagedev@microchip.com
12508 L:      linux-scsi@vger.kernel.org
12509 S:      Supported
12510 F:      Documentation/scsi/smartpqi.rst
12511 F:      drivers/scsi/smartpqi/Kconfig
12512 F:      drivers/scsi/smartpqi/Makefile
12513 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12514 F:      include/linux/cciss*.h
12515 F:      include/uapi/linux/cciss*.h
12516
12517 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12518 M:      Maximilian Luz <luzmaximilian@gmail.com>
12519 L:      linux-pm@vger.kernel.org
12520 L:      platform-driver-x86@vger.kernel.org
12521 S:      Maintained
12522 F:      drivers/power/supply/surface_battery.c
12523 F:      drivers/power/supply/surface_charger.c
12524
12525 MICROSOFT SURFACE DTX DRIVER
12526 M:      Maximilian Luz <luzmaximilian@gmail.com>
12527 L:      platform-driver-x86@vger.kernel.org
12528 S:      Maintained
12529 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12530 F:      drivers/platform/surface/surface_dtx.c
12531 F:      include/uapi/linux/surface_aggregator/dtx.h
12532
12533 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12534 M:      Maximilian Luz <luzmaximilian@gmail.com>
12535 L:      platform-driver-x86@vger.kernel.org
12536 S:      Maintained
12537 F:      drivers/platform/surface/surface_gpe.c
12538
12539 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12540 M:      Hans de Goede <hdegoede@redhat.com>
12541 M:      Mark Gross <markgross@kernel.org>
12542 M:      Maximilian Luz <luzmaximilian@gmail.com>
12543 L:      platform-driver-x86@vger.kernel.org
12544 S:      Maintained
12545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12546 F:      drivers/platform/surface/
12547
12548 MICROSOFT SURFACE HID TRANSPORT DRIVER
12549 M:      Maximilian Luz <luzmaximilian@gmail.com>
12550 L:      linux-input@vger.kernel.org
12551 L:      platform-driver-x86@vger.kernel.org
12552 S:      Maintained
12553 F:      drivers/hid/surface-hid/
12554
12555 MICROSOFT SURFACE HOT-PLUG DRIVER
12556 M:      Maximilian Luz <luzmaximilian@gmail.com>
12557 L:      platform-driver-x86@vger.kernel.org
12558 S:      Maintained
12559 F:      drivers/platform/surface/surface_hotplug.c
12560
12561 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12562 M:      Maximilian Luz <luzmaximilian@gmail.com>
12563 L:      platform-driver-x86@vger.kernel.org
12564 S:      Maintained
12565 F:      drivers/platform/surface/surface_platform_profile.c
12566
12567 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12568 M:      Chen Yu <yu.c.chen@intel.com>
12569 L:      platform-driver-x86@vger.kernel.org
12570 S:      Supported
12571 F:      drivers/platform/surface/surfacepro3_button.c
12572
12573 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12574 M:      Maximilian Luz <luzmaximilian@gmail.com>
12575 L:      platform-driver-x86@vger.kernel.org
12576 S:      Maintained
12577 W:      https://github.com/linux-surface/surface-aggregator-module
12578 C:      irc://irc.libera.chat/linux-surface
12579 F:      Documentation/driver-api/surface_aggregator/
12580 F:      drivers/platform/surface/aggregator/
12581 F:      drivers/platform/surface/surface_acpi_notify.c
12582 F:      drivers/platform/surface/surface_aggregator_cdev.c
12583 F:      drivers/platform/surface/surface_aggregator_registry.c
12584 F:      include/linux/surface_acpi_notify.h
12585 F:      include/linux/surface_aggregator/
12586 F:      include/uapi/linux/surface_aggregator/
12587
12588 MICROTEK X6 SCANNER
12589 M:      Oliver Neukum <oliver@neukum.org>
12590 S:      Maintained
12591 F:      drivers/usb/image/microtek.*
12592
12593 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12594 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12595 M:      Luka Perkov <luka.perkov@sartura.hr>
12596 S:      Maintained
12597 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12598 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12599 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12600 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12601 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12602 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12603
12604 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12605 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12606 L:      linux-media@vger.kernel.org
12607 S:      Maintained
12608 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12609 F:      Documentation/driver-api/media/drivers/ccs/
12610 F:      Documentation/userspace-api/media/drivers/ccs.rst
12611 F:      drivers/media/i2c/ccs-pll.c
12612 F:      drivers/media/i2c/ccs-pll.h
12613 F:      drivers/media/i2c/ccs/
12614 F:      include/uapi/linux/ccs.h
12615 F:      include/uapi/linux/smiapp.h
12616
12617 MIPS
12618 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12619 L:      linux-mips@vger.kernel.org
12620 S:      Maintained
12621 W:      http://www.linux-mips.org/
12622 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12624 F:      Documentation/devicetree/bindings/mips/
12625 F:      Documentation/mips/
12626 F:      arch/mips/
12627 F:      drivers/platform/mips/
12628
12629 MIPS BOSTON DEVELOPMENT BOARD
12630 M:      Paul Burton <paulburton@kernel.org>
12631 L:      linux-mips@vger.kernel.org
12632 S:      Maintained
12633 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12634 F:      arch/mips/boot/dts/img/boston.dts
12635 F:      arch/mips/configs/generic/board-boston.config
12636 F:      drivers/clk/imgtec/clk-boston.c
12637 F:      include/dt-bindings/clock/boston-clock.h
12638
12639 MIPS CORE DRIVERS
12640 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12641 M:      Serge Semin <fancer.lancer@gmail.com>
12642 L:      linux-mips@vger.kernel.org
12643 S:      Supported
12644 F:      drivers/bus/mips_cdmm.c
12645 F:      drivers/clocksource/mips-gic-timer.c
12646 F:      drivers/cpuidle/cpuidle-cps.c
12647 F:      drivers/irqchip/irq-mips-cpu.c
12648 F:      drivers/irqchip/irq-mips-gic.c
12649
12650 MIPS GENERIC PLATFORM
12651 M:      Paul Burton <paulburton@kernel.org>
12652 L:      linux-mips@vger.kernel.org
12653 S:      Supported
12654 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12655 F:      arch/mips/generic/
12656 F:      arch/mips/tools/generic-board-config.sh
12657
12658 MIPS RINT INSTRUCTION EMULATION
12659 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12660 L:      linux-mips@vger.kernel.org
12661 S:      Supported
12662 F:      arch/mips/math-emu/dp_rint.c
12663 F:      arch/mips/math-emu/sp_rint.c
12664
12665 MIPS/LOONGSON1 ARCHITECTURE
12666 M:      Keguang Zhang <keguang.zhang@gmail.com>
12667 L:      linux-mips@vger.kernel.org
12668 S:      Maintained
12669 F:      arch/mips/include/asm/mach-loongson32/
12670 F:      arch/mips/loongson32/
12671 F:      drivers/*/*/*loongson1*
12672 F:      drivers/*/*loongson1*
12673
12674 MIPS/LOONGSON2EF ARCHITECTURE
12675 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12676 L:      linux-mips@vger.kernel.org
12677 S:      Maintained
12678 F:      arch/mips/include/asm/mach-loongson2ef/
12679 F:      arch/mips/loongson2ef/
12680 F:      drivers/cpufreq/loongson2_cpufreq.c
12681
12682 MIPS/LOONGSON64 ARCHITECTURE
12683 M:      Huacai Chen <chenhuacai@kernel.org>
12684 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12685 L:      linux-mips@vger.kernel.org
12686 S:      Maintained
12687 F:      arch/mips/include/asm/mach-loongson64/
12688 F:      arch/mips/loongson64/
12689 F:      drivers/irqchip/irq-loongson*
12690 F:      drivers/platform/mips/cpu_hwmon.c
12691
12692 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12693 M:      Hans Verkuil <hverkuil@xs4all.nl>
12694 L:      linux-media@vger.kernel.org
12695 S:      Odd Fixes
12696 W:      https://linuxtv.org
12697 T:      git git://linuxtv.org/media_tree.git
12698 F:      drivers/media/radio/radio-miropcm20*
12699
12700 MMP SUPPORT
12701 R:      Lubomir Rintel <lkundrak@v3.sk>
12702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12703 S:      Odd Fixes
12704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12705 F:      arch/arm/boot/dts/mmp*
12706 F:      arch/arm/mach-mmp/
12707 F:      include/linux/soc/mmp/
12708
12709 MMP USB PHY DRIVERS
12710 R:      Lubomir Rintel <lkundrak@v3.sk>
12711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12712 S:      Maintained
12713 F:      drivers/phy/marvell/phy-mmp3-usb.c
12714 F:      drivers/phy/marvell/phy-pxa-usb.c
12715
12716 MMU GATHER AND TLB INVALIDATION
12717 M:      Will Deacon <will@kernel.org>
12718 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12719 M:      Andrew Morton <akpm@linux-foundation.org>
12720 M:      Nick Piggin <npiggin@gmail.com>
12721 M:      Peter Zijlstra <peterz@infradead.org>
12722 L:      linux-arch@vger.kernel.org
12723 L:      linux-mm@kvack.org
12724 S:      Maintained
12725 F:      arch/*/include/asm/tlb.h
12726 F:      include/asm-generic/tlb.h
12727 F:      mm/mmu_gather.c
12728
12729 MN88472 MEDIA DRIVER
12730 M:      Antti Palosaari <crope@iki.fi>
12731 L:      linux-media@vger.kernel.org
12732 S:      Maintained
12733 W:      https://linuxtv.org
12734 W:      http://palosaari.fi/linux/
12735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12736 F:      drivers/media/dvb-frontends/mn88472*
12737
12738 MN88473 MEDIA DRIVER
12739 M:      Antti Palosaari <crope@iki.fi>
12740 L:      linux-media@vger.kernel.org
12741 S:      Maintained
12742 W:      https://linuxtv.org
12743 W:      http://palosaari.fi/linux/
12744 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12745 F:      drivers/media/dvb-frontends/mn88473*
12746
12747 MODULE SUPPORT
12748 M:      Luis Chamberlain <mcgrof@kernel.org>
12749 M:      Jessica Yu <jeyu@kernel.org>
12750 S:      Maintained
12751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12752 F:      include/linux/module.h
12753 F:      kernel/module.c
12754
12755 MONOLITHIC POWER SYSTEM PMIC DRIVER
12756 M:      Saravanan Sekar <sravanhome@gmail.com>
12757 S:      Maintained
12758 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12759 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12760 F:      drivers/iio/adc/mp2629_adc.c
12761 F:      drivers/mfd/mp2629.c
12762 F:      drivers/power/supply/mp2629_charger.c
12763 F:      drivers/regulator/mp5416.c
12764 F:      drivers/regulator/mpq7920.c
12765 F:      drivers/regulator/mpq7920.h
12766 F:      include/linux/mfd/mp2629.h
12767
12768 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12769 S:      Orphan
12770 W:      http://popies.net/meye/
12771 F:      Documentation/userspace-api/media/drivers/meye*
12772 F:      drivers/media/pci/meye/
12773 F:      include/uapi/linux/meye.h
12774
12775 MOTORCOMM PHY DRIVER
12776 M:      Peter Geis <pgwipeout@gmail.com>
12777 L:      netdev@vger.kernel.org
12778 S:      Maintained
12779 F:      drivers/net/phy/motorcomm.c
12780
12781 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12782 M:      Jiri Slaby <jirislaby@kernel.org>
12783 S:      Maintained
12784 F:      Documentation/driver-api/serial/moxa-smartio.rst
12785 F:      drivers/tty/mxser.*
12786
12787 MR800 AVERMEDIA USB FM RADIO DRIVER
12788 M:      Alexey Klimov <klimov.linux@gmail.com>
12789 L:      linux-media@vger.kernel.org
12790 S:      Maintained
12791 T:      git git://linuxtv.org/media_tree.git
12792 F:      drivers/media/radio/radio-mr800.c
12793
12794 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12795 M:      Alan Ott <alan@signal11.us>
12796 L:      linux-wpan@vger.kernel.org
12797 S:      Maintained
12798 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12799 F:      drivers/net/ieee802154/mrf24j40.c
12800
12801 MSI LAPTOP SUPPORT
12802 M:      "Lee, Chun-Yi" <jlee@suse.com>
12803 L:      platform-driver-x86@vger.kernel.org
12804 S:      Maintained
12805 F:      drivers/platform/x86/msi-laptop.c
12806
12807 MSI WMI SUPPORT
12808 L:      platform-driver-x86@vger.kernel.org
12809 S:      Orphan
12810 F:      drivers/platform/x86/msi-wmi.c
12811
12812 MSI001 MEDIA DRIVER
12813 M:      Antti Palosaari <crope@iki.fi>
12814 L:      linux-media@vger.kernel.org
12815 S:      Maintained
12816 W:      https://linuxtv.org
12817 W:      http://palosaari.fi/linux/
12818 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12819 T:      git git://linuxtv.org/anttip/media_tree.git
12820 F:      drivers/media/tuners/msi001*
12821
12822 MSI2500 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 T:      git git://linuxtv.org/anttip/media_tree.git
12830 F:      drivers/media/usb/msi2500/
12831
12832 MSTAR INTERRUPT CONTROLLER DRIVER
12833 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12834 M:      Daniel Palmer <daniel@thingy.jp>
12835 S:      Maintained
12836 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12837 F:      drivers/irqchip/irq-mst-intc.c
12838
12839 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12840 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12841 L:      linux-mtd@lists.infradead.org
12842 S:      Maintained
12843 F:      drivers/mtd/devices/docg3*
12844
12845 MT9M032 APTINA SENSOR DRIVER
12846 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12847 L:      linux-media@vger.kernel.org
12848 S:      Maintained
12849 T:      git git://linuxtv.org/media_tree.git
12850 F:      drivers/media/i2c/mt9m032.c
12851 F:      include/media/i2c/mt9m032.h
12852
12853 MT9P031 APTINA CAMERA SENSOR
12854 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12855 L:      linux-media@vger.kernel.org
12856 S:      Maintained
12857 T:      git git://linuxtv.org/media_tree.git
12858 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
12859 F:      drivers/media/i2c/mt9p031.c
12860 F:      include/media/i2c/mt9p031.h
12861
12862 MT9T001 APTINA CAMERA SENSOR
12863 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12864 L:      linux-media@vger.kernel.org
12865 S:      Maintained
12866 T:      git git://linuxtv.org/media_tree.git
12867 F:      drivers/media/i2c/mt9t001.c
12868 F:      include/media/i2c/mt9t001.h
12869
12870 MT9T112 APTINA CAMERA SENSOR
12871 M:      Jacopo Mondi <jacopo@jmondi.org>
12872 L:      linux-media@vger.kernel.org
12873 S:      Odd Fixes
12874 T:      git git://linuxtv.org/media_tree.git
12875 F:      drivers/media/i2c/mt9t112.c
12876 F:      include/media/i2c/mt9t112.h
12877
12878 MT9V032 APTINA CAMERA SENSOR
12879 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12880 L:      linux-media@vger.kernel.org
12881 S:      Maintained
12882 T:      git git://linuxtv.org/media_tree.git
12883 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12884 F:      drivers/media/i2c/mt9v032.c
12885 F:      include/media/i2c/mt9v032.h
12886
12887 MT9V111 APTINA CAMERA SENSOR
12888 M:      Jacopo Mondi <jacopo@jmondi.org>
12889 L:      linux-media@vger.kernel.org
12890 S:      Maintained
12891 T:      git git://linuxtv.org/media_tree.git
12892 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12893 F:      drivers/media/i2c/mt9v111.c
12894
12895 MULTIFUNCTION DEVICES (MFD)
12896 M:      Lee Jones <lee.jones@linaro.org>
12897 S:      Supported
12898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12899 F:      Documentation/devicetree/bindings/mfd/
12900 F:      drivers/mfd/
12901 F:      include/dt-bindings/mfd/
12902 F:      include/linux/mfd/
12903
12904 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12905 S:      Orphan
12906 F:      drivers/mmc/host/mmc_spi.c
12907 F:      include/linux/spi/mmc_spi.h
12908
12909 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12910 M:      Ulf Hansson <ulf.hansson@linaro.org>
12911 L:      linux-mmc@vger.kernel.org
12912 S:      Maintained
12913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12914 F:      Documentation/devicetree/bindings/mmc/
12915 F:      drivers/mmc/
12916 F:      include/linux/mmc/
12917 F:      include/uapi/linux/mmc/
12918
12919 MULTIPLEXER SUBSYSTEM
12920 M:      Peter Rosin <peda@axentia.se>
12921 S:      Maintained
12922 F:      Documentation/ABI/testing/sysfs-class-mux*
12923 F:      Documentation/devicetree/bindings/mux/
12924 F:      drivers/mux/
12925 F:      include/dt-bindings/mux/
12926 F:      include/linux/mux/
12927
12928 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12929 M:      Bin Liu <b-liu@ti.com>
12930 L:      linux-usb@vger.kernel.org
12931 S:      Maintained
12932 F:      drivers/usb/musb/
12933
12934 MXL301RF MEDIA DRIVER
12935 M:      Akihiro Tsukada <tskd08@gmail.com>
12936 L:      linux-media@vger.kernel.org
12937 S:      Odd Fixes
12938 F:      drivers/media/tuners/mxl301rf*
12939
12940 MXL5007T MEDIA DRIVER
12941 M:      Michael Krufky <mkrufky@linuxtv.org>
12942 L:      linux-media@vger.kernel.org
12943 S:      Maintained
12944 W:      https://linuxtv.org
12945 W:      http://github.com/mkrufky
12946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12947 T:      git git://linuxtv.org/mkrufky/tuners.git
12948 F:      drivers/media/tuners/mxl5007t.*
12949
12950 MXSFB DRM DRIVER
12951 M:      Marek Vasut <marex@denx.de>
12952 M:      Stefan Agner <stefan@agner.ch>
12953 L:      dri-devel@lists.freedesktop.org
12954 S:      Supported
12955 T:      git git://anongit.freedesktop.org/drm/drm-misc
12956 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12957 F:      drivers/gpu/drm/mxsfb/
12958
12959 MYLEX DAC960 PCI RAID Controller
12960 M:      Hannes Reinecke <hare@kernel.org>
12961 L:      linux-scsi@vger.kernel.org
12962 S:      Supported
12963 F:      drivers/scsi/myrb.*
12964 F:      drivers/scsi/myrs.*
12965
12966 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12967 M:      Chris Lee <christopher.lee@cspi.com>
12968 L:      netdev@vger.kernel.org
12969 S:      Supported
12970 W:      https://www.cspi.com/ethernet-products/support/downloads/
12971 F:      drivers/net/ethernet/myricom/myri10ge/
12972
12973 NAND FLASH SUBSYSTEM
12974 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12975 R:      Richard Weinberger <richard@nod.at>
12976 L:      linux-mtd@lists.infradead.org
12977 S:      Maintained
12978 W:      http://www.linux-mtd.infradead.org/
12979 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12980 C:      irc://irc.oftc.net/mtd
12981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12982 F:      drivers/mtd/nand/
12983 F:      include/linux/mtd/*nand*.h
12984
12985 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12986 M:      Daniel Mack <zonque@gmail.com>
12987 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12988 S:      Maintained
12989 W:      http://www.native-instruments.com
12990 F:      sound/usb/caiaq/
12991
12992 NATSEMI ETHERNET DRIVER (DP8381x)
12993 S:      Orphan
12994 F:      drivers/net/ethernet/natsemi/natsemi.c
12995
12996 NCR 5380 SCSI DRIVERS
12997 M:      Finn Thain <fthain@linux-m68k.org>
12998 M:      Michael Schmitz <schmitzmic@gmail.com>
12999 L:      linux-scsi@vger.kernel.org
13000 S:      Maintained
13001 F:      Documentation/scsi/g_NCR5380.rst
13002 F:      drivers/scsi/NCR5380.*
13003 F:      drivers/scsi/arm/cumana_1.c
13004 F:      drivers/scsi/arm/oak.c
13005 F:      drivers/scsi/atari_scsi.*
13006 F:      drivers/scsi/dmx3191d.c
13007 F:      drivers/scsi/g_NCR5380.*
13008 F:      drivers/scsi/mac_scsi.*
13009 F:      drivers/scsi/sun3_scsi.*
13010 F:      drivers/scsi/sun3_scsi_vme.c
13011
13012 NCSI LIBRARY
13013 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13014 S:      Maintained
13015 F:      net/ncsi/
13016
13017 NCT6775 HARDWARE MONITOR DRIVER
13018 M:      Guenter Roeck <linux@roeck-us.net>
13019 L:      linux-hwmon@vger.kernel.org
13020 S:      Maintained
13021 F:      Documentation/hwmon/nct6775.rst
13022 F:      drivers/hwmon/nct6775.c
13023
13024 NETDEVSIM
13025 M:      Jakub Kicinski <kuba@kernel.org>
13026 S:      Maintained
13027 F:      drivers/net/netdevsim/*
13028
13029 NETEM NETWORK EMULATOR
13030 M:      Stephen Hemminger <stephen@networkplumber.org>
13031 L:      netdev@vger.kernel.org
13032 S:      Maintained
13033 F:      net/sched/sch_netem.c
13034
13035 NETERION 10GbE DRIVERS (s2io/vxge)
13036 M:      Jon Mason <jdmason@kudzu.us>
13037 L:      netdev@vger.kernel.org
13038 S:      Supported
13039 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13040 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13041 F:      drivers/net/ethernet/neterion/
13042
13043 NETFILTER
13044 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13045 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13046 M:      Florian Westphal <fw@strlen.de>
13047 L:      netfilter-devel@vger.kernel.org
13048 L:      coreteam@netfilter.org
13049 S:      Maintained
13050 W:      http://www.netfilter.org/
13051 W:      http://www.iptables.org/
13052 W:      http://www.nftables.org/
13053 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13054 C:      irc://irc.libera.chat/netfilter
13055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13057 F:      include/linux/netfilter*
13058 F:      include/linux/netfilter/
13059 F:      include/net/netfilter/
13060 F:      include/uapi/linux/netfilter*
13061 F:      include/uapi/linux/netfilter/
13062 F:      net/*/netfilter.c
13063 F:      net/*/netfilter/
13064 F:      net/bridge/br_netfilter*.c
13065 F:      net/netfilter/
13066
13067 NETROM NETWORK LAYER
13068 M:      Ralf Baechle <ralf@linux-mips.org>
13069 L:      linux-hams@vger.kernel.org
13070 S:      Maintained
13071 W:      http://www.linux-ax25.org/
13072 F:      include/net/netrom.h
13073 F:      include/uapi/linux/netrom.h
13074 F:      net/netrom/
13075
13076 NETRONIX EMBEDDED CONTROLLER
13077 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13078 S:      Maintained
13079 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13080 F:      drivers/mfd/ntxec.c
13081 F:      drivers/pwm/pwm-ntxec.c
13082 F:      drivers/rtc/rtc-ntxec.c
13083 F:      include/linux/mfd/ntxec.h
13084
13085 NETRONOME ETHERNET DRIVERS
13086 M:      Simon Horman <simon.horman@corigine.com>
13087 R:      Jakub Kicinski <kuba@kernel.org>
13088 L:      oss-drivers@corigine.com
13089 S:      Maintained
13090 F:      drivers/net/ethernet/netronome/
13091
13092 NETWORK BLOCK DEVICE (NBD)
13093 M:      Josef Bacik <josef@toxicpanda.com>
13094 L:      linux-block@vger.kernel.org
13095 L:      nbd@other.debian.org
13096 S:      Maintained
13097 F:      Documentation/admin-guide/blockdev/nbd.rst
13098 F:      drivers/block/nbd.c
13099 F:      include/trace/events/nbd.h
13100 F:      include/uapi/linux/nbd.h
13101
13102 NETWORK DROP MONITOR
13103 M:      Neil Horman <nhorman@tuxdriver.com>
13104 L:      netdev@vger.kernel.org
13105 S:      Maintained
13106 W:      https://fedorahosted.org/dropwatch/
13107 F:      include/uapi/linux/net_dropmon.h
13108 F:      net/core/drop_monitor.c
13109
13110 NETWORKING DRIVERS
13111 M:      "David S. Miller" <davem@davemloft.net>
13112 M:      Jakub Kicinski <kuba@kernel.org>
13113 L:      netdev@vger.kernel.org
13114 S:      Maintained
13115 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13118 F:      Documentation/devicetree/bindings/net/
13119 F:      drivers/connector/
13120 F:      drivers/net/
13121 F:      include/linux/etherdevice.h
13122 F:      include/linux/fcdevice.h
13123 F:      include/linux/fddidevice.h
13124 F:      include/linux/hippidevice.h
13125 F:      include/linux/if_*
13126 F:      include/linux/inetdevice.h
13127 F:      include/linux/netdevice.h
13128 F:      include/uapi/linux/if_*
13129 F:      include/uapi/linux/netdevice.h
13130
13131 NETWORKING DRIVERS (WIRELESS)
13132 M:      Kalle Valo <kvalo@codeaurora.org>
13133 L:      linux-wireless@vger.kernel.org
13134 S:      Maintained
13135 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13138 F:      Documentation/devicetree/bindings/net/wireless/
13139 F:      drivers/net/wireless/
13140
13141 NETWORKING [DSA]
13142 M:      Andrew Lunn <andrew@lunn.ch>
13143 M:      Vivien Didelot <vivien.didelot@gmail.com>
13144 M:      Florian Fainelli <f.fainelli@gmail.com>
13145 M:      Vladimir Oltean <olteanv@gmail.com>
13146 S:      Maintained
13147 F:      Documentation/devicetree/bindings/net/dsa/
13148 F:      drivers/net/dsa/
13149 F:      include/linux/dsa/
13150 F:      include/linux/platform_data/dsa.h
13151 F:      include/net/dsa.h
13152 F:      net/dsa/
13153 F:      tools/testing/selftests/drivers/net/dsa/
13154
13155 NETWORKING [GENERAL]
13156 M:      "David S. Miller" <davem@davemloft.net>
13157 M:      Jakub Kicinski <kuba@kernel.org>
13158 L:      netdev@vger.kernel.org
13159 S:      Maintained
13160 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13161 B:      mailto:netdev@vger.kernel.org
13162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13164 F:      Documentation/networking/
13165 F:      include/linux/in.h
13166 F:      include/linux/net.h
13167 F:      include/linux/netdevice.h
13168 F:      include/net/
13169 F:      include/uapi/linux/in.h
13170 F:      include/uapi/linux/net.h
13171 F:      include/uapi/linux/net_namespace.h
13172 F:      include/uapi/linux/netdevice.h
13173 F:      lib/net_utils.c
13174 F:      lib/random32.c
13175 F:      net/
13176 F:      tools/testing/selftests/net/
13177
13178 NETWORKING [IPSEC]
13179 M:      Steffen Klassert <steffen.klassert@secunet.com>
13180 M:      Herbert Xu <herbert@gondor.apana.org.au>
13181 M:      "David S. Miller" <davem@davemloft.net>
13182 L:      netdev@vger.kernel.org
13183 S:      Maintained
13184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13186 F:      include/net/xfrm.h
13187 F:      include/uapi/linux/xfrm.h
13188 F:      net/ipv4/ah4.c
13189 F:      net/ipv4/esp4*
13190 F:      net/ipv4/ip_vti.c
13191 F:      net/ipv4/ipcomp.c
13192 F:      net/ipv4/xfrm*
13193 F:      net/ipv6/ah6.c
13194 F:      net/ipv6/esp6*
13195 F:      net/ipv6/ip6_vti.c
13196 F:      net/ipv6/ipcomp6.c
13197 F:      net/ipv6/xfrm*
13198 F:      net/key/
13199 F:      net/xfrm/
13200 F:      tools/testing/selftests/net/ipsec.c
13201
13202 NETWORKING [IPv4/IPv6]
13203 M:      "David S. Miller" <davem@davemloft.net>
13204 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13205 M:      David Ahern <dsahern@kernel.org>
13206 L:      netdev@vger.kernel.org
13207 S:      Maintained
13208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13209 F:      arch/x86/net/*
13210 F:      include/net/ip*
13211 F:      net/ipv4/
13212 F:      net/ipv6/
13213
13214 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13215 M:      Paul Moore <paul@paul-moore.com>
13216 L:      netdev@vger.kernel.org
13217 L:      linux-security-module@vger.kernel.org
13218 S:      Maintained
13219 W:      https://github.com/netlabel
13220 F:      Documentation/netlabel/
13221 F:      include/net/calipso.h
13222 F:      include/net/cipso_ipv4.h
13223 F:      include/net/netlabel.h
13224 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13225 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13226 F:      net/ipv4/cipso_ipv4.c
13227 F:      net/ipv6/calipso.c
13228 F:      net/netfilter/xt_CONNSECMARK.c
13229 F:      net/netfilter/xt_SECMARK.c
13230 F:      net/netlabel/
13231
13232 NETWORKING [MPTCP]
13233 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13234 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13235 L:      netdev@vger.kernel.org
13236 L:      mptcp@lists.linux.dev
13237 S:      Maintained
13238 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13239 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13240 F:      Documentation/networking/mptcp-sysctl.rst
13241 F:      include/net/mptcp.h
13242 F:      include/trace/events/mptcp.h
13243 F:      include/uapi/linux/mptcp.h
13244 F:      net/mptcp/
13245 F:      tools/testing/selftests/net/mptcp/
13246
13247 NETWORKING [TCP]
13248 M:      Eric Dumazet <edumazet@google.com>
13249 L:      netdev@vger.kernel.org
13250 S:      Maintained
13251 F:      include/linux/tcp.h
13252 F:      include/net/tcp.h
13253 F:      include/trace/events/tcp.h
13254 F:      include/uapi/linux/tcp.h
13255 F:      net/ipv4/syncookies.c
13256 F:      net/ipv4/tcp*.c
13257 F:      net/ipv6/syncookies.c
13258 F:      net/ipv6/tcp*.c
13259
13260 NETWORKING [TLS]
13261 M:      Boris Pismenny <borisp@nvidia.com>
13262 M:      John Fastabend <john.fastabend@gmail.com>
13263 M:      Daniel Borkmann <daniel@iogearbox.net>
13264 M:      Jakub Kicinski <kuba@kernel.org>
13265 L:      netdev@vger.kernel.org
13266 S:      Maintained
13267 F:      include/net/tls.h
13268 F:      include/uapi/linux/tls.h
13269 F:      net/tls/*
13270
13271 NETWORKING [WIRELESS]
13272 L:      linux-wireless@vger.kernel.org
13273 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13274
13275 NETXEN (1/10) GbE SUPPORT
13276 M:      Manish Chopra <manishc@marvell.com>
13277 M:      Rahul Verma <rahulv@marvell.com>
13278 M:      GR-Linux-NIC-Dev@marvell.com
13279 L:      netdev@vger.kernel.org
13280 S:      Supported
13281 F:      drivers/net/ethernet/qlogic/netxen/
13282
13283 NET_FAILOVER MODULE
13284 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13285 L:      netdev@vger.kernel.org
13286 S:      Supported
13287 F:      Documentation/networking/net_failover.rst
13288 F:      drivers/net/net_failover.c
13289 F:      include/net/net_failover.h
13290
13291 NEXTHOP
13292 M:      David Ahern <dsahern@kernel.org>
13293 L:      netdev@vger.kernel.org
13294 S:      Maintained
13295 F:      include/net/netns/nexthop.h
13296 F:      include/net/nexthop.h
13297 F:      include/uapi/linux/nexthop.h
13298 F:      net/ipv4/nexthop.c
13299
13300 NFC SUBSYSTEM
13301 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13302 L:      linux-nfc@lists.01.org (subscribers-only)
13303 L:      netdev@vger.kernel.org
13304 S:      Maintained
13305 F:      Documentation/devicetree/bindings/net/nfc/
13306 F:      drivers/nfc/
13307 F:      include/linux/platform_data/nfcmrvl.h
13308 F:      include/net/nfc/
13309 F:      include/uapi/linux/nfc.h
13310 F:      net/nfc/
13311
13312 NFC VIRTUAL NCI DEVICE DRIVER
13313 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13314 L:      netdev@vger.kernel.org
13315 L:      linux-nfc@lists.01.org (subscribers-only)
13316 S:      Supported
13317 F:      drivers/nfc/virtual_ncidev.c
13318 F:      tools/testing/selftests/nci/
13319
13320 NFS, SUNRPC, AND LOCKD CLIENTS
13321 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13322 M:      Anna Schumaker <anna.schumaker@netapp.com>
13323 L:      linux-nfs@vger.kernel.org
13324 S:      Maintained
13325 W:      http://client.linux-nfs.org
13326 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13327 F:      fs/lockd/
13328 F:      fs/nfs/
13329 F:      fs/nfs_common/
13330 F:      include/linux/lockd/
13331 F:      include/linux/nfs*
13332 F:      include/linux/sunrpc/
13333 F:      include/uapi/linux/nfs*
13334 F:      include/uapi/linux/sunrpc/
13335 F:      net/sunrpc/
13336 F:      Documentation/filesystems/nfs/
13337
13338 NILFS2 FILESYSTEM
13339 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13340 L:      linux-nilfs@vger.kernel.org
13341 S:      Supported
13342 W:      https://nilfs.sourceforge.io/
13343 W:      https://nilfs.osdn.jp/
13344 T:      git git://github.com/konis/nilfs2.git
13345 F:      Documentation/filesystems/nilfs2.rst
13346 F:      fs/nilfs2/
13347 F:      include/trace/events/nilfs2.h
13348 F:      include/uapi/linux/nilfs2_api.h
13349 F:      include/uapi/linux/nilfs2_ondisk.h
13350
13351 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13352 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13353 S:      Maintained
13354 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13355 F:      Documentation/scsi/NinjaSCSI.rst
13356 F:      drivers/scsi/pcmcia/nsp_*
13357
13358 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13359 M:      GOTO Masanori <gotom@debian.or.jp>
13360 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13361 S:      Maintained
13362 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13363 F:      Documentation/scsi/NinjaSCSI.rst
13364 F:      drivers/scsi/nsp32*
13365
13366 NIOS2 ARCHITECTURE
13367 M:      Dinh Nguyen <dinguyen@kernel.org>
13368 S:      Maintained
13369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13370 F:      arch/nios2/
13371
13372 NITRO ENCLAVES (NE)
13373 M:      Andra Paraschiv <andraprs@amazon.com>
13374 M:      Alexandru Vasile <lexnv@amazon.com>
13375 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13376 L:      linux-kernel@vger.kernel.org
13377 S:      Supported
13378 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13379 F:      Documentation/virt/ne_overview.rst
13380 F:      drivers/virt/nitro_enclaves/
13381 F:      include/linux/nitro_enclaves.h
13382 F:      include/uapi/linux/nitro_enclaves.h
13383 F:      samples/nitro_enclaves/
13384
13385 NOHZ, DYNTICKS SUPPORT
13386 M:      Frederic Weisbecker <fweisbec@gmail.com>
13387 M:      Thomas Gleixner <tglx@linutronix.de>
13388 M:      Ingo Molnar <mingo@kernel.org>
13389 L:      linux-kernel@vger.kernel.org
13390 S:      Maintained
13391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13392 F:      include/linux/sched/nohz.h
13393 F:      include/linux/tick.h
13394 F:      kernel/time/tick*.*
13395
13396 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13397 M:      Pavel Machek <pavel@ucw.cz>
13398 M:      Sakari Ailus <sakari.ailus@iki.fi>
13399 L:      linux-media@vger.kernel.org
13400 S:      Maintained
13401 F:      drivers/media/i2c/ad5820.c
13402 F:      drivers/media/i2c/et8ek8
13403
13404 NOKIA N900 POWER SUPPLY DRIVERS
13405 R:      Pali Rohár <pali@kernel.org>
13406 F:      drivers/power/supply/bq2415x_charger.c
13407 F:      drivers/power/supply/bq27xxx_battery.c
13408 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13409 F:      drivers/power/supply/isp1704_charger.c
13410 F:      drivers/power/supply/rx51_battery.c
13411 F:      include/linux/power/bq2415x_charger.h
13412 F:      include/linux/power/bq27xxx_battery.h
13413
13414 NOLIBC HEADER FILE
13415 M:      Willy Tarreau <w@1wt.eu>
13416 S:      Maintained
13417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13418 F:      tools/include/nolibc/
13419
13420 NSDEPS
13421 M:      Matthias Maennich <maennich@google.com>
13422 S:      Maintained
13423 F:      Documentation/core-api/symbol-namespaces.rst
13424 F:      scripts/nsdeps
13425
13426 NTB AMD DRIVER
13427 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13428 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13429 L:      linux-ntb@googlegroups.com
13430 S:      Supported
13431 F:      drivers/ntb/hw/amd/
13432
13433 NTB DRIVER CORE
13434 M:      Jon Mason <jdmason@kudzu.us>
13435 M:      Dave Jiang <dave.jiang@intel.com>
13436 M:      Allen Hubbe <allenbh@gmail.com>
13437 L:      linux-ntb@googlegroups.com
13438 S:      Supported
13439 W:      https://github.com/jonmason/ntb/wiki
13440 T:      git git://github.com/jonmason/ntb.git
13441 F:      drivers/net/ntb_netdev.c
13442 F:      drivers/ntb/
13443 F:      include/linux/ntb.h
13444 F:      include/linux/ntb_transport.h
13445 F:      tools/testing/selftests/ntb/
13446
13447 NTB IDT DRIVER
13448 M:      Serge Semin <fancer.lancer@gmail.com>
13449 L:      linux-ntb@googlegroups.com
13450 S:      Supported
13451 F:      drivers/ntb/hw/idt/
13452
13453 NTB INTEL DRIVER
13454 M:      Dave Jiang <dave.jiang@intel.com>
13455 L:      linux-ntb@googlegroups.com
13456 S:      Supported
13457 W:      https://github.com/davejiang/linux/wiki
13458 T:      git https://github.com/davejiang/linux.git
13459 F:      drivers/ntb/hw/intel/
13460
13461 NTFS FILESYSTEM
13462 M:      Anton Altaparmakov <anton@tuxera.com>
13463 L:      linux-ntfs-dev@lists.sourceforge.net
13464 S:      Supported
13465 W:      http://www.tuxera.com/
13466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13467 F:      Documentation/filesystems/ntfs.rst
13468 F:      fs/ntfs/
13469
13470 NTFS3 FILESYSTEM
13471 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13472 L:      ntfs3@lists.linux.dev
13473 S:      Supported
13474 W:      http://www.paragon-software.com/
13475 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13476 F:      Documentation/filesystems/ntfs3.rst
13477 F:      fs/ntfs3/
13478
13479 NUBUS SUBSYSTEM
13480 M:      Finn Thain <fthain@linux-m68k.org>
13481 L:      linux-m68k@lists.linux-m68k.org
13482 S:      Maintained
13483 F:      arch/*/include/asm/nubus.h
13484 F:      drivers/nubus/
13485 F:      include/linux/nubus.h
13486 F:      include/uapi/linux/nubus.h
13487
13488 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13489 M:      Antonino Daplas <adaplas@gmail.com>
13490 L:      linux-fbdev@vger.kernel.org
13491 S:      Maintained
13492 F:      drivers/video/fbdev/nvidia/
13493 F:      drivers/video/fbdev/riva/
13494
13495 NVIDIA WMI EC BACKLIGHT DRIVER
13496 M:      Daniel Dadap <ddadap@nvidia.com>
13497 L:      platform-driver-x86@vger.kernel.org
13498 S:      Supported
13499 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13500
13501 NVM EXPRESS DRIVER
13502 M:      Keith Busch <kbusch@kernel.org>
13503 M:      Jens Axboe <axboe@fb.com>
13504 M:      Christoph Hellwig <hch@lst.de>
13505 M:      Sagi Grimberg <sagi@grimberg.me>
13506 L:      linux-nvme@lists.infradead.org
13507 S:      Supported
13508 W:      http://git.infradead.org/nvme.git
13509 T:      git://git.infradead.org/nvme.git
13510 F:      drivers/nvme/host/
13511 F:      include/linux/nvme.h
13512 F:      include/uapi/linux/nvme_ioctl.h
13513
13514 NVM EXPRESS FC TRANSPORT DRIVERS
13515 M:      James Smart <james.smart@broadcom.com>
13516 L:      linux-nvme@lists.infradead.org
13517 S:      Supported
13518 F:      drivers/nvme/host/fc.c
13519 F:      drivers/nvme/target/fc.c
13520 F:      drivers/nvme/target/fcloop.c
13521 F:      include/linux/nvme-fc-driver.h
13522 F:      include/linux/nvme-fc.h
13523
13524 NVM EXPRESS TARGET DRIVER
13525 M:      Christoph Hellwig <hch@lst.de>
13526 M:      Sagi Grimberg <sagi@grimberg.me>
13527 M:      Chaitanya Kulkarni <kch@nvidia.com>
13528 L:      linux-nvme@lists.infradead.org
13529 S:      Supported
13530 W:      http://git.infradead.org/nvme.git
13531 T:      git://git.infradead.org/nvme.git
13532 F:      drivers/nvme/target/
13533
13534 NVMEM FRAMEWORK
13535 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13536 S:      Maintained
13537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13538 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13539 F:      Documentation/devicetree/bindings/nvmem/
13540 F:      drivers/nvmem/
13541 F:      include/linux/nvmem-consumer.h
13542 F:      include/linux/nvmem-provider.h
13543
13544 NXP C45 TJA11XX PHY DRIVER
13545 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13546 L:      netdev@vger.kernel.org
13547 S:      Maintained
13548 F:      drivers/net/phy/nxp-c45-tja11xx.c
13549
13550 NXP FSPI DRIVER
13551 M:      Ashish Kumar <ashish.kumar@nxp.com>
13552 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13553 L:      linux-spi@vger.kernel.org
13554 S:      Maintained
13555 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13556 F:      drivers/spi/spi-nxp-fspi.c
13557
13558 NXP FXAS21002C DRIVER
13559 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13560 L:      linux-iio@vger.kernel.org
13561 S:      Maintained
13562 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13563 F:      drivers/iio/gyro/fxas21002c.h
13564 F:      drivers/iio/gyro/fxas21002c_core.c
13565 F:      drivers/iio/gyro/fxas21002c_i2c.c
13566 F:      drivers/iio/gyro/fxas21002c_spi.c
13567
13568 NXP i.MX CLOCK DRIVERS
13569 M:      Abel Vesa <abel.vesa@nxp.com>
13570 L:      linux-clk@vger.kernel.org
13571 L:      linux-imx@nxp.com
13572 S:      Maintained
13573 F:      drivers/clk/imx/
13574
13575 NXP i.MX 8MQ DCSS DRIVER
13576 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13577 R:      Lucas Stach <l.stach@pengutronix.de>
13578 L:      dri-devel@lists.freedesktop.org
13579 S:      Maintained
13580 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13581 F:      drivers/gpu/drm/imx/dcss/
13582
13583 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13584 M:      Jagan Teki <jagan@amarulasolutions.com>
13585 S:      Maintained
13586 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13587 F:      drivers/regulator/pf8x00-regulator.c
13588
13589 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13590 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13591 L:      linux-kernel@vger.kernel.org
13592 S:      Maintained
13593 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13594 F:      drivers/extcon/extcon-ptn5150.c
13595
13596 NXP SGTL5000 DRIVER
13597 M:      Fabio Estevam <festevam@gmail.com>
13598 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13599 S:      Maintained
13600 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13601 F:      sound/soc/codecs/sgtl5000*
13602
13603 NXP SJA1105 ETHERNET SWITCH DRIVER
13604 M:      Vladimir Oltean <olteanv@gmail.com>
13605 L:      linux-kernel@vger.kernel.org
13606 S:      Maintained
13607 F:      drivers/net/dsa/sja1105
13608 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13609
13610 NXP TDA998X DRM DRIVER
13611 M:      Russell King <linux@armlinux.org.uk>
13612 S:      Maintained
13613 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13614 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13615 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13616 F:      include/drm/i2c/tda998x.h
13617 F:      include/dt-bindings/display/tda998x.h
13618 K:      "nxp,tda998x"
13619
13620 NXP TFA9879 DRIVER
13621 M:      Peter Rosin <peda@axentia.se>
13622 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13623 S:      Maintained
13624 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13625 F:      sound/soc/codecs/tfa9879*
13626
13627 NXP/Goodix TFA989X (TFA1) DRIVER
13628 M:      Stephan Gerhold <stephan@gerhold.net>
13629 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13630 S:      Maintained
13631 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13632 F:      sound/soc/codecs/tfa989x.c
13633
13634 NXP-NCI NFC DRIVER
13635 R:      Charles Gorand <charles.gorand@effinnov.com>
13636 L:      linux-nfc@lists.01.org (subscribers-only)
13637 S:      Supported
13638 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13639 F:      drivers/nfc/nxp-nci
13640
13641 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13642 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13643 R:      NXP Linux Team <linux-imx@nxp.com>
13644 L:      linux-media@vger.kernel.org
13645 S:      Maintained
13646 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13647 F:      drivers/media/platform/imx-jpeg
13648
13649 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13650 M:      Jonas Malaco <jonas@protocubo.io>
13651 L:      linux-hwmon@vger.kernel.org
13652 S:      Maintained
13653 F:      Documentation/hwmon/nzxt-kraken2.rst
13654 F:      drivers/hwmon/nzxt-kraken2.c
13655
13656 OBJAGG
13657 M:      Jiri Pirko <jiri@nvidia.com>
13658 L:      netdev@vger.kernel.org
13659 S:      Supported
13660 F:      include/linux/objagg.h
13661 F:      lib/objagg.c
13662 F:      lib/test_objagg.c
13663
13664 OBJTOOL
13665 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13666 M:      Peter Zijlstra <peterz@infradead.org>
13667 S:      Supported
13668 F:      tools/objtool/
13669 F:      include/linux/objtool.h
13670
13671 OCELOT ETHERNET SWITCH DRIVER
13672 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13673 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13674 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13675 M:      UNGLinuxDriver@microchip.com
13676 L:      netdev@vger.kernel.org
13677 S:      Supported
13678 F:      drivers/net/dsa/ocelot/*
13679 F:      drivers/net/ethernet/mscc/
13680 F:      include/soc/mscc/ocelot*
13681 F:      net/dsa/tag_ocelot.c
13682 F:      net/dsa/tag_ocelot_8021q.c
13683 F:      tools/testing/selftests/drivers/net/ocelot/*
13684
13685 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13686 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13687 M:      Andrew Donnellan <ajd@linux.ibm.com>
13688 L:      linuxppc-dev@lists.ozlabs.org
13689 S:      Supported
13690 F:      Documentation/userspace-api/accelerators/ocxl.rst
13691 F:      arch/powerpc/include/asm/pnv-ocxl.h
13692 F:      arch/powerpc/platforms/powernv/ocxl.c
13693 F:      drivers/misc/ocxl/
13694 F:      include/misc/ocxl*
13695 F:      include/uapi/misc/ocxl.h
13696
13697 OMAP AUDIO SUPPORT
13698 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13699 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13700 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13701 L:      linux-omap@vger.kernel.org
13702 S:      Maintained
13703 F:      sound/soc/ti/n810.c
13704 F:      sound/soc/ti/omap*
13705 F:      sound/soc/ti/rx51.c
13706 F:      sound/soc/ti/sdma-pcm.*
13707
13708 OMAP CLOCK FRAMEWORK SUPPORT
13709 M:      Paul Walmsley <paul@pwsan.com>
13710 L:      linux-omap@vger.kernel.org
13711 S:      Maintained
13712 F:      arch/arm/*omap*/*clock*
13713
13714 OMAP DEVICE TREE SUPPORT
13715 M:      Benoît Cousson <bcousson@baylibre.com>
13716 M:      Tony Lindgren <tony@atomide.com>
13717 L:      linux-omap@vger.kernel.org
13718 L:      devicetree@vger.kernel.org
13719 S:      Maintained
13720 F:      arch/arm/boot/dts/*am3*
13721 F:      arch/arm/boot/dts/*am4*
13722 F:      arch/arm/boot/dts/*am5*
13723 F:      arch/arm/boot/dts/*dra7*
13724 F:      arch/arm/boot/dts/*omap*
13725 F:      arch/arm/boot/dts/logicpd-som-lv*
13726 F:      arch/arm/boot/dts/logicpd-torpedo*
13727
13728 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13729 L:      linux-omap@vger.kernel.org
13730 L:      linux-fbdev@vger.kernel.org
13731 S:      Orphan
13732 F:      Documentation/arm/omap/dss.rst
13733 F:      drivers/video/fbdev/omap2/
13734
13735 OMAP FRAMEBUFFER SUPPORT
13736 L:      linux-fbdev@vger.kernel.org
13737 L:      linux-omap@vger.kernel.org
13738 S:      Orphan
13739 F:      drivers/video/fbdev/omap/
13740
13741 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13742 M:      Roger Quadros <rogerq@kernel.org>
13743 M:      Tony Lindgren <tony@atomide.com>
13744 L:      linux-omap@vger.kernel.org
13745 S:      Maintained
13746 F:      arch/arm/mach-omap2/*gpmc*
13747 F:      drivers/memory/omap-gpmc.c
13748
13749 OMAP GPIO DRIVER
13750 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13751 M:      Santosh Shilimkar <ssantosh@kernel.org>
13752 M:      Kevin Hilman <khilman@kernel.org>
13753 L:      linux-omap@vger.kernel.org
13754 S:      Maintained
13755 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13756 F:      drivers/gpio/gpio-omap.c
13757
13758 OMAP HARDWARE SPINLOCK SUPPORT
13759 M:      Ohad Ben-Cohen <ohad@wizery.com>
13760 L:      linux-omap@vger.kernel.org
13761 S:      Maintained
13762 F:      drivers/hwspinlock/omap_hwspinlock.c
13763
13764 OMAP HS MMC SUPPORT
13765 L:      linux-mmc@vger.kernel.org
13766 L:      linux-omap@vger.kernel.org
13767 S:      Orphan
13768 F:      drivers/mmc/host/omap_hsmmc.c
13769
13770 OMAP HWMOD DATA
13771 M:      Paul Walmsley <paul@pwsan.com>
13772 L:      linux-omap@vger.kernel.org
13773 S:      Maintained
13774 F:      arch/arm/mach-omap2/omap_hwmod*data*
13775
13776 OMAP HWMOD SUPPORT
13777 M:      Benoît Cousson <bcousson@baylibre.com>
13778 M:      Paul Walmsley <paul@pwsan.com>
13779 L:      linux-omap@vger.kernel.org
13780 S:      Maintained
13781 F:      arch/arm/mach-omap2/omap_hwmod.*
13782
13783 OMAP I2C DRIVER
13784 M:      Vignesh R <vigneshr@ti.com>
13785 L:      linux-omap@vger.kernel.org
13786 L:      linux-i2c@vger.kernel.org
13787 S:      Maintained
13788 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13789 F:      drivers/i2c/busses/i2c-omap.c
13790
13791 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13792 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13793 L:      linux-media@vger.kernel.org
13794 S:      Maintained
13795 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13796 F:      drivers/media/platform/omap3isp/
13797 F:      drivers/staging/media/omap4iss/
13798
13799 OMAP MMC SUPPORT
13800 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13801 L:      linux-omap@vger.kernel.org
13802 S:      Odd Fixes
13803 F:      drivers/mmc/host/omap.c
13804
13805 OMAP POWER MANAGEMENT SUPPORT
13806 M:      Kevin Hilman <khilman@kernel.org>
13807 L:      linux-omap@vger.kernel.org
13808 S:      Maintained
13809 F:      arch/arm/*omap*/*pm*
13810 F:      drivers/cpufreq/omap-cpufreq.c
13811
13812 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13813 M:      Rajendra Nayak <rnayak@codeaurora.org>
13814 M:      Paul Walmsley <paul@pwsan.com>
13815 L:      linux-omap@vger.kernel.org
13816 S:      Maintained
13817 F:      arch/arm/mach-omap2/prm*
13818
13819 OMAP RANDOM NUMBER GENERATOR SUPPORT
13820 M:      Deepak Saxena <dsaxena@plexity.net>
13821 S:      Maintained
13822 F:      drivers/char/hw_random/omap-rng.c
13823
13824 OMAP USB SUPPORT
13825 L:      linux-usb@vger.kernel.org
13826 L:      linux-omap@vger.kernel.org
13827 S:      Orphan
13828 F:      arch/arm/*omap*/usb*
13829 F:      drivers/usb/*/*omap*
13830
13831 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13832 M:      Mark Jackson <mpfj@newflow.co.uk>
13833 L:      linux-omap@vger.kernel.org
13834 S:      Maintained
13835 F:      arch/arm/boot/dts/am335x-nano.dts
13836
13837 OMAP1 SUPPORT
13838 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13839 M:      Tony Lindgren <tony@atomide.com>
13840 L:      linux-omap@vger.kernel.org
13841 S:      Maintained
13842 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13844 F:      arch/arm/configs/omap1_defconfig
13845 F:      arch/arm/mach-omap1/
13846 F:      arch/arm/plat-omap/
13847 F:      drivers/i2c/busses/i2c-omap.c
13848 F:      include/linux/platform_data/ams-delta-fiq.h
13849 F:      include/linux/platform_data/i2c-omap.h
13850
13851 OMAP2+ SUPPORT
13852 M:      Tony Lindgren <tony@atomide.com>
13853 L:      linux-omap@vger.kernel.org
13854 S:      Maintained
13855 W:      http://www.muru.com/linux/omap/
13856 W:      http://linux.omap.com/
13857 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13859 F:      arch/arm/configs/omap2plus_defconfig
13860 F:      arch/arm/mach-omap2/
13861 F:      arch/arm/plat-omap/
13862 F:      drivers/bus/ti-sysc.c
13863 F:      drivers/i2c/busses/i2c-omap.c
13864 F:      drivers/irqchip/irq-omap-intc.c
13865 F:      drivers/mfd/*omap*.c
13866 F:      drivers/mfd/menelaus.c
13867 F:      drivers/mfd/palmas.c
13868 F:      drivers/mfd/tps65217.c
13869 F:      drivers/mfd/tps65218.c
13870 F:      drivers/mfd/tps65910.c
13871 F:      drivers/mfd/twl-core.[ch]
13872 F:      drivers/mfd/twl4030*.c
13873 F:      drivers/mfd/twl6030*.c
13874 F:      drivers/mfd/twl6040*.c
13875 F:      drivers/regulator/palmas-regulator*.c
13876 F:      drivers/regulator/pbias-regulator.c
13877 F:      drivers/regulator/tps65217-regulator.c
13878 F:      drivers/regulator/tps65218-regulator.c
13879 F:      drivers/regulator/tps65910-regulator.c
13880 F:      drivers/regulator/twl-regulator.c
13881 F:      drivers/regulator/twl6030-regulator.c
13882 F:      include/linux/platform_data/i2c-omap.h
13883 F:      include/linux/platform_data/ti-sysc.h
13884
13885 OMFS FILESYSTEM
13886 M:      Bob Copeland <me@bobcopeland.com>
13887 L:      linux-karma-devel@lists.sourceforge.net
13888 S:      Maintained
13889 F:      Documentation/filesystems/omfs.rst
13890 F:      fs/omfs/
13891
13892 OMNIKEY CARDMAN 4000 DRIVER
13893 M:      Harald Welte <laforge@gnumonks.org>
13894 S:      Maintained
13895 F:      drivers/char/pcmcia/cm4000_cs.c
13896 F:      include/linux/cm4000_cs.h
13897 F:      include/uapi/linux/cm4000_cs.h
13898
13899 OMNIKEY CARDMAN 4040 DRIVER
13900 M:      Harald Welte <laforge@gnumonks.org>
13901 S:      Maintained
13902 F:      drivers/char/pcmcia/cm4040_cs.*
13903
13904 OMNIVISION OV02A10 SENSOR DRIVER
13905 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13906 L:      linux-media@vger.kernel.org
13907 S:      Maintained
13908 T:      git git://linuxtv.org/media_tree.git
13909 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13910 F:      drivers/media/i2c/ov02a10.c
13911
13912 OMNIVISION OV13858 SENSOR DRIVER
13913 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13914 L:      linux-media@vger.kernel.org
13915 S:      Maintained
13916 T:      git git://linuxtv.org/media_tree.git
13917 F:      drivers/media/i2c/ov13858.c
13918
13919 OMNIVISION OV13B10 SENSOR DRIVER
13920 M:      Arec Kao <arec.kao@intel.com>
13921 L:      linux-media@vger.kernel.org
13922 S:      Maintained
13923 T:      git git://linuxtv.org/media_tree.git
13924 F:      drivers/media/i2c/ov13b10.c
13925
13926 OMNIVISION OV2680 SENSOR DRIVER
13927 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13928 L:      linux-media@vger.kernel.org
13929 S:      Maintained
13930 T:      git git://linuxtv.org/media_tree.git
13931 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13932 F:      drivers/media/i2c/ov2680.c
13933
13934 OMNIVISION OV2685 SENSOR DRIVER
13935 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13936 L:      linux-media@vger.kernel.org
13937 S:      Maintained
13938 T:      git git://linuxtv.org/media_tree.git
13939 F:      drivers/media/i2c/ov2685.c
13940
13941 OMNIVISION OV2740 SENSOR DRIVER
13942 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13943 R:      Shawn Tu <shawnx.tu@intel.com>
13944 R:      Bingbu Cao <bingbu.cao@intel.com>
13945 L:      linux-media@vger.kernel.org
13946 S:      Maintained
13947 T:      git git://linuxtv.org/media_tree.git
13948 F:      drivers/media/i2c/ov2740.c
13949
13950 OMNIVISION OV5640 SENSOR DRIVER
13951 M:      Steve Longerbeam <slongerbeam@gmail.com>
13952 L:      linux-media@vger.kernel.org
13953 S:      Maintained
13954 T:      git git://linuxtv.org/media_tree.git
13955 F:      drivers/media/i2c/ov5640.c
13956
13957 OMNIVISION OV5647 SENSOR DRIVER
13958 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13959 M:      Jacopo Mondi <jacopo@jmondi.org>
13960 L:      linux-media@vger.kernel.org
13961 S:      Maintained
13962 T:      git git://linuxtv.org/media_tree.git
13963 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13964 F:      drivers/media/i2c/ov5647.c
13965
13966 OMNIVISION OV5670 SENSOR DRIVER
13967 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13968 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13969 L:      linux-media@vger.kernel.org
13970 S:      Maintained
13971 T:      git git://linuxtv.org/media_tree.git
13972 F:      drivers/media/i2c/ov5670.c
13973
13974 OMNIVISION OV5675 SENSOR DRIVER
13975 M:      Shawn Tu <shawnx.tu@intel.com>
13976 L:      linux-media@vger.kernel.org
13977 S:      Maintained
13978 T:      git git://linuxtv.org/media_tree.git
13979 F:      drivers/media/i2c/ov5675.c
13980
13981 OMNIVISION OV5695 SENSOR DRIVER
13982 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13983 L:      linux-media@vger.kernel.org
13984 S:      Maintained
13985 T:      git git://linuxtv.org/media_tree.git
13986 F:      drivers/media/i2c/ov5695.c
13987
13988 OMNIVISION OV7670 SENSOR DRIVER
13989 L:      linux-media@vger.kernel.org
13990 S:      Orphan
13991 T:      git git://linuxtv.org/media_tree.git
13992 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13993 F:      drivers/media/i2c/ov7670.c
13994
13995 OMNIVISION OV772x SENSOR DRIVER
13996 M:      Jacopo Mondi <jacopo@jmondi.org>
13997 L:      linux-media@vger.kernel.org
13998 S:      Odd fixes
13999 T:      git git://linuxtv.org/media_tree.git
14000 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14001 F:      drivers/media/i2c/ov772x.c
14002 F:      include/media/i2c/ov772x.h
14003
14004 OMNIVISION OV7740 SENSOR DRIVER
14005 M:      Wenyou Yang <wenyou.yang@microchip.com>
14006 L:      linux-media@vger.kernel.org
14007 S:      Maintained
14008 T:      git git://linuxtv.org/media_tree.git
14009 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14010 F:      drivers/media/i2c/ov7740.c
14011
14012 OMNIVISION OV8856 SENSOR DRIVER
14013 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14014 L:      linux-media@vger.kernel.org
14015 S:      Maintained
14016 T:      git git://linuxtv.org/media_tree.git
14017 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14018 F:      drivers/media/i2c/ov8856.c
14019
14020 OMNIVISION OV9282 SENSOR DRIVER
14021 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14022 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14023 L:      linux-media@vger.kernel.org
14024 S:      Maintained
14025 T:      git git://linuxtv.org/media_tree.git
14026 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14027 F:      drivers/media/i2c/ov9282.c
14028
14029 OMNIVISION OV9640 SENSOR DRIVER
14030 M:      Petr Cvek <petrcvekcz@gmail.com>
14031 L:      linux-media@vger.kernel.org
14032 S:      Maintained
14033 F:      drivers/media/i2c/ov9640.*
14034
14035 OMNIVISION OV9650 SENSOR DRIVER
14036 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14037 R:      Akinobu Mita <akinobu.mita@gmail.com>
14038 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14039 L:      linux-media@vger.kernel.org
14040 S:      Maintained
14041 T:      git git://linuxtv.org/media_tree.git
14042 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14043 F:      drivers/media/i2c/ov9650.c
14044
14045 OMNIVISION OV9734 SENSOR DRIVER
14046 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14047 R:      Bingbu Cao <bingbu.cao@intel.com>
14048 L:      linux-media@vger.kernel.org
14049 S:      Maintained
14050 T:      git git://linuxtv.org/media_tree.git
14051 F:      drivers/media/i2c/ov9734.c
14052
14053 ONENAND FLASH DRIVER
14054 M:      Kyungmin Park <kyungmin.park@samsung.com>
14055 L:      linux-mtd@lists.infradead.org
14056 S:      Maintained
14057 F:      drivers/mtd/nand/onenand/
14058 F:      include/linux/mtd/onenand*.h
14059
14060 ONION OMEGA2+ BOARD
14061 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14062 L:      linux-mips@vger.kernel.org
14063 S:      Maintained
14064 F:      arch/mips/boot/dts/ralink/omega2p.dts
14065
14066 OP-TEE DRIVER
14067 M:      Jens Wiklander <jens.wiklander@linaro.org>
14068 L:      op-tee@lists.trustedfirmware.org
14069 S:      Maintained
14070 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14071 F:      drivers/tee/optee/
14072
14073 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14074 M:      Sumit Garg <sumit.garg@linaro.org>
14075 L:      op-tee@lists.trustedfirmware.org
14076 S:      Maintained
14077 F:      drivers/char/hw_random/optee-rng.c
14078
14079 OPA-VNIC DRIVER
14080 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14081 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14082 L:      linux-rdma@vger.kernel.org
14083 S:      Supported
14084 F:      drivers/infiniband/ulp/opa_vnic
14085
14086 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14087 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14088 M:      Frank Rowand <frowand.list@gmail.com>
14089 L:      devicetree@vger.kernel.org
14090 S:      Maintained
14091 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14092 F:      Documentation/devicetree/overlay-notes.rst
14093 F:      drivers/of/overlay.c
14094 F:      drivers/of/resolver.c
14095 K:      of_overlay_notifier_
14096
14097 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14098 M:      Rob Herring <robh+dt@kernel.org>
14099 M:      Frank Rowand <frowand.list@gmail.com>
14100 L:      devicetree@vger.kernel.org
14101 S:      Maintained
14102 W:      http://www.devicetree.org/
14103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14104 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14105 F:      drivers/of/
14106 F:      include/linux/of*.h
14107 F:      scripts/dtc/
14108
14109 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14110 M:      Rob Herring <robh+dt@kernel.org>
14111 L:      devicetree@vger.kernel.org
14112 S:      Maintained
14113 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14115 F:      Documentation/devicetree/
14116 F:      arch/*/boot/dts/
14117 F:      include/dt-bindings/
14118
14119 OPENCOMPUTE PTP CLOCK DRIVER
14120 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14121 L:      netdev@vger.kernel.org
14122 S:      Maintained
14123 F:      drivers/ptp/ptp_ocp.c
14124
14125 OPENCORES I2C BUS DRIVER
14126 M:      Peter Korsgaard <peter@korsgaard.com>
14127 M:      Andrew Lunn <andrew@lunn.ch>
14128 L:      linux-i2c@vger.kernel.org
14129 S:      Maintained
14130 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14131 F:      Documentation/i2c/busses/i2c-ocores.rst
14132 F:      drivers/i2c/busses/i2c-ocores.c
14133 F:      include/linux/platform_data/i2c-ocores.h
14134
14135 OPENRISC ARCHITECTURE
14136 M:      Jonas Bonn <jonas@southpole.se>
14137 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14138 M:      Stafford Horne <shorne@gmail.com>
14139 L:      openrisc@lists.librecores.org
14140 S:      Maintained
14141 W:      http://openrisc.io
14142 T:      git git://github.com/openrisc/linux.git
14143 F:      Documentation/devicetree/bindings/openrisc/
14144 F:      Documentation/openrisc/
14145 F:      arch/openrisc/
14146 F:      drivers/irqchip/irq-ompic.c
14147 F:      drivers/irqchip/irq-or1k-*
14148
14149 OPENVSWITCH
14150 M:      Pravin B Shelar <pshelar@ovn.org>
14151 L:      netdev@vger.kernel.org
14152 L:      dev@openvswitch.org
14153 S:      Maintained
14154 W:      http://openvswitch.org
14155 F:      include/uapi/linux/openvswitch.h
14156 F:      net/openvswitch/
14157
14158 OPERATING PERFORMANCE POINTS (OPP)
14159 M:      Viresh Kumar <vireshk@kernel.org>
14160 M:      Nishanth Menon <nm@ti.com>
14161 M:      Stephen Boyd <sboyd@kernel.org>
14162 L:      linux-pm@vger.kernel.org
14163 S:      Maintained
14164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14165 F:      Documentation/devicetree/bindings/opp/
14166 F:      Documentation/power/opp.rst
14167 F:      drivers/opp/
14168 F:      include/linux/pm_opp.h
14169
14170 OPL4 DRIVER
14171 M:      Clemens Ladisch <clemens@ladisch.de>
14172 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14173 S:      Maintained
14174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14175 F:      sound/drivers/opl4/
14176
14177 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14178 M:      Mark Fasheh <mark@fasheh.com>
14179 M:      Joel Becker <jlbec@evilplan.org>
14180 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14181 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14182 S:      Supported
14183 W:      http://ocfs2.wiki.kernel.org
14184 F:      Documentation/filesystems/dlmfs.rst
14185 F:      Documentation/filesystems/ocfs2.rst
14186 F:      fs/ocfs2/
14187
14188 ORANGEFS FILESYSTEM
14189 M:      Mike Marshall <hubcap@omnibond.com>
14190 R:      Martin Brandenburg <martin@omnibond.com>
14191 L:      devel@lists.orangefs.org
14192 S:      Supported
14193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14194 F:      Documentation/filesystems/orangefs.rst
14195 F:      fs/orangefs/
14196
14197 ORINOCO DRIVER
14198 L:      linux-wireless@vger.kernel.org
14199 S:      Orphan
14200 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14201 W:      http://www.nongnu.org/orinoco/
14202 F:      drivers/net/wireless/intersil/orinoco/
14203
14204 OV2659 OMNIVISION SENSOR DRIVER
14205 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14206 L:      linux-media@vger.kernel.org
14207 S:      Maintained
14208 W:      https://linuxtv.org
14209 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14210 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14211 F:      drivers/media/i2c/ov2659.c
14212 F:      include/media/i2c/ov2659.h
14213
14214 OVERLAY FILESYSTEM
14215 M:      Miklos Szeredi <miklos@szeredi.hu>
14216 L:      linux-unionfs@vger.kernel.org
14217 S:      Supported
14218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14219 F:      Documentation/filesystems/overlayfs.rst
14220 F:      fs/overlayfs/
14221
14222 P54 WIRELESS DRIVER
14223 M:      Christian Lamparter <chunkeey@googlemail.com>
14224 L:      linux-wireless@vger.kernel.org
14225 S:      Maintained
14226 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14227 F:      drivers/net/wireless/intersil/p54/
14228
14229 PACKING
14230 M:      Vladimir Oltean <olteanv@gmail.com>
14231 L:      netdev@vger.kernel.org
14232 S:      Supported
14233 F:      Documentation/core-api/packing.rst
14234 F:      include/linux/packing.h
14235 F:      lib/packing.c
14236
14237 PADATA PARALLEL EXECUTION MECHANISM
14238 M:      Steffen Klassert <steffen.klassert@secunet.com>
14239 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14240 L:      linux-crypto@vger.kernel.org
14241 L:      linux-kernel@vger.kernel.org
14242 S:      Maintained
14243 F:      Documentation/core-api/padata.rst
14244 F:      include/linux/padata.h
14245 F:      kernel/padata.c
14246
14247 PAGE POOL
14248 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14249 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14250 L:      netdev@vger.kernel.org
14251 S:      Supported
14252 F:      Documentation/networking/page_pool.rst
14253 F:      include/net/page_pool.h
14254 F:      include/trace/events/page_pool.h
14255 F:      net/core/page_pool.c
14256
14257 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14258 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14259 L:      platform-driver-x86@vger.kernel.org
14260 S:      Maintained
14261 F:      drivers/platform/x86/panasonic-laptop.c
14262
14263 PARALLAX PING IIO SENSOR DRIVER
14264 M:      Andreas Klinger <ak@it-klinger.de>
14265 L:      linux-iio@vger.kernel.org
14266 S:      Maintained
14267 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14268 F:      drivers/iio/proximity/ping.c
14269
14270 PARALLEL LCD/KEYPAD PANEL DRIVER
14271 M:      Willy Tarreau <willy@haproxy.com>
14272 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14273 S:      Odd Fixes
14274 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14275 F:      drivers/auxdisplay/panel.c
14276
14277 PARALLEL PORT SUBSYSTEM
14278 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14279 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14280 L:      linux-parport@lists.infradead.org (subscribers-only)
14281 S:      Maintained
14282 F:      Documentation/driver-api/parport*.rst
14283 F:      drivers/char/ppdev.c
14284 F:      drivers/parport/
14285 F:      include/linux/parport*.h
14286 F:      include/uapi/linux/ppdev.h
14287
14288 PARAVIRT_OPS INTERFACE
14289 M:      Juergen Gross <jgross@suse.com>
14290 M:      Deep Shah <sdeep@vmware.com>
14291 M:      "VMware, Inc." <pv-drivers@vmware.com>
14292 L:      virtualization@lists.linux-foundation.org
14293 S:      Supported
14294 F:      Documentation/virt/paravirt_ops.rst
14295 F:      arch/*/include/asm/paravirt*.h
14296 F:      arch/*/kernel/paravirt*
14297 F:      include/linux/hypervisor.h
14298
14299 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14300 M:      Tim Waugh <tim@cyberelk.net>
14301 L:      linux-parport@lists.infradead.org (subscribers-only)
14302 S:      Maintained
14303 F:      Documentation/admin-guide/blockdev/paride.rst
14304 F:      drivers/block/paride/
14305
14306 PARISC ARCHITECTURE
14307 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14308 M:      Helge Deller <deller@gmx.de>
14309 L:      linux-parisc@vger.kernel.org
14310 S:      Maintained
14311 W:      https://parisc.wiki.kernel.org
14312 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14315 F:      Documentation/parisc/
14316 F:      arch/parisc/
14317 F:      drivers/char/agp/parisc-agp.c
14318 F:      drivers/input/misc/hp_sdc_rtc.c
14319 F:      drivers/input/serio/gscps2.c
14320 F:      drivers/input/serio/hp_sdc*
14321 F:      drivers/parisc/
14322 F:      drivers/parport/parport_gsc.*
14323 F:      drivers/tty/serial/8250/8250_gsc.c
14324 F:      drivers/video/console/sti*
14325 F:      drivers/video/fbdev/sti*
14326 F:      drivers/video/logo/logo_parisc*
14327 F:      include/linux/hp_sdc.h
14328
14329 PARMAN
14330 M:      Jiri Pirko <jiri@nvidia.com>
14331 L:      netdev@vger.kernel.org
14332 S:      Supported
14333 F:      include/linux/parman.h
14334 F:      lib/parman.c
14335 F:      lib/test_parman.c
14336
14337 PC ENGINES APU BOARD DRIVER
14338 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14339 S:      Maintained
14340 F:      drivers/platform/x86/pcengines-apuv2.c
14341
14342 PC87360 HARDWARE MONITORING DRIVER
14343 M:      Jim Cromie <jim.cromie@gmail.com>
14344 L:      linux-hwmon@vger.kernel.org
14345 S:      Maintained
14346 F:      Documentation/hwmon/pc87360.rst
14347 F:      drivers/hwmon/pc87360.c
14348
14349 PC8736x GPIO DRIVER
14350 M:      Jim Cromie <jim.cromie@gmail.com>
14351 S:      Maintained
14352 F:      drivers/char/pc8736x_gpio.c
14353
14354 PC87427 HARDWARE MONITORING DRIVER
14355 M:      Jean Delvare <jdelvare@suse.com>
14356 L:      linux-hwmon@vger.kernel.org
14357 S:      Maintained
14358 F:      Documentation/hwmon/pc87427.rst
14359 F:      drivers/hwmon/pc87427.c
14360
14361 PCA9532 LED DRIVER
14362 M:      Riku Voipio <riku.voipio@iki.fi>
14363 S:      Maintained
14364 F:      drivers/leds/leds-pca9532.c
14365 F:      include/linux/leds-pca9532.h
14366
14367 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14368 M:      Guenter Roeck <linux@roeck-us.net>
14369 L:      linux-i2c@vger.kernel.org
14370 S:      Maintained
14371 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14372
14373 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14374 M:      Khalid Aziz <khalid@gonehiking.org>
14375 S:      Maintained
14376 F:      drivers/firmware/pcdp.*
14377
14378 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14379 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14380 M:      Pali Rohár <pali@kernel.org>
14381 L:      linux-pci@vger.kernel.org
14382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14383 S:      Maintained
14384 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14385 F:      drivers/pci/controller/pci-aardvark.c
14386
14387 PCI DRIVER FOR ALTERA PCIE IP
14388 M:      Joyce Ooi <joyce.ooi@intel.com>
14389 L:      linux-pci@vger.kernel.org
14390 S:      Supported
14391 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14392 F:      drivers/pci/controller/pcie-altera.c
14393
14394 PCI DRIVER FOR APPLIEDMICRO XGENE
14395 M:      Toan Le <toan@os.amperecomputing.com>
14396 L:      linux-pci@vger.kernel.org
14397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14398 S:      Maintained
14399 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14400 F:      drivers/pci/controller/pci-xgene.c
14401
14402 PCI DRIVER FOR ARM VERSATILE PLATFORM
14403 M:      Rob Herring <robh@kernel.org>
14404 L:      linux-pci@vger.kernel.org
14405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14406 S:      Maintained
14407 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14408 F:      drivers/pci/controller/pci-versatile.c
14409
14410 PCI DRIVER FOR ARMADA 8K
14411 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14412 L:      linux-pci@vger.kernel.org
14413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14414 S:      Maintained
14415 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14416 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14417
14418 PCI DRIVER FOR CADENCE PCIE IP
14419 M:      Tom Joseph <tjoseph@cadence.com>
14420 L:      linux-pci@vger.kernel.org
14421 S:      Maintained
14422 F:      Documentation/devicetree/bindings/pci/cdns,*
14423 F:      drivers/pci/controller/cadence/
14424
14425 PCI DRIVER FOR FREESCALE LAYERSCAPE
14426 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14427 M:      Mingkai Hu <mingkai.hu@nxp.com>
14428 M:      Roy Zang <roy.zang@nxp.com>
14429 L:      linuxppc-dev@lists.ozlabs.org
14430 L:      linux-pci@vger.kernel.org
14431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14432 S:      Maintained
14433 F:      drivers/pci/controller/dwc/*layerscape*
14434
14435 PCI DRIVER FOR GENERIC OF HOSTS
14436 M:      Will Deacon <will@kernel.org>
14437 L:      linux-pci@vger.kernel.org
14438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14439 S:      Maintained
14440 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14441 F:      drivers/pci/controller/pci-host-common.c
14442 F:      drivers/pci/controller/pci-host-generic.c
14443
14444 PCI DRIVER FOR IMX6
14445 M:      Richard Zhu <hongxing.zhu@nxp.com>
14446 M:      Lucas Stach <l.stach@pengutronix.de>
14447 L:      linux-pci@vger.kernel.org
14448 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14449 S:      Maintained
14450 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14451 F:      drivers/pci/controller/dwc/*imx6*
14452
14453 PCI DRIVER FOR FU740
14454 M:      Paul Walmsley <paul.walmsley@sifive.com>
14455 M:      Greentime Hu <greentime.hu@sifive.com>
14456 L:      linux-pci@vger.kernel.org
14457 S:      Maintained
14458 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14459 F:      drivers/pci/controller/dwc/pcie-fu740.c
14460
14461 PCI DRIVER FOR INTEL IXP4XX
14462 M:      Linus Walleij <linus.walleij@linaro.org>
14463 S:      Maintained
14464 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14465 F:      drivers/pci/controller/pci-ixp4xx.c
14466
14467 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14468 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14469 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14470 L:      linux-pci@vger.kernel.org
14471 S:      Supported
14472 F:      drivers/pci/controller/vmd.c
14473
14474 PCI DRIVER FOR MICROSEMI SWITCHTEC
14475 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14476 M:      Logan Gunthorpe <logang@deltatee.com>
14477 L:      linux-pci@vger.kernel.org
14478 S:      Maintained
14479 F:      Documentation/ABI/testing/sysfs-class-switchtec
14480 F:      Documentation/driver-api/switchtec.rst
14481 F:      drivers/ntb/hw/mscc/
14482 F:      drivers/pci/switch/switchtec*
14483 F:      include/linux/switchtec.h
14484 F:      include/uapi/linux/switchtec_ioctl.h
14485
14486 PCI DRIVER FOR MOBIVEIL PCIE IP
14487 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14488 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14489 L:      linux-pci@vger.kernel.org
14490 S:      Supported
14491 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14492 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14493
14494 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14495 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14496 L:      linux-pci@vger.kernel.org
14497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14498 S:      Maintained
14499 F:      drivers/pci/controller/*mvebu*
14500
14501 PCI DRIVER FOR NVIDIA TEGRA
14502 M:      Thierry Reding <thierry.reding@gmail.com>
14503 L:      linux-tegra@vger.kernel.org
14504 L:      linux-pci@vger.kernel.org
14505 S:      Supported
14506 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14507 F:      drivers/pci/controller/pci-tegra.c
14508
14509 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14510 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14511 L:      linux-pci@vger.kernel.org
14512 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14513 S:      Maintained
14514 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14515 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14516
14517 PCI DRIVER FOR RENESAS R-CAR
14518 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14519 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14520 L:      linux-pci@vger.kernel.org
14521 L:      linux-renesas-soc@vger.kernel.org
14522 S:      Maintained
14523 F:      Documentation/devicetree/bindings/pci/*rcar*
14524 F:      drivers/pci/controller/*rcar*
14525
14526 PCI DRIVER FOR SAMSUNG EXYNOS
14527 M:      Jingoo Han <jingoohan1@gmail.com>
14528 L:      linux-pci@vger.kernel.org
14529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14530 L:      linux-samsung-soc@vger.kernel.org
14531 S:      Maintained
14532 F:      drivers/pci/controller/dwc/pci-exynos.c
14533
14534 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14535 M:      Jingoo Han <jingoohan1@gmail.com>
14536 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14537 L:      linux-pci@vger.kernel.org
14538 S:      Maintained
14539 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14540 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14541 F:      drivers/pci/controller/dwc/*designware*
14542
14543 PCI DRIVER FOR TI DRA7XX/J721E
14544 M:      Kishon Vijay Abraham I <kishon@ti.com>
14545 L:      linux-omap@vger.kernel.org
14546 L:      linux-pci@vger.kernel.org
14547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14548 S:      Supported
14549 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14550 F:      drivers/pci/controller/cadence/pci-j721e.c
14551 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14552
14553 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14554 M:      Linus Walleij <linus.walleij@linaro.org>
14555 L:      linux-pci@vger.kernel.org
14556 S:      Maintained
14557 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14558 F:      drivers/pci/controller/pci-v3-semi.c
14559
14560 PCI ENDPOINT SUBSYSTEM
14561 M:      Kishon Vijay Abraham I <kishon@ti.com>
14562 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14563 R:      Krzysztof Wilczyński <kw@linux.com>
14564 L:      linux-pci@vger.kernel.org
14565 S:      Supported
14566 F:      Documentation/PCI/endpoint/*
14567 F:      Documentation/misc-devices/pci-endpoint-test.rst
14568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14569 F:      drivers/misc/pci_endpoint_test.c
14570 F:      drivers/pci/endpoint/
14571 F:      tools/pci/
14572
14573 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14574 M:      Russell Currey <ruscur@russell.cc>
14575 M:      Oliver O'Halloran <oohall@gmail.com>
14576 L:      linuxppc-dev@lists.ozlabs.org
14577 S:      Supported
14578 F:      Documentation/PCI/pci-error-recovery.rst
14579 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14580 F:      arch/powerpc/include/*/eeh*.h
14581 F:      arch/powerpc/kernel/eeh*.c
14582 F:      arch/powerpc/platforms/*/eeh*.c
14583 F:      drivers/pci/pcie/aer.c
14584 F:      drivers/pci/pcie/dpc.c
14585 F:      drivers/pci/pcie/err.c
14586
14587 PCI ERROR RECOVERY
14588 M:      Linas Vepstas <linasvepstas@gmail.com>
14589 L:      linux-pci@vger.kernel.org
14590 S:      Supported
14591 F:      Documentation/PCI/pci-error-recovery.rst
14592
14593 PCI MSI DRIVER FOR ALTERA MSI IP
14594 M:      Joyce Ooi <joyce.ooi@intel.com>
14595 L:      linux-pci@vger.kernel.org
14596 S:      Supported
14597 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14598 F:      drivers/pci/controller/pcie-altera-msi.c
14599
14600 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14601 M:      Toan Le <toan@os.amperecomputing.com>
14602 L:      linux-pci@vger.kernel.org
14603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14604 S:      Maintained
14605 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14606 F:      drivers/pci/controller/pci-xgene-msi.c
14607
14608 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14609 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14610 R:      Rob Herring <robh@kernel.org>
14611 R:      Krzysztof Wilczyński <kw@linux.com>
14612 L:      linux-pci@vger.kernel.org
14613 S:      Supported
14614 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14616 F:      drivers/pci/controller/
14617
14618 PCI SUBSYSTEM
14619 M:      Bjorn Helgaas <bhelgaas@google.com>
14620 L:      linux-pci@vger.kernel.org
14621 S:      Supported
14622 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14624 F:      Documentation/PCI/
14625 F:      Documentation/devicetree/bindings/pci/
14626 F:      arch/x86/kernel/early-quirks.c
14627 F:      arch/x86/kernel/quirks.c
14628 F:      arch/x86/pci/
14629 F:      drivers/acpi/pci*
14630 F:      drivers/pci/
14631 F:      include/asm-generic/pci*
14632 F:      include/linux/of_pci.h
14633 F:      include/linux/pci*
14634 F:      include/uapi/linux/pci*
14635 F:      lib/pci*
14636
14637 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14638 M:      Jonathan Chocron <jonnyc@amazon.com>
14639 L:      linux-pci@vger.kernel.org
14640 S:      Maintained
14641 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14642 F:      drivers/pci/controller/dwc/pcie-al.c
14643
14644 PCIE DRIVER FOR AMLOGIC MESON
14645 M:      Yue Wang <yue.wang@Amlogic.com>
14646 L:      linux-pci@vger.kernel.org
14647 L:      linux-amlogic@lists.infradead.org
14648 S:      Maintained
14649 F:      drivers/pci/controller/dwc/pci-meson.c
14650
14651 PCIE DRIVER FOR AXIS ARTPEC
14652 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14653 L:      linux-arm-kernel@axis.com
14654 L:      linux-pci@vger.kernel.org
14655 S:      Maintained
14656 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14657 F:      drivers/pci/controller/dwc/*artpec*
14658
14659 PCIE DRIVER FOR CAVIUM THUNDERX
14660 M:      Robert Richter <rric@kernel.org>
14661 L:      linux-pci@vger.kernel.org
14662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14663 S:      Odd Fixes
14664 F:      drivers/pci/controller/pci-thunder-*
14665
14666 PCIE DRIVER FOR HISILICON
14667 M:      Zhou Wang <wangzhou1@hisilicon.com>
14668 L:      linux-pci@vger.kernel.org
14669 S:      Maintained
14670 F:      drivers/pci/controller/dwc/pcie-hisi.c
14671
14672 PCIE DRIVER FOR HISILICON KIRIN
14673 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14674 M:      Binghui Wang <wangbinghui@hisilicon.com>
14675 L:      linux-pci@vger.kernel.org
14676 S:      Maintained
14677 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14678 F:      drivers/pci/controller/dwc/pcie-kirin.c
14679
14680 PCIE DRIVER FOR HISILICON STB
14681 M:      Shawn Guo <shawn.guo@linaro.org>
14682 L:      linux-pci@vger.kernel.org
14683 S:      Maintained
14684 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14685 F:      drivers/pci/controller/dwc/pcie-histb.c
14686
14687 PCIE DRIVER FOR INTEL KEEM BAY
14688 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14689 L:      linux-pci@vger.kernel.org
14690 S:      Supported
14691 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14692 F:      drivers/pci/controller/dwc/pcie-keembay.c
14693
14694 PCIE DRIVER FOR INTEL LGM GW SOC
14695 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14696 L:      linux-pci@vger.kernel.org
14697 S:      Maintained
14698 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14699 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14700
14701 PCIE DRIVER FOR MEDIATEK
14702 M:      Ryder Lee <ryder.lee@mediatek.com>
14703 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14704 L:      linux-pci@vger.kernel.org
14705 L:      linux-mediatek@lists.infradead.org
14706 S:      Supported
14707 F:      Documentation/devicetree/bindings/pci/mediatek*
14708 F:      drivers/pci/controller/*mediatek*
14709
14710 PCIE DRIVER FOR MICROCHIP
14711 M:      Daire McNamara <daire.mcnamara@microchip.com>
14712 L:      linux-pci@vger.kernel.org
14713 S:      Supported
14714 F:      Documentation/devicetree/bindings/pci/microchip*
14715 F:      drivers/pci/controller/*microchip*
14716
14717 PCIE DRIVER FOR QUALCOMM MSM
14718 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14719 L:      linux-pci@vger.kernel.org
14720 L:      linux-arm-msm@vger.kernel.org
14721 S:      Maintained
14722 F:      drivers/pci/controller/dwc/*qcom*
14723
14724 PCIE DRIVER FOR ROCKCHIP
14725 M:      Shawn Lin <shawn.lin@rock-chips.com>
14726 L:      linux-pci@vger.kernel.org
14727 L:      linux-rockchip@lists.infradead.org
14728 S:      Maintained
14729 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14730 F:      drivers/pci/controller/pcie-rockchip*
14731
14732 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14733 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14734 L:      linux-pci@vger.kernel.org
14735 S:      Maintained
14736 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14737 F:      drivers/pci/controller/dwc/pcie-uniphier*
14738
14739 PCIE DRIVER FOR ST SPEAR13XX
14740 M:      Pratyush Anand <pratyush.anand@gmail.com>
14741 L:      linux-pci@vger.kernel.org
14742 S:      Maintained
14743 F:      drivers/pci/controller/dwc/*spear*
14744
14745 PCMCIA SUBSYSTEM
14746 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14747 S:      Odd Fixes
14748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14749 F:      Documentation/pcmcia/
14750 F:      drivers/pcmcia/
14751 F:      include/pcmcia/
14752 F:      tools/pcmcia/
14753
14754 PCNET32 NETWORK DRIVER
14755 M:      Don Fry <pcnet32@frontier.com>
14756 L:      netdev@vger.kernel.org
14757 S:      Maintained
14758 F:      drivers/net/ethernet/amd/pcnet32.c
14759
14760 PCRYPT PARALLEL CRYPTO ENGINE
14761 M:      Steffen Klassert <steffen.klassert@secunet.com>
14762 L:      linux-crypto@vger.kernel.org
14763 S:      Maintained
14764 F:      crypto/pcrypt.c
14765 F:      include/crypto/pcrypt.h
14766
14767 PEAQ WMI HOTKEYS DRIVER
14768 M:      Hans de Goede <hdegoede@redhat.com>
14769 L:      platform-driver-x86@vger.kernel.org
14770 S:      Maintained
14771 F:      drivers/platform/x86/peaq-wmi.c
14772
14773 PENSANDO ETHERNET DRIVERS
14774 M:      Shannon Nelson <snelson@pensando.io>
14775 M:      drivers@pensando.io
14776 L:      netdev@vger.kernel.org
14777 S:      Supported
14778 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14779 F:      drivers/net/ethernet/pensando/
14780
14781 PER-CPU MEMORY ALLOCATOR
14782 M:      Dennis Zhou <dennis@kernel.org>
14783 M:      Tejun Heo <tj@kernel.org>
14784 M:      Christoph Lameter <cl@linux.com>
14785 L:      linux-mm@kvack.org
14786 S:      Maintained
14787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14788 F:      arch/*/include/asm/percpu.h
14789 F:      include/linux/percpu*.h
14790 F:      lib/percpu*.c
14791 F:      mm/percpu*.c
14792
14793 PER-TASK DELAY ACCOUNTING
14794 M:      Balbir Singh <bsingharora@gmail.com>
14795 S:      Maintained
14796 F:      include/linux/delayacct.h
14797 F:      kernel/delayacct.c
14798
14799 PERFORMANCE EVENTS SUBSYSTEM
14800 M:      Peter Zijlstra <peterz@infradead.org>
14801 M:      Ingo Molnar <mingo@redhat.com>
14802 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14803 R:      Mark Rutland <mark.rutland@arm.com>
14804 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14805 R:      Jiri Olsa <jolsa@redhat.com>
14806 R:      Namhyung Kim <namhyung@kernel.org>
14807 L:      linux-perf-users@vger.kernel.org
14808 L:      linux-kernel@vger.kernel.org
14809 S:      Supported
14810 W:      https://perf.wiki.kernel.org/
14811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14812 F:      arch/*/events/*
14813 F:      arch/*/events/*/*
14814 F:      arch/*/include/asm/perf_event.h
14815 F:      arch/*/kernel/*/*/perf_event*.c
14816 F:      arch/*/kernel/*/perf_event*.c
14817 F:      arch/*/kernel/perf_callchain.c
14818 F:      arch/*/kernel/perf_event*.c
14819 F:      include/linux/perf_event.h
14820 F:      include/uapi/linux/perf_event.h
14821 F:      kernel/events/*
14822 F:      tools/lib/perf/
14823 F:      tools/perf/
14824
14825 PERFORMANCE EVENTS TOOLING ARM64
14826 R:      John Garry <john.garry@huawei.com>
14827 R:      Will Deacon <will@kernel.org>
14828 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14829 R:      Leo Yan <leo.yan@linaro.org>
14830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14831 S:      Supported
14832 F:      tools/build/feature/test-libopencsd.c
14833 F:      tools/perf/arch/arm*/
14834 F:      tools/perf/pmu-events/arch/arm64/
14835 F:      tools/perf/util/arm-spe*
14836 F:      tools/perf/util/cs-etm*
14837
14838 PERSONALITY HANDLING
14839 M:      Christoph Hellwig <hch@infradead.org>
14840 L:      linux-abi-devel@lists.sourceforge.net
14841 S:      Maintained
14842 F:      include/linux/personality.h
14843 F:      include/uapi/linux/personality.h
14844
14845 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14846 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14847 L:      linux-input@vger.kernel.org
14848 S:      Maintained
14849 F:      Documentation/input/devices/pxrc.rst
14850 F:      drivers/input/joystick/pxrc.c
14851
14852 PHONET PROTOCOL
14853 M:      Remi Denis-Courmont <courmisch@gmail.com>
14854 S:      Supported
14855 F:      Documentation/networking/phonet.rst
14856 F:      include/linux/phonet.h
14857 F:      include/net/phonet/
14858 F:      include/uapi/linux/phonet.h
14859 F:      net/phonet/
14860
14861 PHRAM MTD DRIVER
14862 M:      Joern Engel <joern@lazybastard.org>
14863 L:      linux-mtd@lists.infradead.org
14864 S:      Maintained
14865 F:      drivers/mtd/devices/phram.c
14866
14867 PICOLCD HID DRIVER
14868 M:      Bruno Prémont <bonbons@linux-vserver.org>
14869 L:      linux-input@vger.kernel.org
14870 S:      Maintained
14871 F:      drivers/hid/hid-picolcd*
14872
14873 PIDFD API
14874 M:      Christian Brauner <christian@brauner.io>
14875 L:      linux-kernel@vger.kernel.org
14876 S:      Maintained
14877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14878 F:      samples/pidfd/
14879 F:      tools/testing/selftests/clone3/
14880 F:      tools/testing/selftests/pid_namespace/
14881 F:      tools/testing/selftests/pidfd/
14882 K:      (?i)pidfd
14883 K:      (?i)clone3
14884 K:      \b(clone_args|kernel_clone_args)\b
14885
14886 PIN CONTROL SUBSYSTEM
14887 M:      Linus Walleij <linus.walleij@linaro.org>
14888 L:      linux-gpio@vger.kernel.org
14889 S:      Maintained
14890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14891 F:      Documentation/devicetree/bindings/pinctrl/
14892 F:      Documentation/driver-api/pin-control.rst
14893 F:      drivers/pinctrl/
14894 F:      include/linux/pinctrl/
14895
14896 PIN CONTROLLER - AMD
14897 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14898 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14899 S:      Maintained
14900 F:      drivers/pinctrl/pinctrl-amd.c
14901
14902 PIN CONTROLLER - FREESCALE
14903 M:      Dong Aisheng <aisheng.dong@nxp.com>
14904 M:      Fabio Estevam <festevam@gmail.com>
14905 M:      Shawn Guo <shawnguo@kernel.org>
14906 M:      Stefan Agner <stefan@agner.ch>
14907 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14908 L:      linux-gpio@vger.kernel.org
14909 S:      Maintained
14910 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14911 F:      drivers/pinctrl/freescale/
14912
14913 PIN CONTROLLER - INTEL
14914 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14915 M:      Andy Shevchenko <andy@kernel.org>
14916 S:      Maintained
14917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14918 F:      drivers/pinctrl/intel/
14919
14920 PIN CONTROLLER - KEEMBAY
14921 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14922 S:      Supported
14923 F:      drivers/pinctrl/pinctrl-keembay*
14924
14925 PIN CONTROLLER - MEDIATEK
14926 M:      Sean Wang <sean.wang@kernel.org>
14927 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14928 S:      Maintained
14929 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14930 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14931 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14932 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14933 F:      drivers/pinctrl/mediatek/
14934
14935 PIN CONTROLLER - MICROCHIP AT91
14936 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14938 L:      linux-gpio@vger.kernel.org
14939 S:      Supported
14940 F:      drivers/gpio/gpio-sama5d2-piobu.c
14941 F:      drivers/pinctrl/pinctrl-at91*
14942
14943 PIN CONTROLLER - QUALCOMM
14944 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14945 L:      linux-arm-msm@vger.kernel.org
14946 S:      Maintained
14947 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14948 F:      drivers/pinctrl/qcom/
14949
14950 PIN CONTROLLER - RENESAS
14951 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14952 L:      linux-renesas-soc@vger.kernel.org
14953 S:      Supported
14954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14955 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14956 F:      drivers/pinctrl/renesas/
14957
14958 PIN CONTROLLER - SAMSUNG
14959 M:      Tomasz Figa <tomasz.figa@gmail.com>
14960 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14961 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14963 L:      linux-samsung-soc@vger.kernel.org
14964 S:      Maintained
14965 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14967 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14968 F:      drivers/pinctrl/samsung/
14969 F:      include/dt-bindings/pinctrl/samsung.h
14970
14971 PIN CONTROLLER - SINGLE
14972 M:      Tony Lindgren <tony@atomide.com>
14973 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14975 L:      linux-omap@vger.kernel.org
14976 S:      Maintained
14977 F:      drivers/pinctrl/pinctrl-single.c
14978
14979 PIN CONTROLLER - ST SPEAR
14980 M:      Viresh Kumar <vireshk@kernel.org>
14981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14982 S:      Maintained
14983 W:      http://www.st.com/spear
14984 F:      drivers/pinctrl/spear/
14985
14986 PKTCDVD DRIVER
14987 M:      linux-block@vger.kernel.org
14988 S:      Orphan
14989 F:      drivers/block/pktcdvd.c
14990 F:      include/linux/pktcdvd.h
14991 F:      include/uapi/linux/pktcdvd.h
14992
14993 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14994 M:      Tomasz Duszynski <tduszyns@gmail.com>
14995 S:      Maintained
14996 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14997 F:      drivers/iio/chemical/pms7003.c
14998
14999 PLDMFW LIBRARY
15000 M:      Jacob Keller <jacob.e.keller@intel.com>
15001 S:      Maintained
15002 F:      Documentation/driver-api/pldmfw/
15003 F:      include/linux/pldmfw.h
15004 F:      lib/pldmfw/
15005
15006 PLX DMA DRIVER
15007 M:      Logan Gunthorpe <logang@deltatee.com>
15008 S:      Maintained
15009 F:      drivers/dma/plx_dma.c
15010
15011 PM6764TR DRIVER
15012 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15013 L:      linux-hwmon@vger.kernel.org
15014 S:      Maintained
15015 F:      Documentation/hwmon/pm6764tr.rst
15016 F:      drivers/hwmon/pmbus/pm6764tr.c
15017
15018 PM-GRAPH UTILITY
15019 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15020 L:      linux-pm@vger.kernel.org
15021 S:      Supported
15022 W:      https://01.org/pm-graph
15023 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15024 T:      git git://github.com/intel/pm-graph
15025 F:      tools/power/pm-graph
15026
15027 PMBUS HARDWARE MONITORING DRIVERS
15028 M:      Guenter Roeck <linux@roeck-us.net>
15029 L:      linux-hwmon@vger.kernel.org
15030 S:      Maintained
15031 W:      http://hwmon.wiki.kernel.org/
15032 W:      http://www.roeck-us.net/linux/drivers/
15033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15034 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15035 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15036 F:      Documentation/hwmon/adm1275.rst
15037 F:      Documentation/hwmon/ibm-cffps.rst
15038 F:      Documentation/hwmon/ir35221.rst
15039 F:      Documentation/hwmon/lm25066.rst
15040 F:      Documentation/hwmon/ltc2978.rst
15041 F:      Documentation/hwmon/ltc3815.rst
15042 F:      Documentation/hwmon/max16064.rst
15043 F:      Documentation/hwmon/max20751.rst
15044 F:      Documentation/hwmon/max31785.rst
15045 F:      Documentation/hwmon/max34440.rst
15046 F:      Documentation/hwmon/max8688.rst
15047 F:      Documentation/hwmon/pmbus-core.rst
15048 F:      Documentation/hwmon/pmbus.rst
15049 F:      Documentation/hwmon/tps40422.rst
15050 F:      Documentation/hwmon/ucd9000.rst
15051 F:      Documentation/hwmon/ucd9200.rst
15052 F:      Documentation/hwmon/zl6100.rst
15053 F:      drivers/hwmon/pmbus/
15054 F:      include/linux/pmbus.h
15055
15056 PMC SIERRA MaxRAID DRIVER
15057 L:      linux-scsi@vger.kernel.org
15058 S:      Orphan
15059 W:      http://www.pmc-sierra.com/
15060 F:      drivers/scsi/pmcraid.*
15061
15062 PMC SIERRA PM8001 DRIVER
15063 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15064 L:      linux-scsi@vger.kernel.org
15065 S:      Supported
15066 F:      drivers/scsi/pm8001/
15067
15068 PNI RM3100 IIO DRIVER
15069 M:      Song Qiang <songqiang1304521@gmail.com>
15070 L:      linux-iio@vger.kernel.org
15071 S:      Maintained
15072 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15073 F:      drivers/iio/magnetometer/rm3100*
15074
15075 PNP SUPPORT
15076 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15077 L:      linux-acpi@vger.kernel.org
15078 S:      Maintained
15079 F:      drivers/pnp/
15080 F:      include/linux/pnp.h
15081
15082 POSIX CLOCKS and TIMERS
15083 M:      Thomas Gleixner <tglx@linutronix.de>
15084 L:      linux-kernel@vger.kernel.org
15085 S:      Maintained
15086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15087 F:      fs/timerfd.c
15088 F:      include/linux/time_namespace.h
15089 F:      include/linux/timer*
15090 F:      kernel/time/*timer*
15091 F:      kernel/time/namespace.c
15092
15093 POWER MANAGEMENT CORE
15094 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15095 L:      linux-pm@vger.kernel.org
15096 S:      Supported
15097 B:      https://bugzilla.kernel.org
15098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15099 F:      drivers/base/power/
15100 F:      drivers/powercap/
15101 F:      include/linux/intel_rapl.h
15102 F:      include/linux/pm.h
15103 F:      include/linux/pm_*
15104 F:      include/linux/powercap.h
15105 F:      kernel/configs/nopm.config
15106
15107 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15108 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15109 L:      linux-pm@vger.kernel.org
15110 S:      Supported
15111 B:      https://bugzilla.kernel.org
15112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15113 F:      drivers/powercap/dtpm*
15114 F:      include/linux/dtpm.h
15115
15116 POWER STATE COORDINATION INTERFACE (PSCI)
15117 M:      Mark Rutland <mark.rutland@arm.com>
15118 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15120 S:      Maintained
15121 F:      drivers/firmware/psci/
15122 F:      include/linux/psci.h
15123 F:      include/uapi/linux/psci.h
15124
15125 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15126 M:      Sebastian Reichel <sre@kernel.org>
15127 L:      linux-pm@vger.kernel.org
15128 S:      Maintained
15129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15130 F:      Documentation/ABI/testing/sysfs-class-power
15131 F:      Documentation/devicetree/bindings/power/supply/
15132 F:      drivers/power/supply/
15133 F:      include/linux/power/
15134 F:      include/linux/power_supply.h
15135
15136 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15137 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15138 L:      linuxppc-dev@lists.ozlabs.org
15139 S:      Maintained
15140 F:      drivers/char/powernv-op-panel.c
15141
15142 PPP OVER ATM (RFC 2364)
15143 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15144 S:      Maintained
15145 F:      include/uapi/linux/atmppp.h
15146 F:      net/atm/pppoatm.c
15147
15148 PPP OVER ETHERNET
15149 M:      Michal Ostrowski <mostrows@earthlink.net>
15150 S:      Maintained
15151 F:      drivers/net/ppp/pppoe.c
15152 F:      drivers/net/ppp/pppox.c
15153
15154 PPP OVER L2TP
15155 M:      James Chapman <jchapman@katalix.com>
15156 S:      Maintained
15157 F:      include/linux/if_pppol2tp.h
15158 F:      include/uapi/linux/if_pppol2tp.h
15159 F:      net/l2tp/l2tp_ppp.c
15160
15161 PPP PROTOCOL DRIVERS AND COMPRESSORS
15162 M:      Paul Mackerras <paulus@samba.org>
15163 L:      linux-ppp@vger.kernel.org
15164 S:      Maintained
15165 F:      drivers/net/ppp/ppp_*
15166
15167 PPS SUPPORT
15168 M:      Rodolfo Giometti <giometti@enneenne.com>
15169 L:      linuxpps@ml.enneenne.com (subscribers-only)
15170 S:      Maintained
15171 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15172 F:      Documentation/ABI/testing/sysfs-pps
15173 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15174 F:      Documentation/driver-api/pps.rst
15175 F:      drivers/pps/
15176 F:      include/linux/pps*.h
15177 F:      include/uapi/linux/pps.h
15178
15179 PPTP DRIVER
15180 M:      Dmitry Kozlov <xeb@mail.ru>
15181 L:      netdev@vger.kernel.org
15182 S:      Maintained
15183 W:      http://sourceforge.net/projects/accel-pptp
15184 F:      drivers/net/ppp/pptp.c
15185
15186 PRESSURE STALL INFORMATION (PSI)
15187 M:      Johannes Weiner <hannes@cmpxchg.org>
15188 S:      Maintained
15189 F:      include/linux/psi*
15190 F:      kernel/sched/psi.c
15191
15192 PRINTK
15193 M:      Petr Mladek <pmladek@suse.com>
15194 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15195 R:      Steven Rostedt <rostedt@goodmis.org>
15196 R:      John Ogness <john.ogness@linutronix.de>
15197 S:      Maintained
15198 F:      include/linux/printk.h
15199 F:      kernel/printk/
15200
15201 PRINTK INDEXING
15202 R:      Chris Down <chris@chrisdown.name>
15203 S:      Maintained
15204 F:      kernel/printk/index.c
15205
15206 PROC FILESYSTEM
15207 L:      linux-kernel@vger.kernel.org
15208 L:      linux-fsdevel@vger.kernel.org
15209 S:      Maintained
15210 F:      Documentation/filesystems/proc.rst
15211 F:      fs/proc/
15212 F:      include/linux/proc_fs.h
15213 F:      tools/testing/selftests/proc/
15214
15215 PROC SYSCTL
15216 M:      Luis Chamberlain <mcgrof@kernel.org>
15217 M:      Kees Cook <keescook@chromium.org>
15218 M:      Iurii Zaikin <yzaikin@google.com>
15219 L:      linux-kernel@vger.kernel.org
15220 L:      linux-fsdevel@vger.kernel.org
15221 S:      Maintained
15222 F:      fs/proc/proc_sysctl.c
15223 F:      include/linux/sysctl.h
15224 F:      kernel/sysctl-test.c
15225 F:      kernel/sysctl.c
15226 F:      tools/testing/selftests/sysctl/
15227
15228 PS3 NETWORK SUPPORT
15229 M:      Geoff Levand <geoff@infradead.org>
15230 L:      netdev@vger.kernel.org
15231 L:      linuxppc-dev@lists.ozlabs.org
15232 S:      Maintained
15233 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15234
15235 PS3 PLATFORM SUPPORT
15236 M:      Geoff Levand <geoff@infradead.org>
15237 L:      linuxppc-dev@lists.ozlabs.org
15238 S:      Maintained
15239 F:      arch/powerpc/boot/ps3*
15240 F:      arch/powerpc/include/asm/lv1call.h
15241 F:      arch/powerpc/include/asm/ps3*.h
15242 F:      arch/powerpc/platforms/ps3/
15243 F:      drivers/*/ps3*
15244 F:      drivers/ps3/
15245 F:      drivers/rtc/rtc-ps3.c
15246 F:      drivers/usb/host/*ps3.c
15247 F:      sound/ppc/snd_ps3*
15248
15249 PS3VRAM DRIVER
15250 M:      Jim Paris <jim@jtan.com>
15251 M:      Geoff Levand <geoff@infradead.org>
15252 L:      linuxppc-dev@lists.ozlabs.org
15253 S:      Maintained
15254 F:      drivers/block/ps3vram.c
15255
15256 PSAMPLE PACKET SAMPLING SUPPORT
15257 M:      Yotam Gigi <yotam.gi@gmail.com>
15258 S:      Maintained
15259 F:      include/net/psample.h
15260 F:      include/uapi/linux/psample.h
15261 F:      net/psample
15262
15263 PSTORE FILESYSTEM
15264 M:      Kees Cook <keescook@chromium.org>
15265 M:      Anton Vorontsov <anton@enomsg.org>
15266 M:      Colin Cross <ccross@android.com>
15267 M:      Tony Luck <tony.luck@intel.com>
15268 S:      Maintained
15269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15270 F:      Documentation/admin-guide/ramoops.rst
15271 F:      Documentation/admin-guide/pstore-blk.rst
15272 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15273 F:      drivers/acpi/apei/erst.c
15274 F:      drivers/firmware/efi/efi-pstore.c
15275 F:      fs/pstore/
15276 F:      include/linux/pstore*
15277 K:      \b(pstore|ramoops)
15278
15279 PTP HARDWARE CLOCK SUPPORT
15280 M:      Richard Cochran <richardcochran@gmail.com>
15281 L:      netdev@vger.kernel.org
15282 S:      Maintained
15283 W:      http://linuxptp.sourceforge.net/
15284 F:      Documentation/ABI/testing/sysfs-ptp
15285 F:      Documentation/driver-api/ptp.rst
15286 F:      drivers/net/phy/dp83640*
15287 F:      drivers/ptp/*
15288 F:      include/linux/ptp_cl*
15289
15290 PTP VIRTUAL CLOCK SUPPORT
15291 M:      Yangbo Lu <yangbo.lu@nxp.com>
15292 L:      netdev@vger.kernel.org
15293 S:      Maintained
15294 F:      drivers/ptp/ptp_vclock.c
15295 F:      net/ethtool/phc_vclocks.c
15296
15297 PTRACE SUPPORT
15298 M:      Oleg Nesterov <oleg@redhat.com>
15299 S:      Maintained
15300 F:      arch/*/*/ptrace*.c
15301 F:      arch/*/include/asm/ptrace*.h
15302 F:      arch/*/ptrace*.c
15303 F:      include/asm-generic/syscall.h
15304 F:      include/linux/ptrace.h
15305 F:      include/linux/regset.h
15306 F:      include/linux/tracehook.h
15307 F:      include/uapi/linux/ptrace.h
15308 F:      include/uapi/linux/ptrace.h
15309 F:      kernel/ptrace.c
15310
15311 PULSE8-CEC DRIVER
15312 M:      Hans Verkuil <hverkuil@xs4all.nl>
15313 L:      linux-media@vger.kernel.org
15314 S:      Maintained
15315 T:      git git://linuxtv.org/media_tree.git
15316 F:      Documentation/admin-guide/media/pulse8-cec.rst
15317 F:      drivers/media/cec/usb/pulse8/
15318
15319 PVRUSB2 VIDEO4LINUX DRIVER
15320 M:      Mike Isely <isely@pobox.com>
15321 L:      pvrusb2@isely.net       (subscribers-only)
15322 L:      linux-media@vger.kernel.org
15323 S:      Maintained
15324 W:      http://www.isely.net/pvrusb2/
15325 T:      git git://linuxtv.org/media_tree.git
15326 F:      Documentation/driver-api/media/drivers/pvrusb2*
15327 F:      drivers/media/usb/pvrusb2/
15328
15329 PWC WEBCAM DRIVER
15330 M:      Hans Verkuil <hverkuil@xs4all.nl>
15331 L:      linux-media@vger.kernel.org
15332 S:      Odd Fixes
15333 T:      git git://linuxtv.org/media_tree.git
15334 F:      drivers/media/usb/pwc/*
15335 F:      include/trace/events/pwc.h
15336
15337 PWM FAN DRIVER
15338 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15339 L:      linux-hwmon@vger.kernel.org
15340 S:      Supported
15341 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15342 F:      Documentation/hwmon/pwm-fan.rst
15343 F:      drivers/hwmon/pwm-fan.c
15344
15345 PWM IR Transmitter
15346 M:      Sean Young <sean@mess.org>
15347 L:      linux-media@vger.kernel.org
15348 S:      Maintained
15349 F:      drivers/media/rc/pwm-ir-tx.c
15350
15351 PWM SUBSYSTEM
15352 M:      Thierry Reding <thierry.reding@gmail.com>
15353 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15354 M:      Lee Jones <lee.jones@linaro.org>
15355 L:      linux-pwm@vger.kernel.org
15356 S:      Maintained
15357 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15359 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15360 F:      Documentation/devicetree/bindings/pwm/
15361 F:      Documentation/driver-api/pwm.rst
15362 F:      drivers/gpio/gpio-mvebu.c
15363 F:      drivers/pwm/
15364 F:      drivers/video/backlight/pwm_bl.c
15365 F:      include/linux/pwm.h
15366 F:      include/linux/pwm_backlight.h
15367 K:      pwm_(config|apply_state|ops)
15368
15369 PXA GPIO DRIVER
15370 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15371 L:      linux-gpio@vger.kernel.org
15372 S:      Maintained
15373 F:      drivers/gpio/gpio-pxa.c
15374
15375 PXA MMCI DRIVER
15376 S:      Orphan
15377
15378 PXA RTC DRIVER
15379 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15380 L:      linux-rtc@vger.kernel.org
15381 S:      Maintained
15382
15383 PXA2xx/PXA3xx SUPPORT
15384 M:      Daniel Mack <daniel@zonque.org>
15385 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15386 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15388 S:      Maintained
15389 T:      git git://github.com/hzhuang1/linux.git
15390 T:      git git://github.com/rjarzmik/linux.git
15391 F:      arch/arm/boot/dts/pxa*
15392 F:      arch/arm/mach-pxa/
15393 F:      drivers/dma/pxa*
15394 F:      drivers/pcmcia/pxa2xx*
15395 F:      drivers/pinctrl/pxa/
15396 F:      drivers/spi/spi-pxa2xx*
15397 F:      drivers/usb/gadget/udc/pxa2*
15398 F:      include/sound/pxa2xx-lib.h
15399 F:      sound/arm/pxa*
15400 F:      sound/soc/pxa/
15401
15402 QAT DRIVER
15403 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15404 L:      qat-linux@intel.com
15405 S:      Supported
15406 F:      drivers/crypto/qat/
15407
15408 QCOM AUDIO (ASoC) DRIVERS
15409 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15410 M:      Banajit Goswami <bgoswami@codeaurora.org>
15411 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15412 S:      Supported
15413 F:      sound/soc/codecs/lpass-va-macro.c
15414 F:      sound/soc/codecs/lpass-wsa-macro.*
15415 F:      sound/soc/codecs/msm8916-wcd-analog.c
15416 F:      sound/soc/codecs/msm8916-wcd-digital.c
15417 F:      sound/soc/codecs/wcd9335.*
15418 F:      sound/soc/codecs/wcd934x.c
15419 F:      sound/soc/codecs/wcd-clsh-v2.*
15420 F:      sound/soc/codecs/wsa881x.c
15421 F:      sound/soc/qcom/
15422
15423 QCOM IPA DRIVER
15424 M:      Alex Elder <elder@kernel.org>
15425 L:      netdev@vger.kernel.org
15426 S:      Supported
15427 F:      drivers/net/ipa/
15428
15429 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15430 M:      Gabriel Somlo <somlo@cmu.edu>
15431 M:      "Michael S. Tsirkin" <mst@redhat.com>
15432 L:      qemu-devel@nongnu.org
15433 S:      Maintained
15434 F:      drivers/firmware/qemu_fw_cfg.c
15435 F:      include/uapi/linux/qemu_fw_cfg.h
15436
15437 QIB DRIVER
15438 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15439 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15440 L:      linux-rdma@vger.kernel.org
15441 S:      Supported
15442 F:      drivers/infiniband/hw/qib/
15443
15444 QLOGIC QL41xxx FCOE DRIVER
15445 M:      Saurav Kashyap <skashyap@marvell.com>
15446 M:      Javed Hasan <jhasan@marvell.com>
15447 M:      GR-QLogic-Storage-Upstream@marvell.com
15448 L:      linux-scsi@vger.kernel.org
15449 S:      Supported
15450 F:      drivers/scsi/qedf/
15451
15452 QLOGIC QL41xxx ISCSI DRIVER
15453 M:      Nilesh Javali <njavali@marvell.com>
15454 M:      Manish Rangankar <mrangankar@marvell.com>
15455 M:      GR-QLogic-Storage-Upstream@marvell.com
15456 L:      linux-scsi@vger.kernel.org
15457 S:      Supported
15458 F:      drivers/scsi/qedi/
15459
15460 QLOGIC QL4xxx ETHERNET DRIVER
15461 M:      Ariel Elior <aelior@marvell.com>
15462 M:      GR-everest-linux-l2@marvell.com
15463 L:      netdev@vger.kernel.org
15464 S:      Supported
15465 F:      drivers/net/ethernet/qlogic/qed/
15466 F:      drivers/net/ethernet/qlogic/qede/
15467 F:      include/linux/qed/
15468
15469 QLOGIC QL4xxx RDMA DRIVER
15470 M:      Michal Kalderon <mkalderon@marvell.com>
15471 M:      Ariel Elior <aelior@marvell.com>
15472 L:      linux-rdma@vger.kernel.org
15473 S:      Supported
15474 F:      drivers/infiniband/hw/qedr/
15475 F:      include/uapi/rdma/qedr-abi.h
15476
15477 QLOGIC QLA1280 SCSI DRIVER
15478 M:      Michael Reed <mdr@sgi.com>
15479 L:      linux-scsi@vger.kernel.org
15480 S:      Maintained
15481 F:      drivers/scsi/qla1280.[ch]
15482
15483 QLOGIC QLA2XXX FC-SCSI DRIVER
15484 M:      Nilesh Javali <njavali@marvell.com>
15485 M:      GR-QLogic-Storage-Upstream@marvell.com
15486 L:      linux-scsi@vger.kernel.org
15487 S:      Supported
15488 F:      drivers/scsi/qla2xxx/
15489
15490 QLOGIC QLA3XXX NETWORK DRIVER
15491 M:      GR-Linux-NIC-Dev@marvell.com
15492 L:      netdev@vger.kernel.org
15493 S:      Supported
15494 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15495
15496 QLOGIC QLA4XXX iSCSI DRIVER
15497 M:      Nilesh Javali <njavali@marvell.com>
15498 M:      Manish Rangankar <mrangankar@marvell.com>
15499 M:      GR-QLogic-Storage-Upstream@marvell.com
15500 L:      linux-scsi@vger.kernel.org
15501 S:      Supported
15502 F:      drivers/scsi/qla4xxx/
15503
15504 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15505 M:      Shahed Shaikh <shshaikh@marvell.com>
15506 M:      Manish Chopra <manishc@marvell.com>
15507 M:      GR-Linux-NIC-Dev@marvell.com
15508 L:      netdev@vger.kernel.org
15509 S:      Supported
15510 F:      drivers/net/ethernet/qlogic/qlcnic/
15511
15512 QLOGIC QLGE 10Gb ETHERNET DRIVER
15513 M:      Manish Chopra <manishc@marvell.com>
15514 M:      GR-Linux-NIC-Dev@marvell.com
15515 M:      Coiby Xu <coiby.xu@gmail.com>
15516 L:      netdev@vger.kernel.org
15517 S:      Supported
15518 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15519 F:      drivers/staging/qlge/
15520
15521 QM1D1B0004 MEDIA DRIVER
15522 M:      Akihiro Tsukada <tskd08@gmail.com>
15523 L:      linux-media@vger.kernel.org
15524 S:      Odd Fixes
15525 F:      drivers/media/tuners/qm1d1b0004*
15526
15527 QM1D1C0042 MEDIA DRIVER
15528 M:      Akihiro Tsukada <tskd08@gmail.com>
15529 L:      linux-media@vger.kernel.org
15530 S:      Odd Fixes
15531 F:      drivers/media/tuners/qm1d1c0042*
15532
15533 QNX4 FILESYSTEM
15534 M:      Anders Larsen <al@alarsen.net>
15535 S:      Maintained
15536 W:      http://www.alarsen.net/linux/qnx4fs/
15537 F:      fs/qnx4/
15538 F:      include/uapi/linux/qnx4_fs.h
15539 F:      include/uapi/linux/qnxtypes.h
15540
15541 QORIQ DPAA2 FSL-MC BUS DRIVER
15542 M:      Stuart Yoder <stuyoder@gmail.com>
15543 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15544 L:      linux-kernel@vger.kernel.org
15545 S:      Maintained
15546 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15547 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15548 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15549 F:      drivers/bus/fsl-mc/
15550 F:      include/uapi/linux/fsl_mc.h
15551
15552 QT1010 MEDIA DRIVER
15553 M:      Antti Palosaari <crope@iki.fi>
15554 L:      linux-media@vger.kernel.org
15555 S:      Maintained
15556 W:      https://linuxtv.org
15557 W:      http://palosaari.fi/linux/
15558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15559 T:      git git://linuxtv.org/anttip/media_tree.git
15560 F:      drivers/media/tuners/qt1010*
15561
15562 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15563 M:      Kalle Valo <kvalo@codeaurora.org>
15564 L:      ath10k@lists.infradead.org
15565 S:      Supported
15566 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15568 F:      drivers/net/wireless/ath/ath10k/
15569
15570 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15571 M:      Kalle Valo <kvalo@codeaurora.org>
15572 L:      ath11k@lists.infradead.org
15573 S:      Supported
15574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15575 F:      drivers/net/wireless/ath/ath11k/
15576
15577 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15578 M:      ath9k-devel@qca.qualcomm.com
15579 L:      linux-wireless@vger.kernel.org
15580 S:      Supported
15581 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15582 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
15583 F:      drivers/net/wireless/ath/ath9k/
15584
15585 QUALCOMM CAMERA SUBSYSTEM DRIVER
15586 M:      Robert Foss <robert.foss@linaro.org>
15587 M:      Todor Tomov <todor.too@gmail.com>
15588 L:      linux-media@vger.kernel.org
15589 S:      Maintained
15590 F:      Documentation/admin-guide/media/qcom_camss.rst
15591 F:      Documentation/devicetree/bindings/media/*camss*
15592 F:      drivers/media/platform/qcom/camss/
15593
15594 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15595 M:      Niklas Cassel <nks@flawful.org>
15596 L:      linux-pm@vger.kernel.org
15597 L:      linux-arm-msm@vger.kernel.org
15598 S:      Maintained
15599 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15600 F:      drivers/soc/qcom/cpr.c
15601
15602 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15603 M:      Ilia Lin <ilia.lin@kernel.org>
15604 L:      linux-pm@vger.kernel.org
15605 S:      Maintained
15606 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15607 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15608
15609 QUALCOMM CRYPTO DRIVERS
15610 M:      Thara Gopinath <thara.gopinath@linaro.org>
15611 L:      linux-crypto@vger.kernel.org
15612 L:      linux-arm-msm@vger.kernel.org
15613 S:      Maintained
15614 F:      drivers/crypto/qce/
15615
15616 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15617 M:      Timur Tabi <timur@kernel.org>
15618 L:      netdev@vger.kernel.org
15619 S:      Maintained
15620 F:      drivers/net/ethernet/qualcomm/emac/
15621
15622 QUALCOMM ETHQOS ETHERNET DRIVER
15623 M:      Vinod Koul <vkoul@kernel.org>
15624 L:      netdev@vger.kernel.org
15625 S:      Maintained
15626 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15627 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15628
15629 QUALCOMM GENERIC INTERFACE I2C DRIVER
15630 M:      Akash Asthana <akashast@codeaurora.org>
15631 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15632 L:      linux-i2c@vger.kernel.org
15633 L:      linux-arm-msm@vger.kernel.org
15634 S:      Supported
15635 F:      drivers/i2c/busses/i2c-qcom-geni.c
15636
15637 QUALCOMM HEXAGON ARCHITECTURE
15638 M:      Brian Cain <bcain@codeaurora.org>
15639 L:      linux-hexagon@vger.kernel.org
15640 S:      Supported
15641 F:      arch/hexagon/
15642
15643 QUALCOMM HIDMA DRIVER
15644 M:      Sinan Kaya <okaya@kernel.org>
15645 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15646 L:      linux-arm-msm@vger.kernel.org
15647 L:      dmaengine@vger.kernel.org
15648 S:      Supported
15649 F:      drivers/dma/qcom/hidma*
15650
15651 QUALCOMM I2C CCI DRIVER
15652 M:      Loic Poulain <loic.poulain@linaro.org>
15653 M:      Robert Foss <robert.foss@linaro.org>
15654 L:      linux-i2c@vger.kernel.org
15655 L:      linux-arm-msm@vger.kernel.org
15656 S:      Maintained
15657 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15658 F:      drivers/i2c/busses/i2c-qcom-cci.c
15659
15660 QUALCOMM IOMMU
15661 M:      Rob Clark <robdclark@gmail.com>
15662 L:      iommu@lists.linux-foundation.org
15663 L:      linux-arm-msm@vger.kernel.org
15664 S:      Maintained
15665 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15666
15667 QUALCOMM IPC ROUTER (QRTR) DRIVER
15668 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15669 L:      linux-arm-msm@vger.kernel.org
15670 S:      Maintained
15671 F:      include/trace/events/qrtr.h
15672 F:      include/uapi/linux/qrtr.h
15673 F:      net/qrtr/
15674
15675 QUALCOMM IPCC MAILBOX DRIVER
15676 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15677 L:      linux-arm-msm@vger.kernel.org
15678 S:      Supported
15679 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15680 F:      drivers/mailbox/qcom-ipcc.c
15681 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15682
15683 QUALCOMM IPQ4019 USB PHY DRIVER
15684 M:      Robert Marko <robert.marko@sartura.hr>
15685 M:      Luka Perkov <luka.perkov@sartura.hr>
15686 L:      linux-arm-msm@vger.kernel.org
15687 S:      Maintained
15688 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15689 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15690
15691 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15692 M:      Robert Marko <robert.marko@sartura.hr>
15693 M:      Luka Perkov <luka.perkov@sartura.hr>
15694 L:      linux-arm-msm@vger.kernel.org
15695 S:      Maintained
15696 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15697 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15698
15699 QUALCOMM RMNET DRIVER
15700 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15701 M:      Sean Tranchetti <stranche@codeaurora.org>
15702 L:      netdev@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15705 F:      drivers/net/ethernet/qualcomm/rmnet/
15706 F:      include/linux/if_rmnet.h
15707
15708 QUALCOMM TSENS THERMAL DRIVER
15709 M:      Amit Kucheria <amitk@kernel.org>
15710 M:      Thara Gopinath <thara.gopinath@linaro.org>
15711 L:      linux-pm@vger.kernel.org
15712 L:      linux-arm-msm@vger.kernel.org
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15715 F:      drivers/thermal/qcom/
15716
15717 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15718 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15719 L:      linux-media@vger.kernel.org
15720 L:      linux-arm-msm@vger.kernel.org
15721 S:      Maintained
15722 T:      git git://linuxtv.org/media_tree.git
15723 F:      Documentation/devicetree/bindings/media/*venus*
15724 F:      drivers/media/platform/qcom/venus/
15725
15726 QUALCOMM WCN36XX WIRELESS DRIVER
15727 M:      Kalle Valo <kvalo@codeaurora.org>
15728 L:      wcn36xx@lists.infradead.org
15729 S:      Supported
15730 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15731 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15732 F:      drivers/net/wireless/ath/wcn36xx/
15733
15734 QUANTENNA QTNFMAC WIRELESS DRIVER
15735 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15736 R:      Sergey Matyukevich <geomatsi@gmail.com>
15737 L:      linux-wireless@vger.kernel.org
15738 S:      Maintained
15739 F:      drivers/net/wireless/quantenna
15740
15741 RADEON and AMDGPU DRM DRIVERS
15742 M:      Alex Deucher <alexander.deucher@amd.com>
15743 M:      Christian König <christian.koenig@amd.com>
15744 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15745 L:      amd-gfx@lists.freedesktop.org
15746 S:      Supported
15747 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15748 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15749 C:      irc://irc.oftc.net/radeon
15750 F:      drivers/gpu/drm/amd/
15751 F:      drivers/gpu/drm/radeon/
15752 F:      include/uapi/drm/amdgpu_drm.h
15753 F:      include/uapi/drm/radeon_drm.h
15754
15755 RADEON FRAMEBUFFER DISPLAY DRIVER
15756 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15757 L:      linux-fbdev@vger.kernel.org
15758 S:      Maintained
15759 F:      drivers/video/fbdev/aty/radeon*
15760 F:      include/uapi/linux/radeonfb.h
15761
15762 RADIOSHARK RADIO DRIVER
15763 M:      Hans Verkuil <hverkuil@xs4all.nl>
15764 L:      linux-media@vger.kernel.org
15765 S:      Maintained
15766 T:      git git://linuxtv.org/media_tree.git
15767 F:      drivers/media/radio/radio-shark.c
15768
15769 RADIOSHARK2 RADIO DRIVER
15770 M:      Hans Verkuil <hverkuil@xs4all.nl>
15771 L:      linux-media@vger.kernel.org
15772 S:      Maintained
15773 T:      git git://linuxtv.org/media_tree.git
15774 F:      drivers/media/radio/radio-shark2.c
15775 F:      drivers/media/radio/radio-tea5777.c
15776
15777 RADOS BLOCK DEVICE (RBD)
15778 M:      Ilya Dryomov <idryomov@gmail.com>
15779 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15780 L:      ceph-devel@vger.kernel.org
15781 S:      Supported
15782 W:      http://ceph.com/
15783 T:      git git://github.com/ceph/ceph-client.git
15784 F:      Documentation/ABI/testing/sysfs-bus-rbd
15785 F:      drivers/block/rbd.c
15786 F:      drivers/block/rbd_types.h
15787
15788 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15789 M:      Paul Mackerras <paulus@samba.org>
15790 L:      linux-fbdev@vger.kernel.org
15791 S:      Maintained
15792 F:      drivers/video/fbdev/aty/aty128fb.c
15793
15794 RAINSHADOW-CEC DRIVER
15795 M:      Hans Verkuil <hverkuil@xs4all.nl>
15796 L:      linux-media@vger.kernel.org
15797 S:      Maintained
15798 T:      git git://linuxtv.org/media_tree.git
15799 F:      drivers/media/cec/usb/rainshadow/
15800
15801 RALINK MIPS ARCHITECTURE
15802 M:      John Crispin <john@phrozen.org>
15803 L:      linux-mips@vger.kernel.org
15804 S:      Maintained
15805 F:      arch/mips/ralink
15806
15807 RALINK RT2X00 WIRELESS LAN DRIVER
15808 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15809 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15810 L:      linux-wireless@vger.kernel.org
15811 S:      Maintained
15812 F:      drivers/net/wireless/ralink/rt2x00/
15813
15814 RAMDISK RAM BLOCK DEVICE DRIVER
15815 M:      Jens Axboe <axboe@kernel.dk>
15816 S:      Maintained
15817 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15818 F:      drivers/block/brd.c
15819
15820 RANCHU VIRTUAL BOARD FOR MIPS
15821 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15822 L:      linux-mips@vger.kernel.org
15823 S:      Supported
15824 F:      arch/mips/configs/generic/board-ranchu.config
15825 F:      arch/mips/generic/board-ranchu.c
15826
15827 RANDOM NUMBER DRIVER
15828 M:      "Theodore Ts'o" <tytso@mit.edu>
15829 S:      Maintained
15830 F:      drivers/char/random.c
15831
15832 RAPIDIO SUBSYSTEM
15833 M:      Matt Porter <mporter@kernel.crashing.org>
15834 M:      Alexandre Bounine <alex.bou9@gmail.com>
15835 S:      Maintained
15836 F:      drivers/rapidio/
15837
15838 RAS INFRASTRUCTURE
15839 M:      Tony Luck <tony.luck@intel.com>
15840 M:      Borislav Petkov <bp@alien8.de>
15841 L:      linux-edac@vger.kernel.org
15842 S:      Maintained
15843 F:      Documentation/admin-guide/ras.rst
15844 F:      drivers/ras/
15845 F:      include/linux/ras.h
15846 F:      include/ras/ras_event.h
15847
15848 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15849 L:      linux-wireless@vger.kernel.org
15850 S:      Orphan
15851 F:      drivers/net/wireless/ray*
15852
15853 RC-CORE / LIRC FRAMEWORK
15854 M:      Sean Young <sean@mess.org>
15855 L:      linux-media@vger.kernel.org
15856 S:      Maintained
15857 W:      http://linuxtv.org
15858 T:      git git://linuxtv.org/media_tree.git
15859 F:      Documentation/driver-api/media/rc-core.rst
15860 F:      Documentation/userspace-api/media/rc/
15861 F:      drivers/media/rc/
15862 F:      include/media/rc-map.h
15863 F:      include/media/rc-core.h
15864 F:      include/uapi/linux/lirc.h
15865
15866 RCMM REMOTE CONTROLS DECODER
15867 M:      Patrick Lerda <patrick9876@free.fr>
15868 S:      Maintained
15869 F:      drivers/media/rc/ir-rcmm-decoder.c
15870
15871 RCUTORTURE TEST FRAMEWORK
15872 M:      "Paul E. McKenney" <paulmck@kernel.org>
15873 M:      Josh Triplett <josh@joshtriplett.org>
15874 R:      Steven Rostedt <rostedt@goodmis.org>
15875 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15876 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15877 L:      rcu@vger.kernel.org
15878 S:      Supported
15879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15880 F:      tools/testing/selftests/rcutorture
15881
15882 RDACM20 Camera Sensor
15883 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15884 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15885 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15886 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15887 L:      linux-media@vger.kernel.org
15888 S:      Maintained
15889 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15890 F:      drivers/media/i2c/max9271.c
15891 F:      drivers/media/i2c/max9271.h
15892 F:      drivers/media/i2c/rdacm20.c
15893
15894 RDACM21 Camera Sensor
15895 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15896 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15897 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15898 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15899 L:      linux-media@vger.kernel.org
15900 S:      Maintained
15901 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15902 F:      drivers/media/i2c/max9271.c
15903 F:      drivers/media/i2c/max9271.h
15904 F:      drivers/media/i2c/rdacm21.c
15905
15906 RDC R-321X SoC
15907 M:      Florian Fainelli <florian@openwrt.org>
15908 S:      Maintained
15909
15910 RDC R6040 FAST ETHERNET DRIVER
15911 M:      Florian Fainelli <f.fainelli@gmail.com>
15912 L:      netdev@vger.kernel.org
15913 S:      Maintained
15914 F:      drivers/net/ethernet/rdc/r6040.c
15915
15916 RDMAVT - RDMA verbs software
15917 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15918 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15919 L:      linux-rdma@vger.kernel.org
15920 S:      Supported
15921 F:      drivers/infiniband/sw/rdmavt
15922
15923 RDS - RELIABLE DATAGRAM SOCKETS
15924 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15925 L:      netdev@vger.kernel.org
15926 L:      linux-rdma@vger.kernel.org
15927 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15928 S:      Supported
15929 W:      https://oss.oracle.com/projects/rds/
15930 F:      Documentation/networking/rds.rst
15931 F:      net/rds/
15932
15933 RDT - RESOURCE ALLOCATION
15934 M:      Fenghua Yu <fenghua.yu@intel.com>
15935 M:      Reinette Chatre <reinette.chatre@intel.com>
15936 L:      linux-kernel@vger.kernel.org
15937 S:      Supported
15938 F:      Documentation/x86/resctrl*
15939 F:      arch/x86/include/asm/resctrl.h
15940 F:      arch/x86/kernel/cpu/resctrl/
15941 F:      tools/testing/selftests/resctrl/
15942
15943 READ-COPY UPDATE (RCU)
15944 M:      "Paul E. McKenney" <paulmck@kernel.org>
15945 M:      Josh Triplett <josh@joshtriplett.org>
15946 R:      Steven Rostedt <rostedt@goodmis.org>
15947 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15948 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15949 R:      Joel Fernandes <joel@joelfernandes.org>
15950 L:      rcu@vger.kernel.org
15951 S:      Supported
15952 W:      http://www.rdrop.com/users/paulmck/RCU/
15953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15954 F:      Documentation/RCU/
15955 F:      include/linux/rcu*
15956 F:      kernel/rcu/
15957 X:      Documentation/RCU/torture.rst
15958 X:      include/linux/srcu*.h
15959 X:      kernel/rcu/srcu*.c
15960
15961 REAL TIME CLOCK (RTC) SUBSYSTEM
15962 M:      Alessandro Zummo <a.zummo@towertech.it>
15963 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15964 L:      linux-rtc@vger.kernel.org
15965 S:      Maintained
15966 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15968 F:      Documentation/admin-guide/rtc.rst
15969 F:      Documentation/devicetree/bindings/rtc/
15970 F:      drivers/rtc/
15971 F:      include/linux/platform_data/rtc-*
15972 F:      include/linux/rtc.h
15973 F:      include/linux/rtc/
15974 F:      include/uapi/linux/rtc.h
15975 F:      tools/testing/selftests/rtc/
15976
15977 REALTEK AUDIO CODECS
15978 M:      Oder Chiou <oder_chiou@realtek.com>
15979 S:      Maintained
15980 F:      include/sound/rt*.h
15981 F:      sound/soc/codecs/rt*
15982
15983 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15984 M:      Linus Walleij <linus.walleij@linaro.org>
15985 S:      Maintained
15986 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15987 F:      drivers/net/dsa/realtek-smi*
15988 F:      drivers/net/dsa/rtl83*
15989
15990 REALTEK WIRELESS DRIVER (rtlwifi family)
15991 M:      Ping-Ke Shih <pkshih@realtek.com>
15992 L:      linux-wireless@vger.kernel.org
15993 S:      Maintained
15994 W:      https://wireless.wiki.kernel.org/
15995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15996 F:      drivers/net/wireless/realtek/rtlwifi/
15997
15998 REALTEK WIRELESS DRIVER (rtw88)
15999 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16000 L:      linux-wireless@vger.kernel.org
16001 S:      Maintained
16002 F:      drivers/net/wireless/realtek/rtw88/
16003
16004 REALTEK WIRELESS DRIVER (rtw89)
16005 M:      Ping-Ke Shih <pkshih@realtek.com>
16006 L:      linux-wireless@vger.kernel.org
16007 S:      Maintained
16008 F:      drivers/net/wireless/realtek/rtw89/
16009
16010 REDPINE WIRELESS DRIVER
16011 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16012 M:      Siva Rebbagondla <siva8118@gmail.com>
16013 L:      linux-wireless@vger.kernel.org
16014 S:      Maintained
16015 F:      drivers/net/wireless/rsi/
16016
16017 REGISTER MAP ABSTRACTION
16018 M:      Mark Brown <broonie@kernel.org>
16019 L:      linux-kernel@vger.kernel.org
16020 S:      Supported
16021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16022 F:      Documentation/devicetree/bindings/regmap/
16023 F:      drivers/base/regmap/
16024 F:      include/linux/regmap.h
16025
16026 REISERFS FILE SYSTEM
16027 L:      reiserfs-devel@vger.kernel.org
16028 S:      Supported
16029 F:      fs/reiserfs/
16030
16031 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16032 M:      Ohad Ben-Cohen <ohad@wizery.com>
16033 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16034 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16035 L:      linux-remoteproc@vger.kernel.org
16036 S:      Maintained
16037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
16038 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16039 F:      Documentation/devicetree/bindings/remoteproc/
16040 F:      Documentation/staging/remoteproc.rst
16041 F:      drivers/remoteproc/
16042 F:      include/linux/remoteproc.h
16043 F:      include/linux/remoteproc/
16044
16045 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16046 M:      Ohad Ben-Cohen <ohad@wizery.com>
16047 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16048 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16049 L:      linux-remoteproc@vger.kernel.org
16050 S:      Maintained
16051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
16052 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16053 F:      Documentation/staging/rpmsg.rst
16054 F:      drivers/rpmsg/
16055 F:      include/linux/rpmsg.h
16056 F:      include/linux/rpmsg/
16057 F:      include/uapi/linux/rpmsg.h
16058 F:      samples/rpmsg/
16059
16060 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16061 M:      Stephan Gerhold <stephan@gerhold.net>
16062 L:      netdev@vger.kernel.org
16063 L:      linux-remoteproc@vger.kernel.org
16064 S:      Maintained
16065 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16066
16067 RENESAS CLOCK DRIVERS
16068 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16069 L:      linux-renesas-soc@vger.kernel.org
16070 S:      Supported
16071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16072 F:      Documentation/devicetree/bindings/clock/renesas,*
16073 F:      drivers/clk/renesas/
16074
16075 RENESAS EMEV2 I2C DRIVER
16076 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16077 L:      linux-renesas-soc@vger.kernel.org
16078 S:      Supported
16079 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16080 F:      drivers/i2c/busses/i2c-emev2.c
16081
16082 RENESAS ETHERNET DRIVERS
16083 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16084 L:      netdev@vger.kernel.org
16085 L:      linux-renesas-soc@vger.kernel.org
16086 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16087 F:      drivers/net/ethernet/renesas/
16088 F:      include/linux/sh_eth.h
16089
16090 RENESAS R-CAR GYROADC DRIVER
16091 M:      Marek Vasut <marek.vasut@gmail.com>
16092 L:      linux-iio@vger.kernel.org
16093 S:      Supported
16094 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16095 F:      drivers/iio/adc/rcar-gyroadc.c
16096
16097 RENESAS R-CAR I2C DRIVERS
16098 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16099 L:      linux-renesas-soc@vger.kernel.org
16100 S:      Supported
16101 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16102 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16103 F:      drivers/i2c/busses/i2c-rcar.c
16104 F:      drivers/i2c/busses/i2c-sh_mobile.c
16105
16106 RENESAS R-CAR THERMAL DRIVERS
16107 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16108 L:      linux-renesas-soc@vger.kernel.org
16109 S:      Supported
16110 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16111 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16112 F:      drivers/thermal/rcar_gen3_thermal.c
16113 F:      drivers/thermal/rcar_thermal.c
16114
16115 RENESAS RIIC DRIVER
16116 M:      Chris Brandt <chris.brandt@renesas.com>
16117 L:      linux-renesas-soc@vger.kernel.org
16118 S:      Supported
16119 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16120 F:      drivers/i2c/busses/i2c-riic.c
16121
16122 RENESAS USB PHY DRIVER
16123 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16124 L:      linux-renesas-soc@vger.kernel.org
16125 S:      Maintained
16126 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16127
16128 RENESAS RZ/G2L A/D DRIVER
16129 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16130 L:      linux-iio@vger.kernel.org
16131 L:      linux-renesas-soc@vger.kernel.org
16132 S:      Supported
16133 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16134 F:      drivers/iio/adc/rzg2l_adc.c
16135
16136 RESET CONTROLLER FRAMEWORK
16137 M:      Philipp Zabel <p.zabel@pengutronix.de>
16138 S:      Maintained
16139 T:      git git://git.pengutronix.de/git/pza/linux
16140 F:      Documentation/devicetree/bindings/reset/
16141 F:      Documentation/driver-api/reset.rst
16142 F:      drivers/reset/
16143 F:      include/dt-bindings/reset/
16144 F:      include/linux/reset-controller.h
16145 F:      include/linux/reset.h
16146 F:      include/linux/reset/
16147 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16148
16149 RESTARTABLE SEQUENCES SUPPORT
16150 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16151 M:      Peter Zijlstra <peterz@infradead.org>
16152 M:      "Paul E. McKenney" <paulmck@kernel.org>
16153 M:      Boqun Feng <boqun.feng@gmail.com>
16154 L:      linux-kernel@vger.kernel.org
16155 S:      Supported
16156 F:      include/trace/events/rseq.h
16157 F:      include/uapi/linux/rseq.h
16158 F:      kernel/rseq.c
16159 F:      tools/testing/selftests/rseq/
16160
16161 RFKILL
16162 M:      Johannes Berg <johannes@sipsolutions.net>
16163 L:      linux-wireless@vger.kernel.org
16164 S:      Maintained
16165 W:      https://wireless.wiki.kernel.org/
16166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16168 F:      Documentation/ABI/stable/sysfs-class-rfkill
16169 F:      Documentation/driver-api/rfkill.rst
16170 F:      include/linux/rfkill.h
16171 F:      include/uapi/linux/rfkill.h
16172 F:      net/rfkill/
16173
16174 RHASHTABLE
16175 M:      Thomas Graf <tgraf@suug.ch>
16176 M:      Herbert Xu <herbert@gondor.apana.org.au>
16177 L:      netdev@vger.kernel.org
16178 S:      Maintained
16179 F:      include/linux/rhashtable-types.h
16180 F:      include/linux/rhashtable.h
16181 F:      lib/rhashtable.c
16182 F:      lib/test_rhashtable.c
16183
16184 RICOH R5C592 MEMORYSTICK DRIVER
16185 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16186 S:      Maintained
16187 F:      drivers/memstick/host/r592.*
16188
16189 RICOH SMARTMEDIA/XD DRIVER
16190 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16191 S:      Maintained
16192 F:      drivers/mtd/nand/raw/r852.c
16193 F:      drivers/mtd/nand/raw/r852.h
16194
16195 RISC-V ARCHITECTURE
16196 M:      Paul Walmsley <paul.walmsley@sifive.com>
16197 M:      Palmer Dabbelt <palmer@dabbelt.com>
16198 M:      Albert Ou <aou@eecs.berkeley.edu>
16199 L:      linux-riscv@lists.infradead.org
16200 S:      Supported
16201 P:      Documentation/riscv/patch-acceptance.rst
16202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16203 F:      arch/riscv/
16204 N:      riscv
16205 K:      riscv
16206
16207 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16208 M:      Lewis Hanly <lewis.hanly@microchip.com>
16209 L:      linux-riscv@lists.infradead.org
16210 S:      Supported
16211 F:      drivers/mailbox/mailbox-mpfs.c
16212 F:      drivers/soc/microchip/
16213 F:      include/soc/microchip/mpfs.h
16214
16215 RNBD BLOCK DRIVERS
16216 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16217 M:      Jack Wang <jinpu.wang@ionos.com>
16218 L:      linux-block@vger.kernel.org
16219 S:      Maintained
16220 F:      drivers/block/rnbd/
16221
16222 ROCCAT DRIVERS
16223 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16224 S:      Maintained
16225 W:      http://sourceforge.net/projects/roccat/
16226 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16227 F:      drivers/hid/hid-roccat*
16228 F:      include/linux/hid-roccat*
16229
16230 ROCKCHIP ISP V1 DRIVER
16231 M:      Helen Koike <helen.koike@collabora.com>
16232 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16233 L:      linux-media@vger.kernel.org
16234 L:      linux-rockchip@lists.infradead.org
16235 S:      Maintained
16236 F:      Documentation/admin-guide/media/rkisp1.rst
16237 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16238 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16239 F:      drivers/media/platform/rockchip/rkisp1
16240 F:      include/uapi/linux/rkisp1-config.h
16241
16242 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16243 M:      Jacob Chen <jacob-chen@iotwrt.com>
16244 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16245 L:      linux-media@vger.kernel.org
16246 L:      linux-rockchip@lists.infradead.org
16247 S:      Maintained
16248 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16249 F:      drivers/media/platform/rockchip/rga/
16250
16251 ROCKCHIP VIDEO DECODER DRIVER
16252 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16253 L:      linux-media@vger.kernel.org
16254 L:      linux-rockchip@lists.infradead.org
16255 S:      Maintained
16256 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16257 F:      drivers/staging/media/rkvdec/
16258
16259 ROCKER DRIVER
16260 M:      Jiri Pirko <jiri@resnulli.us>
16261 L:      netdev@vger.kernel.org
16262 S:      Supported
16263 F:      drivers/net/ethernet/rocker/
16264
16265 ROCKETPORT EXPRESS/INFINITY DRIVER
16266 M:      Kevin Cernekee <cernekee@gmail.com>
16267 L:      linux-serial@vger.kernel.org
16268 S:      Odd Fixes
16269 F:      drivers/tty/serial/rp2.*
16270
16271 ROHM BD99954 CHARGER IC
16272 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16273 L:      linux-power@fi.rohmeurope.com
16274 S:      Supported
16275 F:      drivers/power/supply/bd99954-charger.c
16276 F:      drivers/power/supply/bd99954-charger.h
16277
16278 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16279 M:      Tomasz Duszynski <tduszyns@gmail.com>
16280 S:      Maintained
16281 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16282 F:      drivers/iio/light/bh1750.c
16283
16284 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16285 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16286 L:      linux-kernel@vger.kernel.org
16287 L:      linux-renesas-soc@vger.kernel.org
16288 S:      Supported
16289 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16290 F:      drivers/gpio/gpio-bd9571mwv.c
16291 F:      drivers/mfd/bd9571mwv.c
16292 F:      drivers/regulator/bd9571mwv-regulator.c
16293 F:      include/linux/mfd/bd9571mwv.h
16294
16295 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16296 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16297 L:      linux-power@fi.rohmeurope.com
16298 S:      Supported
16299 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16300 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16301 F:      drivers/clk/clk-bd718x7.c
16302 F:      drivers/gpio/gpio-bd70528.c
16303 F:      drivers/gpio/gpio-bd71815.c
16304 F:      drivers/gpio/gpio-bd71828.c
16305 F:      drivers/mfd/rohm-bd70528.c
16306 F:      drivers/mfd/rohm-bd71828.c
16307 F:      drivers/mfd/rohm-bd718x7.c
16308 F:      drivers/mfd/rohm-bd9576.c
16309 F:      drivers/power/supply/bd70528-charger.c
16310 F:      drivers/regulator/bd70528-regulator.c
16311 F:      drivers/regulator/bd71815-regulator.c
16312 F:      drivers/regulator/bd71828-regulator.c
16313 F:      drivers/regulator/bd718x7-regulator.c
16314 F:      drivers/regulator/bd9576-regulator.c
16315 F:      drivers/regulator/rohm-regulator.c
16316 F:      drivers/rtc/rtc-bd70528.c
16317 F:      drivers/watchdog/bd70528_wdt.c
16318 F:      drivers/watchdog/bd9576_wdt.c
16319 F:      include/linux/mfd/rohm-bd70528.h
16320 F:      include/linux/mfd/rohm-bd71815.h
16321 F:      include/linux/mfd/rohm-bd71828.h
16322 F:      include/linux/mfd/rohm-bd718x7.h
16323 F:      include/linux/mfd/rohm-bd957x.h
16324 F:      include/linux/mfd/rohm-generic.h
16325 F:      include/linux/mfd/rohm-shared.h
16326
16327 ROSE NETWORK LAYER
16328 M:      Ralf Baechle <ralf@linux-mips.org>
16329 L:      linux-hams@vger.kernel.org
16330 S:      Maintained
16331 W:      http://www.linux-ax25.org/
16332 F:      include/net/rose.h
16333 F:      include/uapi/linux/rose.h
16334 F:      net/rose/
16335
16336 ROTATION DRIVER FOR ALLWINNER A83T
16337 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16338 L:      linux-media@vger.kernel.org
16339 S:      Maintained
16340 T:      git git://linuxtv.org/media_tree.git
16341 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16342 F:      drivers/media/platform/sunxi/sun8i-rotate/
16343
16344 RTL2830 MEDIA DRIVER
16345 M:      Antti Palosaari <crope@iki.fi>
16346 L:      linux-media@vger.kernel.org
16347 S:      Maintained
16348 W:      https://linuxtv.org
16349 W:      http://palosaari.fi/linux/
16350 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16351 T:      git git://linuxtv.org/anttip/media_tree.git
16352 F:      drivers/media/dvb-frontends/rtl2830*
16353
16354 RTL2832 MEDIA DRIVER
16355 M:      Antti Palosaari <crope@iki.fi>
16356 L:      linux-media@vger.kernel.org
16357 S:      Maintained
16358 W:      https://linuxtv.org
16359 W:      http://palosaari.fi/linux/
16360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16361 T:      git git://linuxtv.org/anttip/media_tree.git
16362 F:      drivers/media/dvb-frontends/rtl2832*
16363
16364 RTL2832_SDR MEDIA DRIVER
16365 M:      Antti Palosaari <crope@iki.fi>
16366 L:      linux-media@vger.kernel.org
16367 S:      Maintained
16368 W:      https://linuxtv.org
16369 W:      http://palosaari.fi/linux/
16370 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16371 T:      git git://linuxtv.org/anttip/media_tree.git
16372 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16373
16374 RTL8180 WIRELESS DRIVER
16375 L:      linux-wireless@vger.kernel.org
16376 S:      Orphan
16377 W:      https://wireless.wiki.kernel.org/
16378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16379 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16380
16381 RTL8187 WIRELESS DRIVER
16382 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16383 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16384 M:      Larry Finger <Larry.Finger@lwfinger.net>
16385 L:      linux-wireless@vger.kernel.org
16386 S:      Maintained
16387 W:      https://wireless.wiki.kernel.org/
16388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16389 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16390
16391 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16392 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16393 L:      linux-wireless@vger.kernel.org
16394 S:      Maintained
16395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16396 F:      drivers/net/wireless/realtek/rtl8xxxu/
16397
16398 RTRS TRANSPORT DRIVERS
16399 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16400 M:      Jack Wang <jinpu.wang@ionos.com>
16401 L:      linux-rdma@vger.kernel.org
16402 S:      Maintained
16403 F:      drivers/infiniband/ulp/rtrs/
16404
16405 RXRPC SOCKETS (AF_RXRPC)
16406 M:      David Howells <dhowells@redhat.com>
16407 M:      Marc Dionne <marc.dionne@auristor.com>
16408 L:      linux-afs@lists.infradead.org
16409 S:      Supported
16410 W:      https://www.infradead.org/~dhowells/kafs/
16411 F:      Documentation/networking/rxrpc.rst
16412 F:      include/keys/rxrpc-type.h
16413 F:      include/net/af_rxrpc.h
16414 F:      include/trace/events/rxrpc.h
16415 F:      include/uapi/linux/rxrpc.h
16416 F:      net/rxrpc/
16417
16418 S3 SAVAGE FRAMEBUFFER DRIVER
16419 M:      Antonino Daplas <adaplas@gmail.com>
16420 L:      linux-fbdev@vger.kernel.org
16421 S:      Maintained
16422 F:      drivers/video/fbdev/savage/
16423
16424 S390
16425 M:      Heiko Carstens <hca@linux.ibm.com>
16426 M:      Vasily Gorbik <gor@linux.ibm.com>
16427 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16428 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16429 L:      linux-s390@vger.kernel.org
16430 S:      Supported
16431 W:      http://www.ibm.com/developerworks/linux/linux390/
16432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16433 F:      Documentation/driver-api/s390-drivers.rst
16434 F:      Documentation/s390/
16435 F:      arch/s390/
16436 F:      drivers/s390/
16437
16438 S390 COMMON I/O LAYER
16439 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16440 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16441 L:      linux-s390@vger.kernel.org
16442 S:      Supported
16443 W:      http://www.ibm.com/developerworks/linux/linux390/
16444 F:      drivers/s390/cio/
16445
16446 S390 DASD DRIVER
16447 M:      Stefan Haberland <sth@linux.ibm.com>
16448 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16449 L:      linux-s390@vger.kernel.org
16450 S:      Supported
16451 W:      http://www.ibm.com/developerworks/linux/linux390/
16452 F:      block/partitions/ibm.c
16453 F:      drivers/s390/block/dasd*
16454 F:      include/linux/dasd_mod.h
16455
16456 S390 IOMMU (PCI)
16457 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16458 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16459 L:      linux-s390@vger.kernel.org
16460 S:      Supported
16461 W:      http://www.ibm.com/developerworks/linux/linux390/
16462 F:      drivers/iommu/s390-iommu.c
16463
16464 S390 IUCV NETWORK LAYER
16465 M:      Julian Wiedmann <jwi@linux.ibm.com>
16466 M:      Karsten Graul <kgraul@linux.ibm.com>
16467 L:      linux-s390@vger.kernel.org
16468 L:      netdev@vger.kernel.org
16469 S:      Supported
16470 W:      http://www.ibm.com/developerworks/linux/linux390/
16471 F:      drivers/s390/net/*iucv*
16472 F:      include/net/iucv/
16473 F:      net/iucv/
16474
16475 S390 NETWORK DRIVERS
16476 M:      Julian Wiedmann <jwi@linux.ibm.com>
16477 M:      Karsten Graul <kgraul@linux.ibm.com>
16478 L:      linux-s390@vger.kernel.org
16479 L:      netdev@vger.kernel.org
16480 S:      Supported
16481 W:      http://www.ibm.com/developerworks/linux/linux390/
16482 F:      drivers/s390/net/
16483
16484 S390 PCI SUBSYSTEM
16485 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16486 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16487 L:      linux-s390@vger.kernel.org
16488 S:      Supported
16489 W:      http://www.ibm.com/developerworks/linux/linux390/
16490 F:      arch/s390/pci/
16491 F:      drivers/pci/hotplug/s390_pci_hpc.c
16492 F:      Documentation/s390/pci.rst
16493
16494 S390 VFIO AP DRIVER
16495 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16496 M:      Halil Pasic <pasic@linux.ibm.com>
16497 M:      Jason Herne <jjherne@linux.ibm.com>
16498 L:      linux-s390@vger.kernel.org
16499 S:      Supported
16500 W:      http://www.ibm.com/developerworks/linux/linux390/
16501 F:      Documentation/s390/vfio-ap.rst
16502 F:      drivers/s390/crypto/vfio_ap_drv.c
16503 F:      drivers/s390/crypto/vfio_ap_ops.c
16504 F:      drivers/s390/crypto/vfio_ap_private.h
16505
16506 S390 VFIO-CCW DRIVER
16507 M:      Eric Farman <farman@linux.ibm.com>
16508 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16509 R:      Halil Pasic <pasic@linux.ibm.com>
16510 L:      linux-s390@vger.kernel.org
16511 L:      kvm@vger.kernel.org
16512 S:      Supported
16513 F:      Documentation/s390/vfio-ccw.rst
16514 F:      drivers/s390/cio/vfio_ccw*
16515 F:      include/uapi/linux/vfio_ccw.h
16516
16517 S390 VFIO-PCI DRIVER
16518 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16519 M:      Eric Farman <farman@linux.ibm.com>
16520 L:      linux-s390@vger.kernel.org
16521 L:      kvm@vger.kernel.org
16522 S:      Supported
16523 F:      drivers/vfio/pci/vfio_pci_zdev.c
16524 F:      include/uapi/linux/vfio_zdev.h
16525
16526 S390 ZCRYPT DRIVER
16527 M:      Harald Freudenberger <freude@linux.ibm.com>
16528 L:      linux-s390@vger.kernel.org
16529 S:      Supported
16530 W:      http://www.ibm.com/developerworks/linux/linux390/
16531 F:      drivers/s390/crypto/
16532
16533 S390 ZFCP DRIVER
16534 M:      Steffen Maier <maier@linux.ibm.com>
16535 M:      Benjamin Block <bblock@linux.ibm.com>
16536 L:      linux-s390@vger.kernel.org
16537 S:      Supported
16538 W:      http://www.ibm.com/developerworks/linux/linux390/
16539 F:      drivers/s390/scsi/zfcp_*
16540
16541 S3C ADC BATTERY DRIVER
16542 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16543 L:      linux-samsung-soc@vger.kernel.org
16544 S:      Odd Fixes
16545 F:      drivers/power/supply/s3c_adc_battery.c
16546 F:      include/linux/s3c_adc_battery.h
16547
16548 S3C24XX SD/MMC Driver
16549 M:      Ben Dooks <ben-linux@fluff.org>
16550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16551 S:      Supported
16552 F:      drivers/mmc/host/s3cmci.*
16553
16554 SAA6588 RDS RECEIVER DRIVER
16555 M:      Hans Verkuil <hverkuil@xs4all.nl>
16556 L:      linux-media@vger.kernel.org
16557 S:      Odd Fixes
16558 W:      https://linuxtv.org
16559 T:      git git://linuxtv.org/media_tree.git
16560 F:      drivers/media/i2c/saa6588*
16561
16562 SAA7134 VIDEO4LINUX DRIVER
16563 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16564 L:      linux-media@vger.kernel.org
16565 S:      Odd fixes
16566 W:      https://linuxtv.org
16567 T:      git git://linuxtv.org/media_tree.git
16568 F:      Documentation/driver-api/media/drivers/saa7134*
16569 F:      drivers/media/pci/saa7134/
16570
16571 SAA7146 VIDEO4LINUX-2 DRIVER
16572 M:      Hans Verkuil <hverkuil@xs4all.nl>
16573 L:      linux-media@vger.kernel.org
16574 S:      Maintained
16575 T:      git git://linuxtv.org/media_tree.git
16576 F:      drivers/media/common/saa7146/
16577 F:      drivers/media/pci/saa7146/
16578 F:      include/media/drv-intf/saa7146*
16579
16580 SAFESETID SECURITY MODULE
16581 M:      Micah Morton <mortonm@chromium.org>
16582 S:      Supported
16583 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16584 F:      security/safesetid/
16585
16586 SAMSUNG AUDIO (ASoC) DRIVERS
16587 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16588 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16590 S:      Supported
16591 F:      Documentation/devicetree/bindings/sound/samsung*
16592 F:      sound/soc/samsung/
16593
16594 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16595 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16596 L:      linux-crypto@vger.kernel.org
16597 L:      linux-samsung-soc@vger.kernel.org
16598 S:      Maintained
16599 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16600 F:      drivers/crypto/exynos-rng.c
16601
16602 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16603 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16604 L:      linux-samsung-soc@vger.kernel.org
16605 S:      Maintained
16606 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16607 F:      drivers/char/hw_random/exynos-trng.c
16608
16609 SAMSUNG FRAMEBUFFER DRIVER
16610 M:      Jingoo Han <jingoohan1@gmail.com>
16611 L:      linux-fbdev@vger.kernel.org
16612 S:      Maintained
16613 F:      drivers/video/fbdev/s3c-fb.c
16614
16615 SAMSUNG INTERCONNECT DRIVERS
16616 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16617 M:      Artur Świgoń <a.swigon@samsung.com>
16618 L:      linux-pm@vger.kernel.org
16619 L:      linux-samsung-soc@vger.kernel.org
16620 S:      Supported
16621 F:      drivers/interconnect/samsung/
16622
16623 SAMSUNG LAPTOP DRIVER
16624 M:      Corentin Chary <corentin.chary@gmail.com>
16625 L:      platform-driver-x86@vger.kernel.org
16626 S:      Maintained
16627 F:      drivers/platform/x86/samsung-laptop.c
16628
16629 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16630 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16631 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16632 L:      linux-kernel@vger.kernel.org
16633 L:      linux-samsung-soc@vger.kernel.org
16634 S:      Supported
16635 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
16636 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16637 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
16638 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
16639 F:      drivers/clk/clk-s2mps11.c
16640 F:      drivers/mfd/sec*.c
16641 F:      drivers/regulator/s2m*.c
16642 F:      drivers/regulator/s5m*.c
16643 F:      drivers/rtc/rtc-s5m.c
16644 F:      include/linux/mfd/samsung/
16645
16646 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16647 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16648 L:      linux-media@vger.kernel.org
16649 L:      linux-samsung-soc@vger.kernel.org
16650 S:      Maintained
16651 F:      drivers/media/platform/s3c-camif/
16652 F:      include/media/drv-intf/s3c_camif.h
16653
16654 SAMSUNG S3FWRN5 NFC DRIVER
16655 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16656 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16657 L:      linux-nfc@lists.01.org (subscribers-only)
16658 S:      Maintained
16659 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16660 F:      drivers/nfc/s3fwrn5
16661
16662 SAMSUNG S5C73M3 CAMERA DRIVER
16663 M:      Andrzej Hajda <a.hajda@samsung.com>
16664 L:      linux-media@vger.kernel.org
16665 S:      Supported
16666 F:      drivers/media/i2c/s5c73m3/*
16667
16668 SAMSUNG S5K5BAF CAMERA DRIVER
16669 M:      Andrzej Hajda <a.hajda@samsung.com>
16670 L:      linux-media@vger.kernel.org
16671 S:      Supported
16672 F:      drivers/media/i2c/s5k5baf.c
16673
16674 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16675 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16676 M:      Vladimir Zapolskiy <vz@mleia.com>
16677 L:      linux-crypto@vger.kernel.org
16678 L:      linux-samsung-soc@vger.kernel.org
16679 S:      Maintained
16680 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16681 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16682 F:      drivers/crypto/s5p-sss.c
16683
16684 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16685 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16686 L:      linux-media@vger.kernel.org
16687 S:      Supported
16688 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16689 F:      drivers/media/platform/exynos4-is/
16690
16691 SAMSUNG SOC CLOCK DRIVERS
16692 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16693 M:      Tomasz Figa <tomasz.figa@gmail.com>
16694 M:      Chanwoo Choi <cw00.choi@samsung.com>
16695 L:      linux-samsung-soc@vger.kernel.org
16696 S:      Supported
16697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16698 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16699 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16700 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16701 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16702 F:      drivers/clk/samsung/
16703 F:      include/dt-bindings/clock/exynos*.h
16704 F:      include/dt-bindings/clock/s3c*.h
16705 F:      include/dt-bindings/clock/s5p*.h
16706 F:      include/dt-bindings/clock/samsung,*.h
16707 F:      include/linux/clk/samsung.h
16708 F:      include/linux/platform_data/clk-s3c2410.h
16709
16710 SAMSUNG SPI DRIVERS
16711 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16712 M:      Andi Shyti <andi@etezian.org>
16713 L:      linux-spi@vger.kernel.org
16714 L:      linux-samsung-soc@vger.kernel.org
16715 S:      Maintained
16716 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16717 F:      drivers/spi/spi-s3c*
16718 F:      include/linux/platform_data/spi-s3c64xx.h
16719 F:      include/linux/spi/s3c24xx-fiq.h
16720
16721 SAMSUNG SXGBE DRIVERS
16722 M:      Byungho An <bh74.an@samsung.com>
16723 L:      netdev@vger.kernel.org
16724 S:      Supported
16725 F:      drivers/net/ethernet/samsung/sxgbe/
16726
16727 SAMSUNG THERMAL DRIVER
16728 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16729 L:      linux-pm@vger.kernel.org
16730 L:      linux-samsung-soc@vger.kernel.org
16731 S:      Supported
16732 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16733 F:      drivers/thermal/samsung/
16734
16735 SAMSUNG USB2 PHY DRIVER
16736 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16737 L:      linux-kernel@vger.kernel.org
16738 S:      Supported
16739 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16740 F:      Documentation/driver-api/phy/samsung-usb2.rst
16741 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16742 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16743 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16744 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16745 F:      drivers/phy/samsung/phy-samsung-usb2.c
16746 F:      drivers/phy/samsung/phy-samsung-usb2.h
16747
16748 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16749 M:      Paul Barker <paul.barker@sancloud.com>
16750 R:      Marc Murphy <marc.murphy@sancloud.com>
16751 S:      Supported
16752 F:      arch/arm/boot/dts/am335x-sancloud*
16753
16754 SC1200 WDT DRIVER
16755 M:      Zwane Mwaikambo <zwanem@gmail.com>
16756 S:      Maintained
16757 F:      drivers/watchdog/sc1200wdt.c
16758
16759 SCHEDULER
16760 M:      Ingo Molnar <mingo@redhat.com>
16761 M:      Peter Zijlstra <peterz@infradead.org>
16762 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16763 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16764 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16765 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16766 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16767 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16768 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16769 L:      linux-kernel@vger.kernel.org
16770 S:      Maintained
16771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16772 F:      include/linux/preempt.h
16773 F:      include/linux/sched.h
16774 F:      include/linux/wait.h
16775 F:      include/uapi/linux/sched.h
16776 F:      kernel/sched/
16777
16778 SCR24X CHIP CARD INTERFACE DRIVER
16779 M:      Lubomir Rintel <lkundrak@v3.sk>
16780 S:      Supported
16781 F:      drivers/char/pcmcia/scr24x_cs.c
16782
16783 SCSI RDMA PROTOCOL (SRP) INITIATOR
16784 M:      Bart Van Assche <bvanassche@acm.org>
16785 L:      linux-rdma@vger.kernel.org
16786 S:      Supported
16787 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16788 F:      drivers/infiniband/ulp/srp/
16789 F:      include/scsi/srp.h
16790
16791 SCSI RDMA PROTOCOL (SRP) TARGET
16792 M:      Bart Van Assche <bvanassche@acm.org>
16793 L:      linux-rdma@vger.kernel.org
16794 L:      target-devel@vger.kernel.org
16795 S:      Supported
16796 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16797 F:      drivers/infiniband/ulp/srpt/
16798
16799 SCSI SG DRIVER
16800 M:      Doug Gilbert <dgilbert@interlog.com>
16801 L:      linux-scsi@vger.kernel.org
16802 S:      Maintained
16803 W:      http://sg.danny.cz/sg
16804 F:      Documentation/scsi/scsi-generic.rst
16805 F:      drivers/scsi/sg.c
16806 F:      include/scsi/sg.h
16807
16808 SCSI SUBSYSTEM
16809 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16810 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16811 L:      linux-scsi@vger.kernel.org
16812 S:      Maintained
16813 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16816 F:      Documentation/devicetree/bindings/scsi/
16817 F:      drivers/scsi/
16818 F:      include/scsi/
16819
16820 SCSI TAPE DRIVER
16821 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16822 L:      linux-scsi@vger.kernel.org
16823 S:      Maintained
16824 F:      Documentation/scsi/st.rst
16825 F:      drivers/scsi/st.*
16826 F:      drivers/scsi/st_*.h
16827
16828 SCSI TARGET CORE USER DRIVER
16829 M:      Bodo Stroesser <bostroesser@gmail.com>
16830 L:      linux-scsi@vger.kernel.org
16831 L:      target-devel@vger.kernel.org
16832 S:      Supported
16833 F:      Documentation/target/tcmu-design.rst
16834 F:      drivers/target/target_core_user.c
16835 F:      include/uapi/linux/target_core_user.h
16836
16837 SCSI TARGET SUBSYSTEM
16838 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16839 L:      linux-scsi@vger.kernel.org
16840 L:      target-devel@vger.kernel.org
16841 S:      Supported
16842 W:      http://www.linux-iscsi.org
16843 Q:      https://patchwork.kernel.org/project/target-devel/list/
16844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16845 F:      Documentation/target/
16846 F:      drivers/target/
16847 F:      include/target/
16848
16849 SCTP PROTOCOL
16850 M:      Vlad Yasevich <vyasevich@gmail.com>
16851 M:      Neil Horman <nhorman@tuxdriver.com>
16852 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16853 L:      linux-sctp@vger.kernel.org
16854 S:      Maintained
16855 W:      http://lksctp.sourceforge.net
16856 F:      Documentation/networking/sctp.rst
16857 F:      include/linux/sctp.h
16858 F:      include/net/sctp/
16859 F:      include/uapi/linux/sctp.h
16860 F:      net/sctp/
16861
16862 SCx200 CPU SUPPORT
16863 M:      Jim Cromie <jim.cromie@gmail.com>
16864 S:      Odd Fixes
16865 F:      Documentation/i2c/busses/scx200_acb.rst
16866 F:      arch/x86/platform/scx200/
16867 F:      drivers/i2c/busses/scx200*
16868 F:      drivers/mtd/maps/scx200_docflash.c
16869 F:      drivers/watchdog/scx200_wdt.c
16870 F:      include/linux/scx200.h
16871
16872 SCx200 GPIO DRIVER
16873 M:      Jim Cromie <jim.cromie@gmail.com>
16874 S:      Maintained
16875 F:      drivers/char/scx200_gpio.c
16876 F:      include/linux/scx200_gpio.h
16877
16878 SCx200 HRT CLOCKSOURCE DRIVER
16879 M:      Jim Cromie <jim.cromie@gmail.com>
16880 S:      Maintained
16881 F:      drivers/clocksource/scx200_hrt.c
16882
16883 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16884 M:      Sascha Sommer <saschasommer@freenet.de>
16885 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16886 S:      Maintained
16887 F:      drivers/mmc/host/sdricoh_cs.c
16888
16889 SECO BOARDS CEC DRIVER
16890 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16891 S:      Maintained
16892 F:      drivers/media/cec/platform/seco/seco-cec.c
16893 F:      drivers/media/cec/platform/seco/seco-cec.h
16894
16895 SECURE COMPUTING
16896 M:      Kees Cook <keescook@chromium.org>
16897 R:      Andy Lutomirski <luto@amacapital.net>
16898 R:      Will Drewry <wad@chromium.org>
16899 S:      Supported
16900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16901 F:      Documentation/userspace-api/seccomp_filter.rst
16902 F:      include/linux/seccomp.h
16903 F:      include/uapi/linux/seccomp.h
16904 F:      kernel/seccomp.c
16905 F:      tools/testing/selftests/kselftest_harness.h
16906 F:      tools/testing/selftests/seccomp/*
16907 K:      \bsecure_computing
16908 K:      \bTIF_SECCOMP\b
16909
16910 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16911 M:      Al Cooper <alcooperx@gmail.com>
16912 L:      linux-mmc@vger.kernel.org
16913 L:      bcm-kernel-feedback-list@broadcom.com
16914 S:      Maintained
16915 F:      drivers/mmc/host/sdhci-brcmstb*
16916
16917 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16918 M:      Adrian Hunter <adrian.hunter@intel.com>
16919 L:      linux-mmc@vger.kernel.org
16920 S:      Maintained
16921 F:      drivers/mmc/host/sdhci*
16922
16923 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16924 M:      Eugen Hristev <eugen.hristev@microchip.com>
16925 L:      linux-mmc@vger.kernel.org
16926 S:      Supported
16927 F:      drivers/mmc/host/sdhci-of-at91.c
16928
16929 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16930 M:      Ben Dooks <ben-linux@fluff.org>
16931 M:      Jaehoon Chung <jh80.chung@samsung.com>
16932 L:      linux-mmc@vger.kernel.org
16933 S:      Maintained
16934 F:      drivers/mmc/host/sdhci-s3c*
16935
16936 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16937 M:      Viresh Kumar <vireshk@kernel.org>
16938 L:      linux-mmc@vger.kernel.org
16939 S:      Maintained
16940 F:      drivers/mmc/host/sdhci-spear.c
16941
16942 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16943 M:      Kishon Vijay Abraham I <kishon@ti.com>
16944 L:      linux-mmc@vger.kernel.org
16945 S:      Maintained
16946 F:      drivers/mmc/host/sdhci-omap.c
16947
16948 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16949 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16950 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16951 L:      linux-block@vger.kernel.org
16952 S:      Supported
16953 F:      block/opal_proto.h
16954 F:      block/sed*
16955 F:      include/linux/sed*
16956 F:      include/uapi/linux/sed*
16957
16958 SECURITY CONTACT
16959 M:      Security Officers <security@kernel.org>
16960 S:      Supported
16961 F:      Documentation/admin-guide/security-bugs.rst
16962
16963 SECURITY SUBSYSTEM
16964 M:      James Morris <jmorris@namei.org>
16965 M:      "Serge E. Hallyn" <serge@hallyn.com>
16966 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16967 S:      Supported
16968 W:      http://kernsec.org/
16969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16970 F:      security/
16971 X:      security/selinux/
16972
16973 SELINUX SECURITY MODULE
16974 M:      Paul Moore <paul@paul-moore.com>
16975 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16976 M:      Eric Paris <eparis@parisplace.org>
16977 L:      selinux@vger.kernel.org
16978 S:      Supported
16979 W:      https://selinuxproject.org
16980 W:      https://github.com/SELinuxProject
16981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16982 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16983 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16984 F:      Documentation/admin-guide/LSM/SELinux.rst
16985 F:      include/trace/events/avc.h
16986 F:      include/uapi/linux/selinux_netlink.h
16987 F:      scripts/selinux/
16988 F:      security/selinux/
16989
16990 SENSABLE PHANTOM
16991 M:      Jiri Slaby <jirislaby@kernel.org>
16992 S:      Maintained
16993 F:      drivers/misc/phantom.c
16994 F:      include/uapi/linux/phantom.h
16995
16996 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16997 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16998 S:      Maintained
16999 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17000 F:      drivers/iio/chemical/scd30.h
17001 F:      drivers/iio/chemical/scd30_core.c
17002 F:      drivers/iio/chemical/scd30_i2c.c
17003 F:      drivers/iio/chemical/scd30_serial.c
17004
17005 SENSIRION SGP40 GAS SENSOR DRIVER
17006 M:      Andreas Klinger <ak@it-klinger.de>
17007 S:      Maintained
17008 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17009 F:      drivers/iio/chemical/sgp40.c
17010
17011 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17012 M:      Tomasz Duszynski <tduszyns@gmail.com>
17013 S:      Maintained
17014 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17015 F:      drivers/iio/chemical/sps30.c
17016 F:      drivers/iio/chemical/sps30_i2c.c
17017 F:      drivers/iio/chemical/sps30_serial.c
17018
17019 SERIAL DEVICE BUS
17020 M:      Rob Herring <robh@kernel.org>
17021 L:      linux-serial@vger.kernel.org
17022 S:      Maintained
17023 F:      Documentation/devicetree/bindings/serial/serial.yaml
17024 F:      drivers/tty/serdev/
17025 F:      include/linux/serdev.h
17026
17027 SERIAL DRIVERS
17028 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17029 L:      linux-serial@vger.kernel.org
17030 S:      Maintained
17031 F:      Documentation/devicetree/bindings/serial/
17032 F:      drivers/tty/serial/
17033
17034 SERIAL IR RECEIVER
17035 M:      Sean Young <sean@mess.org>
17036 L:      linux-media@vger.kernel.org
17037 S:      Maintained
17038 F:      drivers/media/rc/serial_ir.c
17039
17040 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17041 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17043 S:      Maintained
17044 F:      Documentation/devicetree/bindings/slimbus/
17045 F:      drivers/slimbus/
17046 F:      include/linux/slimbus.h
17047
17048 SFC NETWORK DRIVER
17049 M:      Edward Cree <ecree.xilinx@gmail.com>
17050 M:      Martin Habets <habetsm.xilinx@gmail.com>
17051 L:      netdev@vger.kernel.org
17052 S:      Supported
17053 F:      drivers/net/ethernet/sfc/
17054
17055 SFF/SFP/SFP+ MODULE SUPPORT
17056 M:      Russell King <linux@armlinux.org.uk>
17057 L:      netdev@vger.kernel.org
17058 S:      Maintained
17059 F:      drivers/net/phy/phylink.c
17060 F:      drivers/net/phy/sfp*
17061 F:      include/linux/mdio/mdio-i2c.h
17062 F:      include/linux/phylink.h
17063 F:      include/linux/sfp.h
17064 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)
17065
17066 SGI GRU DRIVER
17067 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17068 S:      Maintained
17069 F:      drivers/misc/sgi-gru/
17070
17071 SGI XP/XPC/XPNET DRIVER
17072 M:      Robin Holt <robinmholt@gmail.com>
17073 M:      Steve Wahl <steve.wahl@hpe.com>
17074 R:      Mike Travis <mike.travis@hpe.com>
17075 S:      Maintained
17076 F:      drivers/misc/sgi-xp/
17077
17078 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17079 M:      Karsten Graul <kgraul@linux.ibm.com>
17080 L:      linux-s390@vger.kernel.org
17081 S:      Supported
17082 W:      http://www.ibm.com/developerworks/linux/linux390/
17083 F:      net/smc/
17084
17085 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17086 M:      Linus Walleij <linus.walleij@linaro.org>
17087 L:      linux-iio@vger.kernel.org
17088 S:      Maintained
17089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17090 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17091 F:      drivers/iio/light/gp2ap002.c
17092
17093 SHARP RJ54N1CB0C SENSOR DRIVER
17094 M:      Jacopo Mondi <jacopo@jmondi.org>
17095 L:      linux-media@vger.kernel.org
17096 S:      Odd fixes
17097 T:      git git://linuxtv.org/media_tree.git
17098 F:      drivers/media/i2c/rj54n1cb0c.c
17099 F:      include/media/i2c/rj54n1cb0c.h
17100
17101 SH_VOU V4L2 OUTPUT DRIVER
17102 L:      linux-media@vger.kernel.org
17103 S:      Orphan
17104 F:      drivers/media/platform/sh_vou.c
17105 F:      include/media/drv-intf/sh_vou.h
17106
17107 SI2157 MEDIA DRIVER
17108 M:      Antti Palosaari <crope@iki.fi>
17109 L:      linux-media@vger.kernel.org
17110 S:      Maintained
17111 W:      https://linuxtv.org
17112 W:      http://palosaari.fi/linux/
17113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17114 T:      git git://linuxtv.org/anttip/media_tree.git
17115 F:      drivers/media/tuners/si2157*
17116
17117 SI2165 MEDIA DRIVER
17118 M:      Matthias Schwarzott <zzam@gentoo.org>
17119 L:      linux-media@vger.kernel.org
17120 S:      Maintained
17121 W:      https://linuxtv.org
17122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17123 F:      drivers/media/dvb-frontends/si2165*
17124
17125 SI2168 MEDIA DRIVER
17126 M:      Antti Palosaari <crope@iki.fi>
17127 L:      linux-media@vger.kernel.org
17128 S:      Maintained
17129 W:      https://linuxtv.org
17130 W:      http://palosaari.fi/linux/
17131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17132 T:      git git://linuxtv.org/anttip/media_tree.git
17133 F:      drivers/media/dvb-frontends/si2168*
17134
17135 SI470X FM RADIO RECEIVER I2C DRIVER
17136 M:      Hans Verkuil <hverkuil@xs4all.nl>
17137 L:      linux-media@vger.kernel.org
17138 S:      Odd Fixes
17139 W:      https://linuxtv.org
17140 T:      git git://linuxtv.org/media_tree.git
17141 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17142
17143 SI470X FM RADIO RECEIVER USB DRIVER
17144 M:      Hans Verkuil <hverkuil@xs4all.nl>
17145 L:      linux-media@vger.kernel.org
17146 S:      Maintained
17147 W:      https://linuxtv.org
17148 T:      git git://linuxtv.org/media_tree.git
17149 F:      drivers/media/radio/si470x/radio-si470x-common.c
17150 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17151 F:      drivers/media/radio/si470x/radio-si470x.h
17152
17153 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17154 M:      Eduardo Valentin <edubezval@gmail.com>
17155 L:      linux-media@vger.kernel.org
17156 S:      Odd Fixes
17157 W:      https://linuxtv.org
17158 T:      git git://linuxtv.org/media_tree.git
17159 F:      drivers/media/radio/si4713/si4713.?
17160
17161 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17162 M:      Eduardo Valentin <edubezval@gmail.com>
17163 L:      linux-media@vger.kernel.org
17164 S:      Odd Fixes
17165 W:      https://linuxtv.org
17166 T:      git git://linuxtv.org/media_tree.git
17167 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17168
17169 SI4713 FM RADIO TRANSMITTER USB DRIVER
17170 M:      Hans Verkuil <hverkuil@xs4all.nl>
17171 L:      linux-media@vger.kernel.org
17172 S:      Maintained
17173 W:      https://linuxtv.org
17174 T:      git git://linuxtv.org/media_tree.git
17175 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17176
17177 SIANO DVB DRIVER
17178 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17179 L:      linux-media@vger.kernel.org
17180 S:      Odd fixes
17181 W:      https://linuxtv.org
17182 T:      git git://linuxtv.org/media_tree.git
17183 F:      drivers/media/common/siano/
17184 F:      drivers/media/mmc/siano/
17185 F:      drivers/media/usb/siano/
17186 F:      drivers/media/usb/siano/
17187
17188 SIFIVE DRIVERS
17189 M:      Palmer Dabbelt <palmer@dabbelt.com>
17190 M:      Paul Walmsley <paul.walmsley@sifive.com>
17191 L:      linux-riscv@lists.infradead.org
17192 S:      Supported
17193 T:      git git://github.com/sifive/riscv-linux.git
17194 N:      sifive
17195 K:      [^@]sifive
17196
17197 SIFIVE FU540 SYSTEM-ON-CHIP
17198 M:      Paul Walmsley <paul.walmsley@sifive.com>
17199 M:      Palmer Dabbelt <palmer@dabbelt.com>
17200 L:      linux-riscv@lists.infradead.org
17201 S:      Supported
17202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17203 N:      fu540
17204 K:      fu540
17205
17206 SIFIVE PDMA DRIVER
17207 M:      Green Wan <green.wan@sifive.com>
17208 S:      Maintained
17209 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17210 F:      drivers/dma/sf-pdma/
17211
17212 SILEAD TOUCHSCREEN DRIVER
17213 M:      Hans de Goede <hdegoede@redhat.com>
17214 L:      linux-input@vger.kernel.org
17215 L:      platform-driver-x86@vger.kernel.org
17216 S:      Maintained
17217 F:      drivers/input/touchscreen/silead.c
17218 F:      drivers/platform/x86/touchscreen_dmi.c
17219
17220 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17221 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17222 S:      Supported
17223 F:      drivers/staging/wfx/
17224
17225 SILICON MOTION SM712 FRAME BUFFER DRIVER
17226 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17227 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17228 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17229 L:      linux-fbdev@vger.kernel.org
17230 S:      Maintained
17231 F:      Documentation/fb/sm712fb.rst
17232 F:      drivers/video/fbdev/sm712*
17233
17234 SILVACO I3C DUAL-ROLE MASTER
17235 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17236 M:      Conor Culhane <conor.culhane@silvaco.com>
17237 L:      linux-i3c@lists.infradead.org
17238 S:      Maintained
17239 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17240 F:      drivers/i3c/master/svc-i3c-master.c
17241
17242 SIMPLEFB FB DRIVER
17243 M:      Hans de Goede <hdegoede@redhat.com>
17244 L:      linux-fbdev@vger.kernel.org
17245 S:      Maintained
17246 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17247 F:      drivers/video/fbdev/simplefb.c
17248 F:      include/linux/platform_data/simplefb.h
17249
17250 SIMTEC EB110ATX (Chalice CATS)
17251 M:      Simtec Linux Team <linux@simtec.co.uk>
17252 S:      Supported
17253 W:      http://www.simtec.co.uk/products/EB110ATX/
17254
17255 SIMTEC EB2410ITX (BAST)
17256 M:      Simtec Linux Team <linux@simtec.co.uk>
17257 S:      Supported
17258 W:      http://www.simtec.co.uk/products/EB2410ITX/
17259 F:      arch/arm/mach-s3c/bast-ide.c
17260 F:      arch/arm/mach-s3c/bast-irq.c
17261 F:      arch/arm/mach-s3c/mach-bast.c
17262
17263 SIOX
17264 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17265 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17266 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17267 S:      Supported
17268 F:      drivers/gpio/gpio-siox.c
17269 F:      drivers/siox/*
17270 F:      include/trace/events/siox.h
17271
17272 SIPHASH PRF ROUTINES
17273 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17274 S:      Maintained
17275 F:      include/linux/siphash.h
17276 F:      lib/siphash.c
17277 F:      lib/test_siphash.c
17278
17279 SIS 190 ETHERNET DRIVER
17280 M:      Francois Romieu <romieu@fr.zoreil.com>
17281 L:      netdev@vger.kernel.org
17282 S:      Maintained
17283 F:      drivers/net/ethernet/sis/sis190.c
17284
17285 SIS 900/7016 FAST ETHERNET DRIVER
17286 M:      Daniele Venzano <venza@brownhat.org>
17287 L:      netdev@vger.kernel.org
17288 S:      Maintained
17289 W:      http://www.brownhat.org/sis900.html
17290 F:      drivers/net/ethernet/sis/sis900.*
17291
17292 SIS FRAMEBUFFER DRIVER
17293 M:      Thomas Winischhofer <thomas@winischhofer.net>
17294 S:      Maintained
17295 W:      http://www.winischhofer.net/linuxsisvga.shtml
17296 F:      Documentation/fb/sisfb.rst
17297 F:      drivers/video/fbdev/sis/
17298 F:      include/video/sisfb.h
17299
17300 SIS I2C TOUCHSCREEN DRIVER
17301 M:      Mika Penttilä <mika.penttila@nextfour.com>
17302 L:      linux-input@vger.kernel.org
17303 S:      Maintained
17304 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17305 F:      drivers/input/touchscreen/sis_i2c.c
17306
17307 SIS USB2VGA DRIVER
17308 M:      Thomas Winischhofer <thomas@winischhofer.net>
17309 S:      Maintained
17310 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17311 F:      drivers/usb/misc/sisusbvga/
17312
17313 SLAB ALLOCATOR
17314 M:      Christoph Lameter <cl@linux.com>
17315 M:      Pekka Enberg <penberg@kernel.org>
17316 M:      David Rientjes <rientjes@google.com>
17317 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17318 M:      Andrew Morton <akpm@linux-foundation.org>
17319 M:      Vlastimil Babka <vbabka@suse.cz>
17320 L:      linux-mm@kvack.org
17321 S:      Maintained
17322 F:      include/linux/sl?b*.h
17323 F:      mm/sl?b*
17324
17325 SLEEPABLE READ-COPY UPDATE (SRCU)
17326 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17327 M:      "Paul E. McKenney" <paulmck@kernel.org>
17328 M:      Josh Triplett <josh@joshtriplett.org>
17329 R:      Steven Rostedt <rostedt@goodmis.org>
17330 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17331 L:      rcu@vger.kernel.org
17332 S:      Supported
17333 W:      http://www.rdrop.com/users/paulmck/RCU/
17334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17335 F:      include/linux/srcu*.h
17336 F:      kernel/rcu/srcu*.c
17337
17338 SMACK SECURITY MODULE
17339 M:      Casey Schaufler <casey@schaufler-ca.com>
17340 L:      linux-security-module@vger.kernel.org
17341 S:      Maintained
17342 W:      http://schaufler-ca.com
17343 T:      git git://github.com/cschaufler/smack-next
17344 F:      Documentation/admin-guide/LSM/Smack.rst
17345 F:      security/smack/
17346
17347 SMC91x ETHERNET DRIVER
17348 M:      Nicolas Pitre <nico@fluxnic.net>
17349 S:      Odd Fixes
17350 F:      drivers/net/ethernet/smsc/smc91x.*
17351
17352 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17353 M:      Mark Rutland <mark.rutland@arm.com>
17354 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17355 M:      Sudeep Holla <sudeep.holla@arm.com>
17356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17357 S:      Maintained
17358 F:      drivers/firmware/smccc/
17359 F:      include/linux/arm-smccc.h
17360
17361 SMM665 HARDWARE MONITOR DRIVER
17362 M:      Guenter Roeck <linux@roeck-us.net>
17363 L:      linux-hwmon@vger.kernel.org
17364 S:      Maintained
17365 F:      Documentation/hwmon/smm665.rst
17366 F:      drivers/hwmon/smm665.c
17367
17368 SMSC EMC2103 HARDWARE MONITOR DRIVER
17369 M:      Steve Glendinning <steve.glendinning@shawell.net>
17370 L:      linux-hwmon@vger.kernel.org
17371 S:      Maintained
17372 F:      Documentation/hwmon/emc2103.rst
17373 F:      drivers/hwmon/emc2103.c
17374
17375 SMSC SCH5627 HARDWARE MONITOR DRIVER
17376 M:      Hans de Goede <hdegoede@redhat.com>
17377 L:      linux-hwmon@vger.kernel.org
17378 S:      Supported
17379 F:      Documentation/hwmon/sch5627.rst
17380 F:      drivers/hwmon/sch5627.c
17381
17382 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17383 M:      Steve Glendinning <steve.glendinning@shawell.net>
17384 L:      linux-fbdev@vger.kernel.org
17385 S:      Maintained
17386 F:      drivers/video/fbdev/smscufx.c
17387
17388 SMSC47B397 HARDWARE MONITOR DRIVER
17389 M:      Jean Delvare <jdelvare@suse.com>
17390 L:      linux-hwmon@vger.kernel.org
17391 S:      Maintained
17392 F:      Documentation/hwmon/smsc47b397.rst
17393 F:      drivers/hwmon/smsc47b397.c
17394
17395 SMSC911x ETHERNET DRIVER
17396 M:      Steve Glendinning <steve.glendinning@shawell.net>
17397 L:      netdev@vger.kernel.org
17398 S:      Maintained
17399 F:      drivers/net/ethernet/smsc/smsc911x.*
17400 F:      include/linux/smsc911x.h
17401
17402 SMSC9420 PCI ETHERNET DRIVER
17403 M:      Steve Glendinning <steve.glendinning@shawell.net>
17404 L:      netdev@vger.kernel.org
17405 S:      Maintained
17406 F:      drivers/net/ethernet/smsc/smsc9420.*
17407
17408 SOCIONEXT (SNI) AVE NETWORK DRIVER
17409 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17410 L:      netdev@vger.kernel.org
17411 S:      Maintained
17412 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17413 F:      drivers/net/ethernet/socionext/sni_ave.c
17414
17415 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17416 M:      Jassi Brar <jaswinder.singh@linaro.org>
17417 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17418 L:      netdev@vger.kernel.org
17419 S:      Maintained
17420 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17421 F:      drivers/net/ethernet/socionext/netsec.c
17422
17423 SOCIONEXT (SNI) Synquacer SPI DRIVER
17424 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17425 M:      Jassi Brar <jaswinder.singh@linaro.org>
17426 L:      linux-spi@vger.kernel.org
17427 S:      Maintained
17428 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17429 F:      drivers/spi/spi-synquacer.c
17430
17431 SOCIONEXT SYNQUACER I2C DRIVER
17432 M:      Ard Biesheuvel <ardb@kernel.org>
17433 L:      linux-i2c@vger.kernel.org
17434 S:      Maintained
17435 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17436 F:      drivers/i2c/busses/i2c-synquacer.c
17437
17438 SOCIONEXT UNIPHIER SOUND DRIVER
17439 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17440 S:      Orphan
17441 F:      sound/soc/uniphier/
17442
17443 SOEKRIS NET48XX LED SUPPORT
17444 M:      Chris Boot <bootc@bootc.net>
17445 S:      Maintained
17446 F:      drivers/leds/leds-net48xx.c
17447
17448 SOFT-IWARP DRIVER (siw)
17449 M:      Bernard Metzler <bmt@zurich.ibm.com>
17450 L:      linux-rdma@vger.kernel.org
17451 S:      Supported
17452 F:      drivers/infiniband/sw/siw/
17453 F:      include/uapi/rdma/siw-abi.h
17454
17455 SOFT-ROCE DRIVER (rxe)
17456 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17457 L:      linux-rdma@vger.kernel.org
17458 S:      Supported
17459 F:      drivers/infiniband/sw/rxe/
17460 F:      include/uapi/rdma/rdma_user_rxe.h
17461
17462 SOFTLOGIC 6x10 MPEG CODEC
17463 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17464 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17465 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17466 M:      Ismael Luceno <ismael@iodev.co.uk>
17467 L:      linux-media@vger.kernel.org
17468 S:      Supported
17469 F:      drivers/media/pci/solo6x10/
17470
17471 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17472 M:      James Morse <james.morse@arm.com>
17473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17474 S:      Maintained
17475 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17476 F:      drivers/firmware/arm_sdei.c
17477 F:      include/linux/arm_sdei.h
17478 F:      include/uapi/linux/arm_sdei.h
17479
17480 SOFTWARE NODES
17481 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17482 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17483 L:      linux-acpi@vger.kernel.org
17484 S:      Maintained
17485 F:      drivers/base/swnode.c
17486
17487 SOFTWARE RAID (Multiple Disks) SUPPORT
17488 M:      Song Liu <song@kernel.org>
17489 L:      linux-raid@vger.kernel.org
17490 S:      Supported
17491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17492 F:      drivers/md/Kconfig
17493 F:      drivers/md/Makefile
17494 F:      drivers/md/md*
17495 F:      drivers/md/raid*
17496 F:      include/linux/raid/
17497 F:      include/uapi/linux/raid/
17498
17499 SOLIDRUN CLEARFOG SUPPORT
17500 M:      Russell King <linux@armlinux.org.uk>
17501 S:      Maintained
17502 F:      arch/arm/boot/dts/armada-388-clearfog*
17503 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17504
17505 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17506 M:      Russell King <linux@armlinux.org.uk>
17507 S:      Maintained
17508 F:      arch/arm/boot/dts/imx6*-cubox-i*
17509 F:      arch/arm/boot/dts/imx6*-hummingboard*
17510 F:      arch/arm/boot/dts/imx6*-sr-*
17511
17512 SONIC NETWORK DRIVER
17513 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17514 L:      netdev@vger.kernel.org
17515 S:      Maintained
17516 F:      drivers/net/ethernet/natsemi/sonic.*
17517
17518 SONICS SILICON BACKPLANE DRIVER (SSB)
17519 M:      Michael Buesch <m@bues.ch>
17520 L:      linux-wireless@vger.kernel.org
17521 S:      Maintained
17522 F:      drivers/ssb/
17523 F:      include/linux/ssb/
17524
17525 SONY IMX208 SENSOR DRIVER
17526 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17527 L:      linux-media@vger.kernel.org
17528 S:      Maintained
17529 T:      git git://linuxtv.org/media_tree.git
17530 F:      drivers/media/i2c/imx208.c
17531
17532 SONY IMX214 SENSOR DRIVER
17533 M:      Ricardo Ribalda <ribalda@kernel.org>
17534 L:      linux-media@vger.kernel.org
17535 S:      Maintained
17536 T:      git git://linuxtv.org/media_tree.git
17537 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17538 F:      drivers/media/i2c/imx214.c
17539
17540 SONY IMX219 SENSOR DRIVER
17541 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17542 L:      linux-media@vger.kernel.org
17543 S:      Maintained
17544 T:      git git://linuxtv.org/media_tree.git
17545 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17546 F:      drivers/media/i2c/imx219.c
17547
17548 SONY IMX258 SENSOR DRIVER
17549 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17550 L:      linux-media@vger.kernel.org
17551 S:      Maintained
17552 T:      git git://linuxtv.org/media_tree.git
17553 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17554 F:      drivers/media/i2c/imx258.c
17555
17556 SONY IMX274 SENSOR DRIVER
17557 M:      Leon Luo <leonl@leopardimaging.com>
17558 L:      linux-media@vger.kernel.org
17559 S:      Maintained
17560 T:      git git://linuxtv.org/media_tree.git
17561 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17562 F:      drivers/media/i2c/imx274.c
17563
17564 SONY IMX290 SENSOR DRIVER
17565 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17566 L:      linux-media@vger.kernel.org
17567 S:      Maintained
17568 T:      git git://linuxtv.org/media_tree.git
17569 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17570 F:      drivers/media/i2c/imx290.c
17571
17572 SONY IMX319 SENSOR DRIVER
17573 M:      Bingbu Cao <bingbu.cao@intel.com>
17574 L:      linux-media@vger.kernel.org
17575 S:      Maintained
17576 T:      git git://linuxtv.org/media_tree.git
17577 F:      drivers/media/i2c/imx319.c
17578
17579 SONY IMX334 SENSOR DRIVER
17580 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17581 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17582 L:      linux-media@vger.kernel.org
17583 S:      Maintained
17584 T:      git git://linuxtv.org/media_tree.git
17585 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17586 F:      drivers/media/i2c/imx334.c
17587
17588 SONY IMX335 SENSOR DRIVER
17589 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17590 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17591 L:      linux-media@vger.kernel.org
17592 S:      Maintained
17593 T:      git git://linuxtv.org/media_tree.git
17594 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17595 F:      drivers/media/i2c/imx335.c
17596
17597 SONY IMX355 SENSOR DRIVER
17598 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17599 L:      linux-media@vger.kernel.org
17600 S:      Maintained
17601 T:      git git://linuxtv.org/media_tree.git
17602 F:      drivers/media/i2c/imx355.c
17603
17604 SONY IMX412 SENSOR DRIVER
17605 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17606 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17607 L:      linux-media@vger.kernel.org
17608 S:      Maintained
17609 T:      git git://linuxtv.org/media_tree.git
17610 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17611 F:      drivers/media/i2c/imx412.c
17612
17613 SONY MEMORYSTICK SUBSYSTEM
17614 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17615 M:      Alex Dubov <oakad@yahoo.com>
17616 M:      Ulf Hansson <ulf.hansson@linaro.org>
17617 L:      linux-mmc@vger.kernel.org
17618 S:      Maintained
17619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17620 F:      drivers/memstick/
17621 F:      include/linux/memstick.h
17622
17623 SONY VAIO CONTROL DEVICE DRIVER
17624 M:      Mattia Dongili <malattia@linux.it>
17625 L:      platform-driver-x86@vger.kernel.org
17626 S:      Maintained
17627 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17628 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17629 F:      drivers/char/sonypi.c
17630 F:      drivers/platform/x86/sony-laptop.c
17631 F:      include/linux/sony-laptop.h
17632
17633 SOUND
17634 M:      Jaroslav Kysela <perex@perex.cz>
17635 M:      Takashi Iwai <tiwai@suse.com>
17636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17637 S:      Maintained
17638 W:      http://www.alsa-project.org/
17639 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17641 F:      Documentation/sound/
17642 F:      include/sound/
17643 F:      include/uapi/sound/
17644 F:      sound/
17645
17646 SOUND - COMPRESSED AUDIO
17647 M:      Vinod Koul <vkoul@kernel.org>
17648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17649 S:      Supported
17650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17651 F:      Documentation/sound/designs/compress-offload.rst
17652 F:      include/sound/compress_driver.h
17653 F:      include/uapi/sound/compress_*
17654 F:      sound/core/compress_offload.c
17655 F:      sound/soc/soc-compress.c
17656
17657 SOUND - DMAENGINE HELPERS
17658 M:      Lars-Peter Clausen <lars@metafoo.de>
17659 S:      Supported
17660 F:      include/sound/dmaengine_pcm.h
17661 F:      sound/core/pcm_dmaengine.c
17662 F:      sound/soc/soc-generic-dmaengine-pcm.c
17663
17664 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17665 M:      Liam Girdwood <lgirdwood@gmail.com>
17666 M:      Mark Brown <broonie@kernel.org>
17667 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17668 S:      Supported
17669 W:      http://alsa-project.org/main/index.php/ASoC
17670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17671 F:      Documentation/devicetree/bindings/sound/
17672 F:      Documentation/sound/soc/
17673 F:      include/dt-bindings/sound/
17674 F:      include/sound/soc*
17675 F:      sound/soc/
17676
17677 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17678 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17679 M:      Liam Girdwood <lgirdwood@gmail.com>
17680 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17681 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17682 M:      Daniel Baluta <daniel.baluta@nxp.com>
17683 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17684 S:      Supported
17685 W:      https://github.com/thesofproject/linux/
17686 F:      sound/soc/sof/
17687
17688 SOUNDWIRE SUBSYSTEM
17689 M:      Vinod Koul <vkoul@kernel.org>
17690 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17691 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17692 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17693 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17694 S:      Supported
17695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17696 F:      Documentation/driver-api/soundwire/
17697 F:      drivers/soundwire/
17698 F:      include/linux/soundwire/
17699
17700 SP2 MEDIA DRIVER
17701 M:      Olli Salonen <olli.salonen@iki.fi>
17702 L:      linux-media@vger.kernel.org
17703 S:      Maintained
17704 W:      https://linuxtv.org
17705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17706 F:      drivers/media/dvb-frontends/sp2*
17707
17708 SPARC + UltraSPARC (sparc/sparc64)
17709 M:      "David S. Miller" <davem@davemloft.net>
17710 L:      sparclinux@vger.kernel.org
17711 S:      Maintained
17712 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17715 F:      arch/sparc/
17716 F:      drivers/sbus/
17717
17718 SPARC SERIAL DRIVERS
17719 M:      "David S. Miller" <davem@davemloft.net>
17720 L:      sparclinux@vger.kernel.org
17721 S:      Maintained
17722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17724 F:      drivers/tty/serial/suncore.c
17725 F:      drivers/tty/serial/sunhv.c
17726 F:      drivers/tty/serial/sunsab.c
17727 F:      drivers/tty/serial/sunsab.h
17728 F:      drivers/tty/serial/sunsu.c
17729 F:      drivers/tty/serial/sunzilog.c
17730 F:      drivers/tty/serial/sunzilog.h
17731 F:      drivers/tty/vcc.c
17732 F:      include/linux/sunserialcore.h
17733
17734 SPARSE CHECKER
17735 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17736 L:      linux-sparse@vger.kernel.org
17737 S:      Maintained
17738 W:      https://sparse.docs.kernel.org/
17739 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17740 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17741 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17742 F:      include/linux/compiler.h
17743
17744 SPEAKUP CONSOLE SPEECH DRIVER
17745 M:      William Hubbs <w.d.hubbs@gmail.com>
17746 M:      Chris Brannon <chris@the-brannons.com>
17747 M:      Kirk Reiser <kirk@reisers.ca>
17748 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17749 L:      speakup@linux-speakup.org
17750 S:      Odd Fixes
17751 W:      http://www.linux-speakup.org/
17752 W:      https://github.com/linux-speakup/speakup
17753 B:      https://github.com/linux-speakup/speakup/issues
17754 F:      drivers/accessibility/speakup/
17755
17756 SPEAR CLOCK FRAMEWORK SUPPORT
17757 M:      Viresh Kumar <vireshk@kernel.org>
17758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17759 S:      Maintained
17760 W:      http://www.st.com/spear
17761 F:      drivers/clk/spear/
17762
17763 SPEAR PLATFORM SUPPORT
17764 M:      Viresh Kumar <vireshk@kernel.org>
17765 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17767 S:      Maintained
17768 W:      http://www.st.com/spear
17769 F:      arch/arm/boot/dts/spear*
17770 F:      arch/arm/mach-spear/
17771
17772 SPI NOR SUBSYSTEM
17773 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17774 R:      Michael Walle <michael@walle.cc>
17775 R:      Pratyush Yadav <p.yadav@ti.com>
17776 L:      linux-mtd@lists.infradead.org
17777 S:      Maintained
17778 W:      http://www.linux-mtd.infradead.org/
17779 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17780 C:      irc://irc.oftc.net/mtd
17781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17782 F:      drivers/mtd/spi-nor/
17783 F:      include/linux/mtd/spi-nor.h
17784
17785 SPI SUBSYSTEM
17786 M:      Mark Brown <broonie@kernel.org>
17787 L:      linux-spi@vger.kernel.org
17788 S:      Maintained
17789 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17791 F:      Documentation/devicetree/bindings/spi/
17792 F:      Documentation/spi/
17793 F:      drivers/spi/
17794 F:      include/linux/spi/
17795 F:      include/uapi/linux/spi/
17796 F:      tools/spi/
17797
17798 SPIDERNET NETWORK DRIVER for CELL
17799 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17800 M:      Geoff Levand <geoff@infradead.org>
17801 L:      netdev@vger.kernel.org
17802 L:      linuxppc-dev@lists.ozlabs.org
17803 S:      Maintained
17804 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17805 F:      drivers/net/ethernet/toshiba/spider_net*
17806
17807 SPMI SUBSYSTEM
17808 M:      Stephen Boyd <sboyd@kernel.org>
17809 L:      linux-kernel@vger.kernel.org
17810 S:      Maintained
17811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17812 F:      Documentation/devicetree/bindings/spmi/
17813 F:      drivers/spmi/
17814 F:      include/dt-bindings/spmi/spmi.h
17815 F:      include/linux/spmi.h
17816 F:      include/trace/events/spmi.h
17817
17818 SPU FILE SYSTEM
17819 M:      Jeremy Kerr <jk@ozlabs.org>
17820 L:      linuxppc-dev@lists.ozlabs.org
17821 S:      Supported
17822 W:      http://www.ibm.com/developerworks/power/cell/
17823 F:      Documentation/filesystems/spufs/spufs.rst
17824 F:      arch/powerpc/platforms/cell/spufs/
17825
17826 SQUASHFS FILE SYSTEM
17827 M:      Phillip Lougher <phillip@squashfs.org.uk>
17828 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17829 S:      Maintained
17830 W:      http://squashfs.org.uk
17831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17832 F:      Documentation/filesystems/squashfs.rst
17833 F:      fs/squashfs/
17834
17835 SRM (Alpha) environment access
17836 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17837 S:      Maintained
17838 F:      arch/alpha/kernel/srm_env.c
17839
17840 ST LSM6DSx IMU IIO DRIVER
17841 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17842 L:      linux-iio@vger.kernel.org
17843 S:      Maintained
17844 W:      http://www.st.com/
17845 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17846 F:      drivers/iio/imu/st_lsm6dsx/
17847
17848 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17849 M:      Mickael Guene <mickael.guene@st.com>
17850 L:      linux-media@vger.kernel.org
17851 S:      Maintained
17852 T:      git git://linuxtv.org/media_tree.git
17853 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17854 F:      drivers/media/i2c/st-mipid02.c
17855
17856 ST STM32 I2C/SMBUS DRIVER
17857 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17858 M:      Alain Volmat <alain.volmat@foss.st.com>
17859 L:      linux-i2c@vger.kernel.org
17860 S:      Maintained
17861 F:      drivers/i2c/busses/i2c-stm32*
17862
17863 ST STM32 SPI DRIVER
17864 M:      Alain Volmat <alain.volmat@foss.st.com>
17865 L:      linux-spi@vger.kernel.org
17866 S:      Maintained
17867 F:      drivers/spi/spi-stm32.c
17868
17869 ST STPDDC60 DRIVER
17870 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17871 L:      linux-hwmon@vger.kernel.org
17872 S:      Maintained
17873 F:      Documentation/hwmon/stpddc60.rst
17874 F:      drivers/hwmon/pmbus/stpddc60.c
17875
17876 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17877 M:      Song Qiang <songqiang1304521@gmail.com>
17878 L:      linux-iio@vger.kernel.org
17879 S:      Maintained
17880 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17881 F:      drivers/iio/proximity/vl53l0x-i2c.c
17882
17883 STABLE BRANCH
17884 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17885 M:      Sasha Levin <sashal@kernel.org>
17886 L:      stable@vger.kernel.org
17887 S:      Supported
17888 F:      Documentation/process/stable-kernel-rules.rst
17889
17890 STAGING - ATOMISP DRIVER
17891 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17892 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17893 L:      linux-media@vger.kernel.org
17894 S:      Maintained
17895 F:      drivers/staging/media/atomisp/
17896
17897 STAGING - FIELDBUS SUBSYSTEM
17898 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17899 S:      Maintained
17900 F:      drivers/staging/fieldbus/*
17901 F:      drivers/staging/fieldbus/Documentation/
17902
17903 STAGING - HMS ANYBUS-S BUS
17904 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17905 S:      Maintained
17906 F:      drivers/staging/fieldbus/anybuss/
17907
17908 STAGING - INDUSTRIAL IO
17909 M:      Jonathan Cameron <jic23@kernel.org>
17910 L:      linux-iio@vger.kernel.org
17911 S:      Odd Fixes
17912 F:      Documentation/devicetree/bindings/staging/iio/
17913 F:      drivers/staging/iio/
17914
17915 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17916 M:      Marc Dietrich <marvin24@gmx.de>
17917 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17918 L:      linux-tegra@vger.kernel.org
17919 S:      Maintained
17920 F:      drivers/staging/nvec/
17921
17922 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17923 M:      Jens Frederich <jfrederich@gmail.com>
17924 M:      Jon Nettleton <jon.nettleton@gmail.com>
17925 S:      Maintained
17926 W:      http://wiki.laptop.org/go/DCON
17927 F:      drivers/staging/olpc_dcon/
17928
17929 STAGING - REALTEK RTL8188EU DRIVERS
17930 M:      Larry Finger <Larry.Finger@lwfinger.net>
17931 M:      Phillip Potter <phil@philpotter.co.uk>
17932 S:      Supported
17933 F:      drivers/staging/r8188eu/
17934
17935 STAGING - REALTEK RTL8712U DRIVERS
17936 M:      Larry Finger <Larry.Finger@lwfinger.net>
17937 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17938 S:      Odd Fixes
17939 F:      drivers/staging/rtl8712/
17940
17941 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17942 M:      Michael Hennerich <michael.hennerich@analog.com>
17943 L:      linux-fbdev@vger.kernel.org
17944 S:      Supported
17945 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17946 F:      drivers/staging/fbtft/fb_seps525.c
17947
17948 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17949 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17950 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17951 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17952 L:      linux-fbdev@vger.kernel.org
17953 S:      Maintained
17954 F:      drivers/staging/sm750fb/
17955
17956 STAGING - VIA VT665X DRIVERS
17957 M:      Forest Bond <forest@alittletooquiet.net>
17958 S:      Odd Fixes
17959 F:      drivers/staging/vt665?/
17960
17961 STAGING SUBSYSTEM
17962 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17963 L:      linux-staging@lists.linux.dev
17964 S:      Supported
17965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17966 F:      drivers/staging/
17967
17968 STARFIRE/DURALAN NETWORK DRIVER
17969 M:      Ion Badulescu <ionut@badula.org>
17970 S:      Odd Fixes
17971 F:      drivers/net/ethernet/adaptec/starfire*
17972
17973 STATIC BRANCH/CALL
17974 M:      Peter Zijlstra <peterz@infradead.org>
17975 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17976 M:      Jason Baron <jbaron@akamai.com>
17977 R:      Steven Rostedt <rostedt@goodmis.org>
17978 R:      Ard Biesheuvel <ardb@kernel.org>
17979 S:      Supported
17980 F:      arch/*/include/asm/jump_label*.h
17981 F:      arch/*/include/asm/static_call*.h
17982 F:      arch/*/kernel/jump_label.c
17983 F:      arch/*/kernel/static_call.c
17984 F:      include/linux/jump_label*.h
17985 F:      include/linux/static_call*.h
17986 F:      kernel/jump_label.c
17987 F:      kernel/static_call.c
17988
17989 STI AUDIO (ASoC) DRIVERS
17990 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17992 S:      Maintained
17993 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17994 F:      sound/soc/sti/
17995
17996 STI CEC DRIVER
17997 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17998 S:      Maintained
17999 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18000 F:      drivers/media/cec/platform/sti/
18001
18002 STK1160 USB VIDEO CAPTURE DRIVER
18003 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18004 L:      linux-media@vger.kernel.org
18005 S:      Maintained
18006 T:      git git://linuxtv.org/media_tree.git
18007 F:      drivers/media/usb/stk1160/
18008
18009 STM32 AUDIO (ASoC) DRIVERS
18010 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18011 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18012 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18013 S:      Maintained
18014 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18015 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18016 F:      sound/soc/stm/
18017
18018 STM32 TIMER/LPTIMER DRIVERS
18019 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18020 S:      Maintained
18021 F:      Documentation/ABI/testing/*timer-stm32
18022 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18023 F:      drivers/*/stm32-*timer*
18024 F:      drivers/pwm/pwm-stm32*
18025 F:      include/linux/*/stm32-*tim*
18026
18027 STMMAC ETHERNET DRIVER
18028 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18029 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18030 M:      Jose Abreu <joabreu@synopsys.com>
18031 L:      netdev@vger.kernel.org
18032 S:      Supported
18033 W:      http://www.stlinux.com
18034 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18035 F:      drivers/net/ethernet/stmicro/stmmac/
18036
18037 SUN3/3X
18038 M:      Sam Creasey <sammy@sammy.net>
18039 S:      Maintained
18040 W:      http://sammy.net/sun3/
18041 F:      arch/m68k/include/asm/sun3*
18042 F:      arch/m68k/kernel/*sun3*
18043 F:      arch/m68k/sun3*/
18044 F:      drivers/net/ethernet/i825xx/sun3*
18045
18046 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18047 M:      Hans de Goede <hdegoede@redhat.com>
18048 L:      linux-input@vger.kernel.org
18049 S:      Maintained
18050 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18051 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18052
18053 SUNDANCE NETWORK DRIVER
18054 M:      Denis Kirjanov <kda@linux-powerpc.org>
18055 L:      netdev@vger.kernel.org
18056 S:      Maintained
18057 F:      drivers/net/ethernet/dlink/sundance.c
18058
18059 SUPERH
18060 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18061 M:      Rich Felker <dalias@libc.org>
18062 L:      linux-sh@vger.kernel.org
18063 S:      Maintained
18064 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18065 F:      Documentation/sh/
18066 F:      arch/sh/
18067 F:      drivers/sh/
18068
18069 SUSPEND TO RAM
18070 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18071 M:      Len Brown <len.brown@intel.com>
18072 M:      Pavel Machek <pavel@ucw.cz>
18073 L:      linux-pm@vger.kernel.org
18074 S:      Supported
18075 B:      https://bugzilla.kernel.org
18076 F:      Documentation/power/
18077 F:      arch/x86/kernel/acpi/
18078 F:      drivers/base/power/
18079 F:      include/linux/freezer.h
18080 F:      include/linux/pm.h
18081 F:      include/linux/suspend.h
18082 F:      kernel/power/
18083
18084 SVGA HANDLING
18085 M:      Martin Mares <mj@ucw.cz>
18086 L:      linux-video@atrey.karlin.mff.cuni.cz
18087 S:      Maintained
18088 F:      Documentation/admin-guide/svga.rst
18089 F:      arch/x86/boot/video*
18090
18091 SWIOTLB SUBSYSTEM
18092 M:      Christoph Hellwig <hch@infradead.org>
18093 L:      iommu@lists.linux-foundation.org
18094 S:      Supported
18095 W:      http://git.infradead.org/users/hch/dma-mapping.git
18096 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18097 F:      arch/*/kernel/pci-swiotlb.c
18098 F:      include/linux/swiotlb.h
18099 F:      kernel/dma/swiotlb.c
18100
18101 SWITCHDEV
18102 M:      Jiri Pirko <jiri@resnulli.us>
18103 M:      Ivan Vecera <ivecera@redhat.com>
18104 L:      netdev@vger.kernel.org
18105 S:      Supported
18106 F:      include/net/switchdev.h
18107 F:      net/switchdev/
18108
18109 SY8106A REGULATOR DRIVER
18110 M:      Icenowy Zheng <icenowy@aosc.io>
18111 S:      Maintained
18112 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18113 F:      drivers/regulator/sy8106a-regulator.c
18114
18115 SYNC FILE FRAMEWORK
18116 M:      Sumit Semwal <sumit.semwal@linaro.org>
18117 R:      Gustavo Padovan <gustavo@padovan.org>
18118 L:      linux-media@vger.kernel.org
18119 L:      dri-devel@lists.freedesktop.org
18120 S:      Maintained
18121 T:      git git://anongit.freedesktop.org/drm/drm-misc
18122 F:      Documentation/driver-api/sync_file.rst
18123 F:      drivers/dma-buf/dma-fence*
18124 F:      drivers/dma-buf/sw_sync.c
18125 F:      drivers/dma-buf/sync_*
18126 F:      include/linux/sync_file.h
18127 F:      include/uapi/linux/sync_file.h
18128
18129 SYNOPSYS ARC ARCHITECTURE
18130 M:      Vineet Gupta <vgupta@kernel.org>
18131 L:      linux-snps-arc@lists.infradead.org
18132 S:      Supported
18133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18134 F:      Documentation/devicetree/bindings/arc/*
18135 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18136 F:      arch/arc/
18137 F:      drivers/clocksource/arc_timer.c
18138 F:      drivers/tty/serial/arc_uart.c
18139
18140 SYNOPSYS ARC HSDK SDP pll clock driver
18141 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18142 S:      Supported
18143 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18144 F:      drivers/clk/clk-hsdk-pll.c
18145
18146 SYNOPSYS ARC SDP clock driver
18147 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18148 S:      Supported
18149 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18150 F:      drivers/clk/axs10x/*
18151
18152 SYNOPSYS ARC SDP platform support
18153 M:      Alexey Brodkin <abrodkin@synopsys.com>
18154 S:      Supported
18155 F:      Documentation/devicetree/bindings/arc/axs10*
18156 F:      arch/arc/boot/dts/ax*
18157 F:      arch/arc/plat-axs10x
18158
18159 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18160 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18161 S:      Supported
18162 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18163 F:      drivers/reset/reset-axs10x.c
18164
18165 SYNOPSYS CREG GPIO DRIVER
18166 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18167 S:      Maintained
18168 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18169 F:      drivers/gpio/gpio-creg-snps.c
18170
18171 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18172 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18173 S:      Maintained
18174 F:      drivers/tty/serial/8250/8250_dw.c
18175 F:      drivers/tty/serial/8250/8250_dwlib.*
18176 F:      drivers/tty/serial/8250/8250_lpss.c
18177
18178 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18179 M:      Hoan Tran <hoan@os.amperecomputing.com>
18180 M:      Serge Semin <fancer.lancer@gmail.com>
18181 L:      linux-gpio@vger.kernel.org
18182 S:      Maintained
18183 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18184 F:      drivers/gpio/gpio-dwapb.c
18185
18186 SYNOPSYS DESIGNWARE APB SSI DRIVER
18187 M:      Serge Semin <fancer.lancer@gmail.com>
18188 L:      linux-spi@vger.kernel.org
18189 S:      Supported
18190 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18191 F:      drivers/spi/spi-dw*
18192
18193 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18194 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18195 S:      Maintained
18196 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18197 F:      drivers/dma/dw-axi-dmac/
18198
18199 SYNOPSYS DESIGNWARE DMAC DRIVER
18200 M:      Viresh Kumar <vireshk@kernel.org>
18201 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18202 S:      Maintained
18203 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18204 F:      drivers/dma/dw/
18205 F:      include/dt-bindings/dma/dw-dmac.h
18206 F:      include/linux/dma/dw.h
18207 F:      include/linux/platform_data/dma-dw.h
18208
18209 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18210 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18211 L:      netdev@vger.kernel.org
18212 S:      Supported
18213 F:      drivers/net/ethernet/synopsys/
18214
18215 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18216 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18217 L:      netdev@vger.kernel.org
18218 S:      Supported
18219 F:      drivers/net/pcs/pcs-xpcs.c
18220 F:      drivers/net/pcs/pcs-xpcs.h
18221 F:      include/linux/pcs/pcs-xpcs.h
18222
18223 SYNOPSYS DESIGNWARE I2C DRIVER
18224 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18225 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18226 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18227 L:      linux-i2c@vger.kernel.org
18228 S:      Maintained
18229 F:      drivers/i2c/busses/i2c-designware-*
18230
18231 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18232 M:      Jaehoon Chung <jh80.chung@samsung.com>
18233 L:      linux-mmc@vger.kernel.org
18234 S:      Maintained
18235 F:      drivers/mmc/host/dw_mmc*
18236
18237 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18238 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18239 S:      Supported
18240 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18241 F:      drivers/reset/reset-hsdk.c
18242 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18243
18244 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18245 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18246 M:      Manjunath M B <manjumb@synopsys.com>
18247 L:      linux-mmc@vger.kernel.org
18248 S:      Maintained
18249 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18250
18251 SYSTEM CONFIGURATION (SYSCON)
18252 M:      Lee Jones <lee.jones@linaro.org>
18253 M:      Arnd Bergmann <arnd@arndb.de>
18254 S:      Supported
18255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18256 F:      drivers/mfd/syscon.c
18257
18258 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18259 M:      Sudeep Holla <sudeep.holla@arm.com>
18260 R:      Cristian Marussi <cristian.marussi@arm.com>
18261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18262 S:      Maintained
18263 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18264 F:      drivers/clk/clk-sc[mp]i.c
18265 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18266 F:      drivers/firmware/arm_scmi/
18267 F:      drivers/firmware/arm_scpi.c
18268 F:      drivers/regulator/scmi-regulator.c
18269 F:      drivers/reset/reset-scmi.c
18270 F:      include/linux/sc[mp]i_protocol.h
18271 F:      include/trace/events/scmi.h
18272 F:      include/uapi/linux/virtio_scmi.h
18273
18274 SYSTEM RESET/SHUTDOWN DRIVERS
18275 M:      Sebastian Reichel <sre@kernel.org>
18276 L:      linux-pm@vger.kernel.org
18277 S:      Maintained
18278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18279 F:      Documentation/devicetree/bindings/power/reset/
18280 F:      drivers/power/reset/
18281
18282 SYSTEM TRACE MODULE CLASS
18283 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18284 S:      Maintained
18285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18286 F:      Documentation/trace/stm.rst
18287 F:      drivers/hwtracing/stm/
18288 F:      include/linux/stm.h
18289 F:      include/uapi/linux/stm.h
18290
18291 SYSTEM76 ACPI DRIVER
18292 M:      Jeremy Soller <jeremy@system76.com>
18293 M:      System76 Product Development <productdev@system76.com>
18294 L:      platform-driver-x86@vger.kernel.org
18295 S:      Maintained
18296 F:      drivers/platform/x86/system76_acpi.c
18297
18298 SYSV FILESYSTEM
18299 M:      Christoph Hellwig <hch@infradead.org>
18300 S:      Maintained
18301 F:      Documentation/filesystems/sysv-fs.rst
18302 F:      fs/sysv/
18303 F:      include/linux/sysv_fs.h
18304
18305 TASKSTATS STATISTICS INTERFACE
18306 M:      Balbir Singh <bsingharora@gmail.com>
18307 S:      Maintained
18308 F:      Documentation/accounting/taskstats*
18309 F:      include/linux/taskstats*
18310 F:      kernel/taskstats.c
18311
18312 TC subsystem
18313 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18314 M:      Cong Wang <xiyou.wangcong@gmail.com>
18315 M:      Jiri Pirko <jiri@resnulli.us>
18316 L:      netdev@vger.kernel.org
18317 S:      Maintained
18318 F:      include/net/pkt_cls.h
18319 F:      include/net/pkt_sched.h
18320 F:      include/net/tc_act/
18321 F:      include/uapi/linux/pkt_cls.h
18322 F:      include/uapi/linux/pkt_sched.h
18323 F:      include/uapi/linux/tc_act/
18324 F:      include/uapi/linux/tc_ematch/
18325 F:      net/sched/
18326
18327 TC90522 MEDIA DRIVER
18328 M:      Akihiro Tsukada <tskd08@gmail.com>
18329 L:      linux-media@vger.kernel.org
18330 S:      Odd Fixes
18331 F:      drivers/media/dvb-frontends/tc90522*
18332
18333 TCP LOW PRIORITY MODULE
18334 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18335 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18336 S:      Maintained
18337 W:      http://tcp-lp-mod.sourceforge.net/
18338 F:      net/ipv4/tcp_lp.c
18339
18340 TDA10071 MEDIA DRIVER
18341 M:      Antti Palosaari <crope@iki.fi>
18342 L:      linux-media@vger.kernel.org
18343 S:      Maintained
18344 W:      https://linuxtv.org
18345 W:      http://palosaari.fi/linux/
18346 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18347 T:      git git://linuxtv.org/anttip/media_tree.git
18348 F:      drivers/media/dvb-frontends/tda10071*
18349
18350 TDA18212 MEDIA DRIVER
18351 M:      Antti Palosaari <crope@iki.fi>
18352 L:      linux-media@vger.kernel.org
18353 S:      Maintained
18354 W:      https://linuxtv.org
18355 W:      http://palosaari.fi/linux/
18356 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18357 T:      git git://linuxtv.org/anttip/media_tree.git
18358 F:      drivers/media/tuners/tda18212*
18359
18360 TDA18218 MEDIA DRIVER
18361 M:      Antti Palosaari <crope@iki.fi>
18362 L:      linux-media@vger.kernel.org
18363 S:      Maintained
18364 W:      https://linuxtv.org
18365 W:      http://palosaari.fi/linux/
18366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18367 T:      git git://linuxtv.org/anttip/media_tree.git
18368 F:      drivers/media/tuners/tda18218*
18369
18370 TDA18250 MEDIA DRIVER
18371 M:      Olli Salonen <olli.salonen@iki.fi>
18372 L:      linux-media@vger.kernel.org
18373 S:      Maintained
18374 W:      https://linuxtv.org
18375 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18376 T:      git git://linuxtv.org/media_tree.git
18377 F:      drivers/media/tuners/tda18250*
18378
18379 TDA18271 MEDIA DRIVER
18380 M:      Michael Krufky <mkrufky@linuxtv.org>
18381 L:      linux-media@vger.kernel.org
18382 S:      Maintained
18383 W:      https://linuxtv.org
18384 W:      http://github.com/mkrufky
18385 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18386 T:      git git://linuxtv.org/mkrufky/tuners.git
18387 F:      drivers/media/tuners/tda18271*
18388
18389 TDA1997x MEDIA DRIVER
18390 M:      Tim Harvey <tharvey@gateworks.com>
18391 L:      linux-media@vger.kernel.org
18392 S:      Maintained
18393 W:      https://linuxtv.org
18394 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18395 F:      drivers/media/i2c/tda1997x.*
18396
18397 TDA827x MEDIA DRIVER
18398 M:      Michael Krufky <mkrufky@linuxtv.org>
18399 L:      linux-media@vger.kernel.org
18400 S:      Maintained
18401 W:      https://linuxtv.org
18402 W:      http://github.com/mkrufky
18403 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18404 T:      git git://linuxtv.org/mkrufky/tuners.git
18405 F:      drivers/media/tuners/tda8290.*
18406
18407 TDA8290 MEDIA DRIVER
18408 M:      Michael Krufky <mkrufky@linuxtv.org>
18409 L:      linux-media@vger.kernel.org
18410 S:      Maintained
18411 W:      https://linuxtv.org
18412 W:      http://github.com/mkrufky
18413 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18414 T:      git git://linuxtv.org/mkrufky/tuners.git
18415 F:      drivers/media/tuners/tda8290.*
18416
18417 TDA9840 MEDIA DRIVER
18418 M:      Hans Verkuil <hverkuil@xs4all.nl>
18419 L:      linux-media@vger.kernel.org
18420 S:      Maintained
18421 W:      https://linuxtv.org
18422 T:      git git://linuxtv.org/media_tree.git
18423 F:      drivers/media/i2c/tda9840*
18424
18425 TEA5761 TUNER DRIVER
18426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18427 L:      linux-media@vger.kernel.org
18428 S:      Odd fixes
18429 W:      https://linuxtv.org
18430 T:      git git://linuxtv.org/media_tree.git
18431 F:      drivers/media/tuners/tea5761.*
18432
18433 TEA5767 TUNER DRIVER
18434 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18435 L:      linux-media@vger.kernel.org
18436 S:      Maintained
18437 W:      https://linuxtv.org
18438 T:      git git://linuxtv.org/media_tree.git
18439 F:      drivers/media/tuners/tea5767.*
18440
18441 TEA6415C MEDIA DRIVER
18442 M:      Hans Verkuil <hverkuil@xs4all.nl>
18443 L:      linux-media@vger.kernel.org
18444 S:      Maintained
18445 W:      https://linuxtv.org
18446 T:      git git://linuxtv.org/media_tree.git
18447 F:      drivers/media/i2c/tea6415c*
18448
18449 TEA6420 MEDIA DRIVER
18450 M:      Hans Verkuil <hverkuil@xs4all.nl>
18451 L:      linux-media@vger.kernel.org
18452 S:      Maintained
18453 W:      https://linuxtv.org
18454 T:      git git://linuxtv.org/media_tree.git
18455 F:      drivers/media/i2c/tea6420*
18456
18457 TEAM DRIVER
18458 M:      Jiri Pirko <jiri@resnulli.us>
18459 L:      netdev@vger.kernel.org
18460 S:      Supported
18461 F:      drivers/net/team/
18462 F:      include/linux/if_team.h
18463 F:      include/uapi/linux/if_team.h
18464
18465 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18466 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18467 S:      Maintained
18468 F:      arch/x86/platform/ts5500/
18469
18470 TECHNOTREND USB IR RECEIVER
18471 M:      Sean Young <sean@mess.org>
18472 L:      linux-media@vger.kernel.org
18473 S:      Maintained
18474 F:      drivers/media/rc/ttusbir.c
18475
18476 TECHWELL TW9910 VIDEO DECODER
18477 L:      linux-media@vger.kernel.org
18478 S:      Orphan
18479 F:      drivers/media/i2c/tw9910.c
18480 F:      include/media/i2c/tw9910.h
18481
18482 TEE SUBSYSTEM
18483 M:      Jens Wiklander <jens.wiklander@linaro.org>
18484 R:      Sumit Garg <sumit.garg@linaro.org>
18485 L:      op-tee@lists.trustedfirmware.org
18486 S:      Maintained
18487 F:      Documentation/staging/tee.rst
18488 F:      drivers/tee/
18489 F:      include/linux/tee_drv.h
18490 F:      include/uapi/linux/tee.h
18491
18492 TEGRA ARCHITECTURE SUPPORT
18493 M:      Thierry Reding <thierry.reding@gmail.com>
18494 M:      Jonathan Hunter <jonathanh@nvidia.com>
18495 L:      linux-tegra@vger.kernel.org
18496 S:      Supported
18497 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18499 N:      [^a-z]tegra
18500
18501 TEGRA CLOCK DRIVER
18502 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18503 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18504 S:      Supported
18505 F:      drivers/clk/tegra/
18506
18507 TEGRA DMA DRIVERS
18508 M:      Laxman Dewangan <ldewangan@nvidia.com>
18509 M:      Jon Hunter <jonathanh@nvidia.com>
18510 S:      Supported
18511 F:      drivers/dma/tegra*
18512
18513 TEGRA I2C DRIVER
18514 M:      Laxman Dewangan <ldewangan@nvidia.com>
18515 R:      Dmitry Osipenko <digetx@gmail.com>
18516 S:      Supported
18517 F:      drivers/i2c/busses/i2c-tegra.c
18518
18519 TEGRA IOMMU DRIVERS
18520 M:      Thierry Reding <thierry.reding@gmail.com>
18521 R:      Krishna Reddy <vdumpa@nvidia.com>
18522 L:      linux-tegra@vger.kernel.org
18523 S:      Supported
18524 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18525 F:      drivers/iommu/tegra*
18526
18527 TEGRA KBC DRIVER
18528 M:      Laxman Dewangan <ldewangan@nvidia.com>
18529 S:      Supported
18530 F:      drivers/input/keyboard/tegra-kbc.c
18531
18532 TEGRA NAND DRIVER
18533 M:      Stefan Agner <stefan@agner.ch>
18534 M:      Lucas Stach <dev@lynxeye.de>
18535 S:      Maintained
18536 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18537 F:      drivers/mtd/nand/raw/tegra_nand.c
18538
18539 TEGRA PWM DRIVER
18540 M:      Thierry Reding <thierry.reding@gmail.com>
18541 S:      Supported
18542 F:      drivers/pwm/pwm-tegra.c
18543
18544 TEGRA SERIAL DRIVER
18545 M:      Laxman Dewangan <ldewangan@nvidia.com>
18546 S:      Supported
18547 F:      drivers/tty/serial/serial-tegra.c
18548
18549 TEGRA SPI DRIVER
18550 M:      Laxman Dewangan <ldewangan@nvidia.com>
18551 S:      Supported
18552 F:      drivers/spi/spi-tegra*
18553
18554 TEGRA QUAD SPI DRIVER
18555 M:      Thierry Reding <thierry.reding@gmail.com>
18556 M:      Jonathan Hunter <jonathanh@nvidia.com>
18557 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18558 L:      linux-tegra@vger.kernel.org
18559 S:      Maintained
18560 F:      drivers/spi/spi-tegra210-quad.c
18561
18562 TEGRA VIDEO DRIVER
18563 M:      Thierry Reding <thierry.reding@gmail.com>
18564 M:      Jonathan Hunter <jonathanh@nvidia.com>
18565 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18566 L:      linux-media@vger.kernel.org
18567 L:      linux-tegra@vger.kernel.org
18568 S:      Maintained
18569 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18570 F:      drivers/staging/media/tegra-video/
18571
18572 TEGRA XUSB PADCTL DRIVER
18573 M:      JC Kuo <jckuo@nvidia.com>
18574 S:      Supported
18575 F:      drivers/phy/tegra/xusb*
18576
18577 TEHUTI ETHERNET DRIVER
18578 M:      Andy Gospodarek <andy@greyhouse.net>
18579 L:      netdev@vger.kernel.org
18580 S:      Supported
18581 F:      drivers/net/ethernet/tehuti/*
18582
18583 TELECOM CLOCK DRIVER FOR MCPL0010
18584 M:      Mark Gross <markgross@kernel.org>
18585 S:      Supported
18586 F:      drivers/char/tlclk.c
18587
18588 TEMPO SEMICONDUCTOR DRIVERS
18589 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18590 S:      Maintained
18591 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18592 F:      sound/soc/codecs/tscs*.c
18593 F:      sound/soc/codecs/tscs*.h
18594
18595 TENSILICA XTENSA PORT (xtensa)
18596 M:      Chris Zankel <chris@zankel.net>
18597 M:      Max Filippov <jcmvbkbc@gmail.com>
18598 L:      linux-xtensa@linux-xtensa.org
18599 S:      Maintained
18600 T:      git git://github.com/czankel/xtensa-linux.git
18601 F:      arch/xtensa/
18602 F:      drivers/irqchip/irq-xtensa-*
18603
18604 TEXAS INSTRUMENTS ASoC DRIVERS
18605 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18606 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18607 S:      Maintained
18608 F:      sound/soc/ti/
18609
18610 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18611 M:      Ricardo Ribalda <ribalda@kernel.org>
18612 L:      linux-iio@vger.kernel.org
18613 S:      Supported
18614 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18615 F:      drivers/iio/dac/ti-dac7612.c
18616
18617 TEXAS INSTRUMENTS DMA DRIVERS
18618 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18619 L:      dmaengine@vger.kernel.org
18620 S:      Maintained
18621 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18622 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18623 F:      Documentation/devicetree/bindings/dma/ti/
18624 F:      drivers/dma/ti/
18625 X:      drivers/dma/ti/cppi41.c
18626 F:      include/linux/dma/k3-udma-glue.h
18627 F:      include/linux/dma/ti-cppi5.h
18628 F:      include/linux/dma/k3-psil.h
18629
18630 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18631 M:      Nishanth Menon <nm@ti.com>
18632 M:      Tero Kristo <kristo@kernel.org>
18633 M:      Santosh Shilimkar <ssantosh@kernel.org>
18634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18635 S:      Maintained
18636 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18637 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
18638 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18639 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18640 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18641 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18642 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18643 F:      drivers/clk/keystone/sci-clk.c
18644 F:      drivers/firmware/ti_sci*
18645 F:      drivers/irqchip/irq-ti-sci-inta.c
18646 F:      drivers/irqchip/irq-ti-sci-intr.c
18647 F:      drivers/reset/reset-ti-sci.c
18648 F:      drivers/soc/ti/ti_sci_inta_msi.c
18649 F:      drivers/soc/ti/ti_sci_pm_domains.c
18650 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18651 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18652 F:      include/linux/soc/ti/ti_sci_protocol.h
18653
18654 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18655 M:      Robert Marko <robert.marko@sartura.hr>
18656 M:      Luka Perkov <luka.perkov@sartura.hr>
18657 L:      linux-hwmon@vger.kernel.org
18658 S:      Maintained
18659 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18660 F:      Documentation/hwmon/tps23861.rst
18661 F:      drivers/hwmon/tps23861.c
18662
18663 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18664 M:      Puranjay Mohan <puranjay12@gmail.com>
18665 L:      linux-iio@vger.kernel.org
18666 S:      Supported
18667 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18668 F:      drivers/iio/temperature/tmp117.c
18669
18670 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18671 M:      Hans Verkuil <hverkuil@xs4all.nl>
18672 L:      linux-media@vger.kernel.org
18673 S:      Maintained
18674 W:      https://linuxtv.org
18675 T:      git git://linuxtv.org/media_tree.git
18676 F:      drivers/media/radio/radio-raremono.c
18677
18678 THERMAL
18679 M:      Rafael J. Wysocki <rafael@kernel.org>
18680 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18681 R:      Amit Kucheria <amitk@kernel.org>
18682 R:      Zhang Rui <rui.zhang@intel.com>
18683 L:      linux-pm@vger.kernel.org
18684 S:      Supported
18685 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18687 F:      Documentation/ABI/testing/sysfs-class-thermal
18688 F:      Documentation/devicetree/bindings/thermal/
18689 F:      Documentation/driver-api/thermal/
18690 F:      drivers/thermal/
18691 F:      include/linux/cpu_cooling.h
18692 F:      include/linux/thermal.h
18693 F:      include/uapi/linux/thermal.h
18694 F:      tools/thermal/
18695
18696 THERMAL DRIVER FOR AMLOGIC SOCS
18697 M:      Guillaume La Roque <glaroque@baylibre.com>
18698 L:      linux-pm@vger.kernel.org
18699 L:      linux-amlogic@lists.infradead.org
18700 S:      Supported
18701 W:      http://linux-meson.com/
18702 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18703 F:      drivers/thermal/amlogic_thermal.c
18704
18705 THERMAL/CPU_COOLING
18706 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18707 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18708 M:      Viresh Kumar <viresh.kumar@linaro.org>
18709 R:      Lukasz Luba <lukasz.luba@arm.com>
18710 L:      linux-pm@vger.kernel.org
18711 S:      Supported
18712 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18713 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18714 F:      drivers/thermal/cpufreq_cooling.c
18715 F:      drivers/thermal/cpuidle_cooling.c
18716 F:      include/linux/cpu_cooling.h
18717
18718 THERMAL/POWER_ALLOCATOR
18719 M:      Lukasz Luba <lukasz.luba@arm.com>
18720 L:      linux-pm@vger.kernel.org
18721 S:      Maintained
18722 F:      Documentation/driver-api/thermal/power_allocator.rst
18723 F:      drivers/thermal/gov_power_allocator.c
18724 F:      include/trace/events/thermal_power_allocator.h
18725
18726 THINKPAD ACPI EXTRAS DRIVER
18727 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18728 L:      ibm-acpi-devel@lists.sourceforge.net
18729 L:      platform-driver-x86@vger.kernel.org
18730 S:      Maintained
18731 W:      http://ibm-acpi.sourceforge.net
18732 W:      http://thinkwiki.org/wiki/Ibm-acpi
18733 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18734 F:      drivers/platform/x86/thinkpad_acpi.c
18735
18736 THINKPAD LMI DRIVER
18737 M:      Mark Pearson <markpearson@lenovo.com>
18738 L:      platform-driver-x86@vger.kernel.org
18739 S:      Maintained
18740 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18741 F:      drivers/platform/x86/think-lmi.?
18742
18743 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18744 M:      Isaac Hazan <isaac.hazan@intel.com>
18745 L:      linux-usb@vger.kernel.org
18746 S:      Maintained
18747 F:      drivers/thunderbolt/dma_test.c
18748
18749 THUNDERBOLT DRIVER
18750 M:      Andreas Noever <andreas.noever@gmail.com>
18751 M:      Michael Jamet <michael.jamet@intel.com>
18752 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18753 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18754 L:      linux-usb@vger.kernel.org
18755 S:      Maintained
18756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18757 F:      Documentation/admin-guide/thunderbolt.rst
18758 F:      drivers/thunderbolt/
18759 F:      include/linux/thunderbolt.h
18760
18761 THUNDERBOLT NETWORK DRIVER
18762 M:      Michael Jamet <michael.jamet@intel.com>
18763 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18764 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18765 L:      netdev@vger.kernel.org
18766 S:      Maintained
18767 F:      drivers/net/thunderbolt.c
18768
18769 THUNDERX GPIO DRIVER
18770 M:      Robert Richter <rric@kernel.org>
18771 S:      Odd Fixes
18772 F:      drivers/gpio/gpio-thunderx.c
18773
18774 TI ADS131E0X ADC SERIES DRIVER
18775 M:      Tomislav Denis <tomislav.denis@avl.com>
18776 L:      linux-iio@vger.kernel.org
18777 S:      Maintained
18778 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18779 F:      drivers/iio/adc/ti-ads131e08.c
18780
18781 TI AM437X VPFE DRIVER
18782 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18783 L:      linux-media@vger.kernel.org
18784 S:      Maintained
18785 W:      https://linuxtv.org
18786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18787 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18788 F:      drivers/media/platform/am437x/
18789
18790 TI BANDGAP AND THERMAL DRIVER
18791 M:      Eduardo Valentin <edubezval@gmail.com>
18792 M:      Keerthy <j-keerthy@ti.com>
18793 L:      linux-pm@vger.kernel.org
18794 L:      linux-omap@vger.kernel.org
18795 S:      Maintained
18796 F:      drivers/thermal/ti-soc-thermal/
18797
18798 TI BQ27XXX POWER SUPPLY DRIVER
18799 F:      drivers/power/supply/bq27xxx_battery.c
18800 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18801 F:      include/linux/power/bq27xxx_battery.h
18802
18803 TI CDCE706 CLOCK DRIVER
18804 M:      Max Filippov <jcmvbkbc@gmail.com>
18805 S:      Maintained
18806 F:      drivers/clk/clk-cdce706.c
18807
18808 TI CLOCK DRIVER
18809 M:      Tero Kristo <kristo@kernel.org>
18810 L:      linux-omap@vger.kernel.org
18811 S:      Odd Fixes
18812 F:      drivers/clk/ti/
18813 F:      include/linux/clk/ti.h
18814
18815 TI DAVINCI MACHINE SUPPORT
18816 M:      Sekhar Nori <nsekhar@ti.com>
18817 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18819 S:      Supported
18820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18821 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18822 F:      arch/arm/boot/dts/da850*
18823 F:      arch/arm/mach-davinci/
18824 F:      drivers/i2c/busses/i2c-davinci.c
18825
18826 TI DAVINCI SERIES CLOCK DRIVER
18827 M:      David Lechner <david@lechnology.com>
18828 R:      Sekhar Nori <nsekhar@ti.com>
18829 S:      Maintained
18830 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18831 F:      drivers/clk/davinci/
18832
18833 TI DAVINCI SERIES GPIO DRIVER
18834 M:      Keerthy <j-keerthy@ti.com>
18835 L:      linux-gpio@vger.kernel.org
18836 S:      Maintained
18837 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18838 F:      drivers/gpio/gpio-davinci.c
18839
18840 TI DAVINCI SERIES MEDIA DRIVER
18841 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18842 L:      linux-media@vger.kernel.org
18843 S:      Maintained
18844 W:      https://linuxtv.org
18845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18846 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18847 F:      drivers/media/platform/davinci/
18848 F:      include/media/davinci/
18849
18850 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18851 R:      David Lechner <david@lechnology.com>
18852 L:      linux-iio@vger.kernel.org
18853 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18854 F:      drivers/counter/ti-eqep.c
18855
18856 TI ETHERNET SWITCH DRIVER (CPSW)
18857 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18858 L:      linux-omap@vger.kernel.org
18859 L:      netdev@vger.kernel.org
18860 S:      Maintained
18861 F:      drivers/net/ethernet/ti/cpsw*
18862 F:      drivers/net/ethernet/ti/davinci*
18863
18864 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18865 M:      Alex Dubov <oakad@yahoo.com>
18866 S:      Maintained
18867 W:      http://tifmxx.berlios.de/
18868 F:      drivers/memstick/host/tifm_ms.c
18869 F:      drivers/misc/tifm*
18870 F:      drivers/mmc/host/tifm_sd.c
18871 F:      include/linux/tifm.h
18872
18873 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18874 M:      Santosh Shilimkar <ssantosh@kernel.org>
18875 L:      linux-kernel@vger.kernel.org
18876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18877 S:      Maintained
18878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18879 F:      drivers/soc/ti/*
18880
18881 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18882 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18883 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18884 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18885 S:      Maintained
18886 F:      sound/soc/codecs/isabelle*
18887 F:      sound/soc/codecs/lm49453*
18888
18889 TI PCM3060 ASoC CODEC DRIVER
18890 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18891 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18892 S:      Maintained
18893 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18894 F:      sound/soc/codecs/pcm3060*
18895
18896 TI TAS571X FAMILY ASoC CODEC DRIVER
18897 M:      Kevin Cernekee <cernekee@chromium.org>
18898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18899 S:      Odd Fixes
18900 F:      sound/soc/codecs/tas571x*
18901
18902 TI TRF7970A NFC DRIVER
18903 M:      Mark Greer <mgreer@animalcreek.com>
18904 L:      linux-wireless@vger.kernel.org
18905 L:      linux-nfc@lists.01.org (subscribers-only)
18906 S:      Supported
18907 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
18908 F:      drivers/nfc/trf7970a.c
18909
18910 TI TSC2046 ADC DRIVER
18911 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18912 R:      kernel@pengutronix.de
18913 L:      linux-iio@vger.kernel.org
18914 S:      Maintained
18915 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18916 F:      drivers/iio/adc/ti-tsc2046.c
18917
18918 TI TWL4030 SERIES SOC CODEC DRIVER
18919 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18921 S:      Maintained
18922 F:      sound/soc/codecs/twl4030*
18923
18924 TI VPE/CAL DRIVERS
18925 M:      Benoit Parrot <bparrot@ti.com>
18926 L:      linux-media@vger.kernel.org
18927 S:      Maintained
18928 W:      http://linuxtv.org/
18929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18930 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18931 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18932 F:      drivers/media/platform/ti-vpe/
18933
18934 TI WILINK WIRELESS DRIVERS
18935 L:      linux-wireless@vger.kernel.org
18936 S:      Orphan
18937 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18938 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18940 F:      drivers/net/wireless/ti/
18941 F:      include/linux/wl12xx.h
18942
18943 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18944 M:      John Stultz <john.stultz@linaro.org>
18945 M:      Thomas Gleixner <tglx@linutronix.de>
18946 R:      Stephen Boyd <sboyd@kernel.org>
18947 L:      linux-kernel@vger.kernel.org
18948 S:      Supported
18949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18950 F:      include/linux/clocksource.h
18951 F:      include/linux/time.h
18952 F:      include/linux/timex.h
18953 F:      include/uapi/linux/time.h
18954 F:      include/uapi/linux/timex.h
18955 F:      kernel/time/alarmtimer.c
18956 F:      kernel/time/clocksource.c
18957 F:      kernel/time/ntp.c
18958 F:      kernel/time/time*.c
18959 F:      tools/testing/selftests/timers/
18960
18961 TIPC NETWORK LAYER
18962 M:      Jon Maloy <jmaloy@redhat.com>
18963 M:      Ying Xue <ying.xue@windriver.com>
18964 L:      netdev@vger.kernel.org (core kernel code)
18965 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18966 S:      Maintained
18967 W:      http://tipc.sourceforge.net/
18968 F:      include/uapi/linux/tipc*.h
18969 F:      net/tipc/
18970
18971 TLAN NETWORK DRIVER
18972 M:      Samuel Chessman <chessman@tux.org>
18973 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18974 S:      Maintained
18975 W:      http://sourceforge.net/projects/tlan/
18976 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18977 F:      drivers/net/ethernet/ti/tlan.*
18978
18979 TM6000 VIDEO4LINUX DRIVER
18980 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18981 L:      linux-media@vger.kernel.org
18982 S:      Odd fixes
18983 W:      https://linuxtv.org
18984 T:      git git://linuxtv.org/media_tree.git
18985 F:      Documentation/admin-guide/media/tm6000*
18986 F:      drivers/media/usb/tm6000/
18987
18988 TMIO/SDHI MMC DRIVER
18989 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18990 L:      linux-mmc@vger.kernel.org
18991 S:      Supported
18992 F:      drivers/mmc/host/renesas_sdhi*
18993 F:      drivers/mmc/host/tmio_mmc*
18994 F:      include/linux/mfd/tmio.h
18995
18996 TMP401 HARDWARE MONITOR DRIVER
18997 M:      Guenter Roeck <linux@roeck-us.net>
18998 L:      linux-hwmon@vger.kernel.org
18999 S:      Maintained
19000 F:      Documentation/hwmon/tmp401.rst
19001 F:      drivers/hwmon/tmp401.c
19002
19003 TMP513 HARDWARE MONITOR DRIVER
19004 M:      Eric Tremblay <etremblay@distech-controls.com>
19005 L:      linux-hwmon@vger.kernel.org
19006 S:      Maintained
19007 F:      Documentation/hwmon/tmp513.rst
19008 F:      drivers/hwmon/tmp513.c
19009
19010 TMPFS (SHMEM FILESYSTEM)
19011 M:      Hugh Dickins <hughd@google.com>
19012 L:      linux-mm@kvack.org
19013 S:      Maintained
19014 F:      include/linux/shmem_fs.h
19015 F:      mm/shmem.c
19016
19017 TOMOYO SECURITY MODULE
19018 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19019 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19020 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19021 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19022 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19023 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19024 S:      Maintained
19025 W:      https://tomoyo.osdn.jp/
19026 F:      security/tomoyo/
19027
19028 TOPSTAR LAPTOP EXTRAS DRIVER
19029 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19030 L:      platform-driver-x86@vger.kernel.org
19031 S:      Maintained
19032 F:      drivers/platform/x86/topstar-laptop.c
19033
19034 TORTURE-TEST MODULES
19035 M:      Davidlohr Bueso <dave@stgolabs.net>
19036 M:      "Paul E. McKenney" <paulmck@kernel.org>
19037 M:      Josh Triplett <josh@joshtriplett.org>
19038 L:      linux-kernel@vger.kernel.org
19039 S:      Supported
19040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19041 F:      Documentation/RCU/torture.rst
19042 F:      kernel/locking/locktorture.c
19043 F:      kernel/rcu/rcuscale.c
19044 F:      kernel/rcu/rcutorture.c
19045 F:      kernel/rcu/refscale.c
19046 F:      kernel/torture.c
19047
19048 TOSHIBA ACPI EXTRAS DRIVER
19049 M:      Azael Avalos <coproscefalo@gmail.com>
19050 L:      platform-driver-x86@vger.kernel.org
19051 S:      Maintained
19052 F:      drivers/platform/x86/toshiba_acpi.c
19053
19054 TOSHIBA BLUETOOTH DRIVER
19055 M:      Azael Avalos <coproscefalo@gmail.com>
19056 L:      platform-driver-x86@vger.kernel.org
19057 S:      Maintained
19058 F:      drivers/platform/x86/toshiba_bluetooth.c
19059
19060 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19061 M:      Azael Avalos <coproscefalo@gmail.com>
19062 L:      platform-driver-x86@vger.kernel.org
19063 S:      Maintained
19064 F:      drivers/platform/x86/toshiba_haps.c
19065
19066 TOSHIBA SMM DRIVER
19067 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19068 S:      Maintained
19069 W:      http://www.buzzard.org.uk/toshiba/
19070 F:      drivers/char/toshiba.c
19071 F:      include/linux/toshiba.h
19072 F:      include/uapi/linux/toshiba.h
19073
19074 TOSHIBA TC358743 DRIVER
19075 M:      Mats Randgaard <matrandg@cisco.com>
19076 L:      linux-media@vger.kernel.org
19077 S:      Maintained
19078 F:      drivers/media/i2c/tc358743*
19079 F:      include/media/i2c/tc358743.h
19080
19081 TOSHIBA WMI HOTKEYS DRIVER
19082 M:      Azael Avalos <coproscefalo@gmail.com>
19083 L:      platform-driver-x86@vger.kernel.org
19084 S:      Maintained
19085 F:      drivers/platform/x86/toshiba-wmi.c
19086
19087 TPM DEVICE DRIVER
19088 M:      Peter Huewe <peterhuewe@gmx.de>
19089 M:      Jarkko Sakkinen <jarkko@kernel.org>
19090 R:      Jason Gunthorpe <jgg@ziepe.ca>
19091 L:      linux-integrity@vger.kernel.org
19092 S:      Maintained
19093 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19094 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19096 F:      drivers/char/tpm/
19097
19098 TRACING
19099 M:      Steven Rostedt <rostedt@goodmis.org>
19100 M:      Ingo Molnar <mingo@redhat.com>
19101 S:      Maintained
19102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19103 F:      Documentation/trace/ftrace.rst
19104 F:      arch/*/*/*/ftrace.h
19105 F:      arch/*/kernel/ftrace.c
19106 F:      fs/tracefs/
19107 F:      include/*/ftrace.h
19108 F:      include/linux/trace*.h
19109 F:      include/trace/
19110 F:      kernel/trace/
19111 F:      tools/testing/selftests/ftrace/
19112
19113 TRACING MMIO ACCESSES (MMIOTRACE)
19114 M:      Steven Rostedt <rostedt@goodmis.org>
19115 M:      Ingo Molnar <mingo@kernel.org>
19116 R:      Karol Herbst <karolherbst@gmail.com>
19117 R:      Pekka Paalanen <ppaalanen@gmail.com>
19118 L:      linux-kernel@vger.kernel.org
19119 L:      nouveau@lists.freedesktop.org
19120 S:      Maintained
19121 F:      arch/x86/mm/kmmio.c
19122 F:      arch/x86/mm/mmio-mod.c
19123 F:      arch/x86/mm/testmmiotrace.c
19124 F:      include/linux/mmiotrace.h
19125 F:      kernel/trace/trace_mmiotrace.c
19126
19127 TRACING OS NOISE / LATENCY TRACERS
19128 M:      Steven Rostedt <rostedt@goodmis.org>
19129 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19130 S:      Maintained
19131 F:      kernel/trace/trace_osnoise.c
19132 F:      include/trace/events/osnoise.h
19133 F:      kernel/trace/trace_hwlat.c
19134 F:      kernel/trace/trace_irqsoff.c
19135 F:      kernel/trace/trace_sched_wakeup.c
19136 F:      Documentation/trace/osnoise-tracer.rst
19137 F:      Documentation/trace/timerlat-tracer.rst
19138 F:      Documentation/trace/hwlat_detector.rst
19139 F:      arch/*/kernel/trace.c
19140
19141 TRADITIONAL CHINESE DOCUMENTATION
19142 M:      Hu Haowen <src.res@email.cn>
19143 L:      linux-doc-tw-discuss@lists.sourceforge.net
19144 S:      Maintained
19145 W:      https://github.com/srcres258/linux-doc
19146 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19147 F:      Documentation/translations/zh_TW/
19148
19149 TRIVIAL PATCHES
19150 M:      Jiri Kosina <trivial@kernel.org>
19151 S:      Maintained
19152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19153 K:      ^Subject:.*(?i)trivial
19154
19155 TTY LAYER
19156 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19157 M:      Jiri Slaby <jirislaby@kernel.org>
19158 S:      Supported
19159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19160 F:      Documentation/driver-api/serial/
19161 F:      drivers/tty/
19162 F:      drivers/tty/serial/serial_core.c
19163 F:      include/linux/selection.h
19164 F:      include/linux/serial.h
19165 F:      include/linux/serial_core.h
19166 F:      include/linux/sysrq.h
19167 F:      include/linux/tty*.h
19168 F:      include/linux/vt.h
19169 F:      include/linux/vt_*.h
19170 F:      include/uapi/linux/serial.h
19171 F:      include/uapi/linux/serial_core.h
19172 F:      include/uapi/linux/tty.h
19173
19174 TUA9001 MEDIA DRIVER
19175 M:      Antti Palosaari <crope@iki.fi>
19176 L:      linux-media@vger.kernel.org
19177 S:      Maintained
19178 W:      https://linuxtv.org
19179 W:      http://palosaari.fi/linux/
19180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19181 T:      git git://linuxtv.org/anttip/media_tree.git
19182 F:      drivers/media/tuners/tua9001*
19183
19184 TULIP NETWORK DRIVERS
19185 L:      netdev@vger.kernel.org
19186 L:      linux-parisc@vger.kernel.org
19187 S:      Orphan
19188 F:      drivers/net/ethernet/dec/tulip/
19189
19190 TUN/TAP driver
19191 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19192 S:      Maintained
19193 W:      http://vtun.sourceforge.net/tun
19194 F:      Documentation/networking/tuntap.rst
19195 F:      arch/um/os-Linux/drivers/
19196
19197 TURBOCHANNEL SUBSYSTEM
19198 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19199 M:      Ralf Baechle <ralf@linux-mips.org>
19200 L:      linux-mips@vger.kernel.org
19201 S:      Maintained
19202 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19203 F:      drivers/tc/
19204 F:      include/linux/tc.h
19205
19206 TURBOSTAT UTILITY
19207 M:      "Len Brown" <lenb@kernel.org>
19208 L:      linux-pm@vger.kernel.org
19209 S:      Supported
19210 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19211 B:      https://bugzilla.kernel.org
19212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19213 F:      tools/power/x86/turbostat/
19214
19215 TW5864 VIDEO4LINUX DRIVER
19216 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19217 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19218 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19219 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19220 L:      linux-media@vger.kernel.org
19221 S:      Supported
19222 F:      drivers/media/pci/tw5864/
19223
19224 TW68 VIDEO4LINUX DRIVER
19225 M:      Hans Verkuil <hverkuil@xs4all.nl>
19226 L:      linux-media@vger.kernel.org
19227 S:      Odd Fixes
19228 W:      https://linuxtv.org
19229 T:      git git://linuxtv.org/media_tree.git
19230 F:      drivers/media/pci/tw68/
19231
19232 TW686X VIDEO4LINUX DRIVER
19233 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19234 L:      linux-media@vger.kernel.org
19235 S:      Maintained
19236 W:      http://linuxtv.org
19237 T:      git git://linuxtv.org/media_tree.git
19238 F:      drivers/media/pci/tw686x/
19239
19240 UACCE ACCELERATOR FRAMEWORK
19241 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19242 M:      Zhou Wang <wangzhou1@hisilicon.com>
19243 L:      linux-accelerators@lists.ozlabs.org
19244 L:      linux-kernel@vger.kernel.org
19245 S:      Maintained
19246 F:      Documentation/ABI/testing/sysfs-driver-uacce
19247 F:      Documentation/misc-devices/uacce.rst
19248 F:      drivers/misc/uacce/
19249 F:      include/linux/uacce.h
19250 F:      include/uapi/misc/uacce/
19251
19252 UBI FILE SYSTEM (UBIFS)
19253 M:      Richard Weinberger <richard@nod.at>
19254 L:      linux-mtd@lists.infradead.org
19255 S:      Supported
19256 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19259 F:      Documentation/filesystems/ubifs-authentication.rst
19260 F:      Documentation/filesystems/ubifs.rst
19261 F:      fs/ubifs/
19262
19263 UCLINUX (M68KNOMMU AND COLDFIRE)
19264 M:      Greg Ungerer <gerg@linux-m68k.org>
19265 L:      linux-m68k@lists.linux-m68k.org
19266 L:      uclinux-dev@uclinux.org  (subscribers-only)
19267 S:      Maintained
19268 W:      http://www.linux-m68k.org/
19269 W:      http://www.uclinux.org/
19270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19271 F:      arch/m68k/*/*_no.*
19272 F:      arch/m68k/68*/
19273 F:      arch/m68k/coldfire/
19274 F:      arch/m68k/include/asm/*_no.*
19275
19276 UDF FILESYSTEM
19277 M:      Jan Kara <jack@suse.com>
19278 S:      Maintained
19279 F:      Documentation/filesystems/udf.rst
19280 F:      fs/udf/
19281
19282 UDRAW TABLET
19283 M:      Bastien Nocera <hadess@hadess.net>
19284 L:      linux-input@vger.kernel.org
19285 S:      Maintained
19286 F:      drivers/hid/hid-udraw-ps3.c
19287
19288 UFS FILESYSTEM
19289 M:      Evgeniy Dushistov <dushistov@mail.ru>
19290 S:      Maintained
19291 F:      Documentation/admin-guide/ufs.rst
19292 F:      fs/ufs/
19293
19294 UHID USERSPACE HID IO DRIVER
19295 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19296 L:      linux-input@vger.kernel.org
19297 S:      Maintained
19298 F:      drivers/hid/uhid.c
19299 F:      include/uapi/linux/uhid.h
19300
19301 ULPI BUS
19302 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19303 L:      linux-usb@vger.kernel.org
19304 S:      Maintained
19305 F:      drivers/usb/common/ulpi.c
19306 F:      include/linux/ulpi/
19307
19308 UNICODE SUBSYSTEM
19309 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19310 L:      linux-fsdevel@vger.kernel.org
19311 S:      Supported
19312 F:      fs/unicode/
19313
19314 UNIFDEF
19315 M:      Tony Finch <dot@dotat.at>
19316 S:      Maintained
19317 W:      http://dotat.at/prog/unifdef
19318 F:      scripts/unifdef.c
19319
19320 UNIFORM CDROM DRIVER
19321 M:      Phillip Potter <phil@philpotter.co.uk>
19322 S:      Maintained
19323 F:      Documentation/cdrom/
19324 F:      drivers/cdrom/cdrom.c
19325 F:      include/linux/cdrom.h
19326 F:      include/uapi/linux/cdrom.h
19327
19328 UNISYS S-PAR DRIVERS
19329 M:      David Kershner <david.kershner@unisys.com>
19330 L:      sparmaintainer@unisys.com (Unisys internal)
19331 S:      Supported
19332 F:      drivers/staging/unisys/
19333 F:      drivers/visorbus/
19334 F:      include/linux/visorbus.h
19335
19336 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19337 R:      Alim Akhtar <alim.akhtar@samsung.com>
19338 R:      Avri Altman <avri.altman@wdc.com>
19339 L:      linux-scsi@vger.kernel.org
19340 S:      Supported
19341 F:      Documentation/scsi/ufs.rst
19342 F:      drivers/scsi/ufs/
19343
19344 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19345 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19346 L:      linux-scsi@vger.kernel.org
19347 S:      Supported
19348 F:      drivers/scsi/ufs/*dwc*
19349
19350 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19351 M:      Stanley Chu <stanley.chu@mediatek.com>
19352 L:      linux-scsi@vger.kernel.org
19353 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19354 S:      Maintained
19355 F:      drivers/scsi/ufs/ufs-mediatek*
19356
19357 UNSORTED BLOCK IMAGES (UBI)
19358 M:      Richard Weinberger <richard@nod.at>
19359 L:      linux-mtd@lists.infradead.org
19360 S:      Supported
19361 W:      http://www.linux-mtd.infradead.org/
19362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19364 F:      drivers/mtd/ubi/
19365 F:      include/linux/mtd/ubi.h
19366 F:      include/uapi/mtd/ubi-user.h
19367
19368 USB "USBNET" DRIVER FRAMEWORK
19369 M:      Oliver Neukum <oneukum@suse.com>
19370 L:      netdev@vger.kernel.org
19371 S:      Maintained
19372 W:      http://www.linux-usb.org/usbnet
19373 F:      drivers/net/usb/usbnet.c
19374 F:      include/linux/usb/usbnet.h
19375
19376 USB ACM DRIVER
19377 M:      Oliver Neukum <oneukum@suse.com>
19378 L:      linux-usb@vger.kernel.org
19379 S:      Maintained
19380 F:      Documentation/usb/acm.rst
19381 F:      drivers/usb/class/cdc-acm.*
19382
19383 USB APPLE MFI FASTCHARGE DRIVER
19384 M:      Bastien Nocera <hadess@hadess.net>
19385 L:      linux-usb@vger.kernel.org
19386 S:      Maintained
19387 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19388
19389 USB AR5523 WIRELESS DRIVER
19390 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19391 L:      linux-wireless@vger.kernel.org
19392 S:      Maintained
19393 F:      drivers/net/wireless/ath/ar5523/
19394
19395 USB ATTACHED SCSI
19396 M:      Oliver Neukum <oneukum@suse.com>
19397 L:      linux-usb@vger.kernel.org
19398 L:      linux-scsi@vger.kernel.org
19399 S:      Maintained
19400 F:      drivers/usb/storage/uas.c
19401
19402 USB CDC ETHERNET DRIVER
19403 M:      Oliver Neukum <oliver@neukum.org>
19404 L:      linux-usb@vger.kernel.org
19405 S:      Maintained
19406 F:      drivers/net/usb/cdc_*.c
19407 F:      include/uapi/linux/usb/cdc.h
19408
19409 USB CHAOSKEY DRIVER
19410 M:      Keith Packard <keithp@keithp.com>
19411 L:      linux-usb@vger.kernel.org
19412 S:      Maintained
19413 F:      drivers/usb/misc/chaoskey.c
19414
19415 USB CYPRESS C67X00 DRIVER
19416 L:      linux-usb@vger.kernel.org
19417 S:      Orphan
19418 F:      drivers/usb/c67x00/
19419
19420 USB DAVICOM DM9601 DRIVER
19421 M:      Peter Korsgaard <peter@korsgaard.com>
19422 L:      netdev@vger.kernel.org
19423 S:      Maintained
19424 W:      http://www.linux-usb.org/usbnet
19425 F:      drivers/net/usb/dm9601.c
19426
19427 USB EHCI DRIVER
19428 M:      Alan Stern <stern@rowland.harvard.edu>
19429 L:      linux-usb@vger.kernel.org
19430 S:      Maintained
19431 F:      Documentation/usb/ehci.rst
19432 F:      drivers/usb/host/ehci*
19433
19434 USB GADGET/PERIPHERAL SUBSYSTEM
19435 M:      Felipe Balbi <balbi@kernel.org>
19436 L:      linux-usb@vger.kernel.org
19437 S:      Maintained
19438 W:      http://www.linux-usb.org/gadget
19439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19440 F:      drivers/usb/gadget/
19441 F:      include/linux/usb/gadget*
19442
19443 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19444 M:      Jiri Kosina <jikos@kernel.org>
19445 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19446 L:      linux-usb@vger.kernel.org
19447 S:      Maintained
19448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19449 F:      Documentation/hid/hiddev.rst
19450 F:      drivers/hid/usbhid/
19451
19452 USB INTEL XHCI ROLE MUX DRIVER
19453 M:      Hans de Goede <hdegoede@redhat.com>
19454 L:      linux-usb@vger.kernel.org
19455 S:      Maintained
19456 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19457
19458 USB IP DRIVER FOR HISILICON KIRIN 960
19459 M:      Yu Chen <chenyu56@huawei.com>
19460 M:      Binghui Wang <wangbinghui@hisilicon.com>
19461 L:      linux-usb@vger.kernel.org
19462 S:      Maintained
19463 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19464 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19465
19466 USB IP DRIVER FOR HISILICON KIRIN 970
19467 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19468 L:      linux-usb@vger.kernel.org
19469 S:      Maintained
19470 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19471 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19472
19473 USB ISP116X DRIVER
19474 M:      Olav Kongas <ok@artecdesign.ee>
19475 L:      linux-usb@vger.kernel.org
19476 S:      Maintained
19477 F:      drivers/usb/host/isp116x*
19478 F:      include/linux/usb/isp116x.h
19479
19480 USB ISP1760 DRIVER
19481 M:      Rui Miguel Silva <rui.silva@linaro.org>
19482 L:      linux-usb@vger.kernel.org
19483 S:      Maintained
19484 F:      drivers/usb/isp1760/*
19485 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19486
19487 USB LAN78XX ETHERNET DRIVER
19488 M:      Woojung Huh <woojung.huh@microchip.com>
19489 M:      UNGLinuxDriver@microchip.com
19490 L:      netdev@vger.kernel.org
19491 S:      Maintained
19492 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19493 F:      drivers/net/usb/lan78xx.*
19494 F:      include/dt-bindings/net/microchip-lan78xx.h
19495
19496 USB MASS STORAGE DRIVER
19497 M:      Alan Stern <stern@rowland.harvard.edu>
19498 L:      linux-usb@vger.kernel.org
19499 L:      usb-storage@lists.one-eyed-alien.net
19500 S:      Maintained
19501 F:      drivers/usb/storage/
19502
19503 USB MIDI DRIVER
19504 M:      Clemens Ladisch <clemens@ladisch.de>
19505 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19506 S:      Maintained
19507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19508 F:      sound/usb/midi.*
19509
19510 USB NETWORKING DRIVERS
19511 L:      linux-usb@vger.kernel.org
19512 S:      Odd Fixes
19513 F:      drivers/net/usb/
19514
19515 USB OHCI DRIVER
19516 M:      Alan Stern <stern@rowland.harvard.edu>
19517 L:      linux-usb@vger.kernel.org
19518 S:      Maintained
19519 F:      Documentation/usb/ohci.rst
19520 F:      drivers/usb/host/ohci*
19521
19522 USB OTG FSM (Finite State Machine)
19523 M:      Peter Chen <peter.chen@kernel.org>
19524 L:      linux-usb@vger.kernel.org
19525 S:      Maintained
19526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19527 F:      drivers/usb/common/usb-otg-fsm.c
19528
19529 USB OVER IP DRIVER
19530 M:      Valentina Manea <valentina.manea.m@gmail.com>
19531 M:      Shuah Khan <shuah@kernel.org>
19532 M:      Shuah Khan <skhan@linuxfoundation.org>
19533 L:      linux-usb@vger.kernel.org
19534 S:      Maintained
19535 F:      Documentation/usb/usbip_protocol.rst
19536 F:      drivers/usb/usbip/
19537 F:      tools/testing/selftests/drivers/usb/usbip/
19538 F:      tools/usb/usbip/
19539
19540 USB PEGASUS DRIVER
19541 M:      Petko Manolov <petkan@nucleusys.com>
19542 L:      linux-usb@vger.kernel.org
19543 L:      netdev@vger.kernel.org
19544 S:      Maintained
19545 W:      https://github.com/petkan/pegasus
19546 T:      git git://github.com/petkan/pegasus.git
19547 F:      drivers/net/usb/pegasus.*
19548
19549 USB PHY LAYER
19550 M:      Felipe Balbi <balbi@kernel.org>
19551 L:      linux-usb@vger.kernel.org
19552 S:      Maintained
19553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19554 F:      drivers/usb/phy/
19555
19556 USB PRINTER DRIVER (usblp)
19557 M:      Pete Zaitcev <zaitcev@redhat.com>
19558 L:      linux-usb@vger.kernel.org
19559 S:      Supported
19560 F:      drivers/usb/class/usblp.c
19561
19562 USB RAW GADGET DRIVER
19563 R:      Andrey Konovalov <andreyknvl@gmail.com>
19564 L:      linux-usb@vger.kernel.org
19565 S:      Maintained
19566 F:      Documentation/usb/raw-gadget.rst
19567 F:      drivers/usb/gadget/legacy/raw_gadget.c
19568 F:      include/uapi/linux/usb/raw_gadget.h
19569
19570 USB QMI WWAN NETWORK DRIVER
19571 M:      Bjørn Mork <bjorn@mork.no>
19572 L:      netdev@vger.kernel.org
19573 S:      Maintained
19574 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19575 F:      drivers/net/usb/qmi_wwan.c
19576
19577 USB RTL8150 DRIVER
19578 M:      Petko Manolov <petkan@nucleusys.com>
19579 L:      linux-usb@vger.kernel.org
19580 L:      netdev@vger.kernel.org
19581 S:      Maintained
19582 W:      https://github.com/petkan/rtl8150
19583 T:      git git://github.com/petkan/rtl8150.git
19584 F:      drivers/net/usb/rtl8150.c
19585
19586 USB SERIAL SUBSYSTEM
19587 M:      Johan Hovold <johan@kernel.org>
19588 L:      linux-usb@vger.kernel.org
19589 S:      Maintained
19590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19591 F:      Documentation/usb/usb-serial.rst
19592 F:      drivers/usb/serial/
19593 F:      include/linux/usb/serial.h
19594
19595 USB SMSC75XX ETHERNET DRIVER
19596 M:      Steve Glendinning <steve.glendinning@shawell.net>
19597 L:      netdev@vger.kernel.org
19598 S:      Maintained
19599 F:      drivers/net/usb/smsc75xx.*
19600
19601 USB SMSC95XX ETHERNET DRIVER
19602 M:      Steve Glendinning <steve.glendinning@shawell.net>
19603 M:      UNGLinuxDriver@microchip.com
19604 L:      netdev@vger.kernel.org
19605 S:      Maintained
19606 F:      drivers/net/usb/smsc95xx.*
19607
19608 USB SUBSYSTEM
19609 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19610 L:      linux-usb@vger.kernel.org
19611 S:      Supported
19612 W:      http://www.linux-usb.org
19613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19614 F:      Documentation/devicetree/bindings/usb/
19615 F:      Documentation/usb/
19616 F:      drivers/usb/
19617 F:      include/linux/usb.h
19618 F:      include/linux/usb/
19619
19620 USB TYPEC BUS FOR ALTERNATE MODES
19621 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19622 L:      linux-usb@vger.kernel.org
19623 S:      Maintained
19624 F:      Documentation/ABI/testing/sysfs-bus-typec
19625 F:      Documentation/driver-api/usb/typec_bus.rst
19626 F:      drivers/usb/typec/altmodes/
19627 F:      include/linux/usb/typec_altmode.h
19628
19629 USB TYPEC CLASS
19630 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19631 L:      linux-usb@vger.kernel.org
19632 S:      Maintained
19633 F:      Documentation/ABI/testing/sysfs-class-typec
19634 F:      Documentation/driver-api/usb/typec.rst
19635 F:      drivers/usb/typec/
19636 F:      include/linux/usb/typec.h
19637
19638 USB TYPEC INTEL PMC MUX DRIVER
19639 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19640 L:      linux-usb@vger.kernel.org
19641 S:      Maintained
19642 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19643 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19644
19645 USB TYPEC PI3USB30532 MUX DRIVER
19646 M:      Hans de Goede <hdegoede@redhat.com>
19647 L:      linux-usb@vger.kernel.org
19648 S:      Maintained
19649 F:      drivers/usb/typec/mux/pi3usb30532.c
19650
19651 USB TYPEC PORT CONTROLLER DRIVERS
19652 M:      Guenter Roeck <linux@roeck-us.net>
19653 L:      linux-usb@vger.kernel.org
19654 S:      Maintained
19655 F:      drivers/usb/typec/tcpm/
19656
19657 USB UHCI DRIVER
19658 M:      Alan Stern <stern@rowland.harvard.edu>
19659 L:      linux-usb@vger.kernel.org
19660 S:      Maintained
19661 F:      drivers/usb/host/uhci*
19662
19663 USB VIDEO CLASS
19664 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19665 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19666 L:      linux-media@vger.kernel.org
19667 S:      Maintained
19668 W:      http://www.ideasonboard.org/uvc/
19669 T:      git git://linuxtv.org/media_tree.git
19670 F:      drivers/media/usb/uvc/
19671 F:      include/uapi/linux/uvcvideo.h
19672
19673 USB WEBCAM GADGET
19674 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19675 L:      linux-usb@vger.kernel.org
19676 S:      Maintained
19677 F:      drivers/usb/gadget/function/*uvc*
19678 F:      drivers/usb/gadget/legacy/webcam.c
19679 F:      include/uapi/linux/usb/g_uvc.h
19680
19681 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19682 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19683 L:      linux-wireless@vger.kernel.org
19684 S:      Maintained
19685 F:      drivers/net/wireless/rndis_wlan.c
19686
19687 USB XHCI DRIVER
19688 M:      Mathias Nyman <mathias.nyman@intel.com>
19689 L:      linux-usb@vger.kernel.org
19690 S:      Supported
19691 F:      drivers/usb/host/pci-quirks*
19692 F:      drivers/usb/host/xhci*
19693
19694 USB ZD1201 DRIVER
19695 L:      linux-wireless@vger.kernel.org
19696 S:      Orphan
19697 W:      http://linux-lc100020.sourceforge.net
19698 F:      drivers/net/wireless/zydas/zd1201.*
19699
19700 USB ZR364XX DRIVER
19701 M:      Antoine Jacquet <royale@zerezo.com>
19702 L:      linux-usb@vger.kernel.org
19703 L:      linux-media@vger.kernel.org
19704 S:      Maintained
19705 W:      http://royale.zerezo.com/zr364xx/
19706 T:      git git://linuxtv.org/media_tree.git
19707 F:      Documentation/admin-guide/media/zr364xx*
19708 F:      drivers/media/usb/zr364xx/
19709
19710 USER-MODE LINUX (UML)
19711 M:      Jeff Dike <jdike@addtoit.com>
19712 M:      Richard Weinberger <richard@nod.at>
19713 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19714 L:      linux-um@lists.infradead.org
19715 S:      Maintained
19716 W:      http://user-mode-linux.sourceforge.net
19717 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19719 F:      Documentation/virt/uml/
19720 F:      arch/um/
19721 F:      arch/x86/um/
19722 F:      fs/hostfs/
19723
19724 USERSPACE COPYIN/COPYOUT (UIOVEC)
19725 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19726 S:      Maintained
19727 F:      include/linux/uio.h
19728 F:      lib/iov_iter.c
19729
19730 USERSPACE DMA BUFFER DRIVER
19731 M:      Gerd Hoffmann <kraxel@redhat.com>
19732 L:      dri-devel@lists.freedesktop.org
19733 S:      Maintained
19734 T:      git git://anongit.freedesktop.org/drm/drm-misc
19735 F:      drivers/dma-buf/udmabuf.c
19736 F:      include/uapi/linux/udmabuf.h
19737
19738 USERSPACE I/O (UIO)
19739 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19740 S:      Maintained
19741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19742 F:      Documentation/driver-api/uio-howto.rst
19743 F:      drivers/uio/
19744 F:      include/linux/uio_driver.h
19745
19746 UTIL-LINUX PACKAGE
19747 M:      Karel Zak <kzak@redhat.com>
19748 L:      util-linux@vger.kernel.org
19749 S:      Maintained
19750 W:      http://en.wikipedia.org/wiki/Util-linux
19751 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19752
19753 UUID HELPERS
19754 M:      Christoph Hellwig <hch@lst.de>
19755 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19756 L:      linux-kernel@vger.kernel.org
19757 S:      Maintained
19758 T:      git git://git.infradead.org/users/hch/uuid.git
19759 F:      include/linux/uuid.h
19760 F:      include/uapi/linux/uuid.h
19761 F:      lib/test_uuid.c
19762 F:      lib/uuid.c
19763
19764 UV SYSFS DRIVER
19765 M:      Justin Ernst <justin.ernst@hpe.com>
19766 L:      platform-driver-x86@vger.kernel.org
19767 S:      Maintained
19768 F:      drivers/platform/x86/uv_sysfs.c
19769
19770 UVESAFB DRIVER
19771 M:      Michal Januszewski <spock@gentoo.org>
19772 L:      linux-fbdev@vger.kernel.org
19773 S:      Maintained
19774 W:      https://github.com/mjanusz/v86d
19775 F:      Documentation/fb/uvesafb.rst
19776 F:      drivers/video/fbdev/uvesafb.*
19777
19778 Ux500 CLOCK DRIVERS
19779 M:      Ulf Hansson <ulf.hansson@linaro.org>
19780 L:      linux-clk@vger.kernel.org
19781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19782 S:      Maintained
19783 F:      drivers/clk/ux500/
19784
19785 VF610 NAND DRIVER
19786 M:      Stefan Agner <stefan@agner.ch>
19787 L:      linux-mtd@lists.infradead.org
19788 S:      Supported
19789 F:      drivers/mtd/nand/raw/vf610_nfc.c
19790
19791 VFAT/FAT/MSDOS FILESYSTEM
19792 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19793 S:      Maintained
19794 F:      Documentation/filesystems/vfat.rst
19795 F:      fs/fat/
19796
19797 VFIO DRIVER
19798 M:      Alex Williamson <alex.williamson@redhat.com>
19799 R:      Cornelia Huck <cohuck@redhat.com>
19800 L:      kvm@vger.kernel.org
19801 S:      Maintained
19802 T:      git git://github.com/awilliam/linux-vfio.git
19803 F:      Documentation/driver-api/vfio.rst
19804 F:      drivers/vfio/
19805 F:      include/linux/vfio.h
19806 F:      include/linux/vfio_pci_core.h
19807 F:      include/uapi/linux/vfio.h
19808
19809 VFIO FSL-MC DRIVER
19810 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19811 L:      kvm@vger.kernel.org
19812 S:      Maintained
19813 F:      drivers/vfio/fsl-mc/
19814
19815 VFIO MEDIATED DEVICE DRIVERS
19816 M:      Kirti Wankhede <kwankhede@nvidia.com>
19817 L:      kvm@vger.kernel.org
19818 S:      Maintained
19819 F:      Documentation/driver-api/vfio-mediated-device.rst
19820 F:      drivers/vfio/mdev/
19821 F:      include/linux/mdev.h
19822 F:      samples/vfio-mdev/
19823
19824 VFIO PLATFORM DRIVER
19825 M:      Eric Auger <eric.auger@redhat.com>
19826 L:      kvm@vger.kernel.org
19827 S:      Maintained
19828 F:      drivers/vfio/platform/
19829
19830 VGA_SWITCHEROO
19831 R:      Lukas Wunner <lukas@wunner.de>
19832 S:      Maintained
19833 T:      git git://anongit.freedesktop.org/drm/drm-misc
19834 F:      Documentation/gpu/vga-switcheroo.rst
19835 F:      drivers/gpu/vga/vga_switcheroo.c
19836 F:      include/linux/vga_switcheroo.h
19837
19838 VIA RHINE NETWORK DRIVER
19839 S:      Maintained
19840 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19841 F:      drivers/net/ethernet/via/via-rhine.c
19842
19843 VIA SD/MMC CARD CONTROLLER DRIVER
19844 M:      Bruce Chang <brucechang@via.com.tw>
19845 M:      Harald Welte <HaraldWelte@viatech.com>
19846 S:      Maintained
19847 F:      drivers/mmc/host/via-sdmmc.c
19848
19849 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19850 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19851 L:      linux-fbdev@vger.kernel.org
19852 S:      Maintained
19853 F:      drivers/video/fbdev/via/
19854 F:      include/linux/via-core.h
19855 F:      include/linux/via-gpio.h
19856 F:      include/linux/via_i2c.h
19857
19858 VIA VELOCITY NETWORK DRIVER
19859 M:      Francois Romieu <romieu@fr.zoreil.com>
19860 L:      netdev@vger.kernel.org
19861 S:      Maintained
19862 F:      drivers/net/ethernet/via/via-velocity.*
19863
19864 VICODEC VIRTUAL CODEC DRIVER
19865 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19866 L:      linux-media@vger.kernel.org
19867 S:      Maintained
19868 W:      https://linuxtv.org
19869 T:      git git://linuxtv.org/media_tree.git
19870 F:      drivers/media/test-drivers/vicodec/*
19871
19872 VIDEO I2C POLLING DRIVER
19873 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19874 L:      linux-media@vger.kernel.org
19875 S:      Maintained
19876 F:      drivers/media/i2c/video-i2c.c
19877
19878 VIDEO MULTIPLEXER DRIVER
19879 M:      Philipp Zabel <p.zabel@pengutronix.de>
19880 L:      linux-media@vger.kernel.org
19881 S:      Maintained
19882 F:      drivers/media/platform/video-mux.c
19883
19884 VIDEOBUF2 FRAMEWORK
19885 M:      Tomasz Figa <tfiga@chromium.org>
19886 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19887 L:      linux-media@vger.kernel.org
19888 S:      Maintained
19889 F:      drivers/media/common/videobuf2/*
19890 F:      include/media/videobuf2-*
19891
19892 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19893 M:      Helen Koike <helen.koike@collabora.com>
19894 R:      Shuah Khan <skhan@linuxfoundation.org>
19895 L:      linux-media@vger.kernel.org
19896 S:      Maintained
19897 W:      https://linuxtv.org
19898 T:      git git://linuxtv.org/media_tree.git
19899 F:      drivers/media/test-drivers/vimc/*
19900
19901 VIRT LIB
19902 M:      Alex Williamson <alex.williamson@redhat.com>
19903 M:      Paolo Bonzini <pbonzini@redhat.com>
19904 L:      kvm@vger.kernel.org
19905 S:      Supported
19906 F:      virt/lib/
19907
19908 VIRTIO AND VHOST VSOCK DRIVER
19909 M:      Stefan Hajnoczi <stefanha@redhat.com>
19910 M:      Stefano Garzarella <sgarzare@redhat.com>
19911 L:      kvm@vger.kernel.org
19912 L:      virtualization@lists.linux-foundation.org
19913 L:      netdev@vger.kernel.org
19914 S:      Maintained
19915 F:      drivers/vhost/vsock.c
19916 F:      include/linux/virtio_vsock.h
19917 F:      include/uapi/linux/virtio_vsock.h
19918 F:      net/vmw_vsock/virtio_transport.c
19919 F:      net/vmw_vsock/virtio_transport_common.c
19920
19921 VIRTIO BLOCK AND SCSI DRIVERS
19922 M:      "Michael S. Tsirkin" <mst@redhat.com>
19923 M:      Jason Wang <jasowang@redhat.com>
19924 R:      Paolo Bonzini <pbonzini@redhat.com>
19925 R:      Stefan Hajnoczi <stefanha@redhat.com>
19926 L:      virtualization@lists.linux-foundation.org
19927 S:      Maintained
19928 F:      drivers/block/virtio_blk.c
19929 F:      drivers/scsi/virtio_scsi.c
19930 F:      drivers/vhost/scsi.c
19931 F:      include/uapi/linux/virtio_blk.h
19932 F:      include/uapi/linux/virtio_scsi.h
19933
19934 VIRTIO CONSOLE DRIVER
19935 M:      Amit Shah <amit@kernel.org>
19936 L:      virtualization@lists.linux-foundation.org
19937 S:      Maintained
19938 F:      drivers/char/virtio_console.c
19939 F:      include/linux/virtio_console.h
19940 F:      include/uapi/linux/virtio_console.h
19941
19942 VIRTIO CORE AND NET DRIVERS
19943 M:      "Michael S. Tsirkin" <mst@redhat.com>
19944 M:      Jason Wang <jasowang@redhat.com>
19945 L:      virtualization@lists.linux-foundation.org
19946 S:      Maintained
19947 F:      Documentation/devicetree/bindings/virtio/
19948 F:      drivers/block/virtio_blk.c
19949 F:      drivers/crypto/virtio/
19950 F:      drivers/net/virtio_net.c
19951 F:      drivers/vdpa/
19952 F:      drivers/virtio/
19953 F:      include/linux/vdpa.h
19954 F:      include/linux/virtio*.h
19955 F:      include/uapi/linux/virtio_*.h
19956 F:      tools/virtio/
19957
19958 VIRTIO BALLOON
19959 M:      "Michael S. Tsirkin" <mst@redhat.com>
19960 M:      David Hildenbrand <david@redhat.com>
19961 L:      virtualization@lists.linux-foundation.org
19962 S:      Maintained
19963 F:      drivers/virtio/virtio_balloon.c
19964 F:      include/uapi/linux/virtio_balloon.h
19965 F:      include/linux/balloon_compaction.h
19966 F:      mm/balloon_compaction.c
19967
19968 VIRTIO CRYPTO DRIVER
19969 M:      Gonglei <arei.gonglei@huawei.com>
19970 L:      virtualization@lists.linux-foundation.org
19971 L:      linux-crypto@vger.kernel.org
19972 S:      Maintained
19973 F:      drivers/crypto/virtio/
19974 F:      include/uapi/linux/virtio_crypto.h
19975
19976 VIRTIO DRIVERS FOR S390
19977 M:      Cornelia Huck <cohuck@redhat.com>
19978 M:      Halil Pasic <pasic@linux.ibm.com>
19979 L:      linux-s390@vger.kernel.org
19980 L:      virtualization@lists.linux-foundation.org
19981 L:      kvm@vger.kernel.org
19982 S:      Supported
19983 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19984 F:      drivers/s390/virtio/
19985
19986 VIRTIO FILE SYSTEM
19987 M:      Vivek Goyal <vgoyal@redhat.com>
19988 M:      Stefan Hajnoczi <stefanha@redhat.com>
19989 M:      Miklos Szeredi <miklos@szeredi.hu>
19990 L:      virtualization@lists.linux-foundation.org
19991 L:      linux-fsdevel@vger.kernel.org
19992 S:      Supported
19993 W:      https://virtio-fs.gitlab.io/
19994 F:      Documentation/filesystems/virtiofs.rst
19995 F:      fs/fuse/virtio_fs.c
19996 F:      include/uapi/linux/virtio_fs.h
19997
19998 VIRTIO GPIO DRIVER
19999 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20000 M:      Viresh Kumar <vireshk@kernel.org>
20001 L:      linux-gpio@vger.kernel.org
20002 L:      virtualization@lists.linux-foundation.org
20003 S:      Maintained
20004 F:      drivers/gpio/gpio-virtio.c
20005 F:      include/uapi/linux/virtio_gpio.h
20006
20007 VIRTIO GPU DRIVER
20008 M:      David Airlie <airlied@linux.ie>
20009 M:      Gerd Hoffmann <kraxel@redhat.com>
20010 L:      dri-devel@lists.freedesktop.org
20011 L:      virtualization@lists.linux-foundation.org
20012 S:      Maintained
20013 T:      git git://anongit.freedesktop.org/drm/drm-misc
20014 F:      drivers/gpu/drm/virtio/
20015 F:      include/uapi/linux/virtio_gpu.h
20016
20017 VIRTIO HOST (VHOST)
20018 M:      "Michael S. Tsirkin" <mst@redhat.com>
20019 M:      Jason Wang <jasowang@redhat.com>
20020 L:      kvm@vger.kernel.org
20021 L:      virtualization@lists.linux-foundation.org
20022 L:      netdev@vger.kernel.org
20023 S:      Maintained
20024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20025 F:      drivers/vhost/
20026 F:      include/linux/vhost_iotlb.h
20027 F:      include/uapi/linux/vhost.h
20028
20029 VIRTIO INPUT DRIVER
20030 M:      Gerd Hoffmann <kraxel@redhat.com>
20031 S:      Maintained
20032 F:      drivers/virtio/virtio_input.c
20033 F:      include/uapi/linux/virtio_input.h
20034
20035 VIRTIO IOMMU DRIVER
20036 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20037 L:      virtualization@lists.linux-foundation.org
20038 S:      Maintained
20039 F:      drivers/iommu/virtio-iommu.c
20040 F:      include/uapi/linux/virtio_iommu.h
20041
20042 VIRTIO MEM DRIVER
20043 M:      David Hildenbrand <david@redhat.com>
20044 L:      virtualization@lists.linux-foundation.org
20045 S:      Maintained
20046 W:      https://virtio-mem.gitlab.io/
20047 F:      drivers/virtio/virtio_mem.c
20048 F:      include/uapi/linux/virtio_mem.h
20049
20050 VIRTIO SOUND DRIVER
20051 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20052 M:      "Michael S. Tsirkin" <mst@redhat.com>
20053 L:      virtualization@lists.linux-foundation.org
20054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20055 S:      Maintained
20056 F:      include/uapi/linux/virtio_snd.h
20057 F:      sound/virtio/*
20058
20059 VIRTIO I2C DRIVER
20060 M:      Jie Deng <jie.deng@intel.com>
20061 M:      Viresh Kumar <viresh.kumar@linaro.org>
20062 L:      linux-i2c@vger.kernel.org
20063 L:      virtualization@lists.linux-foundation.org
20064 S:      Maintained
20065 F:      drivers/i2c/busses/i2c-virtio.c
20066 F:      include/uapi/linux/virtio_i2c.h
20067
20068 VIRTUAL BOX GUEST DEVICE DRIVER
20069 M:      Hans de Goede <hdegoede@redhat.com>
20070 M:      Arnd Bergmann <arnd@arndb.de>
20071 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20072 S:      Maintained
20073 F:      drivers/virt/vboxguest/
20074 F:      include/linux/vbox_utils.h
20075 F:      include/uapi/linux/vbox*.h
20076
20077 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20078 M:      Hans de Goede <hdegoede@redhat.com>
20079 L:      linux-fsdevel@vger.kernel.org
20080 S:      Maintained
20081 F:      fs/vboxsf/*
20082
20083 VIRTUAL SERIO DEVICE DRIVER
20084 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20085 S:      Maintained
20086 F:      drivers/input/serio/userio.c
20087 F:      include/uapi/linux/userio.h
20088
20089 VIVID VIRTUAL VIDEO DRIVER
20090 M:      Hans Verkuil <hverkuil@xs4all.nl>
20091 L:      linux-media@vger.kernel.org
20092 S:      Maintained
20093 W:      https://linuxtv.org
20094 T:      git git://linuxtv.org/media_tree.git
20095 F:      drivers/media/test-drivers/vivid/*
20096
20097 VIDTV VIRTUAL DIGITAL TV DRIVER
20098 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20099 L:      linux-media@vger.kernel.org
20100 S:      Maintained
20101 W:      https://linuxtv.org
20102 T:      git git://linuxtv.org/media_tree.git
20103 F:      drivers/media/test-drivers/vidtv/*
20104
20105 VLYNQ BUS
20106 M:      Florian Fainelli <f.fainelli@gmail.com>
20107 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20108 S:      Maintained
20109 F:      drivers/vlynq/vlynq.c
20110 F:      include/linux/vlynq.h
20111
20112 VME SUBSYSTEM
20113 M:      Martyn Welch <martyn@welchs.me.uk>
20114 M:      Manohar Vanga <manohar.vanga@gmail.com>
20115 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20116 L:      linux-kernel@vger.kernel.org
20117 S:      Maintained
20118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20119 F:      Documentation/driver-api/vme.rst
20120 F:      drivers/staging/vme/
20121 F:      drivers/vme/
20122 F:      include/linux/vme*
20123
20124 VM SOCKETS (AF_VSOCK)
20125 M:      Stefano Garzarella <sgarzare@redhat.com>
20126 L:      virtualization@lists.linux-foundation.org
20127 L:      netdev@vger.kernel.org
20128 S:      Maintained
20129 F:      drivers/net/vsockmon.c
20130 F:      include/net/af_vsock.h
20131 F:      include/uapi/linux/vm_sockets.h
20132 F:      include/uapi/linux/vm_sockets_diag.h
20133 F:      include/uapi/linux/vsockmon.h
20134 F:      net/vmw_vsock/
20135 F:      tools/testing/vsock/
20136
20137 VMWARE BALLOON DRIVER
20138 M:      Nadav Amit <namit@vmware.com>
20139 M:      "VMware, Inc." <pv-drivers@vmware.com>
20140 L:      linux-kernel@vger.kernel.org
20141 S:      Maintained
20142 F:      drivers/misc/vmw_balloon.c
20143
20144 VMWARE HYPERVISOR INTERFACE
20145 M:      Deep Shah <sdeep@vmware.com>
20146 M:      "VMware, Inc." <pv-drivers@vmware.com>
20147 L:      virtualization@lists.linux-foundation.org
20148 S:      Supported
20149 F:      arch/x86/include/asm/vmware.h
20150 F:      arch/x86/kernel/cpu/vmware.c
20151
20152 VMWARE PVRDMA DRIVER
20153 M:      Adit Ranadive <aditr@vmware.com>
20154 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20155 L:      linux-rdma@vger.kernel.org
20156 S:      Maintained
20157 F:      drivers/infiniband/hw/vmw_pvrdma/
20158
20159 VMware PVSCSI driver
20160 M:      Vishal Bhakta <vbhakta@vmware.com>
20161 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20162 L:      linux-scsi@vger.kernel.org
20163 S:      Maintained
20164 F:      drivers/scsi/vmw_pvscsi.c
20165 F:      drivers/scsi/vmw_pvscsi.h
20166
20167 VMWARE VIRTUAL PTP CLOCK DRIVER
20168 M:      Vivek Thampi <vithampi@vmware.com>
20169 M:      "VMware, Inc." <pv-drivers@vmware.com>
20170 L:      netdev@vger.kernel.org
20171 S:      Supported
20172 F:      drivers/ptp/ptp_vmw.c
20173
20174 VMWARE VMCI DRIVER
20175 M:      Jorgen Hansen <jhansen@vmware.com>
20176 M:      Vishnu Dasa <vdasa@vmware.com>
20177 L:      linux-kernel@vger.kernel.org
20178 L:      pv-drivers@vmware.com (private)
20179 S:      Maintained
20180 F:      drivers/misc/vmw_vmci/
20181
20182 VMWARE VMMOUSE SUBDRIVER
20183 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20184 M:      "VMware, Inc." <pv-drivers@vmware.com>
20185 L:      linux-input@vger.kernel.org
20186 S:      Maintained
20187 F:      drivers/input/mouse/vmmouse.c
20188 F:      drivers/input/mouse/vmmouse.h
20189
20190 VMWARE VMXNET3 ETHERNET DRIVER
20191 M:      Ronak Doshi <doshir@vmware.com>
20192 M:      pv-drivers@vmware.com
20193 L:      netdev@vger.kernel.org
20194 S:      Maintained
20195 F:      drivers/net/vmxnet3/
20196
20197 VOCORE VOCORE2 BOARD
20198 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20199 L:      linux-mips@vger.kernel.org
20200 S:      Maintained
20201 F:      arch/mips/boot/dts/ralink/vocore2.dts
20202
20203 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20204 M:      Liam Girdwood <lgirdwood@gmail.com>
20205 M:      Mark Brown <broonie@kernel.org>
20206 L:      linux-kernel@vger.kernel.org
20207 S:      Supported
20208 W:      http://www.slimlogic.co.uk/?p=48
20209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20210 F:      Documentation/devicetree/bindings/regulator/
20211 F:      Documentation/power/regulator/
20212 F:      drivers/regulator/
20213 F:      include/dt-bindings/regulator/
20214 F:      include/linux/regulator/
20215 K:      regulator_get_optional
20216
20217 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20218 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20219 F:      drivers/regulator/irq_helpers.c
20220
20221 VRF
20222 M:      David Ahern <dsahern@kernel.org>
20223 L:      netdev@vger.kernel.org
20224 S:      Maintained
20225 F:      Documentation/networking/vrf.rst
20226 F:      drivers/net/vrf.c
20227
20228 VSPRINTF
20229 M:      Petr Mladek <pmladek@suse.com>
20230 M:      Steven Rostedt <rostedt@goodmis.org>
20231 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20232 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20233 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20234 S:      Maintained
20235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20236 F:      Documentation/core-api/printk-formats.rst
20237 F:      lib/test_printf.c
20238 F:      lib/test_scanf.c
20239 F:      lib/vsprintf.c
20240
20241 VT1211 HARDWARE MONITOR DRIVER
20242 M:      Juerg Haefliger <juergh@gmail.com>
20243 L:      linux-hwmon@vger.kernel.org
20244 S:      Maintained
20245 F:      Documentation/hwmon/vt1211.rst
20246 F:      drivers/hwmon/vt1211.c
20247
20248 VT8231 HARDWARE MONITOR DRIVER
20249 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20250 L:      linux-hwmon@vger.kernel.org
20251 S:      Maintained
20252 F:      drivers/hwmon/vt8231.c
20253
20254 VUB300 USB to SDIO/SD/MMC bridge chip
20255 L:      linux-mmc@vger.kernel.org
20256 S:      Orphan
20257 F:      drivers/mmc/host/vub300.c
20258
20259 W1 DALLAS'S 1-WIRE BUS
20260 M:      Evgeniy Polyakov <zbr@ioremap.net>
20261 S:      Maintained
20262 F:      Documentation/devicetree/bindings/w1/
20263 F:      Documentation/w1/
20264 F:      drivers/w1/
20265 F:      include/linux/w1.h
20266
20267 W83791D HARDWARE MONITORING DRIVER
20268 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20269 L:      linux-hwmon@vger.kernel.org
20270 S:      Maintained
20271 F:      Documentation/hwmon/w83791d.rst
20272 F:      drivers/hwmon/w83791d.c
20273
20274 W83793 HARDWARE MONITORING DRIVER
20275 M:      Rudolf Marek <r.marek@assembler.cz>
20276 L:      linux-hwmon@vger.kernel.org
20277 S:      Maintained
20278 F:      Documentation/hwmon/w83793.rst
20279 F:      drivers/hwmon/w83793.c
20280
20281 W83795 HARDWARE MONITORING DRIVER
20282 M:      Jean Delvare <jdelvare@suse.com>
20283 L:      linux-hwmon@vger.kernel.org
20284 S:      Maintained
20285 F:      drivers/hwmon/w83795.c
20286
20287 W83L51xD SD/MMC CARD INTERFACE DRIVER
20288 M:      Pierre Ossman <pierre@ossman.eu>
20289 S:      Maintained
20290 F:      drivers/mmc/host/wbsd.*
20291
20292 WACOM PROTOCOL 4 SERIAL TABLETS
20293 M:      Julian Squires <julian@cipht.net>
20294 M:      Hans de Goede <hdegoede@redhat.com>
20295 L:      linux-input@vger.kernel.org
20296 S:      Maintained
20297 F:      drivers/input/tablet/wacom_serial4.c
20298
20299 WATCHDOG DEVICE DRIVERS
20300 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20301 M:      Guenter Roeck <linux@roeck-us.net>
20302 L:      linux-watchdog@vger.kernel.org
20303 S:      Maintained
20304 W:      http://www.linux-watchdog.org/
20305 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20306 F:      Documentation/devicetree/bindings/watchdog/
20307 F:      Documentation/watchdog/
20308 F:      drivers/watchdog/
20309 F:      include/linux/watchdog.h
20310 F:      include/uapi/linux/watchdog.h
20311
20312 WHISKEYCOVE PMIC GPIO DRIVER
20313 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20314 L:      linux-gpio@vger.kernel.org
20315 S:      Maintained
20316 F:      drivers/gpio/gpio-wcove.c
20317
20318 WHWAVE RTC DRIVER
20319 M:      Dianlong Li <long17.cool@163.com>
20320 L:      linux-rtc@vger.kernel.org
20321 S:      Maintained
20322 F:      drivers/rtc/rtc-sd3078.c
20323
20324 WIIMOTE HID DRIVER
20325 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20326 L:      linux-input@vger.kernel.org
20327 S:      Maintained
20328 F:      drivers/hid/hid-wiimote*
20329
20330 WILOCITY WIL6210 WIRELESS DRIVER
20331 M:      Maya Erez <merez@codeaurora.org>
20332 L:      linux-wireless@vger.kernel.org
20333 L:      wil6210@qti.qualcomm.com
20334 S:      Supported
20335 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20336 F:      drivers/net/wireless/ath/wil6210/
20337
20338 WINBOND CIR DRIVER
20339 M:      David Härdeman <david@hardeman.nu>
20340 S:      Maintained
20341 F:      drivers/media/rc/winbond-cir.c
20342
20343 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20344 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20345 L:      linux-watchdog@vger.kernel.org
20346 S:      Maintained
20347 F:      drivers/watchdog/ebc-c384_wdt.c
20348
20349 WINSYSTEMS WS16C48 GPIO DRIVER
20350 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20351 L:      linux-gpio@vger.kernel.org
20352 S:      Maintained
20353 F:      drivers/gpio/gpio-ws16c48.c
20354
20355 WIREGUARD SECURE NETWORK TUNNEL
20356 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20357 L:      wireguard@lists.zx2c4.com
20358 L:      netdev@vger.kernel.org
20359 S:      Maintained
20360 F:      drivers/net/wireguard/
20361 F:      tools/testing/selftests/wireguard/
20362
20363 WISTRON LAPTOP BUTTON DRIVER
20364 M:      Miloslav Trmac <mitr@volny.cz>
20365 S:      Maintained
20366 F:      drivers/input/misc/wistron_btns.c
20367
20368 WL3501 WIRELESS PCMCIA CARD DRIVER
20369 L:      linux-wireless@vger.kernel.org
20370 S:      Odd fixes
20371 F:      drivers/net/wireless/wl3501*
20372
20373 WOLFSON MICROELECTRONICS DRIVERS
20374 L:      patches@opensource.cirrus.com
20375 S:      Supported
20376 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20377 T:      git https://github.com/CirrusLogic/linux-drivers.git
20378 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20379 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20380 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20381 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20382 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20383 F:      Documentation/devicetree/bindings/sound/wm*
20384 F:      Documentation/hwmon/wm83??.rst
20385 F:      arch/arm/mach-s3c/mach-crag6410*
20386 F:      drivers/clk/clk-wm83*.c
20387 F:      drivers/gpio/gpio-*wm*.c
20388 F:      drivers/gpio/gpio-arizona.c
20389 F:      drivers/hwmon/wm83??-hwmon.c
20390 F:      drivers/input/misc/wm831x-on.c
20391 F:      drivers/input/touchscreen/wm831x-ts.c
20392 F:      drivers/input/touchscreen/wm97*.c
20393 F:      drivers/leds/leds-wm83*.c
20394 F:      drivers/mfd/arizona*
20395 F:      drivers/mfd/cs47l24*
20396 F:      drivers/mfd/wm*.c
20397 F:      drivers/power/supply/wm83*.c
20398 F:      drivers/regulator/arizona*
20399 F:      drivers/regulator/wm8*.c
20400 F:      drivers/rtc/rtc-wm83*.c
20401 F:      drivers/video/backlight/wm83*_bl.c
20402 F:      drivers/watchdog/wm83*_wdt.c
20403 F:      include/linux/mfd/arizona/
20404 F:      include/linux/mfd/wm831x/
20405 F:      include/linux/mfd/wm8350/
20406 F:      include/linux/mfd/wm8400*
20407 F:      include/linux/regulator/arizona*
20408 F:      include/linux/wm97xx.h
20409 F:      include/sound/wm????.h
20410 F:      sound/soc/codecs/arizona*
20411 F:      sound/soc/codecs/cs47l24*
20412 F:      sound/soc/codecs/wm*
20413
20414 WORKQUEUE
20415 M:      Tejun Heo <tj@kernel.org>
20416 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20417 S:      Maintained
20418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20419 F:      Documentation/core-api/workqueue.rst
20420 F:      include/linux/workqueue.h
20421 F:      kernel/workqueue.c
20422
20423 WWAN DRIVERS
20424 M:      Loic Poulain <loic.poulain@linaro.org>
20425 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20426 R:      Johannes Berg <johannes@sipsolutions.net>
20427 L:      netdev@vger.kernel.org
20428 S:      Maintained
20429 F:      drivers/net/wwan/
20430 F:      include/linux/wwan.h
20431 F:      include/uapi/linux/wwan.h
20432
20433 X-POWERS AXP288 PMIC DRIVERS
20434 M:      Hans de Goede <hdegoede@redhat.com>
20435 S:      Maintained
20436 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20437 N:      axp288
20438
20439 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20440 M:      Chen-Yu Tsai <wens@csie.org>
20441 L:      linux-kernel@vger.kernel.org
20442 S:      Maintained
20443 N:      axp[128]
20444
20445 X.25 STACK
20446 M:      Martin Schiller <ms@dev.tdt.de>
20447 L:      linux-x25@vger.kernel.org
20448 S:      Maintained
20449 F:      Documentation/networking/lapb-module.rst
20450 F:      Documentation/networking/x25*
20451 F:      drivers/net/wan/hdlc_x25.c
20452 F:      drivers/net/wan/lapbether.c
20453 F:      include/*/lapb.h
20454 F:      include/net/x25*
20455 F:      include/uapi/linux/x25.h
20456 F:      net/lapb/
20457 F:      net/x25/
20458
20459 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20460 M:      Thomas Gleixner <tglx@linutronix.de>
20461 M:      Ingo Molnar <mingo@redhat.com>
20462 M:      Borislav Petkov <bp@alien8.de>
20463 M:      Dave Hansen <dave.hansen@linux.intel.com>
20464 M:      x86@kernel.org
20465 R:      "H. Peter Anvin" <hpa@zytor.com>
20466 L:      linux-kernel@vger.kernel.org
20467 S:      Maintained
20468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20469 F:      Documentation/devicetree/bindings/x86/
20470 F:      Documentation/x86/
20471 F:      arch/x86/
20472
20473 X86 ENTRY CODE
20474 M:      Andy Lutomirski <luto@kernel.org>
20475 L:      linux-kernel@vger.kernel.org
20476 S:      Maintained
20477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20478 F:      arch/x86/entry/
20479
20480 X86 MCE INFRASTRUCTURE
20481 M:      Tony Luck <tony.luck@intel.com>
20482 M:      Borislav Petkov <bp@alien8.de>
20483 L:      linux-edac@vger.kernel.org
20484 S:      Maintained
20485 F:      arch/x86/kernel/cpu/mce/*
20486
20487 X86 MICROCODE UPDATE SUPPORT
20488 M:      Borislav Petkov <bp@alien8.de>
20489 S:      Maintained
20490 F:      arch/x86/kernel/cpu/microcode/*
20491
20492 X86 MM
20493 M:      Dave Hansen <dave.hansen@linux.intel.com>
20494 M:      Andy Lutomirski <luto@kernel.org>
20495 M:      Peter Zijlstra <peterz@infradead.org>
20496 L:      linux-kernel@vger.kernel.org
20497 S:      Maintained
20498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20499 F:      arch/x86/mm/
20500
20501 X86 PLATFORM DRIVERS
20502 M:      Hans de Goede <hdegoede@redhat.com>
20503 M:      Mark Gross <markgross@kernel.org>
20504 L:      platform-driver-x86@vger.kernel.org
20505 S:      Maintained
20506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20507 F:      drivers/platform/olpc/
20508 F:      drivers/platform/x86/
20509
20510 X86 PLATFORM DRIVERS - ARCH
20511 R:      Darren Hart <dvhart@infradead.org>
20512 R:      Andy Shevchenko <andy@infradead.org>
20513 L:      platform-driver-x86@vger.kernel.org
20514 L:      x86@kernel.org
20515 S:      Maintained
20516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20517 F:      arch/x86/platform
20518
20519 X86 PLATFORM UV HPE SUPERDOME FLEX
20520 M:      Steve Wahl <steve.wahl@hpe.com>
20521 R:      Mike Travis <mike.travis@hpe.com>
20522 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20523 R:      Russ Anderson <russ.anderson@hpe.com>
20524 S:      Supported
20525 F:      arch/x86/include/asm/uv/
20526 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20527 F:      arch/x86/platform/uv/
20528
20529 X86 VDSO
20530 M:      Andy Lutomirski <luto@kernel.org>
20531 L:      linux-kernel@vger.kernel.org
20532 S:      Maintained
20533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20534 F:      arch/x86/entry/vdso/
20535
20536 XARRAY
20537 M:      Matthew Wilcox <willy@infradead.org>
20538 L:      linux-fsdevel@vger.kernel.org
20539 S:      Supported
20540 F:      Documentation/core-api/xarray.rst
20541 F:      include/linux/idr.h
20542 F:      include/linux/xarray.h
20543 F:      lib/idr.c
20544 F:      lib/xarray.c
20545 F:      tools/testing/radix-tree
20546
20547 XBOX DVD IR REMOTE
20548 M:      Benjamin Valentin <benpicco@googlemail.com>
20549 S:      Maintained
20550 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20551 F:      drivers/media/rc/xbox_remote.c
20552
20553 XC2028/3028 TUNER DRIVER
20554 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20555 L:      linux-media@vger.kernel.org
20556 S:      Maintained
20557 W:      https://linuxtv.org
20558 T:      git git://linuxtv.org/media_tree.git
20559 F:      drivers/media/tuners/tuner-xc2028.*
20560
20561 XDP (eXpress Data Path)
20562 M:      Alexei Starovoitov <ast@kernel.org>
20563 M:      Daniel Borkmann <daniel@iogearbox.net>
20564 M:      David S. Miller <davem@davemloft.net>
20565 M:      Jakub Kicinski <kuba@kernel.org>
20566 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20567 M:      John Fastabend <john.fastabend@gmail.com>
20568 L:      netdev@vger.kernel.org
20569 L:      bpf@vger.kernel.org
20570 S:      Supported
20571 F:      include/net/xdp.h
20572 F:      include/net/xdp_priv.h
20573 F:      include/trace/events/xdp.h
20574 F:      kernel/bpf/cpumap.c
20575 F:      kernel/bpf/devmap.c
20576 F:      net/core/xdp.c
20577 F:      samples/bpf/xdp*
20578 F:      tools/testing/selftests/bpf/*xdp*
20579 F:      tools/testing/selftests/bpf/*/*xdp*
20580 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20581 F:      drivers/net/ethernet/*/*/*xdp*
20582 K:      (?:\b|_)xdp(?:\b|_)
20583
20584 XDP SOCKETS (AF_XDP)
20585 M:      Björn Töpel <bjorn@kernel.org>
20586 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20587 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20588 L:      netdev@vger.kernel.org
20589 L:      bpf@vger.kernel.org
20590 S:      Maintained
20591 F:      Documentation/networking/af_xdp.rst
20592 F:      include/net/xdp_sock*
20593 F:      include/net/xsk_buff_pool.h
20594 F:      include/uapi/linux/if_xdp.h
20595 F:      include/uapi/linux/xdp_diag.h
20596 F:      include/net/netns/xdp.h
20597 F:      net/xdp/
20598 F:      samples/bpf/xdpsock*
20599 F:      tools/lib/bpf/xsk*
20600
20601 XEN BLOCK SUBSYSTEM
20602 M:      Roger Pau Monné <roger.pau@citrix.com>
20603 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20604 S:      Supported
20605 F:      drivers/block/xen*
20606 F:      drivers/block/xen-blkback/*
20607
20608 XEN HYPERVISOR ARM
20609 M:      Stefano Stabellini <sstabellini@kernel.org>
20610 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20611 S:      Maintained
20612 F:      arch/arm/include/asm/xen/
20613 F:      arch/arm/xen/
20614
20615 XEN HYPERVISOR ARM64
20616 M:      Stefano Stabellini <sstabellini@kernel.org>
20617 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20618 S:      Maintained
20619 F:      arch/arm64/include/asm/xen/
20620 F:      arch/arm64/xen/
20621
20622 XEN HYPERVISOR INTERFACE
20623 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20624 M:      Juergen Gross <jgross@suse.com>
20625 R:      Stefano Stabellini <sstabellini@kernel.org>
20626 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20627 S:      Supported
20628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20629 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20630 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20631 F:      arch/x86/include/asm/pvclock-abi.h
20632 F:      arch/x86/include/asm/xen/
20633 F:      arch/x86/platform/pvh/
20634 F:      arch/x86/xen/
20635 F:      drivers/*/xen-*front.c
20636 F:      drivers/xen/
20637 F:      include/uapi/xen/
20638 F:      include/xen/
20639
20640 XEN NETWORK BACKEND DRIVER
20641 M:      Wei Liu <wei.liu@kernel.org>
20642 M:      Paul Durrant <paul@xen.org>
20643 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20644 L:      netdev@vger.kernel.org
20645 S:      Supported
20646 F:      drivers/net/xen-netback/*
20647
20648 XEN PCI SUBSYSTEM
20649 M:      Juergen Gross <jgross@suse.com>
20650 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20651 S:      Supported
20652 F:      arch/x86/pci/*xen*
20653 F:      drivers/pci/*xen*
20654
20655 XEN PVSCSI DRIVERS
20656 M:      Juergen Gross <jgross@suse.com>
20657 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20658 L:      linux-scsi@vger.kernel.org
20659 S:      Supported
20660 F:      drivers/scsi/xen-scsifront.c
20661 F:      drivers/xen/xen-scsiback.c
20662 F:      include/xen/interface/io/vscsiif.h
20663
20664 XEN SOUND FRONTEND DRIVER
20665 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20666 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20667 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20668 S:      Supported
20669 F:      sound/xen/*
20670
20671 XEN SWIOTLB SUBSYSTEM
20672 M:      Juergen Gross <jgross@suse.com>
20673 M:      Stefano Stabellini <sstabellini@kernel.org>
20674 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20675 L:      iommu@lists.linux-foundation.org
20676 S:      Supported
20677 F:      arch/x86/xen/*swiotlb*
20678 F:      drivers/xen/*swiotlb*
20679
20680 XFS FILESYSTEM
20681 C:      irc://irc.oftc.net/xfs
20682 M:      Darrick J. Wong <djwong@kernel.org>
20683 M:      linux-xfs@vger.kernel.org
20684 L:      linux-xfs@vger.kernel.org
20685 S:      Supported
20686 W:      http://xfs.org/
20687 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20688 F:      Documentation/ABI/testing/sysfs-fs-xfs
20689 F:      Documentation/admin-guide/xfs.rst
20690 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20691 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20692 F:      fs/xfs/
20693 F:      include/uapi/linux/dqblk_xfs.h
20694 F:      include/uapi/linux/fsmap.h
20695
20696 XILINX AXI ETHERNET DRIVER
20697 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20698 S:      Maintained
20699 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20700
20701 XILINX CAN DRIVER
20702 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20703 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20704 L:      linux-can@vger.kernel.org
20705 S:      Maintained
20706 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20707 F:      drivers/net/can/xilinx_can.c
20708
20709 XILINX GPIO DRIVER
20710 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20711 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20712 R:      Michal Simek <michal.simek@xilinx.com>
20713 S:      Maintained
20714 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20715 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20716 F:      drivers/gpio/gpio-xilinx.c
20717 F:      drivers/gpio/gpio-zynq.c
20718
20719 XILINX SD-FEC IP CORES
20720 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20721 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20722 S:      Maintained
20723 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20724 F:      Documentation/misc-devices/xilinx_sdfec.rst
20725 F:      drivers/misc/Kconfig
20726 F:      drivers/misc/Makefile
20727 F:      drivers/misc/xilinx_sdfec.c
20728 F:      include/uapi/misc/xilinx_sdfec.h
20729
20730 XILINX UARTLITE SERIAL DRIVER
20731 M:      Peter Korsgaard <jacmet@sunsite.dk>
20732 L:      linux-serial@vger.kernel.org
20733 S:      Maintained
20734 F:      drivers/tty/serial/uartlite.c
20735
20736 XILINX VIDEO IP CORES
20737 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20738 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20739 L:      linux-media@vger.kernel.org
20740 S:      Supported
20741 T:      git git://linuxtv.org/media_tree.git
20742 F:      Documentation/devicetree/bindings/media/xilinx/
20743 F:      drivers/media/platform/xilinx/
20744 F:      include/uapi/linux/xilinx-v4l2-controls.h
20745
20746 XILINX ZYNQMP DPDMA DRIVER
20747 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20748 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20749 L:      dmaengine@vger.kernel.org
20750 S:      Supported
20751 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20752 F:      drivers/dma/xilinx/xilinx_dpdma.c
20753 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20754
20755 XILINX ZYNQMP PSGTR PHY DRIVER
20756 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20757 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20758 L:      linux-kernel@vger.kernel.org
20759 S:      Supported
20760 T:      git https://github.com/Xilinx/linux-xlnx.git
20761 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20762 F:      drivers/phy/xilinx/phy-zynqmp.c
20763
20764 XILLYBUS DRIVER
20765 M:      Eli Billauer <eli.billauer@gmail.com>
20766 L:      linux-kernel@vger.kernel.org
20767 S:      Supported
20768 F:      drivers/char/xillybus/
20769
20770 XLP9XX I2C DRIVER
20771 M:      George Cherian <gcherian@marvell.com>
20772 L:      linux-i2c@vger.kernel.org
20773 S:      Supported
20774 W:      http://www.marvell.com
20775 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20776 F:      drivers/i2c/busses/i2c-xlp9xx.c
20777
20778 XRA1403 GPIO EXPANDER
20779 M:      Nandor Han <nandor.han@ge.com>
20780 M:      Semi Malinen <semi.malinen@ge.com>
20781 L:      linux-gpio@vger.kernel.org
20782 S:      Maintained
20783 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20784 F:      drivers/gpio/gpio-xra1403.c
20785
20786 XTENSA XTFPGA PLATFORM SUPPORT
20787 M:      Max Filippov <jcmvbkbc@gmail.com>
20788 L:      linux-xtensa@linux-xtensa.org
20789 S:      Maintained
20790 F:      drivers/spi/spi-xtensa-xtfpga.c
20791 F:      sound/soc/xtensa/xtfpga-i2s.c
20792
20793 YAM DRIVER FOR AX.25
20794 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20795 L:      linux-hams@vger.kernel.org
20796 S:      Maintained
20797 F:      drivers/net/hamradio/yam*
20798 F:      include/linux/yam.h
20799
20800 YAMA SECURITY MODULE
20801 M:      Kees Cook <keescook@chromium.org>
20802 S:      Supported
20803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20804 F:      Documentation/admin-guide/LSM/Yama.rst
20805 F:      security/yama/
20806
20807 YEALINK PHONE DRIVER
20808 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20809 L:      usbb2k-api-dev@nongnu.org
20810 S:      Maintained
20811 F:      Documentation/input/devices/yealink.rst
20812 F:      drivers/input/misc/yealink.*
20813
20814 Z8530 DRIVER FOR AX.25
20815 M:      Joerg Reuter <jreuter@yaina.de>
20816 L:      linux-hams@vger.kernel.org
20817 S:      Maintained
20818 W:      http://yaina.de/jreuter/
20819 W:      http://www.qsl.net/dl1bke/
20820 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20821 F:      drivers/net/hamradio/*scc.c
20822 F:      drivers/net/hamradio/z8530.h
20823
20824 ZBUD COMPRESSED PAGE ALLOCATOR
20825 M:      Seth Jennings <sjenning@redhat.com>
20826 M:      Dan Streetman <ddstreet@ieee.org>
20827 L:      linux-mm@kvack.org
20828 S:      Maintained
20829 F:      mm/zbud.c
20830
20831 ZD1211RW WIRELESS DRIVER
20832 M:      Ulrich Kunitz <kune@deine-taler.de>
20833 L:      linux-wireless@vger.kernel.org
20834 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20835 S:      Maintained
20836 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20837 F:      drivers/net/wireless/zydas/zd1211rw/
20838
20839 ZD1301 MEDIA DRIVER
20840 M:      Antti Palosaari <crope@iki.fi>
20841 L:      linux-media@vger.kernel.org
20842 S:      Maintained
20843 W:      https://linuxtv.org/
20844 W:      http://palosaari.fi/linux/
20845 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20846 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20847
20848 ZD1301_DEMOD MEDIA DRIVER
20849 M:      Antti Palosaari <crope@iki.fi>
20850 L:      linux-media@vger.kernel.org
20851 S:      Maintained
20852 W:      https://linuxtv.org/
20853 W:      http://palosaari.fi/linux/
20854 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20855 F:      drivers/media/dvb-frontends/zd1301_demod*
20856
20857 ZHAOXIN PROCESSOR SUPPORT
20858 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20859 L:      linux-kernel@vger.kernel.org
20860 S:      Maintained
20861 F:      arch/x86/kernel/cpu/zhaoxin.c
20862
20863 ZONEFS FILESYSTEM
20864 M:      Damien Le Moal <damien.lemoal@wdc.com>
20865 M:      Naohiro Aota <naohiro.aota@wdc.com>
20866 R:      Johannes Thumshirn <jth@kernel.org>
20867 L:      linux-fsdevel@vger.kernel.org
20868 S:      Maintained
20869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20870 F:      Documentation/filesystems/zonefs.rst
20871 F:      fs/zonefs/
20872
20873 ZPOOL COMPRESSED PAGE STORAGE API
20874 M:      Dan Streetman <ddstreet@ieee.org>
20875 L:      linux-mm@kvack.org
20876 S:      Maintained
20877 F:      include/linux/zpool.h
20878 F:      mm/zpool.c
20879
20880 ZR36067 VIDEO FOR LINUX DRIVER
20881 M:      Corentin Labbe <clabbe@baylibre.com>
20882 L:      mjpeg-users@lists.sourceforge.net
20883 L:      linux-media@vger.kernel.org
20884 S:      Maintained
20885 W:      http://mjpeg.sourceforge.net/driver-zoran/
20886 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20887 F:      Documentation/driver-api/media/drivers/zoran.rst
20888 F:      drivers/staging/media/zoran/
20889
20890 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20891 M:      Minchan Kim <minchan@kernel.org>
20892 M:      Nitin Gupta <ngupta@vflare.org>
20893 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20894 L:      linux-kernel@vger.kernel.org
20895 S:      Maintained
20896 F:      Documentation/admin-guide/blockdev/zram.rst
20897 F:      drivers/block/zram/
20898
20899 ZS DECSTATION Z85C30 SERIAL DRIVER
20900 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20901 S:      Maintained
20902 F:      drivers/tty/serial/zs.*
20903
20904 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20905 M:      Minchan Kim <minchan@kernel.org>
20906 M:      Nitin Gupta <ngupta@vflare.org>
20907 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20908 L:      linux-mm@kvack.org
20909 S:      Maintained
20910 F:      Documentation/vm/zsmalloc.rst
20911 F:      include/linux/zsmalloc.h
20912 F:      mm/zsmalloc.c
20913
20914 ZSWAP COMPRESSED SWAP CACHING
20915 M:      Seth Jennings <sjenning@redhat.com>
20916 M:      Dan Streetman <ddstreet@ieee.org>
20917 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20918 L:      linux-mm@kvack.org
20919 S:      Maintained
20920 F:      mm/zswap.c
20921
20922 THE REST
20923 M:      Linus Torvalds <torvalds@linux-foundation.org>
20924 L:      linux-kernel@vger.kernel.org
20925 S:      Buried alive in reporters
20926 Q:      http://patchwork.kernel.org/project/LKML/list/
20927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20928 F:      *
20929 F:      */