]> git.itanic.dy.fi Git - linux-stable/blob - MAINTAINERS
RDMA/irdma: Use s/g array in post send only when its valid
[linux-stable] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <rui.zhang@intel.com>
383 L:      linux-acpi@vger.kernel.org
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.org
437 L:      iommu@lists.linux.dev
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Fei Li <fei1.li@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
465 L:      linux-iio@vger.kernel.org
466 S:      Supported
467 F:      drivers/iio/potentiometer/ad5110.c
468
469 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5254
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/misc/ad525x_dpot.c
475
476 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5398
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/regulator/ad5398.c
482
483 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7142
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/misc/ad714x.c
489
490 AD7877 TOUCHSCREEN DRIVER
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7877
494 W:      http://ez.analog.com/community/linux-device-drivers
495 F:      drivers/input/touchscreen/ad7877.c
496
497 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7879
501 W:      http://ez.analog.com/community/linux-device-drivers
502 F:      drivers/input/touchscreen/ad7879.c
503
504 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
505 M:      Jiri Kosina <jikos@kernel.org>
506 S:      Maintained
507
508 ADF7242 IEEE 802.15.4 RADIO DRIVER
509 M:      Michael Hennerich <michael.hennerich@analog.com>
510 L:      linux-wpan@vger.kernel.org
511 S:      Supported
512 W:      https://wiki.analog.com/ADF7242
513 W:      http://ez.analog.com/community/linux-device-drivers
514 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
515 F:      drivers/net/ieee802154/adf7242.c
516
517 ADM1025 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adm1025.rst
522 F:      drivers/hwmon/adm1025.c
523
524 ADM1029 HARDWARE MONITOR DRIVER
525 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      drivers/hwmon/adm1029.c
529
530 ADM8211 WIRELESS DRIVER
531 L:      linux-wireless@vger.kernel.org
532 S:      Orphan
533 W:      https://wireless.wiki.kernel.org/
534 F:      drivers/net/wireless/admtek/adm8211.*
535
536 ADP1653 FLASH CONTROLLER DRIVER
537 M:      Sakari Ailus <sakari.ailus@iki.fi>
538 L:      linux-media@vger.kernel.org
539 S:      Maintained
540 F:      drivers/media/i2c/adp1653.c
541 F:      include/media/i2c/adp1653.h
542
543 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5520
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5520.c
549 F:      drivers/input/keyboard/adp5520-keys.c
550 F:      drivers/leds/leds-adp5520.c
551 F:      drivers/mfd/adp5520.c
552 F:      drivers/video/backlight/adp5520_bl.c
553
554 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP5588
558 W:      http://ez.analog.com/community/linux-device-drivers
559 F:      drivers/gpio/gpio-adp5588.c
560 F:      drivers/input/keyboard/adp5588-keys.c
561
562 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
563 M:      Michael Hennerich <michael.hennerich@analog.com>
564 S:      Supported
565 W:      http://wiki.analog.com/ADP8860
566 W:      http://ez.analog.com/community/linux-device-drivers
567 F:      drivers/video/backlight/adp8860_bl.c
568
569 ADT746X FAN DRIVER
570 M:      Colin Leroy <colin@colino.net>
571 S:      Maintained
572 F:      drivers/macintosh/therm_adt746x.c
573
574 ADT7475 HARDWARE MONITOR DRIVER
575 M:      Jean Delvare <jdelvare@suse.com>
576 L:      linux-hwmon@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/hwmon/adt7475.rst
579 F:      drivers/hwmon/adt7475.c
580
581 ADVANSYS SCSI DRIVER
582 M:      Matthew Wilcox <willy@infradead.org>
583 M:      Hannes Reinecke <hare@suse.com>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      Documentation/scsi/advansys.rst
587 F:      drivers/scsi/advansys.c
588
589 ADVANTECH SWBTN DRIVER
590 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
591 L:      platform-driver-x86@vger.kernel.org
592 S:      Maintained
593 F:      drivers/platform/x86/adv_swbutton.c
594
595 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
596 M:      Michael Hennerich <michael.hennerich@analog.com>
597 S:      Supported
598 W:      http://wiki.analog.com/ADXL345
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
601 F:      drivers/input/misc/adxl34x.c
602
603 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
604 M:      Michael Hennerich <michael.hennerich@analog.com>
605 S:      Supported
606 W:      http://ez.analog.com/community/linux-device-drivers
607 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
608 F:      drivers/iio/accel/adxl372.c
609 F:      drivers/iio/accel/adxl372_i2c.c
610 F:      drivers/iio/accel/adxl372_spi.c
611
612 AF9013 MEDIA DRIVER
613 M:      Antti Palosaari <crope@iki.fi>
614 L:      linux-media@vger.kernel.org
615 S:      Maintained
616 W:      https://linuxtv.org
617 W:      http://palosaari.fi/linux/
618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
619 T:      git git://linuxtv.org/anttip/media_tree.git
620 F:      drivers/media/dvb-frontends/af9013*
621
622 AF9033 MEDIA DRIVER
623 M:      Antti Palosaari <crope@iki.fi>
624 L:      linux-media@vger.kernel.org
625 S:      Maintained
626 W:      https://linuxtv.org
627 W:      http://palosaari.fi/linux/
628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
629 T:      git git://linuxtv.org/anttip/media_tree.git
630 F:      drivers/media/dvb-frontends/af9033*
631
632 AFFS FILE SYSTEM
633 M:      David Sterba <dsterba@suse.com>
634 L:      linux-fsdevel@vger.kernel.org
635 S:      Odd Fixes
636 F:      Documentation/filesystems/affs.rst
637 F:      fs/affs/
638
639 AFS FILESYSTEM
640 M:      David Howells <dhowells@redhat.com>
641 M:      Marc Dionne <marc.dionne@auristor.com>
642 L:      linux-afs@lists.infradead.org
643 S:      Supported
644 W:      https://www.infradead.org/~dhowells/kafs/
645 F:      Documentation/filesystems/afs.rst
646 F:      fs/afs/
647 F:      include/trace/events/afs.h
648
649 AGPGART DRIVER
650 M:      David Airlie <airlied@linux.ie>
651 S:      Maintained
652 T:      git git://anongit.freedesktop.org/drm/drm
653 F:      drivers/char/agp/
654 F:      include/linux/agp*
655 F:      include/uapi/linux/agp*
656
657 AHA152X SCSI DRIVER
658 M:      "Juergen E. Fischer" <fischer@norbit.de>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aha152x*
662 F:      drivers/scsi/pcmcia/aha152x*
663
664 AIC7XXX / AIC79XX SCSI DRIVER
665 M:      Hannes Reinecke <hare@suse.com>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aic7xxx/
669
670 AIMSLAB FM RADIO RECEIVER DRIVER
671 M:      Hans Verkuil <hverkuil@xs4all.nl>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 T:      git git://linuxtv.org/media_tree.git
676 F:      drivers/media/radio/radio-aimslab*
677
678 AIO
679 M:      Benjamin LaHaise <bcrl@kvack.org>
680 L:      linux-aio@kvack.org
681 S:      Supported
682 F:      fs/aio.c
683 F:      include/linux/*aio*.h
684
685 AIRSPY MEDIA DRIVER
686 M:      Antti Palosaari <crope@iki.fi>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 W:      http://palosaari.fi/linux/
691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
692 T:      git git://linuxtv.org/anttip/media_tree.git
693 F:      drivers/media/usb/airspy/
694
695 ALACRITECH GIGABIT ETHERNET DRIVER
696 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
697 S:      Maintained
698 F:      drivers/net/ethernet/alacritech/*
699
700 ALCATEL SPEEDTOUCH USB DRIVER
701 M:      Duncan Sands <duncan.sands@free.fr>
702 L:      linux-usb@vger.kernel.org
703 S:      Maintained
704 W:      http://www.linux-usb.org/SpeedTouch/
705 F:      drivers/usb/atm/speedtch.c
706 F:      drivers/usb/atm/usbatm.c
707
708 ALCHEMY AU1XX0 MMC DRIVER
709 M:      Manuel Lauss <manuel.lauss@gmail.com>
710 S:      Maintained
711 F:      drivers/mmc/host/au1xmmc.c
712
713 ALI1563 I2C DRIVER
714 M:      Rudolf Marek <r.marek@assembler.cz>
715 L:      linux-i2c@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/i2c/busses/i2c-ali1563.rst
718 F:      drivers/i2c/busses/i2c-ali1563.c
719
720 ALIENWARE WMI DRIVER
721 L:      Dell.Client.Kernel@dell.com
722 S:      Maintained
723 F:      drivers/platform/x86/dell/alienware-wmi.c
724
725 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
726 M:      Tomislav Denis <tomislav.denis@avl.com>
727 L:      linux-iio@vger.kernel.org
728 S:      Maintained
729 W:      http://www.allsensors.com/
730 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
731 F:      drivers/iio/pressure/dlhl60d.c
732
733 ALLEGRO DVT VIDEO IP CORE DRIVER
734 M:      Michael Tretter <m.tretter@pengutronix.de>
735 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
739 F:      drivers/media/platform/allegro-dvt/
740
741 ALLWINNER A10 CSI DRIVER
742 M:      Maxime Ripard <mripard@kernel.org>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 T:      git git://linuxtv.org/media_tree.git
746 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
747 F:      drivers/media/platform/sunxi/sun4i-csi/
748
749 ALLWINNER CPUFREQ DRIVER
750 M:      Yangtao Li <tiny.windzz@gmail.com>
751 L:      linux-pm@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
754 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
755
756 ALLWINNER CRYPTO DRIVERS
757 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
758 L:      linux-crypto@vger.kernel.org
759 S:      Maintained
760 F:      drivers/crypto/allwinner/
761
762 ALLWINNER HARDWARE SPINLOCK SUPPORT
763 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
764 S:      Maintained
765 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
766 F:      drivers/hwspinlock/sun6i_hwspinlock.c
767
768 ALLWINNER THERMAL DRIVER
769 M:      Vasily Khoruzhick <anarsoul@gmail.com>
770 M:      Yangtao Li <tiny.windzz@gmail.com>
771 L:      linux-pm@vger.kernel.org
772 S:      Maintained
773 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
774 F:      drivers/thermal/sun8i_thermal.c
775
776 ALLWINNER VPU DRIVER
777 M:      Maxime Ripard <mripard@kernel.org>
778 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 F:      drivers/staging/media/sunxi/cedrus/
782
783 ALPHA PORT
784 M:      Richard Henderson <rth@twiddle.net>
785 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
786 M:      Matt Turner <mattst88@gmail.com>
787 L:      linux-alpha@vger.kernel.org
788 S:      Odd Fixes
789 F:      arch/alpha/
790
791 ALPS PS/2 TOUCHPAD DRIVER
792 R:      Pali Rohár <pali@kernel.org>
793 F:      drivers/input/mouse/alps.*
794
795 ALTERA I2C CONTROLLER DRIVER
796 M:      Thor Thayer <thor.thayer@linux.intel.com>
797 S:      Maintained
798 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
799 F:      drivers/i2c/busses/i2c-altera.c
800
801 ALTERA MAILBOX DRIVER
802 M:      Joyce Ooi <joyce.ooi@intel.com>
803 S:      Maintained
804 F:      drivers/mailbox/mailbox-altera.c
805
806 ALTERA MSGDMA IP CORE DRIVER
807 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
808 R:      Stefan Roese <sr@denx.de>
809 L:      dmaengine@vger.kernel.org
810 S:      Odd Fixes
811 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
812 F:      drivers/dma/altera-msgdma.c
813
814 ALTERA PIO DRIVER
815 M:      Mun Yew Tham <mun.yew.tham@intel.com>
816 L:      linux-gpio@vger.kernel.org
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera.c
819
820 ALTERA SYSTEM MANAGER DRIVER
821 M:      Thor Thayer <thor.thayer@linux.intel.com>
822 S:      Maintained
823 F:      drivers/mfd/altera-sysmgr.c
824 F:      include/linux/mfd/altera-sysmgr.h
825
826 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
827 M:      Thor Thayer <thor.thayer@linux.intel.com>
828 S:      Maintained
829 F:      drivers/gpio/gpio-altera-a10sr.c
830 F:      drivers/mfd/altera-a10sr.c
831 F:      drivers/reset/reset-a10sr.c
832 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
833 F:      include/linux/mfd/altera-a10sr.h
834
835 ALTERA TRIPLE SPEED ETHERNET DRIVER
836 M:      Joyce Ooi <joyce.ooi@intel.com>
837 L:      netdev@vger.kernel.org
838 S:      Maintained
839 F:      drivers/net/ethernet/altera/
840
841 ALTERA UART/JTAG UART SERIAL DRIVERS
842 M:      Tobias Klauser <tklauser@distanz.ch>
843 L:      linux-serial@vger.kernel.org
844 S:      Maintained
845 F:      drivers/tty/serial/altera_jtaguart.c
846 F:      drivers/tty/serial/altera_uart.c
847 F:      include/linux/altera_jtaguart.h
848 F:      include/linux/altera_uart.h
849
850 AMAZON ANNAPURNA LABS FIC DRIVER
851 M:      Talel Shenhar <talel@amazon.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
854 F:      drivers/irqchip/irq-al-fic.c
855
856 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
857 M:      Talel Shenhar <talel@amazon.com>
858 M:      Talel Shenhar <talelshenhar@gmail.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
861 F:      drivers/edac/al_mc_edac.c
862
863 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
864 M:      Talel Shenhar <talel@amazon.com>
865 S:      Maintained
866 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
867 F:      drivers/thermal/thermal_mmio.c
868
869 AMAZON ETHERNET DRIVERS
870 M:      Netanel Belgazal <netanel@amazon.com>
871 M:      Arthur Kiyanovski <akiyano@amazon.com>
872 R:      Guy Tzalik <gtzalik@amazon.com>
873 R:      Saeed Bishara <saeedb@amazon.com>
874 L:      netdev@vger.kernel.org
875 S:      Supported
876 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
877 F:      drivers/net/ethernet/amazon/
878
879 AMAZON RDMA EFA DRIVER
880 M:      Gal Pressman <galpress@amazon.com>
881 R:      Yossi Leybovich <sleybo@amazon.com>
882 L:      linux-rdma@vger.kernel.org
883 S:      Supported
884 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
885 F:      drivers/infiniband/hw/efa/
886 F:      include/uapi/rdma/efa-abi.h
887
888 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
889 M:      Tom Lendacky <thomas.lendacky@amd.com>
890 M:      John Allen <john.allen@amd.com>
891 L:      linux-crypto@vger.kernel.org
892 S:      Supported
893 F:      drivers/crypto/ccp/
894 F:      include/linux/ccp.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
897 M:      Brijesh Singh <brijesh.singh@amd.com>
898 M:      Tom Lendacky <thomas.lendacky@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/sev*
902 F:      include/uapi/linux/psp-sev.h
903
904 AMD DISPLAY CORE
905 M:      Harry Wentland <harry.wentland@amd.com>
906 M:      Leo Li <sunpeng.li@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/display/
911
912 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
913 M:      Huang Rui <ray.huang@amd.com>
914 L:      linux-hwmon@vger.kernel.org
915 S:      Supported
916 F:      Documentation/hwmon/fam15h_power.rst
917 F:      drivers/hwmon/fam15h_power.c
918
919 AMD FCH GPIO DRIVER
920 M:      Enrico Weigelt, metux IT consult <info@metux.net>
921 L:      linux-gpio@vger.kernel.org
922 S:      Maintained
923 F:      drivers/gpio/gpio-amd-fch.c
924 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
925
926 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
927 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
928 S:      Orphan
929 F:      drivers/usb/gadget/udc/amd5536udc.*
930
931 AMD GEODE PROCESSOR/CHIPSET SUPPORT
932 M:      Andres Salomon <dilinger@queued.net>
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Supported
935 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
936 F:      arch/x86/include/asm/geode.h
937 F:      drivers/char/hw_random/geode-rng.c
938 F:      drivers/crypto/geode*
939 F:      drivers/video/fbdev/geode/
940
941 AMD IOMMU (AMD-VI)
942 M:      Joerg Roedel <joro@8bytes.org>
943 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
944 L:      iommu@lists.linux-foundation.org
945 L:      iommu@lists.linux.dev
946 S:      Maintained
947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
948 F:      drivers/iommu/amd/
949 F:      include/linux/amd-iommu.h
950
951 AMD KFD
952 M:      Felix Kuehling <Felix.Kuehling@amd.com>
953 L:      amd-gfx@lists.freedesktop.org
954 S:      Supported
955 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
956 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
957 F:      drivers/gpu/drm/amd/amdkfd/
958 F:      drivers/gpu/drm/amd/include/cik_structs.h
959 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
960 F:      drivers/gpu/drm/amd/include/v9_structs.h
961 F:      drivers/gpu/drm/amd/include/vi_structs.h
962 F:      include/uapi/linux/kfd_ioctl.h
963
964 AMD SPI DRIVER
965 M:      Sanjay R Mehta <sanju.mehta@amd.com>
966 S:      Maintained
967 F:      drivers/spi/spi-amd.c
968
969 AMD MP2 I2C DRIVER
970 M:      Elie Morisse <syniurge@gmail.com>
971 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
972 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
973 L:      linux-i2c@vger.kernel.org
974 S:      Maintained
975 F:      drivers/i2c/busses/i2c-amd-mp2*
976
977 AMD PMC DRIVER
978 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
979 L:      platform-driver-x86@vger.kernel.org
980 S:      Maintained
981 F:      drivers/platform/x86/amd-pmc.*
982
983 AMD POWERPLAY AND SWSMU
984 M:      Evan Quan <evan.quan@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/pm/
989
990 AMD PTDMA DRIVER
991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
992 L:      dmaengine@vger.kernel.org
993 S:      Maintained
994 F:      drivers/dma/ptdma/
995
996 AMD SEATTLE DEVICE TREE SUPPORT
997 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
998 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
999 M:      Tom Lendacky <thomas.lendacky@amd.com>
1000 S:      Supported
1001 F:      arch/arm64/boot/dts/amd/
1002
1003 AMD XGBE DRIVER
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 L:      netdev@vger.kernel.org
1006 S:      Supported
1007 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1008 F:      drivers/net/ethernet/amd/xgbe/
1009
1010 AMD SENSOR FUSION HUB DRIVER
1011 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1012 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1013 L:      linux-input@vger.kernel.org
1014 S:      Maintained
1015 F:      Documentation/hid/amd-sfh*
1016 F:      drivers/hid/amd-sfh-hid/
1017
1018 AMS AS73211 DRIVER
1019 M:      Christian Eggers <ceggers@arri.de>
1020 L:      linux-iio@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1023 F:      drivers/iio/light/as73211.c
1024
1025 ANALOG DEVICES INC AD7192 DRIVER
1026 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1027 L:      linux-iio@vger.kernel.org
1028 S:      Supported
1029 W:      http://ez.analog.com/community/linux-device-drivers
1030 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1031 F:      drivers/iio/adc/ad7192.c
1032
1033 ANALOG DEVICES INC AD7292 DRIVER
1034 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1039 F:      drivers/iio/adc/ad7292.c
1040
1041 ANALOG DEVICES INC AD7768-1 DRIVER
1042 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1047 F:      drivers/iio/adc/ad7768-1.c
1048
1049 ANALOG DEVICES INC AD7780 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 M:      Renato Lui Geh <renatogeh@gmail.com>
1052 L:      linux-iio@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1056 F:      drivers/iio/adc/ad7780.c
1057
1058 ANALOG DEVICES INC AD9389B DRIVER
1059 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1060 L:      linux-media@vger.kernel.org
1061 S:      Maintained
1062 F:      drivers/media/i2c/ad9389b*
1063
1064 ANALOG DEVICES INC ADGS1408 DRIVER
1065 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1066 S:      Supported
1067 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1068 F:      drivers/mux/adgs1408.c
1069
1070 ANALOG DEVICES INC ADIN DRIVER
1071 M:      Michael Hennerich <michael.hennerich@analog.com>
1072 L:      netdev@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1076 F:      drivers/net/phy/adin.c
1077
1078 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1079 M:      Nuno Sa <nuno.sa@analog.com>
1080 L:      linux-iio@vger.kernel.org
1081 S:      Supported
1082 F:      drivers/iio/imu/adis.c
1083 F:      include/linux/iio/imu/adis.h
1084
1085 ANALOG DEVICES INC ADIS16460 DRIVER
1086 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1091 F:      drivers/iio/imu/adis16460.c
1092
1093 ANALOG DEVICES INC ADIS16475 DRIVER
1094 M:      Nuno Sa <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 S:      Supported
1098 F:      drivers/iio/imu/adis16475.c
1099 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1100
1101 ANALOG DEVICES INC ADM1177 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-hwmon@vger.kernel.org
1104 S:      Supported
1105 W:      http://ez.analog.com/community/linux-device-drivers
1106 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1107 F:      drivers/hwmon/adm1177.c
1108
1109 ANALOG DEVICES INC ADP5061 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-pm@vger.kernel.org
1112 S:      Supported
1113 W:      http://ez.analog.com/community/linux-device-drivers
1114 F:      drivers/power/supply/adp5061.c
1115
1116 ANALOG DEVICES INC ADV7180 DRIVER
1117 M:      Lars-Peter Clausen <lars@metafoo.de>
1118 L:      linux-media@vger.kernel.org
1119 S:      Supported
1120 W:      http://ez.analog.com/community/linux-device-drivers
1121 F:      drivers/media/i2c/adv7180.c
1122 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1123
1124 ANALOG DEVICES INC ADV748X DRIVER
1125 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1126 L:      linux-media@vger.kernel.org
1127 S:      Maintained
1128 F:      drivers/media/i2c/adv748x/*
1129
1130 ANALOG DEVICES INC ADV7511 DRIVER
1131 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1132 L:      linux-media@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/media/i2c/adv7511*
1135
1136 ANALOG DEVICES INC ADV7604 DRIVER
1137 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1138 L:      linux-media@vger.kernel.org
1139 S:      Maintained
1140 F:      drivers/media/i2c/adv7604*
1141 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1142
1143 ANALOG DEVICES INC ADV7842 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7842*
1148
1149 ANALOG DEVICES INC ADXRS290 DRIVER
1150 M:      Nishant Malpani <nish.malpani25@gmail.com>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Supported
1153 F:      drivers/iio/gyro/adxrs290.c
1154 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1155
1156 ANALOG DEVICES INC ASOC CODEC DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 M:      Nuno Sá <nuno.sa@analog.com>
1159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1160 S:      Supported
1161 W:      http://wiki.analog.com/
1162 W:      http://ez.analog.com/community/linux-device-drivers
1163 F:      sound/soc/codecs/ad1*
1164 F:      sound/soc/codecs/ad7*
1165 F:      sound/soc/codecs/adau*
1166 F:      sound/soc/codecs/adav*
1167 F:      sound/soc/codecs/sigmadsp.*
1168 F:      sound/soc/codecs/ssm*
1169
1170 ANALOG DEVICES INC DMA DRIVERS
1171 M:      Lars-Peter Clausen <lars@metafoo.de>
1172 S:      Supported
1173 W:      http://ez.analog.com/community/linux-device-drivers
1174 F:      drivers/dma/dma-axi-dmac.c
1175
1176 ANALOG DEVICES INC IIO DRIVERS
1177 M:      Lars-Peter Clausen <lars@metafoo.de>
1178 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1179 S:      Supported
1180 W:      http://wiki.analog.com/
1181 W:      http://ez.analog.com/community/linux-device-drivers
1182 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1183 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1184 F:      Documentation/devicetree/bindings/iio/*/adi,*
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1186 F:      drivers/iio/*/ad*
1187 F:      drivers/iio/adc/ltc249*
1188 F:      drivers/iio/amplifiers/hmc425a.c
1189 F:      drivers/staging/iio/*/ad*
1190 X:      drivers/iio/*/adjd*
1191
1192 ANALOGBITS PLL LIBRARIES
1193 M:      Paul Walmsley <paul.walmsley@sifive.com>
1194 S:      Supported
1195 F:      drivers/clk/analogbits/*
1196 F:      include/linux/clk/analogbits*
1197
1198 ANDES ARCHITECTURE
1199 M:      Nick Hu <nickhu@andestech.com>
1200 M:      Greentime Hu <green.hu@gmail.com>
1201 M:      Vincent Chen <deanbo422@gmail.com>
1202 S:      Supported
1203 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1204 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1205 F:      Documentation/devicetree/bindings/nds32/
1206 F:      arch/nds32/
1207 N:      nds32
1208 K:      nds32
1209
1210 ANDROID CONFIG FRAGMENTS
1211 M:      Rob Herring <robh@kernel.org>
1212 S:      Supported
1213 F:      kernel/configs/android*
1214
1215 ANDROID DRIVERS
1216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1217 M:      Arve Hjønnevåg <arve@android.com>
1218 M:      Todd Kjos <tkjos@android.com>
1219 M:      Martijn Coenen <maco@android.com>
1220 M:      Joel Fernandes <joel@joelfernandes.org>
1221 M:      Christian Brauner <christian@brauner.io>
1222 M:      Hridya Valsaraju <hridya@google.com>
1223 M:      Suren Baghdasaryan <surenb@google.com>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Supported
1226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1227 F:      drivers/android/
1228 F:      drivers/staging/android/
1229
1230 ANDROID GOLDFISH PIC DRIVER
1231 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1232 S:      Supported
1233 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1234 F:      drivers/irqchip/irq-goldfish-pic.c
1235
1236 ANDROID GOLDFISH RTC DRIVER
1237 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1238 S:      Supported
1239 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1240 F:      drivers/rtc/rtc-goldfish.c
1241
1242 AOA (Apple Onboard Audio) ALSA DRIVER
1243 M:      Johannes Berg <johannes@sipsolutions.net>
1244 L:      linuxppc-dev@lists.ozlabs.org
1245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1246 S:      Maintained
1247 F:      sound/aoa/
1248
1249 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1250 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1251 L:      linux-iio@vger.kernel.org
1252 S:      Maintained
1253 F:      drivers/iio/adc/stx104.c
1254
1255 APM DRIVER
1256 M:      Jiri Kosina <jikos@kernel.org>
1257 S:      Odd fixes
1258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1259 F:      arch/x86/kernel/apm_32.c
1260 F:      drivers/char/apm-emulation.c
1261 F:      include/linux/apm_bios.h
1262 F:      include/uapi/linux/apm_bios.h
1263
1264 APPARMOR SECURITY MODULE
1265 M:      John Johansen <john.johansen@canonical.com>
1266 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1267 S:      Supported
1268 W:      wiki.apparmor.net
1269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1270 F:      Documentation/admin-guide/LSM/apparmor.rst
1271 F:      security/apparmor/
1272
1273 APPLE BCM5974 MULTITOUCH DRIVER
1274 M:      Henrik Rydberg <rydberg@bitmath.org>
1275 L:      linux-input@vger.kernel.org
1276 S:      Odd fixes
1277 F:      drivers/input/mouse/bcm5974.c
1278
1279 APPLE DART IOMMU DRIVER
1280 M:      Sven Peter <sven@svenpeter.dev>
1281 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1282 L:      iommu@lists.linux-foundation.org
1283 S:      Maintained
1284 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1285 F:      drivers/iommu/apple-dart.c
1286
1287 APPLE SMC DRIVER
1288 M:      Henrik Rydberg <rydberg@bitmath.org>
1289 L:      linux-hwmon@vger.kernel.org
1290 S:      Odd fixes
1291 F:      drivers/hwmon/applesmc.c
1292
1293 APPLETALK NETWORK LAYER
1294 L:      netdev@vger.kernel.org
1295 S:      Odd fixes
1296 F:      drivers/net/appletalk/
1297 F:      include/linux/atalk.h
1298 F:      include/uapi/linux/atalk.h
1299 F:      net/appletalk/
1300
1301 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1302 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1303 S:      Supported
1304 F:      arch/arm64/boot/dts/apm/
1305
1306 APPLIED MICRO (APM) X-GENE SOC EDAC
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1310 F:      drivers/edac/xgene_edac.c
1311
1312 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1313 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1314 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1315 S:      Supported
1316 F:      drivers/net/ethernet/apm/xgene-v2/
1317
1318 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1319 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1320 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1321 M:      Quan Nguyen <quan@os.amperecomputing.com>
1322 S:      Supported
1323 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1324 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1325 F:      drivers/net/ethernet/apm/xgene/
1326 F:      drivers/net/mdio/mdio-xgene.c
1327
1328 APPLIED MICRO (APM) X-GENE SOC PMU
1329 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1330 S:      Supported
1331 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1332 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1333 F:      drivers/perf/xgene_pmu.c
1334
1335 APTINA CAMERA SENSOR PLL
1336 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1337 L:      linux-media@vger.kernel.org
1338 S:      Maintained
1339 F:      drivers/media/i2c/aptina-pll.*
1340
1341 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1342 M:      Aleksa Savic <savicaleksa83@gmail.com>
1343 L:      linux-hwmon@vger.kernel.org
1344 S:      Maintained
1345 F:      Documentation/hwmon/aquacomputer_d5next.rst
1346 F:      drivers/hwmon/aquacomputer_d5next.c
1347
1348 AQUANTIA ETHERNET DRIVER (atlantic)
1349 M:      Igor Russkikh <irusskikh@marvell.com>
1350 L:      netdev@vger.kernel.org
1351 S:      Supported
1352 W:      https://www.marvell.com/
1353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1354 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1355 F:      drivers/net/ethernet/aquantia/atlantic/
1356
1357 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1358 M:      Egor Pomozov <epomozov@marvell.com>
1359 L:      netdev@vger.kernel.org
1360 S:      Supported
1361 W:      http://www.aquantia.com
1362 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1363
1364 ARASAN NAND CONTROLLER DRIVER
1365 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1366 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1367 L:      linux-mtd@lists.infradead.org
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1370 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1371
1372 ARC FRAMEBUFFER DRIVER
1373 M:      Jaya Kumar <jayalk@intworks.biz>
1374 S:      Maintained
1375 F:      drivers/video/fbdev/arcfb.c
1376 F:      drivers/video/fbdev/core/fb_defio.c
1377
1378 ARC PGU DRM DRIVER
1379 M:      Alexey Brodkin <abrodkin@synopsys.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1382 F:      drivers/gpu/drm/tiny/arcpgu.c
1383
1384 ARCNET NETWORK LAYER
1385 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1386 L:      netdev@vger.kernel.org
1387 S:      Maintained
1388 F:      drivers/net/arcnet/
1389 F:      include/uapi/linux/if_arcnet.h
1390
1391 ARM ARCHITECTED TIMER DRIVER
1392 M:      Mark Rutland <mark.rutland@arm.com>
1393 M:      Marc Zyngier <maz@kernel.org>
1394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 S:      Maintained
1396 F:      arch/arm/include/asm/arch_timer.h
1397 F:      arch/arm64/include/asm/arch_timer.h
1398 F:      drivers/clocksource/arm_arch_timer.c
1399
1400 ARM HDLCD DRM DRIVER
1401 M:      Liviu Dudau <liviu.dudau@arm.com>
1402 S:      Supported
1403 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1404 F:      drivers/gpu/drm/arm/hdlcd_*
1405
1406 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1407 M:      Linus Walleij <linus.walleij@linaro.org>
1408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1411 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1412 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1413 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1414 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1415 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1416 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1417 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1418 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1419 F:      arch/arm/boot/dts/arm-realview-*
1420 F:      arch/arm/boot/dts/integrator*
1421 F:      arch/arm/boot/dts/versatile*
1422 F:      arch/arm/mach-integrator/
1423 F:      arch/arm/mach-realview/
1424 F:      arch/arm/mach-versatile/
1425 F:      arch/arm/plat-versatile/
1426 F:      drivers/bus/arm-integrator-lm.c
1427 F:      drivers/clk/versatile/
1428 F:      drivers/i2c/busses/i2c-versatile.c
1429 F:      drivers/irqchip/irq-versatile-fpga.c
1430 F:      drivers/mtd/maps/physmap-versatile.*
1431 F:      drivers/power/reset/arm-versatile-reboot.c
1432 F:      drivers/soc/versatile/
1433
1434 ARM KOMEDA DRM-KMS DRIVER
1435 M:      James (Qian) Wang <james.qian.wang@arm.com>
1436 M:      Liviu Dudau <liviu.dudau@arm.com>
1437 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1438 L:      Mali DP Maintainers <malidp@foss.arm.com>
1439 S:      Supported
1440 T:      git git://anongit.freedesktop.org/drm/drm-misc
1441 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1442 F:      Documentation/gpu/komeda-kms.rst
1443 F:      drivers/gpu/drm/arm/display/include/
1444 F:      drivers/gpu/drm/arm/display/komeda/
1445
1446 ARM MALI PANFROST DRM DRIVER
1447 M:      Rob Herring <robh@kernel.org>
1448 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1449 R:      Steven Price <steven.price@arm.com>
1450 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1451 L:      dri-devel@lists.freedesktop.org
1452 S:      Supported
1453 T:      git git://anongit.freedesktop.org/drm/drm-misc
1454 F:      drivers/gpu/drm/panfrost/
1455 F:      include/uapi/drm/panfrost_drm.h
1456
1457 ARM MALI-DP DRM DRIVER
1458 M:      Liviu Dudau <liviu.dudau@arm.com>
1459 M:      Brian Starkey <brian.starkey@arm.com>
1460 L:      Mali DP Maintainers <malidp@foss.arm.com>
1461 S:      Supported
1462 T:      git git://anongit.freedesktop.org/drm/drm-misc
1463 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1464 F:      Documentation/gpu/afbc.rst
1465 F:      drivers/gpu/drm/arm/
1466
1467 ARM MFM AND FLOPPY DRIVERS
1468 M:      Ian Molton <spyro@f2s.com>
1469 S:      Maintained
1470 F:      arch/arm/include/asm/floppy.h
1471 F:      arch/arm/mach-rpc/floppydma.S
1472
1473 ARM PMU PROFILING AND DEBUGGING
1474 M:      Will Deacon <will@kernel.org>
1475 M:      Mark Rutland <mark.rutland@arm.com>
1476 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1477 S:      Maintained
1478 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1479 F:      Documentation/devicetree/bindings/perf/
1480 F:      arch/arm*/include/asm/hw_breakpoint.h
1481 F:      arch/arm*/include/asm/perf_event.h
1482 F:      arch/arm*/kernel/hw_breakpoint.c
1483 F:      arch/arm*/kernel/perf_*
1484 F:      drivers/perf/
1485 F:      include/linux/perf/arm_pmu.h
1486
1487 ARM PORT
1488 M:      Russell King <linux@armlinux.org.uk>
1489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1490 S:      Odd Fixes
1491 W:      http://www.armlinux.org.uk/
1492 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1493 F:      arch/arm/
1494 X:      arch/arm/boot/dts/
1495
1496 ARM PRIMECELL AACI PL041 DRIVER
1497 M:      Russell King <linux@armlinux.org.uk>
1498 S:      Odd Fixes
1499 F:      sound/arm/aaci.*
1500
1501 ARM PRIMECELL BUS SUPPORT
1502 M:      Russell King <linux@armlinux.org.uk>
1503 S:      Odd Fixes
1504 F:      drivers/amba/
1505 F:      include/linux/amba/bus.h
1506
1507 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1508 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1509 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1510 L:      linux-mtd@lists.infradead.org
1511 S:      Maintained
1512 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1513 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1514
1515 ARM PRIMECELL PL35X SMC DRIVER
1516 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1517 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 S:      Maintained
1520 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1521 F:      drivers/memory/pl353-smc.c
1522
1523 ARM PRIMECELL CLCD PL110 DRIVER
1524 M:      Russell King <linux@armlinux.org.uk>
1525 S:      Odd Fixes
1526 F:      drivers/video/fbdev/amba-clcd.*
1527
1528 ARM PRIMECELL KMI PL050 DRIVER
1529 M:      Russell King <linux@armlinux.org.uk>
1530 S:      Odd Fixes
1531 F:      drivers/input/serio/ambakmi.*
1532 F:      include/linux/amba/kmi.h
1533
1534 ARM PRIMECELL MMCI PL180/1 DRIVER
1535 M:      Russell King <linux@armlinux.org.uk>
1536 S:      Odd Fixes
1537 F:      drivers/mmc/host/mmci.*
1538 F:      include/linux/amba/mmci.h
1539
1540 ARM PRIMECELL SSP PL022 SPI DRIVER
1541 M:      Linus Walleij <linus.walleij@linaro.org>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 S:      Maintained
1544 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1545 F:      drivers/spi/spi-pl022.c
1546
1547 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1548 M:      Russell King <linux@armlinux.org.uk>
1549 S:      Odd Fixes
1550 F:      drivers/tty/serial/amba-pl01*.c
1551 F:      include/linux/amba/serial.h
1552
1553 ARM PRIMECELL VIC PL190/PL192 DRIVER
1554 M:      Linus Walleij <linus.walleij@linaro.org>
1555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1556 S:      Maintained
1557 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1558 F:      drivers/irqchip/irq-vic.c
1559
1560 ARM SMC WATCHDOG DRIVER
1561 M:      Julius Werner <jwerner@chromium.org>
1562 R:      Evan Benn <evanbenn@chromium.org>
1563 S:      Maintained
1564 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1565 F:      drivers/watchdog/arm_smc_wdt.c
1566
1567 ARM SMMU DRIVERS
1568 M:      Will Deacon <will@kernel.org>
1569 R:      Robin Murphy <robin.murphy@arm.com>
1570 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1571 S:      Maintained
1572 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1573 F:      drivers/iommu/arm/
1574 F:      drivers/iommu/io-pgtable-arm*
1575
1576 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1577 M:      Arnd Bergmann <arnd@arndb.de>
1578 M:      Olof Johansson <olof@lixom.net>
1579 M:      soc@kernel.org
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1583 F:      arch/arm/boot/dts/Makefile
1584 F:      arch/arm64/boot/dts/Makefile
1585
1586 ARM SUB-ARCHITECTURES
1587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1588 S:      Maintained
1589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1590 F:      arch/arm/mach-*/
1591 F:      arch/arm/plat-*/
1592
1593 ARM/ACTIONS SEMI ARCHITECTURE
1594 M:      Andreas Färber <afaerber@suse.de>
1595 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1598 S:      Maintained
1599 F:      Documentation/devicetree/bindings/arm/actions.yaml
1600 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1601 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1602 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1603 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1604 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1605 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1606 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1607 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1608 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1609 F:      arch/arm/boot/dts/owl-*
1610 F:      arch/arm/mach-actions/
1611 F:      arch/arm64/boot/dts/actions/
1612 F:      drivers/clk/actions/
1613 F:      drivers/clocksource/timer-owl*
1614 F:      drivers/dma/owl-dma.c
1615 F:      drivers/i2c/busses/i2c-owl.c
1616 F:      drivers/irqchip/irq-owl-sirq.c
1617 F:      drivers/mmc/host/owl-mmc.c
1618 F:      drivers/net/ethernet/actions/
1619 F:      drivers/pinctrl/actions/*
1620 F:      drivers/soc/actions/
1621 F:      include/dt-bindings/power/owl-*
1622 F:      include/dt-bindings/reset/actions,*
1623 F:      include/linux/soc/actions/
1624 N:      owl
1625
1626 ARM/ADS SPHERE MACHINE SUPPORT
1627 M:      Lennert Buytenhek <kernel@wantstofly.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630
1631 ARM/AFEB9260 MACHINE SUPPORT
1632 M:      Sergey Lapin <slapin@ossfans.org>
1633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1634 S:      Maintained
1635
1636 ARM/AJECO 1ARM MACHINE SUPPORT
1637 M:      Lennert Buytenhek <kernel@wantstofly.org>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640
1641 ARM/Allwinner SoC Clock Support
1642 M:      Emilio López <emilio@elopez.com.ar>
1643 S:      Maintained
1644 F:      drivers/clk/sunxi/
1645
1646 ARM/Allwinner sunXi SoC support
1647 M:      Maxime Ripard <mripard@kernel.org>
1648 M:      Chen-Yu Tsai <wens@csie.org>
1649 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 S:      Maintained
1652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1653 L:      linux-sunxi@lists.linux.dev
1654 F:      arch/arm/mach-sunxi/
1655 F:      arch/arm64/boot/dts/allwinner/
1656 F:      drivers/clk/sunxi-ng/
1657 F:      drivers/pinctrl/sunxi/
1658 F:      drivers/soc/sunxi/
1659 N:      allwinner
1660 N:      sun[x456789]i
1661 N:      sun50i
1662
1663 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1664 M:      Neil Armstrong <narmstrong@baylibre.com>
1665 M:      Jerome Brunet <jbrunet@baylibre.com>
1666 L:      linux-amlogic@lists.infradead.org
1667 S:      Maintained
1668 F:      Documentation/devicetree/bindings/clock/amlogic*
1669 F:      drivers/clk/meson/
1670 F:      include/dt-bindings/clock/gxbb*
1671 F:      include/dt-bindings/clock/meson*
1672
1673 ARM/Amlogic Meson SoC Crypto Drivers
1674 M:      Corentin Labbe <clabbe@baylibre.com>
1675 L:      linux-crypto@vger.kernel.org
1676 L:      linux-amlogic@lists.infradead.org
1677 S:      Maintained
1678 F:      Documentation/devicetree/bindings/crypto/amlogic*
1679 F:      drivers/crypto/amlogic/
1680
1681 ARM/Amlogic Meson SoC Sound Drivers
1682 M:      Jerome Brunet <jbrunet@baylibre.com>
1683 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      Documentation/devicetree/bindings/sound/amlogic*
1686 F:      sound/soc/meson/
1687
1688 ARM/Amlogic Meson SoC support
1689 M:      Neil Armstrong <narmstrong@baylibre.com>
1690 M:      Kevin Hilman <khilman@baylibre.com>
1691 R:      Jerome Brunet <jbrunet@baylibre.com>
1692 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1694 L:      linux-amlogic@lists.infradead.org
1695 S:      Maintained
1696 W:      http://linux-meson.com/
1697 F:      arch/arm/boot/dts/meson*
1698 F:      arch/arm/mach-meson/
1699 F:      arch/arm64/boot/dts/amlogic/
1700 F:      drivers/mmc/host/meson*
1701 F:      drivers/pinctrl/meson/
1702 F:      drivers/rtc/rtc-meson*
1703 F:      drivers/soc/amlogic/
1704 N:      meson
1705
1706 ARM/Annapurna Labs ALPINE ARCHITECTURE
1707 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1708 M:      Antoine Tenart <atenart@kernel.org>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      arch/arm/boot/dts/alpine*
1712 F:      arch/arm/mach-alpine/
1713 F:      arch/arm64/boot/dts/amazon/
1714 F:      drivers/*/*alpine*
1715
1716 ARM/APPLE MACHINE SUPPORT
1717 M:      Hector Martin <marcan@marcan.st>
1718 M:      Sven Peter <sven@svenpeter.dev>
1719 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 W:      https://asahilinux.org
1723 B:      https://github.com/AsahiLinux/linux/issues
1724 C:      irc://irc.oftc.net/asahi-dev
1725 T:      git https://github.com/AsahiLinux/linux.git
1726 F:      Documentation/devicetree/bindings/arm/apple.yaml
1727 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1728 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1729 F:      arch/arm64/boot/dts/apple/
1730 F:      drivers/irqchip/irq-apple-aic.c
1731 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1732 F:      include/dt-bindings/pinctrl/apple.h
1733
1734 ARM/ARTPEC MACHINE SUPPORT
1735 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1736 M:      Lars Persson <lars.persson@axis.com>
1737 L:      linux-arm-kernel@axis.com
1738 S:      Maintained
1739 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1740 F:      arch/arm/boot/dts/artpec6*
1741 F:      arch/arm/mach-artpec
1742 F:      drivers/clk/axis
1743 F:      drivers/crypto/axis
1744 F:      drivers/mmc/host/usdhi6rol0.c
1745 F:      drivers/pinctrl/pinctrl-artpec*
1746
1747 ARM/ASPEED I2C DRIVER
1748 M:      Brendan Higgins <brendanhiggins@google.com>
1749 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1750 R:      Joel Stanley <joel@jms.id.au>
1751 L:      linux-i2c@vger.kernel.org
1752 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1753 S:      Maintained
1754 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1755 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1756 F:      drivers/i2c/busses/i2c-aspeed.c
1757 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1758
1759 ARM/ASPEED MACHINE SUPPORT
1760 M:      Joel Stanley <joel@jms.id.au>
1761 R:      Andrew Jeffery <andrew@aj.id.au>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1764 S:      Supported
1765 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1767 F:      arch/arm/boot/dts/aspeed-*
1768 F:      arch/arm/mach-aspeed/
1769 N:      aspeed
1770
1771 ARM/BITMAIN ARCHITECTURE
1772 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Maintained
1775 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1776 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1777 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1778 F:      arch/arm64/boot/dts/bitmain/
1779 F:      drivers/clk/clk-bm1880.c
1780 F:      drivers/pinctrl/pinctrl-bm1880.c
1781
1782 ARM/CALXEDA HIGHBANK ARCHITECTURE
1783 M:      Andre Przywara <andre.przywara@arm.com>
1784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1785 S:      Maintained
1786 F:      arch/arm/boot/dts/ecx-*.dts*
1787 F:      arch/arm/boot/dts/highbank.dts
1788 F:      arch/arm/mach-highbank/
1789
1790 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1791 M:      Krzysztof Halasa <khalasa@piap.pl>
1792 S:      Maintained
1793 F:      arch/arm/mach-cns3xxx/
1794
1795 ARM/CAVIUM THUNDER NETWORK DRIVER
1796 M:      Sunil Goutham <sgoutham@marvell.com>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Supported
1799 F:      drivers/net/ethernet/cavium/thunder/
1800
1801 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1802 M:      Lukasz Majewski <lukma@denx.de>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805 F:      arch/arm/mach-ep93xx/ts72xx.c
1806
1807 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1808 M:      Alexander Shiyan <shc_work@mail.ru>
1809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1810 S:      Odd Fixes
1811 N:      clps711x
1812
1813 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1814 M:      Lennert Buytenhek <kernel@wantstofly.org>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817
1818 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1819 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1820 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Maintained
1823 F:      arch/arm/mach-ep93xx/
1824 F:      arch/arm/mach-ep93xx/include/mach/
1825
1826 ARM/CLKDEV SUPPORT
1827 M:      Russell King <linux@armlinux.org.uk>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 S:      Maintained
1830 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1831 F:      drivers/clk/clkdev.c
1832
1833 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1834 M:      Baruch Siach <baruch@tkos.co.il>
1835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1836 S:      Maintained
1837 F:      arch/arm/boot/dts/cx92755*
1838 N:      digicolor
1839
1840 ARM/CONTEC MICRO9 MACHINE SUPPORT
1841 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1842 S:      Maintained
1843 F:      arch/arm/mach-ep93xx/micro9.c
1844
1845 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1846 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1847 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1848 R:      Mike Leach <mike.leach@linaro.org>
1849 R:      Leo Yan <leo.yan@linaro.org>
1850 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1854 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1855 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1856 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1857 F:      Documentation/devicetree/bindings/arm/coresight.txt
1858 F:      Documentation/devicetree/bindings/arm/ete.yaml
1859 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1860 F:      Documentation/trace/coresight/*
1861 F:      drivers/hwtracing/coresight/*
1862 F:      include/dt-bindings/arm/coresight-cti-dt.h
1863 F:      include/linux/coresight*
1864 F:      tools/perf/arch/arm/util/auxtrace.c
1865 F:      tools/perf/arch/arm/util/cs-etm.c
1866 F:      tools/perf/arch/arm/util/cs-etm.h
1867 F:      tools/perf/arch/arm/util/pmu.c
1868 F:      tools/perf/util/cs-etm-decoder/*
1869 F:      tools/perf/util/cs-etm.*
1870
1871 ARM/CORGI MACHINE SUPPORT
1872 M:      Richard Purdie <rpurdie@rpsys.net>
1873 S:      Maintained
1874
1875 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1876 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1877 M:      Linus Walleij <linus.walleij@linaro.org>
1878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1879 S:      Maintained
1880 T:      git git://github.com/ulli-kroll/linux.git
1881 F:      Documentation/devicetree/bindings/arm/gemini.txt
1882 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1883 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1884 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1885 F:      arch/arm/boot/dts/gemini*
1886 F:      arch/arm/mach-gemini/
1887 F:      drivers/crypto/gemini/
1888 F:      drivers/net/ethernet/cortina/
1889 F:      drivers/pinctrl/pinctrl-gemini.c
1890 F:      drivers/rtc/rtc-ftrtc010.c
1891
1892 ARM/CZ.NIC TURRIS SUPPORT
1893 M:      Marek Behún <kabel@kernel.org>
1894 S:      Maintained
1895 W:      https://www.turris.cz/
1896 F:      Documentation/ABI/testing/debugfs-moxtet
1897 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1898 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1899 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1900 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1901 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1902 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1903 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1904 F:      drivers/bus/moxtet.c
1905 F:      drivers/firmware/turris-mox-rwtm.c
1906 F:      drivers/leds/leds-turris-omnia.c
1907 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1908 F:      drivers/gpio/gpio-moxtet.c
1909 F:      drivers/watchdog/armada_37xx_wdt.c
1910 F:      include/dt-bindings/bus/moxtet.h
1911 F:      include/linux/armada-37xx-rwtm-mailbox.h
1912 F:      include/linux/moxtet.h
1913
1914 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1915 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1917 S:      Maintained
1918 F:      arch/arm/mach-pxa/ezx.c
1919
1920 ARM/FARADAY FA526 PORT
1921 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1923 S:      Maintained
1924 T:      git git://git.berlios.de/gemini-board
1925 F:      arch/arm/mm/*-fa*
1926
1927 ARM/FOOTBRIDGE ARCHITECTURE
1928 M:      Russell King <linux@armlinux.org.uk>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931 W:      http://www.armlinux.org.uk/
1932 F:      arch/arm/include/asm/hardware/dec21285.h
1933 F:      arch/arm/mach-footbridge/
1934
1935 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1936 M:      Shawn Guo <shawnguo@kernel.org>
1937 M:      Sascha Hauer <s.hauer@pengutronix.de>
1938 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1939 R:      Fabio Estevam <festevam@gmail.com>
1940 R:      NXP Linux Team <linux-imx@nxp.com>
1941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1942 S:      Maintained
1943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1944 X:      drivers/media/i2c/
1945 N:      imx
1946 N:      mxs
1947
1948 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1949 M:      Shawn Guo <shawnguo@kernel.org>
1950 M:      Li Yang <leoyang.li@nxp.com>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S:      Maintained
1953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1954 F:      arch/arm/boot/dts/ls1021a*
1955 F:      arch/arm64/boot/dts/freescale/fsl-*
1956 F:      arch/arm64/boot/dts/freescale/qoriq-*
1957
1958 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1959 M:      Shawn Guo <shawnguo@kernel.org>
1960 M:      Sascha Hauer <s.hauer@pengutronix.de>
1961 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1962 R:      Stefan Agner <stefan@agner.ch>
1963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 S:      Maintained
1965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1966 F:      arch/arm/boot/dts/vf*
1967 F:      arch/arm/mach-imx/*vf610*
1968
1969 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1970 M:      Lennert Buytenhek <kernel@wantstofly.org>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973
1974 ARM/GUMSTIX MACHINE SUPPORT
1975 M:      Steve Sakoman <sakoman@gmail.com>
1976 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1977 S:      Maintained
1978
1979 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1980 M:      Philipp Zabel <philipp.zabel@gmail.com>
1981 M:      Paul Parsons <lost.distance@yahoo.com>
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 F:      arch/arm/mach-pxa/hx4700.c
1985 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1986 F:      sound/soc/pxa/hx4700.c
1987
1988 ARM/HISILICON SOC SUPPORT
1989 M:      Wei Xu <xuwei5@hisilicon.com>
1990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S:      Supported
1992 W:      http://www.hisilicon.com
1993 T:      git git://github.com/hisilicon/linux-hisi.git
1994 F:      arch/arm/boot/dts/hi3*
1995 F:      arch/arm/boot/dts/hip*
1996 F:      arch/arm/boot/dts/hisi*
1997 F:      arch/arm/mach-hisi/
1998 F:      arch/arm64/boot/dts/hisilicon/
1999
2000 ARM/HP JORNADA 7XX MACHINE SUPPORT
2001 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2002 S:      Maintained
2003 W:      www.jlime.com
2004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2005 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2006 F:      arch/arm/mach-sa1100/jornada720.c
2007
2008 ARM/IGEP MACHINE SUPPORT
2009 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2010 M:      Javier Martinez Canillas <javier@dowhile0.org>
2011 L:      linux-omap@vger.kernel.org
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 S:      Maintained
2014 F:      arch/arm/boot/dts/omap3-igep*
2015
2016 ARM/INCOME PXA270 SUPPORT
2017 M:      Marek Vasut <marek.vasut@gmail.com>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Maintained
2020 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2021
2022 ARM/INTEL IOP32X ARM ARCHITECTURE
2023 M:      Lennert Buytenhek <kernel@wantstofly.org>
2024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S:      Maintained
2026
2027 ARM/INTEL IQ81342EX MACHINE SUPPORT
2028 M:      Lennert Buytenhek <kernel@wantstofly.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031
2032 ARM/INTEL IXDP2850 MACHINE SUPPORT
2033 M:      Lennert Buytenhek <kernel@wantstofly.org>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036
2037 ARM/INTEL IXP4XX ARM ARCHITECTURE
2038 M:      Linus Walleij <linusw@kernel.org>
2039 M:      Imre Kaloz <kaloz@openwrt.org>
2040 M:      Krzysztof Halasa <khalasa@piap.pl>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2044 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2045 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2046 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2047 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2048 F:      arch/arm/mach-ixp4xx/
2049 F:      drivers/bus/intel-ixp4xx-eb.c
2050 F:      drivers/clocksource/timer-ixp4xx.c
2051 F:      drivers/crypto/ixp4xx_crypto.c
2052 F:      drivers/gpio/gpio-ixp4xx.c
2053 F:      drivers/irqchip/irq-ixp4xx.c
2054 F:      include/linux/irqchip/irq-ixp4xx.h
2055 F:      include/linux/platform_data/timer-ixp4xx.h
2056
2057 ARM/INTEL KEEMBAY ARCHITECTURE
2058 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2059 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2060 S:      Maintained
2061 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2062 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2063 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2064
2065 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2066 M:      Jonathan Cameron <jic23@cam.ac.uk>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 F:      arch/arm/mach-pxa/stargate2.c
2070 F:      drivers/pcmcia/pxa2xx_stargate2.c
2071
2072 ARM/INTEL XSC3 (MANZANO) ARM CORE
2073 M:      Lennert Buytenhek <kernel@wantstofly.org>
2074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 S:      Maintained
2076
2077 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2078 M:      Lennert Buytenhek <kernel@wantstofly.org>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081
2082 ARM/LG1K ARCHITECTURE
2083 M:      Chanho Min <chanho.min@lge.com>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 F:      arch/arm64/boot/dts/lg/
2087
2088 ARM/LOGICPD PXA270 MACHINE SUPPORT
2089 M:      Lennert Buytenhek <kernel@wantstofly.org>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 S:      Maintained
2092
2093 ARM/LPC18XX ARCHITECTURE
2094 M:      Vladimir Zapolskiy <vz@mleia.com>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2098 F:      arch/arm/boot/dts/lpc43*
2099 F:      drivers/i2c/busses/i2c-lpc2k.c
2100 F:      drivers/memory/pl172.c
2101 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2102 F:      drivers/rtc/rtc-lpc24xx.c
2103 N:      lpc18xx
2104
2105 ARM/LPC32XX SOC SUPPORT
2106 M:      Vladimir Zapolskiy <vz@mleia.com>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2110 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2111 F:      arch/arm/boot/dts/lpc32*
2112 F:      arch/arm/mach-lpc32xx/
2113 F:      drivers/i2c/busses/i2c-pnx.c
2114 F:      drivers/net/ethernet/nxp/lpc_eth.c
2115 F:      drivers/usb/host/ohci-nxp.c
2116 F:      drivers/watchdog/pnx4008_wdt.c
2117 N:      lpc32xx
2118
2119 ARM/MAGICIAN MACHINE SUPPORT
2120 M:      Philipp Zabel <philipp.zabel@gmail.com>
2121 S:      Maintained
2122
2123 ARM/Marvell Dove/MV78xx0/Orion SOC support
2124 M:      Andrew Lunn <andrew@lunn.ch>
2125 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2126 M:      Gregory Clement <gregory.clement@bootlin.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2130 F:      Documentation/devicetree/bindings/soc/dove/
2131 F:      arch/arm/boot/dts/dove*
2132 F:      arch/arm/boot/dts/orion5x*
2133 F:      arch/arm/mach-dove/
2134 F:      arch/arm/mach-mv78xx0/
2135 F:      arch/arm/mach-orion5x/
2136 F:      arch/arm/plat-orion/
2137 F:      drivers/soc/dove/
2138
2139 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2140 M:      Andrew Lunn <andrew@lunn.ch>
2141 M:      Gregory Clement <gregory.clement@bootlin.com>
2142 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2146 F:      arch/arm/boot/dts/armada*
2147 F:      arch/arm/boot/dts/kirkwood*
2148 F:      arch/arm/configs/mvebu_*_defconfig
2149 F:      arch/arm/mach-mvebu/
2150 F:      arch/arm64/boot/dts/marvell/armada*
2151 F:      arch/arm64/boot/dts/marvell/cn913*
2152 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2153 F:      drivers/cpufreq/armada-8k-cpufreq.c
2154 F:      drivers/cpufreq/mvebu-cpufreq.c
2155 F:      drivers/irqchip/irq-armada-370-xp.c
2156 F:      drivers/irqchip/irq-mvebu-*
2157 F:      drivers/pinctrl/mvebu/
2158 F:      drivers/rtc/rtc-armada38x.c
2159
2160 ARM/Mediatek RTC DRIVER
2161 M:      Eddie Huang <eddie.huang@mediatek.com>
2162 M:      Sean Wang <sean.wang@mediatek.com>
2163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2167 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2168 F:      drivers/rtc/rtc-mt2712.c
2169 F:      drivers/rtc/rtc-mt6397.c
2170 F:      drivers/rtc/rtc-mt7622.c
2171
2172 ARM/Mediatek SoC support
2173 M:      Matthias Brugger <matthias.bgg@gmail.com>
2174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2175 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177 W:      https://mtk.wiki.kernel.org/
2178 C:      irc://chat.freenode.net/linux-mediatek
2179 F:      arch/arm/boot/dts/mt6*
2180 F:      arch/arm/boot/dts/mt7*
2181 F:      arch/arm/boot/dts/mt8*
2182 F:      arch/arm/mach-mediatek/
2183 F:      arch/arm64/boot/dts/mediatek/
2184 F:      drivers/soc/mediatek/
2185 N:      mtk
2186 N:      mt[678]
2187 K:      mediatek
2188
2189 ARM/Mediatek USB3 PHY DRIVER
2190 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      Documentation/devicetree/bindings/phy/mediatek,*
2195 F:      drivers/phy/mediatek/
2196
2197 ARM/Microchip (AT91) SoC support
2198 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2199 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2200 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2201 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2202 S:      Supported
2203 W:      http://www.linux4sam.org
2204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2205 F:      arch/arm/boot/dts/at91*.dts
2206 F:      arch/arm/boot/dts/at91*.dtsi
2207 F:      arch/arm/boot/dts/sama*.dts
2208 F:      arch/arm/boot/dts/sama*.dtsi
2209 F:      arch/arm/include/debug/at91.S
2210 F:      arch/arm/mach-at91/
2211 F:      drivers/memory/atmel*
2212 F:      drivers/watchdog/sama5d4_wdt.c
2213 F:      include/soc/at91/
2214 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2215 X:      drivers/net/wireless/atmel/
2216 N:      at91
2217 N:      atmel
2218
2219 ARM/Microchip Sparx5 SoC support
2220 M:      Lars Povlsen <lars.povlsen@microchip.com>
2221 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2222 M:      UNGLinuxDriver@microchip.com
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Supported
2225 T:      git git://github.com/microchip-ung/linux-upstream.git
2226 F:      arch/arm64/boot/dts/microchip/
2227 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2228 N:      sparx5
2229
2230 Microchip Timer Counter Block (TCB) Capture Driver
2231 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2233 L:      linux-iio@vger.kernel.org
2234 S:      Maintained
2235 F:      drivers/counter/microchip-tcb-capture.c
2236
2237 ARM/MIOA701 MACHINE SUPPORT
2238 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Maintained
2241 F:      arch/arm/mach-pxa/mioa701.c
2242
2243 ARM/MStar/Sigmastar Armv7 SoC support
2244 M:      Daniel Palmer <daniel@thingy.jp>
2245 M:      Romain Perier <romain.perier@gmail.com>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248 W:      http://linux-chenxing.org/
2249 T:      git git://github.com/linux-chenxing/linux.git
2250 F:      Documentation/devicetree/bindings/arm/mstar/*
2251 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2252 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2253 F:      arch/arm/boot/dts/mstar-*
2254 F:      arch/arm/mach-mstar/
2255 F:      drivers/clk/mstar/
2256 F:      drivers/gpio/gpio-msc313.c
2257 F:      drivers/watchdog/msc313e_wdt.c
2258 F:      include/dt-bindings/clock/mstar-*
2259 F:      include/dt-bindings/gpio/msc313-gpio.h
2260
2261 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2262 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2263 S:      Maintained
2264
2265 ARM/NOMADIK/Ux500 ARCHITECTURES
2266 M:      Linus Walleij <linus.walleij@linaro.org>
2267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2268 S:      Maintained
2269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2270 F:      Documentation/devicetree/bindings/arm/ste-*
2271 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2272 F:      Documentation/devicetree/bindings/arm/ux500/
2273 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2274 F:      arch/arm/boot/dts/ste-*
2275 F:      arch/arm/mach-nomadik/
2276 F:      arch/arm/mach-ux500/
2277 F:      drivers/clk/clk-nomadik.c
2278 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2279 F:      drivers/dma/ste_dma40*
2280 F:      drivers/hwspinlock/u8500_hsem.c
2281 F:      drivers/i2c/busses/i2c-nomadik.c
2282 F:      drivers/iio/adc/ab8500-gpadc.c
2283 F:      drivers/mfd/ab8500*
2284 F:      drivers/mfd/abx500*
2285 F:      drivers/mfd/db8500*
2286 F:      drivers/pinctrl/nomadik/
2287 F:      drivers/rtc/rtc-ab8500.c
2288 F:      drivers/rtc/rtc-pl031.c
2289 F:      drivers/soc/ux500/
2290
2291 ARM/NUVOTON NPCM ARCHITECTURE
2292 M:      Avi Fishman <avifishman70@gmail.com>
2293 M:      Tomer Maimon <tmaimon77@gmail.com>
2294 M:      Tali Perry <tali.perry1@gmail.com>
2295 R:      Patrick Venture <venture@google.com>
2296 R:      Nancy Yuen <yuenn@google.com>
2297 R:      Benjamin Fair <benjaminfair@google.com>
2298 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2299 S:      Supported
2300 F:      Documentation/devicetree/bindings/*/*/*npcm*
2301 F:      Documentation/devicetree/bindings/*/*npcm*
2302 F:      arch/arm/boot/dts/nuvoton-npcm*
2303 F:      arch/arm/mach-npcm/
2304 F:      drivers/*/*npcm*
2305 F:      drivers/*/*/*npcm*
2306 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2307
2308 ARM/NUVOTON WPCM450 ARCHITECTURE
2309 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2310 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2311 S:      Maintained
2312 F:      Documentation/devicetree/bindings/*/*wpcm*
2313 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2314 F:      arch/arm/mach-npcm/wpcm450.c
2315 F:      drivers/*/*wpcm*
2316
2317 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2318 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2319 S:      Orphan
2320 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2321 F:      arch/arm/mach-s3c/gta02.h
2322 F:      arch/arm/mach-s3c/mach-gta02.c
2323
2324 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2325 M:      Alexander Clouter <alex@digriz.org.uk>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 W:      http://www.digriz.org.uk/ts78xx/kernel
2329 F:      arch/arm/mach-orion5x/ts78xx-*
2330
2331 ARM/OXNAS platform support
2332 M:      Neil Armstrong <narmstrong@baylibre.com>
2333 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2334 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2335 S:      Maintained
2336 F:      arch/arm/boot/dts/ox8*.dts*
2337 F:      arch/arm/mach-oxnas/
2338 F:      drivers/power/reset/oxnas-restart.c
2339 N:      oxnas
2340
2341 ARM/PALM TREO SUPPORT
2342 M:      Tomas Cech <sleep_walker@suse.com>
2343 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2344 S:      Maintained
2345 W:      http://hackndev.com
2346 F:      arch/arm/mach-pxa/palmtreo.*
2347
2348 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2349 M:      Marek Vasut <marek.vasut@gmail.com>
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 S:      Maintained
2352 W:      http://hackndev.com
2353 F:      arch/arm/mach-pxa/include/mach/palmld.h
2354 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2355 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2356 F:      arch/arm/mach-pxa/palmld.c
2357 F:      arch/arm/mach-pxa/palmt5.*
2358 F:      arch/arm/mach-pxa/palmtc.c
2359 F:      arch/arm/mach-pxa/palmte2.*
2360 F:      arch/arm/mach-pxa/palmtx.c
2361
2362 ARM/PALMZ72 SUPPORT
2363 M:      Sergey Lapin <slapin@ossfans.org>
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 S:      Maintained
2366 W:      http://hackndev.com
2367 F:      arch/arm/mach-pxa/palmz72.*
2368
2369 ARM/PLEB SUPPORT
2370 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2371 S:      Maintained
2372 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2373
2374 ARM/PT DIGITAL BOARD PORT
2375 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 W:      http://www.armlinux.org.uk/
2379
2380 ARM/QUALCOMM SUPPORT
2381 M:      Andy Gross <agross@kernel.org>
2382 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2383 L:      linux-arm-msm@vger.kernel.org
2384 S:      Maintained
2385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2386 F:      Documentation/devicetree/bindings/*/qcom*
2387 F:      Documentation/devicetree/bindings/soc/qcom/
2388 F:      arch/arm/boot/dts/qcom-*.dts
2389 F:      arch/arm/boot/dts/qcom-*.dtsi
2390 F:      arch/arm/mach-qcom/
2391 F:      arch/arm64/boot/dts/qcom/
2392 F:      drivers/*/*/qcom*
2393 F:      drivers/*/*/qcom/
2394 F:      drivers/*/pm8???-*
2395 F:      drivers/*/qcom*
2396 F:      drivers/*/qcom/
2397 F:      drivers/bluetooth/btqcomsmd.c
2398 F:      drivers/clocksource/timer-qcom.c
2399 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2400 F:      drivers/extcon/extcon-qcom*
2401 F:      drivers/i2c/busses/i2c-qcom-geni.c
2402 F:      drivers/i2c/busses/i2c-qup.c
2403 F:      drivers/iommu/msm*
2404 F:      drivers/mfd/ssbi.c
2405 F:      drivers/mmc/host/mmci_qcom*
2406 F:      drivers/mmc/host/sdhci-msm.c
2407 F:      drivers/pci/controller/dwc/pcie-qcom.c
2408 F:      drivers/phy/qualcomm/
2409 F:      drivers/power/*/msm*
2410 F:      drivers/reset/reset-qcom-*
2411 F:      drivers/scsi/ufs/ufs-qcom*
2412 F:      drivers/spi/spi-geni-qcom.c
2413 F:      drivers/spi/spi-qcom-qspi.c
2414 F:      drivers/spi/spi-qup.c
2415 F:      drivers/tty/serial/msm_serial.c
2416 F:      drivers/usb/dwc3/dwc3-qcom.c
2417 F:      include/dt-bindings/*/qcom*
2418 F:      include/linux/*/qcom*
2419 F:      include/linux/soc/qcom/
2420
2421 ARM/RADISYS ENP2611 MACHINE SUPPORT
2422 M:      Lennert Buytenhek <kernel@wantstofly.org>
2423 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2424 S:      Maintained
2425
2426 ARM/RDA MICRO ARCHITECTURE
2427 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2429 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2430 S:      Maintained
2431 F:      Documentation/devicetree/bindings/arm/rda.yaml
2432 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2433 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2434 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2435 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2436 F:      arch/arm/boot/dts/rda8810pl-*
2437 F:      drivers/clocksource/timer-rda.c
2438 F:      drivers/gpio/gpio-rda.c
2439 F:      drivers/irqchip/irq-rda-intc.c
2440 F:      drivers/tty/serial/rda-uart.c
2441
2442 ARM/REALTEK ARCHITECTURE
2443 M:      Andreas Färber <afaerber@suse.de>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2448 F:      arch/arm/boot/dts/rtd*
2449 F:      arch/arm/mach-realtek/
2450 F:      arch/arm64/boot/dts/realtek/
2451
2452 ARM/RENESAS ARM64 ARCHITECTURE
2453 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2454 M:      Magnus Damm <magnus.damm@gmail.com>
2455 L:      linux-renesas-soc@vger.kernel.org
2456 S:      Supported
2457 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2459 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2460 F:      arch/arm64/boot/dts/renesas/
2461 F:      drivers/soc/renesas/
2462 F:      include/linux/soc/renesas/
2463
2464 ARM/RISCPC ARCHITECTURE
2465 M:      Russell King <linux@armlinux.org.uk>
2466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2467 S:      Maintained
2468 W:      http://www.armlinux.org.uk/
2469 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2470 F:      arch/arm/include/asm/hardware/ioc.h
2471 F:      arch/arm/include/asm/hardware/iomd.h
2472 F:      arch/arm/include/asm/hardware/memc.h
2473 F:      arch/arm/mach-rpc/
2474 F:      drivers/net/ethernet/8390/etherh.c
2475 F:      drivers/net/ethernet/i825xx/ether1*
2476 F:      drivers/net/ethernet/seeq/ether3*
2477 F:      drivers/scsi/arm/
2478
2479 ARM/Rockchip SoC support
2480 M:      Heiko Stuebner <heiko@sntech.de>
2481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2482 L:      linux-rockchip@lists.infradead.org
2483 S:      Maintained
2484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2485 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2486 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2487 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2488 F:      arch/arm/boot/dts/rk3*
2489 F:      arch/arm/boot/dts/rv1108*
2490 F:      arch/arm/mach-rockchip/
2491 F:      drivers/*/*/*rockchip*
2492 F:      drivers/*/*rockchip*
2493 F:      drivers/clk/rockchip/
2494 F:      drivers/i2c/busses/i2c-rk3x.c
2495 F:      sound/soc/rockchip/
2496 N:      rockchip
2497
2498 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2499 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2500 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2501 L:      linux-samsung-soc@vger.kernel.org
2502 S:      Maintained
2503 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2504 F:      Documentation/arm/samsung/
2505 F:      Documentation/devicetree/bindings/arm/samsung/
2506 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2507 F:      arch/arm/boot/dts/exynos*
2508 F:      arch/arm/boot/dts/s3c*
2509 F:      arch/arm/boot/dts/s5p*
2510 F:      arch/arm/mach-exynos*/
2511 F:      arch/arm/mach-s3c/
2512 F:      arch/arm/mach-s5p*/
2513 F:      arch/arm64/boot/dts/exynos/
2514 F:      drivers/*/*/*s3c24*
2515 F:      drivers/*/*s3c24*
2516 F:      drivers/*/*s3c64xx*
2517 F:      drivers/*/*s5pv210*
2518 F:      drivers/clocksource/samsung_pwm_timer.c
2519 F:      drivers/memory/samsung/
2520 F:      drivers/pwm/pwm-samsung.c
2521 F:      drivers/soc/samsung/
2522 F:      drivers/tty/serial/samsung*
2523 F:      include/clocksource/samsung_pwm.h
2524 F:      include/linux/platform_data/*s3c*
2525 F:      include/linux/serial_s3c.h
2526 F:      include/linux/soc/samsung/
2527 N:      exynos
2528 N:      s3c2410
2529 N:      s3c64xx
2530 N:      s5pv210
2531
2532 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2533 M:      Andrzej Hajda <a.hajda@samsung.com>
2534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2535 L:      linux-media@vger.kernel.org
2536 S:      Maintained
2537 F:      drivers/media/platform/s5p-g2d/
2538
2539 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2540 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2541 L:      linux-samsung-soc@vger.kernel.org
2542 L:      linux-media@vger.kernel.org
2543 S:      Maintained
2544 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2545 F:      drivers/media/cec/platform/s5p/
2546
2547 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2548 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2549 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2550 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2552 L:      linux-media@vger.kernel.org
2553 S:      Maintained
2554 F:      drivers/media/platform/s5p-jpeg/
2555
2556 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2557 M:      Andrzej Hajda <a.hajda@samsung.com>
2558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2559 L:      linux-media@vger.kernel.org
2560 S:      Maintained
2561 F:      drivers/media/platform/s5p-mfc/
2562
2563 ARM/SHMOBILE ARM ARCHITECTURE
2564 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2565 M:      Magnus Damm <magnus.damm@gmail.com>
2566 L:      linux-renesas-soc@vger.kernel.org
2567 S:      Supported
2568 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2570 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2571 F:      arch/arm/boot/dts/emev2*
2572 F:      arch/arm/boot/dts/gr-peach*
2573 F:      arch/arm/boot/dts/iwg20d-q7*
2574 F:      arch/arm/boot/dts/r7s*
2575 F:      arch/arm/boot/dts/r8a*
2576 F:      arch/arm/boot/dts/r9a*
2577 F:      arch/arm/boot/dts/sh*
2578 F:      arch/arm/configs/shmobile_defconfig
2579 F:      arch/arm/include/debug/renesas-scif.S
2580 F:      arch/arm/mach-shmobile/
2581 F:      drivers/soc/renesas/
2582 F:      include/linux/soc/renesas/
2583
2584 ARM/SOCFPGA ARCHITECTURE
2585 M:      Dinh Nguyen <dinguyen@kernel.org>
2586 S:      Maintained
2587 W:      http://www.rocketboards.org
2588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2589 F:      arch/arm/boot/dts/socfpga*
2590 F:      arch/arm/configs/socfpga_defconfig
2591 F:      arch/arm/mach-socfpga/
2592 F:      arch/arm64/boot/dts/altera/
2593 F:      arch/arm64/boot/dts/intel/
2594
2595 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2596 M:      Dinh Nguyen <dinguyen@kernel.org>
2597 S:      Maintained
2598 F:      drivers/clk/socfpga/
2599
2600 ARM/SOCFPGA EDAC SUPPORT
2601 M:      Dinh Nguyen <dinguyen@kernel.org>
2602 S:      Maintained
2603 F:      drivers/edac/altera_edac.[ch]
2604
2605 ARM/SPREADTRUM SoC SUPPORT
2606 M:      Orson Zhai <orsonzhai@gmail.com>
2607 M:      Baolin Wang <baolin.wang7@gmail.com>
2608 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2609 S:      Maintained
2610 F:      arch/arm64/boot/dts/sprd
2611 N:      sprd
2612 N:      sc27xx
2613 N:      sc2731
2614
2615 ARM/STI ARCHITECTURE
2616 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2618 S:      Maintained
2619 W:      http://www.stlinux.com
2620 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2621 F:      arch/arm/boot/dts/sti*
2622 F:      arch/arm/mach-sti/
2623 F:      drivers/ata/ahci_st.c
2624 F:      drivers/char/hw_random/st-rng.c
2625 F:      drivers/clocksource/arm_global_timer.c
2626 F:      drivers/clocksource/clksrc_st_lpc.c
2627 F:      drivers/cpufreq/sti-cpufreq.c
2628 F:      drivers/dma/st_fdma*
2629 F:      drivers/i2c/busses/i2c-st.c
2630 F:      drivers/media/platform/sti/c8sectpfe/
2631 F:      drivers/media/rc/st_rc.c
2632 F:      drivers/mmc/host/sdhci-st.c
2633 F:      drivers/phy/st/phy-miphy28lp.c
2634 F:      drivers/phy/st/phy-stih407-usb.c
2635 F:      drivers/pinctrl/pinctrl-st.c
2636 F:      drivers/remoteproc/st_remoteproc.c
2637 F:      drivers/remoteproc/st_slim_rproc.c
2638 F:      drivers/reset/sti/
2639 F:      drivers/rtc/rtc-st-lpc.c
2640 F:      drivers/tty/serial/st-asc.c
2641 F:      drivers/usb/dwc3/dwc3-st.c
2642 F:      drivers/usb/host/ehci-st.c
2643 F:      drivers/usb/host/ohci-st.c
2644 F:      drivers/watchdog/st_lpc_wdt.c
2645 F:      include/linux/remoteproc/st_slim_rproc.h
2646
2647 ARM/STM32 ARCHITECTURE
2648 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2649 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2650 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2652 S:      Maintained
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2654 F:      arch/arm/boot/dts/stm32*
2655 F:      arch/arm/mach-stm32/
2656 F:      drivers/clocksource/armv7m_systick.c
2657 N:      stm32
2658 N:      stm
2659
2660 ARM/Synaptics SoC support
2661 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2662 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2664 S:      Maintained
2665 F:      arch/arm/boot/dts/berlin*
2666 F:      arch/arm/mach-berlin/
2667 F:      arch/arm64/boot/dts/synaptics/
2668
2669 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2670 M:      Lennert Buytenhek <kernel@wantstofly.org>
2671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2672 S:      Maintained
2673
2674 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2675 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2676 L:      linux-tegra@vger.kernel.org
2677 L:      linux-media@vger.kernel.org
2678 S:      Maintained
2679 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2680 F:      drivers/media/cec/platform/tegra/
2681
2682 ARM/TETON BGA MACHINE SUPPORT
2683 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 S:      Maintained
2686
2687 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2688 M:      Santosh Shilimkar <ssantosh@kernel.org>
2689 L:      linux-kernel@vger.kernel.org
2690 S:      Maintained
2691 F:      drivers/memory/*emif*
2692
2693 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2694 M:      Santosh Shilimkar <ssantosh@kernel.org>
2695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2696 S:      Maintained
2697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2698 F:      arch/arm/boot/dts/keystone-*
2699 F:      arch/arm/mach-keystone/
2700
2701 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2702 M:      Santosh Shilimkar <ssantosh@kernel.org>
2703 L:      linux-kernel@vger.kernel.org
2704 S:      Maintained
2705 F:      drivers/clk/keystone/
2706
2707 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2708 M:      Santosh Shilimkar <ssantosh@kernel.org>
2709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2710 L:      linux-kernel@vger.kernel.org
2711 S:      Maintained
2712 F:      drivers/clocksource/timer-keystone.c
2713
2714 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2715 M:      Santosh Shilimkar <ssantosh@kernel.org>
2716 L:      linux-kernel@vger.kernel.org
2717 S:      Maintained
2718 F:      drivers/power/reset/keystone-reset.c
2719
2720 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2721 M:      Nishanth Menon <nm@ti.com>
2722 M:      Vignesh Raghavendra <vigneshr@ti.com>
2723 M:      Tero Kristo <kristo@kernel.org>
2724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 S:      Supported
2726 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2727 F:      arch/arm64/boot/dts/ti/Makefile
2728 F:      arch/arm64/boot/dts/ti/k3-*
2729 F:      include/dt-bindings/pinctrl/k3.h
2730
2731 ARM/THECUS N2100 MACHINE SUPPORT
2732 M:      Lennert Buytenhek <kernel@wantstofly.org>
2733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2734 S:      Maintained
2735
2736 ARM/TOSA MACHINE SUPPORT
2737 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2738 M:      Dirk Opfer <dirk@opfer-online.de>
2739 S:      Maintained
2740
2741 ARM/TOSHIBA VISCONTI ARCHITECTURE
2742 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2744 S:      Supported
2745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2746 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2747 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2748 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2749 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2750 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2751 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2752 F:      arch/arm64/boot/dts/toshiba/
2753 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2754 F:      drivers/gpio/gpio-visconti.c
2755 F:      drivers/pci/controller/dwc/pcie-visconti.c
2756 F:      drivers/pinctrl/visconti/
2757 F:      drivers/watchdog/visconti_wdt.c
2758 N:      visconti
2759
2760 ARM/UNIPHIER ARCHITECTURE
2761 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2762 M:      Masami Hiramatsu <mhiramat@kernel.org>
2763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2764 S:      Maintained
2765 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2766 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2767 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2768 F:      arch/arm/boot/dts/uniphier*
2769 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2770 F:      arch/arm/mach-uniphier/
2771 F:      arch/arm/mm/cache-uniphier.c
2772 F:      arch/arm64/boot/dts/socionext/uniphier*
2773 F:      drivers/bus/uniphier-system-bus.c
2774 F:      drivers/clk/uniphier/
2775 F:      drivers/dma/uniphier-mdmac.c
2776 F:      drivers/gpio/gpio-uniphier.c
2777 F:      drivers/i2c/busses/i2c-uniphier*
2778 F:      drivers/irqchip/irq-uniphier-aidet.c
2779 F:      drivers/mmc/host/uniphier-sd.c
2780 F:      drivers/pinctrl/uniphier/
2781 F:      drivers/reset/reset-uniphier.c
2782 F:      drivers/tty/serial/8250/8250_uniphier.c
2783 N:      uniphier
2784
2785 ARM/VERSATILE EXPRESS PLATFORM
2786 M:      Liviu Dudau <liviu.dudau@arm.com>
2787 M:      Sudeep Holla <sudeep.holla@arm.com>
2788 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2790 S:      Maintained
2791 F:      */*/*/vexpress*
2792 F:      */*/vexpress*
2793 F:      arch/arm/boot/dts/vexpress*
2794 F:      arch/arm/mach-vexpress/
2795 F:      arch/arm64/boot/dts/arm/
2796 F:      drivers/clk/versatile/clk-vexpress-osc.c
2797 F:      drivers/clocksource/timer-versatile.c
2798 N:      mps2
2799
2800 ARM/VFP SUPPORT
2801 M:      Russell King <linux@armlinux.org.uk>
2802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2803 S:      Maintained
2804 W:      http://www.armlinux.org.uk/
2805 F:      arch/arm/vfp/
2806
2807 ARM/VOIPAC PXA270 SUPPORT
2808 M:      Marek Vasut <marek.vasut@gmail.com>
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 S:      Maintained
2811 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2812 F:      arch/arm/mach-pxa/vpac270.c
2813
2814 ARM/VT8500 ARM ARCHITECTURE
2815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2816 S:      Orphan
2817 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2818 F:      arch/arm/mach-vt8500/
2819 F:      drivers/clocksource/timer-vt8500.c
2820 F:      drivers/i2c/busses/i2c-wmt.c
2821 F:      drivers/mmc/host/wmt-sdmmc.c
2822 F:      drivers/pwm/pwm-vt8500.c
2823 F:      drivers/rtc/rtc-vt8500.c
2824 F:      drivers/tty/serial/vt8500_serial.c
2825 F:      drivers/usb/host/ehci-platform.c
2826 F:      drivers/usb/host/uhci-platform.c
2827 F:      drivers/video/fbdev/vt8500lcdfb.*
2828 F:      drivers/video/fbdev/wm8505fb*
2829 F:      drivers/video/fbdev/wmt_ge_rops.*
2830
2831 ARM/ZIPIT Z2 SUPPORT
2832 M:      Marek Vasut <marek.vasut@gmail.com>
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2834 S:      Maintained
2835 F:      arch/arm/mach-pxa/include/mach/z2.h
2836 F:      arch/arm/mach-pxa/z2.c
2837
2838 ARM/ZYNQ ARCHITECTURE
2839 M:      Michal Simek <michal.simek@xilinx.com>
2840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2841 S:      Supported
2842 W:      http://wiki.xilinx.com
2843 T:      git https://github.com/Xilinx/linux-xlnx.git
2844 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2845 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2846 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2847 F:      arch/arm/mach-zynq/
2848 F:      drivers/clocksource/timer-cadence-ttc.c
2849 F:      drivers/cpuidle/cpuidle-zynq.c
2850 F:      drivers/edac/synopsys_edac.c
2851 F:      drivers/i2c/busses/i2c-cadence.c
2852 F:      drivers/i2c/busses/i2c-xiic.c
2853 F:      drivers/mmc/host/sdhci-of-arasan.c
2854 N:      zynq
2855 N:      xilinx
2856
2857 ARM64 PORT (AARCH64 ARCHITECTURE)
2858 M:      Catalin Marinas <catalin.marinas@arm.com>
2859 M:      Will Deacon <will@kernel.org>
2860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2861 S:      Maintained
2862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2863 F:      Documentation/arm64/
2864 F:      arch/arm64/
2865 F:      tools/testing/selftests/arm64/
2866 X:      arch/arm64/boot/dts/
2867
2868 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2869 M:      George McCollister <george.mccollister@gmail.com>
2870 L:      netdev@vger.kernel.org
2871 S:      Maintained
2872 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2873 F:      drivers/net/dsa/xrs700x/*
2874 F:      net/dsa/tag_xrs700x.c
2875
2876 AS3645A LED FLASH CONTROLLER DRIVER
2877 M:      Sakari Ailus <sakari.ailus@iki.fi>
2878 L:      linux-leds@vger.kernel.org
2879 S:      Maintained
2880 F:      drivers/leds/flash/leds-as3645a.c
2881
2882 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2883 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2884 L:      linux-media@vger.kernel.org
2885 S:      Maintained
2886 T:      git git://linuxtv.org/media_tree.git
2887 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2888 F:      drivers/media/i2c/ak7375.c
2889
2890 ASAHI KASEI AK8974 DRIVER
2891 M:      Linus Walleij <linus.walleij@linaro.org>
2892 L:      linux-iio@vger.kernel.org
2893 S:      Supported
2894 W:      http://www.akm.com/
2895 F:      drivers/iio/magnetometer/ak8974.c
2896
2897 ASC7621 HARDWARE MONITOR DRIVER
2898 M:      George Joseph <george.joseph@fairview5.com>
2899 L:      linux-hwmon@vger.kernel.org
2900 S:      Maintained
2901 F:      Documentation/hwmon/asc7621.rst
2902 F:      drivers/hwmon/asc7621.c
2903
2904 ASPEED PINCTRL DRIVERS
2905 M:      Andrew Jeffery <andrew@aj.id.au>
2906 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2907 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2908 L:      linux-gpio@vger.kernel.org
2909 S:      Maintained
2910 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2911 F:      drivers/pinctrl/aspeed/
2912
2913 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2914 M:      Eddie James <eajames@linux.ibm.com>
2915 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2916 S:      Maintained
2917 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2918 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2919 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2920
2921 ASPEED SD/MMC DRIVER
2922 M:      Andrew Jeffery <andrew@aj.id.au>
2923 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2924 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2925 L:      linux-mmc@vger.kernel.org
2926 S:      Maintained
2927 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2928 F:      drivers/mmc/host/sdhci-of-aspeed*
2929
2930 ASPEED VIDEO ENGINE DRIVER
2931 M:      Eddie James <eajames@linux.ibm.com>
2932 L:      linux-media@vger.kernel.org
2933 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2934 S:      Maintained
2935 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2936 F:      drivers/media/platform/aspeed-video.c
2937
2938 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2939 M:      Corentin Chary <corentin.chary@gmail.com>
2940 L:      acpi4asus-user@lists.sourceforge.net
2941 L:      platform-driver-x86@vger.kernel.org
2942 S:      Maintained
2943 W:      http://acpi4asus.sf.net
2944 F:      drivers/platform/x86/asus*.c
2945 F:      drivers/platform/x86/eeepc*.c
2946
2947 ASUS WIRELESS RADIO CONTROL DRIVER
2948 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2949 L:      platform-driver-x86@vger.kernel.org
2950 S:      Maintained
2951 F:      drivers/platform/x86/asus-wireless.c
2952
2953 ASYMMETRIC KEYS
2954 M:      David Howells <dhowells@redhat.com>
2955 L:      keyrings@vger.kernel.org
2956 S:      Maintained
2957 F:      Documentation/crypto/asymmetric-keys.rst
2958 F:      crypto/asymmetric_keys/
2959 F:      include/crypto/pkcs7.h
2960 F:      include/crypto/public_key.h
2961 F:      include/linux/verification.h
2962
2963 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2964 R:      Dan Williams <dan.j.williams@intel.com>
2965 S:      Odd fixes
2966 W:      http://sourceforge.net/projects/xscaleiop
2967 F:      Documentation/crypto/async-tx-api.rst
2968 F:      crypto/async_tx/
2969 F:      include/linux/async_tx.h
2970
2971 AT24 EEPROM DRIVER
2972 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2973 L:      linux-i2c@vger.kernel.org
2974 S:      Maintained
2975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2976 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2977 F:      drivers/misc/eeprom/at24.c
2978
2979 ATA OVER ETHERNET (AOE) DRIVER
2980 M:      "Justin Sanders" <justin@coraid.com>
2981 S:      Supported
2982 W:      http://www.openaoe.org/
2983 F:      Documentation/admin-guide/aoe/
2984 F:      drivers/block/aoe/
2985
2986 ATC260X PMIC MFD DRIVER
2987 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2988 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
2989 L:      linux-actions@lists.infradead.org
2990 S:      Maintained
2991 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
2992 F:      drivers/input/misc/atc260x-onkey.c
2993 F:      drivers/mfd/atc260*
2994 F:      drivers/power/reset/atc260x-poweroff.c
2995 F:      drivers/regulator/atc260x-regulator.c
2996 F:      include/linux/mfd/atc260x/*
2997
2998 ATHEROS 71XX/9XXX GPIO DRIVER
2999 M:      Alban Bedel <albeu@free.fr>
3000 S:      Maintained
3001 W:      https://github.com/AlbanBedel/linux
3002 T:      git git://github.com/AlbanBedel/linux
3003 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3004 F:      drivers/gpio/gpio-ath79.c
3005
3006 ATHEROS 71XX/9XXX USB PHY DRIVER
3007 M:      Alban Bedel <albeu@free.fr>
3008 S:      Maintained
3009 W:      https://github.com/AlbanBedel/linux
3010 T:      git git://github.com/AlbanBedel/linux
3011 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3012 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3013
3014 ATHEROS ATH GENERIC UTILITIES
3015 M:      Kalle Valo <kvalo@codeaurora.org>
3016 L:      linux-wireless@vger.kernel.org
3017 S:      Supported
3018 F:      drivers/net/wireless/ath/*
3019
3020 ATHEROS ATH5K WIRELESS DRIVER
3021 M:      Jiri Slaby <jirislaby@kernel.org>
3022 M:      Nick Kossifidis <mickflemm@gmail.com>
3023 M:      Luis Chamberlain <mcgrof@kernel.org>
3024 L:      linux-wireless@vger.kernel.org
3025 S:      Maintained
3026 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3027 F:      drivers/net/wireless/ath/ath5k/
3028
3029 ATHEROS ATH6KL WIRELESS DRIVER
3030 M:      Kalle Valo <kvalo@codeaurora.org>
3031 L:      linux-wireless@vger.kernel.org
3032 S:      Supported
3033 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3035 F:      drivers/net/wireless/ath/ath6kl/
3036
3037 ATI_REMOTE2 DRIVER
3038 M:      Ville Syrjala <syrjala@sci.fi>
3039 S:      Maintained
3040 F:      drivers/input/misc/ati_remote2.c
3041
3042 ATK0110 HWMON DRIVER
3043 M:      Luca Tettamanti <kronos.it@gmail.com>
3044 L:      linux-hwmon@vger.kernel.org
3045 S:      Maintained
3046 F:      drivers/hwmon/asus_atk0110.c
3047
3048 ATLX ETHERNET DRIVERS
3049 M:      Chris Snook <chris.snook@gmail.com>
3050 L:      netdev@vger.kernel.org
3051 S:      Maintained
3052 W:      http://sourceforge.net/projects/atl1
3053 W:      http://atl1.sourceforge.net
3054 F:      drivers/net/ethernet/atheros/
3055
3056 ATM
3057 M:      Chas Williams <3chas3@gmail.com>
3058 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3059 L:      netdev@vger.kernel.org
3060 S:      Maintained
3061 W:      http://linux-atm.sourceforge.net
3062 F:      drivers/atm/
3063 F:      include/linux/atm*
3064 F:      include/uapi/linux/atm*
3065
3066 ATMEL MACB ETHERNET DRIVER
3067 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3068 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3069 S:      Supported
3070 F:      drivers/net/ethernet/cadence/
3071
3072 ATMEL MAXTOUCH DRIVER
3073 M:      Nick Dyer <nick@shmanahar.org>
3074 S:      Maintained
3075 T:      git git://github.com/ndyer/linux.git
3076 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3077 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3078
3079 ATMEL WIRELESS DRIVER
3080 M:      Simon Kelley <simon@thekelleys.org.uk>
3081 L:      linux-wireless@vger.kernel.org
3082 S:      Maintained
3083 W:      http://www.thekelleys.org.uk/atmel
3084 W:      http://atmelwlandriver.sourceforge.net/
3085 F:      drivers/net/wireless/atmel/atmel*
3086
3087 ATOMIC INFRASTRUCTURE
3088 M:      Will Deacon <will@kernel.org>
3089 M:      Peter Zijlstra <peterz@infradead.org>
3090 R:      Boqun Feng <boqun.feng@gmail.com>
3091 L:      linux-kernel@vger.kernel.org
3092 S:      Maintained
3093 F:      arch/*/include/asm/atomic*.h
3094 F:      include/*/atomic*.h
3095 F:      include/linux/refcount.h
3096 F:      Documentation/atomic_*.txt
3097 F:      scripts/atomic/
3098
3099 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3100 M:      Bradley Grove <linuxdrivers@attotech.com>
3101 L:      linux-scsi@vger.kernel.org
3102 S:      Supported
3103 W:      http://www.attotech.com
3104 F:      drivers/scsi/esas2r
3105
3106 ATUSB IEEE 802.15.4 RADIO DRIVER
3107 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3108 L:      linux-wpan@vger.kernel.org
3109 S:      Maintained
3110 F:      drivers/net/ieee802154/at86rf230.h
3111 F:      drivers/net/ieee802154/atusb.c
3112 F:      drivers/net/ieee802154/atusb.h
3113
3114 AUDIT SUBSYSTEM
3115 M:      Paul Moore <paul@paul-moore.com>
3116 M:      Eric Paris <eparis@redhat.com>
3117 L:      linux-audit@redhat.com (moderated for non-subscribers)
3118 S:      Supported
3119 W:      https://github.com/linux-audit
3120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3121 F:      include/asm-generic/audit_*.h
3122 F:      include/linux/audit.h
3123 F:      include/uapi/linux/audit.h
3124 F:      kernel/audit*
3125 F:      lib/*audit.c
3126
3127 AUXILIARY DISPLAY DRIVERS
3128 M:      Miguel Ojeda <ojeda@kernel.org>
3129 S:      Maintained
3130 F:      drivers/auxdisplay/
3131 F:      include/linux/cfag12864b.h
3132
3133 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3134 M:      Andreas Klinger <ak@it-klinger.de>
3135 L:      linux-iio@vger.kernel.org
3136 S:      Maintained
3137 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3138 F:      drivers/iio/adc/hx711.c
3139
3140 AX.25 NETWORK LAYER
3141 M:      Ralf Baechle <ralf@linux-mips.org>
3142 L:      linux-hams@vger.kernel.org
3143 S:      Maintained
3144 W:      http://www.linux-ax25.org/
3145 F:      include/net/ax25.h
3146 F:      include/uapi/linux/ax25.h
3147 F:      net/ax25/
3148
3149 AXENTIA ARM DEVICES
3150 M:      Peter Rosin <peda@axentia.se>
3151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3152 S:      Maintained
3153 F:      arch/arm/boot/dts/at91-linea.dtsi
3154 F:      arch/arm/boot/dts/at91-natte.dtsi
3155 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3156 F:      arch/arm/boot/dts/at91-tse850-3.dts
3157
3158 AXENTIA ASOC DRIVERS
3159 M:      Peter Rosin <peda@axentia.se>
3160 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3161 S:      Maintained
3162 F:      Documentation/devicetree/bindings/sound/axentia,*
3163 F:      sound/soc/atmel/tse850-pcm5142.c
3164
3165 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3166 M:      Nuno Sá <nuno.sa@analog.com>
3167 L:      linux-hwmon@vger.kernel.org
3168 S:      Supported
3169 W:      http://ez.analog.com/community/linux-device-drivers
3170 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3171 F:      drivers/hwmon/axi-fan-control.c
3172
3173 AXXIA I2C CONTROLLER
3174 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3175 L:      linux-i2c@vger.kernel.org
3176 S:      Maintained
3177 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3178 F:      drivers/i2c/busses/i2c-axxia.c
3179
3180 AZ6007 DVB DRIVER
3181 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3182 L:      linux-media@vger.kernel.org
3183 S:      Maintained
3184 W:      https://linuxtv.org
3185 T:      git git://linuxtv.org/media_tree.git
3186 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3187
3188 AZTECH FM RADIO RECEIVER DRIVER
3189 M:      Hans Verkuil <hverkuil@xs4all.nl>
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/radio/radio-aztech*
3195
3196 B43 WIRELESS DRIVER
3197 L:      linux-wireless@vger.kernel.org
3198 L:      b43-dev@lists.infradead.org
3199 S:      Odd Fixes
3200 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3201 F:      drivers/net/wireless/broadcom/b43/
3202
3203 B43LEGACY WIRELESS DRIVER
3204 M:      Larry Finger <Larry.Finger@lwfinger.net>
3205 L:      linux-wireless@vger.kernel.org
3206 L:      b43-dev@lists.infradead.org
3207 S:      Maintained
3208 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3209 F:      drivers/net/wireless/broadcom/b43legacy/
3210
3211 BACKLIGHT CLASS/SUBSYSTEM
3212 M:      Lee Jones <lee.jones@linaro.org>
3213 M:      Daniel Thompson <daniel.thompson@linaro.org>
3214 M:      Jingoo Han <jingoohan1@gmail.com>
3215 L:      dri-devel@lists.freedesktop.org
3216 S:      Maintained
3217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3218 F:      Documentation/ABI/stable/sysfs-class-backlight
3219 F:      Documentation/ABI/testing/sysfs-class-backlight
3220 F:      Documentation/devicetree/bindings/leds/backlight
3221 F:      drivers/video/backlight/
3222 F:      include/linux/backlight.h
3223 F:      include/linux/pwm_backlight.h
3224
3225 BATMAN ADVANCED
3226 M:      Marek Lindner <mareklindner@neomailbox.ch>
3227 M:      Simon Wunderlich <sw@simonwunderlich.de>
3228 M:      Antonio Quartulli <a@unstable.cc>
3229 M:      Sven Eckelmann <sven@narfation.org>
3230 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3231 S:      Maintained
3232 W:      https://www.open-mesh.org/
3233 Q:      https://patchwork.open-mesh.org/project/batman/list/
3234 B:      https://www.open-mesh.org/projects/batman-adv/issues
3235 C:      ircs://irc.hackint.org/batadv
3236 T:      git https://git.open-mesh.org/linux-merge.git
3237 F:      Documentation/networking/batman-adv.rst
3238 F:      include/uapi/linux/batadv_packet.h
3239 F:      include/uapi/linux/batman_adv.h
3240 F:      net/batman-adv/
3241
3242 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3243 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3244 L:      linux-hams@vger.kernel.org
3245 S:      Maintained
3246 W:      http://www.baycom.org/~tom/ham/ham.html
3247 F:      drivers/net/hamradio/baycom*
3248
3249 BCACHE (BLOCK LAYER CACHE)
3250 M:      Coly Li <colyli@suse.de>
3251 M:      Kent Overstreet <kent.overstreet@gmail.com>
3252 L:      linux-bcache@vger.kernel.org
3253 S:      Maintained
3254 W:      http://bcache.evilpiepirate.org
3255 C:      irc://irc.oftc.net/bcache
3256 F:      drivers/md/bcache/
3257
3258 BDISP ST MEDIA DRIVER
3259 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3260 L:      linux-media@vger.kernel.org
3261 S:      Supported
3262 W:      https://linuxtv.org
3263 T:      git git://linuxtv.org/media_tree.git
3264 F:      drivers/media/platform/sti/bdisp
3265
3266 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3267 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3268 L:      netdev@vger.kernel.org
3269 S:      Maintained
3270 F:      drivers/net/ethernet/ec_bhf.c
3271
3272 BEFS FILE SYSTEM
3273 M:      Luis de Bethencourt <luisbg@kernel.org>
3274 M:      Salah Triki <salah.triki@gmail.com>
3275 S:      Maintained
3276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3277 F:      Documentation/filesystems/befs.rst
3278 F:      fs/befs/
3279
3280 BFQ I/O SCHEDULER
3281 M:      Paolo Valente <paolo.valente@linaro.org>
3282 M:      Jens Axboe <axboe@kernel.dk>
3283 L:      linux-block@vger.kernel.org
3284 S:      Maintained
3285 F:      Documentation/block/bfq-iosched.rst
3286 F:      block/bfq-*
3287
3288 BFS FILE SYSTEM
3289 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3290 S:      Maintained
3291 F:      Documentation/filesystems/bfs.rst
3292 F:      fs/bfs/
3293 F:      include/uapi/linux/bfs_fs.h
3294
3295 BITMAP API
3296 M:      Yury Norov <yury.norov@gmail.com>
3297 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3298 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3299 S:      Maintained
3300 F:      include/asm-generic/bitops/find.h
3301 F:      include/linux/bitmap.h
3302 F:      lib/bitmap.c
3303 F:      lib/find_bit.c
3304 F:      lib/find_bit_benchmark.c
3305 F:      lib/test_bitmap.c
3306 F:      tools/include/asm-generic/bitops/find.h
3307 F:      tools/include/linux/bitmap.h
3308 F:      tools/lib/bitmap.c
3309 F:      tools/lib/find_bit.c
3310
3311 BLINKM RGB LED DRIVER
3312 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3313 S:      Maintained
3314 F:      drivers/leds/leds-blinkm.c
3315
3316 BLOCK LAYER
3317 M:      Jens Axboe <axboe@kernel.dk>
3318 L:      linux-block@vger.kernel.org
3319 S:      Maintained
3320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3321 F:      block/
3322 F:      drivers/block/
3323 F:      include/linux/blk*
3324 F:      kernel/trace/blktrace.c
3325 F:      lib/sbitmap.c
3326
3327 BLOCK2MTD DRIVER
3328 M:      Joern Engel <joern@lazybastard.org>
3329 L:      linux-mtd@lists.infradead.org
3330 S:      Maintained
3331 F:      drivers/mtd/devices/block2mtd.c
3332
3333 BLUETOOTH DRIVERS
3334 M:      Marcel Holtmann <marcel@holtmann.org>
3335 M:      Johan Hedberg <johan.hedberg@gmail.com>
3336 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3337 L:      linux-bluetooth@vger.kernel.org
3338 S:      Supported
3339 W:      http://www.bluez.org/
3340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3342 F:      drivers/bluetooth/
3343
3344 BLUETOOTH SUBSYSTEM
3345 M:      Marcel Holtmann <marcel@holtmann.org>
3346 M:      Johan Hedberg <johan.hedberg@gmail.com>
3347 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3348 L:      linux-bluetooth@vger.kernel.org
3349 S:      Supported
3350 W:      http://www.bluez.org/
3351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3353 F:      include/net/bluetooth/
3354 F:      net/bluetooth/
3355
3356 BONDING DRIVER
3357 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3358 M:      Veaceslav Falico <vfalico@gmail.com>
3359 M:      Andy Gospodarek <andy@greyhouse.net>
3360 L:      netdev@vger.kernel.org
3361 S:      Supported
3362 W:      http://sourceforge.net/projects/bonding/
3363 F:      drivers/net/bonding/
3364 F:      include/net/bonding.h
3365 F:      include/uapi/linux/if_bonding.h
3366
3367 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3368 M:      Dan Robertson <dan@dlrobertson.com>
3369 L:      linux-iio@vger.kernel.org
3370 S:      Maintained
3371 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3372 F:      drivers/iio/accel/bma400*
3373
3374 BPF (Safe dynamic programs and tools)
3375 M:      Alexei Starovoitov <ast@kernel.org>
3376 M:      Daniel Borkmann <daniel@iogearbox.net>
3377 M:      Andrii Nakryiko <andrii@kernel.org>
3378 R:      Martin KaFai Lau <kafai@fb.com>
3379 R:      Song Liu <songliubraving@fb.com>
3380 R:      Yonghong Song <yhs@fb.com>
3381 R:      John Fastabend <john.fastabend@gmail.com>
3382 R:      KP Singh <kpsingh@kernel.org>
3383 L:      netdev@vger.kernel.org
3384 L:      bpf@vger.kernel.org
3385 S:      Supported
3386 W:      https://bpf.io/
3387 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3390 F:      Documentation/bpf/
3391 F:      Documentation/networking/filter.rst
3392 F:      Documentation/userspace-api/ebpf/
3393 F:      arch/*/net/*
3394 F:      include/linux/bpf*
3395 F:      include/linux/btf*
3396 F:      include/linux/filter.h
3397 F:      include/trace/events/xdp.h
3398 F:      include/uapi/linux/bpf*
3399 F:      include/uapi/linux/btf*
3400 F:      include/uapi/linux/filter.h
3401 F:      kernel/bpf/
3402 F:      kernel/trace/bpf_trace.c
3403 F:      lib/test_bpf.c
3404 F:      net/bpf/
3405 F:      net/core/filter.c
3406 F:      net/sched/act_bpf.c
3407 F:      net/sched/cls_bpf.c
3408 F:      samples/bpf/
3409 F:      scripts/bpf_doc.py
3410 F:      tools/bpf/
3411 F:      tools/lib/bpf/
3412 F:      tools/testing/selftests/bpf/
3413 N:      bpf
3414 K:      bpf
3415
3416 BPF JIT for ARM
3417 M:      Shubham Bansal <illusionist.neo@gmail.com>
3418 L:      netdev@vger.kernel.org
3419 L:      bpf@vger.kernel.org
3420 S:      Maintained
3421 F:      arch/arm/net/
3422
3423 BPF JIT for ARM64
3424 M:      Daniel Borkmann <daniel@iogearbox.net>
3425 M:      Alexei Starovoitov <ast@kernel.org>
3426 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3427 L:      netdev@vger.kernel.org
3428 L:      bpf@vger.kernel.org
3429 S:      Supported
3430 F:      arch/arm64/net/
3431
3432 BPF JIT for MIPS (32-BIT AND 64-BIT)
3433 M:      Paul Burton <paulburton@kernel.org>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/mips/net/
3438
3439 BPF JIT for NFP NICs
3440 M:      Jakub Kicinski <kuba@kernel.org>
3441 L:      netdev@vger.kernel.org
3442 L:      bpf@vger.kernel.org
3443 S:      Supported
3444 F:      drivers/net/ethernet/netronome/nfp/bpf/
3445
3446 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3447 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3448 L:      netdev@vger.kernel.org
3449 L:      bpf@vger.kernel.org
3450 S:      Maintained
3451 F:      arch/powerpc/net/
3452
3453 BPF JIT for RISC-V (32-bit)
3454 M:      Luke Nelson <luke.r.nels@gmail.com>
3455 M:      Xi Wang <xi.wang@gmail.com>
3456 L:      netdev@vger.kernel.org
3457 L:      bpf@vger.kernel.org
3458 S:      Maintained
3459 F:      arch/riscv/net/
3460 X:      arch/riscv/net/bpf_jit_comp64.c
3461
3462 BPF JIT for RISC-V (64-bit)
3463 M:      Björn Töpel <bjorn@kernel.org>
3464 L:      netdev@vger.kernel.org
3465 L:      bpf@vger.kernel.org
3466 S:      Maintained
3467 F:      arch/riscv/net/
3468 X:      arch/riscv/net/bpf_jit_comp32.c
3469
3470 BPF JIT for S390
3471 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3472 M:      Heiko Carstens <hca@linux.ibm.com>
3473 M:      Vasily Gorbik <gor@linux.ibm.com>
3474 L:      netdev@vger.kernel.org
3475 L:      bpf@vger.kernel.org
3476 S:      Maintained
3477 F:      arch/s390/net/
3478 X:      arch/s390/net/pnet.c
3479
3480 BPF JIT for SPARC (32-BIT AND 64-BIT)
3481 M:      David S. Miller <davem@davemloft.net>
3482 L:      netdev@vger.kernel.org
3483 L:      bpf@vger.kernel.org
3484 S:      Maintained
3485 F:      arch/sparc/net/
3486
3487 BPF JIT for X86 32-BIT
3488 M:      Wang YanQing <udknight@gmail.com>
3489 L:      netdev@vger.kernel.org
3490 L:      bpf@vger.kernel.org
3491 S:      Maintained
3492 F:      arch/x86/net/bpf_jit_comp32.c
3493
3494 BPF JIT for X86 64-BIT
3495 M:      Alexei Starovoitov <ast@kernel.org>
3496 M:      Daniel Borkmann <daniel@iogearbox.net>
3497 L:      netdev@vger.kernel.org
3498 L:      bpf@vger.kernel.org
3499 S:      Supported
3500 F:      arch/x86/net/
3501 X:      arch/x86/net/bpf_jit_comp32.c
3502
3503 BPF LSM (Security Audit and Enforcement using BPF)
3504 M:      KP Singh <kpsingh@kernel.org>
3505 R:      Florent Revest <revest@chromium.org>
3506 R:      Brendan Jackman <jackmanb@chromium.org>
3507 L:      bpf@vger.kernel.org
3508 S:      Maintained
3509 F:      Documentation/bpf/bpf_lsm.rst
3510 F:      include/linux/bpf_lsm.h
3511 F:      kernel/bpf/bpf_lsm.c
3512 F:      security/bpf/
3513
3514 BROADCOM B44 10/100 ETHERNET DRIVER
3515 M:      Michael Chan <michael.chan@broadcom.com>
3516 L:      netdev@vger.kernel.org
3517 S:      Supported
3518 F:      drivers/net/ethernet/broadcom/b44.*
3519
3520 BROADCOM B53 ETHERNET SWITCH DRIVER
3521 M:      Florian Fainelli <f.fainelli@gmail.com>
3522 L:      netdev@vger.kernel.org
3523 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3524 S:      Supported
3525 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3526 F:      drivers/net/dsa/b53/*
3527 F:      include/linux/dsa/brcm.h
3528 F:      include/linux/platform_data/b53.h
3529
3530 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3531 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3532 L:      bcm-kernel-feedback-list@broadcom.com
3533 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3535 S:      Maintained
3536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3537 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3538 F:      drivers/pci/controller/pcie-brcmstb.c
3539 F:      drivers/staging/vc04_services
3540 N:      bcm2711
3541 N:      bcm283*
3542
3543 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3544 M:      Florian Fainelli <f.fainelli@gmail.com>
3545 M:      Ray Jui <rjui@broadcom.com>
3546 M:      Scott Branden <sbranden@broadcom.com>
3547 M:      bcm-kernel-feedback-list@broadcom.com
3548 S:      Maintained
3549 T:      git git://github.com/broadcom/mach-bcm
3550 F:      arch/arm/mach-bcm/
3551 N:      bcm281*
3552 N:      bcm113*
3553 N:      bcm216*
3554 N:      kona
3555
3556 BROADCOM BCM47XX MIPS ARCHITECTURE
3557 M:      Hauke Mehrtens <hauke@hauke-m.de>
3558 M:      Rafał Miłecki <zajec5@gmail.com>
3559 L:      linux-mips@vger.kernel.org
3560 S:      Maintained
3561 F:      Documentation/devicetree/bindings/mips/brcm/
3562 F:      arch/mips/bcm47xx/*
3563 F:      arch/mips/include/asm/mach-bcm47xx/*
3564
3565 BROADCOM BCM4908 ETHERNET DRIVER
3566 M:      Rafał Miłecki <rafal@milecki.pl>
3567 M:      bcm-kernel-feedback-list@broadcom.com
3568 L:      netdev@vger.kernel.org
3569 S:      Maintained
3570 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3571 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3572 F:      drivers/net/ethernet/broadcom/unimac.h
3573
3574 BROADCOM BCM5301X ARM ARCHITECTURE
3575 M:      Hauke Mehrtens <hauke@hauke-m.de>
3576 M:      Rafał Miłecki <zajec5@gmail.com>
3577 M:      bcm-kernel-feedback-list@broadcom.com
3578 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3579 S:      Maintained
3580 F:      arch/arm/boot/dts/bcm470*
3581 F:      arch/arm/boot/dts/bcm5301*
3582 F:      arch/arm/boot/dts/bcm953012*
3583 F:      arch/arm/mach-bcm/bcm_5301x.c
3584
3585 BROADCOM BCM53573 ARM ARCHITECTURE
3586 M:      Rafał Miłecki <rafal@milecki.pl>
3587 L:      bcm-kernel-feedback-list@broadcom.com
3588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3589 S:      Maintained
3590 F:      arch/arm/boot/dts/bcm47189*
3591 F:      arch/arm/boot/dts/bcm53573*
3592
3593 BROADCOM BCM63XX ARM ARCHITECTURE
3594 M:      Florian Fainelli <f.fainelli@gmail.com>
3595 M:      bcm-kernel-feedback-list@broadcom.com
3596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3597 S:      Maintained
3598 T:      git git://github.com/broadcom/stblinux.git
3599 N:      bcm63xx
3600
3601 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3602 M:      Kevin Cernekee <cernekee@gmail.com>
3603 L:      linux-usb@vger.kernel.org
3604 S:      Maintained
3605 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3606
3607 BROADCOM BCM7XXX ARM ARCHITECTURE
3608 M:      Florian Fainelli <f.fainelli@gmail.com>
3609 M:      bcm-kernel-feedback-list@broadcom.com
3610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3611 S:      Maintained
3612 T:      git git://github.com/broadcom/stblinux.git
3613 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3614 F:      arch/arm/boot/dts/bcm7*.dts*
3615 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3616 F:      arch/arm/mach-bcm/*brcmstb*
3617 F:      arch/arm/mm/cache-b15-rac.c
3618 F:      drivers/bus/brcmstb_gisb.c
3619 F:      drivers/pci/controller/pcie-brcmstb.c
3620 N:      brcmstb
3621
3622 BROADCOM BDC DRIVER
3623 M:      Al Cooper <alcooperx@gmail.com>
3624 L:      linux-usb@vger.kernel.org
3625 L:      bcm-kernel-feedback-list@broadcom.com
3626 S:      Maintained
3627 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3628 F:      drivers/usb/gadget/udc/bdc/
3629
3630 BROADCOM BMIPS CPUFREQ DRIVER
3631 M:      Markus Mayer <mmayer@broadcom.com>
3632 M:      bcm-kernel-feedback-list@broadcom.com
3633 L:      linux-pm@vger.kernel.org
3634 S:      Maintained
3635 F:      drivers/cpufreq/bmips-cpufreq.c
3636
3637 BROADCOM BMIPS MIPS ARCHITECTURE
3638 M:      Florian Fainelli <f.fainelli@gmail.com>
3639 L:      bcm-kernel-feedback-list@broadcom.com
3640 L:      linux-mips@vger.kernel.org
3641 S:      Maintained
3642 T:      git git://github.com/broadcom/stblinux.git
3643 F:      arch/mips/bmips/*
3644 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3645 F:      arch/mips/include/asm/mach-bmips/*
3646 F:      arch/mips/kernel/*bmips*
3647 F:      drivers/soc/bcm/bcm63xx
3648 F:      drivers/irqchip/irq-bcm63*
3649 F:      drivers/irqchip/irq-bcm7*
3650 F:      drivers/irqchip/irq-brcmstb*
3651 F:      include/linux/bcm963xx_nvram.h
3652 F:      include/linux/bcm963xx_tag.h
3653
3654 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3655 M:      Rasesh Mody <rmody@marvell.com>
3656 M:      GR-Linux-NIC-Dev@marvell.com
3657 L:      netdev@vger.kernel.org
3658 S:      Supported
3659 F:      drivers/net/ethernet/broadcom/bnx2.*
3660 F:      drivers/net/ethernet/broadcom/bnx2_*
3661
3662 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3663 M:      Saurav Kashyap <skashyap@marvell.com>
3664 M:      Javed Hasan <jhasan@marvell.com>
3665 M:      GR-QLogic-Storage-Upstream@marvell.com
3666 L:      linux-scsi@vger.kernel.org
3667 S:      Supported
3668 F:      drivers/scsi/bnx2fc/
3669
3670 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3671 M:      Nilesh Javali <njavali@marvell.com>
3672 M:      Manish Rangankar <mrangankar@marvell.com>
3673 M:      GR-QLogic-Storage-Upstream@marvell.com
3674 L:      linux-scsi@vger.kernel.org
3675 S:      Supported
3676 F:      drivers/scsi/bnx2i/
3677
3678 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3679 M:      Ariel Elior <aelior@marvell.com>
3680 M:      Sudarsana Kalluru <skalluru@marvell.com>
3681 M:      GR-everest-linux-l2@marvell.com
3682 L:      netdev@vger.kernel.org
3683 S:      Supported
3684 F:      drivers/net/ethernet/broadcom/bnx2x/
3685
3686 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3687 M:      Michael Chan <michael.chan@broadcom.com>
3688 L:      netdev@vger.kernel.org
3689 S:      Supported
3690 F:      drivers/net/ethernet/broadcom/bnxt/
3691
3692 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3693 M:      Arend van Spriel <aspriel@gmail.com>
3694 M:      Franky Lin <franky.lin@broadcom.com>
3695 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3696 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3697 M:      Wright Feng <wright.feng@infineon.com>
3698 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3699 L:      linux-wireless@vger.kernel.org
3700 L:      brcm80211-dev-list.pdl@broadcom.com
3701 L:      SHA-cyfmac-dev-list@infineon.com
3702 S:      Supported
3703 F:      drivers/net/wireless/broadcom/brcm80211/
3704
3705 BROADCOM BRCMSTB GPIO DRIVER
3706 M:      Gregory Fong <gregory.0xf0@gmail.com>
3707 L:      bcm-kernel-feedback-list@broadcom.com
3708 S:      Supported
3709 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3710 F:      drivers/gpio/gpio-brcmstb.c
3711
3712 BROADCOM BRCMSTB I2C DRIVER
3713 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3714 L:      linux-i2c@vger.kernel.org
3715 L:      bcm-kernel-feedback-list@broadcom.com
3716 S:      Supported
3717 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3718 F:      drivers/i2c/busses/i2c-brcmstb.c
3719
3720 BROADCOM BRCMSTB UART DRIVER
3721 M:      Al Cooper <alcooperx@gmail.com>
3722 L:      linux-serial@vger.kernel.org
3723 L:      bcm-kernel-feedback-list@broadcom.com
3724 S:      Maintained
3725 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3726 F:      drivers/tty/serial/8250/8250_bcm7271.c
3727
3728 BROADCOM BRCMSTB USB EHCI DRIVER
3729 M:      Al Cooper <alcooperx@gmail.com>
3730 L:      linux-usb@vger.kernel.org
3731 L:      bcm-kernel-feedback-list@broadcom.com
3732 S:      Maintained
3733 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3734 F:      drivers/usb/host/ehci-brcm.*
3735
3736 BROADCOM BRCMSTB USB PIN MAP DRIVER
3737 M:      Al Cooper <alcooperx@gmail.com>
3738 L:      linux-usb@vger.kernel.org
3739 L:      bcm-kernel-feedback-list@broadcom.com
3740 S:      Maintained
3741 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3742 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3743
3744 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3745 M:      Al Cooper <alcooperx@gmail.com>
3746 L:      linux-kernel@vger.kernel.org
3747 L:      bcm-kernel-feedback-list@broadcom.com
3748 S:      Maintained
3749 F:      drivers/phy/broadcom/phy-brcm-usb*
3750
3751 BROADCOM ETHERNET PHY DRIVERS
3752 M:      Florian Fainelli <f.fainelli@gmail.com>
3753 L:      bcm-kernel-feedback-list@broadcom.com
3754 L:      netdev@vger.kernel.org
3755 S:      Supported
3756 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3757 F:      drivers/net/phy/bcm*.[ch]
3758 F:      drivers/net/phy/broadcom.c
3759 F:      include/linux/brcmphy.h
3760
3761 BROADCOM GENET ETHERNET DRIVER
3762 M:      Doug Berger <opendmb@gmail.com>
3763 M:      Florian Fainelli <f.fainelli@gmail.com>
3764 L:      bcm-kernel-feedback-list@broadcom.com
3765 L:      netdev@vger.kernel.org
3766 S:      Supported
3767 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3768 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3769 F:      drivers/net/ethernet/broadcom/genet/
3770 F:      drivers/net/ethernet/broadcom/unimac.h
3771 F:      drivers/net/mdio/mdio-bcm-unimac.c
3772 F:      include/linux/platform_data/bcmgenet.h
3773 F:      include/linux/platform_data/mdio-bcm-unimac.h
3774
3775 BROADCOM IPROC ARM ARCHITECTURE
3776 M:      Ray Jui <rjui@broadcom.com>
3777 M:      Scott Branden <sbranden@broadcom.com>
3778 M:      bcm-kernel-feedback-list@broadcom.com
3779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3780 S:      Maintained
3781 T:      git git://github.com/broadcom/cygnus-linux.git
3782 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3783 F:      arch/arm64/boot/dts/broadcom/stingray/*
3784 F:      drivers/clk/bcm/clk-ns*
3785 F:      drivers/clk/bcm/clk-sr*
3786 F:      drivers/pinctrl/bcm/pinctrl-ns*
3787 F:      include/dt-bindings/clock/bcm-sr*
3788 N:      iproc
3789 N:      cygnus
3790 N:      bcm[-_]nsp
3791 N:      bcm9113*
3792 N:      bcm9583*
3793 N:      bcm9585*
3794 N:      bcm9586*
3795 N:      bcm988312
3796 N:      bcm113*
3797 N:      bcm583*
3798 N:      bcm585*
3799 N:      bcm586*
3800 N:      bcm88312
3801 N:      hr2
3802 N:      stingray
3803
3804 BROADCOM IPROC GBIT ETHERNET DRIVER
3805 M:      Rafał Miłecki <rafal@milecki.pl>
3806 M:      bcm-kernel-feedback-list@broadcom.com
3807 L:      netdev@vger.kernel.org
3808 S:      Maintained
3809 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3810 F:      drivers/net/ethernet/broadcom/bgmac*
3811 F:      drivers/net/ethernet/broadcom/unimac.h
3812
3813 BROADCOM KONA GPIO DRIVER
3814 M:      Ray Jui <rjui@broadcom.com>
3815 L:      bcm-kernel-feedback-list@broadcom.com
3816 S:      Supported
3817 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3818 F:      drivers/gpio/gpio-bcm-kona.c
3819
3820 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3821 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3822 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3823 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3824 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3825 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3826 L:      linux-scsi@vger.kernel.org
3827 S:      Supported
3828 W:      https://www.broadcom.com/support/storage
3829 F:      drivers/scsi/mpi3mr/
3830
3831 BROADCOM NETXTREME-E ROCE DRIVER
3832 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3833 L:      linux-rdma@vger.kernel.org
3834 S:      Supported
3835 W:      http://www.broadcom.com
3836 F:      drivers/infiniband/hw/bnxt_re/
3837 F:      include/uapi/rdma/bnxt_re-abi.h
3838
3839 BROADCOM NVRAM DRIVER
3840 M:      Rafał Miłecki <zajec5@gmail.com>
3841 L:      linux-mips@vger.kernel.org
3842 S:      Maintained
3843 F:      drivers/firmware/broadcom/*
3844
3845 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3846 M:      Rafał Miłecki <rafal@milecki.pl>
3847 M:      Florian Fainelli <f.fainelli@gmail.com>
3848 M:      bcm-kernel-feedback-list@broadcom.com
3849 L:      linux-pm@vger.kernel.org
3850 S:      Maintained
3851 T:      git git://github.com/broadcom/stblinux.git
3852 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3853 F:      include/dt-bindings/soc/bcm-pmb.h
3854
3855 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3856 M:      Rafał Miłecki <zajec5@gmail.com>
3857 L:      linux-wireless@vger.kernel.org
3858 S:      Maintained
3859 F:      drivers/bcma/
3860 F:      include/linux/bcma/
3861
3862 BROADCOM SPI DRIVER
3863 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3864 M:      bcm-kernel-feedback-list@broadcom.com
3865 S:      Maintained
3866 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3867 F:      drivers/spi/spi-bcm-qspi.*
3868 F:      drivers/spi/spi-brcmstb-qspi.c
3869 F:      drivers/spi/spi-iproc-qspi.c
3870
3871 BROADCOM STB AVS CPUFREQ DRIVER
3872 M:      Markus Mayer <mmayer@broadcom.com>
3873 M:      bcm-kernel-feedback-list@broadcom.com
3874 L:      linux-pm@vger.kernel.org
3875 S:      Maintained
3876 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3877 F:      drivers/cpufreq/brcmstb*
3878
3879 BROADCOM STB AVS TMON DRIVER
3880 M:      Markus Mayer <mmayer@broadcom.com>
3881 M:      bcm-kernel-feedback-list@broadcom.com
3882 L:      linux-pm@vger.kernel.org
3883 S:      Maintained
3884 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3885 F:      drivers/thermal/broadcom/brcmstb*
3886
3887 BROADCOM STB DPFE DRIVER
3888 M:      Markus Mayer <mmayer@broadcom.com>
3889 M:      bcm-kernel-feedback-list@broadcom.com
3890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3891 S:      Maintained
3892 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3893 F:      drivers/memory/brcmstb_dpfe.c
3894
3895 BROADCOM STB NAND FLASH DRIVER
3896 M:      Brian Norris <computersforpeace@gmail.com>
3897 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3898 L:      linux-mtd@lists.infradead.org
3899 L:      bcm-kernel-feedback-list@broadcom.com
3900 S:      Maintained
3901 F:      drivers/mtd/nand/raw/brcmnand/
3902
3903 BROADCOM STB PCIE DRIVER
3904 M:      Jim Quinlan <jim2101024@gmail.com>
3905 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3906 M:      Florian Fainelli <f.fainelli@gmail.com>
3907 M:      bcm-kernel-feedback-list@broadcom.com
3908 L:      linux-pci@vger.kernel.org
3909 S:      Maintained
3910 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3911 F:      drivers/pci/controller/pcie-brcmstb.c
3912
3913 BROADCOM SYSTEMPORT ETHERNET DRIVER
3914 M:      Florian Fainelli <f.fainelli@gmail.com>
3915 L:      bcm-kernel-feedback-list@broadcom.com
3916 L:      netdev@vger.kernel.org
3917 S:      Supported
3918 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3919 F:      drivers/net/ethernet/broadcom/unimac.h
3920
3921 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3922 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3923 M:      Prashant Sreedharan <prashant@broadcom.com>
3924 M:      Michael Chan <mchan@broadcom.com>
3925 L:      netdev@vger.kernel.org
3926 S:      Supported
3927 F:      drivers/net/ethernet/broadcom/tg3.*
3928
3929 BROADCOM VK DRIVER
3930 M:      Scott Branden <scott.branden@broadcom.com>
3931 L:      bcm-kernel-feedback-list@broadcom.com
3932 S:      Supported
3933 F:      drivers/misc/bcm-vk/
3934 F:      include/uapi/linux/misc/bcm_vk.h
3935
3936 BROCADE BFA FC SCSI DRIVER
3937 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3938 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3939 L:      linux-scsi@vger.kernel.org
3940 S:      Supported
3941 F:      drivers/scsi/bfa/
3942
3943 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3944 M:      Rasesh Mody <rmody@marvell.com>
3945 M:      Sudarsana Kalluru <skalluru@marvell.com>
3946 M:      GR-Linux-NIC-Dev@marvell.com
3947 L:      netdev@vger.kernel.org
3948 S:      Supported
3949 F:      drivers/net/ethernet/brocade/bna/
3950
3951 BSG (block layer generic sg v4 driver)
3952 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3953 L:      linux-scsi@vger.kernel.org
3954 S:      Supported
3955 F:      block/bsg.c
3956 F:      include/linux/bsg.h
3957 F:      include/uapi/linux/bsg.h
3958
3959 BT87X AUDIO DRIVER
3960 M:      Clemens Ladisch <clemens@ladisch.de>
3961 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3962 S:      Maintained
3963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
3964 F:      Documentation/sound/cards/bt87x.rst
3965 F:      sound/pci/bt87x.c
3966
3967 BT8XXGPIO DRIVER
3968 M:      Michael Buesch <m@bues.ch>
3969 S:      Maintained
3970 W:      http://bu3sch.de/btgpio.php
3971 F:      drivers/gpio/gpio-bt8xx.c
3972
3973 BTRFS FILE SYSTEM
3974 M:      Chris Mason <clm@fb.com>
3975 M:      Josef Bacik <josef@toxicpanda.com>
3976 M:      David Sterba <dsterba@suse.com>
3977 L:      linux-btrfs@vger.kernel.org
3978 S:      Maintained
3979 W:      http://btrfs.wiki.kernel.org/
3980 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
3981 C:      irc://irc.libera.chat/btrfs
3982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
3983 F:      Documentation/filesystems/btrfs.rst
3984 F:      fs/btrfs/
3985 F:      include/linux/btrfs*
3986 F:      include/uapi/linux/btrfs*
3987
3988 BTTV VIDEO4LINUX DRIVER
3989 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3990 L:      linux-media@vger.kernel.org
3991 S:      Odd fixes
3992 W:      https://linuxtv.org
3993 T:      git git://linuxtv.org/media_tree.git
3994 F:      Documentation/driver-api/media/drivers/bttv*
3995 F:      drivers/media/pci/bt8xx/bttv*
3996
3997 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3998 M:      Chanwoo Choi <cw00.choi@samsung.com>
3999 L:      linux-pm@vger.kernel.org
4000 L:      linux-samsung-soc@vger.kernel.org
4001 S:      Maintained
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4003 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4004 F:      drivers/devfreq/exynos-bus.c
4005
4006 BUSLOGIC SCSI DRIVER
4007 M:      Khalid Aziz <khalid@gonehiking.org>
4008 L:      linux-scsi@vger.kernel.org
4009 S:      Maintained
4010 F:      drivers/scsi/BusLogic.*
4011 F:      drivers/scsi/FlashPoint.*
4012
4013 C-MEDIA CMI8788 DRIVER
4014 M:      Clemens Ladisch <clemens@ladisch.de>
4015 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4016 S:      Maintained
4017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4018 F:      sound/pci/oxygen/
4019
4020 C-SKY ARCHITECTURE
4021 M:      Guo Ren <guoren@kernel.org>
4022 L:      linux-csky@vger.kernel.org
4023 S:      Supported
4024 T:      git https://github.com/c-sky/csky-linux.git
4025 F:      Documentation/devicetree/bindings/csky/
4026 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4027 F:      Documentation/devicetree/bindings/timer/csky,*
4028 F:      arch/csky/
4029 F:      drivers/clocksource/timer-gx6605s.c
4030 F:      drivers/clocksource/timer-mp-csky.c
4031 F:      drivers/irqchip/irq-csky-*
4032 N:      csky
4033 K:      csky
4034
4035 CA8210 IEEE-802.15.4 RADIO DRIVER
4036 M:      Harry Morris <h.morris@cascoda.com>
4037 L:      linux-wpan@vger.kernel.org
4038 S:      Maintained
4039 W:      https://github.com/Cascoda/ca8210-linux.git
4040 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4041 F:      drivers/net/ieee802154/ca8210.c
4042
4043 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4044 M:      Damien Le Moal <damien.lemoal@wdc.com>
4045 L:      linux-riscv@lists.infradead.org
4046 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4047 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4048 F:      drivers/pinctrl/pinctrl-k210.c
4049
4050 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4051 M:      Damien Le Moal <damien.lemoal@wdc.com>
4052 L:      linux-kernel@vger.kernel.org
4053 L:      linux-riscv@lists.infradead.org
4054 S:      Maintained
4055 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4056 F:      drivers/reset/reset-k210.c
4057
4058 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4059 M:      Damien Le Moal <damien.lemoal@wdc.com>
4060 L:      linux-riscv@lists.infradead.org
4061 S:      Maintained
4062 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4063 F:      drivers/soc/canaan/
4064 F:      include/soc/canaan/
4065
4066 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4067 M:      David Howells <dhowells@redhat.com>
4068 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4069 S:      Supported
4070 F:      Documentation/filesystems/caching/cachefiles.rst
4071 F:      fs/cachefiles/
4072
4073 CADENCE MIPI-CSI2 BRIDGES
4074 M:      Maxime Ripard <mripard@kernel.org>
4075 L:      linux-media@vger.kernel.org
4076 S:      Maintained
4077 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4078 F:      drivers/media/platform/cadence/cdns-csi2*
4079
4080 CADENCE NAND DRIVER
4081 L:      linux-mtd@lists.infradead.org
4082 S:      Orphan
4083 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4084 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4085
4086 CADENCE USB3 DRD IP DRIVER
4087 M:      Peter Chen <peter.chen@kernel.org>
4088 M:      Pawel Laszczak <pawell@cadence.com>
4089 R:      Roger Quadros <rogerq@kernel.org>
4090 R:      Aswath Govindraju <a-govindraju@ti.com>
4091 L:      linux-usb@vger.kernel.org
4092 S:      Maintained
4093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4094 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4095 F:      drivers/usb/cdns3/
4096 X:      drivers/usb/cdns3/cdnsp*
4097
4098 CADENCE USBSSP DRD IP DRIVER
4099 M:      Pawel Laszczak <pawell@cadence.com>
4100 L:      linux-usb@vger.kernel.org
4101 S:      Maintained
4102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4103 F:      drivers/usb/cdns3/
4104 X:      drivers/usb/cdns3/cdns3*
4105
4106 CADET FM/AM RADIO RECEIVER DRIVER
4107 M:      Hans Verkuil <hverkuil@xs4all.nl>
4108 L:      linux-media@vger.kernel.org
4109 S:      Maintained
4110 W:      https://linuxtv.org
4111 T:      git git://linuxtv.org/media_tree.git
4112 F:      drivers/media/radio/radio-cadet*
4113
4114 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4115 L:      linux-media@vger.kernel.org
4116 S:      Orphan
4117 T:      git git://linuxtv.org/media_tree.git
4118 F:      Documentation/admin-guide/media/cafe_ccic*
4119 F:      drivers/media/platform/marvell-ccic/
4120
4121 CAIF NETWORK LAYER
4122 L:      netdev@vger.kernel.org
4123 S:      Orphan
4124 F:      Documentation/networking/caif/
4125 F:      drivers/net/caif/
4126 F:      include/net/caif/
4127 F:      include/uapi/linux/caif/
4128 F:      net/caif/
4129
4130 CAKE QDISC
4131 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4132 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4133 S:      Maintained
4134 F:      net/sched/sch_cake.c
4135
4136 CAN NETWORK DRIVERS
4137 M:      Wolfgang Grandegger <wg@grandegger.com>
4138 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4139 L:      linux-can@vger.kernel.org
4140 S:      Maintained
4141 W:      https://github.com/linux-can
4142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4144 F:      Documentation/devicetree/bindings/net/can/
4145 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4146 F:      drivers/net/can/
4147 F:      drivers/phy/phy-can-transceiver.c
4148 F:      include/linux/can/bittiming.h
4149 F:      include/linux/can/dev.h
4150 F:      include/linux/can/led.h
4151 F:      include/linux/can/length.h
4152 F:      include/linux/can/platform/
4153 F:      include/linux/can/rx-offload.h
4154 F:      include/uapi/linux/can/error.h
4155 F:      include/uapi/linux/can/netlink.h
4156 F:      include/uapi/linux/can/vxcan.h
4157
4158 CAN NETWORK LAYER
4159 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4160 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4161 L:      linux-can@vger.kernel.org
4162 S:      Maintained
4163 W:      https://github.com/linux-can
4164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4166 F:      Documentation/networking/can.rst
4167 F:      include/linux/can/can-ml.h
4168 F:      include/linux/can/core.h
4169 F:      include/linux/can/skb.h
4170 F:      include/net/netns/can.h
4171 F:      include/uapi/linux/can.h
4172 F:      include/uapi/linux/can/bcm.h
4173 F:      include/uapi/linux/can/gw.h
4174 F:      include/uapi/linux/can/isotp.h
4175 F:      include/uapi/linux/can/raw.h
4176 F:      net/can/
4177
4178 CAN-J1939 NETWORK LAYER
4179 M:      Robin van der Gracht <robin@protonic.nl>
4180 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4181 R:      kernel@pengutronix.de
4182 L:      linux-can@vger.kernel.org
4183 S:      Maintained
4184 F:      Documentation/networking/j1939.rst
4185 F:      include/uapi/linux/can/j1939.h
4186 F:      net/can/j1939/
4187
4188 CAPABILITIES
4189 M:      Serge Hallyn <serge@hallyn.com>
4190 L:      linux-security-module@vger.kernel.org
4191 S:      Supported
4192 F:      include/linux/capability.h
4193 F:      include/uapi/linux/capability.h
4194 F:      kernel/capability.c
4195 F:      security/commoncap.c
4196
4197 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4198 M:      Kevin Tsai <ktsai@capellamicro.com>
4199 S:      Maintained
4200 F:      drivers/iio/light/cm*
4201
4202 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4203 M:      Christian Lamparter <chunkeey@googlemail.com>
4204 L:      linux-wireless@vger.kernel.org
4205 S:      Maintained
4206 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4207 F:      drivers/net/wireless/ath/carl9170/
4208
4209 CAVIUM I2C DRIVER
4210 M:      Robert Richter <rric@kernel.org>
4211 S:      Odd Fixes
4212 W:      http://www.marvell.com
4213 F:      drivers/i2c/busses/i2c-octeon*
4214 F:      drivers/i2c/busses/i2c-thunderx*
4215
4216 CAVIUM LIQUIDIO NETWORK DRIVER
4217 M:      Derek Chickles <dchickles@marvell.com>
4218 M:      Satanand Burla <sburla@marvell.com>
4219 M:      Felix Manlunas <fmanlunas@marvell.com>
4220 L:      netdev@vger.kernel.org
4221 S:      Supported
4222 W:      http://www.marvell.com
4223 F:      drivers/net/ethernet/cavium/liquidio/
4224
4225 CAVIUM MMC DRIVER
4226 M:      Robert Richter <rric@kernel.org>
4227 S:      Odd Fixes
4228 W:      http://www.marvell.com
4229 F:      drivers/mmc/host/cavium*
4230
4231 CAVIUM OCTEON-TX CRYPTO DRIVER
4232 M:      George Cherian <gcherian@marvell.com>
4233 L:      linux-crypto@vger.kernel.org
4234 S:      Supported
4235 W:      http://www.marvell.com
4236 F:      drivers/crypto/cavium/cpt/
4237
4238 CAVIUM THUNDERX2 ARM64 SOC
4239 M:      Robert Richter <rric@kernel.org>
4240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4241 S:      Odd Fixes
4242 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4243 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4244
4245 CBS/ETF/TAPRIO QDISCS
4246 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4247 S:      Maintained
4248 L:      netdev@vger.kernel.org
4249 F:      net/sched/sch_cbs.c
4250 F:      net/sched/sch_etf.c
4251 F:      net/sched/sch_taprio.c
4252
4253 CC2520 IEEE-802.15.4 RADIO DRIVER
4254 M:      Varka Bhadram <varkabhadram@gmail.com>
4255 L:      linux-wpan@vger.kernel.org
4256 S:      Maintained
4257 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4258 F:      drivers/net/ieee802154/cc2520.c
4259 F:      include/linux/spi/cc2520.h
4260
4261 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4262 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4263 L:      linux-crypto@vger.kernel.org
4264 S:      Supported
4265 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4266 F:      drivers/crypto/ccree/
4267
4268 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4269 M:      Hadar Gat <hadar.gat@arm.com>
4270 L:      linux-crypto@vger.kernel.org
4271 S:      Supported
4272 F:      drivers/char/hw_random/cctrng.c
4273 F:      drivers/char/hw_random/cctrng.h
4274 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4275 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4276
4277 CEC FRAMEWORK
4278 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4279 L:      linux-media@vger.kernel.org
4280 S:      Supported
4281 W:      http://linuxtv.org
4282 T:      git git://linuxtv.org/media_tree.git
4283 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4284 F:      Documentation/devicetree/bindings/media/cec.txt
4285 F:      Documentation/driver-api/media/cec-core.rst
4286 F:      Documentation/userspace-api/media/cec
4287 F:      drivers/media/cec/
4288 F:      drivers/media/rc/keymaps/rc-cec.c
4289 F:      include/media/cec-notifier.h
4290 F:      include/media/cec.h
4291 F:      include/uapi/linux/cec-funcs.h
4292 F:      include/uapi/linux/cec.h
4293
4294 CEC GPIO DRIVER
4295 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4296 L:      linux-media@vger.kernel.org
4297 S:      Supported
4298 W:      http://linuxtv.org
4299 T:      git git://linuxtv.org/media_tree.git
4300 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4301 F:      drivers/media/cec/platform/cec-gpio/
4302
4303 CELL BROADBAND ENGINE ARCHITECTURE
4304 M:      Arnd Bergmann <arnd@arndb.de>
4305 L:      linuxppc-dev@lists.ozlabs.org
4306 S:      Supported
4307 W:      http://www.ibm.com/developerworks/power/cell/
4308 F:      arch/powerpc/include/asm/cell*.h
4309 F:      arch/powerpc/include/asm/spu*.h
4310 F:      arch/powerpc/include/uapi/asm/spu*.h
4311 F:      arch/powerpc/platforms/cell/
4312
4313 CELLWISE CW2015 BATTERY DRIVER
4314 M:      Tobias Schrammm <t.schramm@manjaro.org>
4315 S:      Maintained
4316 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4317 F:      drivers/power/supply/cw2015_battery.c
4318
4319 CEPH COMMON CODE (LIBCEPH)
4320 M:      Ilya Dryomov <idryomov@gmail.com>
4321 M:      Jeff Layton <jlayton@kernel.org>
4322 L:      ceph-devel@vger.kernel.org
4323 S:      Supported
4324 W:      http://ceph.com/
4325 T:      git git://github.com/ceph/ceph-client.git
4326 F:      include/linux/ceph/
4327 F:      include/linux/crush/
4328 F:      net/ceph/
4329
4330 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4331 M:      Jeff Layton <jlayton@kernel.org>
4332 M:      Ilya Dryomov <idryomov@gmail.com>
4333 L:      ceph-devel@vger.kernel.org
4334 S:      Supported
4335 W:      http://ceph.com/
4336 T:      git git://github.com/ceph/ceph-client.git
4337 F:      Documentation/filesystems/ceph.rst
4338 F:      fs/ceph/
4339
4340 CERTIFICATE HANDLING
4341 M:      David Howells <dhowells@redhat.com>
4342 M:      David Woodhouse <dwmw2@infradead.org>
4343 L:      keyrings@vger.kernel.org
4344 S:      Maintained
4345 F:      Documentation/admin-guide/module-signing.rst
4346 F:      certs/
4347 F:      scripts/extract-cert.c
4348 F:      scripts/sign-file.c
4349
4350 CFAG12864B LCD DRIVER
4351 M:      Miguel Ojeda <ojeda@kernel.org>
4352 S:      Maintained
4353 F:      drivers/auxdisplay/cfag12864b.c
4354 F:      include/linux/cfag12864b.h
4355
4356 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4357 M:      Miguel Ojeda <ojeda@kernel.org>
4358 S:      Maintained
4359 F:      drivers/auxdisplay/cfag12864bfb.c
4360 F:      include/linux/cfag12864b.h
4361
4362 CHAR and MISC DRIVERS
4363 M:      Arnd Bergmann <arnd@arndb.de>
4364 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4365 S:      Supported
4366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4367 F:      drivers/char/
4368 F:      drivers/misc/
4369 F:      include/linux/miscdevice.h
4370 X:      drivers/char/agp/
4371 X:      drivers/char/hw_random/
4372 X:      drivers/char/ipmi/
4373 X:      drivers/char/random.c
4374 X:      drivers/char/tpm/
4375
4376 CHECKPATCH
4377 M:      Andy Whitcroft <apw@canonical.com>
4378 M:      Joe Perches <joe@perches.com>
4379 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4380 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4381 S:      Maintained
4382 F:      scripts/checkpatch.pl
4383
4384 CHECKPATCH DOCUMENTATION
4385 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4386 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4387 R:      Joe Perches <joe@perches.com>
4388 S:      Maintained
4389 F:      Documentation/dev-tools/checkpatch.rst
4390
4391 CHINESE DOCUMENTATION
4392 M:      Alex Shi <alexs@kernel.org>
4393 S:      Maintained
4394 F:      Documentation/translations/zh_CN/
4395
4396 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4397 M:      Peter Chen <peter.chen@kernel.org>
4398 L:      linux-usb@vger.kernel.org
4399 S:      Maintained
4400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4401 F:      drivers/usb/chipidea/
4402
4403 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4404 M:      Hans de Goede <hdegoede@redhat.com>
4405 L:      linux-input@vger.kernel.org
4406 S:      Maintained
4407 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4408 F:      drivers/input/touchscreen/chipone_icn8318.c
4409
4410 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4411 M:      Hans de Goede <hdegoede@redhat.com>
4412 L:      linux-input@vger.kernel.org
4413 S:      Maintained
4414 F:      drivers/input/touchscreen/chipone_icn8505.c
4415
4416 CHROME HARDWARE PLATFORM SUPPORT
4417 M:      Benson Leung <bleung@chromium.org>
4418 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4419 S:      Maintained
4420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4421 F:      drivers/platform/chrome/
4422
4423 CHROMEOS EC CODEC DRIVER
4424 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4425 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4426 R:      Guenter Roeck <groeck@chromium.org>
4427 S:      Maintained
4428 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4429 F:      sound/soc/codecs/cros_ec_codec.*
4430
4431 CHROMEOS EC SUBDRIVERS
4432 M:      Benson Leung <bleung@chromium.org>
4433 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4434 R:      Guenter Roeck <groeck@chromium.org>
4435 S:      Maintained
4436 F:      drivers/power/supply/cros_usbpd-charger.c
4437 N:      cros_ec
4438 N:      cros-ec
4439
4440 CHRONTEL CH7322 CEC DRIVER
4441 M:      Jeff Chase <jnchase@google.com>
4442 L:      linux-media@vger.kernel.org
4443 S:      Maintained
4444 T:      git git://linuxtv.org/media_tree.git
4445 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4446 F:      drivers/media/cec/i2c/ch7322.c
4447
4448 CIRRUS LOGIC AUDIO CODEC DRIVERS
4449 M:      James Schulman <james.schulman@cirrus.com>
4450 M:      David Rhodes <david.rhodes@cirrus.com>
4451 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4452 L:      patches@opensource.cirrus.com
4453 S:      Maintained
4454 F:      sound/soc/codecs/cs*
4455
4456 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4457 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4458 L:      netdev@vger.kernel.org
4459 S:      Maintained
4460 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4461
4462 CIRRUS LOGIC LOCHNAGAR DRIVER
4463 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4464 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4465 L:      patches@opensource.cirrus.com
4466 S:      Supported
4467 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4468 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4469 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4470 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4471 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4472 F:      Documentation/hwmon/lochnagar.rst
4473 F:      drivers/clk/clk-lochnagar.c
4474 F:      drivers/hwmon/lochnagar-hwmon.c
4475 F:      drivers/mfd/lochnagar-i2c.c
4476 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4477 F:      drivers/regulator/lochnagar-regulator.c
4478 F:      include/dt-bindings/clk/lochnagar.h
4479 F:      include/dt-bindings/pinctrl/lochnagar.h
4480 F:      include/linux/mfd/lochnagar*
4481 F:      sound/soc/codecs/lochnagar-sc.c
4482
4483 CIRRUS LOGIC MADERA CODEC DRIVERS
4484 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4485 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4486 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4487 L:      patches@opensource.cirrus.com
4488 S:      Supported
4489 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4490 T:      git https://github.com/CirrusLogic/linux-drivers.git
4491 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4492 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4493 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4494 F:      drivers/gpio/gpio-madera*
4495 F:      drivers/irqchip/irq-madera*
4496 F:      drivers/mfd/cs47l*
4497 F:      drivers/mfd/madera*
4498 F:      drivers/pinctrl/cirrus/*
4499 F:      include/dt-bindings/sound/madera*
4500 F:      include/linux/irqchip/irq-madera*
4501 F:      include/linux/mfd/madera/*
4502 F:      include/sound/madera*
4503 F:      sound/soc/codecs/cs47l*
4504 F:      sound/soc/codecs/madera*
4505
4506 CISCO FCOE HBA DRIVER
4507 M:      Satish Kharat <satishkh@cisco.com>
4508 M:      Sesidhar Baddela <sebaddel@cisco.com>
4509 M:      Karan Tilak Kumar <kartilak@cisco.com>
4510 L:      linux-scsi@vger.kernel.org
4511 S:      Supported
4512 F:      drivers/scsi/fnic/
4513
4514 CISCO SCSI HBA DRIVER
4515 M:      Karan Tilak Kumar <kartilak@cisco.com>
4516 M:      Sesidhar Baddela <sebaddel@cisco.com>
4517 L:      linux-scsi@vger.kernel.org
4518 S:      Supported
4519 F:      drivers/scsi/snic/
4520
4521 CISCO VIC ETHERNET NIC DRIVER
4522 M:      Christian Benvenuti <benve@cisco.com>
4523 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4524 S:      Supported
4525 F:      drivers/net/ethernet/cisco/enic/
4526
4527 CISCO VIC LOW LATENCY NIC DRIVER
4528 M:      Christian Benvenuti <benve@cisco.com>
4529 M:      Nelson Escobar <neescoba@cisco.com>
4530 S:      Supported
4531 F:      drivers/infiniband/hw/usnic/
4532
4533 CLANG-FORMAT FILE
4534 M:      Miguel Ojeda <ojeda@kernel.org>
4535 S:      Maintained
4536 F:      .clang-format
4537
4538 CLANG/LLVM BUILD SUPPORT
4539 M:      Nathan Chancellor <nathan@kernel.org>
4540 M:      Nick Desaulniers <ndesaulniers@google.com>
4541 L:      llvm@lists.linux.dev
4542 S:      Supported
4543 W:      https://clangbuiltlinux.github.io/
4544 B:      https://github.com/ClangBuiltLinux/linux/issues
4545 C:      irc://irc.libera.chat/clangbuiltlinux
4546 F:      Documentation/kbuild/llvm.rst
4547 F:      include/linux/compiler-clang.h
4548 F:      scripts/Makefile.clang
4549 F:      scripts/clang-tools/
4550 K:      \b(?i:clang|llvm)\b
4551
4552 CLANG CONTROL FLOW INTEGRITY SUPPORT
4553 M:      Sami Tolvanen <samitolvanen@google.com>
4554 M:      Kees Cook <keescook@chromium.org>
4555 R:      Nathan Chancellor <nathan@kernel.org>
4556 R:      Nick Desaulniers <ndesaulniers@google.com>
4557 L:      llvm@lists.linux.dev
4558 S:      Supported
4559 B:      https://github.com/ClangBuiltLinux/linux/issues
4560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4561 F:      include/linux/cfi.h
4562 F:      kernel/cfi.c
4563
4564 CLEANCACHE API
4565 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4566 L:      linux-kernel@vger.kernel.org
4567 S:      Maintained
4568 F:      include/linux/cleancache.h
4569 F:      mm/cleancache.c
4570
4571 CLK API
4572 M:      Russell King <linux@armlinux.org.uk>
4573 L:      linux-clk@vger.kernel.org
4574 S:      Maintained
4575 F:      include/linux/clk.h
4576
4577 CLOCKSOURCE, CLOCKEVENT DRIVERS
4578 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4579 M:      Thomas Gleixner <tglx@linutronix.de>
4580 L:      linux-kernel@vger.kernel.org
4581 S:      Supported
4582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4583 F:      Documentation/devicetree/bindings/timer/
4584 F:      drivers/clocksource/
4585
4586 CMPC ACPI DRIVER
4587 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4588 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4589 L:      platform-driver-x86@vger.kernel.org
4590 S:      Supported
4591 F:      drivers/platform/x86/classmate-laptop.c
4592
4593 COBALT MEDIA DRIVER
4594 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4595 L:      linux-media@vger.kernel.org
4596 S:      Supported
4597 W:      https://linuxtv.org
4598 T:      git git://linuxtv.org/media_tree.git
4599 F:      drivers/media/pci/cobalt/
4600
4601 COCCINELLE/Semantic Patches (SmPL)
4602 M:      Julia Lawall <Julia.Lawall@inria.fr>
4603 M:      Gilles Muller <Gilles.Muller@inria.fr>
4604 M:      Nicolas Palix <nicolas.palix@imag.fr>
4605 M:      Michal Marek <michal.lkml@markovi.net>
4606 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4607 S:      Supported
4608 W:      http://coccinelle.lip6.fr/
4609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4610 F:      Documentation/dev-tools/coccinelle.rst
4611 F:      scripts/coccicheck
4612 F:      scripts/coccinelle/
4613
4614 CODA FILE SYSTEM
4615 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4616 M:      coda@cs.cmu.edu
4617 L:      codalist@coda.cs.cmu.edu
4618 S:      Maintained
4619 W:      http://www.coda.cs.cmu.edu/
4620 F:      Documentation/filesystems/coda.rst
4621 F:      fs/coda/
4622 F:      include/linux/coda*.h
4623 F:      include/uapi/linux/coda*.h
4624
4625 CODA V4L2 MEM2MEM DRIVER
4626 M:      Philipp Zabel <p.zabel@pengutronix.de>
4627 L:      linux-media@vger.kernel.org
4628 S:      Maintained
4629 F:      Documentation/devicetree/bindings/media/coda.yaml
4630 F:      drivers/media/platform/coda/
4631
4632 CODE OF CONDUCT
4633 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4634 S:      Supported
4635 F:      Documentation/process/code-of-conduct-interpretation.rst
4636 F:      Documentation/process/code-of-conduct.rst
4637
4638 COMEDI DRIVERS
4639 M:      Ian Abbott <abbotti@mev.co.uk>
4640 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4641 S:      Odd Fixes
4642 F:      drivers/comedi/
4643
4644 COMMON CLK FRAMEWORK
4645 M:      Michael Turquette <mturquette@baylibre.com>
4646 M:      Stephen Boyd <sboyd@kernel.org>
4647 L:      linux-clk@vger.kernel.org
4648 S:      Maintained
4649 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4651 F:      Documentation/devicetree/bindings/clock/
4652 F:      drivers/clk/
4653 F:      include/linux/clk-pr*
4654 F:      include/linux/clk/
4655 F:      include/linux/of_clk.h
4656 X:      drivers/clk/clkdev.c
4657
4658 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4659 M:      Steve French <sfrench@samba.org>
4660 L:      linux-cifs@vger.kernel.org
4661 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4662 S:      Supported
4663 W:      http://linux-cifs.samba.org/
4664 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4665 F:      Documentation/admin-guide/cifs/
4666 F:      fs/cifs/
4667 F:      fs/smbfs_common/
4668
4669 COMPACTPCI HOTPLUG CORE
4670 M:      Scott Murray <scott@spiteful.org>
4671 L:      linux-pci@vger.kernel.org
4672 S:      Maintained
4673 F:      drivers/pci/hotplug/cpci_hotplug*
4674
4675 COMPACTPCI HOTPLUG GENERIC DRIVER
4676 M:      Scott Murray <scott@spiteful.org>
4677 L:      linux-pci@vger.kernel.org
4678 S:      Maintained
4679 F:      drivers/pci/hotplug/cpcihp_generic.c
4680
4681 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4682 M:      Scott Murray <scott@spiteful.org>
4683 L:      linux-pci@vger.kernel.org
4684 S:      Maintained
4685 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4686
4687 COMPAL LAPTOP SUPPORT
4688 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4689 L:      platform-driver-x86@vger.kernel.org
4690 S:      Maintained
4691 F:      drivers/platform/x86/compal-laptop.c
4692
4693 COMPILER ATTRIBUTES
4694 M:      Miguel Ojeda <ojeda@kernel.org>
4695 R:      Nick Desaulniers <ndesaulniers@google.com>
4696 S:      Maintained
4697 F:      include/linux/compiler_attributes.h
4698
4699 COMPUTE EXPRESS LINK (CXL)
4700 M:      Alison Schofield <alison.schofield@intel.com>
4701 M:      Vishal Verma <vishal.l.verma@intel.com>
4702 M:      Ira Weiny <ira.weiny@intel.com>
4703 M:      Ben Widawsky <ben.widawsky@intel.com>
4704 M:      Dan Williams <dan.j.williams@intel.com>
4705 L:      linux-cxl@vger.kernel.org
4706 S:      Maintained
4707 F:      drivers/cxl/
4708 F:      include/uapi/linux/cxl_mem.h
4709
4710 CONEXANT ACCESSRUNNER USB DRIVER
4711 L:      accessrunner-general@lists.sourceforge.net
4712 S:      Orphan
4713 W:      http://accessrunner.sourceforge.net/
4714 F:      drivers/usb/atm/cxacru.c
4715
4716 CONFIGFS
4717 M:      Joel Becker <jlbec@evilplan.org>
4718 M:      Christoph Hellwig <hch@lst.de>
4719 S:      Supported
4720 T:      git git://git.infradead.org/users/hch/configfs.git
4721 F:      fs/configfs/
4722 F:      include/linux/configfs.h
4723 F:      samples/configfs/
4724
4725 CONSOLE SUBSYSTEM
4726 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4727 S:      Supported
4728 F:      drivers/video/console/
4729 F:      include/linux/console*
4730
4731 CONTEXT TRACKING
4732 M:      Frederic Weisbecker <frederic@kernel.org>
4733 S:      Maintained
4734 F:      kernel/context_tracking.c
4735 F:      include/linux/context_tracking*
4736
4737 CONTROL GROUP (CGROUP)
4738 M:      Tejun Heo <tj@kernel.org>
4739 M:      Zefan Li <lizefan.x@bytedance.com>
4740 M:      Johannes Weiner <hannes@cmpxchg.org>
4741 L:      cgroups@vger.kernel.org
4742 S:      Maintained
4743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4744 F:      Documentation/admin-guide/cgroup-v1/
4745 F:      Documentation/admin-guide/cgroup-v2.rst
4746 F:      include/linux/cgroup*
4747 F:      kernel/cgroup/
4748
4749 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4750 M:      Tejun Heo <tj@kernel.org>
4751 M:      Jens Axboe <axboe@kernel.dk>
4752 L:      cgroups@vger.kernel.org
4753 L:      linux-block@vger.kernel.org
4754 T:      git git://git.kernel.dk/linux-block
4755 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4756 F:      block/bfq-cgroup.c
4757 F:      block/blk-cgroup.c
4758 F:      block/blk-iolatency.c
4759 F:      block/blk-throttle.c
4760 F:      include/linux/blk-cgroup.h
4761
4762 CONTROL GROUP - CPUSET
4763 M:      Zefan Li <lizefan.x@bytedance.com>
4764 L:      cgroups@vger.kernel.org
4765 S:      Maintained
4766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4767 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4768 F:      include/linux/cpuset.h
4769 F:      kernel/cgroup/cpuset.c
4770
4771 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4772 M:      Johannes Weiner <hannes@cmpxchg.org>
4773 M:      Michal Hocko <mhocko@kernel.org>
4774 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4775 L:      cgroups@vger.kernel.org
4776 L:      linux-mm@kvack.org
4777 S:      Maintained
4778 F:      mm/memcontrol.c
4779 F:      mm/swap_cgroup.c
4780
4781 CORETEMP HARDWARE MONITORING DRIVER
4782 M:      Fenghua Yu <fenghua.yu@intel.com>
4783 L:      linux-hwmon@vger.kernel.org
4784 S:      Maintained
4785 F:      Documentation/hwmon/coretemp.rst
4786 F:      drivers/hwmon/coretemp.c
4787
4788 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4789 M:      Marius Zachmann <mail@mariuszachmann.de>
4790 L:      linux-hwmon@vger.kernel.org
4791 S:      Maintained
4792 F:      drivers/hwmon/corsair-cpro.c
4793
4794 CORSAIR-PSU HARDWARE MONITOR DRIVER
4795 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4796 L:      linux-hwmon@vger.kernel.org
4797 S:      Maintained
4798 F:      Documentation/hwmon/corsair-psu.rst
4799 F:      drivers/hwmon/corsair-psu.c
4800
4801 COSA/SRP SYNC SERIAL DRIVER
4802 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4803 S:      Maintained
4804 W:      http://www.fi.muni.cz/~kas/cosa/
4805 F:      drivers/net/wan/cosa*
4806
4807 COUNTER SUBSYSTEM
4808 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4809 L:      linux-iio@vger.kernel.org
4810 S:      Maintained
4811 F:      Documentation/ABI/testing/sysfs-bus-counter
4812 F:      Documentation/driver-api/generic-counter.rst
4813 F:      drivers/counter/
4814 F:      include/linux/counter.h
4815 F:      include/linux/counter_enum.h
4816
4817 CP2615 I2C DRIVER
4818 M:      Bence Csókás <bence98@sch.bme.hu>
4819 S:      Maintained
4820 F:      drivers/i2c/busses/i2c-cp2615.c
4821
4822 CPMAC ETHERNET DRIVER
4823 M:      Florian Fainelli <f.fainelli@gmail.com>
4824 L:      netdev@vger.kernel.org
4825 S:      Maintained
4826 F:      drivers/net/ethernet/ti/cpmac.c
4827
4828 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4829 M:      Viresh Kumar <viresh.kumar@linaro.org>
4830 M:      Sudeep Holla <sudeep.holla@arm.com>
4831 L:      linux-pm@vger.kernel.org
4832 S:      Maintained
4833 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4834 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4835
4836 CPU FREQUENCY SCALING FRAMEWORK
4837 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4838 M:      Viresh Kumar <viresh.kumar@linaro.org>
4839 L:      linux-pm@vger.kernel.org
4840 S:      Maintained
4841 B:      https://bugzilla.kernel.org
4842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4844 F:      Documentation/admin-guide/pm/cpufreq.rst
4845 F:      Documentation/admin-guide/pm/intel_pstate.rst
4846 F:      Documentation/cpu-freq/
4847 F:      Documentation/devicetree/bindings/cpufreq/
4848 F:      drivers/cpufreq/
4849 F:      include/linux/cpufreq.h
4850 F:      include/linux/sched/cpufreq.h
4851 F:      kernel/sched/cpufreq*.c
4852 F:      tools/testing/selftests/cpufreq/
4853
4854 CPU IDLE TIME MANAGEMENT FRAMEWORK
4855 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4856 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4857 L:      linux-pm@vger.kernel.org
4858 S:      Maintained
4859 B:      https://bugzilla.kernel.org
4860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4861 F:      Documentation/admin-guide/pm/cpuidle.rst
4862 F:      Documentation/driver-api/pm/cpuidle.rst
4863 F:      drivers/cpuidle/
4864 F:      include/linux/cpuidle.h
4865
4866 CPU POWER MONITORING SUBSYSTEM
4867 M:      Thomas Renninger <trenn@suse.com>
4868 M:      Shuah Khan <shuah@kernel.org>
4869 M:      Shuah Khan <skhan@linuxfoundation.org>
4870 L:      linux-pm@vger.kernel.org
4871 S:      Maintained
4872 F:      tools/power/cpupower/
4873
4874 CPUID/MSR DRIVER
4875 M:      "H. Peter Anvin" <hpa@zytor.com>
4876 S:      Maintained
4877 F:      arch/x86/kernel/cpuid.c
4878 F:      arch/x86/kernel/msr.c
4879
4880 CPUIDLE DRIVER - ARM BIG LITTLE
4881 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4882 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4883 L:      linux-pm@vger.kernel.org
4884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4885 S:      Maintained
4886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4887 F:      drivers/cpuidle/cpuidle-big_little.c
4888
4889 CPUIDLE DRIVER - ARM EXYNOS
4890 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4891 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4892 M:      Kukjin Kim <kgene@kernel.org>
4893 L:      linux-pm@vger.kernel.org
4894 L:      linux-samsung-soc@vger.kernel.org
4895 S:      Supported
4896 F:      arch/arm/mach-exynos/pm.c
4897 F:      drivers/cpuidle/cpuidle-exynos.c
4898 F:      include/linux/platform_data/cpuidle-exynos.h
4899
4900 CPUIDLE DRIVER - ARM PSCI
4901 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4902 M:      Sudeep Holla <sudeep.holla@arm.com>
4903 L:      linux-pm@vger.kernel.org
4904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4905 S:      Supported
4906 F:      drivers/cpuidle/cpuidle-psci.c
4907
4908 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4909 M:      Ulf Hansson <ulf.hansson@linaro.org>
4910 L:      linux-pm@vger.kernel.org
4911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4912 S:      Supported
4913 F:      drivers/cpuidle/cpuidle-psci.h
4914 F:      drivers/cpuidle/cpuidle-psci-domain.c
4915
4916 CRAMFS FILESYSTEM
4917 M:      Nicolas Pitre <nico@fluxnic.net>
4918 S:      Maintained
4919 F:      Documentation/filesystems/cramfs.rst
4920 F:      fs/cramfs/
4921
4922 CREATIVE SB0540
4923 M:      Bastien Nocera <hadess@hadess.net>
4924 L:      linux-input@vger.kernel.org
4925 S:      Maintained
4926 F:      drivers/hid/hid-creative-sb0540.c
4927
4928 CRYPTO API
4929 M:      Herbert Xu <herbert@gondor.apana.org.au>
4930 M:      "David S. Miller" <davem@davemloft.net>
4931 L:      linux-crypto@vger.kernel.org
4932 S:      Maintained
4933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4935 F:      Documentation/crypto/
4936 F:      Documentation/devicetree/bindings/crypto/
4937 F:      arch/*/crypto/
4938 F:      crypto/
4939 F:      drivers/crypto/
4940 F:      include/crypto/
4941 F:      include/linux/crypto*
4942 F:      lib/crypto/
4943
4944 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4945 M:      Neil Horman <nhorman@tuxdriver.com>
4946 L:      linux-crypto@vger.kernel.org
4947 S:      Maintained
4948 F:      crypto/ansi_cprng.c
4949 F:      crypto/rng.c
4950
4951 CS3308 MEDIA DRIVER
4952 M:      Hans Verkuil <hverkuil@xs4all.nl>
4953 L:      linux-media@vger.kernel.org
4954 S:      Odd Fixes
4955 W:      http://linuxtv.org
4956 T:      git git://linuxtv.org/media_tree.git
4957 F:      drivers/media/i2c/cs3308.c
4958
4959 CS5535 Audio ALSA driver
4960 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
4961 S:      Maintained
4962 F:      sound/pci/cs5535audio/
4963
4964 CSI DRIVERS FOR ALLWINNER V3s
4965 M:      Yong Deng <yong.deng@magewell.com>
4966 L:      linux-media@vger.kernel.org
4967 S:      Maintained
4968 T:      git git://linuxtv.org/media_tree.git
4969 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
4970 F:      drivers/media/platform/sunxi/sun6i-csi/
4971
4972 CW1200 WLAN driver
4973 M:      Solomon Peachy <pizza@shaftnet.org>
4974 S:      Maintained
4975 F:      drivers/net/wireless/st/cw1200/
4976
4977 CX18 VIDEO4LINUX DRIVER
4978 M:      Andy Walls <awalls@md.metrocast.net>
4979 L:      linux-media@vger.kernel.org
4980 S:      Maintained
4981 W:      https://linuxtv.org
4982 T:      git git://linuxtv.org/media_tree.git
4983 F:      drivers/media/pci/cx18/
4984 F:      include/uapi/linux/ivtv*
4985
4986 CX2341X MPEG ENCODER HELPER MODULE
4987 M:      Hans Verkuil <hverkuil@xs4all.nl>
4988 L:      linux-media@vger.kernel.org
4989 S:      Maintained
4990 W:      https://linuxtv.org
4991 T:      git git://linuxtv.org/media_tree.git
4992 F:      drivers/media/common/cx2341x*
4993 F:      include/media/drv-intf/cx2341x.h
4994
4995 CX24120 MEDIA DRIVER
4996 M:      Jemma Denson <jdenson@gmail.com>
4997 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
4998 L:      linux-media@vger.kernel.org
4999 S:      Maintained
5000 W:      https://linuxtv.org
5001 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5002 F:      drivers/media/dvb-frontends/cx24120*
5003
5004 CX88 VIDEO4LINUX DRIVER
5005 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5006 L:      linux-media@vger.kernel.org
5007 S:      Odd fixes
5008 W:      https://linuxtv.org
5009 T:      git git://linuxtv.org/media_tree.git
5010 F:      Documentation/driver-api/media/drivers/cx88*
5011 F:      drivers/media/pci/cx88/
5012
5013 CXD2820R MEDIA DRIVER
5014 M:      Antti Palosaari <crope@iki.fi>
5015 L:      linux-media@vger.kernel.org
5016 S:      Maintained
5017 W:      https://linuxtv.org
5018 W:      http://palosaari.fi/linux/
5019 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5020 T:      git git://linuxtv.org/anttip/media_tree.git
5021 F:      drivers/media/dvb-frontends/cxd2820r*
5022
5023 CXGB3 ETHERNET DRIVER (CXGB3)
5024 M:      Raju Rangoju <rajur@chelsio.com>
5025 L:      netdev@vger.kernel.org
5026 S:      Supported
5027 W:      http://www.chelsio.com
5028 F:      drivers/net/ethernet/chelsio/cxgb3/
5029
5030 CXGB3 ISCSI DRIVER (CXGB3I)
5031 M:      Karen Xie <kxie@chelsio.com>
5032 L:      linux-scsi@vger.kernel.org
5033 S:      Supported
5034 W:      http://www.chelsio.com
5035 F:      drivers/scsi/cxgbi/cxgb3i
5036
5037 CXGB4 CRYPTO DRIVER (chcr)
5038 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5039 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5040 M:      Rohit Maheshwari <rohitm@chelsio.com>
5041 L:      linux-crypto@vger.kernel.org
5042 S:      Supported
5043 W:      http://www.chelsio.com
5044 F:      drivers/crypto/chelsio
5045
5046 CXGB4 INLINE CRYPTO DRIVER
5047 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5048 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5049 M:      Rohit Maheshwari <rohitm@chelsio.com>
5050 L:      netdev@vger.kernel.org
5051 S:      Supported
5052 W:      http://www.chelsio.com
5053 F:      drivers/net/ethernet/chelsio/inline_crypto/
5054
5055 CXGB4 ETHERNET DRIVER (CXGB4)
5056 M:      Raju Rangoju <rajur@chelsio.com>
5057 L:      netdev@vger.kernel.org
5058 S:      Supported
5059 W:      http://www.chelsio.com
5060 F:      drivers/net/ethernet/chelsio/cxgb4/
5061
5062 CXGB4 ISCSI DRIVER (CXGB4I)
5063 M:      Karen Xie <kxie@chelsio.com>
5064 L:      linux-scsi@vger.kernel.org
5065 S:      Supported
5066 W:      http://www.chelsio.com
5067 F:      drivers/scsi/cxgbi/cxgb4i
5068
5069 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5070 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5071 L:      linux-rdma@vger.kernel.org
5072 S:      Supported
5073 W:      http://www.openfabrics.org
5074 F:      drivers/infiniband/hw/cxgb4/
5075 F:      include/uapi/rdma/cxgb4-abi.h
5076
5077 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5078 M:      Raju Rangoju <rajur@chelsio.com>
5079 L:      netdev@vger.kernel.org
5080 S:      Supported
5081 W:      http://www.chelsio.com
5082 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5083
5084 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5085 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5086 M:      Andrew Donnellan <ajd@linux.ibm.com>
5087 L:      linuxppc-dev@lists.ozlabs.org
5088 S:      Supported
5089 F:      Documentation/ABI/testing/sysfs-class-cxl
5090 F:      Documentation/powerpc/cxl.rst
5091 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5092 F:      drivers/misc/cxl/
5093 F:      include/misc/cxl*
5094 F:      include/uapi/misc/cxl.h
5095
5096 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5097 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5098 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5099 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5100 L:      linux-scsi@vger.kernel.org
5101 S:      Supported
5102 F:      Documentation/powerpc/cxlflash.rst
5103 F:      drivers/scsi/cxlflash/
5104 F:      include/uapi/scsi/cxlflash_ioctl.h
5105
5106 CYBERPRO FB DRIVER
5107 M:      Russell King <linux@armlinux.org.uk>
5108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5109 S:      Maintained
5110 W:      http://www.armlinux.org.uk/
5111 F:      drivers/video/fbdev/cyber2000fb.*
5112
5113 CYCLADES PC300 DRIVER
5114 S:      Orphan
5115 F:      drivers/net/wan/pc300*
5116
5117 CYPRESS_FIRMWARE MEDIA DRIVER
5118 M:      Antti Palosaari <crope@iki.fi>
5119 L:      linux-media@vger.kernel.org
5120 S:      Maintained
5121 W:      https://linuxtv.org
5122 W:      http://palosaari.fi/linux/
5123 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5124 T:      git git://linuxtv.org/anttip/media_tree.git
5125 F:      drivers/media/common/cypress_firmware*
5126
5127 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5128 M:      Linus Walleij <linus.walleij@linaro.org>
5129 L:      linux-input@vger.kernel.org
5130 S:      Maintained
5131 F:      drivers/input/touchscreen/cy8ctma140.c
5132
5133 CYTTSP TOUCHSCREEN DRIVER
5134 M:      Linus Walleij <linus.walleij@linaro.org>
5135 L:      linux-input@vger.kernel.org
5136 S:      Maintained
5137 F:      drivers/input/touchscreen/cyttsp*
5138
5139 D-LINK DIR-685 TOUCHKEYS DRIVER
5140 M:      Linus Walleij <linus.walleij@linaro.org>
5141 L:      linux-input@vger.kernel.org
5142 S:      Supported
5143 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5144
5145 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5146 M:      Joshua Kinard <kumba@gentoo.org>
5147 S:      Maintained
5148 F:      drivers/rtc/rtc-ds1685.c
5149 F:      include/linux/rtc/ds1685.h
5150
5151 DAMA SLAVE for AX.25
5152 M:      Joerg Reuter <jreuter@yaina.de>
5153 L:      linux-hams@vger.kernel.org
5154 S:      Maintained
5155 W:      http://yaina.de/jreuter/
5156 W:      http://www.qsl.net/dl1bke/
5157 F:      net/ax25/af_ax25.c
5158 F:      net/ax25/ax25_dev.c
5159 F:      net/ax25/ax25_ds_*
5160 F:      net/ax25/ax25_in.c
5161 F:      net/ax25/ax25_out.c
5162 F:      net/ax25/ax25_timer.c
5163 F:      net/ax25/sysctl_net_ax25.c
5164
5165 DATA ACCESS MONITOR
5166 M:      SeongJae Park <sjpark@amazon.de>
5167 L:      linux-mm@kvack.org
5168 S:      Maintained
5169 F:      Documentation/admin-guide/mm/damon/
5170 F:      Documentation/vm/damon/
5171 F:      include/linux/damon.h
5172 F:      include/trace/events/damon.h
5173 F:      mm/damon/
5174 F:      tools/testing/selftests/damon/
5175
5176 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5177 L:      netdev@vger.kernel.org
5178 S:      Orphan
5179 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5180 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5181
5182 DC390/AM53C974 SCSI driver
5183 M:      Hannes Reinecke <hare@suse.com>
5184 L:      linux-scsi@vger.kernel.org
5185 S:      Maintained
5186 F:      drivers/scsi/am53c974.c
5187
5188 DC395x SCSI driver
5189 M:      Oliver Neukum <oliver@neukum.org>
5190 M:      Ali Akcaagac <aliakc@web.de>
5191 M:      Jamie Lenehan <lenehan@twibble.org>
5192 L:      dc395x@twibble.org
5193 S:      Maintained
5194 W:      http://twibble.org/dist/dc395x/
5195 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5196 F:      Documentation/scsi/dc395x.rst
5197 F:      drivers/scsi/dc395x.*
5198
5199 DCCP PROTOCOL
5200 L:      dccp@vger.kernel.org
5201 S:      Orphan
5202 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5203 F:      include/linux/dccp.h
5204 F:      include/linux/tfrc.h
5205 F:      include/uapi/linux/dccp.h
5206 F:      net/dccp/
5207
5208 DECnet NETWORK LAYER
5209 L:      linux-decnet-user@lists.sourceforge.net
5210 S:      Orphan
5211 W:      http://linux-decnet.sourceforge.net
5212 F:      Documentation/networking/decnet.rst
5213 F:      net/decnet/
5214
5215 DECSTATION PLATFORM SUPPORT
5216 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5217 L:      linux-mips@vger.kernel.org
5218 S:      Maintained
5219 W:      http://www.linux-mips.org/wiki/DECstation
5220 F:      arch/mips/dec/
5221 F:      arch/mips/include/asm/dec/
5222 F:      arch/mips/include/asm/mach-dec/
5223
5224 DEFXX FDDI NETWORK DRIVER
5225 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5226 S:      Maintained
5227 F:      drivers/net/fddi/defxx.*
5228
5229 DEFZA FDDI NETWORK DRIVER
5230 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5231 S:      Maintained
5232 F:      drivers/net/fddi/defza.*
5233
5234 DEINTERLACE DRIVERS FOR ALLWINNER H3
5235 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5236 L:      linux-media@vger.kernel.org
5237 S:      Maintained
5238 T:      git git://linuxtv.org/media_tree.git
5239 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5240 F:      drivers/media/platform/sunxi/sun8i-di/
5241
5242 DELL LAPTOP DRIVER
5243 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5244 M:      Pali Rohár <pali@kernel.org>
5245 L:      platform-driver-x86@vger.kernel.org
5246 S:      Maintained
5247 F:      drivers/platform/x86/dell/dell-laptop.c
5248
5249 DELL LAPTOP FREEFALL DRIVER
5250 M:      Pali Rohár <pali@kernel.org>
5251 S:      Maintained
5252 F:      drivers/platform/x86/dell/dell-smo8800.c
5253
5254 DELL LAPTOP RBTN DRIVER
5255 M:      Pali Rohár <pali@kernel.org>
5256 S:      Maintained
5257 F:      drivers/platform/x86/dell/dell-rbtn.*
5258
5259 DELL LAPTOP SMM DRIVER
5260 M:      Pali Rohár <pali@kernel.org>
5261 S:      Maintained
5262 F:      drivers/hwmon/dell-smm-hwmon.c
5263 F:      include/uapi/linux/i8k.h
5264
5265 DELL REMOTE BIOS UPDATE DRIVER
5266 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5267 L:      platform-driver-x86@vger.kernel.org
5268 S:      Maintained
5269 F:      drivers/platform/x86/dell/dell_rbu.c
5270
5271 DELL SMBIOS DRIVER
5272 M:      Pali Rohár <pali@kernel.org>
5273 L:      Dell.Client.Kernel@dell.com
5274 L:      platform-driver-x86@vger.kernel.org
5275 S:      Maintained
5276 F:      drivers/platform/x86/dell/dell-smbios.*
5277
5278 DELL SMBIOS SMM DRIVER
5279 L:      Dell.Client.Kernel@dell.com
5280 L:      platform-driver-x86@vger.kernel.org
5281 S:      Maintained
5282 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5283
5284 DELL SMBIOS WMI DRIVER
5285 L:      Dell.Client.Kernel@dell.com
5286 L:      platform-driver-x86@vger.kernel.org
5287 S:      Maintained
5288 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5289 F:      tools/wmi/dell-smbios-example.c
5290
5291 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5292 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5293 L:      platform-driver-x86@vger.kernel.org
5294 S:      Maintained
5295 F:      Documentation/driver-api/dcdbas.rst
5296 F:      drivers/platform/x86/dell/dcdbas.*
5297
5298 DELL WMI DESCRIPTOR DRIVER
5299 L:      Dell.Client.Kernel@dell.com
5300 S:      Maintained
5301 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5302
5303 DELL WMI SYSMAN DRIVER
5304 M:      Divya Bharathi <divya.bharathi@dell.com>
5305 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5306 L:      Dell.Client.Kernel@dell.com
5307 L:      platform-driver-x86@vger.kernel.org
5308 S:      Maintained
5309 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5310 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5311
5312 DELL WMI NOTIFICATIONS DRIVER
5313 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5314 M:      Pali Rohár <pali@kernel.org>
5315 S:      Maintained
5316 F:      drivers/platform/x86/dell/dell-wmi-base.c
5317
5318 DELL WMI HARDWARE PRIVACY SUPPORT
5319 M:      Perry Yuan <Perry.Yuan@dell.com>
5320 L:      Dell.Client.Kernel@dell.com
5321 L:      platform-driver-x86@vger.kernel.org
5322 S:      Maintained
5323 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5324
5325 DELTA ST MEDIA DRIVER
5326 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5327 L:      linux-media@vger.kernel.org
5328 S:      Supported
5329 W:      https://linuxtv.org
5330 T:      git git://linuxtv.org/media_tree.git
5331 F:      drivers/media/platform/sti/delta
5332
5333 DELTA DPS920AB PSU DRIVER
5334 M:      Robert Marko <robert.marko@sartura.hr>
5335 L:      linux-hwmon@vger.kernel.org
5336 S:      Maintained
5337 F:      Documentation/hwmon/dps920ab.rst
5338 F:      drivers/hwmon/pmbus/dps920ab.c
5339
5340 DENALI NAND DRIVER
5341 L:      linux-mtd@lists.infradead.org
5342 S:      Orphan
5343 F:      drivers/mtd/nand/raw/denali*
5344
5345 DESIGNWARE EDMA CORE IP DRIVER
5346 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5347 L:      dmaengine@vger.kernel.org
5348 S:      Maintained
5349 F:      drivers/dma/dw-edma/
5350 F:      include/linux/dma/edma.h
5351
5352 DESIGNWARE XDATA IP DRIVER
5353 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5354 L:      linux-pci@vger.kernel.org
5355 S:      Maintained
5356 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5357 F:      drivers/misc/dw-xdata-pcie.c
5358
5359 DESIGNWARE USB2 DRD IP DRIVER
5360 M:      Minas Harutyunyan <hminas@synopsys.com>
5361 L:      linux-usb@vger.kernel.org
5362 S:      Maintained
5363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5364 F:      drivers/usb/dwc2/
5365
5366 DESIGNWARE USB3 DRD IP DRIVER
5367 M:      Felipe Balbi <balbi@kernel.org>
5368 L:      linux-usb@vger.kernel.org
5369 S:      Maintained
5370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5371 F:      drivers/usb/dwc3/
5372
5373 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5374 M:      Andreas Klinger <ak@it-klinger.de>
5375 L:      linux-iio@vger.kernel.org
5376 S:      Maintained
5377 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5378 F:      drivers/iio/proximity/srf*.c
5379
5380 DEVICE COREDUMP (DEV_COREDUMP)
5381 M:      Johannes Berg <johannes@sipsolutions.net>
5382 L:      linux-kernel@vger.kernel.org
5383 S:      Maintained
5384 F:      drivers/base/devcoredump.c
5385 F:      include/linux/devcoredump.h
5386
5387 DEVICE DEPENDENCY HELPER SCRIPT
5388 M:      Saravana Kannan <saravanak@google.com>
5389 L:      linux-kernel@vger.kernel.org
5390 S:      Maintained
5391 F:      scripts/dev-needs.sh
5392
5393 DEVICE DIRECT ACCESS (DAX)
5394 M:      Dan Williams <dan.j.williams@intel.com>
5395 M:      Vishal Verma <vishal.l.verma@intel.com>
5396 M:      Dave Jiang <dave.jiang@intel.com>
5397 L:      nvdimm@lists.linux.dev
5398 S:      Supported
5399 F:      drivers/dax/
5400
5401 DEVICE FREQUENCY (DEVFREQ)
5402 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5403 M:      Kyungmin Park <kyungmin.park@samsung.com>
5404 M:      Chanwoo Choi <cw00.choi@samsung.com>
5405 L:      linux-pm@vger.kernel.org
5406 S:      Maintained
5407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5408 F:      Documentation/devicetree/bindings/devfreq/
5409 F:      drivers/devfreq/
5410 F:      include/linux/devfreq.h
5411 F:      include/trace/events/devfreq.h
5412
5413 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5414 M:      Chanwoo Choi <cw00.choi@samsung.com>
5415 L:      linux-pm@vger.kernel.org
5416 S:      Supported
5417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5418 F:      Documentation/devicetree/bindings/devfreq/event/
5419 F:      drivers/devfreq/devfreq-event.c
5420 F:      drivers/devfreq/event/
5421 F:      include/dt-bindings/pmu/exynos_ppmu.h
5422 F:      include/linux/devfreq-event.h
5423
5424 DEVICE NUMBER REGISTRY
5425 M:      Torben Mathiasen <device@lanana.org>
5426 S:      Maintained
5427 W:      http://lanana.org/docs/device-list/index.html
5428
5429 DEVICE RESOURCE MANAGEMENT HELPERS
5430 M:      Hans de Goede <hdegoede@redhat.com>
5431 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5432 S:      Maintained
5433 F:      include/linux/devm-helpers.h
5434
5435 DEVICE-MAPPER  (LVM)
5436 M:      Alasdair Kergon <agk@redhat.com>
5437 M:      Mike Snitzer <snitzer@redhat.com>
5438 M:      dm-devel@redhat.com
5439 L:      dm-devel@redhat.com
5440 S:      Maintained
5441 W:      http://sources.redhat.com/dm
5442 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5444 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5445 F:      Documentation/admin-guide/device-mapper/
5446 F:      drivers/md/Kconfig
5447 F:      drivers/md/Makefile
5448 F:      drivers/md/dm*
5449 F:      drivers/md/persistent-data/
5450 F:      include/linux/device-mapper.h
5451 F:      include/linux/dm-*.h
5452 F:      include/uapi/linux/dm-*.h
5453
5454 DEVLINK
5455 M:      Jiri Pirko <jiri@nvidia.com>
5456 L:      netdev@vger.kernel.org
5457 S:      Supported
5458 F:      Documentation/networking/devlink
5459 F:      include/net/devlink.h
5460 F:      include/uapi/linux/devlink.h
5461 F:      net/core/devlink.c
5462
5463 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5464 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5465 L:      kernel@dh-electronics.com
5466 S:      Maintained
5467 F:      arch/arm/boot/dts/imx6*-dhcom-*
5468
5469 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5470 M:      Marek Vasut <marex@denx.de>
5471 L:      kernel@dh-electronics.com
5472 S:      Maintained
5473 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5474 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5475
5476 DIALOG SEMICONDUCTOR DRIVERS
5477 M:      Support Opensource <support.opensource@diasemi.com>
5478 S:      Supported
5479 W:      http://www.dialog-semiconductor.com/products
5480 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5481 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5482 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5483 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5484 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5485 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5486 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5487 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5488 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5489 F:      Documentation/hwmon/da90??.rst
5490 F:      drivers/gpio/gpio-da90??.c
5491 F:      drivers/hwmon/da90??-hwmon.c
5492 F:      drivers/iio/adc/da91??-*.c
5493 F:      drivers/input/misc/da72??.[ch]
5494 F:      drivers/input/misc/da90??_onkey.c
5495 F:      drivers/input/touchscreen/da9052_tsi.c
5496 F:      drivers/leds/leds-da90??.c
5497 F:      drivers/mfd/da903x.c
5498 F:      drivers/mfd/da90??-*.c
5499 F:      drivers/mfd/da91??-*.c
5500 F:      drivers/pinctrl/pinctrl-da90??.c
5501 F:      drivers/power/supply/da9052-battery.c
5502 F:      drivers/power/supply/da91??-*.c
5503 F:      drivers/regulator/da9???-regulator.[ch]
5504 F:      drivers/regulator/slg51000-regulator.[ch]
5505 F:      drivers/rtc/rtc-da90??.c
5506 F:      drivers/thermal/da90??-thermal.c
5507 F:      drivers/video/backlight/da90??_bl.c
5508 F:      drivers/watchdog/da90??_wdt.c
5509 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5510 F:      include/linux/mfd/da903x.h
5511 F:      include/linux/mfd/da9052/
5512 F:      include/linux/mfd/da9055/
5513 F:      include/linux/mfd/da9062/
5514 F:      include/linux/mfd/da9063/
5515 F:      include/linux/mfd/da9150/
5516 F:      include/linux/regulator/da9211.h
5517 F:      include/sound/da[79]*.h
5518 F:      sound/soc/codecs/da[79]*.[ch]
5519
5520 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5521 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5522 L:      linux-gpio@vger.kernel.org
5523 S:      Maintained
5524 F:      drivers/gpio/gpio-gpio-mm.c
5525
5526 DIOLAN U2C-12 I2C DRIVER
5527 M:      Guenter Roeck <linux@roeck-us.net>
5528 L:      linux-i2c@vger.kernel.org
5529 S:      Maintained
5530 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5531
5532 DIRECTORY NOTIFICATION (DNOTIFY)
5533 M:      Jan Kara <jack@suse.cz>
5534 R:      Amir Goldstein <amir73il@gmail.com>
5535 L:      linux-fsdevel@vger.kernel.org
5536 S:      Maintained
5537 F:      Documentation/filesystems/dnotify.rst
5538 F:      fs/notify/dnotify/
5539 F:      include/linux/dnotify.h
5540
5541 DISK GEOMETRY AND PARTITION HANDLING
5542 M:      Andries Brouwer <aeb@cwi.nl>
5543 S:      Maintained
5544 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5545 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5546 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5547
5548 DISKQUOTA
5549 M:      Jan Kara <jack@suse.com>
5550 S:      Maintained
5551 F:      Documentation/filesystems/quota.rst
5552 F:      fs/quota/
5553 F:      include/linux/quota*.h
5554 F:      include/uapi/linux/quota*.h
5555
5556 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5557 M:      Bernie Thompson <bernie@plugable.com>
5558 L:      linux-fbdev@vger.kernel.org
5559 S:      Maintained
5560 W:      http://plugable.com/category/projects/udlfb/
5561 F:      Documentation/fb/udlfb.rst
5562 F:      drivers/video/fbdev/udlfb.c
5563 F:      include/video/udlfb.h
5564
5565 DISTRIBUTED LOCK MANAGER (DLM)
5566 M:      Christine Caulfield <ccaulfie@redhat.com>
5567 M:      David Teigland <teigland@redhat.com>
5568 L:      cluster-devel@redhat.com
5569 S:      Supported
5570 W:      http://sources.redhat.com/cluster/
5571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5572 F:      fs/dlm/
5573
5574 DMA BUFFER SHARING FRAMEWORK
5575 M:      Sumit Semwal <sumit.semwal@linaro.org>
5576 M:      Christian König <christian.koenig@amd.com>
5577 L:      linux-media@vger.kernel.org
5578 L:      dri-devel@lists.freedesktop.org
5579 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5580 S:      Maintained
5581 T:      git git://anongit.freedesktop.org/drm/drm-misc
5582 F:      Documentation/driver-api/dma-buf.rst
5583 F:      drivers/dma-buf/
5584 F:      include/linux/*fence.h
5585 F:      include/linux/dma-buf*
5586 F:      include/linux/dma-resv.h
5587 K:      \bdma_(?:buf|fence|resv)\b
5588
5589 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5590 M:      Vinod Koul <vkoul@kernel.org>
5591 L:      dmaengine@vger.kernel.org
5592 S:      Maintained
5593 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5595 F:      Documentation/devicetree/bindings/dma/
5596 F:      Documentation/driver-api/dmaengine/
5597 F:      drivers/dma/
5598 F:      include/linux/dma/
5599 F:      include/linux/dmaengine.h
5600 F:      include/linux/of_dma.h
5601
5602 DMA MAPPING HELPERS
5603 M:      Christoph Hellwig <hch@lst.de>
5604 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5605 R:      Robin Murphy <robin.murphy@arm.com>
5606 L:      iommu@lists.linux-foundation.org
5607 L:      iommu@lists.linux.dev
5608 S:      Supported
5609 W:      http://git.infradead.org/users/hch/dma-mapping.git
5610 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5611 F:      include/asm-generic/dma-mapping.h
5612 F:      include/linux/dma-direct.h
5613 F:      include/linux/dma-mapping.h
5614 F:      include/linux/dma-map-ops.h
5615 F:      kernel/dma/
5616
5617 DMA MAPPING BENCHMARK
5618 M:      Barry Song <song.bao.hua@hisilicon.com>
5619 L:      iommu@lists.linux-foundation.org
5620 L:      iommu@lists.linux.dev
5621 F:      kernel/dma/map_benchmark.c
5622 F:      tools/testing/selftests/dma/
5623
5624 DMA-BUF HEAPS FRAMEWORK
5625 M:      Sumit Semwal <sumit.semwal@linaro.org>
5626 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5627 R:      Liam Mark <lmark@codeaurora.org>
5628 R:      Laura Abbott <labbott@redhat.com>
5629 R:      Brian Starkey <Brian.Starkey@arm.com>
5630 R:      John Stultz <john.stultz@linaro.org>
5631 L:      linux-media@vger.kernel.org
5632 L:      dri-devel@lists.freedesktop.org
5633 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5634 S:      Maintained
5635 T:      git git://anongit.freedesktop.org/drm/drm-misc
5636 F:      drivers/dma-buf/dma-heap.c
5637 F:      drivers/dma-buf/heaps/*
5638 F:      include/linux/dma-heap.h
5639 F:      include/uapi/linux/dma-heap.h
5640
5641 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5642 M:      Lukasz Luba <lukasz.luba@arm.com>
5643 L:      linux-pm@vger.kernel.org
5644 L:      linux-samsung-soc@vger.kernel.org
5645 S:      Maintained
5646 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5647 F:      drivers/memory/samsung/exynos5422-dmc.c
5648
5649 DME1737 HARDWARE MONITOR DRIVER
5650 M:      Juerg Haefliger <juergh@gmail.com>
5651 L:      linux-hwmon@vger.kernel.org
5652 S:      Maintained
5653 F:      Documentation/hwmon/dme1737.rst
5654 F:      drivers/hwmon/dme1737.c
5655
5656 DMI/SMBIOS SUPPORT
5657 M:      Jean Delvare <jdelvare@suse.com>
5658 S:      Maintained
5659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5660 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5661 F:      drivers/firmware/dmi-id.c
5662 F:      drivers/firmware/dmi_scan.c
5663 F:      include/linux/dmi.h
5664
5665 DOCUMENTATION
5666 M:      Jonathan Corbet <corbet@lwn.net>
5667 L:      linux-doc@vger.kernel.org
5668 S:      Maintained
5669 P:      Documentation/doc-guide/maintainer-profile.rst
5670 T:      git git://git.lwn.net/linux.git docs-next
5671 F:      Documentation/
5672 F:      scripts/documentation-file-ref-check
5673 F:      scripts/kernel-doc
5674 F:      scripts/sphinx-pre-install
5675 X:      Documentation/ABI/
5676 X:      Documentation/admin-guide/media/
5677 X:      Documentation/devicetree/
5678 X:      Documentation/driver-api/media/
5679 X:      Documentation/firmware-guide/acpi/
5680 X:      Documentation/i2c/
5681 X:      Documentation/power/
5682 X:      Documentation/spi/
5683 X:      Documentation/userspace-api/media/
5684
5685 DOCUMENTATION REPORTING ISSUES
5686 M:      Thorsten Leemhuis <linux@leemhuis.info>
5687 L:      linux-doc@vger.kernel.org
5688 S:      Maintained
5689 F:      Documentation/admin-guide/reporting-issues.rst
5690
5691 DOCUMENTATION SCRIPTS
5692 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5693 L:      linux-doc@vger.kernel.org
5694 S:      Maintained
5695 F:      Documentation/sphinx/parse-headers.pl
5696 F:      scripts/documentation-file-ref-check
5697 F:      scripts/sphinx-pre-install
5698
5699 DOCUMENTATION/ITALIAN
5700 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5701 L:      linux-doc@vger.kernel.org
5702 S:      Maintained
5703 F:      Documentation/translations/it_IT
5704
5705 DONGWOON DW9714 LENS VOICE COIL DRIVER
5706 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5707 L:      linux-media@vger.kernel.org
5708 S:      Maintained
5709 T:      git git://linuxtv.org/media_tree.git
5710 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5711 F:      drivers/media/i2c/dw9714.c
5712
5713 DONGWOON DW9768 LENS VOICE COIL DRIVER
5714 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5715 L:      linux-media@vger.kernel.org
5716 S:      Maintained
5717 T:      git git://linuxtv.org/media_tree.git
5718 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5719 F:      drivers/media/i2c/dw9768.c
5720
5721 DONGWOON DW9807 LENS VOICE COIL DRIVER
5722 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5723 L:      linux-media@vger.kernel.org
5724 S:      Maintained
5725 T:      git git://linuxtv.org/media_tree.git
5726 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5727 F:      drivers/media/i2c/dw9807-vcm.c
5728
5729 DOUBLETALK DRIVER
5730 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5731 L:      blinux-list@redhat.com
5732 S:      Maintained
5733 F:      drivers/char/dtlk.c
5734 F:      include/linux/dtlk.h
5735
5736 DPAA2 DATAPATH I/O (DPIO) DRIVER
5737 M:      Roy Pledge <Roy.Pledge@nxp.com>
5738 L:      linux-kernel@vger.kernel.org
5739 S:      Maintained
5740 F:      drivers/soc/fsl/dpio
5741
5742 DPAA2 ETHERNET DRIVER
5743 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5744 L:      netdev@vger.kernel.org
5745 S:      Maintained
5746 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5747 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5748 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5749 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5750 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5751 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5752 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5753 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5754 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5755
5756 DPAA2 ETHERNET SWITCH DRIVER
5757 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5758 L:      netdev@vger.kernel.org
5759 S:      Maintained
5760 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5761 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5762 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5763
5764 DPT_I2O SCSI RAID DRIVER
5765 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5766 L:      linux-scsi@vger.kernel.org
5767 S:      Maintained
5768 W:      http://www.adaptec.com/
5769 F:      drivers/scsi/dpt*
5770 F:      drivers/scsi/dpt/
5771
5772 DRBD DRIVER
5773 M:      Philipp Reisner <philipp.reisner@linbit.com>
5774 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5775 L:      drbd-dev@lists.linbit.com
5776 S:      Supported
5777 W:      http://www.drbd.org
5778 T:      git git://git.linbit.com/linux-drbd.git
5779 T:      git git://git.linbit.com/drbd-8.4.git
5780 F:      Documentation/admin-guide/blockdev/
5781 F:      drivers/block/drbd/
5782 F:      lib/lru_cache.c
5783
5784 DRIVER COMPONENT FRAMEWORK
5785 L:      dri-devel@lists.freedesktop.org
5786 F:      drivers/base/component.c
5787 F:      include/linux/component.h
5788
5789 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5790 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5791 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5792 S:      Supported
5793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5794 F:      Documentation/core-api/kobject.rst
5795 F:      drivers/base/
5796 F:      fs/debugfs/
5797 F:      fs/sysfs/
5798 F:      include/linux/debugfs.h
5799 F:      include/linux/kobj*
5800 F:      lib/kobj*
5801
5802 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5803 M:      Nishanth Menon <nm@ti.com>
5804 L:      linux-pm@vger.kernel.org
5805 S:      Maintained
5806 F:      drivers/soc/ti/smartreflex.c
5807 F:      include/linux/power/smartreflex.h
5808
5809 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5810 M:      Maxime Ripard <mripard@kernel.org>
5811 M:      Chen-Yu Tsai <wens@csie.org>
5812 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5813 L:      dri-devel@lists.freedesktop.org
5814 S:      Supported
5815 T:      git git://anongit.freedesktop.org/drm/drm-misc
5816 F:      drivers/gpu/drm/sun4i/sun8i*
5817
5818 DRM DRIVER FOR ARM PL111 CLCD
5819 M:      Emma Anholt <emma@anholt.net>
5820 S:      Supported
5821 T:      git git://anongit.freedesktop.org/drm/drm-misc
5822 F:      drivers/gpu/drm/pl111/
5823
5824 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5825 M:      Linus Walleij <linus.walleij@linaro.org>
5826 S:      Maintained
5827 T:      git git://anongit.freedesktop.org/drm/drm-misc
5828 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5829 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5830
5831 DRM DRIVER FOR ASPEED BMC GFX
5832 M:      Joel Stanley <joel@jms.id.au>
5833 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5834 S:      Supported
5835 T:      git git://anongit.freedesktop.org/drm/drm-misc
5836 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5837 F:      drivers/gpu/drm/aspeed/
5838
5839 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5840 M:      Dave Airlie <airlied@redhat.com>
5841 R:      Thomas Zimmermann <tzimmermann@suse.de>
5842 L:      dri-devel@lists.freedesktop.org
5843 S:      Supported
5844 T:      git git://anongit.freedesktop.org/drm/drm-misc
5845 F:      drivers/gpu/drm/ast/
5846
5847 DRM DRIVER FOR BOCHS VIRTUAL GPU
5848 M:      Gerd Hoffmann <kraxel@redhat.com>
5849 L:      virtualization@lists.linux-foundation.org
5850 S:      Maintained
5851 T:      git git://anongit.freedesktop.org/drm/drm-misc
5852 F:      drivers/gpu/drm/tiny/bochs.c
5853
5854 DRM DRIVER FOR BOE HIMAX8279D PANELS
5855 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5856 S:      Maintained
5857 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5858 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5859
5860 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5861 M:      Jagan Teki <jagan@amarulasolutions.com>
5862 S:      Maintained
5863 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5864 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5865
5866 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5867 M:      Linus Walleij <linus.walleij@linaro.org>
5868 S:      Maintained
5869 T:      git git://anongit.freedesktop.org/drm/drm-misc
5870 F:      drivers/gpu/drm/tve200/
5871
5872 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5873 M:      Icenowy Zheng <icenowy@aosc.io>
5874 S:      Maintained
5875 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5876 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5877
5878 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5879 M:      Jagan Teki <jagan@amarulasolutions.com>
5880 S:      Maintained
5881 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5882 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5883
5884 DRM DRIVER FOR GENERIC USB DISPLAY
5885 M:      Noralf Trønnes <noralf@tronnes.org>
5886 S:      Maintained
5887 W:      https://github.com/notro/gud/wiki
5888 T:      git git://anongit.freedesktop.org/drm/drm-misc
5889 F:      drivers/gpu/drm/gud/
5890 F:      include/drm/gud.h
5891
5892 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5893 M:      Hans de Goede <hdegoede@redhat.com>
5894 S:      Maintained
5895 T:      git git://anongit.freedesktop.org/drm/drm-misc
5896 F:      drivers/gpu/drm/tiny/gm12u320.c
5897
5898 DRM DRIVER FOR HX8357D PANELS
5899 M:      Emma Anholt <emma@anholt.net>
5900 S:      Maintained
5901 T:      git git://anongit.freedesktop.org/drm/drm-misc
5902 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5903 F:      drivers/gpu/drm/tiny/hx8357d.c
5904
5905 DRM DRIVER FOR ILITEK ILI9225 PANELS
5906 M:      David Lechner <david@lechnology.com>
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5910 F:      drivers/gpu/drm/tiny/ili9225.c
5911
5912 DRM DRIVER FOR ILITEK ILI9486 PANELS
5913 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5914 S:      Maintained
5915 T:      git git://anongit.freedesktop.org/drm/drm-misc
5916 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5917 F:      drivers/gpu/drm/tiny/ili9486.c
5918
5919 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5920 S:      Orphan / Obsolete
5921 F:      drivers/gpu/drm/i810/
5922 F:      include/uapi/drm/i810_drm.h
5923
5924 DRM DRIVER FOR LVDS PANELS
5925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5926 L:      dri-devel@lists.freedesktop.org
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 S:      Maintained
5929 F:      drivers/gpu/drm/panel/panel-lvds.c
5930 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5931
5932 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5933 M:      Guido Günther <agx@sigxcpu.org>
5934 R:      Purism Kernel Team <kernel@puri.sm>
5935 S:      Maintained
5936 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5937 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5938
5939 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5940 S:      Orphan / Obsolete
5941 F:      drivers/gpu/drm/mga/
5942 F:      include/uapi/drm/mga_drm.h
5943
5944 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5945 M:      Dave Airlie <airlied@redhat.com>
5946 R:      Thomas Zimmermann <tzimmermann@suse.de>
5947 L:      dri-devel@lists.freedesktop.org
5948 S:      Supported
5949 T:      git git://anongit.freedesktop.org/drm/drm-misc
5950 F:      drivers/gpu/drm/mgag200/
5951
5952 DRM DRIVER FOR MI0283QT
5953 M:      Noralf Trønnes <noralf@tronnes.org>
5954 S:      Maintained
5955 T:      git git://anongit.freedesktop.org/drm/drm-misc
5956 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5957 F:      drivers/gpu/drm/tiny/mi0283qt.c
5958
5959 DRM DRIVER FOR MSM ADRENO GPU
5960 M:      Rob Clark <robdclark@gmail.com>
5961 M:      Sean Paul <sean@poorly.run>
5962 L:      linux-arm-msm@vger.kernel.org
5963 L:      dri-devel@lists.freedesktop.org
5964 L:      freedreno@lists.freedesktop.org
5965 S:      Maintained
5966 T:      git https://gitlab.freedesktop.org/drm/msm.git
5967 F:      Documentation/devicetree/bindings/display/msm/
5968 F:      drivers/gpu/drm/msm/
5969 F:      include/uapi/drm/msm_drm.h
5970
5971 DRM DRIVER FOR NOVATEK NT35510 PANELS
5972 M:      Linus Walleij <linus.walleij@linaro.org>
5973 S:      Maintained
5974 T:      git git://anongit.freedesktop.org/drm/drm-misc
5975 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
5976 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
5977
5978 DRM DRIVER FOR NOVATEK NT36672A PANELS
5979 M:      Sumit Semwal <sumit.semwal@linaro.org>
5980 S:      Maintained
5981 T:      git git://anongit.freedesktop.org/drm/drm-misc
5982 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
5983 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
5984
5985 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
5986 M:      Ben Skeggs <bskeggs@redhat.com>
5987 L:      dri-devel@lists.freedesktop.org
5988 L:      nouveau@lists.freedesktop.org
5989 S:      Supported
5990 T:      git git://github.com/skeggsb/linux
5991 F:      drivers/gpu/drm/nouveau/
5992 F:      include/uapi/drm/nouveau_drm.h
5993
5994 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
5995 M:      Stefan Mavrodiev <stefan@olimex.com>
5996 S:      Maintained
5997 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
5998 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
5999
6000 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6001 M:      Noralf Trønnes <noralf@tronnes.org>
6002 S:      Maintained
6003 T:      git git://anongit.freedesktop.org/drm/drm-misc
6004 F:      Documentation/devicetree/bindings/display/repaper.txt
6005 F:      drivers/gpu/drm/tiny/repaper.c
6006
6007 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6008 M:      Dave Airlie <airlied@redhat.com>
6009 M:      Gerd Hoffmann <kraxel@redhat.com>
6010 L:      virtualization@lists.linux-foundation.org
6011 S:      Obsolete
6012 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6013 T:      git git://anongit.freedesktop.org/drm/drm-misc
6014 F:      drivers/gpu/drm/tiny/cirrus.c
6015
6016 DRM DRIVER FOR QXL VIRTUAL GPU
6017 M:      Dave Airlie <airlied@redhat.com>
6018 M:      Gerd Hoffmann <kraxel@redhat.com>
6019 L:      virtualization@lists.linux-foundation.org
6020 L:      spice-devel@lists.freedesktop.org
6021 S:      Maintained
6022 T:      git git://anongit.freedesktop.org/drm/drm-misc
6023 F:      drivers/gpu/drm/qxl/
6024 F:      include/uapi/drm/qxl_drm.h
6025
6026 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6027 S:      Orphan / Obsolete
6028 F:      drivers/gpu/drm/r128/
6029 F:      include/uapi/drm/r128_drm.h
6030
6031 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6032 M:      Robert Chiras <robert.chiras@nxp.com>
6033 S:      Maintained
6034 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6035 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6036
6037 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6038 M:      Linus Walleij <linus.walleij@linaro.org>
6039 S:      Maintained
6040 T:      git git://anongit.freedesktop.org/drm/drm-misc
6041 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6042 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6043
6044 DRM DRIVER FOR SITRONIX ST7703 PANELS
6045 M:      Guido Günther <agx@sigxcpu.org>
6046 R:      Purism Kernel Team <kernel@puri.sm>
6047 R:      Ondrej Jirman <megous@megous.com>
6048 S:      Maintained
6049 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6050 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6051
6052 DRM DRIVER FOR SAVAGE VIDEO CARDS
6053 S:      Orphan / Obsolete
6054 F:      drivers/gpu/drm/savage/
6055 F:      include/uapi/drm/savage_drm.h
6056
6057 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6058 M:      Thomas Zimmermann <tzimmermann@suse.de>
6059 L:      dri-devel@lists.freedesktop.org
6060 S:      Maintained
6061 T:      git git://anongit.freedesktop.org/drm/drm-misc
6062 F:      drivers/gpu/drm/tiny/simpledrm.c
6063
6064 DRM DRIVER FOR SIS VIDEO CARDS
6065 S:      Orphan / Obsolete
6066 F:      drivers/gpu/drm/sis/
6067 F:      include/uapi/drm/sis_drm.h
6068
6069 DRM DRIVER FOR SITRONIX ST7586 PANELS
6070 M:      David Lechner <david@lechnology.com>
6071 S:      Maintained
6072 T:      git git://anongit.freedesktop.org/drm/drm-misc
6073 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6074 F:      drivers/gpu/drm/tiny/st7586.c
6075
6076 DRM DRIVER FOR SITRONIX ST7701 PANELS
6077 M:      Jagan Teki <jagan@amarulasolutions.com>
6078 S:      Maintained
6079 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6080 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6081
6082 DRM DRIVER FOR SITRONIX ST7735R PANELS
6083 M:      David Lechner <david@lechnology.com>
6084 S:      Maintained
6085 T:      git git://anongit.freedesktop.org/drm/drm-misc
6086 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6087 F:      drivers/gpu/drm/tiny/st7735r.c
6088
6089 DRM DRIVER FOR SONY ACX424AKP PANELS
6090 M:      Linus Walleij <linus.walleij@linaro.org>
6091 S:      Maintained
6092 T:      git git://anongit.freedesktop.org/drm/drm-misc
6093 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6094
6095 DRM DRIVER FOR ST-ERICSSON MCDE
6096 M:      Linus Walleij <linus.walleij@linaro.org>
6097 S:      Maintained
6098 T:      git git://anongit.freedesktop.org/drm/drm-misc
6099 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6100 F:      drivers/gpu/drm/mcde/
6101
6102 DRM DRIVER FOR TDFX VIDEO CARDS
6103 S:      Orphan / Obsolete
6104 F:      drivers/gpu/drm/tdfx/
6105
6106 DRM DRIVER FOR TPO TPG110 PANELS
6107 M:      Linus Walleij <linus.walleij@linaro.org>
6108 S:      Maintained
6109 T:      git git://anongit.freedesktop.org/drm/drm-misc
6110 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6111 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6112
6113 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6114 M:      Dave Airlie <airlied@redhat.com>
6115 R:      Sean Paul <sean@poorly.run>
6116 R:      Thomas Zimmermann <tzimmermann@suse.de>
6117 L:      dri-devel@lists.freedesktop.org
6118 S:      Supported
6119 T:      git git://anongit.freedesktop.org/drm/drm-misc
6120 F:      drivers/gpu/drm/udl/
6121
6122 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6123 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6124 M:      Melissa Wen <melissa.srw@gmail.com>
6125 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6126 R:      Daniel Vetter <daniel@ffwll.ch>
6127 L:      dri-devel@lists.freedesktop.org
6128 S:      Maintained
6129 T:      git git://anongit.freedesktop.org/drm/drm-misc
6130 F:      Documentation/gpu/vkms.rst
6131 F:      drivers/gpu/drm/vkms/
6132
6133 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6134 M:      Hans de Goede <hdegoede@redhat.com>
6135 L:      dri-devel@lists.freedesktop.org
6136 S:      Maintained
6137 T:      git git://anongit.freedesktop.org/drm/drm-misc
6138 F:      drivers/gpu/drm/vboxvideo/
6139
6140 DRM DRIVER FOR VMWARE VIRTUAL GPU
6141 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6142 M:      Zack Rusin <zackr@vmware.com>
6143 L:      dri-devel@lists.freedesktop.org
6144 S:      Supported
6145 T:      git git://anongit.freedesktop.org/drm/drm-misc
6146 F:      drivers/gpu/drm/vmwgfx/
6147 F:      include/uapi/drm/vmwgfx_drm.h
6148
6149 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6150 M:      Linus Walleij <linus.walleij@linaro.org>
6151 S:      Maintained
6152 T:      git git://anongit.freedesktop.org/drm/drm-misc
6153 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6154 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6155
6156 DRM DRIVERS
6157 M:      David Airlie <airlied@linux.ie>
6158 M:      Daniel Vetter <daniel@ffwll.ch>
6159 L:      dri-devel@lists.freedesktop.org
6160 S:      Maintained
6161 B:      https://gitlab.freedesktop.org/drm
6162 C:      irc://irc.oftc.net/dri-devel
6163 T:      git git://anongit.freedesktop.org/drm/drm
6164 F:      Documentation/devicetree/bindings/display/
6165 F:      Documentation/devicetree/bindings/gpu/
6166 F:      Documentation/gpu/
6167 F:      drivers/gpu/
6168 F:      include/drm/
6169 F:      include/linux/vga*
6170 F:      include/uapi/drm/
6171
6172 DRM DRIVERS AND MISC GPU PATCHES
6173 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6174 M:      Maxime Ripard <mripard@kernel.org>
6175 M:      Thomas Zimmermann <tzimmermann@suse.de>
6176 S:      Maintained
6177 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6178 T:      git git://anongit.freedesktop.org/drm/drm-misc
6179 F:      Documentation/gpu/
6180 F:      drivers/gpu/drm/*
6181 F:      drivers/gpu/vga/
6182 F:      include/drm/drm*
6183 F:      include/linux/vga*
6184 F:      include/uapi/drm/drm*
6185
6186 DRM DRIVERS FOR ALLWINNER A10
6187 M:      Maxime Ripard <mripard@kernel.org>
6188 M:      Chen-Yu Tsai <wens@csie.org>
6189 L:      dri-devel@lists.freedesktop.org
6190 S:      Supported
6191 T:      git git://anongit.freedesktop.org/drm/drm-misc
6192 F:      Documentation/devicetree/bindings/display/allwinner*
6193 F:      drivers/gpu/drm/sun4i/
6194
6195 DRM DRIVERS FOR AMLOGIC SOCS
6196 M:      Neil Armstrong <narmstrong@baylibre.com>
6197 L:      dri-devel@lists.freedesktop.org
6198 L:      linux-amlogic@lists.infradead.org
6199 S:      Supported
6200 W:      http://linux-meson.com/
6201 T:      git git://anongit.freedesktop.org/drm/drm-misc
6202 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6203 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6204 F:      Documentation/gpu/meson.rst
6205 F:      drivers/gpu/drm/meson/
6206
6207 DRM DRIVERS FOR ATMEL HLCDC
6208 M:      Sam Ravnborg <sam@ravnborg.org>
6209 M:      Boris Brezillon <bbrezillon@kernel.org>
6210 L:      dri-devel@lists.freedesktop.org
6211 S:      Supported
6212 T:      git git://anongit.freedesktop.org/drm/drm-misc
6213 F:      Documentation/devicetree/bindings/display/atmel/
6214 F:      drivers/gpu/drm/atmel-hlcdc/
6215
6216 DRM DRIVERS FOR BRIDGE CHIPS
6217 M:      Andrzej Hajda <a.hajda@samsung.com>
6218 M:      Neil Armstrong <narmstrong@baylibre.com>
6219 M:      Robert Foss <robert.foss@linaro.org>
6220 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6221 R:      Jonas Karlman <jonas@kwiboo.se>
6222 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6223 S:      Maintained
6224 T:      git git://anongit.freedesktop.org/drm/drm-misc
6225 F:      drivers/gpu/drm/bridge/
6226
6227 DRM DRIVERS FOR EXYNOS
6228 M:      Inki Dae <inki.dae@samsung.com>
6229 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6230 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6231 M:      Kyungmin Park <kyungmin.park@samsung.com>
6232 L:      dri-devel@lists.freedesktop.org
6233 S:      Supported
6234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6235 F:      Documentation/devicetree/bindings/display/exynos/
6236 F:      drivers/gpu/drm/exynos/
6237 F:      include/uapi/drm/exynos_drm.h
6238
6239 DRM DRIVERS FOR FREESCALE DCU
6240 M:      Stefan Agner <stefan@agner.ch>
6241 M:      Alison Wang <alison.wang@nxp.com>
6242 L:      dri-devel@lists.freedesktop.org
6243 S:      Supported
6244 T:      git git://anongit.freedesktop.org/drm/drm-misc
6245 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6246 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6247 F:      drivers/gpu/drm/fsl-dcu/
6248
6249 DRM DRIVERS FOR FREESCALE IMX
6250 M:      Philipp Zabel <p.zabel@pengutronix.de>
6251 L:      dri-devel@lists.freedesktop.org
6252 S:      Maintained
6253 F:      Documentation/devicetree/bindings/display/imx/
6254 F:      drivers/gpu/drm/imx/
6255 F:      drivers/gpu/ipu-v3/
6256
6257 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6258 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6259 L:      dri-devel@lists.freedesktop.org
6260 S:      Maintained
6261 T:      git git://github.com/patjak/drm-gma500
6262 F:      drivers/gpu/drm/gma500/
6263
6264 DRM DRIVERS FOR HISILICON
6265 M:      Xinliang Liu <xinliang.liu@linaro.org>
6266 M:      Tian Tao  <tiantao6@hisilicon.com>
6267 R:      John Stultz <john.stultz@linaro.org>
6268 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6269 R:      Chen Feng <puck.chen@hisilicon.com>
6270 L:      dri-devel@lists.freedesktop.org
6271 S:      Maintained
6272 T:      git git://anongit.freedesktop.org/drm/drm-misc
6273 F:      Documentation/devicetree/bindings/display/hisilicon/
6274 F:      drivers/gpu/drm/hisilicon/
6275
6276 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6277 M:      Deepak Rawat <drawat.floss@gmail.com>
6278 L:      linux-hyperv@vger.kernel.org
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Maintained
6281 T:      git git://anongit.freedesktop.org/drm/drm-misc
6282 F:      drivers/gpu/drm/hyperv
6283
6284 DRM DRIVERS FOR LIMA
6285 M:      Qiang Yu <yuq825@gmail.com>
6286 L:      dri-devel@lists.freedesktop.org
6287 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6288 S:      Maintained
6289 T:      git git://anongit.freedesktop.org/drm/drm-misc
6290 F:      drivers/gpu/drm/lima/
6291 F:      include/uapi/drm/lima_drm.h
6292
6293 DRM DRIVERS FOR MEDIATEK
6294 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6295 M:      Philipp Zabel <p.zabel@pengutronix.de>
6296 L:      dri-devel@lists.freedesktop.org
6297 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6298 S:      Supported
6299 F:      Documentation/devicetree/bindings/display/mediatek/
6300 F:      drivers/gpu/drm/mediatek/
6301 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6302 F:      drivers/phy/mediatek/phy-mtk-mipi*
6303
6304 DRM DRIVERS FOR NVIDIA TEGRA
6305 M:      Thierry Reding <thierry.reding@gmail.com>
6306 L:      dri-devel@lists.freedesktop.org
6307 L:      linux-tegra@vger.kernel.org
6308 S:      Supported
6309 T:      git git://anongit.freedesktop.org/tegra/linux.git
6310 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6311 F:      drivers/gpu/drm/tegra/
6312 F:      drivers/gpu/host1x/
6313 F:      include/linux/host1x.h
6314 F:      include/uapi/drm/tegra_drm.h
6315
6316 DRM DRIVERS FOR RENESAS
6317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6318 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6319 L:      dri-devel@lists.freedesktop.org
6320 L:      linux-renesas-soc@vger.kernel.org
6321 S:      Supported
6322 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6323 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6324 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6325 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6326 F:      drivers/gpu/drm/rcar-du/
6327 F:      drivers/gpu/drm/shmobile/
6328 F:      include/linux/platform_data/shmob_drm.h
6329
6330 DRM DRIVERS FOR ROCKCHIP
6331 M:      Sandy Huang <hjc@rock-chips.com>
6332 M:      Heiko Stübner <heiko@sntech.de>
6333 L:      dri-devel@lists.freedesktop.org
6334 S:      Maintained
6335 T:      git git://anongit.freedesktop.org/drm/drm-misc
6336 F:      Documentation/devicetree/bindings/display/rockchip/
6337 F:      drivers/gpu/drm/rockchip/
6338
6339 DRM DRIVERS FOR STI
6340 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6341 L:      dri-devel@lists.freedesktop.org
6342 S:      Maintained
6343 T:      git git://anongit.freedesktop.org/drm/drm-misc
6344 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6345 F:      drivers/gpu/drm/sti
6346
6347 DRM DRIVERS FOR STM
6348 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6349 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6350 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6351 L:      dri-devel@lists.freedesktop.org
6352 S:      Maintained
6353 T:      git git://anongit.freedesktop.org/drm/drm-misc
6354 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6355 F:      drivers/gpu/drm/stm
6356
6357 DRM DRIVERS FOR TI KEYSTONE
6358 M:      Jyri Sarha <jyri.sarha@iki.fi>
6359 M:      Tomi Valkeinen <tomba@kernel.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/ti/ti,am65x-dss.yaml
6364 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6365 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6366 F:      drivers/gpu/drm/tidss/
6367
6368 DRM DRIVERS FOR TI LCDC
6369 M:      Jyri Sarha <jyri.sarha@iki.fi>
6370 R:      Tomi Valkeinen <tomba@kernel.org>
6371 L:      dri-devel@lists.freedesktop.org
6372 S:      Maintained
6373 F:      Documentation/devicetree/bindings/display/tilcdc/
6374 F:      drivers/gpu/drm/tilcdc/
6375
6376 DRM DRIVERS FOR TI OMAP
6377 M:      Tomi Valkeinen <tomba@kernel.org>
6378 L:      dri-devel@lists.freedesktop.org
6379 S:      Maintained
6380 F:      Documentation/devicetree/bindings/display/ti/
6381 F:      drivers/gpu/drm/omapdrm/
6382
6383 DRM DRIVERS FOR V3D
6384 M:      Emma Anholt <emma@anholt.net>
6385 S:      Supported
6386 T:      git git://anongit.freedesktop.org/drm/drm-misc
6387 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6388 F:      drivers/gpu/drm/v3d/
6389 F:      include/uapi/drm/v3d_drm.h
6390
6391 DRM DRIVERS FOR VC4
6392 M:      Emma Anholt <emma@anholt.net>
6393 M:      Maxime Ripard <mripard@kernel.org>
6394 S:      Supported
6395 T:      git git://github.com/anholt/linux
6396 T:      git git://anongit.freedesktop.org/drm/drm-misc
6397 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6398 F:      drivers/gpu/drm/vc4/
6399 F:      include/uapi/drm/vc4_drm.h
6400
6401 DRM DRIVERS FOR VIVANTE GPU IP
6402 M:      Lucas Stach <l.stach@pengutronix.de>
6403 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6404 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6405 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6406 L:      dri-devel@lists.freedesktop.org
6407 S:      Maintained
6408 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6409 F:      drivers/gpu/drm/etnaviv/
6410 F:      include/uapi/drm/etnaviv_drm.h
6411
6412 DRM DRIVERS FOR XEN
6413 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6414 L:      dri-devel@lists.freedesktop.org
6415 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6416 S:      Supported
6417 T:      git git://anongit.freedesktop.org/drm/drm-misc
6418 F:      Documentation/gpu/xen-front.rst
6419 F:      drivers/gpu/drm/xen/
6420
6421 DRM DRIVERS FOR XILINX
6422 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6423 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6424 L:      dri-devel@lists.freedesktop.org
6425 S:      Maintained
6426 T:      git git://anongit.freedesktop.org/drm/drm-misc
6427 F:      Documentation/devicetree/bindings/display/xlnx/
6428 F:      drivers/gpu/drm/xlnx/
6429
6430 DRM PANEL DRIVERS
6431 M:      Thierry Reding <thierry.reding@gmail.com>
6432 R:      Sam Ravnborg <sam@ravnborg.org>
6433 L:      dri-devel@lists.freedesktop.org
6434 S:      Maintained
6435 T:      git git://anongit.freedesktop.org/drm/drm-misc
6436 F:      Documentation/devicetree/bindings/display/panel/
6437 F:      drivers/gpu/drm/drm_panel.c
6438 F:      drivers/gpu/drm/panel/
6439 F:      include/drm/drm_panel.h
6440
6441 DRM TTM SUBSYSTEM
6442 M:      Christian Koenig <christian.koenig@amd.com>
6443 M:      Huang Rui <ray.huang@amd.com>
6444 L:      dri-devel@lists.freedesktop.org
6445 S:      Maintained
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 F:      drivers/gpu/drm/ttm/
6448 F:      include/drm/ttm/
6449
6450 DSBR100 USB FM RADIO DRIVER
6451 M:      Alexey Klimov <klimov.linux@gmail.com>
6452 L:      linux-media@vger.kernel.org
6453 S:      Maintained
6454 T:      git git://linuxtv.org/media_tree.git
6455 F:      drivers/media/radio/dsbr100.c
6456
6457 DT3155 MEDIA DRIVER
6458 M:      Hans Verkuil <hverkuil@xs4all.nl>
6459 L:      linux-media@vger.kernel.org
6460 S:      Odd Fixes
6461 W:      https://linuxtv.org
6462 T:      git git://linuxtv.org/media_tree.git
6463 F:      drivers/media/pci/dt3155/
6464
6465 DVB_USB_AF9015 MEDIA DRIVER
6466 M:      Antti Palosaari <crope@iki.fi>
6467 L:      linux-media@vger.kernel.org
6468 S:      Maintained
6469 W:      https://linuxtv.org
6470 W:      http://palosaari.fi/linux/
6471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6472 T:      git git://linuxtv.org/anttip/media_tree.git
6473 F:      drivers/media/usb/dvb-usb-v2/af9015*
6474
6475 DVB_USB_AF9035 MEDIA DRIVER
6476 M:      Antti Palosaari <crope@iki.fi>
6477 L:      linux-media@vger.kernel.org
6478 S:      Maintained
6479 W:      https://linuxtv.org
6480 W:      http://palosaari.fi/linux/
6481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6482 T:      git git://linuxtv.org/anttip/media_tree.git
6483 F:      drivers/media/usb/dvb-usb-v2/af9035*
6484
6485 DVB_USB_ANYSEE MEDIA DRIVER
6486 M:      Antti Palosaari <crope@iki.fi>
6487 L:      linux-media@vger.kernel.org
6488 S:      Maintained
6489 W:      https://linuxtv.org
6490 W:      http://palosaari.fi/linux/
6491 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6492 T:      git git://linuxtv.org/anttip/media_tree.git
6493 F:      drivers/media/usb/dvb-usb-v2/anysee*
6494
6495 DVB_USB_AU6610 MEDIA DRIVER
6496 M:      Antti Palosaari <crope@iki.fi>
6497 L:      linux-media@vger.kernel.org
6498 S:      Maintained
6499 W:      https://linuxtv.org
6500 W:      http://palosaari.fi/linux/
6501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6502 T:      git git://linuxtv.org/anttip/media_tree.git
6503 F:      drivers/media/usb/dvb-usb-v2/au6610*
6504
6505 DVB_USB_CE6230 MEDIA DRIVER
6506 M:      Antti Palosaari <crope@iki.fi>
6507 L:      linux-media@vger.kernel.org
6508 S:      Maintained
6509 W:      https://linuxtv.org
6510 W:      http://palosaari.fi/linux/
6511 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6512 T:      git git://linuxtv.org/anttip/media_tree.git
6513 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6514
6515 DVB_USB_CXUSB MEDIA DRIVER
6516 M:      Michael Krufky <mkrufky@linuxtv.org>
6517 L:      linux-media@vger.kernel.org
6518 S:      Maintained
6519 W:      https://linuxtv.org
6520 W:      http://github.com/mkrufky
6521 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6522 T:      git git://linuxtv.org/media_tree.git
6523 F:      drivers/media/usb/dvb-usb/cxusb*
6524
6525 DVB_USB_EC168 MEDIA DRIVER
6526 M:      Antti Palosaari <crope@iki.fi>
6527 L:      linux-media@vger.kernel.org
6528 S:      Maintained
6529 W:      https://linuxtv.org
6530 W:      http://palosaari.fi/linux/
6531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6532 T:      git git://linuxtv.org/anttip/media_tree.git
6533 F:      drivers/media/usb/dvb-usb-v2/ec168*
6534
6535 DVB_USB_GL861 MEDIA DRIVER
6536 M:      Antti Palosaari <crope@iki.fi>
6537 L:      linux-media@vger.kernel.org
6538 S:      Maintained
6539 W:      https://linuxtv.org
6540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6541 T:      git git://linuxtv.org/anttip/media_tree.git
6542 F:      drivers/media/usb/dvb-usb-v2/gl861*
6543
6544 DVB_USB_MXL111SF MEDIA DRIVER
6545 M:      Michael Krufky <mkrufky@linuxtv.org>
6546 L:      linux-media@vger.kernel.org
6547 S:      Maintained
6548 W:      https://linuxtv.org
6549 W:      http://github.com/mkrufky
6550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6551 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6552 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6553
6554 DVB_USB_RTL28XXU MEDIA DRIVER
6555 M:      Antti Palosaari <crope@iki.fi>
6556 L:      linux-media@vger.kernel.org
6557 S:      Maintained
6558 W:      https://linuxtv.org
6559 W:      http://palosaari.fi/linux/
6560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6561 T:      git git://linuxtv.org/anttip/media_tree.git
6562 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6563
6564 DVB_USB_V2 MEDIA DRIVER
6565 M:      Antti Palosaari <crope@iki.fi>
6566 L:      linux-media@vger.kernel.org
6567 S:      Maintained
6568 W:      https://linuxtv.org
6569 W:      http://palosaari.fi/linux/
6570 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6571 T:      git git://linuxtv.org/anttip/media_tree.git
6572 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6573 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6574
6575 DYNAMIC DEBUG
6576 M:      Jason Baron <jbaron@akamai.com>
6577 S:      Maintained
6578 F:      include/linux/dynamic_debug.h
6579 F:      lib/dynamic_debug.c
6580
6581 DYNAMIC INTERRUPT MODERATION
6582 M:      Tal Gilboa <talgi@nvidia.com>
6583 S:      Maintained
6584 F:      Documentation/networking/net_dim.rst
6585 F:      include/linux/dim.h
6586 F:      lib/dim/
6587
6588 DZ DECSTATION DZ11 SERIAL DRIVER
6589 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6590 S:      Maintained
6591 F:      drivers/tty/serial/dz.*
6592
6593 E3X0 POWER BUTTON DRIVER
6594 M:      Moritz Fischer <moritz.fischer@ettus.com>
6595 L:      usrp-users@lists.ettus.com
6596 S:      Supported
6597 W:      http://www.ettus.com
6598 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6599 F:      drivers/input/misc/e3x0-button.c
6600
6601 E4000 MEDIA DRIVER
6602 M:      Antti Palosaari <crope@iki.fi>
6603 L:      linux-media@vger.kernel.org
6604 S:      Maintained
6605 W:      https://linuxtv.org
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 F:      drivers/media/tuners/e4000*
6610
6611 EARTH_PT1 MEDIA DRIVER
6612 M:      Akihiro Tsukada <tskd08@gmail.com>
6613 L:      linux-media@vger.kernel.org
6614 S:      Odd Fixes
6615 F:      drivers/media/pci/pt1/
6616
6617 EARTH_PT3 MEDIA DRIVER
6618 M:      Akihiro Tsukada <tskd08@gmail.com>
6619 L:      linux-media@vger.kernel.org
6620 S:      Odd Fixes
6621 F:      drivers/media/pci/pt3/
6622
6623 EC100 MEDIA DRIVER
6624 M:      Antti Palosaari <crope@iki.fi>
6625 L:      linux-media@vger.kernel.org
6626 S:      Maintained
6627 W:      https://linuxtv.org
6628 W:      http://palosaari.fi/linux/
6629 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6630 T:      git git://linuxtv.org/anttip/media_tree.git
6631 F:      drivers/media/dvb-frontends/ec100*
6632
6633 ECRYPT FILE SYSTEM
6634 M:      Tyler Hicks <code@tyhicks.com>
6635 L:      ecryptfs@vger.kernel.org
6636 S:      Odd Fixes
6637 W:      http://ecryptfs.org
6638 W:      https://launchpad.net/ecryptfs
6639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6640 F:      Documentation/filesystems/ecryptfs.rst
6641 F:      fs/ecryptfs/
6642
6643 EDAC-AMD64
6644 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6645 L:      linux-edac@vger.kernel.org
6646 S:      Supported
6647 F:      drivers/edac/amd64_edac*
6648 F:      drivers/edac/mce_amd*
6649
6650 EDAC-ARMADA
6651 M:      Jan Luebbe <jlu@pengutronix.de>
6652 L:      linux-edac@vger.kernel.org
6653 S:      Maintained
6654 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6655 F:      drivers/edac/armada_xp_*
6656
6657 EDAC-AST2500
6658 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6659 S:      Supported
6660 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6661 F:      drivers/edac/aspeed_edac.c
6662
6663 EDAC-BLUEFIELD
6664 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6665 S:      Supported
6666 F:      drivers/edac/bluefield_edac.c
6667
6668 EDAC-CALXEDA
6669 M:      Andre Przywara <andre.przywara@arm.com>
6670 L:      linux-edac@vger.kernel.org
6671 S:      Maintained
6672 F:      drivers/edac/highbank*
6673
6674 EDAC-CAVIUM OCTEON
6675 M:      Ralf Baechle <ralf@linux-mips.org>
6676 L:      linux-edac@vger.kernel.org
6677 L:      linux-mips@vger.kernel.org
6678 S:      Supported
6679 F:      drivers/edac/octeon_edac*
6680
6681 EDAC-CAVIUM THUNDERX
6682 M:      Robert Richter <rric@kernel.org>
6683 L:      linux-edac@vger.kernel.org
6684 S:      Odd Fixes
6685 F:      drivers/edac/thunderx_edac*
6686
6687 EDAC-CORE
6688 M:      Borislav Petkov <bp@alien8.de>
6689 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6690 M:      Tony Luck <tony.luck@intel.com>
6691 R:      James Morse <james.morse@arm.com>
6692 R:      Robert Richter <rric@kernel.org>
6693 L:      linux-edac@vger.kernel.org
6694 S:      Supported
6695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6696 F:      Documentation/admin-guide/ras.rst
6697 F:      Documentation/driver-api/edac.rst
6698 F:      drivers/edac/
6699 F:      include/linux/edac.h
6700
6701 EDAC-DMC520
6702 M:      Lei Wang <lewan@microsoft.com>
6703 L:      linux-edac@vger.kernel.org
6704 S:      Supported
6705 F:      drivers/edac/dmc520_edac.c
6706
6707 EDAC-E752X
6708 M:      Mark Gross <mark.gross@intel.com>
6709 L:      linux-edac@vger.kernel.org
6710 S:      Maintained
6711 F:      drivers/edac/e752x_edac.c
6712
6713 EDAC-E7XXX
6714 L:      linux-edac@vger.kernel.org
6715 S:      Maintained
6716 F:      drivers/edac/e7xxx_edac.c
6717
6718 EDAC-FSL_DDR
6719 M:      York Sun <york.sun@nxp.com>
6720 L:      linux-edac@vger.kernel.org
6721 S:      Maintained
6722 F:      drivers/edac/fsl_ddr_edac.*
6723
6724 EDAC-GHES
6725 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6726 L:      linux-edac@vger.kernel.org
6727 S:      Maintained
6728 F:      drivers/edac/ghes_edac.c
6729
6730 EDAC-I10NM
6731 M:      Tony Luck <tony.luck@intel.com>
6732 L:      linux-edac@vger.kernel.org
6733 S:      Maintained
6734 F:      drivers/edac/i10nm_base.c
6735
6736 EDAC-I3000
6737 L:      linux-edac@vger.kernel.org
6738 S:      Orphan
6739 F:      drivers/edac/i3000_edac.c
6740
6741 EDAC-I5000
6742 L:      linux-edac@vger.kernel.org
6743 S:      Maintained
6744 F:      drivers/edac/i5000_edac.c
6745
6746 EDAC-I5400
6747 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6748 L:      linux-edac@vger.kernel.org
6749 S:      Maintained
6750 F:      drivers/edac/i5400_edac.c
6751
6752 EDAC-I7300
6753 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6754 L:      linux-edac@vger.kernel.org
6755 S:      Maintained
6756 F:      drivers/edac/i7300_edac.c
6757
6758 EDAC-I7CORE
6759 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6760 L:      linux-edac@vger.kernel.org
6761 S:      Maintained
6762 F:      drivers/edac/i7core_edac.c
6763
6764 EDAC-I82443BXGX
6765 M:      Tim Small <tim@buttersideup.com>
6766 L:      linux-edac@vger.kernel.org
6767 S:      Maintained
6768 F:      drivers/edac/i82443bxgx_edac.c
6769
6770 EDAC-I82975X
6771 M:      "Arvind R." <arvino55@gmail.com>
6772 L:      linux-edac@vger.kernel.org
6773 S:      Maintained
6774 F:      drivers/edac/i82975x_edac.c
6775
6776 EDAC-IE31200
6777 M:      Jason Baron <jbaron@akamai.com>
6778 L:      linux-edac@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/edac/ie31200_edac.c
6781
6782 EDAC-IGEN6
6783 M:      Tony Luck <tony.luck@intel.com>
6784 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6785 L:      linux-edac@vger.kernel.org
6786 S:      Maintained
6787 F:      drivers/edac/igen6_edac.c
6788
6789 EDAC-MPC85XX
6790 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6791 L:      linux-edac@vger.kernel.org
6792 S:      Maintained
6793 F:      drivers/edac/mpc85xx_edac.[ch]
6794
6795 EDAC-PASEMI
6796 M:      Egor Martovetsky <egor@pasemi.com>
6797 L:      linux-edac@vger.kernel.org
6798 S:      Maintained
6799 F:      drivers/edac/pasemi_edac.c
6800
6801 EDAC-PND2
6802 M:      Tony Luck <tony.luck@intel.com>
6803 L:      linux-edac@vger.kernel.org
6804 S:      Maintained
6805 F:      drivers/edac/pnd2_edac.[ch]
6806
6807 EDAC-QCOM
6808 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6809 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6810 L:      linux-arm-msm@vger.kernel.org
6811 L:      linux-edac@vger.kernel.org
6812 S:      Maintained
6813 F:      drivers/edac/qcom_edac.c
6814
6815 EDAC-R82600
6816 M:      Tim Small <tim@buttersideup.com>
6817 L:      linux-edac@vger.kernel.org
6818 S:      Maintained
6819 F:      drivers/edac/r82600_edac.c
6820
6821 EDAC-SBRIDGE
6822 M:      Tony Luck <tony.luck@intel.com>
6823 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6824 L:      linux-edac@vger.kernel.org
6825 S:      Maintained
6826 F:      drivers/edac/sb_edac.c
6827
6828 EDAC-SIFIVE
6829 M:      Yash Shah <yash.shah@sifive.com>
6830 L:      linux-edac@vger.kernel.org
6831 S:      Supported
6832 F:      drivers/edac/sifive_edac.c
6833
6834 EDAC-SKYLAKE
6835 M:      Tony Luck <tony.luck@intel.com>
6836 L:      linux-edac@vger.kernel.org
6837 S:      Maintained
6838 F:      drivers/edac/skx_*.[ch]
6839
6840 EDAC-TI
6841 M:      Tero Kristo <kristo@kernel.org>
6842 L:      linux-edac@vger.kernel.org
6843 S:      Odd Fixes
6844 F:      drivers/edac/ti_edac.c
6845
6846 EDIROL UA-101/UA-1000 DRIVER
6847 M:      Clemens Ladisch <clemens@ladisch.de>
6848 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6849 S:      Maintained
6850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6851 F:      sound/usb/misc/ua101.c
6852
6853 EFI TEST DRIVER
6854 M:      Ivan Hu <ivan.hu@canonical.com>
6855 M:      Ard Biesheuvel <ardb@kernel.org>
6856 L:      linux-efi@vger.kernel.org
6857 S:      Maintained
6858 F:      drivers/firmware/efi/test/
6859
6860 EFI VARIABLE FILESYSTEM
6861 M:      Matthew Garrett <matthew.garrett@nebula.com>
6862 M:      Jeremy Kerr <jk@ozlabs.org>
6863 M:      Ard Biesheuvel <ardb@kernel.org>
6864 L:      linux-efi@vger.kernel.org
6865 S:      Maintained
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6867 F:      fs/efivarfs/
6868
6869 EFIFB FRAMEBUFFER DRIVER
6870 M:      Peter Jones <pjones@redhat.com>
6871 L:      linux-fbdev@vger.kernel.org
6872 S:      Maintained
6873 F:      drivers/video/fbdev/efifb.c
6874
6875 EFS FILESYSTEM
6876 S:      Orphan
6877 W:      http://aeschi.ch.eu.org/efs/
6878 F:      fs/efs/
6879
6880 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6881 M:      Douglas Miller <dougmill@linux.ibm.com>
6882 L:      netdev@vger.kernel.org
6883 S:      Maintained
6884 F:      drivers/net/ethernet/ibm/ehea/
6885
6886 EM28XX VIDEO4LINUX DRIVER
6887 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6888 L:      linux-media@vger.kernel.org
6889 S:      Maintained
6890 W:      https://linuxtv.org
6891 T:      git git://linuxtv.org/media_tree.git
6892 F:      Documentation/admin-guide/media/em28xx*
6893 F:      drivers/media/usb/em28xx/
6894
6895 EMBEDDED LINUX
6896 M:      Matt Mackall <mpm@selenic.com>
6897 M:      David Woodhouse <dwmw2@infradead.org>
6898 L:      linux-embedded@vger.kernel.org
6899 S:      Maintained
6900
6901 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6902 M:      Adrian Hunter <adrian.hunter@intel.com>
6903 M:      Ritesh Harjani <riteshh@codeaurora.org>
6904 M:      Asutosh Das <asutoshd@codeaurora.org>
6905 L:      linux-mmc@vger.kernel.org
6906 S:      Maintained
6907 F:      drivers/mmc/host/cqhci*
6908
6909 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6910 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6911 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6912 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6913 L:      linux-scsi@vger.kernel.org
6914 S:      Supported
6915 W:      http://www.broadcom.com
6916 F:      drivers/scsi/be2iscsi/
6917
6918 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6919 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6920 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6921 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6922 L:      netdev@vger.kernel.org
6923 S:      Supported
6924 W:      http://www.emulex.com
6925 F:      drivers/net/ethernet/emulex/benet/
6926
6927 EMULEX ONECONNECT ROCE DRIVER
6928 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6929 L:      linux-rdma@vger.kernel.org
6930 S:      Odd Fixes
6931 W:      http://www.broadcom.com
6932 F:      drivers/infiniband/hw/ocrdma/
6933 F:      include/uapi/rdma/ocrdma-abi.h
6934
6935 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6936 M:      James Smart <james.smart@broadcom.com>
6937 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6938 L:      linux-scsi@vger.kernel.org
6939 S:      Supported
6940 W:      http://www.broadcom.com
6941 F:      drivers/scsi/lpfc/
6942
6943 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6944 M:      James Smart <james.smart@broadcom.com>
6945 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6946 L:      linux-scsi@vger.kernel.org
6947 L:      target-devel@vger.kernel.org
6948 S:      Supported
6949 W:      http://www.broadcom.com
6950 F:      drivers/scsi/elx/
6951
6952 ENE CB710 FLASH CARD READER DRIVER
6953 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
6954 S:      Maintained
6955 F:      drivers/misc/cb710/
6956 F:      drivers/mmc/host/cb710-mmc.*
6957 F:      include/linux/cb710.h
6958
6959 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
6960 M:      Maxim Levitsky <maximlevitsky@gmail.com>
6961 S:      Maintained
6962 F:      drivers/media/rc/ene_ir.*
6963
6964 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
6965 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
6966 L:      linuxppc-dev@lists.ozlabs.org
6967 S:      Maintained
6968 F:      drivers/tty/ehv_bytechan.c
6969
6970 EPSON S1D13XXX FRAMEBUFFER DRIVER
6971 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
6972 S:      Maintained
6973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
6974 F:      drivers/video/fbdev/s1d13xxxfb.c
6975 F:      include/video/s1d13xxxfb.h
6976
6977 EROFS FILE SYSTEM
6978 M:      Gao Xiang <xiang@kernel.org>
6979 M:      Chao Yu <chao@kernel.org>
6980 L:      linux-erofs@lists.ozlabs.org
6981 S:      Maintained
6982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
6983 F:      Documentation/filesystems/erofs.rst
6984 F:      fs/erofs/
6985 F:      include/trace/events/erofs.h
6986
6987 ERRSEQ ERROR TRACKING INFRASTRUCTURE
6988 M:      Jeff Layton <jlayton@kernel.org>
6989 S:      Maintained
6990 F:      include/linux/errseq.h
6991 F:      lib/errseq.c
6992
6993 ET131X NETWORK DRIVER
6994 M:      Mark Einon <mark.einon@gmail.com>
6995 S:      Odd Fixes
6996 F:      drivers/net/ethernet/agere/
6997
6998 ETAS ES58X CAN/USB DRIVER
6999 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7000 L:      linux-can@vger.kernel.org
7001 S:      Maintained
7002 F:      drivers/net/can/usb/etas_es58x/
7003
7004 ETHERNET BRIDGE
7005 M:      Roopa Prabhu <roopa@nvidia.com>
7006 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7007 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7008 L:      netdev@vger.kernel.org
7009 S:      Maintained
7010 W:      http://www.linuxfoundation.org/en/Net:Bridge
7011 F:      include/linux/netfilter_bridge/
7012 F:      net/bridge/
7013
7014 ETHERNET PHY LIBRARY
7015 M:      Andrew Lunn <andrew@lunn.ch>
7016 M:      Heiner Kallweit <hkallweit1@gmail.com>
7017 R:      Russell King <linux@armlinux.org.uk>
7018 L:      netdev@vger.kernel.org
7019 S:      Maintained
7020 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7021 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7022 F:      Documentation/devicetree/bindings/net/mdio*
7023 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7024 F:      Documentation/networking/phy.rst
7025 F:      drivers/net/mdio/
7026 F:      drivers/net/mdio/acpi_mdio.c
7027 F:      drivers/net/mdio/fwnode_mdio.c
7028 F:      drivers/net/mdio/of_mdio.c
7029 F:      drivers/net/pcs/
7030 F:      drivers/net/phy/
7031 F:      include/dt-bindings/net/qca-ar803x.h
7032 F:      include/linux/*mdio*.h
7033 F:      include/linux/mdio/*.h
7034 F:      include/linux/of_net.h
7035 F:      include/linux/phy.h
7036 F:      include/linux/phy_fixed.h
7037 F:      include/linux/platform_data/mdio-bcm-unimac.h
7038 F:      include/linux/platform_data/mdio-gpio.h
7039 F:      include/trace/events/mdio.h
7040 F:      include/uapi/linux/mdio.h
7041 F:      include/uapi/linux/mii.h
7042 F:      net/core/of_net.c
7043
7044 EXFAT FILE SYSTEM
7045 M:      Namjae Jeon <linkinjeon@kernel.org>
7046 M:      Sungjong Seo <sj1557.seo@samsung.com>
7047 L:      linux-fsdevel@vger.kernel.org
7048 S:      Maintained
7049 F:      fs/exfat/
7050
7051 EXT2 FILE SYSTEM
7052 M:      Jan Kara <jack@suse.com>
7053 L:      linux-ext4@vger.kernel.org
7054 S:      Maintained
7055 F:      Documentation/filesystems/ext2.rst
7056 F:      fs/ext2/
7057 F:      include/linux/ext2*
7058
7059 EXT4 FILE SYSTEM
7060 M:      "Theodore Ts'o" <tytso@mit.edu>
7061 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7062 L:      linux-ext4@vger.kernel.org
7063 S:      Maintained
7064 W:      http://ext4.wiki.kernel.org
7065 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7067 F:      Documentation/filesystems/ext4/
7068 F:      fs/ext4/
7069 F:      include/trace/events/ext4.h
7070
7071 Extended Verification Module (EVM)
7072 M:      Mimi Zohar <zohar@linux.ibm.com>
7073 L:      linux-integrity@vger.kernel.org
7074 S:      Supported
7075 F:      security/integrity/evm/
7076
7077 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7078 M:      Ard Biesheuvel <ardb@kernel.org>
7079 L:      linux-efi@vger.kernel.org
7080 S:      Maintained
7081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7082 F:      Documentation/admin-guide/efi-stub.rst
7083 F:      arch/*/include/asm/efi.h
7084 F:      arch/*/kernel/efi.c
7085 F:      arch/arm/boot/compressed/efi-header.S
7086 F:      arch/arm64/kernel/efi-entry.S
7087 F:      arch/x86/platform/efi/
7088 F:      drivers/firmware/efi/
7089 F:      include/linux/efi*.h
7090
7091 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7092 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7093 M:      Chanwoo Choi <cw00.choi@samsung.com>
7094 L:      linux-kernel@vger.kernel.org
7095 S:      Maintained
7096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7097 F:      Documentation/devicetree/bindings/extcon/
7098 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7099 F:      drivers/extcon/
7100 F:      include/linux/extcon.h
7101 F:      include/linux/extcon/
7102
7103 EXTRA BOOT CONFIG
7104 M:      Masami Hiramatsu <mhiramat@kernel.org>
7105 S:      Maintained
7106 F:      Documentation/admin-guide/bootconfig.rst
7107 F:      fs/proc/bootconfig.c
7108 F:      include/linux/bootconfig.h
7109 F:      lib/bootconfig.c
7110 F:      tools/bootconfig/*
7111 F:      tools/bootconfig/scripts/*
7112
7113 EXYNOS DP DRIVER
7114 M:      Jingoo Han <jingoohan1@gmail.com>
7115 L:      dri-devel@lists.freedesktop.org
7116 S:      Maintained
7117 F:      drivers/gpu/drm/exynos/exynos_dp*
7118
7119 EXYNOS SYSMMU (IOMMU) driver
7120 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7121 L:      iommu@lists.linux-foundation.org
7122 L:      iommu@lists.linux.dev
7123 S:      Maintained
7124 F:      drivers/iommu/exynos-iommu.c
7125
7126 F2FS FILE SYSTEM
7127 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7128 M:      Chao Yu <chao@kernel.org>
7129 L:      linux-f2fs-devel@lists.sourceforge.net
7130 S:      Maintained
7131 W:      https://f2fs.wiki.kernel.org/
7132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7133 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7134 F:      Documentation/filesystems/f2fs.rst
7135 F:      fs/f2fs/
7136 F:      include/linux/f2fs_fs.h
7137 F:      include/trace/events/f2fs.h
7138 F:      include/uapi/linux/f2fs.h
7139
7140 F71805F HARDWARE MONITORING DRIVER
7141 M:      Jean Delvare <jdelvare@suse.com>
7142 L:      linux-hwmon@vger.kernel.org
7143 S:      Maintained
7144 F:      Documentation/hwmon/f71805f.rst
7145 F:      drivers/hwmon/f71805f.c
7146
7147 FADDR2LINE
7148 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7149 S:      Maintained
7150 F:      scripts/faddr2line
7151
7152 FAILOVER MODULE
7153 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7154 L:      netdev@vger.kernel.org
7155 S:      Supported
7156 F:      Documentation/networking/failover.rst
7157 F:      include/net/failover.h
7158 F:      net/core/failover.c
7159
7160 FANOTIFY
7161 M:      Jan Kara <jack@suse.cz>
7162 R:      Amir Goldstein <amir73il@gmail.com>
7163 R:      Matthew Bobrowski <repnop@google.com>
7164 L:      linux-fsdevel@vger.kernel.org
7165 S:      Maintained
7166 F:      fs/notify/fanotify/
7167 F:      include/linux/fanotify.h
7168 F:      include/uapi/linux/fanotify.h
7169
7170 FARSYNC SYNCHRONOUS DRIVER
7171 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7172 S:      Supported
7173 W:      http://www.farsite.co.uk/
7174 F:      drivers/net/wan/farsync.*
7175
7176 FAULT INJECTION SUPPORT
7177 M:      Akinobu Mita <akinobu.mita@gmail.com>
7178 S:      Supported
7179 F:      Documentation/fault-injection/
7180 F:      lib/fault-inject.c
7181
7182 FBTFT Framebuffer drivers
7183 L:      dri-devel@lists.freedesktop.org
7184 L:      linux-fbdev@vger.kernel.org
7185 S:      Orphan
7186 F:      drivers/staging/fbtft/
7187
7188 FC0011 TUNER DRIVER
7189 M:      Michael Buesch <m@bues.ch>
7190 L:      linux-media@vger.kernel.org
7191 S:      Maintained
7192 F:      drivers/media/tuners/fc0011.c
7193 F:      drivers/media/tuners/fc0011.h
7194
7195 FC2580 MEDIA DRIVER
7196 M:      Antti Palosaari <crope@iki.fi>
7197 L:      linux-media@vger.kernel.org
7198 S:      Maintained
7199 W:      https://linuxtv.org
7200 W:      http://palosaari.fi/linux/
7201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7202 T:      git git://linuxtv.org/anttip/media_tree.git
7203 F:      drivers/media/tuners/fc2580*
7204
7205 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7206 M:      Hannes Reinecke <hare@suse.de>
7207 L:      linux-scsi@vger.kernel.org
7208 S:      Supported
7209 W:      www.Open-FCoE.org
7210 F:      drivers/scsi/fcoe/
7211 F:      drivers/scsi/libfc/
7212 F:      include/scsi/fc/
7213 F:      include/scsi/libfc.h
7214 F:      include/scsi/libfcoe.h
7215 F:      include/uapi/scsi/fc/
7216
7217 FILE LOCKING (flock() and fcntl()/lockf())
7218 M:      Jeff Layton <jlayton@kernel.org>
7219 M:      "J. Bruce Fields" <bfields@fieldses.org>
7220 L:      linux-fsdevel@vger.kernel.org
7221 S:      Maintained
7222 F:      fs/fcntl.c
7223 F:      fs/locks.c
7224 F:      include/linux/fcntl.h
7225 F:      include/uapi/linux/fcntl.h
7226
7227 FILESYSTEM DIRECT ACCESS (DAX)
7228 M:      Dan Williams <dan.j.williams@intel.com>
7229 R:      Matthew Wilcox <willy@infradead.org>
7230 R:      Jan Kara <jack@suse.cz>
7231 L:      linux-fsdevel@vger.kernel.org
7232 L:      nvdimm@lists.linux.dev
7233 S:      Supported
7234 F:      fs/dax.c
7235 F:      include/linux/dax.h
7236 F:      include/trace/events/fs_dax.h
7237
7238 FILESYSTEMS (VFS and infrastructure)
7239 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7240 L:      linux-fsdevel@vger.kernel.org
7241 S:      Maintained
7242 F:      fs/*
7243 F:      include/linux/fs.h
7244 F:      include/linux/fs_types.h
7245 F:      include/uapi/linux/fs.h
7246 F:      include/uapi/linux/openat2.h
7247 X:      fs/io-wq.c
7248 X:      fs/io-wq.h
7249 X:      fs/io_uring.c
7250
7251 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7252 M:      Riku Voipio <riku.voipio@iki.fi>
7253 L:      linux-hwmon@vger.kernel.org
7254 S:      Maintained
7255 F:      drivers/hwmon/f75375s.c
7256 F:      include/linux/f75375s.h
7257
7258 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7259 M:      Clemens Ladisch <clemens@ladisch.de>
7260 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7261 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7262 S:      Maintained
7263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7264 F:      include/uapi/sound/firewire.h
7265 F:      sound/firewire/
7266
7267 FIREWIRE MEDIA DRIVERS (firedtv)
7268 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7269 L:      linux-media@vger.kernel.org
7270 L:      linux1394-devel@lists.sourceforge.net
7271 S:      Maintained
7272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7273 F:      drivers/media/firewire/
7274
7275 FIREWIRE SBP-2 TARGET
7276 M:      Chris Boot <bootc@bootc.net>
7277 L:      linux-scsi@vger.kernel.org
7278 L:      target-devel@vger.kernel.org
7279 L:      linux1394-devel@lists.sourceforge.net
7280 S:      Maintained
7281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7282 F:      drivers/target/sbp/
7283
7284 FIREWIRE SUBSYSTEM
7285 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7286 L:      linux1394-devel@lists.sourceforge.net
7287 S:      Maintained
7288 W:      http://ieee1394.wiki.kernel.org/
7289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7290 F:      drivers/firewire/
7291 F:      include/linux/firewire.h
7292 F:      include/uapi/linux/firewire*.h
7293 F:      tools/firewire/
7294
7295 FIRMWARE FRAMEWORK FOR ARMV8-A
7296 M:      Sudeep Holla <sudeep.holla@arm.com>
7297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7298 S:      Maintained
7299 F:      drivers/firmware/arm_ffa/
7300 F:      include/linux/arm_ffa.h
7301
7302 FIRMWARE LOADER (request_firmware)
7303 M:      Luis Chamberlain <mcgrof@kernel.org>
7304 L:      linux-kernel@vger.kernel.org
7305 S:      Maintained
7306 F:      Documentation/firmware_class/
7307 F:      drivers/base/firmware_loader/
7308 F:      include/linux/firmware.h
7309
7310 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7311 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7312 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7313 S:      Maintained
7314 F:      drivers/block/rsxx/
7315
7316 FLEXTIMER FTM-QUADDEC DRIVER
7317 M:      Patrick Havelange <patrick.havelange@essensium.com>
7318 L:      linux-iio@vger.kernel.org
7319 S:      Maintained
7320 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7321 F:      drivers/counter/ftm-quaddec.c
7322
7323 FLOPPY DRIVER
7324 M:      Denis Efremov <efremov@linux.com>
7325 L:      linux-block@vger.kernel.org
7326 S:      Odd Fixes
7327 F:      drivers/block/floppy.c
7328
7329 FLYSKY FSIA6B RC RECEIVER
7330 M:      Markus Koch <markus@notsyncing.net>
7331 L:      linux-input@vger.kernel.org
7332 S:      Maintained
7333 F:      drivers/input/joystick/fsia6b.c
7334
7335 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7336 M:      Geoffrey D. Bennett <g@b4.vu>
7337 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7338 S:      Maintained
7339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7340 F:      sound/usb/mixer_scarlett_gen2.c
7341
7342 FORCEDETH GIGABIT ETHERNET DRIVER
7343 M:      Rain River <rain.1986.08.12@gmail.com>
7344 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7345 L:      netdev@vger.kernel.org
7346 S:      Maintained
7347 F:      drivers/net/ethernet/nvidia/*
7348
7349 FPGA DFL DRIVERS
7350 M:      Wu Hao <hao.wu@intel.com>
7351 R:      Tom Rix <trix@redhat.com>
7352 L:      linux-fpga@vger.kernel.org
7353 S:      Maintained
7354 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7355 F:      Documentation/fpga/dfl.rst
7356 F:      drivers/fpga/dfl*
7357 F:      drivers/uio/uio_dfl.c
7358 F:      include/linux/dfl.h
7359 F:      include/uapi/linux/fpga-dfl.h
7360
7361 FPGA MANAGER FRAMEWORK
7362 M:      Moritz Fischer <mdf@kernel.org>
7363 M:      Wu Hao <hao.wu@intel.com>
7364 M:      Xu Yilun <yilun.xu@intel.com>
7365 R:      Tom Rix <trix@redhat.com>
7366 L:      linux-fpga@vger.kernel.org
7367 S:      Maintained
7368 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7370 F:      Documentation/devicetree/bindings/fpga/
7371 F:      Documentation/driver-api/fpga/
7372 F:      Documentation/fpga/
7373 F:      drivers/fpga/
7374 F:      include/linux/fpga/
7375
7376 FPU EMULATOR
7377 M:      Bill Metzenthen <billm@melbpc.org.au>
7378 S:      Maintained
7379 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7380 F:      arch/x86/math-emu/
7381
7382 FRAMEBUFFER LAYER
7383 L:      dri-devel@lists.freedesktop.org
7384 L:      linux-fbdev@vger.kernel.org
7385 S:      Orphan
7386 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7387 T:      git git://anongit.freedesktop.org/drm/drm-misc
7388 F:      Documentation/fb/
7389 F:      drivers/video/
7390 F:      include/linux/fb.h
7391 F:      include/uapi/linux/fb.h
7392 F:      include/uapi/video/
7393 F:      include/video/
7394
7395 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7396 M:      Horia Geantă <horia.geanta@nxp.com>
7397 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7398 L:      linux-crypto@vger.kernel.org
7399 S:      Maintained
7400 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7401 F:      drivers/crypto/caam/
7402
7403 FREESCALE COLDFIRE M5441X MMC DRIVER
7404 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7405 L:      linux-mmc@vger.kernel.org
7406 S:      Maintained
7407 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7408 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7409
7410 FREESCALE DIU FRAMEBUFFER DRIVER
7411 M:      Timur Tabi <timur@kernel.org>
7412 L:      linux-fbdev@vger.kernel.org
7413 S:      Maintained
7414 F:      drivers/video/fbdev/fsl-diu-fb.*
7415
7416 FREESCALE DMA DRIVER
7417 M:      Li Yang <leoyang.li@nxp.com>
7418 M:      Zhang Wei <zw@zh-kernel.org>
7419 L:      linuxppc-dev@lists.ozlabs.org
7420 S:      Maintained
7421 F:      drivers/dma/fsldma.*
7422
7423 FREESCALE DSPI DRIVER
7424 M:      Vladimir Oltean <olteanv@gmail.com>
7425 L:      linux-spi@vger.kernel.org
7426 S:      Maintained
7427 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7428 F:      drivers/spi/spi-fsl-dspi.c
7429 F:      include/linux/spi/spi-fsl-dspi.h
7430
7431 FREESCALE ENETC ETHERNET DRIVERS
7432 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7433 L:      netdev@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/net/ethernet/freescale/enetc/
7436
7437 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7438 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7439 L:      netdev@vger.kernel.org
7440 S:      Maintained
7441 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7442 F:      drivers/net/ethernet/freescale/gianfar*
7443
7444 FREESCALE GPMI NAND DRIVER
7445 M:      Han Xu <han.xu@nxp.com>
7446 L:      linux-mtd@lists.infradead.org
7447 S:      Maintained
7448 F:      drivers/mtd/nand/raw/gpmi-nand/*
7449
7450 FREESCALE I2C CPM DRIVER
7451 M:      Jochen Friedrich <jochen@scram.de>
7452 L:      linuxppc-dev@lists.ozlabs.org
7453 L:      linux-i2c@vger.kernel.org
7454 S:      Maintained
7455 F:      drivers/i2c/busses/i2c-cpm.c
7456
7457 FREESCALE IMX / MXC FEC DRIVER
7458 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7459 L:      netdev@vger.kernel.org
7460 S:      Maintained
7461 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7462 F:      drivers/net/ethernet/freescale/fec.h
7463 F:      drivers/net/ethernet/freescale/fec_main.c
7464 F:      drivers/net/ethernet/freescale/fec_ptp.c
7465
7466 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7467 M:      Sascha Hauer <s.hauer@pengutronix.de>
7468 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7469 L:      linux-fbdev@vger.kernel.org
7470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7471 S:      Maintained
7472 F:      drivers/video/fbdev/imxfb.c
7473 F:      include/linux/platform_data/video-imxfb.h
7474
7475 FREESCALE IMX DDR PMU DRIVER
7476 M:      Frank Li <Frank.li@nxp.com>
7477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7478 S:      Maintained
7479 F:      Documentation/admin-guide/perf/imx-ddr.rst
7480 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7481 F:      drivers/perf/fsl_imx8_ddr_perf.c
7482
7483 FREESCALE IMX I2C DRIVER
7484 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7485 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7486 L:      linux-i2c@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7489 F:      drivers/i2c/busses/i2c-imx.c
7490
7491 FREESCALE IMX LPI2C DRIVER
7492 M:      Dong Aisheng <aisheng.dong@nxp.com>
7493 L:      linux-i2c@vger.kernel.org
7494 L:      linux-imx@nxp.com
7495 S:      Maintained
7496 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7497 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7498
7499 FREESCALE MPC I2C DRIVER
7500 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7501 L:      linux-i2c@vger.kernel.org
7502 S:      Maintained
7503 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7504 F:      drivers/i2c/busses/i2c-mpc.c
7505
7506 FREESCALE QORIQ DPAA ETHERNET DRIVER
7507 M:      Madalin Bucur <madalin.bucur@nxp.com>
7508 L:      netdev@vger.kernel.org
7509 S:      Maintained
7510 F:      drivers/net/ethernet/freescale/dpaa
7511
7512 FREESCALE QORIQ DPAA FMAN DRIVER
7513 M:      Madalin Bucur <madalin.bucur@nxp.com>
7514 L:      netdev@vger.kernel.org
7515 S:      Maintained
7516 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7517 F:      drivers/net/ethernet/freescale/fman
7518
7519 FREESCALE QORIQ PTP CLOCK DRIVER
7520 M:      Yangbo Lu <yangbo.lu@nxp.com>
7521 L:      netdev@vger.kernel.org
7522 S:      Maintained
7523 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7524 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7525 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7526 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7527 F:      drivers/ptp/ptp_qoriq.c
7528 F:      drivers/ptp/ptp_qoriq_debugfs.c
7529 F:      include/linux/fsl/ptp_qoriq.h
7530
7531 FREESCALE QUAD SPI DRIVER
7532 M:      Han Xu <han.xu@nxp.com>
7533 L:      linux-spi@vger.kernel.org
7534 S:      Maintained
7535 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7536 F:      drivers/spi/spi-fsl-qspi.c
7537
7538 FREESCALE QUICC ENGINE LIBRARY
7539 M:      Qiang Zhao <qiang.zhao@nxp.com>
7540 L:      linuxppc-dev@lists.ozlabs.org
7541 S:      Maintained
7542 F:      drivers/soc/fsl/qe/
7543 F:      include/soc/fsl/*qe*.h
7544 F:      include/soc/fsl/*ucc*.h
7545
7546 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7547 M:      Li Yang <leoyang.li@nxp.com>
7548 L:      netdev@vger.kernel.org
7549 L:      linuxppc-dev@lists.ozlabs.org
7550 S:      Maintained
7551 F:      drivers/net/ethernet/freescale/ucc_geth*
7552
7553 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7554 M:      Zhao Qiang <qiang.zhao@nxp.com>
7555 L:      netdev@vger.kernel.org
7556 L:      linuxppc-dev@lists.ozlabs.org
7557 S:      Maintained
7558 F:      drivers/net/wan/fsl_ucc_hdlc*
7559
7560 FREESCALE QUICC ENGINE UCC UART DRIVER
7561 M:      Timur Tabi <timur@kernel.org>
7562 L:      linuxppc-dev@lists.ozlabs.org
7563 S:      Maintained
7564 F:      drivers/tty/serial/ucc_uart.c
7565
7566 FREESCALE SOC DRIVERS
7567 M:      Li Yang <leoyang.li@nxp.com>
7568 L:      linuxppc-dev@lists.ozlabs.org
7569 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7570 S:      Maintained
7571 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7572 F:      Documentation/devicetree/bindings/soc/fsl/
7573 F:      drivers/soc/fsl/
7574 F:      include/linux/fsl/
7575
7576 FREESCALE SOC FS_ENET DRIVER
7577 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7578 L:      linuxppc-dev@lists.ozlabs.org
7579 L:      netdev@vger.kernel.org
7580 S:      Maintained
7581 F:      drivers/net/ethernet/freescale/fs_enet/
7582 F:      include/linux/fs_enet_pd.h
7583
7584 FREESCALE SOC SOUND DRIVERS
7585 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7586 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7587 R:      Fabio Estevam <festevam@gmail.com>
7588 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7590 L:      linuxppc-dev@lists.ozlabs.org
7591 S:      Maintained
7592 F:      sound/soc/fsl/fsl*
7593 F:      sound/soc/fsl/imx*
7594 F:      sound/soc/fsl/mpc8610_hpcd.c
7595
7596 FREESCALE USB PERIPHERAL DRIVERS
7597 M:      Li Yang <leoyang.li@nxp.com>
7598 L:      linux-usb@vger.kernel.org
7599 L:      linuxppc-dev@lists.ozlabs.org
7600 S:      Maintained
7601 F:      drivers/usb/gadget/udc/fsl*
7602
7603 FREESCALE USB PHY DRIVER
7604 M:      Ran Wang <ran.wang_1@nxp.com>
7605 L:      linux-usb@vger.kernel.org
7606 L:      linuxppc-dev@lists.ozlabs.org
7607 S:      Maintained
7608 F:      drivers/usb/phy/phy-fsl-usb*
7609
7610 FREEVXFS FILESYSTEM
7611 M:      Christoph Hellwig <hch@infradead.org>
7612 S:      Maintained
7613 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7614 F:      fs/freevxfs/
7615
7616 FREEZER
7617 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7618 M:      Pavel Machek <pavel@ucw.cz>
7619 L:      linux-pm@vger.kernel.org
7620 S:      Supported
7621 F:      Documentation/power/freezing-of-tasks.rst
7622 F:      include/linux/freezer.h
7623 F:      kernel/freezer.c
7624
7625 FRONTSWAP API
7626 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7627 L:      linux-kernel@vger.kernel.org
7628 S:      Maintained
7629 F:      include/linux/frontswap.h
7630 F:      mm/frontswap.c
7631
7632 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7633 M:      David Howells <dhowells@redhat.com>
7634 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7635 S:      Supported
7636 F:      Documentation/filesystems/caching/
7637 F:      fs/fscache/
7638 F:      include/linux/fscache*.h
7639
7640 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7641 M:      Theodore Y. Ts'o <tytso@mit.edu>
7642 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7643 M:      Eric Biggers <ebiggers@kernel.org>
7644 L:      linux-fscrypt@vger.kernel.org
7645 S:      Supported
7646 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7647 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7648 F:      Documentation/filesystems/fscrypt.rst
7649 F:      fs/crypto/
7650 F:      include/linux/fscrypt*.h
7651 F:      include/uapi/linux/fscrypt.h
7652
7653 FSI SUBSYSTEM
7654 M:      Jeremy Kerr <jk@ozlabs.org>
7655 M:      Joel Stanley <joel@jms.id.au>
7656 R:      Alistar Popple <alistair@popple.id.au>
7657 R:      Eddie James <eajames@linux.ibm.com>
7658 L:      linux-fsi@lists.ozlabs.org
7659 S:      Supported
7660 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7662 F:      drivers/fsi/
7663 F:      include/linux/fsi*.h
7664 F:      include/trace/events/fsi*.h
7665
7666 FSI-ATTACHED I2C DRIVER
7667 M:      Eddie James <eajames@linux.ibm.com>
7668 L:      linux-i2c@vger.kernel.org
7669 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7670 S:      Maintained
7671 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7672 F:      drivers/i2c/busses/i2c-fsi.c
7673
7674 FSI-ATTACHED SPI DRIVER
7675 M:      Eddie James <eajames@linux.ibm.com>
7676 L:      linux-spi@vger.kernel.org
7677 S:      Maintained
7678 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7679 F:      drivers/spi/spi-fsi.c
7680
7681 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7682 M:      Jan Kara <jack@suse.cz>
7683 R:      Amir Goldstein <amir73il@gmail.com>
7684 L:      linux-fsdevel@vger.kernel.org
7685 S:      Maintained
7686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7687 F:      fs/notify/
7688 F:      include/linux/fsnotify*.h
7689
7690 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7691 M:      Eric Biggers <ebiggers@kernel.org>
7692 M:      Theodore Y. Ts'o <tytso@mit.edu>
7693 L:      linux-fscrypt@vger.kernel.org
7694 S:      Supported
7695 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7696 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7697 F:      Documentation/filesystems/fsverity.rst
7698 F:      fs/verity/
7699 F:      include/linux/fsverity.h
7700 F:      include/uapi/linux/fsverity.h
7701
7702 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7703 M:      Michael Zaidman <michael.zaidman@gmail.com>
7704 L:      linux-i2c@vger.kernel.org
7705 L:      linux-input@vger.kernel.org
7706 S:      Maintained
7707 F:      drivers/hid/hid-ft260.c
7708
7709 FUJITSU LAPTOP EXTRAS
7710 M:      Jonathan Woithe <jwoithe@just42.net>
7711 L:      platform-driver-x86@vger.kernel.org
7712 S:      Maintained
7713 F:      drivers/platform/x86/fujitsu-laptop.c
7714
7715 FUJITSU M-5MO LS CAMERA ISP DRIVER
7716 M:      Kyungmin Park <kyungmin.park@samsung.com>
7717 M:      Heungjun Kim <riverful.kim@samsung.com>
7718 L:      linux-media@vger.kernel.org
7719 S:      Maintained
7720 F:      drivers/media/i2c/m5mols/
7721 F:      include/media/i2c/m5mols.h
7722
7723 FUJITSU TABLET EXTRAS
7724 M:      Robert Gerlach <khnz@gmx.de>
7725 L:      platform-driver-x86@vger.kernel.org
7726 S:      Maintained
7727 F:      drivers/platform/x86/fujitsu-tablet.c
7728
7729 FUSE: FILESYSTEM IN USERSPACE
7730 M:      Miklos Szeredi <miklos@szeredi.hu>
7731 L:      linux-fsdevel@vger.kernel.org
7732 S:      Maintained
7733 W:      https://github.com/libfuse/
7734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7735 F:      Documentation/filesystems/fuse.rst
7736 F:      fs/fuse/
7737 F:      include/uapi/linux/fuse.h
7738
7739 FUTEX SUBSYSTEM
7740 M:      Thomas Gleixner <tglx@linutronix.de>
7741 M:      Ingo Molnar <mingo@redhat.com>
7742 R:      Peter Zijlstra <peterz@infradead.org>
7743 R:      Darren Hart <dvhart@infradead.org>
7744 R:      Davidlohr Bueso <dave@stgolabs.net>
7745 L:      linux-kernel@vger.kernel.org
7746 S:      Maintained
7747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7748 F:      Documentation/locking/*futex*
7749 F:      include/asm-generic/futex.h
7750 F:      include/linux/futex.h
7751 F:      include/uapi/linux/futex.h
7752 F:      kernel/futex.c
7753 F:      tools/perf/bench/futex*
7754 F:      tools/testing/selftests/futex/
7755
7756 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7757 M:      Tim Harvey <tharvey@gateworks.com>
7758 M:      Robert Jones <rjones@gateworks.com>
7759 S:      Maintained
7760 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7761 F:      drivers/mfd/gateworks-gsc.c
7762 F:      include/linux/mfd/gsc.h
7763 F:      Documentation/hwmon/gsc-hwmon.rst
7764 F:      drivers/hwmon/gsc-hwmon.c
7765 F:      include/linux/platform_data/gsc_hwmon.h
7766
7767 GCC PLUGINS
7768 M:      Kees Cook <keescook@chromium.org>
7769 L:      linux-hardening@vger.kernel.org
7770 S:      Maintained
7771 F:      Documentation/kbuild/gcc-plugins.rst
7772 F:      scripts/Makefile.gcc-plugins
7773 F:      scripts/gcc-plugins/
7774
7775 GCOV BASED KERNEL PROFILING
7776 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7777 S:      Maintained
7778 F:      Documentation/dev-tools/gcov.rst
7779 F:      kernel/gcov/
7780
7781 GDB KERNEL DEBUGGING HELPER SCRIPTS
7782 M:      Jan Kiszka <jan.kiszka@siemens.com>
7783 M:      Kieran Bingham <kbingham@kernel.org>
7784 S:      Supported
7785 F:      scripts/gdb/
7786
7787 GEMINI CRYPTO DRIVER
7788 M:      Corentin Labbe <clabbe@baylibre.com>
7789 L:      linux-crypto@vger.kernel.org
7790 S:      Maintained
7791 F:      drivers/crypto/gemini/
7792
7793 GEMTEK FM RADIO RECEIVER DRIVER
7794 M:      Hans Verkuil <hverkuil@xs4all.nl>
7795 L:      linux-media@vger.kernel.org
7796 S:      Maintained
7797 W:      https://linuxtv.org
7798 T:      git git://linuxtv.org/media_tree.git
7799 F:      drivers/media/radio/radio-gemtek*
7800
7801 GENERIC ARCHITECTURE TOPOLOGY
7802 M:      Sudeep Holla <sudeep.holla@arm.com>
7803 L:      linux-kernel@vger.kernel.org
7804 S:      Maintained
7805 F:      drivers/base/arch_topology.c
7806 F:      include/linux/arch_topology.h
7807
7808 GENERIC ENTRY CODE
7809 M:      Thomas Gleixner <tglx@linutronix.de>
7810 M:      Peter Zijlstra <peterz@infradead.org>
7811 M:      Andy Lutomirski <luto@kernel.org>
7812 L:      linux-kernel@vger.kernel.org
7813 S:      Maintained
7814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7815 F:      include/linux/entry-common.h
7816 F:      include/linux/entry-kvm.h
7817 F:      kernel/entry/
7818
7819 GENERIC GPIO I2C DRIVER
7820 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7821 S:      Supported
7822 F:      drivers/i2c/busses/i2c-gpio.c
7823 F:      include/linux/platform_data/i2c-gpio.h
7824
7825 GENERIC GPIO I2C MULTIPLEXER DRIVER
7826 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7827 L:      linux-i2c@vger.kernel.org
7828 S:      Supported
7829 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7830 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7831 F:      include/linux/platform_data/i2c-mux-gpio.h
7832
7833 GENERIC HDLC (WAN) DRIVERS
7834 M:      Krzysztof Halasa <khc@pm.waw.pl>
7835 S:      Maintained
7836 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7837 F:      drivers/net/wan/c101.c
7838 F:      drivers/net/wan/hd6457*
7839 F:      drivers/net/wan/hdlc*
7840 F:      drivers/net/wan/n2.c
7841 F:      drivers/net/wan/pc300too.c
7842 F:      drivers/net/wan/pci200syn.c
7843 F:      drivers/net/wan/wanxl*
7844
7845 GENERIC INCLUDE/ASM HEADER FILES
7846 M:      Arnd Bergmann <arnd@arndb.de>
7847 L:      linux-arch@vger.kernel.org
7848 S:      Maintained
7849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7850 F:      include/asm-generic/
7851 F:      include/uapi/asm-generic/
7852
7853 GENERIC PHY FRAMEWORK
7854 M:      Kishon Vijay Abraham I <kishon@ti.com>
7855 M:      Vinod Koul <vkoul@kernel.org>
7856 L:      linux-phy@lists.infradead.org
7857 S:      Supported
7858 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7860 F:      Documentation/devicetree/bindings/phy/
7861 F:      drivers/phy/
7862 F:      include/linux/phy/
7863
7864 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7865 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7866 S:      Supported
7867 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7868
7869 GENERIC PM DOMAINS
7870 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7871 M:      Kevin Hilman <khilman@kernel.org>
7872 M:      Ulf Hansson <ulf.hansson@linaro.org>
7873 L:      linux-pm@vger.kernel.org
7874 S:      Supported
7875 F:      Documentation/devicetree/bindings/power/power?domain*
7876 F:      drivers/base/power/domain*.c
7877 F:      include/linux/pm_domain.h
7878
7879 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7880 M:      Eugen Hristev <eugen.hristev@microchip.com>
7881 L:      linux-input@vger.kernel.org
7882 S:      Maintained
7883 F:      drivers/input/touchscreen/resistive-adc-touch.c
7884
7885 GENERIC STRING LIBRARY
7886 R:      Andy Shevchenko <andy@kernel.org>
7887 S:      Maintained
7888 F:      lib/string.c
7889 F:      lib/string_helpers.c
7890 F:      lib/test_string.c
7891 F:      lib/test-string_helpers.c
7892
7893 GENERIC UIO DRIVER FOR PCI DEVICES
7894 M:      "Michael S. Tsirkin" <mst@redhat.com>
7895 L:      kvm@vger.kernel.org
7896 S:      Supported
7897 F:      drivers/uio/uio_pci_generic.c
7898
7899 GENERIC VDSO LIBRARY
7900 M:      Andy Lutomirski <luto@kernel.org>
7901 M:      Thomas Gleixner <tglx@linutronix.de>
7902 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7903 L:      linux-kernel@vger.kernel.org
7904 S:      Maintained
7905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7906 F:      include/asm-generic/vdso/vsyscall.h
7907 F:      include/vdso/
7908 F:      kernel/time/vsyscall.c
7909 F:      lib/vdso/
7910
7911 GENWQE (IBM Generic Workqueue Card)
7912 M:      Frank Haverkamp <haver@linux.ibm.com>
7913 S:      Supported
7914 F:      drivers/misc/genwqe/
7915
7916 GET_MAINTAINER SCRIPT
7917 M:      Joe Perches <joe@perches.com>
7918 S:      Maintained
7919 F:      scripts/get_maintainer.pl
7920
7921 GFS2 FILE SYSTEM
7922 M:      Bob Peterson <rpeterso@redhat.com>
7923 M:      Andreas Gruenbacher <agruenba@redhat.com>
7924 L:      cluster-devel@redhat.com
7925 S:      Supported
7926 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7928 F:      Documentation/filesystems/gfs2*
7929 F:      fs/gfs2/
7930 F:      include/uapi/linux/gfs2_ondisk.h
7931
7932 GIGABYTE WMI DRIVER
7933 M:      Thomas Weißschuh <thomas@weissschuh.net>
7934 L:      platform-driver-x86@vger.kernel.org
7935 S:      Maintained
7936 F:      drivers/platform/x86/gigabyte-wmi.c
7937
7938 GNSS SUBSYSTEM
7939 M:      Johan Hovold <johan@kernel.org>
7940 S:      Maintained
7941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7942 F:      Documentation/ABI/testing/sysfs-class-gnss
7943 F:      Documentation/devicetree/bindings/gnss/
7944 F:      drivers/gnss/
7945 F:      include/linux/gnss.h
7946
7947 GO7007 MPEG CODEC
7948 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7949 L:      linux-media@vger.kernel.org
7950 S:      Maintained
7951 F:      drivers/media/usb/go7007/
7952
7953 GOODIX TOUCHSCREEN
7954 M:      Bastien Nocera <hadess@hadess.net>
7955 M:      Hans de Goede <hdegoede@redhat.com>
7956 L:      linux-input@vger.kernel.org
7957 S:      Maintained
7958 F:      drivers/input/touchscreen/goodix*
7959
7960 GOOGLE ETHERNET DRIVERS
7961 M:      Jeroen de Borst <jeroendb@google.com>
7962 R:      Catherine Sullivan <csully@google.com>
7963 R:      David Awogbemila <awogbemila@google.com>
7964 L:      netdev@vger.kernel.org
7965 S:      Supported
7966 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
7967 F:      drivers/net/ethernet/google
7968
7969 GPD POCKET FAN DRIVER
7970 M:      Hans de Goede <hdegoede@redhat.com>
7971 L:      platform-driver-x86@vger.kernel.org
7972 S:      Maintained
7973 F:      drivers/platform/x86/gpd-pocket-fan.c
7974
7975 GPIO ACPI SUPPORT
7976 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
7977 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7978 L:      linux-gpio@vger.kernel.org
7979 L:      linux-acpi@vger.kernel.org
7980 S:      Maintained
7981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
7982 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
7983 F:      drivers/gpio/gpiolib-acpi.c
7984 F:      drivers/gpio/gpiolib-acpi.h
7985
7986 GPIO AGGREGATOR
7987 M:      Geert Uytterhoeven <geert+renesas@glider.be>
7988 L:      linux-gpio@vger.kernel.org
7989 S:      Supported
7990 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
7991 F:      drivers/gpio/gpio-aggregator.c
7992
7993 GPIO IR Transmitter
7994 M:      Sean Young <sean@mess.org>
7995 L:      linux-media@vger.kernel.org
7996 S:      Maintained
7997 F:      drivers/media/rc/gpio-ir-tx.c
7998
7999 GPIO MOCKUP DRIVER
8000 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8001 L:      linux-gpio@vger.kernel.org
8002 S:      Maintained
8003 F:      drivers/gpio/gpio-mockup.c
8004 F:      tools/testing/selftests/gpio/
8005
8006 GPIO REGMAP
8007 R:      Michael Walle <michael@walle.cc>
8008 S:      Maintained
8009 F:      drivers/gpio/gpio-regmap.c
8010 F:      include/linux/gpio/regmap.h
8011
8012 GPIO SUBSYSTEM
8013 M:      Linus Walleij <linus.walleij@linaro.org>
8014 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8015 L:      linux-gpio@vger.kernel.org
8016 S:      Maintained
8017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8018 F:      Documentation/ABI/obsolete/sysfs-gpio
8019 F:      Documentation/ABI/testing/gpio-cdev
8020 F:      Documentation/admin-guide/gpio/
8021 F:      Documentation/devicetree/bindings/gpio/
8022 F:      Documentation/driver-api/gpio/
8023 F:      drivers/gpio/
8024 F:      include/asm-generic/gpio.h
8025 F:      include/linux/gpio.h
8026 F:      include/linux/gpio/
8027 F:      include/linux/of_gpio.h
8028 F:      include/uapi/linux/gpio.h
8029 F:      tools/gpio/
8030
8031 GRE DEMULTIPLEXER DRIVER
8032 M:      Dmitry Kozlov <xeb@mail.ru>
8033 L:      netdev@vger.kernel.org
8034 S:      Maintained
8035 F:      include/net/gre.h
8036 F:      net/ipv4/gre_demux.c
8037 F:      net/ipv4/gre_offload.c
8038
8039 GRETH 10/100/1G Ethernet MAC device driver
8040 M:      Andreas Larsson <andreas@gaisler.com>
8041 L:      netdev@vger.kernel.org
8042 S:      Maintained
8043 F:      drivers/net/ethernet/aeroflex/
8044
8045 GREYBUS AUDIO PROTOCOLS DRIVERS
8046 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8047 M:      Mark Greer <mgreer@animalcreek.com>
8048 S:      Maintained
8049 F:      drivers/staging/greybus/audio_apbridgea.c
8050 F:      drivers/staging/greybus/audio_apbridgea.h
8051 F:      drivers/staging/greybus/audio_codec.c
8052 F:      drivers/staging/greybus/audio_codec.h
8053 F:      drivers/staging/greybus/audio_gb.c
8054 F:      drivers/staging/greybus/audio_manager.c
8055 F:      drivers/staging/greybus/audio_manager.h
8056 F:      drivers/staging/greybus/audio_manager_module.c
8057 F:      drivers/staging/greybus/audio_manager_private.h
8058 F:      drivers/staging/greybus/audio_manager_sysfs.c
8059 F:      drivers/staging/greybus/audio_module.c
8060 F:      drivers/staging/greybus/audio_topology.c
8061
8062 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8063 M:      Viresh Kumar <vireshk@kernel.org>
8064 S:      Maintained
8065 F:      drivers/staging/greybus/authentication.c
8066 F:      drivers/staging/greybus/bootrom.c
8067 F:      drivers/staging/greybus/firmware.h
8068 F:      drivers/staging/greybus/fw-core.c
8069 F:      drivers/staging/greybus/fw-download.c
8070 F:      drivers/staging/greybus/fw-management.c
8071 F:      drivers/staging/greybus/greybus_authentication.h
8072 F:      drivers/staging/greybus/greybus_firmware.h
8073 F:      drivers/staging/greybus/hid.c
8074 F:      drivers/staging/greybus/i2c.c
8075 F:      drivers/staging/greybus/spi.c
8076 F:      drivers/staging/greybus/spilib.c
8077 F:      drivers/staging/greybus/spilib.h
8078
8079 GREYBUS LOOPBACK DRIVER
8080 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8081 S:      Maintained
8082 F:      drivers/staging/greybus/loopback.c
8083
8084 GREYBUS PLATFORM DRIVERS
8085 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8086 S:      Maintained
8087 F:      drivers/staging/greybus/arche-apb-ctrl.c
8088 F:      drivers/staging/greybus/arche-platform.c
8089 F:      drivers/staging/greybus/arche_platform.h
8090
8091 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8092 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8093 S:      Maintained
8094 F:      drivers/staging/greybus/gpio.c
8095 F:      drivers/staging/greybus/light.c
8096 F:      drivers/staging/greybus/power_supply.c
8097 F:      drivers/staging/greybus/sdio.c
8098 F:      drivers/staging/greybus/spi.c
8099 F:      drivers/staging/greybus/spilib.c
8100
8101 GREYBUS SUBSYSTEM
8102 M:      Johan Hovold <johan@kernel.org>
8103 M:      Alex Elder <elder@kernel.org>
8104 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8105 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8106 S:      Maintained
8107 F:      drivers/greybus/
8108 F:      drivers/staging/greybus/
8109 F:      include/linux/greybus.h
8110 F:      include/linux/greybus/
8111
8112 GREYBUS UART PROTOCOLS DRIVERS
8113 M:      David Lin <dtwlin@gmail.com>
8114 S:      Maintained
8115 F:      drivers/staging/greybus/log.c
8116 F:      drivers/staging/greybus/uart.c
8117
8118 GS1662 VIDEO SERIALIZER
8119 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8120 L:      linux-media@vger.kernel.org
8121 S:      Maintained
8122 T:      git git://linuxtv.org/media_tree.git
8123 F:      drivers/media/spi/gs1662.c
8124
8125 GSPCA FINEPIX SUBDRIVER
8126 M:      Frank Zago <frank@zago.net>
8127 L:      linux-media@vger.kernel.org
8128 S:      Maintained
8129 T:      git git://linuxtv.org/media_tree.git
8130 F:      drivers/media/usb/gspca/finepix.c
8131
8132 GSPCA GL860 SUBDRIVER
8133 M:      Olivier Lorin <o.lorin@laposte.net>
8134 L:      linux-media@vger.kernel.org
8135 S:      Maintained
8136 T:      git git://linuxtv.org/media_tree.git
8137 F:      drivers/media/usb/gspca/gl860/
8138
8139 GSPCA M5602 SUBDRIVER
8140 M:      Erik Andren <erik.andren@gmail.com>
8141 L:      linux-media@vger.kernel.org
8142 S:      Maintained
8143 T:      git git://linuxtv.org/media_tree.git
8144 F:      drivers/media/usb/gspca/m5602/
8145
8146 GSPCA PAC207 SONIXB SUBDRIVER
8147 M:      Hans Verkuil <hverkuil@xs4all.nl>
8148 L:      linux-media@vger.kernel.org
8149 S:      Odd Fixes
8150 T:      git git://linuxtv.org/media_tree.git
8151 F:      drivers/media/usb/gspca/pac207.c
8152
8153 GSPCA SN9C20X SUBDRIVER
8154 M:      Brian Johnson <brijohn@gmail.com>
8155 L:      linux-media@vger.kernel.org
8156 S:      Maintained
8157 T:      git git://linuxtv.org/media_tree.git
8158 F:      drivers/media/usb/gspca/sn9c20x.c
8159
8160 GSPCA T613 SUBDRIVER
8161 M:      Leandro Costantino <lcostantino@gmail.com>
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/t613.c
8166
8167 GSPCA USB WEBCAM DRIVER
8168 M:      Hans Verkuil <hverkuil@xs4all.nl>
8169 L:      linux-media@vger.kernel.org
8170 S:      Odd Fixes
8171 T:      git git://linuxtv.org/media_tree.git
8172 F:      drivers/media/usb/gspca/
8173
8174 GTP (GPRS Tunneling Protocol)
8175 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8176 M:      Harald Welte <laforge@gnumonks.org>
8177 L:      osmocom-net-gprs@lists.osmocom.org
8178 S:      Maintained
8179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8180 F:      drivers/net/gtp.c
8181
8182 GUID PARTITION TABLE (GPT)
8183 M:      Davidlohr Bueso <dave@stgolabs.net>
8184 L:      linux-efi@vger.kernel.org
8185 S:      Maintained
8186 F:      block/partitions/efi.*
8187
8188 H8/300 ARCHITECTURE
8189 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8190 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8191 S:      Maintained
8192 W:      http://uclinux-h8.sourceforge.jp
8193 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8194 F:      arch/h8300/
8195 F:      drivers/clk/h8300/
8196 F:      drivers/clocksource/h8300_*.c
8197 F:      drivers/irqchip/irq-renesas-h8*.c
8198
8199 HABANALABS PCI DRIVER
8200 M:      Oded Gabbay <ogabbay@kernel.org>
8201 S:      Supported
8202 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8203 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8204 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8205 F:      drivers/misc/habanalabs/
8206 F:      include/uapi/misc/habanalabs.h
8207
8208 HACKRF MEDIA DRIVER
8209 M:      Antti Palosaari <crope@iki.fi>
8210 L:      linux-media@vger.kernel.org
8211 S:      Maintained
8212 W:      https://linuxtv.org
8213 W:      http://palosaari.fi/linux/
8214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8215 T:      git git://linuxtv.org/anttip/media_tree.git
8216 F:      drivers/media/usb/hackrf/
8217
8218 HANTRO VPU CODEC DRIVER
8219 M:      Ezequiel Garcia <ezequiel@collabora.com>
8220 M:      Philipp Zabel <p.zabel@pengutronix.de>
8221 L:      linux-media@vger.kernel.org
8222 L:      linux-rockchip@lists.infradead.org
8223 S:      Maintained
8224 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8225 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8226 F:      drivers/staging/media/hantro/
8227
8228 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8229 M:      Frank Seidel <frank@f-seidel.de>
8230 L:      platform-driver-x86@vger.kernel.org
8231 S:      Maintained
8232 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8233 F:      drivers/platform/x86/hdaps.c
8234
8235 HARDWARE MONITORING
8236 M:      Jean Delvare <jdelvare@suse.com>
8237 M:      Guenter Roeck <linux@roeck-us.net>
8238 L:      linux-hwmon@vger.kernel.org
8239 S:      Maintained
8240 W:      http://hwmon.wiki.kernel.org/
8241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8242 F:      Documentation/devicetree/bindings/hwmon/
8243 F:      Documentation/hwmon/
8244 F:      drivers/hwmon/
8245 F:      include/linux/hwmon*.h
8246 F:      include/trace/events/hwmon*.h
8247 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8248
8249 HARDWARE RANDOM NUMBER GENERATOR CORE
8250 M:      Matt Mackall <mpm@selenic.com>
8251 M:      Herbert Xu <herbert@gondor.apana.org.au>
8252 L:      linux-crypto@vger.kernel.org
8253 S:      Odd fixes
8254 F:      Documentation/admin-guide/hw_random.rst
8255 F:      Documentation/devicetree/bindings/rng/
8256 F:      drivers/char/hw_random/
8257 F:      include/linux/hw_random.h
8258
8259 HARDWARE SPINLOCK CORE
8260 M:      Ohad Ben-Cohen <ohad@wizery.com>
8261 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8262 R:      Baolin Wang <baolin.wang7@gmail.com>
8263 L:      linux-remoteproc@vger.kernel.org
8264 S:      Maintained
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8266 F:      Documentation/devicetree/bindings/hwlock/
8267 F:      Documentation/locking/hwspinlock.rst
8268 F:      drivers/hwspinlock/
8269 F:      include/linux/hwspinlock.h
8270
8271 HARDWARE TRACING FACILITIES
8272 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8273 S:      Maintained
8274 F:      drivers/hwtracing/
8275
8276 HARMONY SOUND DRIVER
8277 L:      linux-parisc@vger.kernel.org
8278 S:      Maintained
8279 F:      sound/parisc/harmony.*
8280
8281 HDPVR USB VIDEO ENCODER DRIVER
8282 M:      Hans Verkuil <hverkuil@xs4all.nl>
8283 L:      linux-media@vger.kernel.org
8284 S:      Odd Fixes
8285 W:      https://linuxtv.org
8286 T:      git git://linuxtv.org/media_tree.git
8287 F:      drivers/media/usb/hdpvr/
8288
8289 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8290 M:      Matt Hsiao <matt.hsiao@hpe.com>
8291 S:      Supported
8292 F:      drivers/misc/hpilo.[ch]
8293
8294 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8295 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8296 S:      Supported
8297 F:      Documentation/watchdog/hpwdt.rst
8298 F:      drivers/watchdog/hpwdt.c
8299
8300 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8301 M:      Don Brace <don.brace@microchip.com>
8302 L:      storagedev@microchip.com
8303 L:      linux-scsi@vger.kernel.org
8304 S:      Supported
8305 F:      Documentation/scsi/hpsa.rst
8306 F:      drivers/scsi/hpsa*.[ch]
8307 F:      include/linux/cciss*.h
8308 F:      include/uapi/linux/cciss*.h
8309
8310 HFI1 DRIVER
8311 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8312 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8313 L:      linux-rdma@vger.kernel.org
8314 S:      Supported
8315 F:      drivers/infiniband/hw/hfi1
8316
8317 HFS FILESYSTEM
8318 L:      linux-fsdevel@vger.kernel.org
8319 S:      Orphan
8320 F:      Documentation/filesystems/hfs.rst
8321 F:      fs/hfs/
8322
8323 HFSPLUS FILESYSTEM
8324 L:      linux-fsdevel@vger.kernel.org
8325 S:      Orphan
8326 F:      Documentation/filesystems/hfsplus.rst
8327 F:      fs/hfsplus/
8328
8329 HGA FRAMEBUFFER DRIVER
8330 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8331 L:      linux-nvidia@lists.surfsouth.com
8332 S:      Maintained
8333 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8334 F:      drivers/video/fbdev/hgafb.c
8335
8336 HIBERNATION (aka Software Suspend, aka swsusp)
8337 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8338 M:      Pavel Machek <pavel@ucw.cz>
8339 L:      linux-pm@vger.kernel.org
8340 S:      Supported
8341 B:      https://bugzilla.kernel.org
8342 F:      arch/*/include/asm/suspend*.h
8343 F:      arch/x86/power/
8344 F:      drivers/base/power/
8345 F:      include/linux/freezer.h
8346 F:      include/linux/pm.h
8347 F:      include/linux/suspend.h
8348 F:      kernel/power/
8349
8350 HID CORE LAYER
8351 M:      Jiri Kosina <jikos@kernel.org>
8352 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8353 L:      linux-input@vger.kernel.org
8354 S:      Maintained
8355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8356 F:      drivers/hid/
8357 F:      include/linux/hid*
8358 F:      include/uapi/linux/hid*
8359
8360 HID PLAYSTATION DRIVER
8361 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8362 L:      linux-input@vger.kernel.org
8363 S:      Supported
8364 F:      drivers/hid/hid-playstation.c
8365
8366 HID SENSOR HUB DRIVERS
8367 M:      Jiri Kosina <jikos@kernel.org>
8368 M:      Jonathan Cameron <jic23@kernel.org>
8369 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8370 L:      linux-input@vger.kernel.org
8371 L:      linux-iio@vger.kernel.org
8372 S:      Maintained
8373 F:      Documentation/hid/hid-sensor*
8374 F:      drivers/hid/hid-sensor-*
8375 F:      drivers/iio/*/hid-*
8376 F:      include/linux/hid-sensor-*
8377
8378 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8379 M:      Thomas Gleixner <tglx@linutronix.de>
8380 L:      linux-kernel@vger.kernel.org
8381 S:      Maintained
8382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8383 F:      Documentation/timers/
8384 F:      include/linux/clockchips.h
8385 F:      include/linux/hrtimer.h
8386 F:      kernel/time/clockevents.c
8387 F:      kernel/time/hrtimer.c
8388 F:      kernel/time/timer_*.c
8389
8390 HIGH-SPEED SCC DRIVER FOR AX.25
8391 L:      linux-hams@vger.kernel.org
8392 S:      Orphan
8393 F:      drivers/net/hamradio/dmascc.c
8394 F:      drivers/net/hamradio/scc.c
8395
8396 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8397 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8398 S:      Supported
8399 W:      http://www.highpoint-tech.com
8400 F:      Documentation/scsi/hptiop.rst
8401 F:      drivers/scsi/hptiop.c
8402
8403 HIPPI
8404 M:      Jes Sorensen <jes@trained-monkey.org>
8405 L:      linux-hippi@sunsite.dk
8406 S:      Maintained
8407 F:      drivers/net/hippi/
8408 F:      include/linux/hippidevice.h
8409 F:      include/uapi/linux/if_hippi.h
8410 F:      net/802/hippi.c
8411
8412 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8413 M:      Kurt Kanzenbach <kurt@linutronix.de>
8414 L:      netdev@vger.kernel.org
8415 S:      Maintained
8416 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8417 F:      drivers/net/dsa/hirschmann/*
8418 F:      include/linux/platform_data/hirschmann-hellcreek.h
8419 F:      net/dsa/tag_hellcreek.c
8420
8421 HISILICON DMA DRIVER
8422 M:      Zhou Wang <wangzhou1@hisilicon.com>
8423 L:      dmaengine@vger.kernel.org
8424 S:      Maintained
8425 F:      drivers/dma/hisi_dma.c
8426
8427 HISILICON GPIO DRIVER
8428 M:      Luo Jiaxing <luojiaxing@huawei.com>
8429 L:      linux-gpio@vger.kernel.org
8430 S:      Maintained
8431 F:      drivers/gpio/gpio-hisi.c
8432
8433 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8434 M:      Zaibo Xu <xuzaibo@huawei.com>
8435 L:      linux-crypto@vger.kernel.org
8436 S:      Maintained
8437 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8438 F:      drivers/crypto/hisilicon/hpre/hpre.h
8439 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8440 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8441
8442 HISILICON I2C CONTROLLER DRIVER
8443 M:      Yicong Yang <yangyicong@hisilicon.com>
8444 L:      linux-i2c@vger.kernel.org
8445 S:      Maintained
8446 W:      https://www.hisilicon.com
8447 F:      drivers/i2c/busses/i2c-hisi.c
8448
8449 HISILICON LPC BUS DRIVER
8450 M:      john.garry@huawei.com
8451 S:      Maintained
8452 W:      http://www.hisilicon.com
8453 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8454 F:      drivers/bus/hisi_lpc.c
8455
8456 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8457 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8458 M:      Salil Mehta <salil.mehta@huawei.com>
8459 L:      netdev@vger.kernel.org
8460 S:      Maintained
8461 W:      http://www.hisilicon.com
8462 F:      drivers/net/ethernet/hisilicon/hns3/
8463
8464 HISILICON NETWORK SUBSYSTEM DRIVER
8465 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8466 M:      Salil Mehta <salil.mehta@huawei.com>
8467 L:      netdev@vger.kernel.org
8468 S:      Maintained
8469 W:      http://www.hisilicon.com
8470 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8471 F:      drivers/net/ethernet/hisilicon/
8472
8473 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8474 M:      John Stultz <john.stultz@linaro.org>
8475 L:      linux-kernel@vger.kernel.org
8476 S:      Maintained
8477 F:      drivers/misc/hisi_hikey_usb.c
8478 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8479
8480 HISILICON PMU DRIVER
8481 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8482 S:      Supported
8483 W:      http://www.hisilicon.com
8484 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8485 F:      drivers/perf/hisilicon
8486
8487 HISILICON QM AND ZIP Controller DRIVER
8488 M:      Zhou Wang <wangzhou1@hisilicon.com>
8489 L:      linux-crypto@vger.kernel.org
8490 S:      Maintained
8491 F:      Documentation/ABI/testing/debugfs-hisi-zip
8492 F:      drivers/crypto/hisilicon/qm.c
8493 F:      drivers/crypto/hisilicon/qm.h
8494 F:      drivers/crypto/hisilicon/sgl.c
8495 F:      drivers/crypto/hisilicon/zip/
8496
8497 HISILICON ROCE DRIVER
8498 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8499 M:      Weihang Li <liweihang@huawei.com>
8500 L:      linux-rdma@vger.kernel.org
8501 S:      Maintained
8502 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8503 F:      drivers/infiniband/hw/hns/
8504
8505 HISILICON SAS Controller
8506 M:      John Garry <john.garry@huawei.com>
8507 S:      Supported
8508 W:      http://www.hisilicon.com
8509 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8510 F:      drivers/scsi/hisi_sas/
8511
8512 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8513 M:      Zaibo Xu <xuzaibo@huawei.com>
8514 L:      linux-crypto@vger.kernel.org
8515 S:      Maintained
8516 F:      Documentation/ABI/testing/debugfs-hisi-sec
8517 F:      drivers/crypto/hisilicon/sec2/sec.h
8518 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8519 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8520 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8521
8522 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8523 M:      Jay Fang <f.fangjian@huawei.com>
8524 L:      linux-spi@vger.kernel.org
8525 S:      Maintained
8526 W:      http://www.hisilicon.com
8527 F:      drivers/spi/spi-hisi-kunpeng.c
8528
8529 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8530 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8531 L:      linux-kernel@vger.kernel.org
8532 S:      Maintained
8533 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8534 F:      drivers/spmi/hisi-spmi-controller.c
8535
8536 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8537 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8538 L:      linux-kernel@vger.kernel.org
8539 S:      Maintained
8540 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8541 F:      drivers/mfd/hi6421-spmi-pmic.c
8542
8543 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8544 M:      Zaibo Xu <xuzaibo@huawei.com>
8545 S:      Maintained
8546 F:      drivers/crypto/hisilicon/trng/trng.c
8547
8548 HISILICON V3XX SPI NOR FLASH Controller Driver
8549 M:      John Garry <john.garry@huawei.com>
8550 S:      Maintained
8551 W:      http://www.hisilicon.com
8552 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8553
8554 HMM - Heterogeneous Memory Management
8555 M:      Jérôme Glisse <jglisse@redhat.com>
8556 L:      linux-mm@kvack.org
8557 S:      Maintained
8558 F:      Documentation/vm/hmm.rst
8559 F:      include/linux/hmm*
8560 F:      lib/test_hmm*
8561 F:      mm/hmm*
8562 F:      tools/testing/selftests/vm/*hmm*
8563
8564 HOST AP DRIVER
8565 M:      Jouni Malinen <j@w1.fi>
8566 L:      linux-wireless@vger.kernel.org
8567 S:      Obsolete
8568 W:      http://w1.fi/hostap-driver.html
8569 F:      drivers/net/wireless/intersil/hostap/
8570
8571 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8572 L:      platform-driver-x86@vger.kernel.org
8573 S:      Orphan
8574 F:      drivers/platform/x86/tc1100-wmi.c
8575
8576 HPET:   High Precision Event Timers driver
8577 M:      Clemens Ladisch <clemens@ladisch.de>
8578 S:      Maintained
8579 F:      Documentation/timers/hpet.rst
8580 F:      drivers/char/hpet.c
8581 F:      include/linux/hpet.h
8582 F:      include/uapi/linux/hpet.h
8583
8584 HPET:   x86
8585 S:      Orphan
8586 F:      arch/x86/include/asm/hpet.h
8587 F:      arch/x86/kernel/hpet.c
8588
8589 HPFS FILESYSTEM
8590 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8591 S:      Maintained
8592 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8593 F:      fs/hpfs/
8594
8595 HSI SUBSYSTEM
8596 M:      Sebastian Reichel <sre@kernel.org>
8597 S:      Maintained
8598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8599 F:      Documentation/ABI/testing/sysfs-bus-hsi
8600 F:      Documentation/driver-api/hsi.rst
8601 F:      drivers/hsi/
8602 F:      include/linux/hsi/
8603 F:      include/uapi/linux/hsi/
8604
8605 HSO 3G MODEM DRIVER
8606 L:      linux-usb@vger.kernel.org
8607 S:      Orphan
8608 F:      drivers/net/usb/hso.c
8609
8610 HSR NETWORK PROTOCOL
8611 L:      netdev@vger.kernel.org
8612 S:      Orphan
8613 F:      net/hsr/
8614
8615 HT16K33 LED CONTROLLER DRIVER
8616 M:      Robin van der Gracht <robin@protonic.nl>
8617 S:      Maintained
8618 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8619 F:      drivers/auxdisplay/ht16k33.c
8620
8621 HTCPEN TOUCHSCREEN DRIVER
8622 M:      Pau Oliva Fora <pof@eslack.org>
8623 L:      linux-input@vger.kernel.org
8624 S:      Maintained
8625 F:      drivers/input/touchscreen/htcpen.c
8626
8627 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8628 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8629 L:      linux-iio@vger.kernel.org
8630 S:      Maintained
8631 W:      http://www.st.com/
8632 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8633 F:      drivers/iio/humidity/hts221*
8634
8635 HUAWEI ETHERNET DRIVER
8636 L:      netdev@vger.kernel.org
8637 S:      Orphan
8638 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8639 F:      drivers/net/ethernet/huawei/hinic/
8640
8641 HUGETLB FILESYSTEM
8642 M:      Mike Kravetz <mike.kravetz@oracle.com>
8643 L:      linux-mm@kvack.org
8644 S:      Maintained
8645 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8646 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8647 F:      Documentation/vm/hugetlbfs_reserv.rst
8648 F:      fs/hugetlbfs/
8649 F:      include/linux/hugetlb.h
8650 F:      mm/hugetlb.c
8651
8652 HVA ST MEDIA DRIVER
8653 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8654 L:      linux-media@vger.kernel.org
8655 S:      Supported
8656 W:      https://linuxtv.org
8657 T:      git git://linuxtv.org/media_tree.git
8658 F:      drivers/media/platform/sti/hva
8659
8660 HWPOISON MEMORY FAILURE HANDLING
8661 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8662 L:      linux-mm@kvack.org
8663 S:      Maintained
8664 F:      mm/hwpoison-inject.c
8665 F:      mm/memory-failure.c
8666
8667 HYCON HY46XX TOUCHSCREEN SUPPORT
8668 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8669 L:      linux-input@vger.kernel.org
8670 S:      Maintained
8671 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8672 F:      drivers/input/touchscreen/hycon-hy46xx.c
8673
8674 HYGON PROCESSOR SUPPORT
8675 M:      Pu Wen <puwen@hygon.cn>
8676 L:      linux-kernel@vger.kernel.org
8677 S:      Maintained
8678 F:      arch/x86/kernel/cpu/hygon.c
8679
8680 HYNIX HI556 SENSOR DRIVER
8681 M:      Shawn Tu <shawnx.tu@intel.com>
8682 L:      linux-media@vger.kernel.org
8683 S:      Maintained
8684 T:      git git://linuxtv.org/media_tree.git
8685 F:      drivers/media/i2c/hi556.c
8686
8687 Hyper-V/Azure CORE AND DRIVERS
8688 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8689 M:      Haiyang Zhang <haiyangz@microsoft.com>
8690 M:      Stephen Hemminger <sthemmin@microsoft.com>
8691 M:      Wei Liu <wei.liu@kernel.org>
8692 M:      Dexuan Cui <decui@microsoft.com>
8693 L:      linux-hyperv@vger.kernel.org
8694 S:      Supported
8695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8696 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8697 F:      Documentation/ABI/testing/debugfs-hyperv
8698 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8699 F:      arch/arm64/hyperv
8700 F:      arch/arm64/include/asm/hyperv-tlfs.h
8701 F:      arch/arm64/include/asm/mshyperv.h
8702 F:      arch/x86/hyperv
8703 F:      arch/x86/include/asm/hyperv-tlfs.h
8704 F:      arch/x86/include/asm/mshyperv.h
8705 F:      arch/x86/include/asm/trace/hyperv.h
8706 F:      arch/x86/kernel/cpu/mshyperv.c
8707 F:      drivers/clocksource/hyperv_timer.c
8708 F:      drivers/hid/hid-hyperv.c
8709 F:      drivers/hv/
8710 F:      drivers/input/serio/hyperv-keyboard.c
8711 F:      drivers/iommu/hyperv-iommu.c
8712 F:      drivers/net/ethernet/microsoft/
8713 F:      drivers/net/hyperv/
8714 F:      drivers/pci/controller/pci-hyperv-intf.c
8715 F:      drivers/pci/controller/pci-hyperv.c
8716 F:      drivers/scsi/storvsc_drv.c
8717 F:      drivers/uio/uio_hv_generic.c
8718 F:      drivers/video/fbdev/hyperv_fb.c
8719 F:      include/asm-generic/hyperv-tlfs.h
8720 F:      include/asm-generic/mshyperv.h
8721 F:      include/clocksource/hyperv_timer.h
8722 F:      include/linux/hyperv.h
8723 F:      include/uapi/linux/hyperv.h
8724 F:      net/vmw_vsock/hyperv_transport.c
8725 F:      tools/hv/
8726
8727 HYPERBUS SUPPORT
8728 M:      Vignesh Raghavendra <vigneshr@ti.com>
8729 L:      linux-mtd@lists.infradead.org
8730 S:      Supported
8731 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8732 C:      irc://irc.oftc.net/mtd
8733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8734 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8735 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8736 F:      drivers/mtd/hyperbus/
8737 F:      include/linux/mtd/hyperbus.h
8738
8739 HYPERVISOR VIRTUAL CONSOLE DRIVER
8740 L:      linuxppc-dev@lists.ozlabs.org
8741 S:      Odd Fixes
8742 F:      drivers/tty/hvc/
8743
8744 I2C ACPI SUPPORT
8745 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8746 L:      linux-i2c@vger.kernel.org
8747 L:      linux-acpi@vger.kernel.org
8748 S:      Maintained
8749 F:      drivers/i2c/i2c-core-acpi.c
8750
8751 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8752 M:      Ajay Gupta <ajayg@nvidia.com>
8753 L:      linux-i2c@vger.kernel.org
8754 S:      Maintained
8755 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8756 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8757
8758 I2C MUXES
8759 M:      Peter Rosin <peda@axentia.se>
8760 L:      linux-i2c@vger.kernel.org
8761 S:      Maintained
8762 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8763 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8764 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8765 F:      Documentation/i2c/i2c-topology.rst
8766 F:      Documentation/i2c/muxes/
8767 F:      drivers/i2c/i2c-mux.c
8768 F:      drivers/i2c/muxes/
8769 F:      include/linux/i2c-mux.h
8770
8771 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8772 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8773 L:      linux-i2c@vger.kernel.org
8774 S:      Maintained
8775 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8776 F:      drivers/i2c/busses/i2c-mv64xxx.c
8777
8778 I2C OVER PARALLEL PORT
8779 M:      Jean Delvare <jdelvare@suse.com>
8780 L:      linux-i2c@vger.kernel.org
8781 S:      Maintained
8782 F:      Documentation/i2c/busses/i2c-parport.rst
8783 F:      drivers/i2c/busses/i2c-parport.c
8784
8785 I2C SUBSYSTEM
8786 M:      Wolfram Sang <wsa@kernel.org>
8787 L:      linux-i2c@vger.kernel.org
8788 S:      Maintained
8789 W:      https://i2c.wiki.kernel.org/
8790 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8792 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8793 F:      Documentation/i2c/
8794 F:      drivers/i2c/*
8795 F:      include/linux/i2c-dev.h
8796 F:      include/linux/i2c-smbus.h
8797 F:      include/linux/i2c.h
8798 F:      include/uapi/linux/i2c-*.h
8799 F:      include/uapi/linux/i2c.h
8800
8801 I2C SUBSYSTEM HOST DRIVERS
8802 L:      linux-i2c@vger.kernel.org
8803 S:      Odd Fixes
8804 W:      https://i2c.wiki.kernel.org/
8805 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8807 F:      Documentation/devicetree/bindings/i2c/
8808 F:      drivers/i2c/algos/
8809 F:      drivers/i2c/busses/
8810
8811 I2C-TAOS-EVM DRIVER
8812 M:      Jean Delvare <jdelvare@suse.com>
8813 L:      linux-i2c@vger.kernel.org
8814 S:      Maintained
8815 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8816 F:      drivers/i2c/busses/i2c-taos-evm.c
8817
8818 I2C-TINY-USB DRIVER
8819 M:      Till Harbaum <till@harbaum.org>
8820 L:      linux-i2c@vger.kernel.org
8821 S:      Maintained
8822 W:      http://www.harbaum.org/till/i2c_tiny_usb
8823 F:      drivers/i2c/busses/i2c-tiny-usb.c
8824
8825 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8826 M:      Jean Delvare <jdelvare@suse.com>
8827 L:      linux-i2c@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/i2c/busses/i2c-ali1535.rst
8830 F:      Documentation/i2c/busses/i2c-ali1563.rst
8831 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8832 F:      Documentation/i2c/busses/i2c-amd756.rst
8833 F:      Documentation/i2c/busses/i2c-amd8111.rst
8834 F:      Documentation/i2c/busses/i2c-i801.rst
8835 F:      Documentation/i2c/busses/i2c-nforce2.rst
8836 F:      Documentation/i2c/busses/i2c-piix4.rst
8837 F:      Documentation/i2c/busses/i2c-sis5595.rst
8838 F:      Documentation/i2c/busses/i2c-sis630.rst
8839 F:      Documentation/i2c/busses/i2c-sis96x.rst
8840 F:      Documentation/i2c/busses/i2c-via.rst
8841 F:      Documentation/i2c/busses/i2c-viapro.rst
8842 F:      drivers/i2c/busses/i2c-ali1535.c
8843 F:      drivers/i2c/busses/i2c-ali1563.c
8844 F:      drivers/i2c/busses/i2c-ali15x3.c
8845 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8846 F:      drivers/i2c/busses/i2c-amd756.c
8847 F:      drivers/i2c/busses/i2c-amd8111.c
8848 F:      drivers/i2c/busses/i2c-i801.c
8849 F:      drivers/i2c/busses/i2c-isch.c
8850 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8851 F:      drivers/i2c/busses/i2c-nforce2.c
8852 F:      drivers/i2c/busses/i2c-piix4.c
8853 F:      drivers/i2c/busses/i2c-sis5595.c
8854 F:      drivers/i2c/busses/i2c-sis630.c
8855 F:      drivers/i2c/busses/i2c-sis96x.c
8856 F:      drivers/i2c/busses/i2c-via.c
8857 F:      drivers/i2c/busses/i2c-viapro.c
8858
8859 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8860 M:      Hans de Goede <hdegoede@redhat.com>
8861 L:      linux-i2c@vger.kernel.org
8862 S:      Maintained
8863 F:      drivers/i2c/busses/i2c-cht-wc.c
8864
8865 I2C/SMBUS ISMT DRIVER
8866 M:      Seth Heasley <seth.heasley@intel.com>
8867 M:      Neil Horman <nhorman@tuxdriver.com>
8868 L:      linux-i2c@vger.kernel.org
8869 F:      Documentation/i2c/busses/i2c-ismt.rst
8870 F:      drivers/i2c/busses/i2c-ismt.c
8871
8872 I2C/SMBUS STUB DRIVER
8873 M:      Jean Delvare <jdelvare@suse.com>
8874 L:      linux-i2c@vger.kernel.org
8875 S:      Maintained
8876 F:      drivers/i2c/i2c-stub.c
8877
8878 I3C DRIVER FOR CADENCE I3C MASTER IP
8879 M:      Przemysław Gaj <pgaj@cadence.com>
8880 S:      Maintained
8881 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8882 F:      drivers/i3c/master/i3c-master-cdns.c
8883
8884 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8885 M:      Vitor Soares <vitor.soares@synopsys.com>
8886 S:      Maintained
8887 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8888 F:      drivers/i3c/master/dw*
8889
8890 I3C SUBSYSTEM
8891 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8892 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8893 S:      Maintained
8894 C:      irc://chat.freenode.net/linux-i3c
8895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8896 F:      Documentation/ABI/testing/sysfs-bus-i3c
8897 F:      Documentation/devicetree/bindings/i3c/
8898 F:      Documentation/driver-api/i3c
8899 F:      drivers/i3c/
8900 F:      include/linux/i3c/
8901
8902 IA64 (Itanium) PLATFORM
8903 L:      linux-ia64@vger.kernel.org
8904 S:      Orphan
8905 F:      Documentation/ia64/
8906 F:      arch/ia64/
8907
8908 IBM Power 842 compression accelerator
8909 M:      Haren Myneni <haren@us.ibm.com>
8910 S:      Supported
8911 F:      crypto/842.c
8912 F:      drivers/crypto/nx/Kconfig
8913 F:      drivers/crypto/nx/Makefile
8914 F:      drivers/crypto/nx/nx-842*
8915 F:      include/linux/sw842.h
8916 F:      lib/842/
8917
8918 IBM Power in-Nest Crypto Acceleration
8919 M:      Breno Leitão <leitao@debian.org>
8920 M:      Nayna Jain <nayna@linux.ibm.com>
8921 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8922 L:      linux-crypto@vger.kernel.org
8923 S:      Supported
8924 F:      drivers/crypto/nx/Kconfig
8925 F:      drivers/crypto/nx/Makefile
8926 F:      drivers/crypto/nx/nx-aes*
8927 F:      drivers/crypto/nx/nx-sha*
8928 F:      drivers/crypto/nx/nx.*
8929 F:      drivers/crypto/nx/nx_csbcpb.h
8930 F:      drivers/crypto/nx/nx_debugfs.c
8931
8932 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8933 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8934 L:      linux-pci@vger.kernel.org
8935 L:      linuxppc-dev@lists.ozlabs.org
8936 S:      Supported
8937 F:      drivers/pci/hotplug/rpadlpar*
8938
8939 IBM Power Linux RAID adapter
8940 M:      Brian King <brking@us.ibm.com>
8941 S:      Supported
8942 F:      drivers/scsi/ipr.*
8943
8944 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8945 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8946 L:      linux-pci@vger.kernel.org
8947 L:      linuxppc-dev@lists.ozlabs.org
8948 S:      Supported
8949 F:      drivers/pci/hotplug/rpaphp*
8950
8951 IBM Power SRIOV Virtual NIC Device Driver
8952 M:      Dany Madden <drt@linux.ibm.com>
8953 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8954 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
8955 L:      netdev@vger.kernel.org
8956 S:      Supported
8957 F:      drivers/net/ethernet/ibm/ibmvnic.*
8958
8959 IBM Power Virtual Accelerator Switchboard
8960 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
8961 L:      linuxppc-dev@lists.ozlabs.org
8962 S:      Supported
8963 F:      arch/powerpc/include/asm/vas.h
8964 F:      arch/powerpc/platforms/powernv/copy-paste.h
8965 F:      arch/powerpc/platforms/powernv/vas*
8966
8967 IBM Power Virtual Ethernet Device Driver
8968 M:      Cristobal Forno <cforno12@linux.ibm.com>
8969 L:      netdev@vger.kernel.org
8970 S:      Supported
8971 F:      drivers/net/ethernet/ibm/ibmveth.*
8972
8973 IBM Power Virtual FC Device Drivers
8974 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8975 L:      linux-scsi@vger.kernel.org
8976 S:      Supported
8977 F:      drivers/scsi/ibmvscsi/ibmvfc*
8978
8979 IBM Power Virtual Management Channel Driver
8980 M:      Brad Warrum <bwarrum@linux.ibm.com>
8981 M:      Ritu Agarwal <rituagar@linux.ibm.com>
8982 S:      Supported
8983 F:      drivers/misc/ibmvmc.*
8984
8985 IBM Power Virtual SCSI Device Drivers
8986 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8987 L:      linux-scsi@vger.kernel.org
8988 S:      Supported
8989 F:      drivers/scsi/ibmvscsi/ibmvscsi*
8990 F:      include/scsi/viosrp.h
8991
8992 IBM Power Virtual SCSI Device Target Driver
8993 M:      Michael Cyr <mikecyr@linux.ibm.com>
8994 L:      linux-scsi@vger.kernel.org
8995 L:      target-devel@vger.kernel.org
8996 S:      Supported
8997 F:      drivers/scsi/ibmvscsi_tgt/
8998
8999 IBM Power VMX Cryptographic instructions
9000 M:      Breno Leitão <leitao@debian.org>
9001 M:      Nayna Jain <nayna@linux.ibm.com>
9002 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9003 L:      linux-crypto@vger.kernel.org
9004 S:      Supported
9005 F:      drivers/crypto/vmx/Kconfig
9006 F:      drivers/crypto/vmx/Makefile
9007 F:      drivers/crypto/vmx/aes*
9008 F:      drivers/crypto/vmx/ghash*
9009 F:      drivers/crypto/vmx/ppc-xlate.pl
9010 F:      drivers/crypto/vmx/vmx.c
9011
9012 IBM ServeRAID RAID DRIVER
9013 S:      Orphan
9014 F:      drivers/scsi/ips.*
9015
9016 ICH LPC AND GPIO DRIVER
9017 M:      Peter Tyser <ptyser@xes-inc.com>
9018 S:      Maintained
9019 F:      drivers/gpio/gpio-ich.c
9020 F:      drivers/mfd/lpc_ich.c
9021
9022 ICY I2C DRIVER
9023 M:      Max Staudt <max@enpas.org>
9024 L:      linux-i2c@vger.kernel.org
9025 S:      Maintained
9026 F:      drivers/i2c/busses/i2c-icy.c
9027
9028 IDEAPAD LAPTOP EXTRAS DRIVER
9029 M:      Ike Panhc <ike.pan@canonical.com>
9030 L:      platform-driver-x86@vger.kernel.org
9031 S:      Maintained
9032 W:      http://launchpad.net/ideapad-laptop
9033 F:      drivers/platform/x86/ideapad-laptop.c
9034
9035 IDEAPAD LAPTOP SLIDEBAR DRIVER
9036 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9037 L:      linux-input@vger.kernel.org
9038 S:      Maintained
9039 W:      https://github.com/o2genum/ideapad-slidebar
9040 F:      drivers/input/misc/ideapad_slidebar.c
9041
9042 IDT VersaClock 5 CLOCK DRIVER
9043 M:      Luca Ceresoli <luca@lucaceresoli.net>
9044 S:      Maintained
9045 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9046 F:      drivers/clk/clk-versaclock5.c
9047
9048 IEEE 802.15.4 SUBSYSTEM
9049 M:      Alexander Aring <alex.aring@gmail.com>
9050 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9051 L:      linux-wpan@vger.kernel.org
9052 S:      Maintained
9053 W:      https://linux-wpan.org/
9054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9056 F:      Documentation/networking/ieee802154.rst
9057 F:      drivers/net/ieee802154/
9058 F:      include/linux/ieee802154.h
9059 F:      include/linux/nl802154.h
9060 F:      include/net/af_ieee802154.h
9061 F:      include/net/cfg802154.h
9062 F:      include/net/ieee802154_netdev.h
9063 F:      include/net/mac802154.h
9064 F:      include/net/nl802154.h
9065 F:      net/ieee802154/
9066 F:      net/mac802154/
9067
9068 IFE PROTOCOL
9069 M:      Yotam Gigi <yotam.gi@gmail.com>
9070 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9071 F:      include/net/ife.h
9072 F:      include/uapi/linux/ife.h
9073 F:      net/ife
9074
9075 IGORPLUG-USB IR RECEIVER
9076 M:      Sean Young <sean@mess.org>
9077 L:      linux-media@vger.kernel.org
9078 S:      Maintained
9079 F:      drivers/media/rc/igorplugusb.c
9080
9081 IGUANAWORKS USB IR TRANSCEIVER
9082 M:      Sean Young <sean@mess.org>
9083 L:      linux-media@vger.kernel.org
9084 S:      Maintained
9085 F:      drivers/media/rc/iguanair.c
9086
9087 IIO DIGITAL POTENTIOMETER DAC
9088 M:      Peter Rosin <peda@axentia.se>
9089 L:      linux-iio@vger.kernel.org
9090 S:      Maintained
9091 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9092 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9093 F:      drivers/iio/dac/dpot-dac.c
9094
9095 IIO ENVELOPE DETECTOR
9096 M:      Peter Rosin <peda@axentia.se>
9097 L:      linux-iio@vger.kernel.org
9098 S:      Maintained
9099 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9100 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9101 F:      drivers/iio/adc/envelope-detector.c
9102
9103 IIO MULTIPLEXER
9104 M:      Peter Rosin <peda@axentia.se>
9105 L:      linux-iio@vger.kernel.org
9106 S:      Maintained
9107 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9108 F:      drivers/iio/multiplexer/iio-mux.c
9109
9110 IIO SCMI BASED DRIVER
9111 M:      Jyoti Bhayana <jbhayana@google.com>
9112 L:      linux-iio@vger.kernel.org
9113 S:      Maintained
9114 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9115
9116 IIO SUBSYSTEM AND DRIVERS
9117 M:      Jonathan Cameron <jic23@kernel.org>
9118 R:      Lars-Peter Clausen <lars@metafoo.de>
9119 L:      linux-iio@vger.kernel.org
9120 S:      Maintained
9121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9122 F:      Documentation/ABI/testing/configfs-iio*
9123 F:      Documentation/ABI/testing/sysfs-bus-iio*
9124 F:      Documentation/devicetree/bindings/iio/
9125 F:      drivers/iio/
9126 F:      drivers/staging/iio/
9127 F:      include/linux/iio/
9128 F:      tools/iio/
9129
9130 IIO UNIT CONVERTER
9131 M:      Peter Rosin <peda@axentia.se>
9132 L:      linux-iio@vger.kernel.org
9133 S:      Maintained
9134 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9135 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9136 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9137 F:      drivers/iio/afe/iio-rescale.c
9138
9139 IKANOS/ADI EAGLE ADSL USB DRIVER
9140 M:      Matthieu Castet <castet.matthieu@free.fr>
9141 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9142 S:      Maintained
9143 F:      drivers/usb/atm/ueagle-atm.c
9144
9145 IMGTEC ASCII LCD DRIVER
9146 M:      Paul Burton <paulburton@kernel.org>
9147 S:      Maintained
9148 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9149 F:      drivers/auxdisplay/img-ascii-lcd.c
9150
9151 IMGTEC IR DECODER DRIVER
9152 S:      Orphan
9153 F:      drivers/media/rc/img-ir/
9154
9155 IMON SOUNDGRAPH USB IR RECEIVER
9156 M:      Sean Young <sean@mess.org>
9157 L:      linux-media@vger.kernel.org
9158 S:      Maintained
9159 F:      drivers/media/rc/imon.c
9160 F:      drivers/media/rc/imon_raw.c
9161
9162 IMS TWINTURBO FRAMEBUFFER DRIVER
9163 L:      linux-fbdev@vger.kernel.org
9164 S:      Orphan
9165 F:      drivers/video/fbdev/imsttfb.c
9166
9167 INA209 HARDWARE MONITOR DRIVER
9168 M:      Guenter Roeck <linux@roeck-us.net>
9169 L:      linux-hwmon@vger.kernel.org
9170 S:      Maintained
9171 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9172 F:      Documentation/hwmon/ina209.rst
9173 F:      drivers/hwmon/ina209.c
9174
9175 INA2XX HARDWARE MONITOR DRIVER
9176 M:      Guenter Roeck <linux@roeck-us.net>
9177 L:      linux-hwmon@vger.kernel.org
9178 S:      Maintained
9179 F:      Documentation/hwmon/ina2xx.rst
9180 F:      drivers/hwmon/ina2xx.c
9181 F:      include/linux/platform_data/ina2xx.h
9182
9183 INDUSTRY PACK SUBSYSTEM (IPACK)
9184 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9185 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9186 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9187 L:      industrypack-devel@lists.sourceforge.net
9188 S:      Maintained
9189 W:      http://industrypack.sourceforge.net
9190 F:      drivers/ipack/
9191
9192 INFINEON DPS310 Driver
9193 M:      Eddie James <eajames@linux.ibm.com>
9194 L:      linux-iio@vger.kernel.org
9195 S:      Maintained
9196 F:      drivers/iio/pressure/dps310.c
9197
9198 INFINIBAND SUBSYSTEM
9199 M:      Doug Ledford <dledford@redhat.com>
9200 M:      Jason Gunthorpe <jgg@nvidia.com>
9201 L:      linux-rdma@vger.kernel.org
9202 S:      Supported
9203 W:      https://github.com/linux-rdma/rdma-core
9204 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9206 F:      Documentation/devicetree/bindings/infiniband/
9207 F:      Documentation/infiniband/
9208 F:      drivers/infiniband/
9209 F:      include/rdma/
9210 F:      include/trace/events/ib_mad.h
9211 F:      include/trace/events/ib_umad.h
9212 F:      include/uapi/linux/if_infiniband.h
9213 F:      include/uapi/rdma/
9214 F:      samples/bpf/ibumad_kern.c
9215 F:      samples/bpf/ibumad_user.c
9216
9217 INGENIC JZ4780 NAND DRIVER
9218 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9219 L:      linux-mtd@lists.infradead.org
9220 L:      linux-mips@vger.kernel.org
9221 S:      Maintained
9222 F:      drivers/mtd/nand/raw/ingenic/
9223
9224 INGENIC JZ47xx SoCs
9225 M:      Paul Cercueil <paul@crapouillou.net>
9226 L:      linux-mips@vger.kernel.org
9227 S:      Maintained
9228 F:      arch/mips/boot/dts/ingenic/
9229 F:      arch/mips/generic/board-ingenic.c
9230 F:      arch/mips/include/asm/mach-ingenic/
9231 F:      arch/mips/ingenic/Kconfig
9232 F:      drivers/clk/ingenic/
9233 F:      drivers/dma/dma-jz4780.c
9234 F:      drivers/gpu/drm/ingenic/
9235 F:      drivers/i2c/busses/i2c-jz4780.c
9236 F:      drivers/iio/adc/ingenic-adc.c
9237 F:      drivers/irqchip/irq-ingenic.c
9238 F:      drivers/memory/jz4780-nemc.c
9239 F:      drivers/mmc/host/jz4740_mmc.c
9240 F:      drivers/mtd/nand/raw/ingenic/
9241 F:      drivers/pinctrl/pinctrl-ingenic.c
9242 F:      drivers/power/supply/ingenic-battery.c
9243 F:      drivers/pwm/pwm-jz4740.c
9244 F:      drivers/remoteproc/ingenic_rproc.c
9245 F:      drivers/rtc/rtc-jz4740.c
9246 F:      drivers/tty/serial/8250/8250_ingenic.c
9247 F:      drivers/usb/musb/jz4740.c
9248 F:      drivers/watchdog/jz4740_wdt.c
9249 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9250 F:      include/linux/mfd/ingenic-tcu.h
9251 F:      sound/soc/codecs/jz47*
9252 F:      sound/soc/jz4740/
9253
9254 INOTIFY
9255 M:      Jan Kara <jack@suse.cz>
9256 R:      Amir Goldstein <amir73il@gmail.com>
9257 L:      linux-fsdevel@vger.kernel.org
9258 S:      Maintained
9259 F:      Documentation/filesystems/inotify.rst
9260 F:      fs/notify/inotify/
9261 F:      include/linux/inotify.h
9262 F:      include/uapi/linux/inotify.h
9263
9264 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9265 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9266 L:      linux-input@vger.kernel.org
9267 S:      Maintained
9268 Q:      http://patchwork.kernel.org/project/linux-input/list/
9269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9270 F:      Documentation/devicetree/bindings/input/
9271 F:      Documentation/devicetree/bindings/serio/
9272 F:      Documentation/input/
9273 F:      drivers/input/
9274 F:      include/linux/input.h
9275 F:      include/linux/input/
9276 F:      include/uapi/linux/input-event-codes.h
9277 F:      include/uapi/linux/input.h
9278
9279 INPUT MULTITOUCH (MT) PROTOCOL
9280 M:      Henrik Rydberg <rydberg@bitmath.org>
9281 L:      linux-input@vger.kernel.org
9282 S:      Odd fixes
9283 F:      Documentation/input/multi-touch-protocol.rst
9284 F:      drivers/input/input-mt.c
9285 K:      \b(ABS|SYN)_MT_
9286
9287 INSIDE SECURE CRYPTO DRIVER
9288 M:      Antoine Tenart <atenart@kernel.org>
9289 L:      linux-crypto@vger.kernel.org
9290 S:      Maintained
9291 F:      drivers/crypto/inside-secure/
9292
9293 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9294 M:      Mimi Zohar <zohar@linux.ibm.com>
9295 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9296 L:      linux-integrity@vger.kernel.org
9297 S:      Supported
9298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9299 F:      security/integrity/ima/
9300
9301 INTEL 810/815 FRAMEBUFFER DRIVER
9302 M:      Antonino Daplas <adaplas@gmail.com>
9303 L:      linux-fbdev@vger.kernel.org
9304 S:      Maintained
9305 F:      drivers/video/fbdev/i810/
9306
9307 INTEL ASoC DRIVERS
9308 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9309 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9310 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9311 M:      Jie Yang <yang.jie@linux.intel.com>
9312 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9313 S:      Supported
9314 F:      sound/soc/intel/
9315
9316 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9317 M:      Hans de Goede <hdegoede@redhat.com>
9318 L:      platform-driver-x86@vger.kernel.org
9319 S:      Maintained
9320 F:      drivers/platform/x86/intel/atomisp2/pm.c
9321
9322 INTEL ATOMISP2 LED DRIVER
9323 M:      Hans de Goede <hdegoede@redhat.com>
9324 L:      platform-driver-x86@vger.kernel.org
9325 S:      Maintained
9326 F:      drivers/platform/x86/intel/atomisp2/led.c
9327
9328 INTEL BIOS SAR INT1092 DRIVER
9329 M:      Shravan Sudhakar <s.shravan@intel.com>
9330 M:      Intel Corporation <linuxwwan@intel.com>
9331 L:      platform-driver-x86@vger.kernel.org
9332 S:      Maintained
9333 F:      drivers/platform/x86/intel/int1092/
9334
9335 INTEL BROXTON PMC DRIVER
9336 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9337 M:      Zha Qipeng <qipeng.zha@intel.com>
9338 S:      Maintained
9339 F:      drivers/mfd/intel_pmc_bxt.c
9340 F:      include/linux/mfd/intel_pmc_bxt.h
9341
9342 INTEL C600 SERIES SAS CONTROLLER DRIVER
9343 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9344 L:      linux-scsi@vger.kernel.org
9345 S:      Supported
9346 T:      git git://git.code.sf.net/p/intel-sas/isci
9347 F:      drivers/scsi/isci/
9348
9349 INTEL CPU family model numbers
9350 M:      Tony Luck <tony.luck@intel.com>
9351 M:      x86@kernel.org
9352 L:      linux-kernel@vger.kernel.org
9353 S:      Supported
9354 F:      arch/x86/include/asm/intel-family.h
9355
9356 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9357 M:      Jani Nikula <jani.nikula@linux.intel.com>
9358 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9359 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9360 L:      intel-gfx@lists.freedesktop.org
9361 S:      Supported
9362 W:      https://01.org/linuxgraphics/
9363 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9364 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9365 C:      irc://irc.oftc.net/intel-gfx
9366 T:      git git://anongit.freedesktop.org/drm-intel
9367 F:      Documentation/gpu/i915.rst
9368 F:      drivers/gpu/drm/i915/
9369 F:      include/drm/i915*
9370 F:      include/uapi/drm/i915_drm.h
9371
9372 INTEL ETHERNET DRIVERS
9373 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9374 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9375 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9376 S:      Supported
9377 W:      http://www.intel.com/support/feedback.htm
9378 W:      http://e1000.sourceforge.net/
9379 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9382 F:      Documentation/networking/device_drivers/ethernet/intel/
9383 F:      drivers/net/ethernet/intel/
9384 F:      drivers/net/ethernet/intel/*/
9385 F:      include/linux/avf/virtchnl.h
9386 F:      include/linux/net/intel/iidc.h
9387
9388 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9389 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9390 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9391 L:      linux-rdma@vger.kernel.org
9392 S:      Supported
9393 F:      drivers/infiniband/hw/irdma/
9394 F:      include/uapi/rdma/irdma-abi.h
9395
9396 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9397 M:      Maik Broemme <mbroemme@libmpq.org>
9398 L:      linux-fbdev@vger.kernel.org
9399 S:      Maintained
9400 F:      Documentation/fb/intelfb.rst
9401 F:      drivers/video/fbdev/intelfb/
9402
9403 INTEL GPIO DRIVERS
9404 M:      Andy Shevchenko <andy@kernel.org>
9405 L:      linux-gpio@vger.kernel.org
9406 S:      Maintained
9407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9408 F:      drivers/gpio/gpio-ich.c
9409 F:      drivers/gpio/gpio-merrifield.c
9410 F:      drivers/gpio/gpio-ml-ioh.c
9411 F:      drivers/gpio/gpio-pch.c
9412 F:      drivers/gpio/gpio-sch.c
9413 F:      drivers/gpio/gpio-sodaville.c
9414
9415 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9416 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9417 M:      Zhi Wang <zhi.a.wang@intel.com>
9418 L:      intel-gvt-dev@lists.freedesktop.org
9419 L:      intel-gfx@lists.freedesktop.org
9420 S:      Supported
9421 W:      https://01.org/igvt-g
9422 T:      git https://github.com/intel/gvt-linux.git
9423 F:      drivers/gpu/drm/i915/gvt/
9424
9425 INTEL HID EVENT DRIVER
9426 M:      Alex Hung <alex.hung@canonical.com>
9427 L:      platform-driver-x86@vger.kernel.org
9428 S:      Maintained
9429 F:      drivers/platform/x86/intel/hid.c
9430
9431 INTEL I/OAT DMA DRIVER
9432 M:      Dave Jiang <dave.jiang@intel.com>
9433 R:      Dan Williams <dan.j.williams@intel.com>
9434 L:      dmaengine@vger.kernel.org
9435 S:      Supported
9436 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9437 F:      drivers/dma/ioat*
9438
9439 INTEL IADX DRIVER
9440 M:      Dave Jiang <dave.jiang@intel.com>
9441 L:      dmaengine@vger.kernel.org
9442 S:      Supported
9443 F:      drivers/dma/idxd/*
9444 F:      include/uapi/linux/idxd.h
9445
9446 INTEL IDLE DRIVER
9447 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9448 M:      Len Brown <lenb@kernel.org>
9449 L:      linux-pm@vger.kernel.org
9450 S:      Supported
9451 B:      https://bugzilla.kernel.org
9452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9453 F:      drivers/idle/intel_idle.c
9454
9455 INTEL INTEGRATED SENSOR HUB DRIVER
9456 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9457 M:      Jiri Kosina <jikos@kernel.org>
9458 L:      linux-input@vger.kernel.org
9459 S:      Maintained
9460 F:      drivers/hid/intel-ish-hid/
9461
9462 INTEL IOMMU (VT-d)
9463 M:      David Woodhouse <dwmw2@infradead.org>
9464 M:      Lu Baolu <baolu.lu@linux.intel.com>
9465 L:      iommu@lists.linux-foundation.org
9466 L:      iommu@lists.linux.dev
9467 S:      Supported
9468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9469 F:      drivers/iommu/intel/
9470 F:      include/linux/intel-iommu.h
9471 F:      include/linux/intel-svm.h
9472
9473 INTEL IOP-ADMA DMA DRIVER
9474 R:      Dan Williams <dan.j.williams@intel.com>
9475 S:      Odd fixes
9476 F:      drivers/dma/iop-adma.c
9477
9478 INTEL IPU3 CSI-2 CIO2 DRIVER
9479 M:      Yong Zhi <yong.zhi@intel.com>
9480 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9481 M:      Bingbu Cao <bingbu.cao@intel.com>
9482 M:      Dan Scally <djrscally@gmail.com>
9483 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9484 L:      linux-media@vger.kernel.org
9485 S:      Maintained
9486 T:      git git://linuxtv.org/media_tree.git
9487 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9488 F:      drivers/media/pci/intel/ipu3/
9489
9490 INTEL IPU3 CSI-2 IMGU DRIVER
9491 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9492 R:      Bingbu Cao <bingbu.cao@intel.com>
9493 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9494 L:      linux-media@vger.kernel.org
9495 S:      Maintained
9496 F:      Documentation/admin-guide/media/ipu3.rst
9497 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9498 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9499 F:      drivers/staging/media/ipu3/
9500
9501 INTEL IXP4XX CRYPTO SUPPORT
9502 M:      Corentin Labbe <clabbe@baylibre.com>
9503 L:      linux-crypto@vger.kernel.org
9504 S:      Maintained
9505 F:      drivers/crypto/ixp4xx_crypto.c
9506
9507 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9508 M:      Krzysztof Halasa <khalasa@piap.pl>
9509 S:      Maintained
9510 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9511 F:      drivers/net/wan/ixp4xx_hss.c
9512 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9513 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9514 F:      include/linux/soc/ixp4xx/npe.h
9515 F:      include/linux/soc/ixp4xx/qmgr.h
9516
9517 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9518 M:      Deepak Saxena <dsaxena@plexity.net>
9519 S:      Maintained
9520 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9521 F:      drivers/char/hw_random/ixp4xx-rng.c
9522
9523 INTEL KEEM BAY DRM DRIVER
9524 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9525 M:      Edmund Dea <edmund.j.dea@intel.com>
9526 S:      Maintained
9527 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9528 F:      drivers/gpu/drm/kmb/
9529
9530 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9531 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9532 S:      Maintained
9533 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9534 F:      drivers/crypto/keembay/Kconfig
9535 F:      drivers/crypto/keembay/Makefile
9536 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9537 F:      drivers/crypto/keembay/ocs-aes.c
9538 F:      drivers/crypto/keembay/ocs-aes.h
9539
9540 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9541 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9542 M:      Declan Murphy <declan.murphy@intel.com>
9543 S:      Maintained
9544 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9545 F:      drivers/crypto/keembay/Kconfig
9546 F:      drivers/crypto/keembay/Makefile
9547 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9548 F:      drivers/crypto/keembay/ocs-hcu.c
9549 F:      drivers/crypto/keembay/ocs-hcu.h
9550
9551 INTEL MANAGEMENT ENGINE (mei)
9552 M:      Tomas Winkler <tomas.winkler@intel.com>
9553 L:      linux-kernel@vger.kernel.org
9554 S:      Supported
9555 F:      Documentation/driver-api/mei/*
9556 F:      drivers/misc/mei/
9557 F:      drivers/watchdog/mei_wdt.c
9558 F:      include/linux/mei_cl_bus.h
9559 F:      include/uapi/linux/mei.h
9560 F:      samples/mei/*
9561
9562 INTEL MAX 10 BMC MFD DRIVER
9563 M:      Xu Yilun <yilun.xu@intel.com>
9564 R:      Tom Rix <trix@redhat.com>
9565 S:      Maintained
9566 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9567 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9568 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9569 F:      drivers/mfd/intel-m10-bmc.c
9570 F:      include/linux/mfd/intel-m10-bmc.h
9571
9572 INTEL MENLOW THERMAL DRIVER
9573 M:      Sujith Thomas <sujith.thomas@intel.com>
9574 L:      linux-pm@vger.kernel.org
9575 S:      Supported
9576 W:      https://01.org/linux-acpi
9577 F:      drivers/thermal/intel/intel_menlow.c
9578
9579 INTEL P-Unit IPC DRIVER
9580 M:      Zha Qipeng <qipeng.zha@intel.com>
9581 L:      platform-driver-x86@vger.kernel.org
9582 S:      Maintained
9583 F:      arch/x86/include/asm/intel_punit_ipc.h
9584 F:      drivers/platform/x86/intel/punit_ipc.c
9585
9586 INTEL PMC CORE DRIVER
9587 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9588 M:      David E Box <david.e.box@intel.com>
9589 L:      platform-driver-x86@vger.kernel.org
9590 S:      Maintained
9591 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9592 F:      drivers/platform/x86/intel/pmc/
9593
9594 INTEL PMIC GPIO DRIVERS
9595 M:      Andy Shevchenko <andy@kernel.org>
9596 S:      Maintained
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9598 F:      drivers/gpio/gpio-*cove.c
9599
9600 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9601 M:      Andy Shevchenko <andy@kernel.org>
9602 S:      Maintained
9603 F:      drivers/mfd/intel_soc_pmic*
9604 F:      include/linux/mfd/intel_soc_pmic*
9605
9606 INTEL PMT DRIVER
9607 M:      "David E. Box" <david.e.box@linux.intel.com>
9608 S:      Maintained
9609 F:      drivers/mfd/intel_pmt.c
9610 F:      drivers/platform/x86/intel/pmt/
9611
9612 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9613 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9614 L:      linux-wireless@vger.kernel.org
9615 S:      Maintained
9616 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9617 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9618 F:      drivers/net/wireless/intel/ipw2x00/
9619
9620 INTEL PSTATE DRIVER
9621 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9622 M:      Len Brown <lenb@kernel.org>
9623 L:      linux-pm@vger.kernel.org
9624 S:      Supported
9625 F:      drivers/cpufreq/intel_pstate.c
9626
9627 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9628 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9629 L:      linux-iio@vger.kernel.org
9630 F:      drivers/counter/intel-qep.c
9631
9632 INTEL SCU DRIVERS
9633 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9634 S:      Maintained
9635 F:      arch/x86/include/asm/intel_scu_ipc.h
9636 F:      drivers/platform/x86/intel_scu_*
9637
9638 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9639 M:      Daniel Scally <djrscally@gmail.com>
9640 S:      Maintained
9641 F:      drivers/platform/x86/intel/int3472/
9642
9643 INTEL SPEED SELECT TECHNOLOGY
9644 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9645 L:      platform-driver-x86@vger.kernel.org
9646 S:      Maintained
9647 F:      drivers/platform/x86/intel/speed_select_if/
9648 F:      include/uapi/linux/isst_if.h
9649 F:      tools/power/x86/intel-speed-select/
9650
9651 INTEL STRATIX10 FIRMWARE DRIVERS
9652 M:      Dinh Nguyen <dinguyen@kernel.org>
9653 L:      linux-kernel@vger.kernel.org
9654 S:      Maintained
9655 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9656 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9657 F:      drivers/firmware/stratix10-rsu.c
9658 F:      drivers/firmware/stratix10-svc.c
9659 F:      include/linux/firmware/intel/stratix10-smc.h
9660 F:      include/linux/firmware/intel/stratix10-svc-client.h
9661
9662 INTEL TELEMETRY DRIVER
9663 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9664 M:      "David E. Box" <david.e.box@linux.intel.com>
9665 L:      platform-driver-x86@vger.kernel.org
9666 S:      Maintained
9667 F:      arch/x86/include/asm/intel_telemetry.h
9668 F:      drivers/platform/x86/intel/telemetry/
9669
9670 INTEL UNCORE FREQUENCY CONTROL
9671 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9672 L:      platform-driver-x86@vger.kernel.org
9673 S:      Maintained
9674 F:      drivers/platform/x86/intel/uncore-frequency.c
9675
9676 INTEL VIRTUAL BUTTON DRIVER
9677 M:      AceLan Kao <acelan.kao@canonical.com>
9678 L:      platform-driver-x86@vger.kernel.org
9679 S:      Maintained
9680 F:      drivers/platform/x86/intel/vbtn.c
9681
9682 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9683 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9684 L:      linux-wireless@vger.kernel.org
9685 S:      Supported
9686 F:      drivers/net/wireless/intel/iwlegacy/
9687
9688 INTEL WIRELESS WIFI LINK (iwlwifi)
9689 M:      Luca Coelho <luciano.coelho@intel.com>
9690 L:      linux-wireless@vger.kernel.org
9691 S:      Supported
9692 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9694 F:      drivers/net/wireless/intel/iwlwifi/
9695
9696 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9697 M:      Jithu Joseph <jithu.joseph@intel.com>
9698 R:      Maurice Ma <maurice.ma@intel.com>
9699 S:      Maintained
9700 W:      https://slimbootloader.github.io/security/firmware-update.html
9701 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9702
9703 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9704 L:      Dell.Client.Kernel@dell.com
9705 S:      Maintained
9706 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9707
9708 INTEL WWAN IOSM DRIVER
9709 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9710 M:      Intel Corporation <linuxwwan@intel.com>
9711 L:      netdev@vger.kernel.org
9712 S:      Maintained
9713 F:      drivers/net/wwan/iosm/
9714
9715 INTEL(R) TRACE HUB
9716 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9717 S:      Supported
9718 F:      Documentation/trace/intel_th.rst
9719 F:      drivers/hwtracing/intel_th/
9720 F:      include/linux/intel_th.h
9721
9722 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9723 M:      Ning Sun <ning.sun@intel.com>
9724 L:      tboot-devel@lists.sourceforge.net
9725 S:      Supported
9726 W:      http://tboot.sourceforge.net
9727 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9728 F:      Documentation/x86/intel_txt.rst
9729 F:      arch/x86/kernel/tboot.c
9730 F:      include/linux/tboot.h
9731
9732 INTEL SGX
9733 M:      Jarkko Sakkinen <jarkko@kernel.org>
9734 R:      Dave Hansen <dave.hansen@linux.intel.com>
9735 L:      linux-sgx@vger.kernel.org
9736 S:      Supported
9737 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9739 F:      Documentation/x86/sgx.rst
9740 F:      arch/x86/entry/vdso/vsgx.S
9741 F:      arch/x86/include/asm/sgx.h
9742 F:      arch/x86/include/uapi/asm/sgx.h
9743 F:      arch/x86/kernel/cpu/sgx/*
9744 F:      tools/testing/selftests/sgx/*
9745 K:      \bSGX_
9746
9747 INTERCONNECT API
9748 M:      Georgi Djakov <djakov@kernel.org>
9749 L:      linux-pm@vger.kernel.org
9750 S:      Maintained
9751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9752 F:      Documentation/devicetree/bindings/interconnect/
9753 F:      Documentation/driver-api/interconnect.rst
9754 F:      drivers/interconnect/
9755 F:      include/dt-bindings/interconnect/
9756 F:      include/linux/interconnect-provider.h
9757 F:      include/linux/interconnect.h
9758
9759 INTERRUPT COUNTER DRIVER
9760 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9761 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9762 L:      linux-iio@vger.kernel.org
9763 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9764 F:      drivers/counter/interrupt-cnt.c
9765
9766 INVENSENSE ICM-426xx IMU DRIVER
9767 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9768 L:      linux-iio@vger.kernel.org
9769 S:      Maintained
9770 W:      https://invensense.tdk.com/
9771 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9772 F:      drivers/iio/imu/inv_icm42600/
9773
9774 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9775 M:      Linus Walleij <linus.walleij@linaro.org>
9776 L:      linux-iio@vger.kernel.org
9777 S:      Maintained
9778 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9779 F:      drivers/iio/gyro/mpu3050*
9780
9781 IOC3 ETHERNET DRIVER
9782 M:      Ralf Baechle <ralf@linux-mips.org>
9783 L:      linux-mips@vger.kernel.org
9784 S:      Maintained
9785 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9786
9787 IOMAP FILESYSTEM LIBRARY
9788 M:      Christoph Hellwig <hch@infradead.org>
9789 M:      Darrick J. Wong <djwong@kernel.org>
9790 M:      linux-xfs@vger.kernel.org
9791 M:      linux-fsdevel@vger.kernel.org
9792 L:      linux-xfs@vger.kernel.org
9793 L:      linux-fsdevel@vger.kernel.org
9794 S:      Supported
9795 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9796 F:      fs/iomap/
9797 F:      include/linux/iomap.h
9798
9799 IOMMU DRIVERS
9800 M:      Joerg Roedel <joro@8bytes.org>
9801 M:      Will Deacon <will@kernel.org>
9802 L:      iommu@lists.linux-foundation.org
9803 L:      iommu@lists.linux.dev
9804 S:      Maintained
9805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9806 F:      Documentation/devicetree/bindings/iommu/
9807 F:      Documentation/userspace-api/iommu.rst
9808 F:      drivers/iommu/
9809 F:      include/linux/iommu.h
9810 F:      include/linux/iova.h
9811 F:      include/linux/of_iommu.h
9812 F:      include/uapi/linux/iommu.h
9813
9814 IO_URING
9815 M:      Jens Axboe <axboe@kernel.dk>
9816 R:      Pavel Begunkov <asml.silence@gmail.com>
9817 L:      io-uring@vger.kernel.org
9818 S:      Maintained
9819 T:      git git://git.kernel.dk/linux-block
9820 T:      git git://git.kernel.dk/liburing
9821 F:      fs/io-wq.c
9822 F:      fs/io-wq.h
9823 F:      fs/io_uring.c
9824 F:      include/linux/io_uring.h
9825 F:      include/uapi/linux/io_uring.h
9826 F:      tools/io_uring/
9827
9828 IPMI SUBSYSTEM
9829 M:      Corey Minyard <minyard@acm.org>
9830 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9831 S:      Supported
9832 W:      http://openipmi.sourceforge.net/
9833 F:      Documentation/driver-api/ipmi.rst
9834 F:      Documentation/devicetree/bindings/ipmi/
9835 F:      drivers/char/ipmi/
9836 F:      include/linux/ipmi*
9837 F:      include/uapi/linux/ipmi*
9838
9839 IPS SCSI RAID DRIVER
9840 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9841 L:      linux-scsi@vger.kernel.org
9842 S:      Maintained
9843 W:      http://www.adaptec.com/
9844 F:      drivers/scsi/ips*
9845
9846 IPVS
9847 M:      Simon Horman <horms@verge.net.au>
9848 M:      Julian Anastasov <ja@ssi.bg>
9849 L:      netdev@vger.kernel.org
9850 L:      lvs-devel@vger.kernel.org
9851 S:      Maintained
9852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9854 F:      Documentation/networking/ipvs-sysctl.rst
9855 F:      include/net/ip_vs.h
9856 F:      include/uapi/linux/ip_vs.h
9857 F:      net/netfilter/ipvs/
9858
9859 IPWIRELESS DRIVER
9860 M:      Jiri Kosina <jikos@kernel.org>
9861 M:      David Sterba <dsterba@suse.com>
9862 S:      Odd Fixes
9863 F:      drivers/tty/ipwireless/
9864
9865 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9866 M:      Marc Zyngier <maz@kernel.org>
9867 S:      Maintained
9868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9869 F:      Documentation/core-api/irq/irq-domain.rst
9870 F:      include/linux/irqdomain.h
9871 F:      kernel/irq/irqdomain.c
9872 F:      kernel/irq/msi.c
9873
9874 IRQ SUBSYSTEM
9875 M:      Thomas Gleixner <tglx@linutronix.de>
9876 L:      linux-kernel@vger.kernel.org
9877 S:      Maintained
9878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9879 F:      kernel/irq/
9880
9881 IRQCHIP DRIVERS
9882 M:      Thomas Gleixner <tglx@linutronix.de>
9883 M:      Marc Zyngier <maz@kernel.org>
9884 L:      linux-kernel@vger.kernel.org
9885 S:      Maintained
9886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9887 F:      Documentation/devicetree/bindings/interrupt-controller/
9888 F:      drivers/irqchip/
9889
9890 ISA
9891 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9892 S:      Maintained
9893 F:      Documentation/driver-api/isa.rst
9894 F:      drivers/base/isa.c
9895 F:      include/linux/isa.h
9896
9897 ISA RADIO MODULE
9898 M:      Hans Verkuil <hverkuil@xs4all.nl>
9899 L:      linux-media@vger.kernel.org
9900 S:      Maintained
9901 W:      https://linuxtv.org
9902 T:      git git://linuxtv.org/media_tree.git
9903 F:      drivers/media/radio/radio-isa*
9904
9905 ISAPNP
9906 M:      Jaroslav Kysela <perex@perex.cz>
9907 S:      Maintained
9908 F:      Documentation/driver-api/isapnp.rst
9909 F:      drivers/pnp/isapnp/
9910 F:      include/linux/isapnp.h
9911
9912 ISCSI
9913 M:      Lee Duncan <lduncan@suse.com>
9914 M:      Chris Leech <cleech@redhat.com>
9915 L:      open-iscsi@googlegroups.com
9916 L:      linux-scsi@vger.kernel.org
9917 S:      Maintained
9918 W:      www.open-iscsi.com
9919 F:      drivers/scsi/*iscsi*
9920 F:      include/scsi/*iscsi*
9921
9922 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9923 M:      Peter Jones <pjones@redhat.com>
9924 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9925 S:      Maintained
9926 F:      drivers/firmware/iscsi_ibft*
9927
9928 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9929 M:      Sagi Grimberg <sagi@grimberg.me>
9930 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9931 L:      linux-rdma@vger.kernel.org
9932 S:      Supported
9933 W:      http://www.openfabrics.org
9934 W:      www.open-iscsi.org
9935 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9936 F:      drivers/infiniband/ulp/iser/
9937
9938 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9939 M:      Sagi Grimberg <sagi@grimberg.me>
9940 L:      linux-rdma@vger.kernel.org
9941 L:      target-devel@vger.kernel.org
9942 S:      Supported
9943 W:      http://www.linux-iscsi.org
9944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9945 F:      drivers/infiniband/ulp/isert
9946
9947 ISDN/CMTP OVER BLUETOOTH
9948 M:      Karsten Keil <isdn@linux-pingi.de>
9949 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9950 L:      netdev@vger.kernel.org
9951 S:      Odd Fixes
9952 W:      http://www.isdn4linux.de
9953 F:      Documentation/isdn/
9954 F:      drivers/isdn/capi/
9955 F:      include/linux/isdn/
9956 F:      include/uapi/linux/isdn/
9957 F:      net/bluetooth/cmtp/
9958
9959 ISDN/mISDN SUBSYSTEM
9960 M:      Karsten Keil <isdn@linux-pingi.de>
9961 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9962 L:      netdev@vger.kernel.org
9963 S:      Maintained
9964 W:      http://www.isdn4linux.de
9965 F:      drivers/isdn/Kconfig
9966 F:      drivers/isdn/Makefile
9967 F:      drivers/isdn/hardware/
9968 F:      drivers/isdn/mISDN/
9969
9970 IT87 HARDWARE MONITORING DRIVER
9971 M:      Jean Delvare <jdelvare@suse.com>
9972 L:      linux-hwmon@vger.kernel.org
9973 S:      Maintained
9974 F:      Documentation/hwmon/it87.rst
9975 F:      drivers/hwmon/it87.c
9976
9977 IT913X MEDIA DRIVER
9978 M:      Antti Palosaari <crope@iki.fi>
9979 L:      linux-media@vger.kernel.org
9980 S:      Maintained
9981 W:      https://linuxtv.org
9982 W:      http://palosaari.fi/linux/
9983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9984 T:      git git://linuxtv.org/anttip/media_tree.git
9985 F:      drivers/media/tuners/it913x*
9986
9987 ITE IT66121 HDMI BRIDGE DRIVER
9988 M:      Phong LE <ple@baylibre.com>
9989 M:      Neil Armstrong <narmstrong@baylibre.com>
9990 S:      Maintained
9991 T:      git git://anongit.freedesktop.org/drm/drm-misc
9992 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
9993 F:      drivers/gpu/drm/bridge/ite-it66121.c
9994
9995 IVTV VIDEO4LINUX DRIVER
9996 M:      Andy Walls <awalls@md.metrocast.net>
9997 L:      linux-media@vger.kernel.org
9998 S:      Maintained
9999 W:      https://linuxtv.org
10000 T:      git git://linuxtv.org/media_tree.git
10001 F:      Documentation/admin-guide/media/ivtv*
10002 F:      drivers/media/pci/ivtv/
10003 F:      include/uapi/linux/ivtv*
10004
10005 IX2505V MEDIA DRIVER
10006 M:      Malcolm Priestley <tvboxspy@gmail.com>
10007 L:      linux-media@vger.kernel.org
10008 S:      Maintained
10009 W:      https://linuxtv.org
10010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10011 F:      drivers/media/dvb-frontends/ix2505v*
10012
10013 JAILHOUSE HYPERVISOR INTERFACE
10014 M:      Jan Kiszka <jan.kiszka@siemens.com>
10015 L:      jailhouse-dev@googlegroups.com
10016 S:      Maintained
10017 F:      arch/x86/include/asm/jailhouse_para.h
10018 F:      arch/x86/kernel/jailhouse.c
10019
10020 JC42.4 TEMPERATURE SENSOR DRIVER
10021 M:      Guenter Roeck <linux@roeck-us.net>
10022 L:      linux-hwmon@vger.kernel.org
10023 S:      Maintained
10024 F:      Documentation/hwmon/jc42.rst
10025 F:      drivers/hwmon/jc42.c
10026
10027 JFS FILESYSTEM
10028 M:      Dave Kleikamp <shaggy@kernel.org>
10029 L:      jfs-discussion@lists.sourceforge.net
10030 S:      Maintained
10031 W:      http://jfs.sourceforge.net/
10032 T:      git git://github.com/kleikamp/linux-shaggy.git
10033 F:      Documentation/admin-guide/jfs.rst
10034 F:      fs/jfs/
10035
10036 JME NETWORK DRIVER
10037 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10038 L:      netdev@vger.kernel.org
10039 S:      Maintained
10040 F:      drivers/net/ethernet/jme.*
10041
10042 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10043 M:      David Woodhouse <dwmw2@infradead.org>
10044 M:      Richard Weinberger <richard@nod.at>
10045 L:      linux-mtd@lists.infradead.org
10046 S:      Odd Fixes
10047 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10048 T:      git git://git.infradead.org/ubifs-2.6.git
10049 F:      fs/jffs2/
10050 F:      include/uapi/linux/jffs2.h
10051
10052 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10053 M:      "Theodore Ts'o" <tytso@mit.edu>
10054 M:      Jan Kara <jack@suse.com>
10055 L:      linux-ext4@vger.kernel.org
10056 S:      Maintained
10057 F:      fs/jbd2/
10058 F:      include/linux/jbd2.h
10059
10060 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10061 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10062 L:      linux-media@vger.kernel.org
10063 S:      Maintained
10064 F:      drivers/media/platform/rcar_jpu.c
10065
10066 JSM Neo PCI based serial card
10067 L:      linux-serial@vger.kernel.org
10068 S:      Orphan
10069 F:      drivers/tty/serial/jsm/
10070
10071 K10TEMP HARDWARE MONITORING DRIVER
10072 M:      Clemens Ladisch <clemens@ladisch.de>
10073 L:      linux-hwmon@vger.kernel.org
10074 S:      Maintained
10075 F:      Documentation/hwmon/k10temp.rst
10076 F:      drivers/hwmon/k10temp.c
10077
10078 K8TEMP HARDWARE MONITORING DRIVER
10079 M:      Rudolf Marek <r.marek@assembler.cz>
10080 L:      linux-hwmon@vger.kernel.org
10081 S:      Maintained
10082 F:      Documentation/hwmon/k8temp.rst
10083 F:      drivers/hwmon/k8temp.c
10084
10085 KASAN
10086 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10087 R:      Alexander Potapenko <glider@google.com>
10088 R:      Andrey Konovalov <andreyknvl@gmail.com>
10089 R:      Dmitry Vyukov <dvyukov@google.com>
10090 L:      kasan-dev@googlegroups.com
10091 S:      Maintained
10092 F:      Documentation/dev-tools/kasan.rst
10093 F:      arch/*/include/asm/*kasan.h
10094 F:      arch/*/mm/kasan_init*
10095 F:      include/linux/kasan*.h
10096 F:      lib/Kconfig.kasan
10097 F:      lib/test_kasan*.c
10098 F:      mm/kasan/
10099 F:      scripts/Makefile.kasan
10100
10101 KCONFIG
10102 M:      Masahiro Yamada <masahiroy@kernel.org>
10103 L:      linux-kbuild@vger.kernel.org
10104 S:      Maintained
10105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10106 F:      Documentation/kbuild/kconfig*
10107 F:      scripts/Kconfig.include
10108 F:      scripts/kconfig/
10109
10110 KCOV
10111 R:      Dmitry Vyukov <dvyukov@google.com>
10112 R:      Andrey Konovalov <andreyknvl@gmail.com>
10113 L:      kasan-dev@googlegroups.com
10114 S:      Maintained
10115 F:      Documentation/dev-tools/kcov.rst
10116 F:      include/linux/kcov.h
10117 F:      include/uapi/linux/kcov.h
10118 F:      kernel/kcov.c
10119 F:      scripts/Makefile.kcov
10120
10121 KCSAN
10122 M:      Marco Elver <elver@google.com>
10123 R:      Dmitry Vyukov <dvyukov@google.com>
10124 L:      kasan-dev@googlegroups.com
10125 S:      Maintained
10126 F:      Documentation/dev-tools/kcsan.rst
10127 F:      include/linux/kcsan*.h
10128 F:      kernel/kcsan/
10129 F:      lib/Kconfig.kcsan
10130 F:      scripts/Makefile.kcsan
10131
10132 KDUMP
10133 M:      Dave Young <dyoung@redhat.com>
10134 M:      Baoquan He <bhe@redhat.com>
10135 R:      Vivek Goyal <vgoyal@redhat.com>
10136 L:      kexec@lists.infradead.org
10137 S:      Maintained
10138 W:      http://lse.sourceforge.net/kdump/
10139 F:      Documentation/admin-guide/kdump/
10140 F:      fs/proc/vmcore.c
10141 F:      include/linux/crash_core.h
10142 F:      include/linux/crash_dump.h
10143 F:      include/uapi/linux/vmcore.h
10144 F:      kernel/crash_*.c
10145
10146 KEENE FM RADIO TRANSMITTER DRIVER
10147 M:      Hans Verkuil <hverkuil@xs4all.nl>
10148 L:      linux-media@vger.kernel.org
10149 S:      Maintained
10150 W:      https://linuxtv.org
10151 T:      git git://linuxtv.org/media_tree.git
10152 F:      drivers/media/radio/radio-keene*
10153
10154 KERNEL AUTOMOUNTER
10155 M:      Ian Kent <raven@themaw.net>
10156 L:      autofs@vger.kernel.org
10157 S:      Maintained
10158 F:      fs/autofs/
10159
10160 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10161 M:      Masahiro Yamada <masahiroy@kernel.org>
10162 M:      Michal Marek <michal.lkml@markovi.net>
10163 R:      Nick Desaulniers <ndesaulniers@google.com>
10164 L:      linux-kbuild@vger.kernel.org
10165 S:      Maintained
10166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10167 F:      Documentation/kbuild/
10168 F:      Makefile
10169 F:      scripts/*vmlinux*
10170 F:      scripts/Kbuild*
10171 F:      scripts/Makefile*
10172 F:      scripts/basic/
10173 F:      scripts/dummy-tools/
10174 F:      scripts/mk*
10175 F:      scripts/mod/
10176 F:      scripts/package/
10177
10178 KERNEL JANITORS
10179 L:      kernel-janitors@vger.kernel.org
10180 S:      Odd Fixes
10181 W:      http://kernelnewbies.org/KernelJanitors
10182
10183 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10184 M:      "J. Bruce Fields" <bfields@fieldses.org>
10185 M:      Chuck Lever <chuck.lever@oracle.com>
10186 L:      linux-nfs@vger.kernel.org
10187 S:      Supported
10188 W:      http://nfs.sourceforge.net/
10189 T:      git git://linux-nfs.org/~bfields/linux.git
10190 F:      fs/lockd/
10191 F:      fs/nfs_common/
10192 F:      fs/nfsd/
10193 F:      include/linux/lockd/
10194 F:      include/linux/sunrpc/
10195 F:      include/uapi/linux/nfsd/
10196 F:      include/uapi/linux/sunrpc/
10197 F:      net/sunrpc/
10198 F:      Documentation/filesystems/nfs/
10199
10200 KERNEL REGRESSIONS
10201 M:      Thorsten Leemhuis <linux@leemhuis.info>
10202 L:      regressions@lists.linux.dev
10203 S:      Supported
10204
10205 KERNEL SELFTEST FRAMEWORK
10206 M:      Shuah Khan <shuah@kernel.org>
10207 M:      Shuah Khan <skhan@linuxfoundation.org>
10208 L:      linux-kselftest@vger.kernel.org
10209 S:      Maintained
10210 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10212 F:      Documentation/dev-tools/kselftest*
10213 F:      tools/testing/selftests/
10214
10215 KERNEL SMB3 SERVER (KSMBD)
10216 M:      Namjae Jeon <linkinjeon@kernel.org>
10217 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10218 M:      Steve French <sfrench@samba.org>
10219 M:      Hyunchul Lee <hyc.lee@gmail.com>
10220 L:      linux-cifs@vger.kernel.org
10221 S:      Maintained
10222 T:      git git://git.samba.org/ksmbd.git
10223 F:      fs/ksmbd/
10224 F:      fs/smbfs_common/
10225
10226 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10227 M:      Brendan Higgins <brendanhiggins@google.com>
10228 L:      linux-kselftest@vger.kernel.org
10229 L:      kunit-dev@googlegroups.com
10230 S:      Maintained
10231 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10232 F:      Documentation/dev-tools/kunit/
10233 F:      include/kunit/
10234 F:      lib/kunit/
10235 F:      tools/testing/kunit/
10236
10237 KERNEL USERMODE HELPER
10238 M:      Luis Chamberlain <mcgrof@kernel.org>
10239 L:      linux-kernel@vger.kernel.org
10240 S:      Maintained
10241 F:      include/linux/umh.h
10242 F:      kernel/umh.c
10243
10244 KERNEL VIRTUAL MACHINE (KVM)
10245 M:      Paolo Bonzini <pbonzini@redhat.com>
10246 L:      kvm@vger.kernel.org
10247 S:      Supported
10248 W:      http://www.linux-kvm.org
10249 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10250 F:      Documentation/virt/kvm/
10251 F:      include/asm-generic/kvm*
10252 F:      include/kvm/iodev.h
10253 F:      include/linux/kvm*
10254 F:      include/trace/events/kvm.h
10255 F:      include/uapi/asm-generic/kvm*
10256 F:      include/uapi/linux/kvm*
10257 F:      tools/kvm/
10258 F:      tools/testing/selftests/kvm/
10259 F:      virt/kvm/*
10260
10261 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10262 M:      Marc Zyngier <maz@kernel.org>
10263 R:      James Morse <james.morse@arm.com>
10264 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10265 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10267 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10268 S:      Maintained
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10270 F:      arch/arm64/include/asm/kvm*
10271 F:      arch/arm64/include/uapi/asm/kvm*
10272 F:      arch/arm64/kvm/
10273 F:      include/kvm/arm_*
10274 F:      tools/testing/selftests/kvm/*/aarch64/
10275 F:      tools/testing/selftests/kvm/aarch64/
10276
10277 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10278 M:      Huacai Chen <chenhuacai@kernel.org>
10279 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10280 L:      linux-mips@vger.kernel.org
10281 L:      kvm@vger.kernel.org
10282 S:      Maintained
10283 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10284 F:      arch/mips/include/asm/kvm*
10285 F:      arch/mips/include/uapi/asm/kvm*
10286 F:      arch/mips/kvm/
10287
10288 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10289 M:      Paul Mackerras <paulus@ozlabs.org>
10290 L:      kvm-ppc@vger.kernel.org
10291 S:      Supported
10292 W:      http://www.linux-kvm.org/
10293 T:      git git://github.com/agraf/linux-2.6.git
10294 F:      arch/powerpc/include/asm/kvm*
10295 F:      arch/powerpc/include/uapi/asm/kvm*
10296 F:      arch/powerpc/kernel/kvm*
10297 F:      arch/powerpc/kvm/
10298
10299 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10300 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10301 M:      Janosch Frank <frankja@linux.ibm.com>
10302 R:      David Hildenbrand <david@redhat.com>
10303 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10304 L:      kvm@vger.kernel.org
10305 S:      Supported
10306 W:      http://www.ibm.com/developerworks/linux/linux390/
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10308 F:      Documentation/virt/kvm/s390*
10309 F:      arch/s390/include/asm/gmap.h
10310 F:      arch/s390/include/asm/kvm*
10311 F:      arch/s390/include/uapi/asm/kvm*
10312 F:      arch/s390/kernel/uv.c
10313 F:      arch/s390/kvm/
10314 F:      arch/s390/mm/gmap.c
10315 F:      tools/testing/selftests/kvm/*/s390x/
10316 F:      tools/testing/selftests/kvm/s390x/
10317
10318 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10319 M:      Paolo Bonzini <pbonzini@redhat.com>
10320 R:      Sean Christopherson <seanjc@google.com>
10321 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10322 R:      Wanpeng Li <wanpengli@tencent.com>
10323 R:      Jim Mattson <jmattson@google.com>
10324 R:      Joerg Roedel <joro@8bytes.org>
10325 L:      kvm@vger.kernel.org
10326 S:      Supported
10327 W:      http://www.linux-kvm.org
10328 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10329 F:      arch/x86/include/asm/kvm*
10330 F:      arch/x86/include/asm/pvclock-abi.h
10331 F:      arch/x86/include/asm/svm.h
10332 F:      arch/x86/include/asm/vmx*.h
10333 F:      arch/x86/include/uapi/asm/kvm*
10334 F:      arch/x86/include/uapi/asm/svm.h
10335 F:      arch/x86/include/uapi/asm/vmx.h
10336 F:      arch/x86/kernel/kvm.c
10337 F:      arch/x86/kernel/kvmclock.c
10338 F:      arch/x86/kvm/
10339 F:      arch/x86/kvm/*/
10340
10341 KERNFS
10342 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10343 M:      Tejun Heo <tj@kernel.org>
10344 S:      Supported
10345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10346 F:      fs/kernfs/
10347 F:      include/linux/kernfs.h
10348
10349 KEXEC
10350 M:      Eric Biederman <ebiederm@xmission.com>
10351 L:      kexec@lists.infradead.org
10352 S:      Maintained
10353 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10354 F:      include/linux/kexec.h
10355 F:      include/uapi/linux/kexec.h
10356 F:      kernel/kexec*
10357
10358 KEYS-ENCRYPTED
10359 M:      Mimi Zohar <zohar@linux.ibm.com>
10360 L:      linux-integrity@vger.kernel.org
10361 L:      keyrings@vger.kernel.org
10362 S:      Supported
10363 F:      Documentation/security/keys/trusted-encrypted.rst
10364 F:      include/keys/encrypted-type.h
10365 F:      security/keys/encrypted-keys/
10366
10367 KEYS-TRUSTED
10368 M:      James Bottomley <jejb@linux.ibm.com>
10369 M:      Jarkko Sakkinen <jarkko@kernel.org>
10370 M:      Mimi Zohar <zohar@linux.ibm.com>
10371 L:      linux-integrity@vger.kernel.org
10372 L:      keyrings@vger.kernel.org
10373 S:      Supported
10374 F:      Documentation/security/keys/trusted-encrypted.rst
10375 F:      include/keys/trusted-type.h
10376 F:      include/keys/trusted_tpm.h
10377 F:      security/keys/trusted-keys/
10378
10379 KEYS-TRUSTED-TEE
10380 M:      Sumit Garg <sumit.garg@linaro.org>
10381 L:      linux-integrity@vger.kernel.org
10382 L:      keyrings@vger.kernel.org
10383 S:      Supported
10384 F:      include/keys/trusted_tee.h
10385 F:      security/keys/trusted-keys/trusted_tee.c
10386
10387 KEYS/KEYRINGS
10388 M:      David Howells <dhowells@redhat.com>
10389 M:      Jarkko Sakkinen <jarkko@kernel.org>
10390 L:      keyrings@vger.kernel.org
10391 S:      Maintained
10392 F:      Documentation/security/keys/core.rst
10393 F:      include/keys/
10394 F:      include/linux/key-type.h
10395 F:      include/linux/key.h
10396 F:      include/linux/keyctl.h
10397 F:      include/uapi/linux/keyctl.h
10398 F:      security/keys/
10399
10400 KFENCE
10401 M:      Alexander Potapenko <glider@google.com>
10402 M:      Marco Elver <elver@google.com>
10403 R:      Dmitry Vyukov <dvyukov@google.com>
10404 L:      kasan-dev@googlegroups.com
10405 S:      Maintained
10406 F:      Documentation/dev-tools/kfence.rst
10407 F:      arch/*/include/asm/kfence.h
10408 F:      include/linux/kfence.h
10409 F:      lib/Kconfig.kfence
10410 F:      mm/kfence/
10411
10412 KFIFO
10413 M:      Stefani Seibold <stefani@seibold.net>
10414 S:      Maintained
10415 F:      include/linux/kfifo.h
10416 F:      lib/kfifo.c
10417 F:      samples/kfifo/
10418
10419 KGDB / KDB /debug_core
10420 M:      Jason Wessel <jason.wessel@windriver.com>
10421 M:      Daniel Thompson <daniel.thompson@linaro.org>
10422 R:      Douglas Anderson <dianders@chromium.org>
10423 L:      kgdb-bugreport@lists.sourceforge.net
10424 S:      Maintained
10425 W:      http://kgdb.wiki.kernel.org/
10426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10427 F:      Documentation/dev-tools/kgdb.rst
10428 F:      drivers/misc/kgdbts.c
10429 F:      drivers/tty/serial/kgdboc.c
10430 F:      include/linux/kdb.h
10431 F:      include/linux/kgdb.h
10432 F:      kernel/debug/
10433
10434 KHADAS MCU MFD DRIVER
10435 M:      Neil Armstrong <narmstrong@baylibre.com>
10436 L:      linux-amlogic@lists.infradead.org
10437 S:      Maintained
10438 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10439 F:      drivers/mfd/khadas-mcu.c
10440 F:      include/linux/mfd/khadas-mcu.h
10441 F:      drivers/thermal/khadas_mcu_fan.c
10442
10443 KMEMLEAK
10444 M:      Catalin Marinas <catalin.marinas@arm.com>
10445 S:      Maintained
10446 F:      Documentation/dev-tools/kmemleak.rst
10447 F:      include/linux/kmemleak.h
10448 F:      mm/kmemleak.c
10449 F:      samples/kmemleak/kmemleak-test.c
10450
10451 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10452 M:      Luis Chamberlain <mcgrof@kernel.org>
10453 L:      linux-kernel@vger.kernel.org
10454 S:      Maintained
10455 F:      include/linux/kmod.h
10456 F:      kernel/kmod.c
10457 F:      lib/test_kmod.c
10458 F:      tools/testing/selftests/kmod/
10459
10460 KPROBES
10461 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10462 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10463 M:      "David S. Miller" <davem@davemloft.net>
10464 M:      Masami Hiramatsu <mhiramat@kernel.org>
10465 S:      Maintained
10466 F:      Documentation/trace/kprobes.rst
10467 F:      include/asm-generic/kprobes.h
10468 F:      include/linux/kprobes.h
10469 F:      kernel/kprobes.c
10470
10471 KS0108 LCD CONTROLLER DRIVER
10472 M:      Miguel Ojeda <ojeda@kernel.org>
10473 S:      Maintained
10474 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10475 F:      drivers/auxdisplay/ks0108.c
10476 F:      include/linux/ks0108.h
10477
10478 KTD253 BACKLIGHT DRIVER
10479 M:      Linus Walleij <linus.walleij@linaro.org>
10480 S:      Maintained
10481 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10482 F:      drivers/video/backlight/ktd253-backlight.c
10483
10484 KTEST
10485 M:      Steven Rostedt <rostedt@goodmis.org>
10486 M:      John Hawley <warthog9@eaglescrag.net>
10487 S:      Maintained
10488 F:      tools/testing/ktest
10489
10490 L3MDEV
10491 M:      David Ahern <dsahern@kernel.org>
10492 L:      netdev@vger.kernel.org
10493 S:      Maintained
10494 F:      include/net/l3mdev.h
10495 F:      net/l3mdev
10496
10497 L7 BPF FRAMEWORK
10498 M:      John Fastabend <john.fastabend@gmail.com>
10499 M:      Daniel Borkmann <daniel@iogearbox.net>
10500 M:      Jakub Sitnicki <jakub@cloudflare.com>
10501 M:      Lorenz Bauer <lmb@cloudflare.com>
10502 L:      netdev@vger.kernel.org
10503 L:      bpf@vger.kernel.org
10504 S:      Maintained
10505 F:      include/linux/skmsg.h
10506 F:      net/core/skmsg.c
10507 F:      net/core/sock_map.c
10508 F:      net/ipv4/tcp_bpf.c
10509 F:      net/ipv4/udp_bpf.c
10510 F:      net/unix/unix_bpf.c
10511
10512 LANDLOCK SECURITY MODULE
10513 M:      Mickaël Salaün <mic@digikod.net>
10514 L:      linux-security-module@vger.kernel.org
10515 S:      Supported
10516 W:      https://landlock.io
10517 T:      git https://github.com/landlock-lsm/linux.git
10518 F:      Documentation/security/landlock.rst
10519 F:      Documentation/userspace-api/landlock.rst
10520 F:      include/uapi/linux/landlock.h
10521 F:      samples/landlock/
10522 F:      security/landlock/
10523 F:      tools/testing/selftests/landlock/
10524 K:      landlock
10525 K:      LANDLOCK
10526
10527 LANTIQ / INTEL Ethernet drivers
10528 M:      Hauke Mehrtens <hauke@hauke-m.de>
10529 L:      netdev@vger.kernel.org
10530 S:      Maintained
10531 F:      drivers/net/dsa/lantiq_gswip.c
10532 F:      drivers/net/dsa/lantiq_pce.h
10533 F:      drivers/net/ethernet/lantiq_xrx200.c
10534 F:      net/dsa/tag_gswip.c
10535
10536 LANTIQ MIPS ARCHITECTURE
10537 M:      John Crispin <john@phrozen.org>
10538 L:      linux-mips@vger.kernel.org
10539 S:      Maintained
10540 F:      arch/mips/lantiq
10541 F:      drivers/soc/lantiq
10542
10543 LASI 53c700 driver for PARISC
10544 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10545 L:      linux-scsi@vger.kernel.org
10546 S:      Maintained
10547 F:      Documentation/scsi/53c700.rst
10548 F:      drivers/scsi/53c700*
10549
10550 LEAKING_ADDRESSES
10551 M:      Tobin C. Harding <me@tobin.cc>
10552 M:      Tycho Andersen <tycho@tycho.pizza>
10553 L:      linux-hardening@vger.kernel.org
10554 S:      Maintained
10555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10556 F:      scripts/leaking_addresses.pl
10557
10558 LED SUBSYSTEM
10559 M:      Pavel Machek <pavel@ucw.cz>
10560 L:      linux-leds@vger.kernel.org
10561 S:      Maintained
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10563 F:      Documentation/devicetree/bindings/leds/
10564 F:      drivers/leds/
10565 F:      include/linux/leds.h
10566
10567 LEGACY EEPROM DRIVER
10568 M:      Jean Delvare <jdelvare@suse.com>
10569 S:      Maintained
10570 F:      Documentation/misc-devices/eeprom.rst
10571 F:      drivers/misc/eeprom/eeprom.c
10572
10573 LEGO MINDSTORMS EV3
10574 R:      David Lechner <david@lechnology.com>
10575 S:      Maintained
10576 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10577 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10578 F:      drivers/power/supply/lego_ev3_battery.c
10579
10580 LEGO USB Tower driver
10581 M:      Juergen Stuber <starblue@users.sourceforge.net>
10582 L:      legousb-devel@lists.sourceforge.net
10583 S:      Maintained
10584 W:      http://legousb.sourceforge.net/
10585 F:      drivers/usb/misc/legousbtower.c
10586
10587 LG LAPTOP EXTRAS
10588 M:      Matan Ziv-Av <matan@svgalib.org>
10589 L:      platform-driver-x86@vger.kernel.org
10590 S:      Maintained
10591 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10592 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10593 F:      drivers/platform/x86/lg-laptop.c
10594
10595 LG2160 MEDIA DRIVER
10596 M:      Michael Krufky <mkrufky@linuxtv.org>
10597 L:      linux-media@vger.kernel.org
10598 S:      Maintained
10599 W:      https://linuxtv.org
10600 W:      http://github.com/mkrufky
10601 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10602 T:      git git://linuxtv.org/mkrufky/tuners.git
10603 F:      drivers/media/dvb-frontends/lg2160.*
10604
10605 LGDT3305 MEDIA DRIVER
10606 M:      Michael Krufky <mkrufky@linuxtv.org>
10607 L:      linux-media@vger.kernel.org
10608 S:      Maintained
10609 W:      https://linuxtv.org
10610 W:      http://github.com/mkrufky
10611 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10612 T:      git git://linuxtv.org/mkrufky/tuners.git
10613 F:      drivers/media/dvb-frontends/lgdt3305.*
10614
10615 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10616 M:      Viresh Kumar <vireshk@kernel.org>
10617 L:      linux-ide@vger.kernel.org
10618 S:      Maintained
10619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10620 F:      drivers/ata/pata_arasan_cf.c
10621 F:      include/linux/pata_arasan_cf_data.h
10622
10623 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10624 M:      Linus Walleij <linus.walleij@linaro.org>
10625 L:      linux-ide@vger.kernel.org
10626 S:      Maintained
10627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10628 F:      drivers/ata/pata_ftide010.c
10629 F:      drivers/ata/sata_gemini.c
10630 F:      drivers/ata/sata_gemini.h
10631
10632 LIBATA SATA AHCI PLATFORM devices support
10633 M:      Hans de Goede <hdegoede@redhat.com>
10634 M:      Jens Axboe <axboe@kernel.dk>
10635 L:      linux-ide@vger.kernel.org
10636 S:      Maintained
10637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10638 F:      drivers/ata/ahci_platform.c
10639 F:      drivers/ata/libahci_platform.c
10640 F:      include/linux/ahci_platform.h
10641
10642 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10643 M:      Mikael Pettersson <mikpelinux@gmail.com>
10644 L:      linux-ide@vger.kernel.org
10645 S:      Maintained
10646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10647 F:      drivers/ata/sata_promise.*
10648
10649 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10650 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10651 L:      linux-ide@vger.kernel.org
10652 S:      Maintained
10653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10654 F:      Documentation/devicetree/bindings/ata/
10655 F:      drivers/ata/
10656 F:      include/linux/ata.h
10657 F:      include/linux/libata.h
10658
10659 LIBLOCKDEP
10660 M:      Sasha Levin <alexander.levin@microsoft.com>
10661 S:      Maintained
10662 F:      tools/lib/lockdep/
10663
10664 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10665 M:      Dan Williams <dan.j.williams@intel.com>
10666 M:      Vishal Verma <vishal.l.verma@intel.com>
10667 M:      Dave Jiang <dave.jiang@intel.com>
10668 L:      nvdimm@lists.linux.dev
10669 S:      Supported
10670 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10671 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10672 F:      drivers/nvdimm/blk.c
10673 F:      drivers/nvdimm/region_devs.c
10674
10675 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10676 M:      Vishal Verma <vishal.l.verma@intel.com>
10677 M:      Dan Williams <dan.j.williams@intel.com>
10678 M:      Dave Jiang <dave.jiang@intel.com>
10679 L:      nvdimm@lists.linux.dev
10680 S:      Supported
10681 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10682 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10683 F:      drivers/nvdimm/btt*
10684
10685 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10686 M:      Dan Williams <dan.j.williams@intel.com>
10687 M:      Vishal Verma <vishal.l.verma@intel.com>
10688 M:      Dave Jiang <dave.jiang@intel.com>
10689 L:      nvdimm@lists.linux.dev
10690 S:      Supported
10691 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10692 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10693 F:      drivers/nvdimm/pmem*
10694
10695 LIBNVDIMM: DEVICETREE BINDINGS
10696 M:      Oliver O'Halloran <oohall@gmail.com>
10697 L:      nvdimm@lists.linux.dev
10698 S:      Supported
10699 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10700 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10701 F:      drivers/nvdimm/of_pmem.c
10702
10703 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10704 M:      Dan Williams <dan.j.williams@intel.com>
10705 M:      Vishal Verma <vishal.l.verma@intel.com>
10706 M:      Dave Jiang <dave.jiang@intel.com>
10707 M:      Ira Weiny <ira.weiny@intel.com>
10708 L:      nvdimm@lists.linux.dev
10709 S:      Supported
10710 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10711 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10713 F:      drivers/acpi/nfit/*
10714 F:      drivers/nvdimm/*
10715 F:      include/linux/libnvdimm.h
10716 F:      include/linux/nd.h
10717 F:      include/uapi/linux/ndctl.h
10718 F:      tools/testing/nvdimm/
10719
10720 LICENSES and SPDX stuff
10721 M:      Thomas Gleixner <tglx@linutronix.de>
10722 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10723 L:      linux-spdx@vger.kernel.org
10724 S:      Maintained
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10726 F:      COPYING
10727 F:      Documentation/process/license-rules.rst
10728 F:      LICENSES/
10729 F:      scripts/spdxcheck-test.sh
10730 F:      scripts/spdxcheck.py
10731
10732 LINEAR RANGES HELPERS
10733 M:      Mark Brown <broonie@kernel.org>
10734 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10735 F:      lib/linear_ranges.c
10736 F:      lib/test_linear_ranges.c
10737 F:      include/linux/linear_range.h
10738
10739 LINUX FOR POWER MACINTOSH
10740 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10741 L:      linuxppc-dev@lists.ozlabs.org
10742 S:      Odd Fixes
10743 F:      arch/powerpc/platforms/powermac/
10744 F:      drivers/macintosh/
10745
10746 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10747 M:      Michael Ellerman <mpe@ellerman.id.au>
10748 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10749 R:      Paul Mackerras <paulus@samba.org>
10750 L:      linuxppc-dev@lists.ozlabs.org
10751 S:      Supported
10752 W:      https://github.com/linuxppc/wiki/wiki
10753 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10755 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10756 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10757 F:      Documentation/devicetree/bindings/powerpc/
10758 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10759 F:      Documentation/powerpc/
10760 F:      arch/powerpc/
10761 F:      drivers/*/*/*pasemi*
10762 F:      drivers/*/*pasemi*
10763 F:      drivers/char/tpm/tpm_ibmvtpm*
10764 F:      drivers/crypto/nx/
10765 F:      drivers/crypto/vmx/
10766 F:      drivers/i2c/busses/i2c-opal.c
10767 F:      drivers/net/ethernet/ibm/ibmveth.*
10768 F:      drivers/net/ethernet/ibm/ibmvnic.*
10769 F:      drivers/pci/hotplug/pnv_php.c
10770 F:      drivers/pci/hotplug/rpa*
10771 F:      drivers/rtc/rtc-opal.c
10772 F:      drivers/scsi/ibmvscsi/
10773 F:      drivers/tty/hvc/hvc_opal.c
10774 F:      drivers/watchdog/wdrtas.c
10775 F:      tools/testing/selftests/powerpc
10776 N:      /pmac
10777 N:      powermac
10778 N:      powernv
10779 N:      [^a-z0-9]ps3
10780 N:      pseries
10781
10782 LINUX FOR POWERPC EMBEDDED MPC5XXX
10783 M:      Anatolij Gustschin <agust@denx.de>
10784 L:      linuxppc-dev@lists.ozlabs.org
10785 S:      Odd Fixes
10786 F:      arch/powerpc/platforms/512x/
10787 F:      arch/powerpc/platforms/52xx/
10788
10789 LINUX FOR POWERPC EMBEDDED PPC4XX
10790 L:      linuxppc-dev@lists.ozlabs.org
10791 S:      Orphan
10792 F:      arch/powerpc/platforms/40x/
10793 F:      arch/powerpc/platforms/44x/
10794
10795 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10796 M:      Scott Wood <oss@buserror.net>
10797 L:      linuxppc-dev@lists.ozlabs.org
10798 S:      Odd fixes
10799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10800 F:      Documentation/devicetree/bindings/powerpc/fsl/
10801 F:      arch/powerpc/platforms/83xx/
10802 F:      arch/powerpc/platforms/85xx/
10803
10804 LINUX FOR POWERPC EMBEDDED PPC8XX
10805 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10806 L:      linuxppc-dev@lists.ozlabs.org
10807 S:      Maintained
10808 F:      arch/powerpc/platforms/8xx/
10809
10810 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10811 M:      Kees Cook <keescook@chromium.org>
10812 S:      Maintained
10813 F:      drivers/misc/lkdtm/*
10814 F:      tools/testing/selftests/lkdtm/*
10815
10816 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10817 M:      Alan Stern <stern@rowland.harvard.edu>
10818 M:      Andrea Parri <parri.andrea@gmail.com>
10819 M:      Will Deacon <will@kernel.org>
10820 M:      Peter Zijlstra <peterz@infradead.org>
10821 M:      Boqun Feng <boqun.feng@gmail.com>
10822 M:      Nicholas Piggin <npiggin@gmail.com>
10823 M:      David Howells <dhowells@redhat.com>
10824 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10825 M:      Luc Maranget <luc.maranget@inria.fr>
10826 M:      "Paul E. McKenney" <paulmck@kernel.org>
10827 R:      Akira Yokosawa <akiyks@gmail.com>
10828 R:      Daniel Lustig <dlustig@nvidia.com>
10829 R:      Joel Fernandes <joel@joelfernandes.org>
10830 L:      linux-kernel@vger.kernel.org
10831 L:      linux-arch@vger.kernel.org
10832 S:      Supported
10833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10834 F:      Documentation/atomic_bitops.txt
10835 F:      Documentation/atomic_t.txt
10836 F:      Documentation/core-api/refcount-vs-atomic.rst
10837 F:      Documentation/litmus-tests/
10838 F:      Documentation/memory-barriers.txt
10839 F:      tools/memory-model/
10840
10841 LIS3LV02D ACCELEROMETER DRIVER
10842 M:      Eric Piel <eric.piel@tremplin-utc.net>
10843 S:      Maintained
10844 F:      Documentation/misc-devices/lis3lv02d.rst
10845 F:      drivers/misc/lis3lv02d/
10846 F:      drivers/platform/x86/hp_accel.c
10847
10848 LIST KUNIT TEST
10849 M:      David Gow <davidgow@google.com>
10850 L:      linux-kselftest@vger.kernel.org
10851 L:      kunit-dev@googlegroups.com
10852 S:      Maintained
10853 F:      lib/list-test.c
10854
10855 LITEX PLATFORM
10856 M:      Karol Gugala <kgugala@antmicro.com>
10857 M:      Mateusz Holenko <mholenko@antmicro.com>
10858 S:      Maintained
10859 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10860 F:      arch/openrisc/boot/dts/or1klitex.dts
10861 F:      drivers/soc/litex/litex_soc_ctrl.c
10862 F:      drivers/tty/serial/liteuart.c
10863 F:      include/linux/litex.h
10864
10865 LIVE PATCHING
10866 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10867 M:      Jiri Kosina <jikos@kernel.org>
10868 M:      Miroslav Benes <mbenes@suse.cz>
10869 M:      Petr Mladek <pmladek@suse.com>
10870 R:      Joe Lawrence <joe.lawrence@redhat.com>
10871 L:      live-patching@vger.kernel.org
10872 S:      Maintained
10873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10874 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10875 F:      Documentation/livepatch/
10876 F:      arch/powerpc/include/asm/livepatch.h
10877 F:      arch/s390/include/asm/livepatch.h
10878 F:      arch/x86/include/asm/livepatch.h
10879 F:      include/linux/livepatch.h
10880 F:      kernel/livepatch/
10881 F:      lib/livepatch/
10882 F:      samples/livepatch/
10883 F:      tools/testing/selftests/livepatch/
10884
10885 LLC (802.2)
10886 L:      netdev@vger.kernel.org
10887 S:      Odd fixes
10888 F:      include/linux/llc.h
10889 F:      include/net/llc*
10890 F:      include/uapi/linux/llc.h
10891 F:      net/llc/
10892
10893 LM73 HARDWARE MONITOR DRIVER
10894 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10895 L:      linux-hwmon@vger.kernel.org
10896 S:      Maintained
10897 F:      drivers/hwmon/lm73.c
10898
10899 LM78 HARDWARE MONITOR DRIVER
10900 M:      Jean Delvare <jdelvare@suse.com>
10901 L:      linux-hwmon@vger.kernel.org
10902 S:      Maintained
10903 F:      Documentation/hwmon/lm78.rst
10904 F:      drivers/hwmon/lm78.c
10905
10906 LM83 HARDWARE MONITOR DRIVER
10907 M:      Jean Delvare <jdelvare@suse.com>
10908 L:      linux-hwmon@vger.kernel.org
10909 S:      Maintained
10910 F:      Documentation/hwmon/lm83.rst
10911 F:      drivers/hwmon/lm83.c
10912
10913 LM90 HARDWARE MONITOR DRIVER
10914 M:      Jean Delvare <jdelvare@suse.com>
10915 L:      linux-hwmon@vger.kernel.org
10916 S:      Maintained
10917 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10918 F:      Documentation/hwmon/lm90.rst
10919 F:      drivers/hwmon/lm90.c
10920 F:      include/dt-bindings/thermal/lm90.h
10921
10922 LM95234 HARDWARE MONITOR DRIVER
10923 M:      Guenter Roeck <linux@roeck-us.net>
10924 L:      linux-hwmon@vger.kernel.org
10925 S:      Maintained
10926 F:      Documentation/hwmon/lm95234.rst
10927 F:      drivers/hwmon/lm95234.c
10928
10929 LME2510 MEDIA DRIVER
10930 M:      Malcolm Priestley <tvboxspy@gmail.com>
10931 L:      linux-media@vger.kernel.org
10932 S:      Maintained
10933 W:      https://linuxtv.org
10934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10935 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10936
10937 LOADPIN SECURITY MODULE
10938 M:      Kees Cook <keescook@chromium.org>
10939 S:      Supported
10940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10941 F:      Documentation/admin-guide/LSM/LoadPin.rst
10942 F:      security/loadpin/
10943
10944 LOCKING PRIMITIVES
10945 M:      Peter Zijlstra <peterz@infradead.org>
10946 M:      Ingo Molnar <mingo@redhat.com>
10947 M:      Will Deacon <will@kernel.org>
10948 R:      Waiman Long <longman@redhat.com>
10949 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10950 L:      linux-kernel@vger.kernel.org
10951 S:      Maintained
10952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
10953 F:      Documentation/locking/
10954 F:      arch/*/include/asm/spinlock*.h
10955 F:      include/linux/lockdep.h
10956 F:      include/linux/mutex*.h
10957 F:      include/linux/rwlock*.h
10958 F:      include/linux/rwsem*.h
10959 F:      include/linux/seqlock.h
10960 F:      include/linux/spinlock*.h
10961 F:      kernel/locking/
10962 F:      lib/locking*.[ch]
10963 X:      kernel/locking/locktorture.c
10964
10965 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
10966 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
10967 L:      linux-ntfs-dev@lists.sourceforge.net
10968 S:      Maintained
10969 W:      http://www.linux-ntfs.org/content/view/19/37/
10970 F:      Documentation/admin-guide/ldm.rst
10971 F:      block/partitions/ldm.*
10972
10973 LOGITECH HID GAMING KEYBOARDS
10974 M:      Hans de Goede <hdegoede@redhat.com>
10975 L:      linux-input@vger.kernel.org
10976 S:      Maintained
10977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10978 F:      drivers/hid/hid-lg-g15.c
10979
10980 LONTIUM LT8912B MIPI TO HDMI BRIDGE
10981 M:      Adrien Grassein <adrien.grassein@gmail.com>
10982 S:      Maintained
10983 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
10984 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
10985
10986 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
10987 M:      Sathya Prakash <sathya.prakash@broadcom.com>
10988 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
10989 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
10990 L:      MPT-FusionLinux.pdl@broadcom.com
10991 L:      linux-scsi@vger.kernel.org
10992 S:      Supported
10993 W:      http://www.avagotech.com/support/
10994 F:      drivers/message/fusion/
10995 F:      drivers/scsi/mpt3sas/
10996
10997 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
10998 M:      Matthew Wilcox <willy@infradead.org>
10999 L:      linux-scsi@vger.kernel.org
11000 S:      Maintained
11001 F:      drivers/scsi/sym53c8xx_2/
11002
11003 LTC1660 DAC DRIVER
11004 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11005 L:      linux-iio@vger.kernel.org
11006 S:      Maintained
11007 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11008 F:      drivers/iio/dac/ltc1660.c
11009
11010 LTC2947 HARDWARE MONITOR DRIVER
11011 M:      Nuno Sá <nuno.sa@analog.com>
11012 L:      linux-hwmon@vger.kernel.org
11013 S:      Supported
11014 W:      http://ez.analog.com/community/linux-device-drivers
11015 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11016 F:      drivers/hwmon/ltc2947-core.c
11017 F:      drivers/hwmon/ltc2947-i2c.c
11018 F:      drivers/hwmon/ltc2947-spi.c
11019 F:      drivers/hwmon/ltc2947.h
11020
11021 LTC2983 IIO TEMPERATURE DRIVER
11022 M:      Nuno Sá <nuno.sa@analog.com>
11023 L:      linux-iio@vger.kernel.org
11024 S:      Supported
11025 W:      http://ez.analog.com/community/linux-device-drivers
11026 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11027 F:      drivers/iio/temperature/ltc2983.c
11028
11029 LTC4261 HARDWARE MONITOR DRIVER
11030 M:      Guenter Roeck <linux@roeck-us.net>
11031 L:      linux-hwmon@vger.kernel.org
11032 S:      Maintained
11033 F:      Documentation/hwmon/ltc4261.rst
11034 F:      drivers/hwmon/ltc4261.c
11035
11036 LTC4306 I2C MULTIPLEXER DRIVER
11037 M:      Michael Hennerich <michael.hennerich@analog.com>
11038 L:      linux-i2c@vger.kernel.org
11039 S:      Supported
11040 W:      http://ez.analog.com/community/linux-device-drivers
11041 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11042 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11043
11044 LTP (Linux Test Project)
11045 M:      Mike Frysinger <vapier@gentoo.org>
11046 M:      Cyril Hrubis <chrubis@suse.cz>
11047 M:      Wanlong Gao <wanlong.gao@gmail.com>
11048 M:      Jan Stancek <jstancek@redhat.com>
11049 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11050 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11051 L:      ltp@lists.linux.it (subscribers-only)
11052 S:      Maintained
11053 W:      http://linux-test-project.github.io/
11054 T:      git git://github.com/linux-test-project/ltp.git
11055
11056 LYNX PCS MODULE
11057 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11058 L:      netdev@vger.kernel.org
11059 S:      Supported
11060 F:      drivers/net/pcs/pcs-lynx.c
11061 F:      include/linux/pcs-lynx.h
11062
11063 M68K ARCHITECTURE
11064 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11065 L:      linux-m68k@lists.linux-m68k.org
11066 S:      Maintained
11067 W:      http://www.linux-m68k.org/
11068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11069 F:      arch/m68k/
11070 F:      drivers/zorro/
11071
11072 M68K ON APPLE MACINTOSH
11073 M:      Joshua Thompson <funaho@jurai.org>
11074 L:      linux-m68k@lists.linux-m68k.org
11075 S:      Maintained
11076 W:      http://www.mac.linux-m68k.org/
11077 F:      arch/m68k/mac/
11078 F:      drivers/macintosh/adb-iop.c
11079 F:      drivers/macintosh/via-macii.c
11080
11081 M68K ON HP9000/300
11082 M:      Philip Blundell <philb@gnu.org>
11083 S:      Maintained
11084 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11085 F:      arch/m68k/hp300/
11086
11087 M88DS3103 MEDIA DRIVER
11088 M:      Antti Palosaari <crope@iki.fi>
11089 L:      linux-media@vger.kernel.org
11090 S:      Maintained
11091 W:      https://linuxtv.org
11092 W:      http://palosaari.fi/linux/
11093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11094 T:      git git://linuxtv.org/anttip/media_tree.git
11095 F:      drivers/media/dvb-frontends/m88ds3103*
11096
11097 M88RS2000 MEDIA DRIVER
11098 M:      Malcolm Priestley <tvboxspy@gmail.com>
11099 L:      linux-media@vger.kernel.org
11100 S:      Maintained
11101 W:      https://linuxtv.org
11102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11103 F:      drivers/media/dvb-frontends/m88rs2000*
11104
11105 MA901 MASTERKIT USB FM RADIO DRIVER
11106 M:      Alexey Klimov <klimov.linux@gmail.com>
11107 L:      linux-media@vger.kernel.org
11108 S:      Maintained
11109 T:      git git://linuxtv.org/media_tree.git
11110 F:      drivers/media/radio/radio-ma901.c
11111
11112 MAC80211
11113 M:      Johannes Berg <johannes@sipsolutions.net>
11114 L:      linux-wireless@vger.kernel.org
11115 S:      Maintained
11116 W:      https://wireless.wiki.kernel.org/
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11119 F:      Documentation/networking/mac80211-injection.rst
11120 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11121 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11122 F:      include/net/mac80211.h
11123 F:      net/mac80211/
11124
11125 MAILBOX API
11126 M:      Jassi Brar <jassisinghbrar@gmail.com>
11127 L:      linux-kernel@vger.kernel.org
11128 S:      Maintained
11129 F:      drivers/mailbox/
11130 F:      include/linux/mailbox_client.h
11131 F:      include/linux/mailbox_controller.h
11132 F:      include/dt-bindings/mailbox/
11133 F:      Documentation/devicetree/bindings/mailbox/
11134
11135 MAILBOX ARM MHUv2
11136 M:      Viresh Kumar <viresh.kumar@linaro.org>
11137 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11138 L:      linux-kernel@vger.kernel.org
11139 S:      Maintained
11140 F:      drivers/mailbox/arm_mhuv2.c
11141 F:      include/linux/mailbox/arm_mhuv2_message.h
11142 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11143
11144 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11145 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11146 M:      Matt Johnston <matt@codeconstruct.com.au>
11147 L:      netdev@vger.kernel.org
11148 S:      Maintained
11149 F:      Documentation/networking/mctp.rst
11150 F:      drivers/net/mctp/
11151 F:      include/net/mctp.h
11152 F:      include/net/mctpdevice.h
11153 F:      include/net/netns/mctp.h
11154 F:      net/mctp/
11155
11156 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11157 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11158 L:      linux-man@vger.kernel.org
11159 S:      Maintained
11160 W:      http://www.kernel.org/doc/man-pages
11161
11162 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11163 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11164 L:      linux-mips@vger.kernel.org
11165 S:      Maintained
11166 F:      arch/mips/boot/dts/img/pistachio*
11167
11168 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11169 M:      Andrew Lunn <andrew@lunn.ch>
11170 M:      Vivien Didelot <vivien.didelot@gmail.com>
11171 L:      netdev@vger.kernel.org
11172 S:      Maintained
11173 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11174 F:      Documentation/networking/devlink/mv88e6xxx.rst
11175 F:      drivers/net/dsa/mv88e6xxx/
11176 F:      include/linux/dsa/mv88e6xxx.h
11177 F:      include/linux/platform_data/mv88e6xxx.h
11178
11179 MARVELL ARMADA 3700 PHY DRIVERS
11180 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11181 S:      Maintained
11182 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11183 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11184 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11185 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11186
11187 MARVELL ARMADA DRM SUPPORT
11188 M:      Russell King <linux@armlinux.org.uk>
11189 S:      Maintained
11190 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11191 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11192 F:      Documentation/devicetree/bindings/display/armada/
11193 F:      drivers/gpu/drm/armada/
11194 F:      include/uapi/drm/armada_drm.h
11195
11196 MARVELL CRYPTO DRIVER
11197 M:      Boris Brezillon <bbrezillon@kernel.org>
11198 M:      Arnaud Ebalard <arno@natisbad.org>
11199 M:      Srujana Challa <schalla@marvell.com>
11200 L:      linux-crypto@vger.kernel.org
11201 S:      Maintained
11202 F:      drivers/crypto/marvell/
11203 F:      include/linux/soc/marvell/octeontx2/
11204
11205 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11206 M:      Mirko Lindner <mlindner@marvell.com>
11207 M:      Stephen Hemminger <stephen@networkplumber.org>
11208 L:      netdev@vger.kernel.org
11209 S:      Maintained
11210 F:      drivers/net/ethernet/marvell/sk*
11211
11212 MARVELL LIBERTAS WIRELESS DRIVER
11213 L:      libertas-dev@lists.infradead.org
11214 S:      Orphan
11215 F:      drivers/net/wireless/marvell/libertas/
11216
11217 MARVELL MACCHIATOBIN SUPPORT
11218 M:      Russell King <linux@armlinux.org.uk>
11219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11220 S:      Maintained
11221 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11222
11223 MARVELL MV643XX ETHERNET DRIVER
11224 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11225 L:      netdev@vger.kernel.org
11226 S:      Maintained
11227 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11228 F:      include/linux/mv643xx.h
11229
11230 MARVELL MV88X3310 PHY DRIVER
11231 M:      Russell King <linux@armlinux.org.uk>
11232 M:      Marek Behún <kabel@kernel.org>
11233 L:      netdev@vger.kernel.org
11234 S:      Maintained
11235 F:      drivers/net/phy/marvell10g.c
11236
11237 MARVELL MVEBU THERMAL DRIVER
11238 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11239 S:      Maintained
11240 F:      drivers/thermal/armada_thermal.c
11241
11242 MARVELL MVNETA ETHERNET DRIVER
11243 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11244 L:      netdev@vger.kernel.org
11245 S:      Maintained
11246 F:      drivers/net/ethernet/marvell/mvneta.*
11247
11248 MARVELL MVPP2 ETHERNET DRIVER
11249 M:      Marcin Wojtas <mw@semihalf.com>
11250 M:      Russell King <linux@armlinux.org.uk>
11251 L:      netdev@vger.kernel.org
11252 S:      Maintained
11253 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11254 F:      drivers/net/ethernet/marvell/mvpp2/
11255
11256 MARVELL MWIFIEX WIRELESS DRIVER
11257 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11258 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11259 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11260 M:      Xinming Hu <huxinming820@gmail.com>
11261 L:      linux-wireless@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/net/wireless/marvell/mwifiex/
11264
11265 MARVELL MWL8K WIRELESS DRIVER
11266 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11267 L:      linux-wireless@vger.kernel.org
11268 S:      Odd Fixes
11269 F:      drivers/net/wireless/marvell/mwl8k.c
11270
11271 MARVELL NAND CONTROLLER DRIVER
11272 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11273 L:      linux-mtd@lists.infradead.org
11274 S:      Maintained
11275 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11276 F:      drivers/mtd/nand/raw/marvell_nand.c
11277
11278 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11279 M:      Sunil Goutham <sgoutham@marvell.com>
11280 M:      Geetha sowjanya <gakula@marvell.com>
11281 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11282 M:      hariprasad <hkelam@marvell.com>
11283 L:      netdev@vger.kernel.org
11284 S:      Supported
11285 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11286 F:      include/linux/soc/marvell/octeontx2/
11287
11288 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11289 M:      Sunil Goutham <sgoutham@marvell.com>
11290 M:      Linu Cherian <lcherian@marvell.com>
11291 M:      Geetha sowjanya <gakula@marvell.com>
11292 M:      Jerin Jacob <jerinj@marvell.com>
11293 M:      hariprasad <hkelam@marvell.com>
11294 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11295 L:      netdev@vger.kernel.org
11296 S:      Supported
11297 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11298 F:      drivers/net/ethernet/marvell/octeontx2/af/
11299
11300 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11301 M:      Taras Chornyi <tchornyi@marvell.com>
11302 S:      Supported
11303 W:      https://github.com/Marvell-switching/switchdev-prestera
11304 F:      drivers/net/ethernet/marvell/prestera/
11305
11306 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11307 M:      Nicolas Pitre <nico@fluxnic.net>
11308 S:      Odd Fixes
11309 F:      drivers/mmc/host/mvsdio.*
11310
11311 MARVELL USB MDIO CONTROLLER DRIVER
11312 M:      Tobias Waldekranz <tobias@waldekranz.com>
11313 L:      netdev@vger.kernel.org
11314 S:      Maintained
11315 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11316 F:      drivers/net/mdio/mdio-mvusb.c
11317
11318 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11319 M:      Hu Ziji <huziji@marvell.com>
11320 L:      linux-mmc@vger.kernel.org
11321 S:      Supported
11322 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11323 F:      drivers/mmc/host/sdhci-xenon*
11324
11325 MATROX FRAMEBUFFER DRIVER
11326 L:      linux-fbdev@vger.kernel.org
11327 S:      Orphan
11328 F:      drivers/video/fbdev/matrox/matroxfb_*
11329 F:      include/uapi/linux/matroxfb.h
11330
11331 MAX15301 DRIVER
11332 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11333 L:      linux-hwmon@vger.kernel.org
11334 S:      Maintained
11335 F:      Documentation/hwmon/max15301.rst
11336 F:      drivers/hwmon/pmbus/max15301.c
11337
11338 MAX16065 HARDWARE MONITOR DRIVER
11339 M:      Guenter Roeck <linux@roeck-us.net>
11340 L:      linux-hwmon@vger.kernel.org
11341 S:      Maintained
11342 F:      Documentation/hwmon/max16065.rst
11343 F:      drivers/hwmon/max16065.c
11344
11345 MAX2175 SDR TUNER DRIVER
11346 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11347 L:      linux-media@vger.kernel.org
11348 S:      Maintained
11349 T:      git git://linuxtv.org/media_tree.git
11350 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11351 F:      Documentation/userspace-api/media/drivers/max2175.rst
11352 F:      drivers/media/i2c/max2175*
11353 F:      include/uapi/linux/max2175.h
11354
11355 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11356 L:      linux-hwmon@vger.kernel.org
11357 S:      Orphan
11358 F:      Documentation/hwmon/max6650.rst
11359 F:      drivers/hwmon/max6650.c
11360
11361 MAX6697 HARDWARE MONITOR DRIVER
11362 M:      Guenter Roeck <linux@roeck-us.net>
11363 L:      linux-hwmon@vger.kernel.org
11364 S:      Maintained
11365 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11366 F:      Documentation/hwmon/max6697.rst
11367 F:      drivers/hwmon/max6697.c
11368 F:      include/linux/platform_data/max6697.h
11369
11370 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11371 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11372 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11373 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11374 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11375 L:      linux-media@vger.kernel.org
11376 S:      Maintained
11377 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11378 F:      drivers/media/i2c/max9286.c
11379
11380 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11381 M:      Peter Rosin <peda@axentia.se>
11382 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11383 S:      Maintained
11384 F:      Documentation/devicetree/bindings/sound/max9860.txt
11385 F:      sound/soc/codecs/max9860.*
11386
11387 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11388 M:      Andreas Klinger <ak@it-klinger.de>
11389 L:      linux-iio@vger.kernel.org
11390 S:      Maintained
11391 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11392 F:      drivers/iio/proximity/mb1232.c
11393
11394 MAXIM MAX77650 PMIC MFD DRIVER
11395 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11396 L:      linux-kernel@vger.kernel.org
11397 S:      Maintained
11398 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11399 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11400 F:      drivers/gpio/gpio-max77650.c
11401 F:      drivers/input/misc/max77650-onkey.c
11402 F:      drivers/leds/leds-max77650.c
11403 F:      drivers/mfd/max77650.c
11404 F:      drivers/power/supply/max77650-charger.c
11405 F:      drivers/regulator/max77650-regulator.c
11406 F:      include/linux/mfd/max77650.h
11407
11408 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11409 M:      Javier Martinez Canillas <javier@dowhile0.org>
11410 L:      linux-kernel@vger.kernel.org
11411 S:      Supported
11412 F:      Documentation/devicetree/bindings/*/*max77802.txt
11413 F:      drivers/regulator/max77802-regulator.c
11414 F:      include/dt-bindings/*/*max77802.h
11415
11416 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11417 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11418 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11419 L:      linux-pm@vger.kernel.org
11420 S:      Supported
11421 F:      drivers/power/supply/max14577_charger.c
11422 F:      drivers/power/supply/max77693_charger.c
11423
11424 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11425 M:      Chanwoo Choi <cw00.choi@samsung.com>
11426 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11427 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11428 L:      linux-kernel@vger.kernel.org
11429 S:      Supported
11430 F:      Documentation/devicetree/bindings/*/max77686.txt
11431 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11432 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11433 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11434 F:      drivers/*/max14577*.c
11435 F:      drivers/*/max77686*.c
11436 F:      drivers/*/max77693*.c
11437 F:      drivers/clk/clk-max77686.c
11438 F:      drivers/extcon/extcon-max14577.c
11439 F:      drivers/extcon/extcon-max77693.c
11440 F:      drivers/rtc/rtc-max77686.c
11441 F:      include/linux/mfd/max14577*.h
11442 F:      include/linux/mfd/max77686*.h
11443 F:      include/linux/mfd/max77693*.h
11444
11445 MAXIRADIO FM RADIO RECEIVER DRIVER
11446 M:      Hans Verkuil <hverkuil@xs4all.nl>
11447 L:      linux-media@vger.kernel.org
11448 S:      Maintained
11449 W:      https://linuxtv.org
11450 T:      git git://linuxtv.org/media_tree.git
11451 F:      drivers/media/radio/radio-maxiradio*
11452
11453 MAXLINEAR ETHERNET PHY DRIVER
11454 M:      Xu Liang <lxu@maxlinear.com>
11455 L:      netdev@vger.kernel.org
11456 S:      Supported
11457 F:      drivers/net/phy/mxl-gpy.c
11458
11459 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11460 R:      Yasushi SHOJI <yashi@spacecubics.com>
11461 L:      linux-can@vger.kernel.org
11462 S:      Maintained
11463 F:      drivers/net/can/usb/mcba_usb.c
11464
11465 MCAN MMIO DEVICE DRIVER
11466 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11467 L:      linux-can@vger.kernel.org
11468 S:      Maintained
11469 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11470 F:      drivers/net/can/m_can/m_can.c
11471 F:      drivers/net/can/m_can/m_can.h
11472 F:      drivers/net/can/m_can/m_can_platform.c
11473
11474 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11475 M:      Rishi Gupta <gupt21@gmail.com>
11476 L:      linux-i2c@vger.kernel.org
11477 L:      linux-input@vger.kernel.org
11478 S:      Maintained
11479 F:      drivers/hid/hid-mcp2221.c
11480
11481 MCP251XFD SPI-CAN NETWORK DRIVER
11482 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11483 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11484 R:      Thomas Kopp <thomas.kopp@microchip.com>
11485 L:      linux-can@vger.kernel.org
11486 S:      Maintained
11487 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11488 F:      drivers/net/can/spi/mcp251xfd/
11489
11490 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11491 M:      Peter Rosin <peda@axentia.se>
11492 L:      linux-iio@vger.kernel.org
11493 S:      Maintained
11494 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11495 F:      drivers/iio/potentiometer/mcp4018.c
11496 F:      drivers/iio/potentiometer/mcp4531.c
11497
11498 MCR20A IEEE-802.15.4 RADIO DRIVER
11499 M:      Xue Liu <liuxuenetmail@gmail.com>
11500 L:      linux-wpan@vger.kernel.org
11501 S:      Maintained
11502 W:      https://github.com/xueliu/mcr20a-linux
11503 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11504 F:      drivers/net/ieee802154/mcr20a.c
11505 F:      drivers/net/ieee802154/mcr20a.h
11506
11507 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11508 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11509 L:      linux-iio@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/iio/dac/cio-dac.c
11512
11513 MEDIA CONTROLLER FRAMEWORK
11514 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11515 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11516 L:      linux-media@vger.kernel.org
11517 S:      Supported
11518 W:      https://www.linuxtv.org
11519 T:      git git://linuxtv.org/media_tree.git
11520 F:      drivers/media/mc/
11521 F:      include/media/media-*.h
11522 F:      include/uapi/linux/media.h
11523
11524 MEDIA DRIVER FOR FREESCALE IMX PXP
11525 M:      Philipp Zabel <p.zabel@pengutronix.de>
11526 L:      linux-media@vger.kernel.org
11527 S:      Maintained
11528 T:      git git://linuxtv.org/media_tree.git
11529 F:      drivers/media/platform/imx-pxp.[ch]
11530
11531 MEDIA DRIVERS FOR ASCOT2E
11532 M:      Sergey Kozlov <serjk@netup.ru>
11533 M:      Abylay Ospan <aospan@netup.ru>
11534 L:      linux-media@vger.kernel.org
11535 S:      Supported
11536 W:      https://linuxtv.org
11537 W:      http://netup.tv/
11538 T:      git git://linuxtv.org/media_tree.git
11539 F:      drivers/media/dvb-frontends/ascot2e*
11540
11541 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11542 M:      Jasmin Jessich <jasmin@anw.at>
11543 L:      linux-media@vger.kernel.org
11544 S:      Maintained
11545 W:      https://linuxtv.org
11546 T:      git git://linuxtv.org/media_tree.git
11547 F:      drivers/media/dvb-frontends/cxd2099*
11548
11549 MEDIA DRIVERS FOR CXD2841ER
11550 M:      Sergey Kozlov <serjk@netup.ru>
11551 M:      Abylay Ospan <aospan@netup.ru>
11552 L:      linux-media@vger.kernel.org
11553 S:      Supported
11554 W:      https://linuxtv.org
11555 W:      http://netup.tv/
11556 T:      git git://linuxtv.org/media_tree.git
11557 F:      drivers/media/dvb-frontends/cxd2841er*
11558
11559 MEDIA DRIVERS FOR CXD2880
11560 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11561 L:      linux-media@vger.kernel.org
11562 S:      Supported
11563 W:      http://linuxtv.org/
11564 T:      git git://linuxtv.org/media_tree.git
11565 F:      drivers/media/dvb-frontends/cxd2880/*
11566 F:      drivers/media/spi/cxd2880*
11567
11568 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11569 L:      linux-media@vger.kernel.org
11570 S:      Orphan
11571 W:      https://linuxtv.org
11572 T:      git git://linuxtv.org/media_tree.git
11573 F:      drivers/media/pci/ddbridge/*
11574
11575 MEDIA DRIVERS FOR FREESCALE IMX
11576 M:      Steve Longerbeam <slongerbeam@gmail.com>
11577 M:      Philipp Zabel <p.zabel@pengutronix.de>
11578 L:      linux-media@vger.kernel.org
11579 S:      Maintained
11580 T:      git git://linuxtv.org/media_tree.git
11581 F:      Documentation/admin-guide/media/imx.rst
11582 F:      Documentation/devicetree/bindings/media/imx.txt
11583 F:      drivers/staging/media/imx/
11584 F:      include/linux/imx-media.h
11585 F:      include/media/imx.h
11586
11587 MEDIA DRIVERS FOR FREESCALE IMX7
11588 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11589 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11590 L:      linux-media@vger.kernel.org
11591 S:      Maintained
11592 T:      git git://linuxtv.org/media_tree.git
11593 F:      Documentation/admin-guide/media/imx7.rst
11594 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11595 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11596 F:      drivers/staging/media/imx/imx7-media-csi.c
11597 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11598
11599 MEDIA DRIVERS FOR HELENE
11600 M:      Abylay Ospan <aospan@netup.ru>
11601 L:      linux-media@vger.kernel.org
11602 S:      Supported
11603 W:      https://linuxtv.org
11604 W:      http://netup.tv/
11605 T:      git git://linuxtv.org/media_tree.git
11606 F:      drivers/media/dvb-frontends/helene*
11607
11608 MEDIA DRIVERS FOR HORUS3A
11609 M:      Sergey Kozlov <serjk@netup.ru>
11610 M:      Abylay Ospan <aospan@netup.ru>
11611 L:      linux-media@vger.kernel.org
11612 S:      Supported
11613 W:      https://linuxtv.org
11614 W:      http://netup.tv/
11615 T:      git git://linuxtv.org/media_tree.git
11616 F:      drivers/media/dvb-frontends/horus3a*
11617
11618 MEDIA DRIVERS FOR LNBH25
11619 M:      Sergey Kozlov <serjk@netup.ru>
11620 M:      Abylay Ospan <aospan@netup.ru>
11621 L:      linux-media@vger.kernel.org
11622 S:      Supported
11623 W:      https://linuxtv.org
11624 W:      http://netup.tv/
11625 T:      git git://linuxtv.org/media_tree.git
11626 F:      drivers/media/dvb-frontends/lnbh25*
11627
11628 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11629 L:      linux-media@vger.kernel.org
11630 S:      Orphan
11631 W:      https://linuxtv.org
11632 T:      git git://linuxtv.org/media_tree.git
11633 F:      drivers/media/dvb-frontends/mxl5xx*
11634
11635 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11636 M:      Sergey Kozlov <serjk@netup.ru>
11637 M:      Abylay Ospan <aospan@netup.ru>
11638 L:      linux-media@vger.kernel.org
11639 S:      Supported
11640 W:      https://linuxtv.org
11641 W:      http://netup.tv/
11642 T:      git git://linuxtv.org/media_tree.git
11643 F:      drivers/media/pci/netup_unidvb/*
11644
11645 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11646 M:      Dmitry Osipenko <digetx@gmail.com>
11647 L:      linux-media@vger.kernel.org
11648 L:      linux-tegra@vger.kernel.org
11649 S:      Maintained
11650 T:      git git://linuxtv.org/media_tree.git
11651 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11652 F:      drivers/staging/media/tegra-vde/
11653
11654 MEDIA DRIVERS FOR RENESAS - CEU
11655 M:      Jacopo Mondi <jacopo@jmondi.org>
11656 L:      linux-media@vger.kernel.org
11657 L:      linux-renesas-soc@vger.kernel.org
11658 S:      Supported
11659 T:      git git://linuxtv.org/media_tree.git
11660 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11661 F:      drivers/media/platform/renesas-ceu.c
11662 F:      include/media/drv-intf/renesas-ceu.h
11663
11664 MEDIA DRIVERS FOR RENESAS - DRIF
11665 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11666 L:      linux-media@vger.kernel.org
11667 L:      linux-renesas-soc@vger.kernel.org
11668 S:      Supported
11669 T:      git git://linuxtv.org/media_tree.git
11670 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11671 F:      drivers/media/platform/rcar_drif.c
11672
11673 MEDIA DRIVERS FOR RENESAS - FCP
11674 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11675 L:      linux-media@vger.kernel.org
11676 L:      linux-renesas-soc@vger.kernel.org
11677 S:      Supported
11678 T:      git git://linuxtv.org/media_tree.git
11679 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11680 F:      drivers/media/platform/rcar-fcp.c
11681 F:      include/media/rcar-fcp.h
11682
11683 MEDIA DRIVERS FOR RENESAS - FDP1
11684 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11685 L:      linux-media@vger.kernel.org
11686 L:      linux-renesas-soc@vger.kernel.org
11687 S:      Supported
11688 T:      git git://linuxtv.org/media_tree.git
11689 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11690 F:      drivers/media/platform/rcar_fdp1.c
11691
11692 MEDIA DRIVERS FOR RENESAS - VIN
11693 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11694 L:      linux-media@vger.kernel.org
11695 L:      linux-renesas-soc@vger.kernel.org
11696 S:      Supported
11697 T:      git git://linuxtv.org/media_tree.git
11698 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11699 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11700 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11701 F:      drivers/media/platform/rcar-vin/
11702
11703 MEDIA DRIVERS FOR RENESAS - VSP1
11704 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11705 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11706 L:      linux-media@vger.kernel.org
11707 L:      linux-renesas-soc@vger.kernel.org
11708 S:      Supported
11709 T:      git git://linuxtv.org/media_tree.git
11710 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11711 F:      drivers/media/platform/vsp1/
11712
11713 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11714 L:      linux-media@vger.kernel.org
11715 S:      Orphan
11716 W:      https://linuxtv.org
11717 T:      git git://linuxtv.org/media_tree.git
11718 F:      drivers/media/dvb-frontends/stv0910*
11719
11720 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11721 L:      linux-media@vger.kernel.org
11722 S:      Orphan
11723 W:      https://linuxtv.org
11724 T:      git git://linuxtv.org/media_tree.git
11725 F:      drivers/media/dvb-frontends/stv6111*
11726
11727 MEDIA DRIVERS FOR STM32 - DCMI
11728 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11729 L:      linux-media@vger.kernel.org
11730 S:      Supported
11731 T:      git git://linuxtv.org/media_tree.git
11732 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11733 F:      drivers/media/platform/stm32/stm32-dcmi.c
11734
11735 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11736 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11737 L:      linux-media@vger.kernel.org
11738 S:      Maintained
11739 W:      https://linuxtv.org
11740 Q:      http://patchwork.kernel.org/project/linux-media/list/
11741 T:      git git://linuxtv.org/media_tree.git
11742 F:      Documentation/admin-guide/media/
11743 F:      Documentation/devicetree/bindings/media/
11744 F:      Documentation/driver-api/media/
11745 F:      Documentation/userspace-api/media/
11746 F:      drivers/media/
11747 F:      drivers/staging/media/
11748 F:      include/linux/platform_data/media/
11749 F:      include/media/
11750 F:      include/uapi/linux/dvb/
11751 F:      include/uapi/linux/ivtv*
11752 F:      include/uapi/linux/media.h
11753 F:      include/uapi/linux/meye.h
11754 F:      include/uapi/linux/uvcvideo.h
11755 F:      include/uapi/linux/v4l2-*
11756 F:      include/uapi/linux/videodev2.h
11757
11758 MEDIATEK BLUETOOTH DRIVER
11759 M:      Sean Wang <sean.wang@mediatek.com>
11760 L:      linux-bluetooth@vger.kernel.org
11761 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11762 S:      Maintained
11763 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11764 F:      drivers/bluetooth/btmtkuart.c
11765
11766 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11767 M:      Sean Wang <sean.wang@mediatek.com>
11768 L:      linux-pm@vger.kernel.org
11769 S:      Maintained
11770 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11771 F:      drivers/power/reset/mt6323-poweroff.c
11772
11773 MEDIATEK CIR DRIVER
11774 M:      Sean Wang <sean.wang@mediatek.com>
11775 S:      Maintained
11776 F:      drivers/media/rc/mtk-cir.c
11777
11778 MEDIATEK DMA DRIVER
11779 M:      Sean Wang <sean.wang@mediatek.com>
11780 L:      dmaengine@vger.kernel.org
11781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11782 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11783 S:      Maintained
11784 F:      Documentation/devicetree/bindings/dma/mtk-*
11785 F:      drivers/dma/mediatek/
11786
11787 MEDIATEK ETHERNET DRIVER
11788 M:      Felix Fietkau <nbd@nbd.name>
11789 M:      John Crispin <john@phrozen.org>
11790 M:      Sean Wang <sean.wang@mediatek.com>
11791 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11792 L:      netdev@vger.kernel.org
11793 S:      Maintained
11794 F:      drivers/net/ethernet/mediatek/
11795
11796 MEDIATEK I2C CONTROLLER DRIVER
11797 M:      Qii Wang <qii.wang@mediatek.com>
11798 L:      linux-i2c@vger.kernel.org
11799 S:      Maintained
11800 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11801 F:      drivers/i2c/busses/i2c-mt65xx.c
11802
11803 MEDIATEK IOMMU DRIVER
11804 M:      Yong Wu <yong.wu@mediatek.com>
11805 L:      iommu@lists.linux-foundation.org
11806 L:      iommu@lists.linux.dev
11807 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11808 S:      Supported
11809 F:      Documentation/devicetree/bindings/iommu/mediatek*
11810 F:      drivers/iommu/mtk_iommu*
11811 F:      include/dt-bindings/memory/mt*-port.h
11812
11813 MEDIATEK JPEG DRIVER
11814 M:      Rick Chang <rick.chang@mediatek.com>
11815 M:      Bin Liu <bin.liu@mediatek.com>
11816 S:      Supported
11817 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11818 F:      drivers/media/platform/mtk-jpeg/
11819
11820 MEDIATEK MDP DRIVER
11821 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11822 M:      Houlong Wei <houlong.wei@mediatek.com>
11823 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11824 S:      Supported
11825 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11826 F:      drivers/media/platform/mtk-mdp/
11827 F:      drivers/media/platform/mtk-vpu/
11828
11829 MEDIATEK MEDIA DRIVER
11830 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11831 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11832 S:      Supported
11833 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11834 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11835 F:      drivers/media/platform/mtk-vcodec/
11836 F:      drivers/media/platform/mtk-vpu/
11837
11838 MEDIATEK MMC/SD/SDIO DRIVER
11839 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11840 S:      Maintained
11841 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11842 F:      drivers/mmc/host/mtk-sd.c
11843
11844 MEDIATEK MT76 WIRELESS LAN DRIVER
11845 M:      Felix Fietkau <nbd@nbd.name>
11846 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11847 R:      Ryder Lee <ryder.lee@mediatek.com>
11848 L:      linux-wireless@vger.kernel.org
11849 S:      Maintained
11850 F:      drivers/net/wireless/mediatek/mt76/
11851
11852 MEDIATEK MT7601U WIRELESS LAN DRIVER
11853 M:      Jakub Kicinski <kubakici@wp.pl>
11854 L:      linux-wireless@vger.kernel.org
11855 S:      Maintained
11856 F:      drivers/net/wireless/mediatek/mt7601u/
11857
11858 MEDIATEK MT7621 CLOCK DRIVER
11859 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11860 S:      Maintained
11861 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11862 F:      drivers/clk/ralink/clk-mt7621.c
11863
11864 MEDIATEK MT7621/28/88 I2C DRIVER
11865 M:      Stefan Roese <sr@denx.de>
11866 L:      linux-i2c@vger.kernel.org
11867 S:      Maintained
11868 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11869 F:      drivers/i2c/busses/i2c-mt7621.c
11870
11871 MEDIATEK MT7621 PHY PCI DRIVER
11872 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11873 S:      Maintained
11874 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11875 F:      drivers/phy/ralink/phy-mt7621-pci.c
11876
11877 MEDIATEK NAND CONTROLLER DRIVER
11878 L:      linux-mtd@lists.infradead.org
11879 S:      Orphan
11880 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11881 F:      drivers/mtd/nand/raw/mtk_*
11882
11883 MEDIATEK PMIC LED DRIVER
11884 M:      Sean Wang <sean.wang@mediatek.com>
11885 S:      Maintained
11886 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11887 F:      drivers/leds/leds-mt6323.c
11888
11889 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11890 M:      Sean Wang <sean.wang@mediatek.com>
11891 S:      Maintained
11892 F:      drivers/char/hw_random/mtk-rng.c
11893
11894 MEDIATEK SWITCH DRIVER
11895 M:      Sean Wang <sean.wang@mediatek.com>
11896 M:      Landen Chao <Landen.Chao@mediatek.com>
11897 M:      DENG Qingfang <dqfext@gmail.com>
11898 L:      netdev@vger.kernel.org
11899 S:      Maintained
11900 F:      drivers/net/dsa/mt7530.*
11901 F:      net/dsa/tag_mtk.c
11902
11903 MEDIATEK USB3 DRD IP DRIVER
11904 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11905 L:      linux-usb@vger.kernel.org
11906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11907 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11908 S:      Maintained
11909 F:      Documentation/devicetree/bindings/usb/mediatek,*
11910 F:      drivers/usb/host/xhci-mtk*
11911 F:      drivers/usb/mtu3/
11912
11913 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11914 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11915 M:      Martin Donnelly <martin.donnelly@ge.com>
11916 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11917 S:      Maintained
11918 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11919 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11920
11921 MEGARAID SCSI/SAS DRIVERS
11922 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11923 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11924 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11925 L:      megaraidlinux.pdl@broadcom.com
11926 L:      linux-scsi@vger.kernel.org
11927 S:      Maintained
11928 W:      http://www.avagotech.com/support/
11929 F:      Documentation/scsi/megaraid.rst
11930 F:      drivers/scsi/megaraid.*
11931 F:      drivers/scsi/megaraid/
11932
11933 MELEXIS MLX90614 DRIVER
11934 M:      Crt Mori <cmo@melexis.com>
11935 L:      linux-iio@vger.kernel.org
11936 S:      Supported
11937 W:      http://www.melexis.com
11938 F:      drivers/iio/temperature/mlx90614.c
11939
11940 MELEXIS MLX90632 DRIVER
11941 M:      Crt Mori <cmo@melexis.com>
11942 L:      linux-iio@vger.kernel.org
11943 S:      Supported
11944 W:      http://www.melexis.com
11945 F:      drivers/iio/temperature/mlx90632.c
11946
11947 MELFAS MIP4 TOUCHSCREEN DRIVER
11948 M:      Sangwon Jee <jeesw@melfas.com>
11949 S:      Supported
11950 W:      http://www.melfas.com
11951 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11952 F:      drivers/input/touchscreen/melfas_mip4.c
11953
11954 MELLANOX BLUEFIELD I2C DRIVER
11955 M:      Khalil Blaiech <kblaiech@nvidia.com>
11956 L:      linux-i2c@vger.kernel.org
11957 S:      Supported
11958 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
11959 F:      drivers/i2c/busses/i2c-mlxbf.c
11960
11961 MELLANOX ETHERNET DRIVER (mlx4_en)
11962 M:      Tariq Toukan <tariqt@nvidia.com>
11963 L:      netdev@vger.kernel.org
11964 S:      Supported
11965 W:      http://www.mellanox.com
11966 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11967 F:      drivers/net/ethernet/mellanox/mlx4/en_*
11968
11969 MELLANOX ETHERNET DRIVER (mlx5e)
11970 M:      Saeed Mahameed <saeedm@nvidia.com>
11971 L:      netdev@vger.kernel.org
11972 S:      Supported
11973 W:      http://www.mellanox.com
11974 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11975 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
11976
11977 MELLANOX ETHERNET INNOVA DRIVERS
11978 R:      Boris Pismenny <borisp@nvidia.com>
11979 L:      netdev@vger.kernel.org
11980 S:      Supported
11981 W:      http://www.mellanox.com
11982 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11983 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
11984 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
11985 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
11986 F:      include/linux/mlx5/mlx5_ifc_fpga.h
11987
11988 MELLANOX ETHERNET SWITCH DRIVERS
11989 M:      Jiri Pirko <jiri@nvidia.com>
11990 M:      Ido Schimmel <idosch@nvidia.com>
11991 L:      netdev@vger.kernel.org
11992 S:      Supported
11993 W:      http://www.mellanox.com
11994 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
11995 F:      drivers/net/ethernet/mellanox/mlxsw/
11996 F:      tools/testing/selftests/drivers/net/mlxsw/
11997
11998 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
11999 M:      mlxsw@nvidia.com
12000 L:      netdev@vger.kernel.org
12001 S:      Supported
12002 W:      http://www.mellanox.com
12003 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12004 F:      drivers/net/ethernet/mellanox/mlxfw/
12005
12006 MELLANOX HARDWARE PLATFORM SUPPORT
12007 M:      Hans de Goede <hdegoede@redhat.com>
12008 M:      Mark Gross <mgross@linux.intel.com>
12009 M:      Vadim Pasternak <vadimp@nvidia.com>
12010 L:      platform-driver-x86@vger.kernel.org
12011 S:      Supported
12012 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12013 F:      drivers/platform/mellanox/
12014 F:      include/linux/platform_data/mlxreg.h
12015
12016 MELLANOX MLX4 core VPI driver
12017 M:      Tariq Toukan <tariqt@nvidia.com>
12018 L:      netdev@vger.kernel.org
12019 L:      linux-rdma@vger.kernel.org
12020 S:      Supported
12021 W:      http://www.mellanox.com
12022 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12023 F:      drivers/net/ethernet/mellanox/mlx4/
12024 F:      include/linux/mlx4/
12025
12026 MELLANOX MLX4 IB driver
12027 M:      Yishai Hadas <yishaih@nvidia.com>
12028 L:      linux-rdma@vger.kernel.org
12029 S:      Supported
12030 W:      http://www.mellanox.com
12031 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12032 F:      drivers/infiniband/hw/mlx4/
12033 F:      include/linux/mlx4/
12034 F:      include/uapi/rdma/mlx4-abi.h
12035
12036 MELLANOX MLX5 core VPI driver
12037 M:      Saeed Mahameed <saeedm@nvidia.com>
12038 M:      Leon Romanovsky <leonro@nvidia.com>
12039 L:      netdev@vger.kernel.org
12040 L:      linux-rdma@vger.kernel.org
12041 S:      Supported
12042 W:      http://www.mellanox.com
12043 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12044 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12045 F:      drivers/net/ethernet/mellanox/mlx5/core/
12046 F:      include/linux/mlx5/
12047
12048 MELLANOX MLX5 IB driver
12049 M:      Leon Romanovsky <leonro@nvidia.com>
12050 L:      linux-rdma@vger.kernel.org
12051 S:      Supported
12052 W:      http://www.mellanox.com
12053 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12054 F:      drivers/infiniband/hw/mlx5/
12055 F:      include/linux/mlx5/
12056 F:      include/uapi/rdma/mlx5-abi.h
12057
12058 MELLANOX MLXCPLD I2C AND MUX DRIVER
12059 M:      Vadim Pasternak <vadimp@nvidia.com>
12060 M:      Michael Shych <michaelsh@nvidia.com>
12061 L:      linux-i2c@vger.kernel.org
12062 S:      Supported
12063 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12064 F:      drivers/i2c/busses/i2c-mlxcpld.c
12065 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12066
12067 MELLANOX MLXCPLD LED DRIVER
12068 M:      Vadim Pasternak <vadimp@nvidia.com>
12069 L:      linux-leds@vger.kernel.org
12070 S:      Supported
12071 F:      Documentation/leds/leds-mlxcpld.rst
12072 F:      drivers/leds/leds-mlxcpld.c
12073 F:      drivers/leds/leds-mlxreg.c
12074
12075 MELLANOX PLATFORM DRIVER
12076 M:      Vadim Pasternak <vadimp@nvidia.com>
12077 L:      platform-driver-x86@vger.kernel.org
12078 S:      Supported
12079 F:      drivers/platform/x86/mlx-platform.c
12080
12081 MEMBARRIER SUPPORT
12082 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12083 M:      "Paul E. McKenney" <paulmck@kernel.org>
12084 L:      linux-kernel@vger.kernel.org
12085 S:      Supported
12086 F:      arch/powerpc/include/asm/membarrier.h
12087 F:      include/uapi/linux/membarrier.h
12088 F:      kernel/sched/membarrier.c
12089
12090 MEMBLOCK
12091 M:      Mike Rapoport <rppt@linux.ibm.com>
12092 L:      linux-mm@kvack.org
12093 S:      Maintained
12094 F:      Documentation/core-api/boot-time-mm.rst
12095 F:      include/linux/memblock.h
12096 F:      mm/memblock.c
12097
12098 MEMORY CONTROLLER DRIVERS
12099 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12100 L:      linux-kernel@vger.kernel.org
12101 S:      Maintained
12102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12103 F:      Documentation/devicetree/bindings/memory-controllers/
12104 F:      drivers/memory/
12105 F:      include/dt-bindings/memory/
12106 F:      include/memory/
12107
12108 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12109 M:      Dmitry Osipenko <digetx@gmail.com>
12110 L:      linux-pm@vger.kernel.org
12111 L:      linux-tegra@vger.kernel.org
12112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12113 S:      Maintained
12114 F:      drivers/devfreq/tegra30-devfreq.c
12115
12116 MEMORY MANAGEMENT
12117 M:      Andrew Morton <akpm@linux-foundation.org>
12118 L:      linux-mm@kvack.org
12119 S:      Maintained
12120 W:      http://www.linux-mm.org
12121 T:      quilt https://ozlabs.org/~akpm/mmotm/
12122 T:      quilt https://ozlabs.org/~akpm/mmots/
12123 T:      git git://github.com/hnaz/linux-mm.git
12124 F:      include/linux/gfp.h
12125 F:      include/linux/memory_hotplug.h
12126 F:      include/linux/mm.h
12127 F:      include/linux/mmzone.h
12128 F:      include/linux/pagewalk.h
12129 F:      include/linux/vmalloc.h
12130 F:      mm/
12131 F:      tools/testing/selftests/vm/
12132
12133 MEMORY TECHNOLOGY DEVICES (MTD)
12134 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12135 M:      Richard Weinberger <richard@nod.at>
12136 M:      Vignesh Raghavendra <vigneshr@ti.com>
12137 L:      linux-mtd@lists.infradead.org
12138 S:      Maintained
12139 W:      http://www.linux-mtd.infradead.org/
12140 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12141 C:      irc://irc.oftc.net/mtd
12142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12144 F:      Documentation/devicetree/bindings/mtd/
12145 F:      drivers/mtd/
12146 F:      include/linux/mtd/
12147 F:      include/uapi/mtd/
12148
12149 MEN A21 WATCHDOG DRIVER
12150 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12151 L:      linux-watchdog@vger.kernel.org
12152 S:      Maintained
12153 F:      drivers/watchdog/mena21_wdt.c
12154
12155 MEN CHAMELEON BUS (mcb)
12156 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12157 S:      Maintained
12158 F:      Documentation/driver-api/men-chameleon-bus.rst
12159 F:      drivers/mcb/
12160 F:      include/linux/mcb.h
12161
12162 MEN F21BMC (Board Management Controller)
12163 M:      Andreas Werner <andreas.werner@men.de>
12164 S:      Supported
12165 F:      Documentation/hwmon/menf21bmc.rst
12166 F:      drivers/hwmon/menf21bmc_hwmon.c
12167 F:      drivers/leds/leds-menf21bmc.c
12168 F:      drivers/mfd/menf21bmc.c
12169 F:      drivers/watchdog/menf21bmc_wdt.c
12170
12171 MEN Z069 WATCHDOG DRIVER
12172 M:      Johannes Thumshirn <jth@kernel.org>
12173 L:      linux-watchdog@vger.kernel.org
12174 S:      Maintained
12175 F:      drivers/watchdog/menz69_wdt.c
12176
12177 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12178 M:      Neil Armstrong <narmstrong@baylibre.com>
12179 L:      linux-media@vger.kernel.org
12180 L:      linux-amlogic@lists.infradead.org
12181 S:      Supported
12182 W:      http://linux-meson.com/
12183 T:      git git://linuxtv.org/media_tree.git
12184 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12185 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12186 F:      drivers/media/cec/platform/meson/ao-cec.c
12187
12188 MESON GE2D DRIVER FOR AMLOGIC SOCS
12189 M:      Neil Armstrong <narmstrong@baylibre.com>
12190 L:      linux-media@vger.kernel.org
12191 L:      linux-amlogic@lists.infradead.org
12192 S:      Supported
12193 T:      git git://linuxtv.org/media_tree.git
12194 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12195 F:      drivers/media/platform/meson/ge2d/
12196
12197 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12198 M:      Liang Yang <liang.yang@amlogic.com>
12199 L:      linux-mtd@lists.infradead.org
12200 S:      Maintained
12201 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12202 F:      drivers/mtd/nand/raw/meson_*
12203
12204 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12205 M:      Neil Armstrong <narmstrong@baylibre.com>
12206 L:      linux-media@vger.kernel.org
12207 L:      linux-amlogic@lists.infradead.org
12208 S:      Supported
12209 T:      git git://linuxtv.org/media_tree.git
12210 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12211 F:      drivers/staging/media/meson/vdec/
12212
12213 METHODE UDPU SUPPORT
12214 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12215 S:      Maintained
12216 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12217
12218 MHI BUS
12219 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12220 M:      Hemant Kumar <hemantk@codeaurora.org>
12221 L:      linux-arm-msm@vger.kernel.org
12222 S:      Maintained
12223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12224 F:      Documentation/ABI/stable/sysfs-bus-mhi
12225 F:      Documentation/mhi/
12226 F:      drivers/bus/mhi/
12227 F:      include/linux/mhi.h
12228
12229 MICROBLAZE ARCHITECTURE
12230 M:      Michal Simek <monstr@monstr.eu>
12231 S:      Supported
12232 W:      http://www.monstr.eu/fdt/
12233 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12234 F:      arch/microblaze/
12235
12236 MICROCHIP AT91 DMA DRIVERS
12237 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12238 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12240 L:      dmaengine@vger.kernel.org
12241 S:      Supported
12242 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12243 F:      drivers/dma/at_hdmac.c
12244 F:      drivers/dma/at_hdmac_regs.h
12245 F:      drivers/dma/at_xdmac.c
12246 F:      include/dt-bindings/dma/at91.h
12247
12248 MICROCHIP AT91 SERIAL DRIVER
12249 M:      Richard Genoud <richard.genoud@gmail.com>
12250 S:      Maintained
12251 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12252 F:      drivers/tty/serial/atmel_serial.c
12253 F:      drivers/tty/serial/atmel_serial.h
12254
12255 MICROCHIP AT91 USART MFD DRIVER
12256 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12257 L:      linux-kernel@vger.kernel.org
12258 S:      Supported
12259 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12260 F:      drivers/mfd/at91-usart.c
12261 F:      include/dt-bindings/mfd/at91-usart.h
12262
12263 MICROCHIP AT91 USART SPI DRIVER
12264 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12265 L:      linux-spi@vger.kernel.org
12266 S:      Supported
12267 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12268 F:      drivers/spi/spi-at91-usart.c
12269
12270 MICROCHIP AUDIO ASOC DRIVERS
12271 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12272 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12273 S:      Supported
12274 F:      sound/soc/atmel
12275
12276 MICROCHIP ECC DRIVER
12277 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12278 L:      linux-crypto@vger.kernel.org
12279 S:      Maintained
12280 F:      drivers/crypto/atmel-ecc.*
12281
12282 MICROCHIP I2C DRIVER
12283 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12284 L:      linux-i2c@vger.kernel.org
12285 S:      Supported
12286 F:      drivers/i2c/busses/i2c-at91-*.c
12287 F:      drivers/i2c/busses/i2c-at91.h
12288
12289 MICROCHIP ISC DRIVER
12290 M:      Eugen Hristev <eugen.hristev@microchip.com>
12291 L:      linux-media@vger.kernel.org
12292 S:      Supported
12293 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12294 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12295 F:      drivers/media/platform/atmel/atmel-isc-base.c
12296 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12297 F:      drivers/media/platform/atmel/atmel-isc.h
12298 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12299 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12300 F:      include/linux/atmel-isc-media.h
12301
12302 MICROCHIP ISI DRIVER
12303 M:      Eugen Hristev <eugen.hristev@microchip.com>
12304 L:      linux-media@vger.kernel.org
12305 S:      Supported
12306 F:      drivers/media/platform/atmel/atmel-isi.c
12307 F:      drivers/media/platform/atmel/atmel-isi.h
12308
12309 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12310 M:      Woojung Huh <woojung.huh@microchip.com>
12311 M:      UNGLinuxDriver@microchip.com
12312 L:      netdev@vger.kernel.org
12313 S:      Maintained
12314 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12315 F:      drivers/net/dsa/microchip/*
12316 F:      include/linux/platform_data/microchip-ksz.h
12317 F:      net/dsa/tag_ksz.c
12318
12319 MICROCHIP LAN743X ETHERNET DRIVER
12320 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12321 M:      UNGLinuxDriver@microchip.com
12322 L:      netdev@vger.kernel.org
12323 S:      Maintained
12324 F:      drivers/net/ethernet/microchip/lan743x_*
12325
12326 MICROCHIP LCDFB DRIVER
12327 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12328 L:      linux-fbdev@vger.kernel.org
12329 S:      Maintained
12330 F:      drivers/video/fbdev/atmel_lcdfb.c
12331 F:      include/video/atmel_lcdc.h
12332
12333 MICROCHIP MCP16502 PMIC DRIVER
12334 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12336 S:      Supported
12337 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12338 F:      drivers/regulator/mcp16502.c
12339
12340 MICROCHIP MCP3911 ADC DRIVER
12341 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12342 M:      Kent Gustavsson <kent@minoris.se>
12343 L:      linux-iio@vger.kernel.org
12344 S:      Supported
12345 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12346 F:      drivers/iio/adc/mcp3911.c
12347
12348 MICROCHIP MMC/SD/SDIO MCI DRIVER
12349 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12350 S:      Maintained
12351 F:      drivers/mmc/host/atmel-mci.c
12352
12353 MICROCHIP NAND DRIVER
12354 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12355 L:      linux-mtd@lists.infradead.org
12356 S:      Supported
12357 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12358 F:      drivers/mtd/nand/raw/atmel/*
12359
12360 MICROCHIP PWM DRIVER
12361 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12363 L:      linux-pwm@vger.kernel.org
12364 S:      Supported
12365 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12366 F:      drivers/pwm/pwm-atmel.c
12367
12368 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12369 M:      Eugen Hristev <eugen.hristev@microchip.com>
12370 L:      linux-iio@vger.kernel.org
12371 S:      Supported
12372 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12373 F:      drivers/iio/adc/at91-sama5d2_adc.c
12374 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12375
12376 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12377 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12378 S:      Supported
12379 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12380
12381 MICROCHIP SPI DRIVER
12382 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12383 S:      Supported
12384 F:      drivers/spi/spi-atmel.*
12385
12386 MICROCHIP SSC DRIVER
12387 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12389 S:      Supported
12390 F:      drivers/misc/atmel-ssc.c
12391 F:      include/linux/atmel-ssc.h
12392
12393 MICROCHIP USB251XB DRIVER
12394 M:      Richard Leitner <richard.leitner@skidata.com>
12395 L:      linux-usb@vger.kernel.org
12396 S:      Maintained
12397 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12398 F:      drivers/usb/misc/usb251xb.c
12399
12400 MICROCHIP USBA UDC DRIVER
12401 M:      Cristian Birsan <cristian.birsan@microchip.com>
12402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12403 S:      Supported
12404 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12405
12406 MICROCHIP WILC1000 WIFI DRIVER
12407 M:      Ajay Singh <ajay.kathat@microchip.com>
12408 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12409 L:      linux-wireless@vger.kernel.org
12410 S:      Supported
12411 F:      drivers/net/wireless/microchip/wilc1000/
12412
12413 MICROSEMI MIPS SOCS
12414 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12415 M:      UNGLinuxDriver@microchip.com
12416 L:      linux-mips@vger.kernel.org
12417 S:      Supported
12418 F:      Documentation/devicetree/bindings/mips/mscc.txt
12419 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12420 F:      arch/mips/boot/dts/mscc/
12421 F:      arch/mips/configs/generic/board-ocelot.config
12422 F:      arch/mips/generic/board-ocelot.c
12423
12424 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12425 M:      Don Brace <don.brace@microchip.com>
12426 L:      storagedev@microchip.com
12427 L:      linux-scsi@vger.kernel.org
12428 S:      Supported
12429 F:      Documentation/scsi/smartpqi.rst
12430 F:      drivers/scsi/smartpqi/Kconfig
12431 F:      drivers/scsi/smartpqi/Makefile
12432 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12433 F:      include/linux/cciss*.h
12434 F:      include/uapi/linux/cciss*.h
12435
12436 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12437 M:      Maximilian Luz <luzmaximilian@gmail.com>
12438 L:      linux-pm@vger.kernel.org
12439 L:      platform-driver-x86@vger.kernel.org
12440 S:      Maintained
12441 F:      drivers/power/supply/surface_battery.c
12442 F:      drivers/power/supply/surface_charger.c
12443
12444 MICROSOFT SURFACE DTX DRIVER
12445 M:      Maximilian Luz <luzmaximilian@gmail.com>
12446 L:      platform-driver-x86@vger.kernel.org
12447 S:      Maintained
12448 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12449 F:      drivers/platform/surface/surface_dtx.c
12450 F:      include/uapi/linux/surface_aggregator/dtx.h
12451
12452 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12453 M:      Maximilian Luz <luzmaximilian@gmail.com>
12454 L:      platform-driver-x86@vger.kernel.org
12455 S:      Maintained
12456 F:      drivers/platform/surface/surface_gpe.c
12457
12458 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12459 M:      Hans de Goede <hdegoede@redhat.com>
12460 M:      Mark Gross <mgross@linux.intel.com>
12461 M:      Maximilian Luz <luzmaximilian@gmail.com>
12462 L:      platform-driver-x86@vger.kernel.org
12463 S:      Maintained
12464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12465 F:      drivers/platform/surface/
12466
12467 MICROSOFT SURFACE HID TRANSPORT DRIVER
12468 M:      Maximilian Luz <luzmaximilian@gmail.com>
12469 L:      linux-input@vger.kernel.org
12470 L:      platform-driver-x86@vger.kernel.org
12471 S:      Maintained
12472 F:      drivers/hid/surface-hid/
12473
12474 MICROSOFT SURFACE HOT-PLUG DRIVER
12475 M:      Maximilian Luz <luzmaximilian@gmail.com>
12476 L:      platform-driver-x86@vger.kernel.org
12477 S:      Maintained
12478 F:      drivers/platform/surface/surface_hotplug.c
12479
12480 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12481 M:      Maximilian Luz <luzmaximilian@gmail.com>
12482 L:      platform-driver-x86@vger.kernel.org
12483 S:      Maintained
12484 F:      drivers/platform/surface/surface_platform_profile.c
12485
12486 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12487 M:      Chen Yu <yu.c.chen@intel.com>
12488 L:      platform-driver-x86@vger.kernel.org
12489 S:      Supported
12490 F:      drivers/platform/surface/surfacepro3_button.c
12491
12492 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12493 M:      Maximilian Luz <luzmaximilian@gmail.com>
12494 L:      platform-driver-x86@vger.kernel.org
12495 S:      Maintained
12496 W:      https://github.com/linux-surface/surface-aggregator-module
12497 C:      irc://irc.libera.chat/linux-surface
12498 F:      Documentation/driver-api/surface_aggregator/
12499 F:      drivers/platform/surface/aggregator/
12500 F:      drivers/platform/surface/surface_acpi_notify.c
12501 F:      drivers/platform/surface/surface_aggregator_cdev.c
12502 F:      drivers/platform/surface/surface_aggregator_registry.c
12503 F:      include/linux/surface_acpi_notify.h
12504 F:      include/linux/surface_aggregator/
12505 F:      include/uapi/linux/surface_aggregator/
12506
12507 MICROTEK X6 SCANNER
12508 M:      Oliver Neukum <oliver@neukum.org>
12509 S:      Maintained
12510 F:      drivers/usb/image/microtek.*
12511
12512 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12513 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12514 M:      Luka Perkov <luka.perkov@sartura.hr>
12515 S:      Maintained
12516 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12517 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12518 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12519 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12520 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12521 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12522
12523 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12524 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12525 L:      linux-media@vger.kernel.org
12526 S:      Maintained
12527 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12528 F:      Documentation/driver-api/media/drivers/ccs/
12529 F:      Documentation/userspace-api/media/drivers/ccs.rst
12530 F:      drivers/media/i2c/ccs-pll.c
12531 F:      drivers/media/i2c/ccs-pll.h
12532 F:      drivers/media/i2c/ccs/
12533 F:      include/uapi/linux/ccs.h
12534 F:      include/uapi/linux/smiapp.h
12535
12536 MIPS
12537 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12538 L:      linux-mips@vger.kernel.org
12539 S:      Maintained
12540 W:      http://www.linux-mips.org/
12541 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12543 F:      Documentation/devicetree/bindings/mips/
12544 F:      Documentation/mips/
12545 F:      arch/mips/
12546 F:      drivers/platform/mips/
12547
12548 MIPS BOSTON DEVELOPMENT BOARD
12549 M:      Paul Burton <paulburton@kernel.org>
12550 L:      linux-mips@vger.kernel.org
12551 S:      Maintained
12552 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12553 F:      arch/mips/boot/dts/img/boston.dts
12554 F:      arch/mips/configs/generic/board-boston.config
12555 F:      drivers/clk/imgtec/clk-boston.c
12556 F:      include/dt-bindings/clock/boston-clock.h
12557
12558 MIPS CORE DRIVERS
12559 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12560 M:      Serge Semin <fancer.lancer@gmail.com>
12561 L:      linux-mips@vger.kernel.org
12562 S:      Supported
12563 F:      drivers/bus/mips_cdmm.c
12564 F:      drivers/clocksource/mips-gic-timer.c
12565 F:      drivers/cpuidle/cpuidle-cps.c
12566 F:      drivers/irqchip/irq-mips-cpu.c
12567 F:      drivers/irqchip/irq-mips-gic.c
12568
12569 MIPS GENERIC PLATFORM
12570 M:      Paul Burton <paulburton@kernel.org>
12571 L:      linux-mips@vger.kernel.org
12572 S:      Supported
12573 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12574 F:      arch/mips/generic/
12575 F:      arch/mips/tools/generic-board-config.sh
12576
12577 MIPS RINT INSTRUCTION EMULATION
12578 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12579 L:      linux-mips@vger.kernel.org
12580 S:      Supported
12581 F:      arch/mips/math-emu/dp_rint.c
12582 F:      arch/mips/math-emu/sp_rint.c
12583
12584 MIPS/LOONGSON1 ARCHITECTURE
12585 M:      Keguang Zhang <keguang.zhang@gmail.com>
12586 L:      linux-mips@vger.kernel.org
12587 S:      Maintained
12588 F:      arch/mips/include/asm/mach-loongson32/
12589 F:      arch/mips/loongson32/
12590 F:      drivers/*/*/*loongson1*
12591 F:      drivers/*/*loongson1*
12592
12593 MIPS/LOONGSON2EF ARCHITECTURE
12594 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12595 L:      linux-mips@vger.kernel.org
12596 S:      Maintained
12597 F:      arch/mips/include/asm/mach-loongson2ef/
12598 F:      arch/mips/loongson2ef/
12599 F:      drivers/cpufreq/loongson2_cpufreq.c
12600
12601 MIPS/LOONGSON64 ARCHITECTURE
12602 M:      Huacai Chen <chenhuacai@kernel.org>
12603 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12604 L:      linux-mips@vger.kernel.org
12605 S:      Maintained
12606 F:      arch/mips/include/asm/mach-loongson64/
12607 F:      arch/mips/loongson64/
12608 F:      drivers/irqchip/irq-loongson*
12609 F:      drivers/platform/mips/cpu_hwmon.c
12610
12611 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12612 M:      Hans Verkuil <hverkuil@xs4all.nl>
12613 L:      linux-media@vger.kernel.org
12614 S:      Odd Fixes
12615 W:      https://linuxtv.org
12616 T:      git git://linuxtv.org/media_tree.git
12617 F:      drivers/media/radio/radio-miropcm20*
12618
12619 MMP SUPPORT
12620 R:      Lubomir Rintel <lkundrak@v3.sk>
12621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12622 S:      Odd Fixes
12623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12624 F:      arch/arm/boot/dts/mmp*
12625 F:      arch/arm/mach-mmp/
12626 F:      include/linux/soc/mmp/
12627
12628 MMP USB PHY DRIVERS
12629 R:      Lubomir Rintel <lkundrak@v3.sk>
12630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12631 S:      Maintained
12632 F:      drivers/phy/marvell/phy-mmp3-usb.c
12633 F:      drivers/phy/marvell/phy-pxa-usb.c
12634
12635 MMU GATHER AND TLB INVALIDATION
12636 M:      Will Deacon <will@kernel.org>
12637 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12638 M:      Andrew Morton <akpm@linux-foundation.org>
12639 M:      Nick Piggin <npiggin@gmail.com>
12640 M:      Peter Zijlstra <peterz@infradead.org>
12641 L:      linux-arch@vger.kernel.org
12642 L:      linux-mm@kvack.org
12643 S:      Maintained
12644 F:      arch/*/include/asm/tlb.h
12645 F:      include/asm-generic/tlb.h
12646 F:      mm/mmu_gather.c
12647
12648 MN88472 MEDIA DRIVER
12649 M:      Antti Palosaari <crope@iki.fi>
12650 L:      linux-media@vger.kernel.org
12651 S:      Maintained
12652 W:      https://linuxtv.org
12653 W:      http://palosaari.fi/linux/
12654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12655 F:      drivers/media/dvb-frontends/mn88472*
12656
12657 MN88473 MEDIA DRIVER
12658 M:      Antti Palosaari <crope@iki.fi>
12659 L:      linux-media@vger.kernel.org
12660 S:      Maintained
12661 W:      https://linuxtv.org
12662 W:      http://palosaari.fi/linux/
12663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12664 F:      drivers/media/dvb-frontends/mn88473*
12665
12666 MODULE SUPPORT
12667 M:      Luis Chamberlain <mcgrof@kernel.org>
12668 M:      Jessica Yu <jeyu@kernel.org>
12669 S:      Maintained
12670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12671 F:      include/linux/module.h
12672 F:      kernel/module.c
12673
12674 MONOLITHIC POWER SYSTEM PMIC DRIVER
12675 M:      Saravanan Sekar <sravanhome@gmail.com>
12676 S:      Maintained
12677 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12678 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12679 F:      drivers/iio/adc/mp2629_adc.c
12680 F:      drivers/mfd/mp2629.c
12681 F:      drivers/power/supply/mp2629_charger.c
12682 F:      drivers/regulator/mp5416.c
12683 F:      drivers/regulator/mpq7920.c
12684 F:      drivers/regulator/mpq7920.h
12685 F:      include/linux/mfd/mp2629.h
12686
12687 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12688 S:      Orphan
12689 W:      http://popies.net/meye/
12690 F:      Documentation/userspace-api/media/drivers/meye*
12691 F:      drivers/media/pci/meye/
12692 F:      include/uapi/linux/meye.h
12693
12694 MOTORCOMM PHY DRIVER
12695 M:      Peter Geis <pgwipeout@gmail.com>
12696 L:      netdev@vger.kernel.org
12697 S:      Maintained
12698 F:      drivers/net/phy/motorcomm.c
12699
12700 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12701 M:      Jiri Slaby <jirislaby@kernel.org>
12702 S:      Maintained
12703 F:      Documentation/driver-api/serial/moxa-smartio.rst
12704 F:      drivers/tty/mxser.*
12705
12706 MR800 AVERMEDIA USB FM RADIO DRIVER
12707 M:      Alexey Klimov <klimov.linux@gmail.com>
12708 L:      linux-media@vger.kernel.org
12709 S:      Maintained
12710 T:      git git://linuxtv.org/media_tree.git
12711 F:      drivers/media/radio/radio-mr800.c
12712
12713 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12714 M:      Alan Ott <alan@signal11.us>
12715 L:      linux-wpan@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12718 F:      drivers/net/ieee802154/mrf24j40.c
12719
12720 MSI LAPTOP SUPPORT
12721 M:      "Lee, Chun-Yi" <jlee@suse.com>
12722 L:      platform-driver-x86@vger.kernel.org
12723 S:      Maintained
12724 F:      drivers/platform/x86/msi-laptop.c
12725
12726 MSI WMI SUPPORT
12727 L:      platform-driver-x86@vger.kernel.org
12728 S:      Orphan
12729 F:      drivers/platform/x86/msi-wmi.c
12730
12731 MSI001 MEDIA DRIVER
12732 M:      Antti Palosaari <crope@iki.fi>
12733 L:      linux-media@vger.kernel.org
12734 S:      Maintained
12735 W:      https://linuxtv.org
12736 W:      http://palosaari.fi/linux/
12737 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12738 T:      git git://linuxtv.org/anttip/media_tree.git
12739 F:      drivers/media/tuners/msi001*
12740
12741 MSI2500 MEDIA DRIVER
12742 M:      Antti Palosaari <crope@iki.fi>
12743 L:      linux-media@vger.kernel.org
12744 S:      Maintained
12745 W:      https://linuxtv.org
12746 W:      http://palosaari.fi/linux/
12747 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12748 T:      git git://linuxtv.org/anttip/media_tree.git
12749 F:      drivers/media/usb/msi2500/
12750
12751 MSTAR INTERRUPT CONTROLLER DRIVER
12752 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12753 M:      Daniel Palmer <daniel@thingy.jp>
12754 S:      Maintained
12755 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12756 F:      drivers/irqchip/irq-mst-intc.c
12757
12758 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12759 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12760 L:      linux-mtd@lists.infradead.org
12761 S:      Maintained
12762 F:      drivers/mtd/devices/docg3*
12763
12764 MT9M032 APTINA SENSOR DRIVER
12765 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12766 L:      linux-media@vger.kernel.org
12767 S:      Maintained
12768 T:      git git://linuxtv.org/media_tree.git
12769 F:      drivers/media/i2c/mt9m032.c
12770 F:      include/media/i2c/mt9m032.h
12771
12772 MT9P031 APTINA CAMERA SENSOR
12773 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12774 L:      linux-media@vger.kernel.org
12775 S:      Maintained
12776 T:      git git://linuxtv.org/media_tree.git
12777 F:      drivers/media/i2c/mt9p031.c
12778 F:      include/media/i2c/mt9p031.h
12779
12780 MT9T001 APTINA CAMERA SENSOR
12781 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12782 L:      linux-media@vger.kernel.org
12783 S:      Maintained
12784 T:      git git://linuxtv.org/media_tree.git
12785 F:      drivers/media/i2c/mt9t001.c
12786 F:      include/media/i2c/mt9t001.h
12787
12788 MT9T112 APTINA CAMERA SENSOR
12789 M:      Jacopo Mondi <jacopo@jmondi.org>
12790 L:      linux-media@vger.kernel.org
12791 S:      Odd Fixes
12792 T:      git git://linuxtv.org/media_tree.git
12793 F:      drivers/media/i2c/mt9t112.c
12794 F:      include/media/i2c/mt9t112.h
12795
12796 MT9V032 APTINA CAMERA SENSOR
12797 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12798 L:      linux-media@vger.kernel.org
12799 S:      Maintained
12800 T:      git git://linuxtv.org/media_tree.git
12801 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12802 F:      drivers/media/i2c/mt9v032.c
12803 F:      include/media/i2c/mt9v032.h
12804
12805 MT9V111 APTINA CAMERA SENSOR
12806 M:      Jacopo Mondi <jacopo@jmondi.org>
12807 L:      linux-media@vger.kernel.org
12808 S:      Maintained
12809 T:      git git://linuxtv.org/media_tree.git
12810 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12811 F:      drivers/media/i2c/mt9v111.c
12812
12813 MULTIFUNCTION DEVICES (MFD)
12814 M:      Lee Jones <lee.jones@linaro.org>
12815 S:      Supported
12816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12817 F:      Documentation/devicetree/bindings/mfd/
12818 F:      drivers/mfd/
12819 F:      include/dt-bindings/mfd/
12820 F:      include/linux/mfd/
12821
12822 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12823 S:      Orphan
12824 F:      drivers/mmc/host/mmc_spi.c
12825 F:      include/linux/spi/mmc_spi.h
12826
12827 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12828 M:      Ulf Hansson <ulf.hansson@linaro.org>
12829 L:      linux-mmc@vger.kernel.org
12830 S:      Maintained
12831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12832 F:      Documentation/devicetree/bindings/mmc/
12833 F:      drivers/mmc/
12834 F:      include/linux/mmc/
12835 F:      include/uapi/linux/mmc/
12836
12837 MULTIPLEXER SUBSYSTEM
12838 M:      Peter Rosin <peda@axentia.se>
12839 S:      Maintained
12840 F:      Documentation/ABI/testing/sysfs-class-mux*
12841 F:      Documentation/devicetree/bindings/mux/
12842 F:      drivers/mux/
12843 F:      include/dt-bindings/mux/
12844 F:      include/linux/mux/
12845
12846 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12847 M:      Bin Liu <b-liu@ti.com>
12848 L:      linux-usb@vger.kernel.org
12849 S:      Maintained
12850 F:      drivers/usb/musb/
12851
12852 MXL301RF MEDIA DRIVER
12853 M:      Akihiro Tsukada <tskd08@gmail.com>
12854 L:      linux-media@vger.kernel.org
12855 S:      Odd Fixes
12856 F:      drivers/media/tuners/mxl301rf*
12857
12858 MXL5007T MEDIA DRIVER
12859 M:      Michael Krufky <mkrufky@linuxtv.org>
12860 L:      linux-media@vger.kernel.org
12861 S:      Maintained
12862 W:      https://linuxtv.org
12863 W:      http://github.com/mkrufky
12864 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12865 T:      git git://linuxtv.org/mkrufky/tuners.git
12866 F:      drivers/media/tuners/mxl5007t.*
12867
12868 MXSFB DRM DRIVER
12869 M:      Marek Vasut <marex@denx.de>
12870 M:      Stefan Agner <stefan@agner.ch>
12871 L:      dri-devel@lists.freedesktop.org
12872 S:      Supported
12873 T:      git git://anongit.freedesktop.org/drm/drm-misc
12874 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12875 F:      drivers/gpu/drm/mxsfb/
12876
12877 MYLEX DAC960 PCI RAID Controller
12878 M:      Hannes Reinecke <hare@kernel.org>
12879 L:      linux-scsi@vger.kernel.org
12880 S:      Supported
12881 F:      drivers/scsi/myrb.*
12882 F:      drivers/scsi/myrs.*
12883
12884 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12885 M:      Chris Lee <christopher.lee@cspi.com>
12886 L:      netdev@vger.kernel.org
12887 S:      Supported
12888 W:      https://www.cspi.com/ethernet-products/support/downloads/
12889 F:      drivers/net/ethernet/myricom/myri10ge/
12890
12891 NAND FLASH SUBSYSTEM
12892 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12893 R:      Richard Weinberger <richard@nod.at>
12894 L:      linux-mtd@lists.infradead.org
12895 S:      Maintained
12896 W:      http://www.linux-mtd.infradead.org/
12897 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12898 C:      irc://irc.oftc.net/mtd
12899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12900 F:      drivers/mtd/nand/
12901 F:      include/linux/mtd/*nand*.h
12902
12903 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12904 M:      Daniel Mack <zonque@gmail.com>
12905 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12906 S:      Maintained
12907 W:      http://www.native-instruments.com
12908 F:      sound/usb/caiaq/
12909
12910 NATSEMI ETHERNET DRIVER (DP8381x)
12911 S:      Orphan
12912 F:      drivers/net/ethernet/natsemi/natsemi.c
12913
12914 NCR 5380 SCSI DRIVERS
12915 M:      Finn Thain <fthain@linux-m68k.org>
12916 M:      Michael Schmitz <schmitzmic@gmail.com>
12917 L:      linux-scsi@vger.kernel.org
12918 S:      Maintained
12919 F:      Documentation/scsi/g_NCR5380.rst
12920 F:      drivers/scsi/NCR5380.*
12921 F:      drivers/scsi/arm/cumana_1.c
12922 F:      drivers/scsi/arm/oak.c
12923 F:      drivers/scsi/atari_scsi.*
12924 F:      drivers/scsi/dmx3191d.c
12925 F:      drivers/scsi/g_NCR5380.*
12926 F:      drivers/scsi/mac_scsi.*
12927 F:      drivers/scsi/sun3_scsi.*
12928 F:      drivers/scsi/sun3_scsi_vme.c
12929
12930 NCSI LIBRARY
12931 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12932 S:      Maintained
12933 F:      net/ncsi/
12934
12935 NCT6775 HARDWARE MONITOR DRIVER
12936 M:      Guenter Roeck <linux@roeck-us.net>
12937 L:      linux-hwmon@vger.kernel.org
12938 S:      Maintained
12939 F:      Documentation/hwmon/nct6775.rst
12940 F:      drivers/hwmon/nct6775.c
12941
12942 NETDEVSIM
12943 M:      Jakub Kicinski <kuba@kernel.org>
12944 S:      Maintained
12945 F:      drivers/net/netdevsim/*
12946
12947 NETEM NETWORK EMULATOR
12948 M:      Stephen Hemminger <stephen@networkplumber.org>
12949 L:      netdev@vger.kernel.org
12950 S:      Maintained
12951 F:      net/sched/sch_netem.c
12952
12953 NETERION 10GbE DRIVERS (s2io/vxge)
12954 M:      Jon Mason <jdmason@kudzu.us>
12955 L:      netdev@vger.kernel.org
12956 S:      Supported
12957 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
12958 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
12959 F:      drivers/net/ethernet/neterion/
12960
12961 NETFILTER
12962 M:      Pablo Neira Ayuso <pablo@netfilter.org>
12963 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
12964 M:      Florian Westphal <fw@strlen.de>
12965 L:      netfilter-devel@vger.kernel.org
12966 L:      coreteam@netfilter.org
12967 S:      Maintained
12968 W:      http://www.netfilter.org/
12969 W:      http://www.iptables.org/
12970 W:      http://www.nftables.org/
12971 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
12972 C:      irc://irc.libera.chat/netfilter
12973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
12974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
12975 F:      include/linux/netfilter*
12976 F:      include/linux/netfilter/
12977 F:      include/net/netfilter/
12978 F:      include/uapi/linux/netfilter*
12979 F:      include/uapi/linux/netfilter/
12980 F:      net/*/netfilter.c
12981 F:      net/*/netfilter/
12982 F:      net/bridge/br_netfilter*.c
12983 F:      net/netfilter/
12984
12985 NETROM NETWORK LAYER
12986 M:      Ralf Baechle <ralf@linux-mips.org>
12987 L:      linux-hams@vger.kernel.org
12988 S:      Maintained
12989 W:      http://www.linux-ax25.org/
12990 F:      include/net/netrom.h
12991 F:      include/uapi/linux/netrom.h
12992 F:      net/netrom/
12993
12994 NETRONIX EMBEDDED CONTROLLER
12995 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
12996 S:      Maintained
12997 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
12998 F:      drivers/mfd/ntxec.c
12999 F:      drivers/pwm/pwm-ntxec.c
13000 F:      drivers/rtc/rtc-ntxec.c
13001 F:      include/linux/mfd/ntxec.h
13002
13003 NETRONOME ETHERNET DRIVERS
13004 M:      Simon Horman <simon.horman@corigine.com>
13005 R:      Jakub Kicinski <kuba@kernel.org>
13006 L:      oss-drivers@corigine.com
13007 S:      Maintained
13008 F:      drivers/net/ethernet/netronome/
13009
13010 NETWORK BLOCK DEVICE (NBD)
13011 M:      Josef Bacik <josef@toxicpanda.com>
13012 L:      linux-block@vger.kernel.org
13013 L:      nbd@other.debian.org
13014 S:      Maintained
13015 F:      Documentation/admin-guide/blockdev/nbd.rst
13016 F:      drivers/block/nbd.c
13017 F:      include/trace/events/nbd.h
13018 F:      include/uapi/linux/nbd.h
13019
13020 NETWORK DROP MONITOR
13021 M:      Neil Horman <nhorman@tuxdriver.com>
13022 L:      netdev@vger.kernel.org
13023 S:      Maintained
13024 W:      https://fedorahosted.org/dropwatch/
13025 F:      include/uapi/linux/net_dropmon.h
13026 F:      net/core/drop_monitor.c
13027
13028 NETWORKING DRIVERS
13029 M:      "David S. Miller" <davem@davemloft.net>
13030 M:      Jakub Kicinski <kuba@kernel.org>
13031 L:      netdev@vger.kernel.org
13032 S:      Maintained
13033 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13036 F:      Documentation/devicetree/bindings/net/
13037 F:      drivers/connector/
13038 F:      drivers/net/
13039 F:      include/linux/etherdevice.h
13040 F:      include/linux/fcdevice.h
13041 F:      include/linux/fddidevice.h
13042 F:      include/linux/hippidevice.h
13043 F:      include/linux/if_*
13044 F:      include/linux/inetdevice.h
13045 F:      include/linux/netdevice.h
13046 F:      include/uapi/linux/if_*
13047 F:      include/uapi/linux/netdevice.h
13048
13049 NETWORKING DRIVERS (WIRELESS)
13050 M:      Kalle Valo <kvalo@codeaurora.org>
13051 L:      linux-wireless@vger.kernel.org
13052 S:      Maintained
13053 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13056 F:      Documentation/devicetree/bindings/net/wireless/
13057 F:      drivers/net/wireless/
13058
13059 NETWORKING [DSA]
13060 M:      Andrew Lunn <andrew@lunn.ch>
13061 M:      Vivien Didelot <vivien.didelot@gmail.com>
13062 M:      Florian Fainelli <f.fainelli@gmail.com>
13063 M:      Vladimir Oltean <olteanv@gmail.com>
13064 S:      Maintained
13065 F:      Documentation/devicetree/bindings/net/dsa/
13066 F:      drivers/net/dsa/
13067 F:      include/linux/dsa/
13068 F:      include/linux/platform_data/dsa.h
13069 F:      include/net/dsa.h
13070 F:      net/dsa/
13071
13072 NETWORKING [GENERAL]
13073 M:      "David S. Miller" <davem@davemloft.net>
13074 M:      Jakub Kicinski <kuba@kernel.org>
13075 L:      netdev@vger.kernel.org
13076 S:      Maintained
13077 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13078 B:      mailto:netdev@vger.kernel.org
13079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13081 F:      Documentation/networking/
13082 F:      include/linux/in.h
13083 F:      include/linux/net.h
13084 F:      include/linux/netdevice.h
13085 F:      include/net/
13086 F:      include/uapi/linux/in.h
13087 F:      include/uapi/linux/net.h
13088 F:      include/uapi/linux/net_namespace.h
13089 F:      include/uapi/linux/netdevice.h
13090 F:      lib/net_utils.c
13091 F:      lib/random32.c
13092 F:      net/
13093 F:      tools/testing/selftests/net/
13094
13095 NETWORKING [IPSEC]
13096 M:      Steffen Klassert <steffen.klassert@secunet.com>
13097 M:      Herbert Xu <herbert@gondor.apana.org.au>
13098 M:      "David S. Miller" <davem@davemloft.net>
13099 L:      netdev@vger.kernel.org
13100 S:      Maintained
13101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13103 F:      include/net/xfrm.h
13104 F:      include/uapi/linux/xfrm.h
13105 F:      net/ipv4/ah4.c
13106 F:      net/ipv4/esp4*
13107 F:      net/ipv4/ip_vti.c
13108 F:      net/ipv4/ipcomp.c
13109 F:      net/ipv4/xfrm*
13110 F:      net/ipv6/ah6.c
13111 F:      net/ipv6/esp6*
13112 F:      net/ipv6/ip6_vti.c
13113 F:      net/ipv6/ipcomp6.c
13114 F:      net/ipv6/xfrm*
13115 F:      net/key/
13116 F:      net/xfrm/
13117 F:      tools/testing/selftests/net/ipsec.c
13118
13119 NETWORKING [IPv4/IPv6]
13120 M:      "David S. Miller" <davem@davemloft.net>
13121 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13122 M:      David Ahern <dsahern@kernel.org>
13123 L:      netdev@vger.kernel.org
13124 S:      Maintained
13125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13126 F:      arch/x86/net/*
13127 F:      include/net/ip*
13128 F:      net/ipv4/
13129 F:      net/ipv6/
13130
13131 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13132 M:      Paul Moore <paul@paul-moore.com>
13133 L:      netdev@vger.kernel.org
13134 L:      linux-security-module@vger.kernel.org
13135 S:      Maintained
13136 W:      https://github.com/netlabel
13137 F:      Documentation/netlabel/
13138 F:      include/net/calipso.h
13139 F:      include/net/cipso_ipv4.h
13140 F:      include/net/netlabel.h
13141 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13142 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13143 F:      net/ipv4/cipso_ipv4.c
13144 F:      net/ipv6/calipso.c
13145 F:      net/netfilter/xt_CONNSECMARK.c
13146 F:      net/netfilter/xt_SECMARK.c
13147 F:      net/netlabel/
13148
13149 NETWORKING [MPTCP]
13150 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13151 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13152 L:      netdev@vger.kernel.org
13153 L:      mptcp@lists.linux.dev
13154 S:      Maintained
13155 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13156 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13157 F:      Documentation/networking/mptcp-sysctl.rst
13158 F:      include/net/mptcp.h
13159 F:      include/trace/events/mptcp.h
13160 F:      include/uapi/linux/mptcp.h
13161 F:      net/mptcp/
13162 F:      tools/testing/selftests/net/mptcp/
13163
13164 NETWORKING [TCP]
13165 M:      Eric Dumazet <edumazet@google.com>
13166 L:      netdev@vger.kernel.org
13167 S:      Maintained
13168 F:      include/linux/tcp.h
13169 F:      include/net/tcp.h
13170 F:      include/trace/events/tcp.h
13171 F:      include/uapi/linux/tcp.h
13172 F:      net/ipv4/syncookies.c
13173 F:      net/ipv4/tcp*.c
13174 F:      net/ipv6/syncookies.c
13175 F:      net/ipv6/tcp*.c
13176
13177 NETWORKING [TLS]
13178 M:      Boris Pismenny <borisp@nvidia.com>
13179 M:      John Fastabend <john.fastabend@gmail.com>
13180 M:      Daniel Borkmann <daniel@iogearbox.net>
13181 M:      Jakub Kicinski <kuba@kernel.org>
13182 L:      netdev@vger.kernel.org
13183 S:      Maintained
13184 F:      include/net/tls.h
13185 F:      include/uapi/linux/tls.h
13186 F:      net/tls/*
13187
13188 NETWORKING [WIRELESS]
13189 L:      linux-wireless@vger.kernel.org
13190 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13191
13192 NETXEN (1/10) GbE SUPPORT
13193 M:      Manish Chopra <manishc@marvell.com>
13194 M:      Rahul Verma <rahulv@marvell.com>
13195 M:      GR-Linux-NIC-Dev@marvell.com
13196 L:      netdev@vger.kernel.org
13197 S:      Supported
13198 F:      drivers/net/ethernet/qlogic/netxen/
13199
13200 NET_FAILOVER MODULE
13201 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13202 L:      netdev@vger.kernel.org
13203 S:      Supported
13204 F:      Documentation/networking/net_failover.rst
13205 F:      drivers/net/net_failover.c
13206 F:      include/net/net_failover.h
13207
13208 NEXTHOP
13209 M:      David Ahern <dsahern@kernel.org>
13210 L:      netdev@vger.kernel.org
13211 S:      Maintained
13212 F:      include/net/netns/nexthop.h
13213 F:      include/net/nexthop.h
13214 F:      include/uapi/linux/nexthop.h
13215 F:      net/ipv4/nexthop.c
13216
13217 NFC SUBSYSTEM
13218 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13219 L:      linux-nfc@lists.01.org (subscribers-only)
13220 L:      netdev@vger.kernel.org
13221 S:      Maintained
13222 F:      Documentation/devicetree/bindings/net/nfc/
13223 F:      drivers/nfc/
13224 F:      include/linux/platform_data/nfcmrvl.h
13225 F:      include/net/nfc/
13226 F:      include/uapi/linux/nfc.h
13227 F:      net/nfc/
13228
13229 NFC VIRTUAL NCI DEVICE DRIVER
13230 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13231 L:      netdev@vger.kernel.org
13232 L:      linux-nfc@lists.01.org (subscribers-only)
13233 S:      Supported
13234 F:      drivers/nfc/virtual_ncidev.c
13235 F:      tools/testing/selftests/nci/
13236
13237 NFS, SUNRPC, AND LOCKD CLIENTS
13238 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13239 M:      Anna Schumaker <anna.schumaker@netapp.com>
13240 L:      linux-nfs@vger.kernel.org
13241 S:      Maintained
13242 W:      http://client.linux-nfs.org
13243 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13244 F:      fs/lockd/
13245 F:      fs/nfs/
13246 F:      fs/nfs_common/
13247 F:      include/linux/lockd/
13248 F:      include/linux/nfs*
13249 F:      include/linux/sunrpc/
13250 F:      include/uapi/linux/nfs*
13251 F:      include/uapi/linux/sunrpc/
13252 F:      net/sunrpc/
13253 F:      Documentation/filesystems/nfs/
13254
13255 NILFS2 FILESYSTEM
13256 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13257 L:      linux-nilfs@vger.kernel.org
13258 S:      Supported
13259 W:      https://nilfs.sourceforge.io/
13260 W:      https://nilfs.osdn.jp/
13261 T:      git git://github.com/konis/nilfs2.git
13262 F:      Documentation/filesystems/nilfs2.rst
13263 F:      fs/nilfs2/
13264 F:      include/trace/events/nilfs2.h
13265 F:      include/uapi/linux/nilfs2_api.h
13266 F:      include/uapi/linux/nilfs2_ondisk.h
13267
13268 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13269 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13270 S:      Maintained
13271 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13272 F:      Documentation/scsi/NinjaSCSI.rst
13273 F:      drivers/scsi/pcmcia/nsp_*
13274
13275 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13276 M:      GOTO Masanori <gotom@debian.or.jp>
13277 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13278 S:      Maintained
13279 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13280 F:      Documentation/scsi/NinjaSCSI.rst
13281 F:      drivers/scsi/nsp32*
13282
13283 NIOS2 ARCHITECTURE
13284 M:      Dinh Nguyen <dinguyen@kernel.org>
13285 S:      Maintained
13286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13287 F:      arch/nios2/
13288
13289 NITRO ENCLAVES (NE)
13290 M:      Andra Paraschiv <andraprs@amazon.com>
13291 M:      Alexandru Vasile <lexnv@amazon.com>
13292 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13293 L:      linux-kernel@vger.kernel.org
13294 S:      Supported
13295 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13296 F:      Documentation/virt/ne_overview.rst
13297 F:      drivers/virt/nitro_enclaves/
13298 F:      include/linux/nitro_enclaves.h
13299 F:      include/uapi/linux/nitro_enclaves.h
13300 F:      samples/nitro_enclaves/
13301
13302 NOHZ, DYNTICKS SUPPORT
13303 M:      Frederic Weisbecker <fweisbec@gmail.com>
13304 M:      Thomas Gleixner <tglx@linutronix.de>
13305 M:      Ingo Molnar <mingo@kernel.org>
13306 L:      linux-kernel@vger.kernel.org
13307 S:      Maintained
13308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13309 F:      include/linux/sched/nohz.h
13310 F:      include/linux/tick.h
13311 F:      kernel/time/tick*.*
13312
13313 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13314 M:      Pavel Machek <pavel@ucw.cz>
13315 M:      Sakari Ailus <sakari.ailus@iki.fi>
13316 L:      linux-media@vger.kernel.org
13317 S:      Maintained
13318 F:      drivers/media/i2c/ad5820.c
13319 F:      drivers/media/i2c/et8ek8
13320
13321 NOKIA N900 POWER SUPPLY DRIVERS
13322 R:      Pali Rohár <pali@kernel.org>
13323 F:      drivers/power/supply/bq2415x_charger.c
13324 F:      drivers/power/supply/bq27xxx_battery.c
13325 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13326 F:      drivers/power/supply/isp1704_charger.c
13327 F:      drivers/power/supply/rx51_battery.c
13328 F:      include/linux/power/bq2415x_charger.h
13329 F:      include/linux/power/bq27xxx_battery.h
13330
13331 NOLIBC HEADER FILE
13332 M:      Willy Tarreau <w@1wt.eu>
13333 S:      Maintained
13334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13335 F:      tools/include/nolibc/
13336
13337 NSDEPS
13338 M:      Matthias Maennich <maennich@google.com>
13339 S:      Maintained
13340 F:      Documentation/core-api/symbol-namespaces.rst
13341 F:      scripts/nsdeps
13342
13343 NTB AMD DRIVER
13344 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13345 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13346 L:      linux-ntb@googlegroups.com
13347 S:      Supported
13348 F:      drivers/ntb/hw/amd/
13349
13350 NTB DRIVER CORE
13351 M:      Jon Mason <jdmason@kudzu.us>
13352 M:      Dave Jiang <dave.jiang@intel.com>
13353 M:      Allen Hubbe <allenbh@gmail.com>
13354 L:      linux-ntb@googlegroups.com
13355 S:      Supported
13356 W:      https://github.com/jonmason/ntb/wiki
13357 T:      git git://github.com/jonmason/ntb.git
13358 F:      drivers/net/ntb_netdev.c
13359 F:      drivers/ntb/
13360 F:      include/linux/ntb.h
13361 F:      include/linux/ntb_transport.h
13362 F:      tools/testing/selftests/ntb/
13363
13364 NTB IDT DRIVER
13365 M:      Serge Semin <fancer.lancer@gmail.com>
13366 L:      linux-ntb@googlegroups.com
13367 S:      Supported
13368 F:      drivers/ntb/hw/idt/
13369
13370 NTB INTEL DRIVER
13371 M:      Dave Jiang <dave.jiang@intel.com>
13372 L:      linux-ntb@googlegroups.com
13373 S:      Supported
13374 W:      https://github.com/davejiang/linux/wiki
13375 T:      git https://github.com/davejiang/linux.git
13376 F:      drivers/ntb/hw/intel/
13377
13378 NTFS FILESYSTEM
13379 M:      Anton Altaparmakov <anton@tuxera.com>
13380 L:      linux-ntfs-dev@lists.sourceforge.net
13381 S:      Supported
13382 W:      http://www.tuxera.com/
13383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13384 F:      Documentation/filesystems/ntfs.rst
13385 F:      fs/ntfs/
13386
13387 NTFS3 FILESYSTEM
13388 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13389 L:      ntfs3@lists.linux.dev
13390 S:      Supported
13391 W:      http://www.paragon-software.com/
13392 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13393 F:      Documentation/filesystems/ntfs3.rst
13394 F:      fs/ntfs3/
13395
13396 NUBUS SUBSYSTEM
13397 M:      Finn Thain <fthain@linux-m68k.org>
13398 L:      linux-m68k@lists.linux-m68k.org
13399 S:      Maintained
13400 F:      arch/*/include/asm/nubus.h
13401 F:      drivers/nubus/
13402 F:      include/linux/nubus.h
13403 F:      include/uapi/linux/nubus.h
13404
13405 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13406 M:      Antonino Daplas <adaplas@gmail.com>
13407 L:      linux-fbdev@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/video/fbdev/nvidia/
13410 F:      drivers/video/fbdev/riva/
13411
13412 NVM EXPRESS DRIVER
13413 M:      Keith Busch <kbusch@kernel.org>
13414 M:      Jens Axboe <axboe@fb.com>
13415 M:      Christoph Hellwig <hch@lst.de>
13416 M:      Sagi Grimberg <sagi@grimberg.me>
13417 L:      linux-nvme@lists.infradead.org
13418 S:      Supported
13419 W:      http://git.infradead.org/nvme.git
13420 T:      git://git.infradead.org/nvme.git
13421 F:      drivers/nvme/host/
13422 F:      include/linux/nvme.h
13423 F:      include/uapi/linux/nvme_ioctl.h
13424
13425 NVM EXPRESS FC TRANSPORT DRIVERS
13426 M:      James Smart <james.smart@broadcom.com>
13427 L:      linux-nvme@lists.infradead.org
13428 S:      Supported
13429 F:      drivers/nvme/host/fc.c
13430 F:      drivers/nvme/target/fc.c
13431 F:      drivers/nvme/target/fcloop.c
13432 F:      include/linux/nvme-fc-driver.h
13433 F:      include/linux/nvme-fc.h
13434
13435 NVM EXPRESS TARGET DRIVER
13436 M:      Christoph Hellwig <hch@lst.de>
13437 M:      Sagi Grimberg <sagi@grimberg.me>
13438 M:      Chaitanya Kulkarni <kch@nvidia.com>
13439 L:      linux-nvme@lists.infradead.org
13440 S:      Supported
13441 W:      http://git.infradead.org/nvme.git
13442 T:      git://git.infradead.org/nvme.git
13443 F:      drivers/nvme/target/
13444
13445 NVMEM FRAMEWORK
13446 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13447 S:      Maintained
13448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13449 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13450 F:      Documentation/devicetree/bindings/nvmem/
13451 F:      drivers/nvmem/
13452 F:      include/linux/nvmem-consumer.h
13453 F:      include/linux/nvmem-provider.h
13454
13455 NXP C45 TJA11XX PHY DRIVER
13456 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13457 L:      netdev@vger.kernel.org
13458 S:      Maintained
13459 F:      drivers/net/phy/nxp-c45-tja11xx.c
13460
13461 NXP FSPI DRIVER
13462 M:      Ashish Kumar <ashish.kumar@nxp.com>
13463 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13464 L:      linux-spi@vger.kernel.org
13465 S:      Maintained
13466 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13467 F:      drivers/spi/spi-nxp-fspi.c
13468
13469 NXP FXAS21002C DRIVER
13470 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13471 L:      linux-iio@vger.kernel.org
13472 S:      Maintained
13473 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13474 F:      drivers/iio/gyro/fxas21002c.h
13475 F:      drivers/iio/gyro/fxas21002c_core.c
13476 F:      drivers/iio/gyro/fxas21002c_i2c.c
13477 F:      drivers/iio/gyro/fxas21002c_spi.c
13478
13479 NXP i.MX CLOCK DRIVERS
13480 M:      Abel Vesa <abel.vesa@nxp.com>
13481 L:      linux-clk@vger.kernel.org
13482 L:      linux-imx@nxp.com
13483 S:      Maintained
13484 F:      drivers/clk/imx/
13485
13486 NXP i.MX 8MQ DCSS DRIVER
13487 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13488 R:      Lucas Stach <l.stach@pengutronix.de>
13489 L:      dri-devel@lists.freedesktop.org
13490 S:      Maintained
13491 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13492 F:      drivers/gpu/drm/imx/dcss/
13493
13494 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13495 M:      Jagan Teki <jagan@amarulasolutions.com>
13496 S:      Maintained
13497 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13498 F:      drivers/regulator/pf8x00-regulator.c
13499
13500 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13501 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13502 L:      linux-kernel@vger.kernel.org
13503 S:      Maintained
13504 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13505 F:      drivers/extcon/extcon-ptn5150.c
13506
13507 NXP SGTL5000 DRIVER
13508 M:      Fabio Estevam <festevam@gmail.com>
13509 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13510 S:      Maintained
13511 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13512 F:      sound/soc/codecs/sgtl5000*
13513
13514 NXP SJA1105 ETHERNET SWITCH DRIVER
13515 M:      Vladimir Oltean <olteanv@gmail.com>
13516 L:      linux-kernel@vger.kernel.org
13517 S:      Maintained
13518 F:      drivers/net/dsa/sja1105
13519 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13520
13521 NXP TDA998X DRM DRIVER
13522 M:      Russell King <linux@armlinux.org.uk>
13523 S:      Maintained
13524 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13525 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13526 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13527 F:      include/drm/i2c/tda998x.h
13528 F:      include/dt-bindings/display/tda998x.h
13529 K:      "nxp,tda998x"
13530
13531 NXP TFA9879 DRIVER
13532 M:      Peter Rosin <peda@axentia.se>
13533 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13534 S:      Maintained
13535 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13536 F:      sound/soc/codecs/tfa9879*
13537
13538 NXP/Goodix TFA989X (TFA1) DRIVER
13539 M:      Stephan Gerhold <stephan@gerhold.net>
13540 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13541 S:      Maintained
13542 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13543 F:      sound/soc/codecs/tfa989x.c
13544
13545 NXP-NCI NFC DRIVER
13546 R:      Charles Gorand <charles.gorand@effinnov.com>
13547 L:      linux-nfc@lists.01.org (subscribers-only)
13548 S:      Supported
13549 F:      drivers/nfc/nxp-nci
13550
13551 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13552 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13553 R:      NXP Linux Team <linux-imx@nxp.com>
13554 L:      linux-media@vger.kernel.org
13555 S:      Maintained
13556 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13557 F:      drivers/media/platform/imx-jpeg
13558
13559 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13560 M:      Jonas Malaco <jonas@protocubo.io>
13561 L:      linux-hwmon@vger.kernel.org
13562 S:      Maintained
13563 F:      Documentation/hwmon/nzxt-kraken2.rst
13564 F:      drivers/hwmon/nzxt-kraken2.c
13565
13566 OBJAGG
13567 M:      Jiri Pirko <jiri@nvidia.com>
13568 L:      netdev@vger.kernel.org
13569 S:      Supported
13570 F:      include/linux/objagg.h
13571 F:      lib/objagg.c
13572 F:      lib/test_objagg.c
13573
13574 OBJTOOL
13575 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13576 M:      Peter Zijlstra <peterz@infradead.org>
13577 S:      Supported
13578 F:      tools/objtool/
13579 F:      include/linux/objtool.h
13580
13581 OCELOT ETHERNET SWITCH DRIVER
13582 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13583 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13584 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13585 M:      UNGLinuxDriver@microchip.com
13586 L:      netdev@vger.kernel.org
13587 S:      Supported
13588 F:      drivers/net/dsa/ocelot/*
13589 F:      drivers/net/ethernet/mscc/
13590 F:      include/soc/mscc/ocelot*
13591 F:      net/dsa/tag_ocelot.c
13592 F:      net/dsa/tag_ocelot_8021q.c
13593 F:      tools/testing/selftests/drivers/net/ocelot/*
13594
13595 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13596 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13597 M:      Andrew Donnellan <ajd@linux.ibm.com>
13598 L:      linuxppc-dev@lists.ozlabs.org
13599 S:      Supported
13600 F:      Documentation/userspace-api/accelerators/ocxl.rst
13601 F:      arch/powerpc/include/asm/pnv-ocxl.h
13602 F:      arch/powerpc/platforms/powernv/ocxl.c
13603 F:      drivers/misc/ocxl/
13604 F:      include/misc/ocxl*
13605 F:      include/uapi/misc/ocxl.h
13606
13607 OMAP AUDIO SUPPORT
13608 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13609 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13610 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13611 L:      linux-omap@vger.kernel.org
13612 S:      Maintained
13613 F:      sound/soc/ti/n810.c
13614 F:      sound/soc/ti/omap*
13615 F:      sound/soc/ti/rx51.c
13616 F:      sound/soc/ti/sdma-pcm.*
13617
13618 OMAP CLOCK FRAMEWORK SUPPORT
13619 M:      Paul Walmsley <paul@pwsan.com>
13620 L:      linux-omap@vger.kernel.org
13621 S:      Maintained
13622 F:      arch/arm/*omap*/*clock*
13623
13624 OMAP DEVICE TREE SUPPORT
13625 M:      Benoît Cousson <bcousson@baylibre.com>
13626 M:      Tony Lindgren <tony@atomide.com>
13627 L:      linux-omap@vger.kernel.org
13628 L:      devicetree@vger.kernel.org
13629 S:      Maintained
13630 F:      arch/arm/boot/dts/*am3*
13631 F:      arch/arm/boot/dts/*am4*
13632 F:      arch/arm/boot/dts/*am5*
13633 F:      arch/arm/boot/dts/*dra7*
13634 F:      arch/arm/boot/dts/*omap*
13635 F:      arch/arm/boot/dts/logicpd-som-lv*
13636 F:      arch/arm/boot/dts/logicpd-torpedo*
13637
13638 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13639 L:      linux-omap@vger.kernel.org
13640 L:      linux-fbdev@vger.kernel.org
13641 S:      Orphan
13642 F:      Documentation/arm/omap/dss.rst
13643 F:      drivers/video/fbdev/omap2/
13644
13645 OMAP FRAMEBUFFER SUPPORT
13646 L:      linux-fbdev@vger.kernel.org
13647 L:      linux-omap@vger.kernel.org
13648 S:      Orphan
13649 F:      drivers/video/fbdev/omap/
13650
13651 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13652 M:      Roger Quadros <rogerq@kernel.org>
13653 M:      Tony Lindgren <tony@atomide.com>
13654 L:      linux-omap@vger.kernel.org
13655 S:      Maintained
13656 F:      arch/arm/mach-omap2/*gpmc*
13657 F:      drivers/memory/omap-gpmc.c
13658
13659 OMAP GPIO DRIVER
13660 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13661 M:      Santosh Shilimkar <ssantosh@kernel.org>
13662 M:      Kevin Hilman <khilman@kernel.org>
13663 L:      linux-omap@vger.kernel.org
13664 S:      Maintained
13665 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13666 F:      drivers/gpio/gpio-omap.c
13667
13668 OMAP HARDWARE SPINLOCK SUPPORT
13669 M:      Ohad Ben-Cohen <ohad@wizery.com>
13670 L:      linux-omap@vger.kernel.org
13671 S:      Maintained
13672 F:      drivers/hwspinlock/omap_hwspinlock.c
13673
13674 OMAP HS MMC SUPPORT
13675 L:      linux-mmc@vger.kernel.org
13676 L:      linux-omap@vger.kernel.org
13677 S:      Orphan
13678 F:      drivers/mmc/host/omap_hsmmc.c
13679
13680 OMAP HWMOD DATA
13681 M:      Paul Walmsley <paul@pwsan.com>
13682 L:      linux-omap@vger.kernel.org
13683 S:      Maintained
13684 F:      arch/arm/mach-omap2/omap_hwmod*data*
13685
13686 OMAP HWMOD SUPPORT
13687 M:      Benoît Cousson <bcousson@baylibre.com>
13688 M:      Paul Walmsley <paul@pwsan.com>
13689 L:      linux-omap@vger.kernel.org
13690 S:      Maintained
13691 F:      arch/arm/mach-omap2/omap_hwmod.*
13692
13693 OMAP I2C DRIVER
13694 M:      Vignesh R <vigneshr@ti.com>
13695 L:      linux-omap@vger.kernel.org
13696 L:      linux-i2c@vger.kernel.org
13697 S:      Maintained
13698 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13699 F:      drivers/i2c/busses/i2c-omap.c
13700
13701 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13702 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13703 L:      linux-media@vger.kernel.org
13704 S:      Maintained
13705 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13706 F:      drivers/media/platform/omap3isp/
13707 F:      drivers/staging/media/omap4iss/
13708
13709 OMAP MMC SUPPORT
13710 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13711 L:      linux-omap@vger.kernel.org
13712 S:      Odd Fixes
13713 F:      drivers/mmc/host/omap.c
13714
13715 OMAP POWER MANAGEMENT SUPPORT
13716 M:      Kevin Hilman <khilman@kernel.org>
13717 L:      linux-omap@vger.kernel.org
13718 S:      Maintained
13719 F:      arch/arm/*omap*/*pm*
13720 F:      drivers/cpufreq/omap-cpufreq.c
13721
13722 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13723 M:      Rajendra Nayak <rnayak@codeaurora.org>
13724 M:      Paul Walmsley <paul@pwsan.com>
13725 L:      linux-omap@vger.kernel.org
13726 S:      Maintained
13727 F:      arch/arm/mach-omap2/prm*
13728
13729 OMAP RANDOM NUMBER GENERATOR SUPPORT
13730 M:      Deepak Saxena <dsaxena@plexity.net>
13731 S:      Maintained
13732 F:      drivers/char/hw_random/omap-rng.c
13733
13734 OMAP USB SUPPORT
13735 L:      linux-usb@vger.kernel.org
13736 L:      linux-omap@vger.kernel.org
13737 S:      Orphan
13738 F:      arch/arm/*omap*/usb*
13739 F:      drivers/usb/*/*omap*
13740
13741 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13742 M:      Mark Jackson <mpfj@newflow.co.uk>
13743 L:      linux-omap@vger.kernel.org
13744 S:      Maintained
13745 F:      arch/arm/boot/dts/am335x-nano.dts
13746
13747 OMAP1 SUPPORT
13748 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13749 M:      Tony Lindgren <tony@atomide.com>
13750 L:      linux-omap@vger.kernel.org
13751 S:      Maintained
13752 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13754 F:      arch/arm/configs/omap1_defconfig
13755 F:      arch/arm/mach-omap1/
13756 F:      arch/arm/plat-omap/
13757 F:      drivers/i2c/busses/i2c-omap.c
13758 F:      include/linux/platform_data/ams-delta-fiq.h
13759 F:      include/linux/platform_data/i2c-omap.h
13760
13761 OMAP2+ SUPPORT
13762 M:      Tony Lindgren <tony@atomide.com>
13763 L:      linux-omap@vger.kernel.org
13764 S:      Maintained
13765 W:      http://www.muru.com/linux/omap/
13766 W:      http://linux.omap.com/
13767 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13769 F:      arch/arm/configs/omap2plus_defconfig
13770 F:      arch/arm/mach-omap2/
13771 F:      arch/arm/plat-omap/
13772 F:      drivers/bus/ti-sysc.c
13773 F:      drivers/i2c/busses/i2c-omap.c
13774 F:      drivers/irqchip/irq-omap-intc.c
13775 F:      drivers/mfd/*omap*.c
13776 F:      drivers/mfd/menelaus.c
13777 F:      drivers/mfd/palmas.c
13778 F:      drivers/mfd/tps65217.c
13779 F:      drivers/mfd/tps65218.c
13780 F:      drivers/mfd/tps65910.c
13781 F:      drivers/mfd/twl-core.[ch]
13782 F:      drivers/mfd/twl4030*.c
13783 F:      drivers/mfd/twl6030*.c
13784 F:      drivers/mfd/twl6040*.c
13785 F:      drivers/regulator/palmas-regulator*.c
13786 F:      drivers/regulator/pbias-regulator.c
13787 F:      drivers/regulator/tps65217-regulator.c
13788 F:      drivers/regulator/tps65218-regulator.c
13789 F:      drivers/regulator/tps65910-regulator.c
13790 F:      drivers/regulator/twl-regulator.c
13791 F:      drivers/regulator/twl6030-regulator.c
13792 F:      include/linux/platform_data/i2c-omap.h
13793 F:      include/linux/platform_data/ti-sysc.h
13794
13795 OMFS FILESYSTEM
13796 M:      Bob Copeland <me@bobcopeland.com>
13797 L:      linux-karma-devel@lists.sourceforge.net
13798 S:      Maintained
13799 F:      Documentation/filesystems/omfs.rst
13800 F:      fs/omfs/
13801
13802 OMNIKEY CARDMAN 4000 DRIVER
13803 M:      Harald Welte <laforge@gnumonks.org>
13804 S:      Maintained
13805 F:      drivers/char/pcmcia/cm4000_cs.c
13806 F:      include/linux/cm4000_cs.h
13807 F:      include/uapi/linux/cm4000_cs.h
13808
13809 OMNIKEY CARDMAN 4040 DRIVER
13810 M:      Harald Welte <laforge@gnumonks.org>
13811 S:      Maintained
13812 F:      drivers/char/pcmcia/cm4040_cs.*
13813
13814 OMNIVISION OV02A10 SENSOR DRIVER
13815 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13816 L:      linux-media@vger.kernel.org
13817 S:      Maintained
13818 T:      git git://linuxtv.org/media_tree.git
13819 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13820 F:      drivers/media/i2c/ov02a10.c
13821
13822 OMNIVISION OV13858 SENSOR DRIVER
13823 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13824 L:      linux-media@vger.kernel.org
13825 S:      Maintained
13826 T:      git git://linuxtv.org/media_tree.git
13827 F:      drivers/media/i2c/ov13858.c
13828
13829 OMNIVISION OV2680 SENSOR DRIVER
13830 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13831 L:      linux-media@vger.kernel.org
13832 S:      Maintained
13833 T:      git git://linuxtv.org/media_tree.git
13834 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13835 F:      drivers/media/i2c/ov2680.c
13836
13837 OMNIVISION OV2685 SENSOR DRIVER
13838 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13839 L:      linux-media@vger.kernel.org
13840 S:      Maintained
13841 T:      git git://linuxtv.org/media_tree.git
13842 F:      drivers/media/i2c/ov2685.c
13843
13844 OMNIVISION OV2740 SENSOR DRIVER
13845 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13846 R:      Shawn Tu <shawnx.tu@intel.com>
13847 R:      Bingbu Cao <bingbu.cao@intel.com>
13848 L:      linux-media@vger.kernel.org
13849 S:      Maintained
13850 T:      git git://linuxtv.org/media_tree.git
13851 F:      drivers/media/i2c/ov2740.c
13852
13853 OMNIVISION OV5640 SENSOR DRIVER
13854 M:      Steve Longerbeam <slongerbeam@gmail.com>
13855 L:      linux-media@vger.kernel.org
13856 S:      Maintained
13857 T:      git git://linuxtv.org/media_tree.git
13858 F:      drivers/media/i2c/ov5640.c
13859
13860 OMNIVISION OV5647 SENSOR DRIVER
13861 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13862 M:      Jacopo Mondi <jacopo@jmondi.org>
13863 L:      linux-media@vger.kernel.org
13864 S:      Maintained
13865 T:      git git://linuxtv.org/media_tree.git
13866 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13867 F:      drivers/media/i2c/ov5647.c
13868
13869 OMNIVISION OV5670 SENSOR DRIVER
13870 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13871 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13872 L:      linux-media@vger.kernel.org
13873 S:      Maintained
13874 T:      git git://linuxtv.org/media_tree.git
13875 F:      drivers/media/i2c/ov5670.c
13876
13877 OMNIVISION OV5675 SENSOR DRIVER
13878 M:      Shawn Tu <shawnx.tu@intel.com>
13879 L:      linux-media@vger.kernel.org
13880 S:      Maintained
13881 T:      git git://linuxtv.org/media_tree.git
13882 F:      drivers/media/i2c/ov5675.c
13883
13884 OMNIVISION OV5695 SENSOR DRIVER
13885 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13886 L:      linux-media@vger.kernel.org
13887 S:      Maintained
13888 T:      git git://linuxtv.org/media_tree.git
13889 F:      drivers/media/i2c/ov5695.c
13890
13891 OMNIVISION OV7670 SENSOR DRIVER
13892 L:      linux-media@vger.kernel.org
13893 S:      Orphan
13894 T:      git git://linuxtv.org/media_tree.git
13895 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13896 F:      drivers/media/i2c/ov7670.c
13897
13898 OMNIVISION OV772x SENSOR DRIVER
13899 M:      Jacopo Mondi <jacopo@jmondi.org>
13900 L:      linux-media@vger.kernel.org
13901 S:      Odd fixes
13902 T:      git git://linuxtv.org/media_tree.git
13903 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13904 F:      drivers/media/i2c/ov772x.c
13905 F:      include/media/i2c/ov772x.h
13906
13907 OMNIVISION OV7740 SENSOR DRIVER
13908 M:      Wenyou Yang <wenyou.yang@microchip.com>
13909 L:      linux-media@vger.kernel.org
13910 S:      Maintained
13911 T:      git git://linuxtv.org/media_tree.git
13912 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13913 F:      drivers/media/i2c/ov7740.c
13914
13915 OMNIVISION OV8856 SENSOR DRIVER
13916 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13917 L:      linux-media@vger.kernel.org
13918 S:      Maintained
13919 T:      git git://linuxtv.org/media_tree.git
13920 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13921 F:      drivers/media/i2c/ov8856.c
13922
13923 OMNIVISION OV9282 SENSOR DRIVER
13924 M:      Paul J. Murphy <paul.j.murphy@intel.com>
13925 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13926 L:      linux-media@vger.kernel.org
13927 S:      Maintained
13928 T:      git git://linuxtv.org/media_tree.git
13929 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13930 F:      drivers/media/i2c/ov9282.c
13931
13932 OMNIVISION OV9640 SENSOR DRIVER
13933 M:      Petr Cvek <petrcvekcz@gmail.com>
13934 L:      linux-media@vger.kernel.org
13935 S:      Maintained
13936 F:      drivers/media/i2c/ov9640.*
13937
13938 OMNIVISION OV9650 SENSOR DRIVER
13939 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13940 R:      Akinobu Mita <akinobu.mita@gmail.com>
13941 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13942 L:      linux-media@vger.kernel.org
13943 S:      Maintained
13944 T:      git git://linuxtv.org/media_tree.git
13945 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13946 F:      drivers/media/i2c/ov9650.c
13947
13948 OMNIVISION OV9734 SENSOR DRIVER
13949 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13950 R:      Bingbu Cao <bingbu.cao@intel.com>
13951 L:      linux-media@vger.kernel.org
13952 S:      Maintained
13953 T:      git git://linuxtv.org/media_tree.git
13954 F:      drivers/media/i2c/ov9734.c
13955
13956 ONENAND FLASH DRIVER
13957 M:      Kyungmin Park <kyungmin.park@samsung.com>
13958 L:      linux-mtd@lists.infradead.org
13959 S:      Maintained
13960 F:      drivers/mtd/nand/onenand/
13961 F:      include/linux/mtd/onenand*.h
13962
13963 ONION OMEGA2+ BOARD
13964 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
13965 L:      linux-mips@vger.kernel.org
13966 S:      Maintained
13967 F:      arch/mips/boot/dts/ralink/omega2p.dts
13968
13969 OP-TEE DRIVER
13970 M:      Jens Wiklander <jens.wiklander@linaro.org>
13971 L:      op-tee@lists.trustedfirmware.org
13972 S:      Maintained
13973 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
13974 F:      drivers/tee/optee/
13975
13976 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
13977 M:      Sumit Garg <sumit.garg@linaro.org>
13978 L:      op-tee@lists.trustedfirmware.org
13979 S:      Maintained
13980 F:      drivers/char/hw_random/optee-rng.c
13981
13982 OPA-VNIC DRIVER
13983 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
13984 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
13985 L:      linux-rdma@vger.kernel.org
13986 S:      Supported
13987 F:      drivers/infiniband/ulp/opa_vnic
13988
13989 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
13990 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
13991 M:      Frank Rowand <frowand.list@gmail.com>
13992 L:      devicetree@vger.kernel.org
13993 S:      Maintained
13994 F:      Documentation/devicetree/dynamic-resolution-notes.rst
13995 F:      Documentation/devicetree/overlay-notes.rst
13996 F:      drivers/of/overlay.c
13997 F:      drivers/of/resolver.c
13998 K:      of_overlay_notifier_
13999
14000 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14001 M:      Rob Herring <robh+dt@kernel.org>
14002 M:      Frank Rowand <frowand.list@gmail.com>
14003 L:      devicetree@vger.kernel.org
14004 S:      Maintained
14005 W:      http://www.devicetree.org/
14006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14007 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14008 F:      drivers/of/
14009 F:      include/linux/of*.h
14010 F:      scripts/dtc/
14011
14012 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14013 M:      Rob Herring <robh+dt@kernel.org>
14014 L:      devicetree@vger.kernel.org
14015 S:      Maintained
14016 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14018 F:      Documentation/devicetree/
14019 F:      arch/*/boot/dts/
14020 F:      include/dt-bindings/
14021
14022 OPENCOMPUTE PTP CLOCK DRIVER
14023 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14024 L:      netdev@vger.kernel.org
14025 S:      Maintained
14026 F:      drivers/ptp/ptp_ocp.c
14027
14028 OPENCORES I2C BUS DRIVER
14029 M:      Peter Korsgaard <peter@korsgaard.com>
14030 M:      Andrew Lunn <andrew@lunn.ch>
14031 L:      linux-i2c@vger.kernel.org
14032 S:      Maintained
14033 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14034 F:      Documentation/i2c/busses/i2c-ocores.rst
14035 F:      drivers/i2c/busses/i2c-ocores.c
14036 F:      include/linux/platform_data/i2c-ocores.h
14037
14038 OPENRISC ARCHITECTURE
14039 M:      Jonas Bonn <jonas@southpole.se>
14040 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14041 M:      Stafford Horne <shorne@gmail.com>
14042 L:      openrisc@lists.librecores.org
14043 S:      Maintained
14044 W:      http://openrisc.io
14045 T:      git git://github.com/openrisc/linux.git
14046 F:      Documentation/devicetree/bindings/openrisc/
14047 F:      Documentation/openrisc/
14048 F:      arch/openrisc/
14049 F:      drivers/irqchip/irq-ompic.c
14050 F:      drivers/irqchip/irq-or1k-*
14051
14052 OPENVSWITCH
14053 M:      Pravin B Shelar <pshelar@ovn.org>
14054 L:      netdev@vger.kernel.org
14055 L:      dev@openvswitch.org
14056 S:      Maintained
14057 W:      http://openvswitch.org
14058 F:      include/uapi/linux/openvswitch.h
14059 F:      net/openvswitch/
14060
14061 OPERATING PERFORMANCE POINTS (OPP)
14062 M:      Viresh Kumar <vireshk@kernel.org>
14063 M:      Nishanth Menon <nm@ti.com>
14064 M:      Stephen Boyd <sboyd@kernel.org>
14065 L:      linux-pm@vger.kernel.org
14066 S:      Maintained
14067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14068 F:      Documentation/devicetree/bindings/opp/
14069 F:      Documentation/power/opp.rst
14070 F:      drivers/opp/
14071 F:      include/linux/pm_opp.h
14072
14073 OPL4 DRIVER
14074 M:      Clemens Ladisch <clemens@ladisch.de>
14075 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14076 S:      Maintained
14077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14078 F:      sound/drivers/opl4/
14079
14080 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14081 M:      Mark Fasheh <mark@fasheh.com>
14082 M:      Joel Becker <jlbec@evilplan.org>
14083 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14084 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14085 S:      Supported
14086 W:      http://ocfs2.wiki.kernel.org
14087 F:      Documentation/filesystems/dlmfs.rst
14088 F:      Documentation/filesystems/ocfs2.rst
14089 F:      fs/ocfs2/
14090
14091 ORANGEFS FILESYSTEM
14092 M:      Mike Marshall <hubcap@omnibond.com>
14093 R:      Martin Brandenburg <martin@omnibond.com>
14094 L:      devel@lists.orangefs.org
14095 S:      Supported
14096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14097 F:      Documentation/filesystems/orangefs.rst
14098 F:      fs/orangefs/
14099
14100 ORINOCO DRIVER
14101 L:      linux-wireless@vger.kernel.org
14102 S:      Orphan
14103 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14104 W:      http://www.nongnu.org/orinoco/
14105 F:      drivers/net/wireless/intersil/orinoco/
14106
14107 OV2659 OMNIVISION SENSOR DRIVER
14108 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14109 L:      linux-media@vger.kernel.org
14110 S:      Maintained
14111 W:      https://linuxtv.org
14112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14113 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14114 F:      drivers/media/i2c/ov2659.c
14115 F:      include/media/i2c/ov2659.h
14116
14117 OVERLAY FILESYSTEM
14118 M:      Miklos Szeredi <miklos@szeredi.hu>
14119 L:      linux-unionfs@vger.kernel.org
14120 S:      Supported
14121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14122 F:      Documentation/filesystems/overlayfs.rst
14123 F:      fs/overlayfs/
14124
14125 P54 WIRELESS DRIVER
14126 M:      Christian Lamparter <chunkeey@googlemail.com>
14127 L:      linux-wireless@vger.kernel.org
14128 S:      Maintained
14129 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14130 F:      drivers/net/wireless/intersil/p54/
14131
14132 PACKING
14133 M:      Vladimir Oltean <olteanv@gmail.com>
14134 L:      netdev@vger.kernel.org
14135 S:      Supported
14136 F:      Documentation/core-api/packing.rst
14137 F:      include/linux/packing.h
14138 F:      lib/packing.c
14139
14140 PADATA PARALLEL EXECUTION MECHANISM
14141 M:      Steffen Klassert <steffen.klassert@secunet.com>
14142 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14143 L:      linux-crypto@vger.kernel.org
14144 L:      linux-kernel@vger.kernel.org
14145 S:      Maintained
14146 F:      Documentation/core-api/padata.rst
14147 F:      include/linux/padata.h
14148 F:      kernel/padata.c
14149
14150 PAGE POOL
14151 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14152 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14153 L:      netdev@vger.kernel.org
14154 S:      Supported
14155 F:      Documentation/networking/page_pool.rst
14156 F:      include/net/page_pool.h
14157 F:      include/trace/events/page_pool.h
14158 F:      net/core/page_pool.c
14159
14160 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14161 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14162 L:      platform-driver-x86@vger.kernel.org
14163 S:      Maintained
14164 F:      drivers/platform/x86/panasonic-laptop.c
14165
14166 PARALLAX PING IIO SENSOR DRIVER
14167 M:      Andreas Klinger <ak@it-klinger.de>
14168 L:      linux-iio@vger.kernel.org
14169 S:      Maintained
14170 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14171 F:      drivers/iio/proximity/ping.c
14172
14173 PARALLEL LCD/KEYPAD PANEL DRIVER
14174 M:      Willy Tarreau <willy@haproxy.com>
14175 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14176 S:      Odd Fixes
14177 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14178 F:      drivers/auxdisplay/panel.c
14179
14180 PARALLEL PORT SUBSYSTEM
14181 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14182 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14183 L:      linux-parport@lists.infradead.org (subscribers-only)
14184 S:      Maintained
14185 F:      Documentation/driver-api/parport*.rst
14186 F:      drivers/char/ppdev.c
14187 F:      drivers/parport/
14188 F:      include/linux/parport*.h
14189 F:      include/uapi/linux/ppdev.h
14190
14191 PARAVIRT_OPS INTERFACE
14192 M:      Juergen Gross <jgross@suse.com>
14193 M:      Deep Shah <sdeep@vmware.com>
14194 M:      "VMware, Inc." <pv-drivers@vmware.com>
14195 L:      virtualization@lists.linux-foundation.org
14196 S:      Supported
14197 F:      Documentation/virt/paravirt_ops.rst
14198 F:      arch/*/include/asm/paravirt*.h
14199 F:      arch/*/kernel/paravirt*
14200 F:      include/linux/hypervisor.h
14201
14202 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14203 M:      Tim Waugh <tim@cyberelk.net>
14204 L:      linux-parport@lists.infradead.org (subscribers-only)
14205 S:      Maintained
14206 F:      Documentation/admin-guide/blockdev/paride.rst
14207 F:      drivers/block/paride/
14208
14209 PARISC ARCHITECTURE
14210 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14211 M:      Helge Deller <deller@gmx.de>
14212 L:      linux-parisc@vger.kernel.org
14213 S:      Maintained
14214 W:      https://parisc.wiki.kernel.org
14215 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14218 F:      Documentation/parisc/
14219 F:      arch/parisc/
14220 F:      drivers/char/agp/parisc-agp.c
14221 F:      drivers/input/misc/hp_sdc_rtc.c
14222 F:      drivers/input/serio/gscps2.c
14223 F:      drivers/input/serio/hp_sdc*
14224 F:      drivers/parisc/
14225 F:      drivers/parport/parport_gsc.*
14226 F:      drivers/tty/serial/8250/8250_gsc.c
14227 F:      drivers/video/console/sti*
14228 F:      drivers/video/fbdev/sti*
14229 F:      drivers/video/logo/logo_parisc*
14230 F:      include/linux/hp_sdc.h
14231
14232 PARMAN
14233 M:      Jiri Pirko <jiri@nvidia.com>
14234 L:      netdev@vger.kernel.org
14235 S:      Supported
14236 F:      include/linux/parman.h
14237 F:      lib/parman.c
14238 F:      lib/test_parman.c
14239
14240 PC ENGINES APU BOARD DRIVER
14241 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14242 S:      Maintained
14243 F:      drivers/platform/x86/pcengines-apuv2.c
14244
14245 PC87360 HARDWARE MONITORING DRIVER
14246 M:      Jim Cromie <jim.cromie@gmail.com>
14247 L:      linux-hwmon@vger.kernel.org
14248 S:      Maintained
14249 F:      Documentation/hwmon/pc87360.rst
14250 F:      drivers/hwmon/pc87360.c
14251
14252 PC8736x GPIO DRIVER
14253 M:      Jim Cromie <jim.cromie@gmail.com>
14254 S:      Maintained
14255 F:      drivers/char/pc8736x_gpio.c
14256
14257 PC87427 HARDWARE MONITORING DRIVER
14258 M:      Jean Delvare <jdelvare@suse.com>
14259 L:      linux-hwmon@vger.kernel.org
14260 S:      Maintained
14261 F:      Documentation/hwmon/pc87427.rst
14262 F:      drivers/hwmon/pc87427.c
14263
14264 PCA9532 LED DRIVER
14265 M:      Riku Voipio <riku.voipio@iki.fi>
14266 S:      Maintained
14267 F:      drivers/leds/leds-pca9532.c
14268 F:      include/linux/leds-pca9532.h
14269
14270 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14271 M:      Guenter Roeck <linux@roeck-us.net>
14272 L:      linux-i2c@vger.kernel.org
14273 S:      Maintained
14274 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14275
14276 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14277 M:      Khalid Aziz <khalid@gonehiking.org>
14278 S:      Maintained
14279 F:      drivers/firmware/pcdp.*
14280
14281 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14282 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14283 M:      Pali Rohár <pali@kernel.org>
14284 L:      linux-pci@vger.kernel.org
14285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14286 S:      Maintained
14287 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14288 F:      drivers/pci/controller/pci-aardvark.c
14289
14290 PCI DRIVER FOR ALTERA PCIE IP
14291 M:      Joyce Ooi <joyce.ooi@intel.com>
14292 L:      linux-pci@vger.kernel.org
14293 S:      Supported
14294 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14295 F:      drivers/pci/controller/pcie-altera.c
14296
14297 PCI DRIVER FOR APPLIEDMICRO XGENE
14298 M:      Toan Le <toan@os.amperecomputing.com>
14299 L:      linux-pci@vger.kernel.org
14300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14301 S:      Maintained
14302 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14303 F:      drivers/pci/controller/pci-xgene.c
14304
14305 PCI DRIVER FOR ARM VERSATILE PLATFORM
14306 M:      Rob Herring <robh@kernel.org>
14307 L:      linux-pci@vger.kernel.org
14308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14309 S:      Maintained
14310 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14311 F:      drivers/pci/controller/pci-versatile.c
14312
14313 PCI DRIVER FOR ARMADA 8K
14314 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14315 L:      linux-pci@vger.kernel.org
14316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14317 S:      Maintained
14318 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14319 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14320
14321 PCI DRIVER FOR CADENCE PCIE IP
14322 M:      Tom Joseph <tjoseph@cadence.com>
14323 L:      linux-pci@vger.kernel.org
14324 S:      Maintained
14325 F:      Documentation/devicetree/bindings/pci/cdns,*
14326 F:      drivers/pci/controller/cadence/
14327
14328 PCI DRIVER FOR FREESCALE LAYERSCAPE
14329 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14330 M:      Mingkai Hu <mingkai.hu@nxp.com>
14331 M:      Roy Zang <roy.zang@nxp.com>
14332 L:      linuxppc-dev@lists.ozlabs.org
14333 L:      linux-pci@vger.kernel.org
14334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14335 S:      Maintained
14336 F:      drivers/pci/controller/dwc/*layerscape*
14337
14338 PCI DRIVER FOR GENERIC OF HOSTS
14339 M:      Will Deacon <will@kernel.org>
14340 L:      linux-pci@vger.kernel.org
14341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14342 S:      Maintained
14343 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14344 F:      drivers/pci/controller/pci-host-common.c
14345 F:      drivers/pci/controller/pci-host-generic.c
14346
14347 PCI DRIVER FOR IMX6
14348 M:      Richard Zhu <hongxing.zhu@nxp.com>
14349 M:      Lucas Stach <l.stach@pengutronix.de>
14350 L:      linux-pci@vger.kernel.org
14351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14352 S:      Maintained
14353 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14354 F:      drivers/pci/controller/dwc/*imx6*
14355
14356 PCI DRIVER FOR FU740
14357 M:      Paul Walmsley <paul.walmsley@sifive.com>
14358 M:      Greentime Hu <greentime.hu@sifive.com>
14359 L:      linux-pci@vger.kernel.org
14360 S:      Maintained
14361 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14362 F:      drivers/pci/controller/dwc/pcie-fu740.c
14363
14364 PCI DRIVER FOR INTEL IXP4XX
14365 M:      Linus Walleij <linus.walleij@linaro.org>
14366 S:      Maintained
14367 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14368 F:      drivers/pci/controller/pci-ixp4xx.c
14369
14370 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14371 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14372 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14373 L:      linux-pci@vger.kernel.org
14374 S:      Supported
14375 F:      drivers/pci/controller/vmd.c
14376
14377 PCI DRIVER FOR MICROSEMI SWITCHTEC
14378 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14379 M:      Logan Gunthorpe <logang@deltatee.com>
14380 L:      linux-pci@vger.kernel.org
14381 S:      Maintained
14382 F:      Documentation/ABI/testing/sysfs-class-switchtec
14383 F:      Documentation/driver-api/switchtec.rst
14384 F:      drivers/ntb/hw/mscc/
14385 F:      drivers/pci/switch/switchtec*
14386 F:      include/linux/switchtec.h
14387 F:      include/uapi/linux/switchtec_ioctl.h
14388
14389 PCI DRIVER FOR MOBIVEIL PCIE IP
14390 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14391 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14392 L:      linux-pci@vger.kernel.org
14393 S:      Supported
14394 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14395 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14396
14397 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14398 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14399 L:      linux-pci@vger.kernel.org
14400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14401 S:      Maintained
14402 F:      drivers/pci/controller/*mvebu*
14403
14404 PCI DRIVER FOR NVIDIA TEGRA
14405 M:      Thierry Reding <thierry.reding@gmail.com>
14406 L:      linux-tegra@vger.kernel.org
14407 L:      linux-pci@vger.kernel.org
14408 S:      Supported
14409 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14410 F:      drivers/pci/controller/pci-tegra.c
14411
14412 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14413 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14414 L:      linux-pci@vger.kernel.org
14415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14416 S:      Maintained
14417 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14418 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14419
14420 PCI DRIVER FOR RENESAS R-CAR
14421 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14422 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14423 L:      linux-pci@vger.kernel.org
14424 L:      linux-renesas-soc@vger.kernel.org
14425 S:      Maintained
14426 F:      Documentation/devicetree/bindings/pci/*rcar*
14427 F:      drivers/pci/controller/*rcar*
14428
14429 PCI DRIVER FOR SAMSUNG EXYNOS
14430 M:      Jingoo Han <jingoohan1@gmail.com>
14431 L:      linux-pci@vger.kernel.org
14432 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14433 L:      linux-samsung-soc@vger.kernel.org
14434 S:      Maintained
14435 F:      drivers/pci/controller/dwc/pci-exynos.c
14436
14437 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14438 M:      Jingoo Han <jingoohan1@gmail.com>
14439 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14440 L:      linux-pci@vger.kernel.org
14441 S:      Maintained
14442 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14443 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14444 F:      drivers/pci/controller/dwc/*designware*
14445
14446 PCI DRIVER FOR TI DRA7XX/J721E
14447 M:      Kishon Vijay Abraham I <kishon@ti.com>
14448 L:      linux-omap@vger.kernel.org
14449 L:      linux-pci@vger.kernel.org
14450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14451 S:      Supported
14452 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14453 F:      drivers/pci/controller/cadence/pci-j721e.c
14454 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14455
14456 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14457 M:      Linus Walleij <linus.walleij@linaro.org>
14458 L:      linux-pci@vger.kernel.org
14459 S:      Maintained
14460 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14461 F:      drivers/pci/controller/pci-v3-semi.c
14462
14463 PCI ENDPOINT SUBSYSTEM
14464 M:      Kishon Vijay Abraham I <kishon@ti.com>
14465 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14466 R:      Krzysztof Wilczyński <kw@linux.com>
14467 L:      linux-pci@vger.kernel.org
14468 S:      Supported
14469 F:      Documentation/PCI/endpoint/*
14470 F:      Documentation/misc-devices/pci-endpoint-test.rst
14471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14472 F:      drivers/misc/pci_endpoint_test.c
14473 F:      drivers/pci/endpoint/
14474 F:      tools/pci/
14475
14476 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14477 M:      Russell Currey <ruscur@russell.cc>
14478 M:      Oliver O'Halloran <oohall@gmail.com>
14479 L:      linuxppc-dev@lists.ozlabs.org
14480 S:      Supported
14481 F:      Documentation/PCI/pci-error-recovery.rst
14482 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14483 F:      arch/powerpc/include/*/eeh*.h
14484 F:      arch/powerpc/kernel/eeh*.c
14485 F:      arch/powerpc/platforms/*/eeh*.c
14486 F:      drivers/pci/pcie/aer.c
14487 F:      drivers/pci/pcie/dpc.c
14488 F:      drivers/pci/pcie/err.c
14489
14490 PCI ERROR RECOVERY
14491 M:      Linas Vepstas <linasvepstas@gmail.com>
14492 L:      linux-pci@vger.kernel.org
14493 S:      Supported
14494 F:      Documentation/PCI/pci-error-recovery.rst
14495
14496 PCI MSI DRIVER FOR ALTERA MSI IP
14497 M:      Joyce Ooi <joyce.ooi@intel.com>
14498 L:      linux-pci@vger.kernel.org
14499 S:      Supported
14500 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14501 F:      drivers/pci/controller/pcie-altera-msi.c
14502
14503 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14504 M:      Toan Le <toan@os.amperecomputing.com>
14505 L:      linux-pci@vger.kernel.org
14506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14507 S:      Maintained
14508 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14509 F:      drivers/pci/controller/pci-xgene-msi.c
14510
14511 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14512 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14513 R:      Rob Herring <robh@kernel.org>
14514 R:      Krzysztof Wilczyński <kw@linux.com>
14515 L:      linux-pci@vger.kernel.org
14516 S:      Supported
14517 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14519 F:      drivers/pci/controller/
14520
14521 PCI SUBSYSTEM
14522 M:      Bjorn Helgaas <bhelgaas@google.com>
14523 L:      linux-pci@vger.kernel.org
14524 S:      Supported
14525 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14527 F:      Documentation/PCI/
14528 F:      Documentation/devicetree/bindings/pci/
14529 F:      arch/x86/kernel/early-quirks.c
14530 F:      arch/x86/kernel/quirks.c
14531 F:      arch/x86/pci/
14532 F:      drivers/acpi/pci*
14533 F:      drivers/pci/
14534 F:      include/asm-generic/pci*
14535 F:      include/linux/of_pci.h
14536 F:      include/linux/pci*
14537 F:      include/uapi/linux/pci*
14538 F:      lib/pci*
14539
14540 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14541 M:      Jonathan Chocron <jonnyc@amazon.com>
14542 L:      linux-pci@vger.kernel.org
14543 S:      Maintained
14544 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14545 F:      drivers/pci/controller/dwc/pcie-al.c
14546
14547 PCIE DRIVER FOR AMLOGIC MESON
14548 M:      Yue Wang <yue.wang@Amlogic.com>
14549 L:      linux-pci@vger.kernel.org
14550 L:      linux-amlogic@lists.infradead.org
14551 S:      Maintained
14552 F:      drivers/pci/controller/dwc/pci-meson.c
14553
14554 PCIE DRIVER FOR AXIS ARTPEC
14555 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14556 L:      linux-arm-kernel@axis.com
14557 L:      linux-pci@vger.kernel.org
14558 S:      Maintained
14559 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14560 F:      drivers/pci/controller/dwc/*artpec*
14561
14562 PCIE DRIVER FOR CAVIUM THUNDERX
14563 M:      Robert Richter <rric@kernel.org>
14564 L:      linux-pci@vger.kernel.org
14565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14566 S:      Odd Fixes
14567 F:      drivers/pci/controller/pci-thunder-*
14568
14569 PCIE DRIVER FOR HISILICON
14570 M:      Zhou Wang <wangzhou1@hisilicon.com>
14571 L:      linux-pci@vger.kernel.org
14572 S:      Maintained
14573 F:      drivers/pci/controller/dwc/pcie-hisi.c
14574
14575 PCIE DRIVER FOR HISILICON KIRIN
14576 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14577 M:      Binghui Wang <wangbinghui@hisilicon.com>
14578 L:      linux-pci@vger.kernel.org
14579 S:      Maintained
14580 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14581 F:      drivers/pci/controller/dwc/pcie-kirin.c
14582
14583 PCIE DRIVER FOR HISILICON STB
14584 M:      Shawn Guo <shawn.guo@linaro.org>
14585 L:      linux-pci@vger.kernel.org
14586 S:      Maintained
14587 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14588 F:      drivers/pci/controller/dwc/pcie-histb.c
14589
14590 PCIE DRIVER FOR INTEL KEEM BAY
14591 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14592 L:      linux-pci@vger.kernel.org
14593 S:      Supported
14594 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14595 F:      drivers/pci/controller/dwc/pcie-keembay.c
14596
14597 PCIE DRIVER FOR INTEL LGM GW SOC
14598 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14599 L:      linux-pci@vger.kernel.org
14600 S:      Maintained
14601 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14602 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14603
14604 PCIE DRIVER FOR MEDIATEK
14605 M:      Ryder Lee <ryder.lee@mediatek.com>
14606 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14607 L:      linux-pci@vger.kernel.org
14608 L:      linux-mediatek@lists.infradead.org
14609 S:      Supported
14610 F:      Documentation/devicetree/bindings/pci/mediatek*
14611 F:      drivers/pci/controller/*mediatek*
14612
14613 PCIE DRIVER FOR MICROCHIP
14614 M:      Daire McNamara <daire.mcnamara@microchip.com>
14615 L:      linux-pci@vger.kernel.org
14616 S:      Supported
14617 F:      Documentation/devicetree/bindings/pci/microchip*
14618 F:      drivers/pci/controller/*microchip*
14619
14620 PCIE DRIVER FOR QUALCOMM MSM
14621 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14622 L:      linux-pci@vger.kernel.org
14623 L:      linux-arm-msm@vger.kernel.org
14624 S:      Maintained
14625 F:      drivers/pci/controller/dwc/*qcom*
14626
14627 PCIE DRIVER FOR ROCKCHIP
14628 M:      Shawn Lin <shawn.lin@rock-chips.com>
14629 L:      linux-pci@vger.kernel.org
14630 L:      linux-rockchip@lists.infradead.org
14631 S:      Maintained
14632 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14633 F:      drivers/pci/controller/pcie-rockchip*
14634
14635 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14636 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14637 L:      linux-pci@vger.kernel.org
14638 S:      Maintained
14639 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14640 F:      drivers/pci/controller/dwc/pcie-uniphier*
14641
14642 PCIE DRIVER FOR ST SPEAR13XX
14643 M:      Pratyush Anand <pratyush.anand@gmail.com>
14644 L:      linux-pci@vger.kernel.org
14645 S:      Maintained
14646 F:      drivers/pci/controller/dwc/*spear*
14647
14648 PCMCIA SUBSYSTEM
14649 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14650 S:      Odd Fixes
14651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14652 F:      Documentation/pcmcia/
14653 F:      drivers/pcmcia/
14654 F:      include/pcmcia/
14655 F:      tools/pcmcia/
14656
14657 PCNET32 NETWORK DRIVER
14658 M:      Don Fry <pcnet32@frontier.com>
14659 L:      netdev@vger.kernel.org
14660 S:      Maintained
14661 F:      drivers/net/ethernet/amd/pcnet32.c
14662
14663 PCRYPT PARALLEL CRYPTO ENGINE
14664 M:      Steffen Klassert <steffen.klassert@secunet.com>
14665 L:      linux-crypto@vger.kernel.org
14666 S:      Maintained
14667 F:      crypto/pcrypt.c
14668 F:      include/crypto/pcrypt.h
14669
14670 PEAQ WMI HOTKEYS DRIVER
14671 M:      Hans de Goede <hdegoede@redhat.com>
14672 L:      platform-driver-x86@vger.kernel.org
14673 S:      Maintained
14674 F:      drivers/platform/x86/peaq-wmi.c
14675
14676 PENSANDO ETHERNET DRIVERS
14677 M:      Shannon Nelson <snelson@pensando.io>
14678 M:      drivers@pensando.io
14679 L:      netdev@vger.kernel.org
14680 S:      Supported
14681 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14682 F:      drivers/net/ethernet/pensando/
14683
14684 PER-CPU MEMORY ALLOCATOR
14685 M:      Dennis Zhou <dennis@kernel.org>
14686 M:      Tejun Heo <tj@kernel.org>
14687 M:      Christoph Lameter <cl@linux.com>
14688 L:      linux-mm@kvack.org
14689 S:      Maintained
14690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14691 F:      arch/*/include/asm/percpu.h
14692 F:      include/linux/percpu*.h
14693 F:      lib/percpu*.c
14694 F:      mm/percpu*.c
14695
14696 PER-TASK DELAY ACCOUNTING
14697 M:      Balbir Singh <bsingharora@gmail.com>
14698 S:      Maintained
14699 F:      include/linux/delayacct.h
14700 F:      kernel/delayacct.c
14701
14702 PERFORMANCE EVENTS SUBSYSTEM
14703 M:      Peter Zijlstra <peterz@infradead.org>
14704 M:      Ingo Molnar <mingo@redhat.com>
14705 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14706 R:      Mark Rutland <mark.rutland@arm.com>
14707 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14708 R:      Jiri Olsa <jolsa@redhat.com>
14709 R:      Namhyung Kim <namhyung@kernel.org>
14710 L:      linux-perf-users@vger.kernel.org
14711 L:      linux-kernel@vger.kernel.org
14712 S:      Supported
14713 W:      https://perf.wiki.kernel.org/
14714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14715 F:      arch/*/events/*
14716 F:      arch/*/events/*/*
14717 F:      arch/*/include/asm/perf_event.h
14718 F:      arch/*/kernel/*/*/perf_event*.c
14719 F:      arch/*/kernel/*/perf_event*.c
14720 F:      arch/*/kernel/perf_callchain.c
14721 F:      arch/*/kernel/perf_event*.c
14722 F:      include/linux/perf_event.h
14723 F:      include/uapi/linux/perf_event.h
14724 F:      kernel/events/*
14725 F:      tools/lib/perf/
14726 F:      tools/perf/
14727
14728 PERFORMANCE EVENTS TOOLING ARM64
14729 R:      John Garry <john.garry@huawei.com>
14730 R:      Will Deacon <will@kernel.org>
14731 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14732 R:      Leo Yan <leo.yan@linaro.org>
14733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14734 S:      Supported
14735 F:      tools/build/feature/test-libopencsd.c
14736 F:      tools/perf/arch/arm*/
14737 F:      tools/perf/pmu-events/arch/arm64/
14738 F:      tools/perf/util/arm-spe*
14739 F:      tools/perf/util/cs-etm*
14740
14741 PERSONALITY HANDLING
14742 M:      Christoph Hellwig <hch@infradead.org>
14743 L:      linux-abi-devel@lists.sourceforge.net
14744 S:      Maintained
14745 F:      include/linux/personality.h
14746 F:      include/uapi/linux/personality.h
14747
14748 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14749 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14750 L:      linux-input@vger.kernel.org
14751 S:      Maintained
14752 F:      Documentation/input/devices/pxrc.rst
14753 F:      drivers/input/joystick/pxrc.c
14754
14755 PHONET PROTOCOL
14756 M:      Remi Denis-Courmont <courmisch@gmail.com>
14757 S:      Supported
14758 F:      Documentation/networking/phonet.rst
14759 F:      include/linux/phonet.h
14760 F:      include/net/phonet/
14761 F:      include/uapi/linux/phonet.h
14762 F:      net/phonet/
14763
14764 PHRAM MTD DRIVER
14765 M:      Joern Engel <joern@lazybastard.org>
14766 L:      linux-mtd@lists.infradead.org
14767 S:      Maintained
14768 F:      drivers/mtd/devices/phram.c
14769
14770 PICOLCD HID DRIVER
14771 M:      Bruno Prémont <bonbons@linux-vserver.org>
14772 L:      linux-input@vger.kernel.org
14773 S:      Maintained
14774 F:      drivers/hid/hid-picolcd*
14775
14776 PIDFD API
14777 M:      Christian Brauner <christian@brauner.io>
14778 L:      linux-kernel@vger.kernel.org
14779 S:      Maintained
14780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14781 F:      samples/pidfd/
14782 F:      tools/testing/selftests/clone3/
14783 F:      tools/testing/selftests/pid_namespace/
14784 F:      tools/testing/selftests/pidfd/
14785 K:      (?i)pidfd
14786 K:      (?i)clone3
14787 K:      \b(clone_args|kernel_clone_args)\b
14788
14789 PIN CONTROL SUBSYSTEM
14790 M:      Linus Walleij <linus.walleij@linaro.org>
14791 L:      linux-gpio@vger.kernel.org
14792 S:      Maintained
14793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14794 F:      Documentation/devicetree/bindings/pinctrl/
14795 F:      Documentation/driver-api/pin-control.rst
14796 F:      drivers/pinctrl/
14797 F:      include/linux/pinctrl/
14798
14799 PIN CONTROLLER - AMD
14800 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14801 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14802 S:      Maintained
14803 F:      drivers/pinctrl/pinctrl-amd.c
14804
14805 PIN CONTROLLER - FREESCALE
14806 M:      Dong Aisheng <aisheng.dong@nxp.com>
14807 M:      Fabio Estevam <festevam@gmail.com>
14808 M:      Shawn Guo <shawnguo@kernel.org>
14809 M:      Stefan Agner <stefan@agner.ch>
14810 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14811 L:      linux-gpio@vger.kernel.org
14812 S:      Maintained
14813 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14814 F:      drivers/pinctrl/freescale/
14815
14816 PIN CONTROLLER - INTEL
14817 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14818 M:      Andy Shevchenko <andy@kernel.org>
14819 S:      Maintained
14820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14821 F:      drivers/pinctrl/intel/
14822
14823 PIN CONTROLLER - KEEMBAY
14824 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14825 S:      Supported
14826 F:      drivers/pinctrl/pinctrl-keembay*
14827
14828 PIN CONTROLLER - MEDIATEK
14829 M:      Sean Wang <sean.wang@kernel.org>
14830 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14831 S:      Maintained
14832 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14833 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14834 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14835 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14836 F:      drivers/pinctrl/mediatek/
14837
14838 PIN CONTROLLER - MICROCHIP AT91
14839 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14841 L:      linux-gpio@vger.kernel.org
14842 S:      Supported
14843 F:      drivers/gpio/gpio-sama5d2-piobu.c
14844 F:      drivers/pinctrl/pinctrl-at91*
14845
14846 PIN CONTROLLER - QUALCOMM
14847 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14848 L:      linux-arm-msm@vger.kernel.org
14849 S:      Maintained
14850 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14851 F:      drivers/pinctrl/qcom/
14852
14853 PIN CONTROLLER - RENESAS
14854 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14855 L:      linux-renesas-soc@vger.kernel.org
14856 S:      Supported
14857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14858 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14859 F:      drivers/pinctrl/renesas/
14860
14861 PIN CONTROLLER - SAMSUNG
14862 M:      Tomasz Figa <tomasz.figa@gmail.com>
14863 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14864 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14866 L:      linux-samsung-soc@vger.kernel.org
14867 S:      Maintained
14868 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14870 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14871 F:      drivers/pinctrl/samsung/
14872 F:      include/dt-bindings/pinctrl/samsung.h
14873
14874 PIN CONTROLLER - SINGLE
14875 M:      Tony Lindgren <tony@atomide.com>
14876 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14878 L:      linux-omap@vger.kernel.org
14879 S:      Maintained
14880 F:      drivers/pinctrl/pinctrl-single.c
14881
14882 PIN CONTROLLER - ST SPEAR
14883 M:      Viresh Kumar <vireshk@kernel.org>
14884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14885 S:      Maintained
14886 W:      http://www.st.com/spear
14887 F:      drivers/pinctrl/spear/
14888
14889 PKTCDVD DRIVER
14890 M:      linux-block@vger.kernel.org
14891 S:      Orphan
14892 F:      drivers/block/pktcdvd.c
14893 F:      include/linux/pktcdvd.h
14894 F:      include/uapi/linux/pktcdvd.h
14895
14896 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14897 M:      Tomasz Duszynski <tduszyns@gmail.com>
14898 S:      Maintained
14899 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14900 F:      drivers/iio/chemical/pms7003.c
14901
14902 PLDMFW LIBRARY
14903 M:      Jacob Keller <jacob.e.keller@intel.com>
14904 S:      Maintained
14905 F:      Documentation/driver-api/pldmfw/
14906 F:      include/linux/pldmfw.h
14907 F:      lib/pldmfw/
14908
14909 PLX DMA DRIVER
14910 M:      Logan Gunthorpe <logang@deltatee.com>
14911 S:      Maintained
14912 F:      drivers/dma/plx_dma.c
14913
14914 PM6764TR DRIVER
14915 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14916 L:      linux-hwmon@vger.kernel.org
14917 S:      Maintained
14918 F:      Documentation/hwmon/pm6764tr.rst
14919 F:      drivers/hwmon/pmbus/pm6764tr.c
14920
14921 PM-GRAPH UTILITY
14922 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14923 L:      linux-pm@vger.kernel.org
14924 S:      Supported
14925 W:      https://01.org/pm-graph
14926 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14927 T:      git git://github.com/intel/pm-graph
14928 F:      tools/power/pm-graph
14929
14930 PMBUS HARDWARE MONITORING DRIVERS
14931 M:      Guenter Roeck <linux@roeck-us.net>
14932 L:      linux-hwmon@vger.kernel.org
14933 S:      Maintained
14934 W:      http://hwmon.wiki.kernel.org/
14935 W:      http://www.roeck-us.net/linux/drivers/
14936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14937 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14938 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14939 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14940 F:      Documentation/hwmon/adm1275.rst
14941 F:      Documentation/hwmon/ibm-cffps.rst
14942 F:      Documentation/hwmon/ir35221.rst
14943 F:      Documentation/hwmon/lm25066.rst
14944 F:      Documentation/hwmon/ltc2978.rst
14945 F:      Documentation/hwmon/ltc3815.rst
14946 F:      Documentation/hwmon/max16064.rst
14947 F:      Documentation/hwmon/max20751.rst
14948 F:      Documentation/hwmon/max31785.rst
14949 F:      Documentation/hwmon/max34440.rst
14950 F:      Documentation/hwmon/max8688.rst
14951 F:      Documentation/hwmon/pmbus-core.rst
14952 F:      Documentation/hwmon/pmbus.rst
14953 F:      Documentation/hwmon/tps40422.rst
14954 F:      Documentation/hwmon/ucd9000.rst
14955 F:      Documentation/hwmon/ucd9200.rst
14956 F:      Documentation/hwmon/zl6100.rst
14957 F:      drivers/hwmon/pmbus/
14958 F:      include/linux/pmbus.h
14959
14960 PMC SIERRA MaxRAID DRIVER
14961 L:      linux-scsi@vger.kernel.org
14962 S:      Orphan
14963 W:      http://www.pmc-sierra.com/
14964 F:      drivers/scsi/pmcraid.*
14965
14966 PMC SIERRA PM8001 DRIVER
14967 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
14968 L:      linux-scsi@vger.kernel.org
14969 S:      Supported
14970 F:      drivers/scsi/pm8001/
14971
14972 PNI RM3100 IIO DRIVER
14973 M:      Song Qiang <songqiang1304521@gmail.com>
14974 L:      linux-iio@vger.kernel.org
14975 S:      Maintained
14976 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
14977 F:      drivers/iio/magnetometer/rm3100*
14978
14979 PNP SUPPORT
14980 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
14981 L:      linux-acpi@vger.kernel.org
14982 S:      Maintained
14983 F:      drivers/pnp/
14984 F:      include/linux/pnp.h
14985
14986 POSIX CLOCKS and TIMERS
14987 M:      Thomas Gleixner <tglx@linutronix.de>
14988 L:      linux-kernel@vger.kernel.org
14989 S:      Maintained
14990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
14991 F:      fs/timerfd.c
14992 F:      include/linux/time_namespace.h
14993 F:      include/linux/timer*
14994 F:      kernel/time/*timer*
14995 F:      kernel/time/namespace.c
14996
14997 POWER MANAGEMENT CORE
14998 M:      "Rafael J. Wysocki" <rafael@kernel.org>
14999 L:      linux-pm@vger.kernel.org
15000 S:      Supported
15001 B:      https://bugzilla.kernel.org
15002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15003 F:      drivers/base/power/
15004 F:      drivers/powercap/
15005 F:      include/linux/intel_rapl.h
15006 F:      include/linux/pm.h
15007 F:      include/linux/pm_*
15008 F:      include/linux/powercap.h
15009 F:      kernel/configs/nopm.config
15010
15011 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15012 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15013 L:      linux-pm@vger.kernel.org
15014 S:      Supported
15015 B:      https://bugzilla.kernel.org
15016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15017 F:      drivers/powercap/dtpm*
15018 F:      include/linux/dtpm.h
15019
15020 POWER STATE COORDINATION INTERFACE (PSCI)
15021 M:      Mark Rutland <mark.rutland@arm.com>
15022 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15024 S:      Maintained
15025 F:      drivers/firmware/psci/
15026 F:      include/linux/psci.h
15027 F:      include/uapi/linux/psci.h
15028
15029 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15030 M:      Sebastian Reichel <sre@kernel.org>
15031 L:      linux-pm@vger.kernel.org
15032 S:      Maintained
15033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15034 F:      Documentation/ABI/testing/sysfs-class-power
15035 F:      Documentation/devicetree/bindings/power/supply/
15036 F:      drivers/power/supply/
15037 F:      include/linux/power/
15038 F:      include/linux/power_supply.h
15039
15040 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15041 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15042 L:      linuxppc-dev@lists.ozlabs.org
15043 S:      Maintained
15044 F:      drivers/char/powernv-op-panel.c
15045
15046 PPP OVER ATM (RFC 2364)
15047 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15048 S:      Maintained
15049 F:      include/uapi/linux/atmppp.h
15050 F:      net/atm/pppoatm.c
15051
15052 PPP OVER ETHERNET
15053 M:      Michal Ostrowski <mostrows@earthlink.net>
15054 S:      Maintained
15055 F:      drivers/net/ppp/pppoe.c
15056 F:      drivers/net/ppp/pppox.c
15057
15058 PPP OVER L2TP
15059 M:      James Chapman <jchapman@katalix.com>
15060 S:      Maintained
15061 F:      include/linux/if_pppol2tp.h
15062 F:      include/uapi/linux/if_pppol2tp.h
15063 F:      net/l2tp/l2tp_ppp.c
15064
15065 PPP PROTOCOL DRIVERS AND COMPRESSORS
15066 M:      Paul Mackerras <paulus@samba.org>
15067 L:      linux-ppp@vger.kernel.org
15068 S:      Maintained
15069 F:      drivers/net/ppp/ppp_*
15070
15071 PPS SUPPORT
15072 M:      Rodolfo Giometti <giometti@enneenne.com>
15073 L:      linuxpps@ml.enneenne.com (subscribers-only)
15074 S:      Maintained
15075 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15076 F:      Documentation/ABI/testing/sysfs-pps
15077 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15078 F:      Documentation/driver-api/pps.rst
15079 F:      drivers/pps/
15080 F:      include/linux/pps*.h
15081 F:      include/uapi/linux/pps.h
15082
15083 PPTP DRIVER
15084 M:      Dmitry Kozlov <xeb@mail.ru>
15085 L:      netdev@vger.kernel.org
15086 S:      Maintained
15087 W:      http://sourceforge.net/projects/accel-pptp
15088 F:      drivers/net/ppp/pptp.c
15089
15090 PRESSURE STALL INFORMATION (PSI)
15091 M:      Johannes Weiner <hannes@cmpxchg.org>
15092 S:      Maintained
15093 F:      include/linux/psi*
15094 F:      kernel/sched/psi.c
15095
15096 PRINTK
15097 M:      Petr Mladek <pmladek@suse.com>
15098 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15099 R:      Steven Rostedt <rostedt@goodmis.org>
15100 R:      John Ogness <john.ogness@linutronix.de>
15101 S:      Maintained
15102 F:      include/linux/printk.h
15103 F:      kernel/printk/
15104
15105 PRINTK INDEXING
15106 R:      Chris Down <chris@chrisdown.name>
15107 S:      Maintained
15108 F:      kernel/printk/index.c
15109
15110 PROC FILESYSTEM
15111 L:      linux-kernel@vger.kernel.org
15112 L:      linux-fsdevel@vger.kernel.org
15113 S:      Maintained
15114 F:      Documentation/filesystems/proc.rst
15115 F:      fs/proc/
15116 F:      include/linux/proc_fs.h
15117 F:      tools/testing/selftests/proc/
15118
15119 PROC SYSCTL
15120 M:      Luis Chamberlain <mcgrof@kernel.org>
15121 M:      Kees Cook <keescook@chromium.org>
15122 M:      Iurii Zaikin <yzaikin@google.com>
15123 L:      linux-kernel@vger.kernel.org
15124 L:      linux-fsdevel@vger.kernel.org
15125 S:      Maintained
15126 F:      fs/proc/proc_sysctl.c
15127 F:      include/linux/sysctl.h
15128 F:      kernel/sysctl-test.c
15129 F:      kernel/sysctl.c
15130 F:      tools/testing/selftests/sysctl/
15131
15132 PS3 NETWORK SUPPORT
15133 M:      Geoff Levand <geoff@infradead.org>
15134 L:      netdev@vger.kernel.org
15135 L:      linuxppc-dev@lists.ozlabs.org
15136 S:      Maintained
15137 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15138
15139 PS3 PLATFORM SUPPORT
15140 M:      Geoff Levand <geoff@infradead.org>
15141 L:      linuxppc-dev@lists.ozlabs.org
15142 S:      Maintained
15143 F:      arch/powerpc/boot/ps3*
15144 F:      arch/powerpc/include/asm/lv1call.h
15145 F:      arch/powerpc/include/asm/ps3*.h
15146 F:      arch/powerpc/platforms/ps3/
15147 F:      drivers/*/ps3*
15148 F:      drivers/ps3/
15149 F:      drivers/rtc/rtc-ps3.c
15150 F:      drivers/usb/host/*ps3.c
15151 F:      sound/ppc/snd_ps3*
15152
15153 PS3VRAM DRIVER
15154 M:      Jim Paris <jim@jtan.com>
15155 M:      Geoff Levand <geoff@infradead.org>
15156 L:      linuxppc-dev@lists.ozlabs.org
15157 S:      Maintained
15158 F:      drivers/block/ps3vram.c
15159
15160 PSAMPLE PACKET SAMPLING SUPPORT
15161 M:      Yotam Gigi <yotam.gi@gmail.com>
15162 S:      Maintained
15163 F:      include/net/psample.h
15164 F:      include/uapi/linux/psample.h
15165 F:      net/psample
15166
15167 PSTORE FILESYSTEM
15168 M:      Kees Cook <keescook@chromium.org>
15169 M:      Anton Vorontsov <anton@enomsg.org>
15170 M:      Colin Cross <ccross@android.com>
15171 M:      Tony Luck <tony.luck@intel.com>
15172 S:      Maintained
15173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15174 F:      Documentation/admin-guide/ramoops.rst
15175 F:      Documentation/admin-guide/pstore-blk.rst
15176 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15177 F:      drivers/acpi/apei/erst.c
15178 F:      drivers/firmware/efi/efi-pstore.c
15179 F:      fs/pstore/
15180 F:      include/linux/pstore*
15181 K:      \b(pstore|ramoops)
15182
15183 PTP HARDWARE CLOCK SUPPORT
15184 M:      Richard Cochran <richardcochran@gmail.com>
15185 L:      netdev@vger.kernel.org
15186 S:      Maintained
15187 W:      http://linuxptp.sourceforge.net/
15188 F:      Documentation/ABI/testing/sysfs-ptp
15189 F:      Documentation/driver-api/ptp.rst
15190 F:      drivers/net/phy/dp83640*
15191 F:      drivers/ptp/*
15192 F:      include/linux/ptp_cl*
15193
15194 PTP VIRTUAL CLOCK SUPPORT
15195 M:      Yangbo Lu <yangbo.lu@nxp.com>
15196 L:      netdev@vger.kernel.org
15197 S:      Maintained
15198 F:      drivers/ptp/ptp_vclock.c
15199 F:      net/ethtool/phc_vclocks.c
15200
15201 PTRACE SUPPORT
15202 M:      Oleg Nesterov <oleg@redhat.com>
15203 S:      Maintained
15204 F:      arch/*/*/ptrace*.c
15205 F:      arch/*/include/asm/ptrace*.h
15206 F:      arch/*/ptrace*.c
15207 F:      include/asm-generic/syscall.h
15208 F:      include/linux/ptrace.h
15209 F:      include/linux/regset.h
15210 F:      include/linux/tracehook.h
15211 F:      include/uapi/linux/ptrace.h
15212 F:      include/uapi/linux/ptrace.h
15213 F:      kernel/ptrace.c
15214
15215 PULSE8-CEC DRIVER
15216 M:      Hans Verkuil <hverkuil@xs4all.nl>
15217 L:      linux-media@vger.kernel.org
15218 S:      Maintained
15219 T:      git git://linuxtv.org/media_tree.git
15220 F:      Documentation/admin-guide/media/pulse8-cec.rst
15221 F:      drivers/media/cec/usb/pulse8/
15222
15223 PVRUSB2 VIDEO4LINUX DRIVER
15224 M:      Mike Isely <isely@pobox.com>
15225 L:      pvrusb2@isely.net       (subscribers-only)
15226 L:      linux-media@vger.kernel.org
15227 S:      Maintained
15228 W:      http://www.isely.net/pvrusb2/
15229 T:      git git://linuxtv.org/media_tree.git
15230 F:      Documentation/driver-api/media/drivers/pvrusb2*
15231 F:      drivers/media/usb/pvrusb2/
15232
15233 PWC WEBCAM DRIVER
15234 M:      Hans Verkuil <hverkuil@xs4all.nl>
15235 L:      linux-media@vger.kernel.org
15236 S:      Odd Fixes
15237 T:      git git://linuxtv.org/media_tree.git
15238 F:      drivers/media/usb/pwc/*
15239 F:      include/trace/events/pwc.h
15240
15241 PWM FAN DRIVER
15242 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15243 L:      linux-hwmon@vger.kernel.org
15244 S:      Supported
15245 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15246 F:      Documentation/hwmon/pwm-fan.rst
15247 F:      drivers/hwmon/pwm-fan.c
15248
15249 PWM IR Transmitter
15250 M:      Sean Young <sean@mess.org>
15251 L:      linux-media@vger.kernel.org
15252 S:      Maintained
15253 F:      drivers/media/rc/pwm-ir-tx.c
15254
15255 PWM SUBSYSTEM
15256 M:      Thierry Reding <thierry.reding@gmail.com>
15257 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15258 M:      Lee Jones <lee.jones@linaro.org>
15259 L:      linux-pwm@vger.kernel.org
15260 S:      Maintained
15261 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15263 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15264 F:      Documentation/devicetree/bindings/pwm/
15265 F:      Documentation/driver-api/pwm.rst
15266 F:      drivers/gpio/gpio-mvebu.c
15267 F:      drivers/pwm/
15268 F:      drivers/video/backlight/pwm_bl.c
15269 F:      include/linux/pwm.h
15270 F:      include/linux/pwm_backlight.h
15271 K:      pwm_(config|apply_state|ops)
15272
15273 PXA GPIO DRIVER
15274 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15275 L:      linux-gpio@vger.kernel.org
15276 S:      Maintained
15277 F:      drivers/gpio/gpio-pxa.c
15278
15279 PXA MMCI DRIVER
15280 S:      Orphan
15281
15282 PXA RTC DRIVER
15283 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15284 L:      linux-rtc@vger.kernel.org
15285 S:      Maintained
15286
15287 PXA2xx/PXA3xx SUPPORT
15288 M:      Daniel Mack <daniel@zonque.org>
15289 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15290 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15292 S:      Maintained
15293 T:      git git://github.com/hzhuang1/linux.git
15294 T:      git git://github.com/rjarzmik/linux.git
15295 F:      arch/arm/boot/dts/pxa*
15296 F:      arch/arm/mach-pxa/
15297 F:      drivers/dma/pxa*
15298 F:      drivers/pcmcia/pxa2xx*
15299 F:      drivers/pinctrl/pxa/
15300 F:      drivers/spi/spi-pxa2xx*
15301 F:      drivers/usb/gadget/udc/pxa2*
15302 F:      include/sound/pxa2xx-lib.h
15303 F:      sound/arm/pxa*
15304 F:      sound/soc/pxa/
15305
15306 QAT DRIVER
15307 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15308 L:      qat-linux@intel.com
15309 S:      Supported
15310 F:      drivers/crypto/qat/
15311
15312 QCOM AUDIO (ASoC) DRIVERS
15313 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15314 M:      Banajit Goswami <bgoswami@codeaurora.org>
15315 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15316 S:      Supported
15317 F:      sound/soc/codecs/lpass-va-macro.c
15318 F:      sound/soc/codecs/lpass-wsa-macro.*
15319 F:      sound/soc/codecs/msm8916-wcd-analog.c
15320 F:      sound/soc/codecs/msm8916-wcd-digital.c
15321 F:      sound/soc/codecs/wcd9335.*
15322 F:      sound/soc/codecs/wcd934x.c
15323 F:      sound/soc/codecs/wcd-clsh-v2.*
15324 F:      sound/soc/codecs/wsa881x.c
15325 F:      sound/soc/qcom/
15326
15327 QCOM IPA DRIVER
15328 M:      Alex Elder <elder@kernel.org>
15329 L:      netdev@vger.kernel.org
15330 S:      Supported
15331 F:      drivers/net/ipa/
15332
15333 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15334 M:      Gabriel Somlo <somlo@cmu.edu>
15335 M:      "Michael S. Tsirkin" <mst@redhat.com>
15336 L:      qemu-devel@nongnu.org
15337 S:      Maintained
15338 F:      drivers/firmware/qemu_fw_cfg.c
15339 F:      include/uapi/linux/qemu_fw_cfg.h
15340
15341 QIB DRIVER
15342 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15343 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15344 L:      linux-rdma@vger.kernel.org
15345 S:      Supported
15346 F:      drivers/infiniband/hw/qib/
15347
15348 QLOGIC QL41xxx FCOE DRIVER
15349 M:      Saurav Kashyap <skashyap@marvell.com>
15350 M:      Javed Hasan <jhasan@marvell.com>
15351 M:      GR-QLogic-Storage-Upstream@marvell.com
15352 L:      linux-scsi@vger.kernel.org
15353 S:      Supported
15354 F:      drivers/scsi/qedf/
15355
15356 QLOGIC QL41xxx ISCSI DRIVER
15357 M:      Nilesh Javali <njavali@marvell.com>
15358 M:      Manish Rangankar <mrangankar@marvell.com>
15359 M:      GR-QLogic-Storage-Upstream@marvell.com
15360 L:      linux-scsi@vger.kernel.org
15361 S:      Supported
15362 F:      drivers/scsi/qedi/
15363
15364 QLOGIC QL4xxx ETHERNET DRIVER
15365 M:      Ariel Elior <aelior@marvell.com>
15366 M:      GR-everest-linux-l2@marvell.com
15367 L:      netdev@vger.kernel.org
15368 S:      Supported
15369 F:      drivers/net/ethernet/qlogic/qed/
15370 F:      drivers/net/ethernet/qlogic/qede/
15371 F:      include/linux/qed/
15372
15373 QLOGIC QL4xxx RDMA DRIVER
15374 M:      Michal Kalderon <mkalderon@marvell.com>
15375 M:      Ariel Elior <aelior@marvell.com>
15376 L:      linux-rdma@vger.kernel.org
15377 S:      Supported
15378 F:      drivers/infiniband/hw/qedr/
15379 F:      include/uapi/rdma/qedr-abi.h
15380
15381 QLOGIC QLA1280 SCSI DRIVER
15382 M:      Michael Reed <mdr@sgi.com>
15383 L:      linux-scsi@vger.kernel.org
15384 S:      Maintained
15385 F:      drivers/scsi/qla1280.[ch]
15386
15387 QLOGIC QLA2XXX FC-SCSI DRIVER
15388 M:      Nilesh Javali <njavali@marvell.com>
15389 M:      GR-QLogic-Storage-Upstream@marvell.com
15390 L:      linux-scsi@vger.kernel.org
15391 S:      Supported
15392 F:      drivers/scsi/qla2xxx/
15393
15394 QLOGIC QLA3XXX NETWORK DRIVER
15395 M:      GR-Linux-NIC-Dev@marvell.com
15396 L:      netdev@vger.kernel.org
15397 S:      Supported
15398 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15399
15400 QLOGIC QLA4XXX iSCSI DRIVER
15401 M:      Nilesh Javali <njavali@marvell.com>
15402 M:      Manish Rangankar <mrangankar@marvell.com>
15403 M:      GR-QLogic-Storage-Upstream@marvell.com
15404 L:      linux-scsi@vger.kernel.org
15405 S:      Supported
15406 F:      drivers/scsi/qla4xxx/
15407
15408 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15409 M:      Shahed Shaikh <shshaikh@marvell.com>
15410 M:      Manish Chopra <manishc@marvell.com>
15411 M:      GR-Linux-NIC-Dev@marvell.com
15412 L:      netdev@vger.kernel.org
15413 S:      Supported
15414 F:      drivers/net/ethernet/qlogic/qlcnic/
15415
15416 QLOGIC QLGE 10Gb ETHERNET DRIVER
15417 M:      Manish Chopra <manishc@marvell.com>
15418 M:      GR-Linux-NIC-Dev@marvell.com
15419 M:      Coiby Xu <coiby.xu@gmail.com>
15420 L:      netdev@vger.kernel.org
15421 S:      Supported
15422 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15423 F:      drivers/staging/qlge/
15424
15425 QM1D1B0004 MEDIA DRIVER
15426 M:      Akihiro Tsukada <tskd08@gmail.com>
15427 L:      linux-media@vger.kernel.org
15428 S:      Odd Fixes
15429 F:      drivers/media/tuners/qm1d1b0004*
15430
15431 QM1D1C0042 MEDIA DRIVER
15432 M:      Akihiro Tsukada <tskd08@gmail.com>
15433 L:      linux-media@vger.kernel.org
15434 S:      Odd Fixes
15435 F:      drivers/media/tuners/qm1d1c0042*
15436
15437 QNX4 FILESYSTEM
15438 M:      Anders Larsen <al@alarsen.net>
15439 S:      Maintained
15440 W:      http://www.alarsen.net/linux/qnx4fs/
15441 F:      fs/qnx4/
15442 F:      include/uapi/linux/qnx4_fs.h
15443 F:      include/uapi/linux/qnxtypes.h
15444
15445 QORIQ DPAA2 FSL-MC BUS DRIVER
15446 M:      Stuart Yoder <stuyoder@gmail.com>
15447 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15448 L:      linux-kernel@vger.kernel.org
15449 S:      Maintained
15450 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15451 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15452 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15453 F:      drivers/bus/fsl-mc/
15454 F:      include/uapi/linux/fsl_mc.h
15455
15456 QT1010 MEDIA DRIVER
15457 M:      Antti Palosaari <crope@iki.fi>
15458 L:      linux-media@vger.kernel.org
15459 S:      Maintained
15460 W:      https://linuxtv.org
15461 W:      http://palosaari.fi/linux/
15462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15463 T:      git git://linuxtv.org/anttip/media_tree.git
15464 F:      drivers/media/tuners/qt1010*
15465
15466 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15467 M:      Kalle Valo <kvalo@codeaurora.org>
15468 L:      ath10k@lists.infradead.org
15469 S:      Supported
15470 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15472 F:      drivers/net/wireless/ath/ath10k/
15473
15474 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15475 M:      Kalle Valo <kvalo@codeaurora.org>
15476 L:      ath11k@lists.infradead.org
15477 S:      Supported
15478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15479 F:      drivers/net/wireless/ath/ath11k/
15480
15481 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15482 M:      ath9k-devel@qca.qualcomm.com
15483 L:      linux-wireless@vger.kernel.org
15484 S:      Supported
15485 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15486 F:      drivers/net/wireless/ath/ath9k/
15487
15488 QUALCOMM CAMERA SUBSYSTEM DRIVER
15489 M:      Robert Foss <robert.foss@linaro.org>
15490 M:      Todor Tomov <todor.too@gmail.com>
15491 L:      linux-media@vger.kernel.org
15492 S:      Maintained
15493 F:      Documentation/admin-guide/media/qcom_camss.rst
15494 F:      Documentation/devicetree/bindings/media/*camss*
15495 F:      drivers/media/platform/qcom/camss/
15496
15497 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15498 M:      Niklas Cassel <nks@flawful.org>
15499 L:      linux-pm@vger.kernel.org
15500 L:      linux-arm-msm@vger.kernel.org
15501 S:      Maintained
15502 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15503 F:      drivers/soc/qcom/cpr.c
15504
15505 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15506 M:      Ilia Lin <ilia.lin@kernel.org>
15507 L:      linux-pm@vger.kernel.org
15508 S:      Maintained
15509 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15510 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15511
15512 QUALCOMM CRYPTO DRIVERS
15513 M:      Thara Gopinath <thara.gopinath@linaro.org>
15514 L:      linux-crypto@vger.kernel.org
15515 L:      linux-arm-msm@vger.kernel.org
15516 S:      Maintained
15517 F:      drivers/crypto/qce/
15518
15519 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15520 M:      Timur Tabi <timur@kernel.org>
15521 L:      netdev@vger.kernel.org
15522 S:      Maintained
15523 F:      drivers/net/ethernet/qualcomm/emac/
15524
15525 QUALCOMM ETHQOS ETHERNET DRIVER
15526 M:      Vinod Koul <vkoul@kernel.org>
15527 L:      netdev@vger.kernel.org
15528 S:      Maintained
15529 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15530 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15531
15532 QUALCOMM GENERIC INTERFACE I2C DRIVER
15533 M:      Akash Asthana <akashast@codeaurora.org>
15534 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15535 L:      linux-i2c@vger.kernel.org
15536 L:      linux-arm-msm@vger.kernel.org
15537 S:      Supported
15538 F:      drivers/i2c/busses/i2c-qcom-geni.c
15539
15540 QUALCOMM HEXAGON ARCHITECTURE
15541 M:      Brian Cain <bcain@codeaurora.org>
15542 L:      linux-hexagon@vger.kernel.org
15543 S:      Supported
15544 F:      arch/hexagon/
15545
15546 QUALCOMM HIDMA DRIVER
15547 M:      Sinan Kaya <okaya@kernel.org>
15548 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15549 L:      linux-arm-msm@vger.kernel.org
15550 L:      dmaengine@vger.kernel.org
15551 S:      Supported
15552 F:      drivers/dma/qcom/hidma*
15553
15554 QUALCOMM I2C CCI DRIVER
15555 M:      Loic Poulain <loic.poulain@linaro.org>
15556 M:      Robert Foss <robert.foss@linaro.org>
15557 L:      linux-i2c@vger.kernel.org
15558 L:      linux-arm-msm@vger.kernel.org
15559 S:      Maintained
15560 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15561 F:      drivers/i2c/busses/i2c-qcom-cci.c
15562
15563 QUALCOMM IOMMU
15564 M:      Rob Clark <robdclark@gmail.com>
15565 L:      iommu@lists.linux-foundation.org
15566 L:      iommu@lists.linux.dev
15567 L:      linux-arm-msm@vger.kernel.org
15568 S:      Maintained
15569 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15570
15571 QUALCOMM IPC ROUTER (QRTR) DRIVER
15572 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15573 L:      linux-arm-msm@vger.kernel.org
15574 S:      Maintained
15575 F:      include/trace/events/qrtr.h
15576 F:      include/uapi/linux/qrtr.h
15577 F:      net/qrtr/
15578
15579 QUALCOMM IPCC MAILBOX DRIVER
15580 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15581 L:      linux-arm-msm@vger.kernel.org
15582 S:      Supported
15583 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15584 F:      drivers/mailbox/qcom-ipcc.c
15585 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15586
15587 QUALCOMM IPQ4019 USB PHY DRIVER
15588 M:      Robert Marko <robert.marko@sartura.hr>
15589 M:      Luka Perkov <luka.perkov@sartura.hr>
15590 L:      linux-arm-msm@vger.kernel.org
15591 S:      Maintained
15592 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15593 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15594
15595 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15596 M:      Robert Marko <robert.marko@sartura.hr>
15597 M:      Luka Perkov <luka.perkov@sartura.hr>
15598 L:      linux-arm-msm@vger.kernel.org
15599 S:      Maintained
15600 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15601 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15602
15603 QUALCOMM RMNET DRIVER
15604 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15605 M:      Sean Tranchetti <stranche@codeaurora.org>
15606 L:      netdev@vger.kernel.org
15607 S:      Maintained
15608 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15609 F:      drivers/net/ethernet/qualcomm/rmnet/
15610 F:      include/linux/if_rmnet.h
15611
15612 QUALCOMM TSENS THERMAL DRIVER
15613 M:      Amit Kucheria <amitk@kernel.org>
15614 M:      Thara Gopinath <thara.gopinath@linaro.org>
15615 L:      linux-pm@vger.kernel.org
15616 L:      linux-arm-msm@vger.kernel.org
15617 S:      Maintained
15618 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15619 F:      drivers/thermal/qcom/
15620
15621 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15622 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15623 L:      linux-media@vger.kernel.org
15624 L:      linux-arm-msm@vger.kernel.org
15625 S:      Maintained
15626 T:      git git://linuxtv.org/media_tree.git
15627 F:      Documentation/devicetree/bindings/media/*venus*
15628 F:      drivers/media/platform/qcom/venus/
15629
15630 QUALCOMM WCN36XX WIRELESS DRIVER
15631 M:      Kalle Valo <kvalo@codeaurora.org>
15632 L:      wcn36xx@lists.infradead.org
15633 S:      Supported
15634 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15635 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15636 F:      drivers/net/wireless/ath/wcn36xx/
15637
15638 QUANTENNA QTNFMAC WIRELESS DRIVER
15639 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15640 R:      Sergey Matyukevich <geomatsi@gmail.com>
15641 L:      linux-wireless@vger.kernel.org
15642 S:      Maintained
15643 F:      drivers/net/wireless/quantenna
15644
15645 RADEON and AMDGPU DRM DRIVERS
15646 M:      Alex Deucher <alexander.deucher@amd.com>
15647 M:      Christian König <christian.koenig@amd.com>
15648 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15649 L:      amd-gfx@lists.freedesktop.org
15650 S:      Supported
15651 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15652 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15653 C:      irc://irc.oftc.net/radeon
15654 F:      drivers/gpu/drm/amd/
15655 F:      drivers/gpu/drm/radeon/
15656 F:      include/uapi/drm/amdgpu_drm.h
15657 F:      include/uapi/drm/radeon_drm.h
15658
15659 RADEON FRAMEBUFFER DISPLAY DRIVER
15660 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15661 L:      linux-fbdev@vger.kernel.org
15662 S:      Maintained
15663 F:      drivers/video/fbdev/aty/radeon*
15664 F:      include/uapi/linux/radeonfb.h
15665
15666 RADIOSHARK RADIO DRIVER
15667 M:      Hans Verkuil <hverkuil@xs4all.nl>
15668 L:      linux-media@vger.kernel.org
15669 S:      Maintained
15670 T:      git git://linuxtv.org/media_tree.git
15671 F:      drivers/media/radio/radio-shark.c
15672
15673 RADIOSHARK2 RADIO DRIVER
15674 M:      Hans Verkuil <hverkuil@xs4all.nl>
15675 L:      linux-media@vger.kernel.org
15676 S:      Maintained
15677 T:      git git://linuxtv.org/media_tree.git
15678 F:      drivers/media/radio/radio-shark2.c
15679 F:      drivers/media/radio/radio-tea5777.c
15680
15681 RADOS BLOCK DEVICE (RBD)
15682 M:      Ilya Dryomov <idryomov@gmail.com>
15683 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15684 L:      ceph-devel@vger.kernel.org
15685 S:      Supported
15686 W:      http://ceph.com/
15687 T:      git git://github.com/ceph/ceph-client.git
15688 F:      Documentation/ABI/testing/sysfs-bus-rbd
15689 F:      drivers/block/rbd.c
15690 F:      drivers/block/rbd_types.h
15691
15692 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15693 M:      Paul Mackerras <paulus@samba.org>
15694 L:      linux-fbdev@vger.kernel.org
15695 S:      Maintained
15696 F:      drivers/video/fbdev/aty/aty128fb.c
15697
15698 RAINSHADOW-CEC DRIVER
15699 M:      Hans Verkuil <hverkuil@xs4all.nl>
15700 L:      linux-media@vger.kernel.org
15701 S:      Maintained
15702 T:      git git://linuxtv.org/media_tree.git
15703 F:      drivers/media/cec/usb/rainshadow/
15704
15705 RALINK MIPS ARCHITECTURE
15706 M:      John Crispin <john@phrozen.org>
15707 L:      linux-mips@vger.kernel.org
15708 S:      Maintained
15709 F:      arch/mips/ralink
15710
15711 RALINK RT2X00 WIRELESS LAN DRIVER
15712 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15713 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15714 L:      linux-wireless@vger.kernel.org
15715 S:      Maintained
15716 F:      drivers/net/wireless/ralink/rt2x00/
15717
15718 RAMDISK RAM BLOCK DEVICE DRIVER
15719 M:      Jens Axboe <axboe@kernel.dk>
15720 S:      Maintained
15721 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15722 F:      drivers/block/brd.c
15723
15724 RANCHU VIRTUAL BOARD FOR MIPS
15725 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15726 L:      linux-mips@vger.kernel.org
15727 S:      Supported
15728 F:      arch/mips/configs/generic/board-ranchu.config
15729 F:      arch/mips/generic/board-ranchu.c
15730
15731 RANDOM NUMBER DRIVER
15732 M:      "Theodore Ts'o" <tytso@mit.edu>
15733 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15734 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15735 S:      Maintained
15736 F:      drivers/char/random.c
15737
15738 RAPIDIO SUBSYSTEM
15739 M:      Matt Porter <mporter@kernel.crashing.org>
15740 M:      Alexandre Bounine <alex.bou9@gmail.com>
15741 S:      Maintained
15742 F:      drivers/rapidio/
15743
15744 RAS INFRASTRUCTURE
15745 M:      Tony Luck <tony.luck@intel.com>
15746 M:      Borislav Petkov <bp@alien8.de>
15747 L:      linux-edac@vger.kernel.org
15748 S:      Maintained
15749 F:      Documentation/admin-guide/ras.rst
15750 F:      drivers/ras/
15751 F:      include/linux/ras.h
15752 F:      include/ras/ras_event.h
15753
15754 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15755 L:      linux-wireless@vger.kernel.org
15756 S:      Orphan
15757 F:      drivers/net/wireless/ray*
15758
15759 RC-CORE / LIRC FRAMEWORK
15760 M:      Sean Young <sean@mess.org>
15761 L:      linux-media@vger.kernel.org
15762 S:      Maintained
15763 W:      http://linuxtv.org
15764 T:      git git://linuxtv.org/media_tree.git
15765 F:      Documentation/driver-api/media/rc-core.rst
15766 F:      Documentation/userspace-api/media/rc/
15767 F:      drivers/media/rc/
15768 F:      include/media/rc-map.h
15769 F:      include/media/rc-core.h
15770 F:      include/uapi/linux/lirc.h
15771
15772 RCMM REMOTE CONTROLS DECODER
15773 M:      Patrick Lerda <patrick9876@free.fr>
15774 S:      Maintained
15775 F:      drivers/media/rc/ir-rcmm-decoder.c
15776
15777 RCUTORTURE TEST FRAMEWORK
15778 M:      "Paul E. McKenney" <paulmck@kernel.org>
15779 M:      Josh Triplett <josh@joshtriplett.org>
15780 R:      Steven Rostedt <rostedt@goodmis.org>
15781 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15782 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15783 L:      rcu@vger.kernel.org
15784 S:      Supported
15785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15786 F:      tools/testing/selftests/rcutorture
15787
15788 RDACM20 Camera Sensor
15789 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15790 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15791 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15792 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15793 L:      linux-media@vger.kernel.org
15794 S:      Maintained
15795 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15796 F:      drivers/media/i2c/max9271.c
15797 F:      drivers/media/i2c/max9271.h
15798 F:      drivers/media/i2c/rdacm20.c
15799
15800 RDACM21 Camera Sensor
15801 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15802 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15803 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15804 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15805 L:      linux-media@vger.kernel.org
15806 S:      Maintained
15807 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15808 F:      drivers/media/i2c/max9271.c
15809 F:      drivers/media/i2c/max9271.h
15810 F:      drivers/media/i2c/rdacm21.c
15811
15812 RDC R-321X SoC
15813 M:      Florian Fainelli <florian@openwrt.org>
15814 S:      Maintained
15815
15816 RDC R6040 FAST ETHERNET DRIVER
15817 M:      Florian Fainelli <f.fainelli@gmail.com>
15818 L:      netdev@vger.kernel.org
15819 S:      Maintained
15820 F:      drivers/net/ethernet/rdc/r6040.c
15821
15822 RDMAVT - RDMA verbs software
15823 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15824 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15825 L:      linux-rdma@vger.kernel.org
15826 S:      Supported
15827 F:      drivers/infiniband/sw/rdmavt
15828
15829 RDS - RELIABLE DATAGRAM SOCKETS
15830 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15831 L:      netdev@vger.kernel.org
15832 L:      linux-rdma@vger.kernel.org
15833 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15834 S:      Supported
15835 W:      https://oss.oracle.com/projects/rds/
15836 F:      Documentation/networking/rds.rst
15837 F:      net/rds/
15838
15839 RDT - RESOURCE ALLOCATION
15840 M:      Fenghua Yu <fenghua.yu@intel.com>
15841 M:      Reinette Chatre <reinette.chatre@intel.com>
15842 L:      linux-kernel@vger.kernel.org
15843 S:      Supported
15844 F:      Documentation/x86/resctrl*
15845 F:      arch/x86/include/asm/resctrl.h
15846 F:      arch/x86/kernel/cpu/resctrl/
15847 F:      tools/testing/selftests/resctrl/
15848
15849 READ-COPY UPDATE (RCU)
15850 M:      "Paul E. McKenney" <paulmck@kernel.org>
15851 M:      Josh Triplett <josh@joshtriplett.org>
15852 R:      Steven Rostedt <rostedt@goodmis.org>
15853 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15854 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15855 R:      Joel Fernandes <joel@joelfernandes.org>
15856 L:      rcu@vger.kernel.org
15857 S:      Supported
15858 W:      http://www.rdrop.com/users/paulmck/RCU/
15859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15860 F:      Documentation/RCU/
15861 F:      include/linux/rcu*
15862 F:      kernel/rcu/
15863 X:      Documentation/RCU/torture.rst
15864 X:      include/linux/srcu*.h
15865 X:      kernel/rcu/srcu*.c
15866
15867 REAL TIME CLOCK (RTC) SUBSYSTEM
15868 M:      Alessandro Zummo <a.zummo@towertech.it>
15869 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15870 L:      linux-rtc@vger.kernel.org
15871 S:      Maintained
15872 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15874 F:      Documentation/admin-guide/rtc.rst
15875 F:      Documentation/devicetree/bindings/rtc/
15876 F:      drivers/rtc/
15877 F:      include/linux/platform_data/rtc-*
15878 F:      include/linux/rtc.h
15879 F:      include/linux/rtc/
15880 F:      include/uapi/linux/rtc.h
15881 F:      tools/testing/selftests/rtc/
15882
15883 REALTEK AUDIO CODECS
15884 M:      Oder Chiou <oder_chiou@realtek.com>
15885 S:      Maintained
15886 F:      include/sound/rt*.h
15887 F:      sound/soc/codecs/rt*
15888
15889 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15890 M:      Linus Walleij <linus.walleij@linaro.org>
15891 S:      Maintained
15892 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15893 F:      drivers/net/dsa/realtek-smi*
15894 F:      drivers/net/dsa/rtl83*
15895
15896 REALTEK WIRELESS DRIVER (rtlwifi family)
15897 M:      Ping-Ke Shih <pkshih@realtek.com>
15898 L:      linux-wireless@vger.kernel.org
15899 S:      Maintained
15900 W:      https://wireless.wiki.kernel.org/
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15902 F:      drivers/net/wireless/realtek/rtlwifi/
15903
15904 REALTEK WIRELESS DRIVER (rtw88)
15905 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15906 L:      linux-wireless@vger.kernel.org
15907 S:      Maintained
15908 F:      drivers/net/wireless/realtek/rtw88/
15909
15910 REDPINE WIRELESS DRIVER
15911 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15912 M:      Siva Rebbagondla <siva8118@gmail.com>
15913 L:      linux-wireless@vger.kernel.org
15914 S:      Maintained
15915 F:      drivers/net/wireless/rsi/
15916
15917 REGISTER MAP ABSTRACTION
15918 M:      Mark Brown <broonie@kernel.org>
15919 L:      linux-kernel@vger.kernel.org
15920 S:      Supported
15921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15922 F:      Documentation/devicetree/bindings/regmap/
15923 F:      drivers/base/regmap/
15924 F:      include/linux/regmap.h
15925
15926 REISERFS FILE SYSTEM
15927 L:      reiserfs-devel@vger.kernel.org
15928 S:      Supported
15929 F:      fs/reiserfs/
15930
15931 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15932 M:      Ohad Ben-Cohen <ohad@wizery.com>
15933 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15934 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15935 L:      linux-remoteproc@vger.kernel.org
15936 S:      Maintained
15937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15938 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15939 F:      Documentation/devicetree/bindings/remoteproc/
15940 F:      Documentation/staging/remoteproc.rst
15941 F:      drivers/remoteproc/
15942 F:      include/linux/remoteproc.h
15943 F:      include/linux/remoteproc/
15944
15945 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15946 M:      Ohad Ben-Cohen <ohad@wizery.com>
15947 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15948 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15949 L:      linux-remoteproc@vger.kernel.org
15950 S:      Maintained
15951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15952 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
15953 F:      Documentation/staging/rpmsg.rst
15954 F:      drivers/rpmsg/
15955 F:      include/linux/rpmsg.h
15956 F:      include/linux/rpmsg/
15957 F:      include/uapi/linux/rpmsg.h
15958 F:      samples/rpmsg/
15959
15960 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
15961 M:      Stephan Gerhold <stephan@gerhold.net>
15962 L:      netdev@vger.kernel.org
15963 L:      linux-remoteproc@vger.kernel.org
15964 S:      Maintained
15965 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
15966
15967 RENESAS CLOCK DRIVERS
15968 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15969 L:      linux-renesas-soc@vger.kernel.org
15970 S:      Supported
15971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
15972 F:      Documentation/devicetree/bindings/clock/renesas,*
15973 F:      drivers/clk/renesas/
15974
15975 RENESAS EMEV2 I2C DRIVER
15976 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15977 L:      linux-renesas-soc@vger.kernel.org
15978 S:      Supported
15979 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
15980 F:      drivers/i2c/busses/i2c-emev2.c
15981
15982 RENESAS ETHERNET DRIVERS
15983 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
15984 L:      netdev@vger.kernel.org
15985 L:      linux-renesas-soc@vger.kernel.org
15986 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
15987 F:      drivers/net/ethernet/renesas/
15988 F:      include/linux/sh_eth.h
15989
15990 RENESAS R-CAR GYROADC DRIVER
15991 M:      Marek Vasut <marek.vasut@gmail.com>
15992 L:      linux-iio@vger.kernel.org
15993 S:      Supported
15994 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
15995 F:      drivers/iio/adc/rcar-gyroadc.c
15996
15997 RENESAS R-CAR I2C DRIVERS
15998 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
15999 L:      linux-renesas-soc@vger.kernel.org
16000 S:      Supported
16001 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16002 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16003 F:      drivers/i2c/busses/i2c-rcar.c
16004 F:      drivers/i2c/busses/i2c-sh_mobile.c
16005
16006 RENESAS R-CAR THERMAL DRIVERS
16007 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16008 L:      linux-renesas-soc@vger.kernel.org
16009 S:      Supported
16010 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16011 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16012 F:      drivers/thermal/rcar_gen3_thermal.c
16013 F:      drivers/thermal/rcar_thermal.c
16014
16015 RENESAS RIIC DRIVER
16016 M:      Chris Brandt <chris.brandt@renesas.com>
16017 L:      linux-renesas-soc@vger.kernel.org
16018 S:      Supported
16019 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16020 F:      drivers/i2c/busses/i2c-riic.c
16021
16022 RENESAS USB PHY DRIVER
16023 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16024 L:      linux-renesas-soc@vger.kernel.org
16025 S:      Maintained
16026 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16027
16028 RENESAS RZ/G2L A/D DRIVER
16029 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16030 L:      linux-iio@vger.kernel.org
16031 L:      linux-renesas-soc@vger.kernel.org
16032 S:      Supported
16033 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16034 F:      drivers/iio/adc/rzg2l_adc.c
16035
16036 RESET CONTROLLER FRAMEWORK
16037 M:      Philipp Zabel <p.zabel@pengutronix.de>
16038 S:      Maintained
16039 T:      git git://git.pengutronix.de/git/pza/linux
16040 F:      Documentation/devicetree/bindings/reset/
16041 F:      Documentation/driver-api/reset.rst
16042 F:      drivers/reset/
16043 F:      include/dt-bindings/reset/
16044 F:      include/linux/reset-controller.h
16045 F:      include/linux/reset.h
16046 F:      include/linux/reset/
16047 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16048
16049 RESTARTABLE SEQUENCES SUPPORT
16050 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16051 M:      Peter Zijlstra <peterz@infradead.org>
16052 M:      "Paul E. McKenney" <paulmck@kernel.org>
16053 M:      Boqun Feng <boqun.feng@gmail.com>
16054 L:      linux-kernel@vger.kernel.org
16055 S:      Supported
16056 F:      include/trace/events/rseq.h
16057 F:      include/uapi/linux/rseq.h
16058 F:      kernel/rseq.c
16059 F:      tools/testing/selftests/rseq/
16060
16061 RFKILL
16062 M:      Johannes Berg <johannes@sipsolutions.net>
16063 L:      linux-wireless@vger.kernel.org
16064 S:      Maintained
16065 W:      https://wireless.wiki.kernel.org/
16066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16068 F:      Documentation/ABI/stable/sysfs-class-rfkill
16069 F:      Documentation/driver-api/rfkill.rst
16070 F:      include/linux/rfkill.h
16071 F:      include/uapi/linux/rfkill.h
16072 F:      net/rfkill/
16073
16074 RHASHTABLE
16075 M:      Thomas Graf <tgraf@suug.ch>
16076 M:      Herbert Xu <herbert@gondor.apana.org.au>
16077 L:      netdev@vger.kernel.org
16078 S:      Maintained
16079 F:      include/linux/rhashtable-types.h
16080 F:      include/linux/rhashtable.h
16081 F:      lib/rhashtable.c
16082 F:      lib/test_rhashtable.c
16083
16084 RICOH R5C592 MEMORYSTICK DRIVER
16085 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16086 S:      Maintained
16087 F:      drivers/memstick/host/r592.*
16088
16089 RICOH SMARTMEDIA/XD DRIVER
16090 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16091 S:      Maintained
16092 F:      drivers/mtd/nand/raw/r852.c
16093 F:      drivers/mtd/nand/raw/r852.h
16094
16095 RISC-V ARCHITECTURE
16096 M:      Paul Walmsley <paul.walmsley@sifive.com>
16097 M:      Palmer Dabbelt <palmer@dabbelt.com>
16098 M:      Albert Ou <aou@eecs.berkeley.edu>
16099 L:      linux-riscv@lists.infradead.org
16100 S:      Supported
16101 P:      Documentation/riscv/patch-acceptance.rst
16102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16103 F:      arch/riscv/
16104 N:      riscv
16105 K:      riscv
16106
16107 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16108 M:      Lewis Hanly <lewis.hanly@microchip.com>
16109 L:      linux-riscv@lists.infradead.org
16110 S:      Supported
16111 F:      drivers/mailbox/mailbox-mpfs.c
16112 F:      drivers/soc/microchip/
16113 F:      include/soc/microchip/mpfs.h
16114
16115 RNBD BLOCK DRIVERS
16116 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16117 M:      Jack Wang <jinpu.wang@ionos.com>
16118 L:      linux-block@vger.kernel.org
16119 S:      Maintained
16120 F:      drivers/block/rnbd/
16121
16122 ROCCAT DRIVERS
16123 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16124 S:      Maintained
16125 W:      http://sourceforge.net/projects/roccat/
16126 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16127 F:      drivers/hid/hid-roccat*
16128 F:      include/linux/hid-roccat*
16129
16130 ROCKCHIP ISP V1 DRIVER
16131 M:      Helen Koike <helen.koike@collabora.com>
16132 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16133 L:      linux-media@vger.kernel.org
16134 L:      linux-rockchip@lists.infradead.org
16135 S:      Maintained
16136 F:      Documentation/admin-guide/media/rkisp1.rst
16137 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16138 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16139 F:      drivers/media/platform/rockchip/rkisp1
16140 F:      include/uapi/linux/rkisp1-config.h
16141
16142 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16143 M:      Jacob Chen <jacob-chen@iotwrt.com>
16144 M:      Ezequiel Garcia <ezequiel@collabora.com>
16145 L:      linux-media@vger.kernel.org
16146 L:      linux-rockchip@lists.infradead.org
16147 S:      Maintained
16148 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16149 F:      drivers/media/platform/rockchip/rga/
16150
16151 ROCKCHIP VIDEO DECODER DRIVER
16152 M:      Ezequiel Garcia <ezequiel@collabora.com>
16153 L:      linux-media@vger.kernel.org
16154 L:      linux-rockchip@lists.infradead.org
16155 S:      Maintained
16156 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16157 F:      drivers/staging/media/rkvdec/
16158
16159 ROCKER DRIVER
16160 M:      Jiri Pirko <jiri@resnulli.us>
16161 L:      netdev@vger.kernel.org
16162 S:      Supported
16163 F:      drivers/net/ethernet/rocker/
16164
16165 ROCKETPORT EXPRESS/INFINITY DRIVER
16166 M:      Kevin Cernekee <cernekee@gmail.com>
16167 L:      linux-serial@vger.kernel.org
16168 S:      Odd Fixes
16169 F:      drivers/tty/serial/rp2.*
16170
16171 ROHM BD99954 CHARGER IC
16172 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16173 L:      linux-power@fi.rohmeurope.com
16174 S:      Supported
16175 F:      drivers/power/supply/bd99954-charger.c
16176 F:      drivers/power/supply/bd99954-charger.h
16177
16178 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16179 M:      Tomasz Duszynski <tduszyns@gmail.com>
16180 S:      Maintained
16181 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16182 F:      drivers/iio/light/bh1750.c
16183
16184 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16185 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16186 L:      linux-kernel@vger.kernel.org
16187 L:      linux-renesas-soc@vger.kernel.org
16188 S:      Supported
16189 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16190 F:      drivers/gpio/gpio-bd9571mwv.c
16191 F:      drivers/mfd/bd9571mwv.c
16192 F:      drivers/regulator/bd9571mwv-regulator.c
16193 F:      include/linux/mfd/bd9571mwv.h
16194
16195 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16196 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16197 L:      linux-power@fi.rohmeurope.com
16198 S:      Supported
16199 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16200 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16201 F:      drivers/clk/clk-bd718x7.c
16202 F:      drivers/gpio/gpio-bd70528.c
16203 F:      drivers/gpio/gpio-bd71815.c
16204 F:      drivers/gpio/gpio-bd71828.c
16205 F:      drivers/mfd/rohm-bd70528.c
16206 F:      drivers/mfd/rohm-bd71828.c
16207 F:      drivers/mfd/rohm-bd718x7.c
16208 F:      drivers/mfd/rohm-bd9576.c
16209 F:      drivers/power/supply/bd70528-charger.c
16210 F:      drivers/regulator/bd70528-regulator.c
16211 F:      drivers/regulator/bd71815-regulator.c
16212 F:      drivers/regulator/bd71828-regulator.c
16213 F:      drivers/regulator/bd718x7-regulator.c
16214 F:      drivers/regulator/bd9576-regulator.c
16215 F:      drivers/regulator/rohm-regulator.c
16216 F:      drivers/rtc/rtc-bd70528.c
16217 F:      drivers/watchdog/bd70528_wdt.c
16218 F:      drivers/watchdog/bd9576_wdt.c
16219 F:      include/linux/mfd/rohm-bd70528.h
16220 F:      include/linux/mfd/rohm-bd71815.h
16221 F:      include/linux/mfd/rohm-bd71828.h
16222 F:      include/linux/mfd/rohm-bd718x7.h
16223 F:      include/linux/mfd/rohm-bd957x.h
16224 F:      include/linux/mfd/rohm-generic.h
16225 F:      include/linux/mfd/rohm-shared.h
16226
16227 ROSE NETWORK LAYER
16228 M:      Ralf Baechle <ralf@linux-mips.org>
16229 L:      linux-hams@vger.kernel.org
16230 S:      Maintained
16231 W:      http://www.linux-ax25.org/
16232 F:      include/net/rose.h
16233 F:      include/uapi/linux/rose.h
16234 F:      net/rose/
16235
16236 ROTATION DRIVER FOR ALLWINNER A83T
16237 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16238 L:      linux-media@vger.kernel.org
16239 S:      Maintained
16240 T:      git git://linuxtv.org/media_tree.git
16241 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16242 F:      drivers/media/platform/sunxi/sun8i-rotate/
16243
16244 RTL2830 MEDIA DRIVER
16245 M:      Antti Palosaari <crope@iki.fi>
16246 L:      linux-media@vger.kernel.org
16247 S:      Maintained
16248 W:      https://linuxtv.org
16249 W:      http://palosaari.fi/linux/
16250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16251 T:      git git://linuxtv.org/anttip/media_tree.git
16252 F:      drivers/media/dvb-frontends/rtl2830*
16253
16254 RTL2832 MEDIA DRIVER
16255 M:      Antti Palosaari <crope@iki.fi>
16256 L:      linux-media@vger.kernel.org
16257 S:      Maintained
16258 W:      https://linuxtv.org
16259 W:      http://palosaari.fi/linux/
16260 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16261 T:      git git://linuxtv.org/anttip/media_tree.git
16262 F:      drivers/media/dvb-frontends/rtl2832*
16263
16264 RTL2832_SDR MEDIA DRIVER
16265 M:      Antti Palosaari <crope@iki.fi>
16266 L:      linux-media@vger.kernel.org
16267 S:      Maintained
16268 W:      https://linuxtv.org
16269 W:      http://palosaari.fi/linux/
16270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16271 T:      git git://linuxtv.org/anttip/media_tree.git
16272 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16273
16274 RTL8180 WIRELESS DRIVER
16275 L:      linux-wireless@vger.kernel.org
16276 S:      Orphan
16277 W:      https://wireless.wiki.kernel.org/
16278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16279 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16280
16281 RTL8187 WIRELESS DRIVER
16282 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16283 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16284 M:      Larry Finger <Larry.Finger@lwfinger.net>
16285 L:      linux-wireless@vger.kernel.org
16286 S:      Maintained
16287 W:      https://wireless.wiki.kernel.org/
16288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16289 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16290
16291 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16292 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16293 L:      linux-wireless@vger.kernel.org
16294 S:      Maintained
16295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16296 F:      drivers/net/wireless/realtek/rtl8xxxu/
16297
16298 RTRS TRANSPORT DRIVERS
16299 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16300 M:      Jack Wang <jinpu.wang@ionos.com>
16301 L:      linux-rdma@vger.kernel.org
16302 S:      Maintained
16303 F:      drivers/infiniband/ulp/rtrs/
16304
16305 RXRPC SOCKETS (AF_RXRPC)
16306 M:      David Howells <dhowells@redhat.com>
16307 M:      Marc Dionne <marc.dionne@auristor.com>
16308 L:      linux-afs@lists.infradead.org
16309 S:      Supported
16310 W:      https://www.infradead.org/~dhowells/kafs/
16311 F:      Documentation/networking/rxrpc.rst
16312 F:      include/keys/rxrpc-type.h
16313 F:      include/net/af_rxrpc.h
16314 F:      include/trace/events/rxrpc.h
16315 F:      include/uapi/linux/rxrpc.h
16316 F:      net/rxrpc/
16317
16318 S3 SAVAGE FRAMEBUFFER DRIVER
16319 M:      Antonino Daplas <adaplas@gmail.com>
16320 L:      linux-fbdev@vger.kernel.org
16321 S:      Maintained
16322 F:      drivers/video/fbdev/savage/
16323
16324 S390
16325 M:      Heiko Carstens <hca@linux.ibm.com>
16326 M:      Vasily Gorbik <gor@linux.ibm.com>
16327 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16328 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16329 L:      linux-s390@vger.kernel.org
16330 S:      Supported
16331 W:      http://www.ibm.com/developerworks/linux/linux390/
16332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16333 F:      Documentation/driver-api/s390-drivers.rst
16334 F:      Documentation/s390/
16335 F:      arch/s390/
16336 F:      drivers/s390/
16337
16338 S390 COMMON I/O LAYER
16339 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16340 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16341 L:      linux-s390@vger.kernel.org
16342 S:      Supported
16343 W:      http://www.ibm.com/developerworks/linux/linux390/
16344 F:      drivers/s390/cio/
16345
16346 S390 DASD DRIVER
16347 M:      Stefan Haberland <sth@linux.ibm.com>
16348 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16349 L:      linux-s390@vger.kernel.org
16350 S:      Supported
16351 W:      http://www.ibm.com/developerworks/linux/linux390/
16352 F:      block/partitions/ibm.c
16353 F:      drivers/s390/block/dasd*
16354 F:      include/linux/dasd_mod.h
16355
16356 S390 IOMMU (PCI)
16357 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16358 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16359 L:      linux-s390@vger.kernel.org
16360 S:      Supported
16361 W:      http://www.ibm.com/developerworks/linux/linux390/
16362 F:      drivers/iommu/s390-iommu.c
16363
16364 S390 IUCV NETWORK LAYER
16365 M:      Julian Wiedmann <jwi@linux.ibm.com>
16366 M:      Karsten Graul <kgraul@linux.ibm.com>
16367 L:      linux-s390@vger.kernel.org
16368 L:      netdev@vger.kernel.org
16369 S:      Supported
16370 W:      http://www.ibm.com/developerworks/linux/linux390/
16371 F:      drivers/s390/net/*iucv*
16372 F:      include/net/iucv/
16373 F:      net/iucv/
16374
16375 S390 NETWORK DRIVERS
16376 M:      Julian Wiedmann <jwi@linux.ibm.com>
16377 M:      Karsten Graul <kgraul@linux.ibm.com>
16378 L:      linux-s390@vger.kernel.org
16379 L:      netdev@vger.kernel.org
16380 S:      Supported
16381 W:      http://www.ibm.com/developerworks/linux/linux390/
16382 F:      drivers/s390/net/
16383
16384 S390 PCI SUBSYSTEM
16385 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16386 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16387 L:      linux-s390@vger.kernel.org
16388 S:      Supported
16389 W:      http://www.ibm.com/developerworks/linux/linux390/
16390 F:      arch/s390/pci/
16391 F:      drivers/pci/hotplug/s390_pci_hpc.c
16392 F:      Documentation/s390/pci.rst
16393
16394 S390 VFIO AP DRIVER
16395 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16396 M:      Halil Pasic <pasic@linux.ibm.com>
16397 M:      Jason Herne <jjherne@linux.ibm.com>
16398 L:      linux-s390@vger.kernel.org
16399 S:      Supported
16400 W:      http://www.ibm.com/developerworks/linux/linux390/
16401 F:      Documentation/s390/vfio-ap.rst
16402 F:      drivers/s390/crypto/vfio_ap_drv.c
16403 F:      drivers/s390/crypto/vfio_ap_ops.c
16404 F:      drivers/s390/crypto/vfio_ap_private.h
16405
16406 S390 VFIO-CCW DRIVER
16407 M:      Eric Farman <farman@linux.ibm.com>
16408 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16409 R:      Halil Pasic <pasic@linux.ibm.com>
16410 L:      linux-s390@vger.kernel.org
16411 L:      kvm@vger.kernel.org
16412 S:      Supported
16413 F:      Documentation/s390/vfio-ccw.rst
16414 F:      drivers/s390/cio/vfio_ccw*
16415 F:      include/uapi/linux/vfio_ccw.h
16416
16417 S390 VFIO-PCI DRIVER
16418 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16419 M:      Eric Farman <farman@linux.ibm.com>
16420 L:      linux-s390@vger.kernel.org
16421 L:      kvm@vger.kernel.org
16422 S:      Supported
16423 F:      drivers/vfio/pci/vfio_pci_zdev.c
16424 F:      include/uapi/linux/vfio_zdev.h
16425
16426 S390 ZCRYPT DRIVER
16427 M:      Harald Freudenberger <freude@linux.ibm.com>
16428 L:      linux-s390@vger.kernel.org
16429 S:      Supported
16430 W:      http://www.ibm.com/developerworks/linux/linux390/
16431 F:      drivers/s390/crypto/
16432
16433 S390 ZFCP DRIVER
16434 M:      Steffen Maier <maier@linux.ibm.com>
16435 M:      Benjamin Block <bblock@linux.ibm.com>
16436 L:      linux-s390@vger.kernel.org
16437 S:      Supported
16438 W:      http://www.ibm.com/developerworks/linux/linux390/
16439 F:      drivers/s390/scsi/zfcp_*
16440
16441 S3C ADC BATTERY DRIVER
16442 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16443 L:      linux-samsung-soc@vger.kernel.org
16444 S:      Odd Fixes
16445 F:      drivers/power/supply/s3c_adc_battery.c
16446 F:      include/linux/s3c_adc_battery.h
16447
16448 S3C24XX SD/MMC Driver
16449 M:      Ben Dooks <ben-linux@fluff.org>
16450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16451 S:      Supported
16452 F:      drivers/mmc/host/s3cmci.*
16453
16454 SAA6588 RDS RECEIVER DRIVER
16455 M:      Hans Verkuil <hverkuil@xs4all.nl>
16456 L:      linux-media@vger.kernel.org
16457 S:      Odd Fixes
16458 W:      https://linuxtv.org
16459 T:      git git://linuxtv.org/media_tree.git
16460 F:      drivers/media/i2c/saa6588*
16461
16462 SAA7134 VIDEO4LINUX DRIVER
16463 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16464 L:      linux-media@vger.kernel.org
16465 S:      Odd fixes
16466 W:      https://linuxtv.org
16467 T:      git git://linuxtv.org/media_tree.git
16468 F:      Documentation/driver-api/media/drivers/saa7134*
16469 F:      drivers/media/pci/saa7134/
16470
16471 SAA7146 VIDEO4LINUX-2 DRIVER
16472 M:      Hans Verkuil <hverkuil@xs4all.nl>
16473 L:      linux-media@vger.kernel.org
16474 S:      Maintained
16475 T:      git git://linuxtv.org/media_tree.git
16476 F:      drivers/media/common/saa7146/
16477 F:      drivers/media/pci/saa7146/
16478 F:      include/media/drv-intf/saa7146*
16479
16480 SAFESETID SECURITY MODULE
16481 M:      Micah Morton <mortonm@chromium.org>
16482 S:      Supported
16483 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16484 F:      security/safesetid/
16485
16486 SAMSUNG AUDIO (ASoC) DRIVERS
16487 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16488 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16489 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16490 S:      Supported
16491 F:      Documentation/devicetree/bindings/sound/samsung*
16492 F:      sound/soc/samsung/
16493
16494 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16495 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16496 L:      linux-crypto@vger.kernel.org
16497 L:      linux-samsung-soc@vger.kernel.org
16498 S:      Maintained
16499 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16500 F:      drivers/crypto/exynos-rng.c
16501
16502 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16503 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16504 L:      linux-samsung-soc@vger.kernel.org
16505 S:      Maintained
16506 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16507 F:      drivers/char/hw_random/exynos-trng.c
16508
16509 SAMSUNG FRAMEBUFFER DRIVER
16510 M:      Jingoo Han <jingoohan1@gmail.com>
16511 L:      linux-fbdev@vger.kernel.org
16512 S:      Maintained
16513 F:      drivers/video/fbdev/s3c-fb.c
16514
16515 SAMSUNG INTERCONNECT DRIVERS
16516 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16517 M:      Artur Świgoń <a.swigon@samsung.com>
16518 L:      linux-pm@vger.kernel.org
16519 L:      linux-samsung-soc@vger.kernel.org
16520 S:      Supported
16521 F:      drivers/interconnect/samsung/
16522
16523 SAMSUNG LAPTOP DRIVER
16524 M:      Corentin Chary <corentin.chary@gmail.com>
16525 L:      platform-driver-x86@vger.kernel.org
16526 S:      Maintained
16527 F:      drivers/platform/x86/samsung-laptop.c
16528
16529 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16530 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16531 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16532 L:      linux-kernel@vger.kernel.org
16533 L:      linux-samsung-soc@vger.kernel.org
16534 S:      Supported
16535 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16536 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16537 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16538 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16539 F:      drivers/clk/clk-s2mps11.c
16540 F:      drivers/mfd/sec*.c
16541 F:      drivers/regulator/s2m*.c
16542 F:      drivers/regulator/s5m*.c
16543 F:      drivers/rtc/rtc-s5m.c
16544 F:      include/linux/mfd/samsung/
16545
16546 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16547 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16548 L:      linux-media@vger.kernel.org
16549 L:      linux-samsung-soc@vger.kernel.org
16550 S:      Maintained
16551 F:      drivers/media/platform/s3c-camif/
16552 F:      include/media/drv-intf/s3c_camif.h
16553
16554 SAMSUNG S3FWRN5 NFC DRIVER
16555 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16556 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16557 L:      linux-nfc@lists.01.org (subscribers-only)
16558 S:      Maintained
16559 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16560 F:      drivers/nfc/s3fwrn5
16561
16562 SAMSUNG S5C73M3 CAMERA DRIVER
16563 M:      Andrzej Hajda <a.hajda@samsung.com>
16564 L:      linux-media@vger.kernel.org
16565 S:      Supported
16566 F:      drivers/media/i2c/s5c73m3/*
16567
16568 SAMSUNG S5K5BAF CAMERA DRIVER
16569 M:      Andrzej Hajda <a.hajda@samsung.com>
16570 L:      linux-media@vger.kernel.org
16571 S:      Supported
16572 F:      drivers/media/i2c/s5k5baf.c
16573
16574 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16575 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16576 M:      Vladimir Zapolskiy <vz@mleia.com>
16577 L:      linux-crypto@vger.kernel.org
16578 L:      linux-samsung-soc@vger.kernel.org
16579 S:      Maintained
16580 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16581 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16582 F:      drivers/crypto/s5p-sss.c
16583
16584 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16585 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16586 L:      linux-media@vger.kernel.org
16587 S:      Supported
16588 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16589 F:      drivers/media/platform/exynos4-is/
16590
16591 SAMSUNG SOC CLOCK DRIVERS
16592 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16593 M:      Tomasz Figa <tomasz.figa@gmail.com>
16594 M:      Chanwoo Choi <cw00.choi@samsung.com>
16595 L:      linux-samsung-soc@vger.kernel.org
16596 S:      Supported
16597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16598 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16599 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16600 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16601 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16602 F:      drivers/clk/samsung/
16603 F:      include/dt-bindings/clock/exynos*.h
16604 F:      include/dt-bindings/clock/s3c*.h
16605 F:      include/dt-bindings/clock/s5p*.h
16606 F:      include/dt-bindings/clock/samsung,*.h
16607 F:      include/linux/clk/samsung.h
16608 F:      include/linux/platform_data/clk-s3c2410.h
16609
16610 SAMSUNG SPI DRIVERS
16611 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16612 M:      Andi Shyti <andi@etezian.org>
16613 L:      linux-spi@vger.kernel.org
16614 L:      linux-samsung-soc@vger.kernel.org
16615 S:      Maintained
16616 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16617 F:      drivers/spi/spi-s3c*
16618 F:      include/linux/platform_data/spi-s3c64xx.h
16619 F:      include/linux/spi/s3c24xx-fiq.h
16620
16621 SAMSUNG SXGBE DRIVERS
16622 M:      Byungho An <bh74.an@samsung.com>
16623 L:      netdev@vger.kernel.org
16624 S:      Supported
16625 F:      drivers/net/ethernet/samsung/sxgbe/
16626
16627 SAMSUNG THERMAL DRIVER
16628 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16629 L:      linux-pm@vger.kernel.org
16630 L:      linux-samsung-soc@vger.kernel.org
16631 S:      Supported
16632 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16633 F:      drivers/thermal/samsung/
16634
16635 SAMSUNG USB2 PHY DRIVER
16636 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16637 L:      linux-kernel@vger.kernel.org
16638 S:      Supported
16639 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16640 F:      Documentation/driver-api/phy/samsung-usb2.rst
16641 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16642 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16643 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16644 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16645 F:      drivers/phy/samsung/phy-samsung-usb2.c
16646 F:      drivers/phy/samsung/phy-samsung-usb2.h
16647
16648 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16649 M:      Paul Barker <paul.barker@sancloud.com>
16650 R:      Marc Murphy <marc.murphy@sancloud.com>
16651 S:      Supported
16652 F:      arch/arm/boot/dts/am335x-sancloud*
16653
16654 SC1200 WDT DRIVER
16655 M:      Zwane Mwaikambo <zwanem@gmail.com>
16656 S:      Maintained
16657 F:      drivers/watchdog/sc1200wdt.c
16658
16659 SCHEDULER
16660 M:      Ingo Molnar <mingo@redhat.com>
16661 M:      Peter Zijlstra <peterz@infradead.org>
16662 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16663 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16664 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16665 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16666 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16667 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16668 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16669 L:      linux-kernel@vger.kernel.org
16670 S:      Maintained
16671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16672 F:      include/linux/preempt.h
16673 F:      include/linux/sched.h
16674 F:      include/linux/wait.h
16675 F:      include/uapi/linux/sched.h
16676 F:      kernel/sched/
16677
16678 SCR24X CHIP CARD INTERFACE DRIVER
16679 M:      Lubomir Rintel <lkundrak@v3.sk>
16680 S:      Supported
16681 F:      drivers/char/pcmcia/scr24x_cs.c
16682
16683 SCSI RDMA PROTOCOL (SRP) INITIATOR
16684 M:      Bart Van Assche <bvanassche@acm.org>
16685 L:      linux-rdma@vger.kernel.org
16686 S:      Supported
16687 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16688 F:      drivers/infiniband/ulp/srp/
16689 F:      include/scsi/srp.h
16690
16691 SCSI RDMA PROTOCOL (SRP) TARGET
16692 M:      Bart Van Assche <bvanassche@acm.org>
16693 L:      linux-rdma@vger.kernel.org
16694 L:      target-devel@vger.kernel.org
16695 S:      Supported
16696 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16697 F:      drivers/infiniband/ulp/srpt/
16698
16699 SCSI SG DRIVER
16700 M:      Doug Gilbert <dgilbert@interlog.com>
16701 L:      linux-scsi@vger.kernel.org
16702 S:      Maintained
16703 W:      http://sg.danny.cz/sg
16704 F:      Documentation/scsi/scsi-generic.rst
16705 F:      drivers/scsi/sg.c
16706 F:      include/scsi/sg.h
16707
16708 SCSI SUBSYSTEM
16709 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16710 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16711 L:      linux-scsi@vger.kernel.org
16712 S:      Maintained
16713 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16716 F:      Documentation/devicetree/bindings/scsi/
16717 F:      drivers/scsi/
16718 F:      include/scsi/
16719
16720 SCSI TAPE DRIVER
16721 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16722 L:      linux-scsi@vger.kernel.org
16723 S:      Maintained
16724 F:      Documentation/scsi/st.rst
16725 F:      drivers/scsi/st.*
16726 F:      drivers/scsi/st_*.h
16727
16728 SCSI TARGET CORE USER DRIVER
16729 M:      Bodo Stroesser <bostroesser@gmail.com>
16730 L:      linux-scsi@vger.kernel.org
16731 L:      target-devel@vger.kernel.org
16732 S:      Supported
16733 F:      Documentation/target/tcmu-design.rst
16734 F:      drivers/target/target_core_user.c
16735 F:      include/uapi/linux/target_core_user.h
16736
16737 SCSI TARGET SUBSYSTEM
16738 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16739 L:      linux-scsi@vger.kernel.org
16740 L:      target-devel@vger.kernel.org
16741 S:      Supported
16742 W:      http://www.linux-iscsi.org
16743 Q:      https://patchwork.kernel.org/project/target-devel/list/
16744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16745 F:      Documentation/target/
16746 F:      drivers/target/
16747 F:      include/target/
16748
16749 SCTP PROTOCOL
16750 M:      Vlad Yasevich <vyasevich@gmail.com>
16751 M:      Neil Horman <nhorman@tuxdriver.com>
16752 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16753 L:      linux-sctp@vger.kernel.org
16754 S:      Maintained
16755 W:      http://lksctp.sourceforge.net
16756 F:      Documentation/networking/sctp.rst
16757 F:      include/linux/sctp.h
16758 F:      include/net/sctp/
16759 F:      include/uapi/linux/sctp.h
16760 F:      net/sctp/
16761
16762 SCx200 CPU SUPPORT
16763 M:      Jim Cromie <jim.cromie@gmail.com>
16764 S:      Odd Fixes
16765 F:      Documentation/i2c/busses/scx200_acb.rst
16766 F:      arch/x86/platform/scx200/
16767 F:      drivers/i2c/busses/scx200*
16768 F:      drivers/mtd/maps/scx200_docflash.c
16769 F:      drivers/watchdog/scx200_wdt.c
16770 F:      include/linux/scx200.h
16771
16772 SCx200 GPIO DRIVER
16773 M:      Jim Cromie <jim.cromie@gmail.com>
16774 S:      Maintained
16775 F:      drivers/char/scx200_gpio.c
16776 F:      include/linux/scx200_gpio.h
16777
16778 SCx200 HRT CLOCKSOURCE DRIVER
16779 M:      Jim Cromie <jim.cromie@gmail.com>
16780 S:      Maintained
16781 F:      drivers/clocksource/scx200_hrt.c
16782
16783 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16784 M:      Sascha Sommer <saschasommer@freenet.de>
16785 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16786 S:      Maintained
16787 F:      drivers/mmc/host/sdricoh_cs.c
16788
16789 SECO BOARDS CEC DRIVER
16790 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16791 S:      Maintained
16792 F:      drivers/media/cec/platform/seco/seco-cec.c
16793 F:      drivers/media/cec/platform/seco/seco-cec.h
16794
16795 SECURE COMPUTING
16796 M:      Kees Cook <keescook@chromium.org>
16797 R:      Andy Lutomirski <luto@amacapital.net>
16798 R:      Will Drewry <wad@chromium.org>
16799 S:      Supported
16800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16801 F:      Documentation/userspace-api/seccomp_filter.rst
16802 F:      include/linux/seccomp.h
16803 F:      include/uapi/linux/seccomp.h
16804 F:      kernel/seccomp.c
16805 F:      tools/testing/selftests/kselftest_harness.h
16806 F:      tools/testing/selftests/seccomp/*
16807 K:      \bsecure_computing
16808 K:      \bTIF_SECCOMP\b
16809
16810 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16811 M:      Al Cooper <alcooperx@gmail.com>
16812 L:      linux-mmc@vger.kernel.org
16813 L:      bcm-kernel-feedback-list@broadcom.com
16814 S:      Maintained
16815 F:      drivers/mmc/host/sdhci-brcmstb*
16816
16817 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16818 M:      Adrian Hunter <adrian.hunter@intel.com>
16819 L:      linux-mmc@vger.kernel.org
16820 S:      Maintained
16821 F:      drivers/mmc/host/sdhci*
16822 F:      include/linux/mmc/sdhci*
16823
16824 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16825 M:      Eugen Hristev <eugen.hristev@microchip.com>
16826 L:      linux-mmc@vger.kernel.org
16827 S:      Supported
16828 F:      drivers/mmc/host/sdhci-of-at91.c
16829
16830 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16831 M:      Ben Dooks <ben-linux@fluff.org>
16832 M:      Jaehoon Chung <jh80.chung@samsung.com>
16833 L:      linux-mmc@vger.kernel.org
16834 S:      Maintained
16835 F:      drivers/mmc/host/sdhci-s3c*
16836
16837 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16838 M:      Viresh Kumar <vireshk@kernel.org>
16839 L:      linux-mmc@vger.kernel.org
16840 S:      Maintained
16841 F:      drivers/mmc/host/sdhci-spear.c
16842
16843 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16844 M:      Kishon Vijay Abraham I <kishon@ti.com>
16845 L:      linux-mmc@vger.kernel.org
16846 S:      Maintained
16847 F:      drivers/mmc/host/sdhci-omap.c
16848
16849 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16850 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16851 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16852 L:      linux-block@vger.kernel.org
16853 S:      Supported
16854 F:      block/opal_proto.h
16855 F:      block/sed*
16856 F:      include/linux/sed*
16857 F:      include/uapi/linux/sed*
16858
16859 SECURITY CONTACT
16860 M:      Security Officers <security@kernel.org>
16861 S:      Supported
16862 F:      Documentation/admin-guide/security-bugs.rst
16863
16864 SECURITY SUBSYSTEM
16865 M:      James Morris <jmorris@namei.org>
16866 M:      "Serge E. Hallyn" <serge@hallyn.com>
16867 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16868 S:      Supported
16869 W:      http://kernsec.org/
16870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16871 F:      security/
16872 X:      security/selinux/
16873
16874 SELINUX SECURITY MODULE
16875 M:      Paul Moore <paul@paul-moore.com>
16876 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16877 M:      Eric Paris <eparis@parisplace.org>
16878 L:      selinux@vger.kernel.org
16879 S:      Supported
16880 W:      https://selinuxproject.org
16881 W:      https://github.com/SELinuxProject
16882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16883 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16884 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16885 F:      Documentation/admin-guide/LSM/SELinux.rst
16886 F:      include/trace/events/avc.h
16887 F:      include/uapi/linux/selinux_netlink.h
16888 F:      scripts/selinux/
16889 F:      security/selinux/
16890
16891 SENSABLE PHANTOM
16892 M:      Jiri Slaby <jirislaby@kernel.org>
16893 S:      Maintained
16894 F:      drivers/misc/phantom.c
16895 F:      include/uapi/linux/phantom.h
16896
16897 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16898 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16899 S:      Maintained
16900 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16901 F:      drivers/iio/chemical/scd30.h
16902 F:      drivers/iio/chemical/scd30_core.c
16903 F:      drivers/iio/chemical/scd30_i2c.c
16904 F:      drivers/iio/chemical/scd30_serial.c
16905
16906 SENSIRION SGP40 GAS SENSOR DRIVER
16907 M:      Andreas Klinger <ak@it-klinger.de>
16908 S:      Maintained
16909 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16910 F:      drivers/iio/chemical/sgp40.c
16911
16912 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16913 M:      Tomasz Duszynski <tduszyns@gmail.com>
16914 S:      Maintained
16915 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16916 F:      drivers/iio/chemical/sps30.c
16917 F:      drivers/iio/chemical/sps30_i2c.c
16918 F:      drivers/iio/chemical/sps30_serial.c
16919
16920 SERIAL DEVICE BUS
16921 M:      Rob Herring <robh@kernel.org>
16922 L:      linux-serial@vger.kernel.org
16923 S:      Maintained
16924 F:      Documentation/devicetree/bindings/serial/serial.yaml
16925 F:      drivers/tty/serdev/
16926 F:      include/linux/serdev.h
16927
16928 SERIAL DRIVERS
16929 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16930 L:      linux-serial@vger.kernel.org
16931 S:      Maintained
16932 F:      Documentation/devicetree/bindings/serial/
16933 F:      drivers/tty/serial/
16934
16935 SERIAL IR RECEIVER
16936 M:      Sean Young <sean@mess.org>
16937 L:      linux-media@vger.kernel.org
16938 S:      Maintained
16939 F:      drivers/media/rc/serial_ir.c
16940
16941 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16942 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16943 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16944 S:      Maintained
16945 F:      Documentation/devicetree/bindings/slimbus/
16946 F:      drivers/slimbus/
16947 F:      include/linux/slimbus.h
16948
16949 SFC NETWORK DRIVER
16950 M:      Edward Cree <ecree.xilinx@gmail.com>
16951 M:      Martin Habets <habetsm.xilinx@gmail.com>
16952 L:      netdev@vger.kernel.org
16953 S:      Supported
16954 F:      drivers/net/ethernet/sfc/
16955
16956 SFF/SFP/SFP+ MODULE SUPPORT
16957 M:      Russell King <linux@armlinux.org.uk>
16958 L:      netdev@vger.kernel.org
16959 S:      Maintained
16960 F:      drivers/net/phy/phylink.c
16961 F:      drivers/net/phy/sfp*
16962 F:      include/linux/mdio/mdio-i2c.h
16963 F:      include/linux/phylink.h
16964 F:      include/linux/sfp.h
16965 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)
16966
16967 SGI GRU DRIVER
16968 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
16969 S:      Maintained
16970 F:      drivers/misc/sgi-gru/
16971
16972 SGI XP/XPC/XPNET DRIVER
16973 M:      Robin Holt <robinmholt@gmail.com>
16974 M:      Steve Wahl <steve.wahl@hpe.com>
16975 R:      Mike Travis <mike.travis@hpe.com>
16976 S:      Maintained
16977 F:      drivers/misc/sgi-xp/
16978
16979 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
16980 M:      Karsten Graul <kgraul@linux.ibm.com>
16981 L:      linux-s390@vger.kernel.org
16982 S:      Supported
16983 W:      http://www.ibm.com/developerworks/linux/linux390/
16984 F:      net/smc/
16985
16986 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
16987 M:      Linus Walleij <linus.walleij@linaro.org>
16988 L:      linux-iio@vger.kernel.org
16989 S:      Maintained
16990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
16991 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
16992 F:      drivers/iio/light/gp2ap002.c
16993
16994 SHARP RJ54N1CB0C SENSOR DRIVER
16995 M:      Jacopo Mondi <jacopo@jmondi.org>
16996 L:      linux-media@vger.kernel.org
16997 S:      Odd fixes
16998 T:      git git://linuxtv.org/media_tree.git
16999 F:      drivers/media/i2c/rj54n1cb0c.c
17000 F:      include/media/i2c/rj54n1cb0c.h
17001
17002 SH_VOU V4L2 OUTPUT DRIVER
17003 L:      linux-media@vger.kernel.org
17004 S:      Orphan
17005 F:      drivers/media/platform/sh_vou.c
17006 F:      include/media/drv-intf/sh_vou.h
17007
17008 SI2157 MEDIA DRIVER
17009 M:      Antti Palosaari <crope@iki.fi>
17010 L:      linux-media@vger.kernel.org
17011 S:      Maintained
17012 W:      https://linuxtv.org
17013 W:      http://palosaari.fi/linux/
17014 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17015 T:      git git://linuxtv.org/anttip/media_tree.git
17016 F:      drivers/media/tuners/si2157*
17017
17018 SI2165 MEDIA DRIVER
17019 M:      Matthias Schwarzott <zzam@gentoo.org>
17020 L:      linux-media@vger.kernel.org
17021 S:      Maintained
17022 W:      https://linuxtv.org
17023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17024 F:      drivers/media/dvb-frontends/si2165*
17025
17026 SI2168 MEDIA DRIVER
17027 M:      Antti Palosaari <crope@iki.fi>
17028 L:      linux-media@vger.kernel.org
17029 S:      Maintained
17030 W:      https://linuxtv.org
17031 W:      http://palosaari.fi/linux/
17032 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17033 T:      git git://linuxtv.org/anttip/media_tree.git
17034 F:      drivers/media/dvb-frontends/si2168*
17035
17036 SI470X FM RADIO RECEIVER I2C DRIVER
17037 M:      Hans Verkuil <hverkuil@xs4all.nl>
17038 L:      linux-media@vger.kernel.org
17039 S:      Odd Fixes
17040 W:      https://linuxtv.org
17041 T:      git git://linuxtv.org/media_tree.git
17042 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17043
17044 SI470X FM RADIO RECEIVER USB DRIVER
17045 M:      Hans Verkuil <hverkuil@xs4all.nl>
17046 L:      linux-media@vger.kernel.org
17047 S:      Maintained
17048 W:      https://linuxtv.org
17049 T:      git git://linuxtv.org/media_tree.git
17050 F:      drivers/media/radio/si470x/radio-si470x-common.c
17051 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17052 F:      drivers/media/radio/si470x/radio-si470x.h
17053
17054 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17055 M:      Eduardo Valentin <edubezval@gmail.com>
17056 L:      linux-media@vger.kernel.org
17057 S:      Odd Fixes
17058 W:      https://linuxtv.org
17059 T:      git git://linuxtv.org/media_tree.git
17060 F:      drivers/media/radio/si4713/si4713.?
17061
17062 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17063 M:      Eduardo Valentin <edubezval@gmail.com>
17064 L:      linux-media@vger.kernel.org
17065 S:      Odd Fixes
17066 W:      https://linuxtv.org
17067 T:      git git://linuxtv.org/media_tree.git
17068 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17069
17070 SI4713 FM RADIO TRANSMITTER USB DRIVER
17071 M:      Hans Verkuil <hverkuil@xs4all.nl>
17072 L:      linux-media@vger.kernel.org
17073 S:      Maintained
17074 W:      https://linuxtv.org
17075 T:      git git://linuxtv.org/media_tree.git
17076 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17077
17078 SIANO DVB DRIVER
17079 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17080 L:      linux-media@vger.kernel.org
17081 S:      Odd fixes
17082 W:      https://linuxtv.org
17083 T:      git git://linuxtv.org/media_tree.git
17084 F:      drivers/media/common/siano/
17085 F:      drivers/media/mmc/siano/
17086 F:      drivers/media/usb/siano/
17087 F:      drivers/media/usb/siano/
17088
17089 SIFIVE DRIVERS
17090 M:      Palmer Dabbelt <palmer@dabbelt.com>
17091 M:      Paul Walmsley <paul.walmsley@sifive.com>
17092 L:      linux-riscv@lists.infradead.org
17093 S:      Supported
17094 T:      git git://github.com/sifive/riscv-linux.git
17095 N:      sifive
17096 K:      [^@]sifive
17097
17098 SIFIVE FU540 SYSTEM-ON-CHIP
17099 M:      Paul Walmsley <paul.walmsley@sifive.com>
17100 M:      Palmer Dabbelt <palmer@dabbelt.com>
17101 L:      linux-riscv@lists.infradead.org
17102 S:      Supported
17103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17104 N:      fu540
17105 K:      fu540
17106
17107 SIFIVE PDMA DRIVER
17108 M:      Green Wan <green.wan@sifive.com>
17109 S:      Maintained
17110 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17111 F:      drivers/dma/sf-pdma/
17112
17113 SILEAD TOUCHSCREEN DRIVER
17114 M:      Hans de Goede <hdegoede@redhat.com>
17115 L:      linux-input@vger.kernel.org
17116 L:      platform-driver-x86@vger.kernel.org
17117 S:      Maintained
17118 F:      drivers/input/touchscreen/silead.c
17119 F:      drivers/platform/x86/touchscreen_dmi.c
17120
17121 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17122 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17123 S:      Supported
17124 F:      drivers/staging/wfx/
17125
17126 SILICON MOTION SM712 FRAME BUFFER DRIVER
17127 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17128 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17129 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17130 L:      linux-fbdev@vger.kernel.org
17131 S:      Maintained
17132 F:      Documentation/fb/sm712fb.rst
17133 F:      drivers/video/fbdev/sm712*
17134
17135 SILVACO I3C DUAL-ROLE MASTER
17136 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17137 M:      Conor Culhane <conor.culhane@silvaco.com>
17138 L:      linux-i3c@lists.infradead.org
17139 S:      Maintained
17140 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17141 F:      drivers/i3c/master/svc-i3c-master.c
17142
17143 SIMPLEFB FB DRIVER
17144 M:      Hans de Goede <hdegoede@redhat.com>
17145 L:      linux-fbdev@vger.kernel.org
17146 S:      Maintained
17147 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17148 F:      drivers/video/fbdev/simplefb.c
17149 F:      include/linux/platform_data/simplefb.h
17150
17151 SIMTEC EB110ATX (Chalice CATS)
17152 M:      Simtec Linux Team <linux@simtec.co.uk>
17153 S:      Supported
17154 W:      http://www.simtec.co.uk/products/EB110ATX/
17155
17156 SIMTEC EB2410ITX (BAST)
17157 M:      Simtec Linux Team <linux@simtec.co.uk>
17158 S:      Supported
17159 W:      http://www.simtec.co.uk/products/EB2410ITX/
17160 F:      arch/arm/mach-s3c/bast-ide.c
17161 F:      arch/arm/mach-s3c/bast-irq.c
17162 F:      arch/arm/mach-s3c/mach-bast.c
17163
17164 SIOX
17165 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17166 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17167 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17168 S:      Supported
17169 F:      drivers/gpio/gpio-siox.c
17170 F:      drivers/siox/*
17171 F:      include/trace/events/siox.h
17172
17173 SIPHASH PRF ROUTINES
17174 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17175 S:      Maintained
17176 F:      include/linux/siphash.h
17177 F:      lib/siphash.c
17178 F:      lib/test_siphash.c
17179
17180 SIS 190 ETHERNET DRIVER
17181 M:      Francois Romieu <romieu@fr.zoreil.com>
17182 L:      netdev@vger.kernel.org
17183 S:      Maintained
17184 F:      drivers/net/ethernet/sis/sis190.c
17185
17186 SIS 900/7016 FAST ETHERNET DRIVER
17187 M:      Daniele Venzano <venza@brownhat.org>
17188 L:      netdev@vger.kernel.org
17189 S:      Maintained
17190 W:      http://www.brownhat.org/sis900.html
17191 F:      drivers/net/ethernet/sis/sis900.*
17192
17193 SIS FRAMEBUFFER DRIVER
17194 M:      Thomas Winischhofer <thomas@winischhofer.net>
17195 S:      Maintained
17196 W:      http://www.winischhofer.net/linuxsisvga.shtml
17197 F:      Documentation/fb/sisfb.rst
17198 F:      drivers/video/fbdev/sis/
17199 F:      include/video/sisfb.h
17200
17201 SIS I2C TOUCHSCREEN DRIVER
17202 M:      Mika Penttilä <mika.penttila@nextfour.com>
17203 L:      linux-input@vger.kernel.org
17204 S:      Maintained
17205 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17206 F:      drivers/input/touchscreen/sis_i2c.c
17207
17208 SIS USB2VGA DRIVER
17209 M:      Thomas Winischhofer <thomas@winischhofer.net>
17210 S:      Maintained
17211 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17212 F:      drivers/usb/misc/sisusbvga/
17213
17214 SLAB ALLOCATOR
17215 M:      Christoph Lameter <cl@linux.com>
17216 M:      Pekka Enberg <penberg@kernel.org>
17217 M:      David Rientjes <rientjes@google.com>
17218 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17219 M:      Andrew Morton <akpm@linux-foundation.org>
17220 M:      Vlastimil Babka <vbabka@suse.cz>
17221 L:      linux-mm@kvack.org
17222 S:      Maintained
17223 F:      include/linux/sl?b*.h
17224 F:      mm/sl?b*
17225
17226 SLEEPABLE READ-COPY UPDATE (SRCU)
17227 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17228 M:      "Paul E. McKenney" <paulmck@kernel.org>
17229 M:      Josh Triplett <josh@joshtriplett.org>
17230 R:      Steven Rostedt <rostedt@goodmis.org>
17231 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17232 L:      rcu@vger.kernel.org
17233 S:      Supported
17234 W:      http://www.rdrop.com/users/paulmck/RCU/
17235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17236 F:      include/linux/srcu*.h
17237 F:      kernel/rcu/srcu*.c
17238
17239 SMACK SECURITY MODULE
17240 M:      Casey Schaufler <casey@schaufler-ca.com>
17241 L:      linux-security-module@vger.kernel.org
17242 S:      Maintained
17243 W:      http://schaufler-ca.com
17244 T:      git git://github.com/cschaufler/smack-next
17245 F:      Documentation/admin-guide/LSM/Smack.rst
17246 F:      security/smack/
17247
17248 SMC91x ETHERNET DRIVER
17249 M:      Nicolas Pitre <nico@fluxnic.net>
17250 S:      Odd Fixes
17251 F:      drivers/net/ethernet/smsc/smc91x.*
17252
17253 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17254 M:      Mark Rutland <mark.rutland@arm.com>
17255 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17256 M:      Sudeep Holla <sudeep.holla@arm.com>
17257 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17258 S:      Maintained
17259 F:      drivers/firmware/smccc/
17260 F:      include/linux/arm-smccc.h
17261
17262 SMM665 HARDWARE MONITOR DRIVER
17263 M:      Guenter Roeck <linux@roeck-us.net>
17264 L:      linux-hwmon@vger.kernel.org
17265 S:      Maintained
17266 F:      Documentation/hwmon/smm665.rst
17267 F:      drivers/hwmon/smm665.c
17268
17269 SMSC EMC2103 HARDWARE MONITOR DRIVER
17270 M:      Steve Glendinning <steve.glendinning@shawell.net>
17271 L:      linux-hwmon@vger.kernel.org
17272 S:      Maintained
17273 F:      Documentation/hwmon/emc2103.rst
17274 F:      drivers/hwmon/emc2103.c
17275
17276 SMSC SCH5627 HARDWARE MONITOR DRIVER
17277 M:      Hans de Goede <hdegoede@redhat.com>
17278 L:      linux-hwmon@vger.kernel.org
17279 S:      Supported
17280 F:      Documentation/hwmon/sch5627.rst
17281 F:      drivers/hwmon/sch5627.c
17282
17283 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17284 M:      Steve Glendinning <steve.glendinning@shawell.net>
17285 L:      linux-fbdev@vger.kernel.org
17286 S:      Maintained
17287 F:      drivers/video/fbdev/smscufx.c
17288
17289 SMSC47B397 HARDWARE MONITOR DRIVER
17290 M:      Jean Delvare <jdelvare@suse.com>
17291 L:      linux-hwmon@vger.kernel.org
17292 S:      Maintained
17293 F:      Documentation/hwmon/smsc47b397.rst
17294 F:      drivers/hwmon/smsc47b397.c
17295
17296 SMSC911x ETHERNET DRIVER
17297 M:      Steve Glendinning <steve.glendinning@shawell.net>
17298 L:      netdev@vger.kernel.org
17299 S:      Maintained
17300 F:      drivers/net/ethernet/smsc/smsc911x.*
17301 F:      include/linux/smsc911x.h
17302
17303 SMSC9420 PCI ETHERNET DRIVER
17304 M:      Steve Glendinning <steve.glendinning@shawell.net>
17305 L:      netdev@vger.kernel.org
17306 S:      Maintained
17307 F:      drivers/net/ethernet/smsc/smsc9420.*
17308
17309 SOCIONEXT (SNI) AVE NETWORK DRIVER
17310 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17311 L:      netdev@vger.kernel.org
17312 S:      Maintained
17313 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17314 F:      drivers/net/ethernet/socionext/sni_ave.c
17315
17316 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17317 M:      Jassi Brar <jaswinder.singh@linaro.org>
17318 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17319 L:      netdev@vger.kernel.org
17320 S:      Maintained
17321 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17322 F:      drivers/net/ethernet/socionext/netsec.c
17323
17324 SOCIONEXT (SNI) Synquacer SPI DRIVER
17325 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17326 M:      Jassi Brar <jaswinder.singh@linaro.org>
17327 L:      linux-spi@vger.kernel.org
17328 S:      Maintained
17329 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17330 F:      drivers/spi/spi-synquacer.c
17331
17332 SOCIONEXT SYNQUACER I2C DRIVER
17333 M:      Ard Biesheuvel <ardb@kernel.org>
17334 L:      linux-i2c@vger.kernel.org
17335 S:      Maintained
17336 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17337 F:      drivers/i2c/busses/i2c-synquacer.c
17338
17339 SOCIONEXT UNIPHIER SOUND DRIVER
17340 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17341 S:      Orphan
17342 F:      sound/soc/uniphier/
17343
17344 SOEKRIS NET48XX LED SUPPORT
17345 M:      Chris Boot <bootc@bootc.net>
17346 S:      Maintained
17347 F:      drivers/leds/leds-net48xx.c
17348
17349 SOFT-IWARP DRIVER (siw)
17350 M:      Bernard Metzler <bmt@zurich.ibm.com>
17351 L:      linux-rdma@vger.kernel.org
17352 S:      Supported
17353 F:      drivers/infiniband/sw/siw/
17354 F:      include/uapi/rdma/siw-abi.h
17355
17356 SOFT-ROCE DRIVER (rxe)
17357 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17358 L:      linux-rdma@vger.kernel.org
17359 S:      Supported
17360 F:      drivers/infiniband/sw/rxe/
17361 F:      include/uapi/rdma/rdma_user_rxe.h
17362
17363 SOFTLOGIC 6x10 MPEG CODEC
17364 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17365 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17366 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17367 M:      Ismael Luceno <ismael@iodev.co.uk>
17368 L:      linux-media@vger.kernel.org
17369 S:      Supported
17370 F:      drivers/media/pci/solo6x10/
17371
17372 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17373 M:      James Morse <james.morse@arm.com>
17374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17375 S:      Maintained
17376 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17377 F:      drivers/firmware/arm_sdei.c
17378 F:      include/linux/arm_sdei.h
17379 F:      include/uapi/linux/arm_sdei.h
17380
17381 SOFTWARE NODES
17382 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17383 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17384 L:      linux-acpi@vger.kernel.org
17385 S:      Maintained
17386 F:      drivers/base/swnode.c
17387
17388 SOFTWARE RAID (Multiple Disks) SUPPORT
17389 M:      Song Liu <song@kernel.org>
17390 L:      linux-raid@vger.kernel.org
17391 S:      Supported
17392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17393 F:      drivers/md/Kconfig
17394 F:      drivers/md/Makefile
17395 F:      drivers/md/md*
17396 F:      drivers/md/raid*
17397 F:      include/linux/raid/
17398 F:      include/uapi/linux/raid/
17399
17400 SOLIDRUN CLEARFOG SUPPORT
17401 M:      Russell King <linux@armlinux.org.uk>
17402 S:      Maintained
17403 F:      arch/arm/boot/dts/armada-388-clearfog*
17404 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17405
17406 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17407 M:      Russell King <linux@armlinux.org.uk>
17408 S:      Maintained
17409 F:      arch/arm/boot/dts/imx6*-cubox-i*
17410 F:      arch/arm/boot/dts/imx6*-hummingboard*
17411 F:      arch/arm/boot/dts/imx6*-sr-*
17412
17413 SONIC NETWORK DRIVER
17414 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17415 L:      netdev@vger.kernel.org
17416 S:      Maintained
17417 F:      drivers/net/ethernet/natsemi/sonic.*
17418
17419 SONICS SILICON BACKPLANE DRIVER (SSB)
17420 M:      Michael Buesch <m@bues.ch>
17421 L:      linux-wireless@vger.kernel.org
17422 S:      Maintained
17423 F:      drivers/ssb/
17424 F:      include/linux/ssb/
17425
17426 SONY IMX208 SENSOR DRIVER
17427 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17428 L:      linux-media@vger.kernel.org
17429 S:      Maintained
17430 T:      git git://linuxtv.org/media_tree.git
17431 F:      drivers/media/i2c/imx208.c
17432
17433 SONY IMX214 SENSOR DRIVER
17434 M:      Ricardo Ribalda <ribalda@kernel.org>
17435 L:      linux-media@vger.kernel.org
17436 S:      Maintained
17437 T:      git git://linuxtv.org/media_tree.git
17438 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17439 F:      drivers/media/i2c/imx214.c
17440
17441 SONY IMX219 SENSOR DRIVER
17442 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17443 L:      linux-media@vger.kernel.org
17444 S:      Maintained
17445 T:      git git://linuxtv.org/media_tree.git
17446 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17447 F:      drivers/media/i2c/imx219.c
17448
17449 SONY IMX258 SENSOR DRIVER
17450 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17451 L:      linux-media@vger.kernel.org
17452 S:      Maintained
17453 T:      git git://linuxtv.org/media_tree.git
17454 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17455 F:      drivers/media/i2c/imx258.c
17456
17457 SONY IMX274 SENSOR DRIVER
17458 M:      Leon Luo <leonl@leopardimaging.com>
17459 L:      linux-media@vger.kernel.org
17460 S:      Maintained
17461 T:      git git://linuxtv.org/media_tree.git
17462 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17463 F:      drivers/media/i2c/imx274.c
17464
17465 SONY IMX290 SENSOR DRIVER
17466 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17467 L:      linux-media@vger.kernel.org
17468 S:      Maintained
17469 T:      git git://linuxtv.org/media_tree.git
17470 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17471 F:      drivers/media/i2c/imx290.c
17472
17473 SONY IMX319 SENSOR DRIVER
17474 M:      Bingbu Cao <bingbu.cao@intel.com>
17475 L:      linux-media@vger.kernel.org
17476 S:      Maintained
17477 T:      git git://linuxtv.org/media_tree.git
17478 F:      drivers/media/i2c/imx319.c
17479
17480 SONY IMX334 SENSOR DRIVER
17481 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17482 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17483 L:      linux-media@vger.kernel.org
17484 S:      Maintained
17485 T:      git git://linuxtv.org/media_tree.git
17486 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17487 F:      drivers/media/i2c/imx334.c
17488
17489 SONY IMX335 SENSOR DRIVER
17490 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17491 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17492 L:      linux-media@vger.kernel.org
17493 S:      Maintained
17494 T:      git git://linuxtv.org/media_tree.git
17495 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17496 F:      drivers/media/i2c/imx335.c
17497
17498 SONY IMX355 SENSOR DRIVER
17499 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17500 L:      linux-media@vger.kernel.org
17501 S:      Maintained
17502 T:      git git://linuxtv.org/media_tree.git
17503 F:      drivers/media/i2c/imx355.c
17504
17505 SONY IMX412 SENSOR DRIVER
17506 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17507 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17508 L:      linux-media@vger.kernel.org
17509 S:      Maintained
17510 T:      git git://linuxtv.org/media_tree.git
17511 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17512 F:      drivers/media/i2c/imx412.c
17513
17514 SONY MEMORYSTICK SUBSYSTEM
17515 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17516 M:      Alex Dubov <oakad@yahoo.com>
17517 M:      Ulf Hansson <ulf.hansson@linaro.org>
17518 L:      linux-mmc@vger.kernel.org
17519 S:      Maintained
17520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17521 F:      drivers/memstick/
17522 F:      include/linux/memstick.h
17523
17524 SONY VAIO CONTROL DEVICE DRIVER
17525 M:      Mattia Dongili <malattia@linux.it>
17526 L:      platform-driver-x86@vger.kernel.org
17527 S:      Maintained
17528 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17529 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17530 F:      drivers/char/sonypi.c
17531 F:      drivers/platform/x86/sony-laptop.c
17532 F:      include/linux/sony-laptop.h
17533
17534 SOUND
17535 M:      Jaroslav Kysela <perex@perex.cz>
17536 M:      Takashi Iwai <tiwai@suse.com>
17537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17538 S:      Maintained
17539 W:      http://www.alsa-project.org/
17540 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17542 F:      Documentation/sound/
17543 F:      include/sound/
17544 F:      include/uapi/sound/
17545 F:      sound/
17546
17547 SOUND - COMPRESSED AUDIO
17548 M:      Vinod Koul <vkoul@kernel.org>
17549 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17550 S:      Supported
17551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17552 F:      Documentation/sound/designs/compress-offload.rst
17553 F:      include/sound/compress_driver.h
17554 F:      include/uapi/sound/compress_*
17555 F:      sound/core/compress_offload.c
17556 F:      sound/soc/soc-compress.c
17557
17558 SOUND - DMAENGINE HELPERS
17559 M:      Lars-Peter Clausen <lars@metafoo.de>
17560 S:      Supported
17561 F:      include/sound/dmaengine_pcm.h
17562 F:      sound/core/pcm_dmaengine.c
17563 F:      sound/soc/soc-generic-dmaengine-pcm.c
17564
17565 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17566 M:      Liam Girdwood <lgirdwood@gmail.com>
17567 M:      Mark Brown <broonie@kernel.org>
17568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17569 S:      Supported
17570 W:      http://alsa-project.org/main/index.php/ASoC
17571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17572 F:      Documentation/devicetree/bindings/sound/
17573 F:      Documentation/sound/soc/
17574 F:      include/dt-bindings/sound/
17575 F:      include/sound/soc*
17576 F:      sound/soc/
17577
17578 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17579 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17580 M:      Liam Girdwood <lgirdwood@gmail.com>
17581 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17582 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17583 M:      Daniel Baluta <daniel.baluta@nxp.com>
17584 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17585 S:      Supported
17586 W:      https://github.com/thesofproject/linux/
17587 F:      sound/soc/sof/
17588
17589 SOUNDWIRE SUBSYSTEM
17590 M:      Vinod Koul <vkoul@kernel.org>
17591 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17592 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17593 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17595 S:      Supported
17596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17597 F:      Documentation/driver-api/soundwire/
17598 F:      drivers/soundwire/
17599 F:      include/linux/soundwire/
17600
17601 SP2 MEDIA DRIVER
17602 M:      Olli Salonen <olli.salonen@iki.fi>
17603 L:      linux-media@vger.kernel.org
17604 S:      Maintained
17605 W:      https://linuxtv.org
17606 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17607 F:      drivers/media/dvb-frontends/sp2*
17608
17609 SPARC + UltraSPARC (sparc/sparc64)
17610 M:      "David S. Miller" <davem@davemloft.net>
17611 L:      sparclinux@vger.kernel.org
17612 S:      Maintained
17613 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17616 F:      arch/sparc/
17617 F:      drivers/sbus/
17618
17619 SPARC SERIAL DRIVERS
17620 M:      "David S. Miller" <davem@davemloft.net>
17621 L:      sparclinux@vger.kernel.org
17622 S:      Maintained
17623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17625 F:      drivers/tty/serial/suncore.c
17626 F:      drivers/tty/serial/sunhv.c
17627 F:      drivers/tty/serial/sunsab.c
17628 F:      drivers/tty/serial/sunsab.h
17629 F:      drivers/tty/serial/sunsu.c
17630 F:      drivers/tty/serial/sunzilog.c
17631 F:      drivers/tty/serial/sunzilog.h
17632 F:      drivers/tty/vcc.c
17633 F:      include/linux/sunserialcore.h
17634
17635 SPARSE CHECKER
17636 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17637 L:      linux-sparse@vger.kernel.org
17638 S:      Maintained
17639 W:      https://sparse.docs.kernel.org/
17640 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17641 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17642 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17643 F:      include/linux/compiler.h
17644
17645 SPEAKUP CONSOLE SPEECH DRIVER
17646 M:      William Hubbs <w.d.hubbs@gmail.com>
17647 M:      Chris Brannon <chris@the-brannons.com>
17648 M:      Kirk Reiser <kirk@reisers.ca>
17649 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17650 L:      speakup@linux-speakup.org
17651 S:      Odd Fixes
17652 W:      http://www.linux-speakup.org/
17653 W:      https://github.com/linux-speakup/speakup
17654 B:      https://github.com/linux-speakup/speakup/issues
17655 F:      drivers/accessibility/speakup/
17656
17657 SPEAR CLOCK FRAMEWORK SUPPORT
17658 M:      Viresh Kumar <vireshk@kernel.org>
17659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17660 S:      Maintained
17661 W:      http://www.st.com/spear
17662 F:      drivers/clk/spear/
17663
17664 SPEAR PLATFORM SUPPORT
17665 M:      Viresh Kumar <vireshk@kernel.org>
17666 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17668 S:      Maintained
17669 W:      http://www.st.com/spear
17670 F:      arch/arm/boot/dts/spear*
17671 F:      arch/arm/mach-spear/
17672
17673 SPI NOR SUBSYSTEM
17674 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17675 R:      Michael Walle <michael@walle.cc>
17676 R:      Pratyush Yadav <p.yadav@ti.com>
17677 L:      linux-mtd@lists.infradead.org
17678 S:      Maintained
17679 W:      http://www.linux-mtd.infradead.org/
17680 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17681 C:      irc://irc.oftc.net/mtd
17682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17683 F:      drivers/mtd/spi-nor/
17684 F:      include/linux/mtd/spi-nor.h
17685
17686 SPI SUBSYSTEM
17687 M:      Mark Brown <broonie@kernel.org>
17688 L:      linux-spi@vger.kernel.org
17689 S:      Maintained
17690 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17692 F:      Documentation/devicetree/bindings/spi/
17693 F:      Documentation/spi/
17694 F:      drivers/spi/
17695 F:      include/linux/spi/
17696 F:      include/uapi/linux/spi/
17697 F:      tools/spi/
17698
17699 SPIDERNET NETWORK DRIVER for CELL
17700 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17701 M:      Geoff Levand <geoff@infradead.org>
17702 L:      netdev@vger.kernel.org
17703 L:      linuxppc-dev@lists.ozlabs.org
17704 S:      Maintained
17705 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17706 F:      drivers/net/ethernet/toshiba/spider_net*
17707
17708 SPMI SUBSYSTEM
17709 M:      Stephen Boyd <sboyd@kernel.org>
17710 L:      linux-kernel@vger.kernel.org
17711 S:      Maintained
17712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17713 F:      Documentation/devicetree/bindings/spmi/
17714 F:      drivers/spmi/
17715 F:      include/dt-bindings/spmi/spmi.h
17716 F:      include/linux/spmi.h
17717 F:      include/trace/events/spmi.h
17718
17719 SPU FILE SYSTEM
17720 M:      Jeremy Kerr <jk@ozlabs.org>
17721 L:      linuxppc-dev@lists.ozlabs.org
17722 S:      Supported
17723 W:      http://www.ibm.com/developerworks/power/cell/
17724 F:      Documentation/filesystems/spufs/spufs.rst
17725 F:      arch/powerpc/platforms/cell/spufs/
17726
17727 SQUASHFS FILE SYSTEM
17728 M:      Phillip Lougher <phillip@squashfs.org.uk>
17729 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17730 S:      Maintained
17731 W:      http://squashfs.org.uk
17732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17733 F:      Documentation/filesystems/squashfs.rst
17734 F:      fs/squashfs/
17735
17736 SRM (Alpha) environment access
17737 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17738 S:      Maintained
17739 F:      arch/alpha/kernel/srm_env.c
17740
17741 ST LSM6DSx IMU IIO DRIVER
17742 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17743 L:      linux-iio@vger.kernel.org
17744 S:      Maintained
17745 W:      http://www.st.com/
17746 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17747 F:      drivers/iio/imu/st_lsm6dsx/
17748
17749 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17750 M:      Mickael Guene <mickael.guene@st.com>
17751 L:      linux-media@vger.kernel.org
17752 S:      Maintained
17753 T:      git git://linuxtv.org/media_tree.git
17754 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17755 F:      drivers/media/i2c/st-mipid02.c
17756
17757 ST STM32 I2C/SMBUS DRIVER
17758 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17759 M:      Alain Volmat <alain.volmat@foss.st.com>
17760 L:      linux-i2c@vger.kernel.org
17761 S:      Maintained
17762 F:      drivers/i2c/busses/i2c-stm32*
17763
17764 ST STM32 SPI DRIVER
17765 M:      Alain Volmat <alain.volmat@foss.st.com>
17766 L:      linux-spi@vger.kernel.org
17767 S:      Maintained
17768 F:      drivers/spi/spi-stm32.c
17769
17770 ST STPDDC60 DRIVER
17771 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17772 L:      linux-hwmon@vger.kernel.org
17773 S:      Maintained
17774 F:      Documentation/hwmon/stpddc60.rst
17775 F:      drivers/hwmon/pmbus/stpddc60.c
17776
17777 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17778 M:      Song Qiang <songqiang1304521@gmail.com>
17779 L:      linux-iio@vger.kernel.org
17780 S:      Maintained
17781 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17782 F:      drivers/iio/proximity/vl53l0x-i2c.c
17783
17784 STABLE BRANCH
17785 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17786 M:      Sasha Levin <sashal@kernel.org>
17787 L:      stable@vger.kernel.org
17788 S:      Supported
17789 F:      Documentation/process/stable-kernel-rules.rst
17790
17791 STAGING - ATOMISP DRIVER
17792 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17793 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17794 L:      linux-media@vger.kernel.org
17795 S:      Maintained
17796 F:      drivers/staging/media/atomisp/
17797
17798 STAGING - FIELDBUS SUBSYSTEM
17799 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17800 S:      Maintained
17801 F:      drivers/staging/fieldbus/*
17802 F:      drivers/staging/fieldbus/Documentation/
17803
17804 STAGING - HMS ANYBUS-S BUS
17805 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17806 S:      Maintained
17807 F:      drivers/staging/fieldbus/anybuss/
17808
17809 STAGING - INDUSTRIAL IO
17810 M:      Jonathan Cameron <jic23@kernel.org>
17811 L:      linux-iio@vger.kernel.org
17812 S:      Odd Fixes
17813 F:      Documentation/devicetree/bindings/staging/iio/
17814 F:      drivers/staging/iio/
17815
17816 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17817 M:      Marc Dietrich <marvin24@gmx.de>
17818 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17819 L:      linux-tegra@vger.kernel.org
17820 S:      Maintained
17821 F:      drivers/staging/nvec/
17822
17823 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17824 M:      Jens Frederich <jfrederich@gmail.com>
17825 M:      Jon Nettleton <jon.nettleton@gmail.com>
17826 S:      Maintained
17827 W:      http://wiki.laptop.org/go/DCON
17828 F:      drivers/staging/olpc_dcon/
17829
17830 STAGING - REALTEK RTL8188EU DRIVERS
17831 M:      Larry Finger <Larry.Finger@lwfinger.net>
17832 M:      Phillip Potter <phil@philpotter.co.uk>
17833 S:      Supported
17834 F:      drivers/staging/r8188eu/
17835
17836 STAGING - REALTEK RTL8712U DRIVERS
17837 M:      Larry Finger <Larry.Finger@lwfinger.net>
17838 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17839 S:      Odd Fixes
17840 F:      drivers/staging/rtl8712/
17841
17842 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17843 M:      Michael Hennerich <michael.hennerich@analog.com>
17844 L:      linux-fbdev@vger.kernel.org
17845 S:      Supported
17846 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17847 F:      drivers/staging/fbtft/fb_seps525.c
17848
17849 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17850 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17851 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17852 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17853 L:      linux-fbdev@vger.kernel.org
17854 S:      Maintained
17855 F:      drivers/staging/sm750fb/
17856
17857 STAGING - VIA VT665X DRIVERS
17858 M:      Forest Bond <forest@alittletooquiet.net>
17859 S:      Odd Fixes
17860 F:      drivers/staging/vt665?/
17861
17862 STAGING SUBSYSTEM
17863 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17864 L:      linux-staging@lists.linux.dev
17865 S:      Supported
17866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17867 F:      drivers/staging/
17868
17869 STARFIRE/DURALAN NETWORK DRIVER
17870 M:      Ion Badulescu <ionut@badula.org>
17871 S:      Odd Fixes
17872 F:      drivers/net/ethernet/adaptec/starfire*
17873
17874 STATIC BRANCH/CALL
17875 M:      Peter Zijlstra <peterz@infradead.org>
17876 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17877 M:      Jason Baron <jbaron@akamai.com>
17878 R:      Steven Rostedt <rostedt@goodmis.org>
17879 R:      Ard Biesheuvel <ardb@kernel.org>
17880 S:      Supported
17881 F:      arch/*/include/asm/jump_label*.h
17882 F:      arch/*/include/asm/static_call*.h
17883 F:      arch/*/kernel/jump_label.c
17884 F:      arch/*/kernel/static_call.c
17885 F:      include/linux/jump_label*.h
17886 F:      include/linux/static_call*.h
17887 F:      kernel/jump_label.c
17888 F:      kernel/static_call.c
17889
17890 STI AUDIO (ASoC) DRIVERS
17891 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17893 S:      Maintained
17894 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17895 F:      sound/soc/sti/
17896
17897 STI CEC DRIVER
17898 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17899 S:      Maintained
17900 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17901 F:      drivers/media/cec/platform/sti/
17902
17903 STK1160 USB VIDEO CAPTURE DRIVER
17904 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17905 L:      linux-media@vger.kernel.org
17906 S:      Maintained
17907 T:      git git://linuxtv.org/media_tree.git
17908 F:      drivers/media/usb/stk1160/
17909
17910 STM32 AUDIO (ASoC) DRIVERS
17911 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17912 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17913 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17914 S:      Maintained
17915 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17916 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17917 F:      sound/soc/stm/
17918
17919 STM32 TIMER/LPTIMER DRIVERS
17920 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
17921 S:      Maintained
17922 F:      Documentation/ABI/testing/*timer-stm32
17923 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
17924 F:      drivers/*/stm32-*timer*
17925 F:      drivers/pwm/pwm-stm32*
17926 F:      include/linux/*/stm32-*tim*
17927
17928 STMMAC ETHERNET DRIVER
17929 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
17930 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
17931 M:      Jose Abreu <joabreu@synopsys.com>
17932 L:      netdev@vger.kernel.org
17933 S:      Supported
17934 W:      http://www.stlinux.com
17935 F:      Documentation/networking/device_drivers/ethernet/stmicro/
17936 F:      drivers/net/ethernet/stmicro/stmmac/
17937
17938 SUN3/3X
17939 M:      Sam Creasey <sammy@sammy.net>
17940 S:      Maintained
17941 W:      http://sammy.net/sun3/
17942 F:      arch/m68k/include/asm/sun3*
17943 F:      arch/m68k/kernel/*sun3*
17944 F:      arch/m68k/sun3*/
17945 F:      drivers/net/ethernet/i825xx/sun3*
17946
17947 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
17948 M:      Hans de Goede <hdegoede@redhat.com>
17949 L:      linux-input@vger.kernel.org
17950 S:      Maintained
17951 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
17952 F:      drivers/input/keyboard/sun4i-lradc-keys.c
17953
17954 SUNDANCE NETWORK DRIVER
17955 M:      Denis Kirjanov <kda@linux-powerpc.org>
17956 L:      netdev@vger.kernel.org
17957 S:      Maintained
17958 F:      drivers/net/ethernet/dlink/sundance.c
17959
17960 SUPERH
17961 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
17962 M:      Rich Felker <dalias@libc.org>
17963 L:      linux-sh@vger.kernel.org
17964 S:      Maintained
17965 Q:      http://patchwork.kernel.org/project/linux-sh/list/
17966 F:      Documentation/sh/
17967 F:      arch/sh/
17968 F:      drivers/sh/
17969
17970 SUSPEND TO RAM
17971 M:      "Rafael J. Wysocki" <rafael@kernel.org>
17972 M:      Len Brown <len.brown@intel.com>
17973 M:      Pavel Machek <pavel@ucw.cz>
17974 L:      linux-pm@vger.kernel.org
17975 S:      Supported
17976 B:      https://bugzilla.kernel.org
17977 F:      Documentation/power/
17978 F:      arch/x86/kernel/acpi/
17979 F:      drivers/base/power/
17980 F:      include/linux/freezer.h
17981 F:      include/linux/pm.h
17982 F:      include/linux/suspend.h
17983 F:      kernel/power/
17984
17985 SVGA HANDLING
17986 M:      Martin Mares <mj@ucw.cz>
17987 L:      linux-video@atrey.karlin.mff.cuni.cz
17988 S:      Maintained
17989 F:      Documentation/admin-guide/svga.rst
17990 F:      arch/x86/boot/video*
17991
17992 SWIOTLB SUBSYSTEM
17993 M:      Christoph Hellwig <hch@infradead.org>
17994 L:      iommu@lists.linux-foundation.org
17995 L:      iommu@lists.linux.dev
17996 S:      Supported
17997 W:      http://git.infradead.org/users/hch/dma-mapping.git
17998 T:      git git://git.infradead.org/users/hch/dma-mapping.git
17999 F:      arch/*/kernel/pci-swiotlb.c
18000 F:      include/linux/swiotlb.h
18001 F:      kernel/dma/swiotlb.c
18002
18003 SWITCHDEV
18004 M:      Jiri Pirko <jiri@resnulli.us>
18005 M:      Ivan Vecera <ivecera@redhat.com>
18006 L:      netdev@vger.kernel.org
18007 S:      Supported
18008 F:      include/net/switchdev.h
18009 F:      net/switchdev/
18010
18011 SY8106A REGULATOR DRIVER
18012 M:      Icenowy Zheng <icenowy@aosc.io>
18013 S:      Maintained
18014 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18015 F:      drivers/regulator/sy8106a-regulator.c
18016
18017 SYNC FILE FRAMEWORK
18018 M:      Sumit Semwal <sumit.semwal@linaro.org>
18019 R:      Gustavo Padovan <gustavo@padovan.org>
18020 L:      linux-media@vger.kernel.org
18021 L:      dri-devel@lists.freedesktop.org
18022 S:      Maintained
18023 T:      git git://anongit.freedesktop.org/drm/drm-misc
18024 F:      Documentation/driver-api/sync_file.rst
18025 F:      drivers/dma-buf/dma-fence*
18026 F:      drivers/dma-buf/sw_sync.c
18027 F:      drivers/dma-buf/sync_*
18028 F:      include/linux/sync_file.h
18029 F:      include/uapi/linux/sync_file.h
18030
18031 SYNOPSYS ARC ARCHITECTURE
18032 M:      Vineet Gupta <vgupta@kernel.org>
18033 L:      linux-snps-arc@lists.infradead.org
18034 S:      Supported
18035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18036 F:      Documentation/devicetree/bindings/arc/*
18037 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18038 F:      arch/arc/
18039 F:      drivers/clocksource/arc_timer.c
18040 F:      drivers/tty/serial/arc_uart.c
18041
18042 SYNOPSYS ARC HSDK SDP pll clock driver
18043 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18044 S:      Supported
18045 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18046 F:      drivers/clk/clk-hsdk-pll.c
18047
18048 SYNOPSYS ARC SDP clock driver
18049 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18050 S:      Supported
18051 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18052 F:      drivers/clk/axs10x/*
18053
18054 SYNOPSYS ARC SDP platform support
18055 M:      Alexey Brodkin <abrodkin@synopsys.com>
18056 S:      Supported
18057 F:      Documentation/devicetree/bindings/arc/axs10*
18058 F:      arch/arc/boot/dts/ax*
18059 F:      arch/arc/plat-axs10x
18060
18061 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18062 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18063 S:      Supported
18064 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18065 F:      drivers/reset/reset-axs10x.c
18066
18067 SYNOPSYS CREG GPIO DRIVER
18068 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18069 S:      Maintained
18070 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18071 F:      drivers/gpio/gpio-creg-snps.c
18072
18073 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18074 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18075 S:      Maintained
18076 F:      drivers/tty/serial/8250/8250_dw.c
18077 F:      drivers/tty/serial/8250/8250_dwlib.*
18078 F:      drivers/tty/serial/8250/8250_lpss.c
18079
18080 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18081 M:      Hoan Tran <hoan@os.amperecomputing.com>
18082 M:      Serge Semin <fancer.lancer@gmail.com>
18083 L:      linux-gpio@vger.kernel.org
18084 S:      Maintained
18085 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18086 F:      drivers/gpio/gpio-dwapb.c
18087
18088 SYNOPSYS DESIGNWARE APB SSI DRIVER
18089 M:      Serge Semin <fancer.lancer@gmail.com>
18090 L:      linux-spi@vger.kernel.org
18091 S:      Supported
18092 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18093 F:      drivers/spi/spi-dw*
18094
18095 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18096 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18097 S:      Maintained
18098 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18099 F:      drivers/dma/dw-axi-dmac/
18100
18101 SYNOPSYS DESIGNWARE DMAC DRIVER
18102 M:      Viresh Kumar <vireshk@kernel.org>
18103 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18104 S:      Maintained
18105 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18106 F:      drivers/dma/dw/
18107 F:      include/dt-bindings/dma/dw-dmac.h
18108 F:      include/linux/dma/dw.h
18109 F:      include/linux/platform_data/dma-dw.h
18110
18111 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18112 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18113 L:      netdev@vger.kernel.org
18114 S:      Supported
18115 F:      drivers/net/ethernet/synopsys/
18116
18117 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18118 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18119 L:      netdev@vger.kernel.org
18120 S:      Supported
18121 F:      drivers/net/pcs/pcs-xpcs.c
18122 F:      drivers/net/pcs/pcs-xpcs.h
18123 F:      include/linux/pcs/pcs-xpcs.h
18124
18125 SYNOPSYS DESIGNWARE I2C DRIVER
18126 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18127 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18128 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18129 L:      linux-i2c@vger.kernel.org
18130 S:      Maintained
18131 F:      drivers/i2c/busses/i2c-designware-*
18132
18133 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18134 M:      Jaehoon Chung <jh80.chung@samsung.com>
18135 L:      linux-mmc@vger.kernel.org
18136 S:      Maintained
18137 F:      drivers/mmc/host/dw_mmc*
18138
18139 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18140 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18141 S:      Supported
18142 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18143 F:      drivers/reset/reset-hsdk.c
18144 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18145
18146 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18147 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18148 M:      Manjunath M B <manjumb@synopsys.com>
18149 L:      linux-mmc@vger.kernel.org
18150 S:      Maintained
18151 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18152
18153 SYSTEM CONFIGURATION (SYSCON)
18154 M:      Lee Jones <lee.jones@linaro.org>
18155 M:      Arnd Bergmann <arnd@arndb.de>
18156 S:      Supported
18157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18158 F:      drivers/mfd/syscon.c
18159
18160 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18161 M:      Sudeep Holla <sudeep.holla@arm.com>
18162 R:      Cristian Marussi <cristian.marussi@arm.com>
18163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18164 S:      Maintained
18165 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18166 F:      drivers/clk/clk-sc[mp]i.c
18167 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18168 F:      drivers/firmware/arm_scmi/
18169 F:      drivers/firmware/arm_scpi.c
18170 F:      drivers/regulator/scmi-regulator.c
18171 F:      drivers/reset/reset-scmi.c
18172 F:      include/linux/sc[mp]i_protocol.h
18173 F:      include/trace/events/scmi.h
18174 F:      include/uapi/linux/virtio_scmi.h
18175
18176 SYSTEM RESET/SHUTDOWN DRIVERS
18177 M:      Sebastian Reichel <sre@kernel.org>
18178 L:      linux-pm@vger.kernel.org
18179 S:      Maintained
18180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18181 F:      Documentation/devicetree/bindings/power/reset/
18182 F:      drivers/power/reset/
18183
18184 SYSTEM TRACE MODULE CLASS
18185 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18186 S:      Maintained
18187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18188 F:      Documentation/trace/stm.rst
18189 F:      drivers/hwtracing/stm/
18190 F:      include/linux/stm.h
18191 F:      include/uapi/linux/stm.h
18192
18193 SYSTEM76 ACPI DRIVER
18194 M:      Jeremy Soller <jeremy@system76.com>
18195 M:      System76 Product Development <productdev@system76.com>
18196 L:      platform-driver-x86@vger.kernel.org
18197 S:      Maintained
18198 F:      drivers/platform/x86/system76_acpi.c
18199
18200 SYSV FILESYSTEM
18201 M:      Christoph Hellwig <hch@infradead.org>
18202 S:      Maintained
18203 F:      Documentation/filesystems/sysv-fs.rst
18204 F:      fs/sysv/
18205 F:      include/linux/sysv_fs.h
18206
18207 TASKSTATS STATISTICS INTERFACE
18208 M:      Balbir Singh <bsingharora@gmail.com>
18209 S:      Maintained
18210 F:      Documentation/accounting/taskstats*
18211 F:      include/linux/taskstats*
18212 F:      kernel/taskstats.c
18213
18214 TC subsystem
18215 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18216 M:      Cong Wang <xiyou.wangcong@gmail.com>
18217 M:      Jiri Pirko <jiri@resnulli.us>
18218 L:      netdev@vger.kernel.org
18219 S:      Maintained
18220 F:      include/net/pkt_cls.h
18221 F:      include/net/pkt_sched.h
18222 F:      include/net/tc_act/
18223 F:      include/uapi/linux/pkt_cls.h
18224 F:      include/uapi/linux/pkt_sched.h
18225 F:      include/uapi/linux/tc_act/
18226 F:      include/uapi/linux/tc_ematch/
18227 F:      net/sched/
18228
18229 TC90522 MEDIA DRIVER
18230 M:      Akihiro Tsukada <tskd08@gmail.com>
18231 L:      linux-media@vger.kernel.org
18232 S:      Odd Fixes
18233 F:      drivers/media/dvb-frontends/tc90522*
18234
18235 TCP LOW PRIORITY MODULE
18236 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18237 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18238 S:      Maintained
18239 W:      http://tcp-lp-mod.sourceforge.net/
18240 F:      net/ipv4/tcp_lp.c
18241
18242 TDA10071 MEDIA DRIVER
18243 M:      Antti Palosaari <crope@iki.fi>
18244 L:      linux-media@vger.kernel.org
18245 S:      Maintained
18246 W:      https://linuxtv.org
18247 W:      http://palosaari.fi/linux/
18248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18249 T:      git git://linuxtv.org/anttip/media_tree.git
18250 F:      drivers/media/dvb-frontends/tda10071*
18251
18252 TDA18212 MEDIA DRIVER
18253 M:      Antti Palosaari <crope@iki.fi>
18254 L:      linux-media@vger.kernel.org
18255 S:      Maintained
18256 W:      https://linuxtv.org
18257 W:      http://palosaari.fi/linux/
18258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18259 T:      git git://linuxtv.org/anttip/media_tree.git
18260 F:      drivers/media/tuners/tda18212*
18261
18262 TDA18218 MEDIA DRIVER
18263 M:      Antti Palosaari <crope@iki.fi>
18264 L:      linux-media@vger.kernel.org
18265 S:      Maintained
18266 W:      https://linuxtv.org
18267 W:      http://palosaari.fi/linux/
18268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18269 T:      git git://linuxtv.org/anttip/media_tree.git
18270 F:      drivers/media/tuners/tda18218*
18271
18272 TDA18250 MEDIA DRIVER
18273 M:      Olli Salonen <olli.salonen@iki.fi>
18274 L:      linux-media@vger.kernel.org
18275 S:      Maintained
18276 W:      https://linuxtv.org
18277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18278 T:      git git://linuxtv.org/media_tree.git
18279 F:      drivers/media/tuners/tda18250*
18280
18281 TDA18271 MEDIA DRIVER
18282 M:      Michael Krufky <mkrufky@linuxtv.org>
18283 L:      linux-media@vger.kernel.org
18284 S:      Maintained
18285 W:      https://linuxtv.org
18286 W:      http://github.com/mkrufky
18287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18288 T:      git git://linuxtv.org/mkrufky/tuners.git
18289 F:      drivers/media/tuners/tda18271*
18290
18291 TDA1997x MEDIA DRIVER
18292 M:      Tim Harvey <tharvey@gateworks.com>
18293 L:      linux-media@vger.kernel.org
18294 S:      Maintained
18295 W:      https://linuxtv.org
18296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18297 F:      drivers/media/i2c/tda1997x.*
18298
18299 TDA827x MEDIA DRIVER
18300 M:      Michael Krufky <mkrufky@linuxtv.org>
18301 L:      linux-media@vger.kernel.org
18302 S:      Maintained
18303 W:      https://linuxtv.org
18304 W:      http://github.com/mkrufky
18305 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18306 T:      git git://linuxtv.org/mkrufky/tuners.git
18307 F:      drivers/media/tuners/tda8290.*
18308
18309 TDA8290 MEDIA DRIVER
18310 M:      Michael Krufky <mkrufky@linuxtv.org>
18311 L:      linux-media@vger.kernel.org
18312 S:      Maintained
18313 W:      https://linuxtv.org
18314 W:      http://github.com/mkrufky
18315 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18316 T:      git git://linuxtv.org/mkrufky/tuners.git
18317 F:      drivers/media/tuners/tda8290.*
18318
18319 TDA9840 MEDIA DRIVER
18320 M:      Hans Verkuil <hverkuil@xs4all.nl>
18321 L:      linux-media@vger.kernel.org
18322 S:      Maintained
18323 W:      https://linuxtv.org
18324 T:      git git://linuxtv.org/media_tree.git
18325 F:      drivers/media/i2c/tda9840*
18326
18327 TEA5761 TUNER DRIVER
18328 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18329 L:      linux-media@vger.kernel.org
18330 S:      Odd fixes
18331 W:      https://linuxtv.org
18332 T:      git git://linuxtv.org/media_tree.git
18333 F:      drivers/media/tuners/tea5761.*
18334
18335 TEA5767 TUNER DRIVER
18336 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18337 L:      linux-media@vger.kernel.org
18338 S:      Maintained
18339 W:      https://linuxtv.org
18340 T:      git git://linuxtv.org/media_tree.git
18341 F:      drivers/media/tuners/tea5767.*
18342
18343 TEA6415C MEDIA DRIVER
18344 M:      Hans Verkuil <hverkuil@xs4all.nl>
18345 L:      linux-media@vger.kernel.org
18346 S:      Maintained
18347 W:      https://linuxtv.org
18348 T:      git git://linuxtv.org/media_tree.git
18349 F:      drivers/media/i2c/tea6415c*
18350
18351 TEA6420 MEDIA DRIVER
18352 M:      Hans Verkuil <hverkuil@xs4all.nl>
18353 L:      linux-media@vger.kernel.org
18354 S:      Maintained
18355 W:      https://linuxtv.org
18356 T:      git git://linuxtv.org/media_tree.git
18357 F:      drivers/media/i2c/tea6420*
18358
18359 TEAM DRIVER
18360 M:      Jiri Pirko <jiri@resnulli.us>
18361 L:      netdev@vger.kernel.org
18362 S:      Supported
18363 F:      drivers/net/team/
18364 F:      include/linux/if_team.h
18365 F:      include/uapi/linux/if_team.h
18366
18367 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18368 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18369 S:      Maintained
18370 F:      arch/x86/platform/ts5500/
18371
18372 TECHNOTREND USB IR RECEIVER
18373 M:      Sean Young <sean@mess.org>
18374 L:      linux-media@vger.kernel.org
18375 S:      Maintained
18376 F:      drivers/media/rc/ttusbir.c
18377
18378 TECHWELL TW9910 VIDEO DECODER
18379 L:      linux-media@vger.kernel.org
18380 S:      Orphan
18381 F:      drivers/media/i2c/tw9910.c
18382 F:      include/media/i2c/tw9910.h
18383
18384 TEE SUBSYSTEM
18385 M:      Jens Wiklander <jens.wiklander@linaro.org>
18386 R:      Sumit Garg <sumit.garg@linaro.org>
18387 L:      op-tee@lists.trustedfirmware.org
18388 S:      Maintained
18389 F:      Documentation/staging/tee.rst
18390 F:      drivers/tee/
18391 F:      include/linux/tee_drv.h
18392 F:      include/uapi/linux/tee.h
18393
18394 TEGRA ARCHITECTURE SUPPORT
18395 M:      Thierry Reding <thierry.reding@gmail.com>
18396 M:      Jonathan Hunter <jonathanh@nvidia.com>
18397 L:      linux-tegra@vger.kernel.org
18398 S:      Supported
18399 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18401 N:      [^a-z]tegra
18402
18403 TEGRA CLOCK DRIVER
18404 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18405 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18406 S:      Supported
18407 F:      drivers/clk/tegra/
18408
18409 TEGRA DMA DRIVERS
18410 M:      Laxman Dewangan <ldewangan@nvidia.com>
18411 M:      Jon Hunter <jonathanh@nvidia.com>
18412 S:      Supported
18413 F:      drivers/dma/tegra*
18414
18415 TEGRA I2C DRIVER
18416 M:      Laxman Dewangan <ldewangan@nvidia.com>
18417 R:      Dmitry Osipenko <digetx@gmail.com>
18418 S:      Supported
18419 F:      drivers/i2c/busses/i2c-tegra.c
18420
18421 TEGRA IOMMU DRIVERS
18422 M:      Thierry Reding <thierry.reding@gmail.com>
18423 R:      Krishna Reddy <vdumpa@nvidia.com>
18424 L:      linux-tegra@vger.kernel.org
18425 S:      Supported
18426 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18427 F:      drivers/iommu/tegra*
18428
18429 TEGRA KBC DRIVER
18430 M:      Laxman Dewangan <ldewangan@nvidia.com>
18431 S:      Supported
18432 F:      drivers/input/keyboard/tegra-kbc.c
18433
18434 TEGRA NAND DRIVER
18435 M:      Stefan Agner <stefan@agner.ch>
18436 M:      Lucas Stach <dev@lynxeye.de>
18437 S:      Maintained
18438 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18439 F:      drivers/mtd/nand/raw/tegra_nand.c
18440
18441 TEGRA PWM DRIVER
18442 M:      Thierry Reding <thierry.reding@gmail.com>
18443 S:      Supported
18444 F:      drivers/pwm/pwm-tegra.c
18445
18446 TEGRA SERIAL DRIVER
18447 M:      Laxman Dewangan <ldewangan@nvidia.com>
18448 S:      Supported
18449 F:      drivers/tty/serial/serial-tegra.c
18450
18451 TEGRA SPI DRIVER
18452 M:      Laxman Dewangan <ldewangan@nvidia.com>
18453 S:      Supported
18454 F:      drivers/spi/spi-tegra*
18455
18456 TEGRA QUAD SPI DRIVER
18457 M:      Thierry Reding <thierry.reding@gmail.com>
18458 M:      Jonathan Hunter <jonathanh@nvidia.com>
18459 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18460 L:      linux-tegra@vger.kernel.org
18461 S:      Maintained
18462 F:      drivers/spi/spi-tegra210-quad.c
18463
18464 TEGRA VIDEO DRIVER
18465 M:      Thierry Reding <thierry.reding@gmail.com>
18466 M:      Jonathan Hunter <jonathanh@nvidia.com>
18467 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18468 L:      linux-media@vger.kernel.org
18469 L:      linux-tegra@vger.kernel.org
18470 S:      Maintained
18471 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18472 F:      drivers/staging/media/tegra-video/
18473
18474 TEGRA XUSB PADCTL DRIVER
18475 M:      JC Kuo <jckuo@nvidia.com>
18476 S:      Supported
18477 F:      drivers/phy/tegra/xusb*
18478
18479 TEHUTI ETHERNET DRIVER
18480 M:      Andy Gospodarek <andy@greyhouse.net>
18481 L:      netdev@vger.kernel.org
18482 S:      Supported
18483 F:      drivers/net/ethernet/tehuti/*
18484
18485 TELECOM CLOCK DRIVER FOR MCPL0010
18486 M:      Mark Gross <mark.gross@intel.com>
18487 S:      Supported
18488 F:      drivers/char/tlclk.c
18489
18490 TEMPO SEMICONDUCTOR DRIVERS
18491 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18492 S:      Maintained
18493 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18494 F:      sound/soc/codecs/tscs*.c
18495 F:      sound/soc/codecs/tscs*.h
18496
18497 TENSILICA XTENSA PORT (xtensa)
18498 M:      Chris Zankel <chris@zankel.net>
18499 M:      Max Filippov <jcmvbkbc@gmail.com>
18500 L:      linux-xtensa@linux-xtensa.org
18501 S:      Maintained
18502 T:      git git://github.com/czankel/xtensa-linux.git
18503 F:      arch/xtensa/
18504 F:      drivers/irqchip/irq-xtensa-*
18505
18506 TEXAS INSTRUMENTS ASoC DRIVERS
18507 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18509 S:      Maintained
18510 F:      sound/soc/ti/
18511
18512 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18513 M:      Ricardo Ribalda <ribalda@kernel.org>
18514 L:      linux-iio@vger.kernel.org
18515 S:      Supported
18516 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18517 F:      drivers/iio/dac/ti-dac7612.c
18518
18519 TEXAS INSTRUMENTS DMA DRIVERS
18520 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18521 L:      dmaengine@vger.kernel.org
18522 S:      Maintained
18523 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18524 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18525 F:      Documentation/devicetree/bindings/dma/ti/
18526 F:      drivers/dma/ti/
18527 X:      drivers/dma/ti/cppi41.c
18528 F:      include/linux/dma/k3-udma-glue.h
18529 F:      include/linux/dma/ti-cppi5.h
18530 F:      include/linux/dma/k3-psil.h
18531
18532 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18533 M:      Nishanth Menon <nm@ti.com>
18534 M:      Tero Kristo <kristo@kernel.org>
18535 M:      Santosh Shilimkar <ssantosh@kernel.org>
18536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18537 S:      Maintained
18538 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18539 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18540 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18541 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18542 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18543 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18544 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18545 F:      drivers/clk/keystone/sci-clk.c
18546 F:      drivers/firmware/ti_sci*
18547 F:      drivers/irqchip/irq-ti-sci-inta.c
18548 F:      drivers/irqchip/irq-ti-sci-intr.c
18549 F:      drivers/reset/reset-ti-sci.c
18550 F:      drivers/soc/ti/ti_sci_inta_msi.c
18551 F:      drivers/soc/ti/ti_sci_pm_domains.c
18552 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18553 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18554 F:      include/linux/soc/ti/ti_sci_protocol.h
18555
18556 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18557 M:      Robert Marko <robert.marko@sartura.hr>
18558 M:      Luka Perkov <luka.perkov@sartura.hr>
18559 L:      linux-hwmon@vger.kernel.org
18560 S:      Maintained
18561 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18562 F:      Documentation/hwmon/tps23861.rst
18563 F:      drivers/hwmon/tps23861.c
18564
18565 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18566 M:      Puranjay Mohan <puranjay12@gmail.com>
18567 L:      linux-iio@vger.kernel.org
18568 S:      Supported
18569 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18570 F:      drivers/iio/temperature/tmp117.c
18571
18572 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18573 M:      Hans Verkuil <hverkuil@xs4all.nl>
18574 L:      linux-media@vger.kernel.org
18575 S:      Maintained
18576 W:      https://linuxtv.org
18577 T:      git git://linuxtv.org/media_tree.git
18578 F:      drivers/media/radio/radio-raremono.c
18579
18580 THERMAL
18581 M:      Rafael J. Wysocki <rafael@kernel.org>
18582 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18583 R:      Amit Kucheria <amitk@kernel.org>
18584 R:      Zhang Rui <rui.zhang@intel.com>
18585 L:      linux-pm@vger.kernel.org
18586 S:      Supported
18587 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18589 F:      Documentation/devicetree/bindings/thermal/
18590 F:      drivers/thermal/
18591 F:      include/linux/cpu_cooling.h
18592 F:      include/linux/thermal.h
18593 F:      include/uapi/linux/thermal.h
18594 F:      tools/thermal/
18595
18596 THERMAL DRIVER FOR AMLOGIC SOCS
18597 M:      Guillaume La Roque <glaroque@baylibre.com>
18598 L:      linux-pm@vger.kernel.org
18599 L:      linux-amlogic@lists.infradead.org
18600 S:      Supported
18601 W:      http://linux-meson.com/
18602 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18603 F:      drivers/thermal/amlogic_thermal.c
18604
18605 THERMAL/CPU_COOLING
18606 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18607 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18608 M:      Viresh Kumar <viresh.kumar@linaro.org>
18609 R:      Lukasz Luba <lukasz.luba@arm.com>
18610 L:      linux-pm@vger.kernel.org
18611 S:      Supported
18612 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18613 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18614 F:      drivers/thermal/cpufreq_cooling.c
18615 F:      drivers/thermal/cpuidle_cooling.c
18616 F:      include/linux/cpu_cooling.h
18617
18618 THERMAL/POWER_ALLOCATOR
18619 M:      Lukasz Luba <lukasz.luba@arm.com>
18620 L:      linux-pm@vger.kernel.org
18621 S:      Maintained
18622 F:      Documentation/driver-api/thermal/power_allocator.rst
18623 F:      drivers/thermal/gov_power_allocator.c
18624 F:      include/trace/events/thermal_power_allocator.h
18625
18626 THINKPAD ACPI EXTRAS DRIVER
18627 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18628 L:      ibm-acpi-devel@lists.sourceforge.net
18629 L:      platform-driver-x86@vger.kernel.org
18630 S:      Maintained
18631 W:      http://ibm-acpi.sourceforge.net
18632 W:      http://thinkwiki.org/wiki/Ibm-acpi
18633 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18634 F:      drivers/platform/x86/thinkpad_acpi.c
18635
18636 THINKPAD LMI DRIVER
18637 M:      Mark Pearson <markpearson@lenovo.com>
18638 L:      platform-driver-x86@vger.kernel.org
18639 S:      Maintained
18640 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18641 F:      drivers/platform/x86/think-lmi.?
18642
18643 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18644 M:      Isaac Hazan <isaac.hazan@intel.com>
18645 L:      linux-usb@vger.kernel.org
18646 S:      Maintained
18647 F:      drivers/thunderbolt/dma_test.c
18648
18649 THUNDERBOLT DRIVER
18650 M:      Andreas Noever <andreas.noever@gmail.com>
18651 M:      Michael Jamet <michael.jamet@intel.com>
18652 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18653 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18654 L:      linux-usb@vger.kernel.org
18655 S:      Maintained
18656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18657 F:      Documentation/admin-guide/thunderbolt.rst
18658 F:      drivers/thunderbolt/
18659 F:      include/linux/thunderbolt.h
18660
18661 THUNDERBOLT NETWORK DRIVER
18662 M:      Michael Jamet <michael.jamet@intel.com>
18663 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18664 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18665 L:      netdev@vger.kernel.org
18666 S:      Maintained
18667 F:      drivers/net/thunderbolt.c
18668
18669 THUNDERX GPIO DRIVER
18670 M:      Robert Richter <rric@kernel.org>
18671 S:      Odd Fixes
18672 F:      drivers/gpio/gpio-thunderx.c
18673
18674 TI ADS131E0X ADC SERIES DRIVER
18675 M:      Tomislav Denis <tomislav.denis@avl.com>
18676 L:      linux-iio@vger.kernel.org
18677 S:      Maintained
18678 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18679 F:      drivers/iio/adc/ti-ads131e08.c
18680
18681 TI AM437X VPFE DRIVER
18682 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18683 L:      linux-media@vger.kernel.org
18684 S:      Maintained
18685 W:      https://linuxtv.org
18686 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18687 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18688 F:      drivers/media/platform/am437x/
18689
18690 TI BANDGAP AND THERMAL DRIVER
18691 M:      Eduardo Valentin <edubezval@gmail.com>
18692 M:      Keerthy <j-keerthy@ti.com>
18693 L:      linux-pm@vger.kernel.org
18694 L:      linux-omap@vger.kernel.org
18695 S:      Maintained
18696 F:      drivers/thermal/ti-soc-thermal/
18697
18698 TI BQ27XXX POWER SUPPLY DRIVER
18699 F:      drivers/power/supply/bq27xxx_battery.c
18700 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18701 F:      include/linux/power/bq27xxx_battery.h
18702
18703 TI CDCE706 CLOCK DRIVER
18704 M:      Max Filippov <jcmvbkbc@gmail.com>
18705 S:      Maintained
18706 F:      drivers/clk/clk-cdce706.c
18707
18708 TI CLOCK DRIVER
18709 M:      Tero Kristo <kristo@kernel.org>
18710 L:      linux-omap@vger.kernel.org
18711 S:      Odd Fixes
18712 F:      drivers/clk/ti/
18713 F:      include/linux/clk/ti.h
18714
18715 TI DAVINCI MACHINE SUPPORT
18716 M:      Sekhar Nori <nsekhar@ti.com>
18717 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18719 S:      Supported
18720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18721 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18722 F:      arch/arm/boot/dts/da850*
18723 F:      arch/arm/mach-davinci/
18724 F:      drivers/i2c/busses/i2c-davinci.c
18725
18726 TI DAVINCI SERIES CLOCK DRIVER
18727 M:      David Lechner <david@lechnology.com>
18728 R:      Sekhar Nori <nsekhar@ti.com>
18729 S:      Maintained
18730 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18731 F:      drivers/clk/davinci/
18732
18733 TI DAVINCI SERIES GPIO DRIVER
18734 M:      Keerthy <j-keerthy@ti.com>
18735 L:      linux-gpio@vger.kernel.org
18736 S:      Maintained
18737 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18738 F:      drivers/gpio/gpio-davinci.c
18739
18740 TI DAVINCI SERIES MEDIA DRIVER
18741 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18742 L:      linux-media@vger.kernel.org
18743 S:      Maintained
18744 W:      https://linuxtv.org
18745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18746 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18747 F:      drivers/media/platform/davinci/
18748 F:      include/media/davinci/
18749
18750 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18751 R:      David Lechner <david@lechnology.com>
18752 L:      linux-iio@vger.kernel.org
18753 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18754 F:      drivers/counter/ti-eqep.c
18755
18756 TI ETHERNET SWITCH DRIVER (CPSW)
18757 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18758 L:      linux-omap@vger.kernel.org
18759 L:      netdev@vger.kernel.org
18760 S:      Maintained
18761 F:      drivers/net/ethernet/ti/cpsw*
18762 F:      drivers/net/ethernet/ti/davinci*
18763
18764 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18765 M:      Alex Dubov <oakad@yahoo.com>
18766 S:      Maintained
18767 W:      http://tifmxx.berlios.de/
18768 F:      drivers/memstick/host/tifm_ms.c
18769 F:      drivers/misc/tifm*
18770 F:      drivers/mmc/host/tifm_sd.c
18771 F:      include/linux/tifm.h
18772
18773 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18774 M:      Santosh Shilimkar <ssantosh@kernel.org>
18775 L:      linux-kernel@vger.kernel.org
18776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18777 S:      Maintained
18778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18779 F:      drivers/soc/ti/*
18780
18781 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18782 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18783 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18784 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18785 S:      Maintained
18786 F:      sound/soc/codecs/isabelle*
18787 F:      sound/soc/codecs/lm49453*
18788
18789 TI PCM3060 ASoC CODEC DRIVER
18790 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18792 S:      Maintained
18793 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18794 F:      sound/soc/codecs/pcm3060*
18795
18796 TI TAS571X FAMILY ASoC CODEC DRIVER
18797 M:      Kevin Cernekee <cernekee@chromium.org>
18798 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18799 S:      Odd Fixes
18800 F:      sound/soc/codecs/tas571x*
18801
18802 TI TRF7970A NFC DRIVER
18803 M:      Mark Greer <mgreer@animalcreek.com>
18804 L:      linux-wireless@vger.kernel.org
18805 L:      linux-nfc@lists.01.org (subscribers-only)
18806 S:      Supported
18807 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18808 F:      drivers/nfc/trf7970a.c
18809
18810 TI TSC2046 ADC DRIVER
18811 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18812 R:      kernel@pengutronix.de
18813 L:      linux-iio@vger.kernel.org
18814 S:      Maintained
18815 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18816 F:      drivers/iio/adc/ti-tsc2046.c
18817
18818 TI TWL4030 SERIES SOC CODEC DRIVER
18819 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18820 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18821 S:      Maintained
18822 F:      sound/soc/codecs/twl4030*
18823
18824 TI VPE/CAL DRIVERS
18825 M:      Benoit Parrot <bparrot@ti.com>
18826 L:      linux-media@vger.kernel.org
18827 S:      Maintained
18828 W:      http://linuxtv.org/
18829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18830 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18831 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18832 F:      drivers/media/platform/ti-vpe/
18833
18834 TI WILINK WIRELESS DRIVERS
18835 L:      linux-wireless@vger.kernel.org
18836 S:      Orphan
18837 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18838 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18840 F:      drivers/net/wireless/ti/
18841 F:      include/linux/wl12xx.h
18842
18843 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18844 M:      John Stultz <john.stultz@linaro.org>
18845 M:      Thomas Gleixner <tglx@linutronix.de>
18846 R:      Stephen Boyd <sboyd@kernel.org>
18847 L:      linux-kernel@vger.kernel.org
18848 S:      Supported
18849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18850 F:      include/linux/clocksource.h
18851 F:      include/linux/time.h
18852 F:      include/linux/timex.h
18853 F:      include/uapi/linux/time.h
18854 F:      include/uapi/linux/timex.h
18855 F:      kernel/time/alarmtimer.c
18856 F:      kernel/time/clocksource.c
18857 F:      kernel/time/ntp.c
18858 F:      kernel/time/time*.c
18859 F:      tools/testing/selftests/timers/
18860
18861 TIPC NETWORK LAYER
18862 M:      Jon Maloy <jmaloy@redhat.com>
18863 M:      Ying Xue <ying.xue@windriver.com>
18864 L:      netdev@vger.kernel.org (core kernel code)
18865 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18866 S:      Maintained
18867 W:      http://tipc.sourceforge.net/
18868 F:      include/uapi/linux/tipc*.h
18869 F:      net/tipc/
18870
18871 TLAN NETWORK DRIVER
18872 M:      Samuel Chessman <chessman@tux.org>
18873 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18874 S:      Maintained
18875 W:      http://sourceforge.net/projects/tlan/
18876 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18877 F:      drivers/net/ethernet/ti/tlan.*
18878
18879 TM6000 VIDEO4LINUX DRIVER
18880 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18881 L:      linux-media@vger.kernel.org
18882 S:      Odd fixes
18883 W:      https://linuxtv.org
18884 T:      git git://linuxtv.org/media_tree.git
18885 F:      Documentation/admin-guide/media/tm6000*
18886 F:      drivers/media/usb/tm6000/
18887
18888 TMIO/SDHI MMC DRIVER
18889 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18890 L:      linux-mmc@vger.kernel.org
18891 S:      Supported
18892 F:      drivers/mmc/host/renesas_sdhi*
18893 F:      drivers/mmc/host/tmio_mmc*
18894 F:      include/linux/mfd/tmio.h
18895
18896 TMP401 HARDWARE MONITOR DRIVER
18897 M:      Guenter Roeck <linux@roeck-us.net>
18898 L:      linux-hwmon@vger.kernel.org
18899 S:      Maintained
18900 F:      Documentation/hwmon/tmp401.rst
18901 F:      drivers/hwmon/tmp401.c
18902
18903 TMP513 HARDWARE MONITOR DRIVER
18904 M:      Eric Tremblay <etremblay@distech-controls.com>
18905 L:      linux-hwmon@vger.kernel.org
18906 S:      Maintained
18907 F:      Documentation/hwmon/tmp513.rst
18908 F:      drivers/hwmon/tmp513.c
18909
18910 TMPFS (SHMEM FILESYSTEM)
18911 M:      Hugh Dickins <hughd@google.com>
18912 L:      linux-mm@kvack.org
18913 S:      Maintained
18914 F:      include/linux/shmem_fs.h
18915 F:      mm/shmem.c
18916
18917 TOMOYO SECURITY MODULE
18918 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
18919 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
18920 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
18921 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
18922 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
18923 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
18924 S:      Maintained
18925 W:      https://tomoyo.osdn.jp/
18926 F:      security/tomoyo/
18927
18928 TOPSTAR LAPTOP EXTRAS DRIVER
18929 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18930 L:      platform-driver-x86@vger.kernel.org
18931 S:      Maintained
18932 F:      drivers/platform/x86/topstar-laptop.c
18933
18934 TORTURE-TEST MODULES
18935 M:      Davidlohr Bueso <dave@stgolabs.net>
18936 M:      "Paul E. McKenney" <paulmck@kernel.org>
18937 M:      Josh Triplett <josh@joshtriplett.org>
18938 L:      linux-kernel@vger.kernel.org
18939 S:      Supported
18940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18941 F:      Documentation/RCU/torture.rst
18942 F:      kernel/locking/locktorture.c
18943 F:      kernel/rcu/rcuscale.c
18944 F:      kernel/rcu/rcutorture.c
18945 F:      kernel/rcu/refscale.c
18946 F:      kernel/torture.c
18947
18948 TOSHIBA ACPI EXTRAS DRIVER
18949 M:      Azael Avalos <coproscefalo@gmail.com>
18950 L:      platform-driver-x86@vger.kernel.org
18951 S:      Maintained
18952 F:      drivers/platform/x86/toshiba_acpi.c
18953
18954 TOSHIBA BLUETOOTH DRIVER
18955 M:      Azael Avalos <coproscefalo@gmail.com>
18956 L:      platform-driver-x86@vger.kernel.org
18957 S:      Maintained
18958 F:      drivers/platform/x86/toshiba_bluetooth.c
18959
18960 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
18961 M:      Azael Avalos <coproscefalo@gmail.com>
18962 L:      platform-driver-x86@vger.kernel.org
18963 S:      Maintained
18964 F:      drivers/platform/x86/toshiba_haps.c
18965
18966 TOSHIBA SMM DRIVER
18967 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
18968 S:      Maintained
18969 W:      http://www.buzzard.org.uk/toshiba/
18970 F:      drivers/char/toshiba.c
18971 F:      include/linux/toshiba.h
18972 F:      include/uapi/linux/toshiba.h
18973
18974 TOSHIBA TC358743 DRIVER
18975 M:      Mats Randgaard <matrandg@cisco.com>
18976 L:      linux-media@vger.kernel.org
18977 S:      Maintained
18978 F:      drivers/media/i2c/tc358743*
18979 F:      include/media/i2c/tc358743.h
18980
18981 TOSHIBA WMI HOTKEYS DRIVER
18982 M:      Azael Avalos <coproscefalo@gmail.com>
18983 L:      platform-driver-x86@vger.kernel.org
18984 S:      Maintained
18985 F:      drivers/platform/x86/toshiba-wmi.c
18986
18987 TPM DEVICE DRIVER
18988 M:      Peter Huewe <peterhuewe@gmx.de>
18989 M:      Jarkko Sakkinen <jarkko@kernel.org>
18990 R:      Jason Gunthorpe <jgg@ziepe.ca>
18991 L:      linux-integrity@vger.kernel.org
18992 S:      Maintained
18993 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
18994 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
18995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
18996 F:      drivers/char/tpm/
18997
18998 TRACING
18999 M:      Steven Rostedt <rostedt@goodmis.org>
19000 M:      Ingo Molnar <mingo@redhat.com>
19001 S:      Maintained
19002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19003 F:      Documentation/trace/ftrace.rst
19004 F:      arch/*/*/*/ftrace.h
19005 F:      arch/*/kernel/ftrace.c
19006 F:      fs/tracefs/
19007 F:      include/*/ftrace.h
19008 F:      include/linux/trace*.h
19009 F:      include/trace/
19010 F:      kernel/trace/
19011 F:      tools/testing/selftests/ftrace/
19012
19013 TRACING MMIO ACCESSES (MMIOTRACE)
19014 M:      Steven Rostedt <rostedt@goodmis.org>
19015 M:      Ingo Molnar <mingo@kernel.org>
19016 R:      Karol Herbst <karolherbst@gmail.com>
19017 R:      Pekka Paalanen <ppaalanen@gmail.com>
19018 L:      linux-kernel@vger.kernel.org
19019 L:      nouveau@lists.freedesktop.org
19020 S:      Maintained
19021 F:      arch/x86/mm/kmmio.c
19022 F:      arch/x86/mm/mmio-mod.c
19023 F:      arch/x86/mm/testmmiotrace.c
19024 F:      include/linux/mmiotrace.h
19025 F:      kernel/trace/trace_mmiotrace.c
19026
19027 TRACING OS NOISE / LATENCY TRACERS
19028 M:      Steven Rostedt <rostedt@goodmis.org>
19029 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19030 S:      Maintained
19031 F:      kernel/trace/trace_osnoise.c
19032 F:      include/trace/events/osnoise.h
19033 F:      kernel/trace/trace_hwlat.c
19034 F:      kernel/trace/trace_irqsoff.c
19035 F:      kernel/trace/trace_sched_wakeup.c
19036 F:      Documentation/trace/osnoise-tracer.rst
19037 F:      Documentation/trace/timerlat-tracer.rst
19038 F:      Documentation/trace/hwlat_detector.rst
19039 F:      arch/*/kernel/trace.c
19040
19041 TRADITIONAL CHINESE DOCUMENTATION
19042 M:      Hu Haowen <src.res@email.cn>
19043 L:      linux-doc-tw-discuss@lists.sourceforge.net
19044 S:      Maintained
19045 W:      https://github.com/srcres258/linux-doc
19046 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19047 F:      Documentation/translations/zh_TW/
19048
19049 TRIVIAL PATCHES
19050 M:      Jiri Kosina <trivial@kernel.org>
19051 S:      Maintained
19052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19053 K:      ^Subject:.*(?i)trivial
19054
19055 TTY LAYER
19056 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19057 M:      Jiri Slaby <jirislaby@kernel.org>
19058 S:      Supported
19059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19060 F:      Documentation/driver-api/serial/
19061 F:      drivers/tty/
19062 F:      drivers/tty/serial/serial_core.c
19063 F:      include/linux/selection.h
19064 F:      include/linux/serial.h
19065 F:      include/linux/serial_core.h
19066 F:      include/linux/sysrq.h
19067 F:      include/linux/tty*.h
19068 F:      include/linux/vt.h
19069 F:      include/linux/vt_*.h
19070 F:      include/uapi/linux/serial.h
19071 F:      include/uapi/linux/serial_core.h
19072 F:      include/uapi/linux/tty.h
19073
19074 TUA9001 MEDIA DRIVER
19075 M:      Antti Palosaari <crope@iki.fi>
19076 L:      linux-media@vger.kernel.org
19077 S:      Maintained
19078 W:      https://linuxtv.org
19079 W:      http://palosaari.fi/linux/
19080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19081 T:      git git://linuxtv.org/anttip/media_tree.git
19082 F:      drivers/media/tuners/tua9001*
19083
19084 TULIP NETWORK DRIVERS
19085 L:      netdev@vger.kernel.org
19086 L:      linux-parisc@vger.kernel.org
19087 S:      Orphan
19088 F:      drivers/net/ethernet/dec/tulip/
19089
19090 TUN/TAP driver
19091 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19092 S:      Maintained
19093 W:      http://vtun.sourceforge.net/tun
19094 F:      Documentation/networking/tuntap.rst
19095 F:      arch/um/os-Linux/drivers/
19096
19097 TURBOCHANNEL SUBSYSTEM
19098 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19099 M:      Ralf Baechle <ralf@linux-mips.org>
19100 L:      linux-mips@vger.kernel.org
19101 S:      Maintained
19102 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19103 F:      drivers/tc/
19104 F:      include/linux/tc.h
19105
19106 TURBOSTAT UTILITY
19107 M:      "Len Brown" <lenb@kernel.org>
19108 L:      linux-pm@vger.kernel.org
19109 S:      Supported
19110 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19111 B:      https://bugzilla.kernel.org
19112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19113 F:      tools/power/x86/turbostat/
19114
19115 TW5864 VIDEO4LINUX DRIVER
19116 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19117 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19118 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19119 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19120 L:      linux-media@vger.kernel.org
19121 S:      Supported
19122 F:      drivers/media/pci/tw5864/
19123
19124 TW68 VIDEO4LINUX DRIVER
19125 M:      Hans Verkuil <hverkuil@xs4all.nl>
19126 L:      linux-media@vger.kernel.org
19127 S:      Odd Fixes
19128 W:      https://linuxtv.org
19129 T:      git git://linuxtv.org/media_tree.git
19130 F:      drivers/media/pci/tw68/
19131
19132 TW686X VIDEO4LINUX DRIVER
19133 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19134 L:      linux-media@vger.kernel.org
19135 S:      Maintained
19136 W:      http://linuxtv.org
19137 T:      git git://linuxtv.org/media_tree.git
19138 F:      drivers/media/pci/tw686x/
19139
19140 UACCE ACCELERATOR FRAMEWORK
19141 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19142 M:      Zhou Wang <wangzhou1@hisilicon.com>
19143 L:      linux-accelerators@lists.ozlabs.org
19144 L:      linux-kernel@vger.kernel.org
19145 S:      Maintained
19146 F:      Documentation/ABI/testing/sysfs-driver-uacce
19147 F:      Documentation/misc-devices/uacce.rst
19148 F:      drivers/misc/uacce/
19149 F:      include/linux/uacce.h
19150 F:      include/uapi/misc/uacce/
19151
19152 UBI FILE SYSTEM (UBIFS)
19153 M:      Richard Weinberger <richard@nod.at>
19154 L:      linux-mtd@lists.infradead.org
19155 S:      Supported
19156 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19159 F:      Documentation/filesystems/ubifs-authentication.rst
19160 F:      Documentation/filesystems/ubifs.rst
19161 F:      fs/ubifs/
19162
19163 UCLINUX (M68KNOMMU AND COLDFIRE)
19164 M:      Greg Ungerer <gerg@linux-m68k.org>
19165 L:      linux-m68k@lists.linux-m68k.org
19166 L:      uclinux-dev@uclinux.org  (subscribers-only)
19167 S:      Maintained
19168 W:      http://www.linux-m68k.org/
19169 W:      http://www.uclinux.org/
19170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19171 F:      arch/m68k/*/*_no.*
19172 F:      arch/m68k/68*/
19173 F:      arch/m68k/coldfire/
19174 F:      arch/m68k/include/asm/*_no.*
19175
19176 UDF FILESYSTEM
19177 M:      Jan Kara <jack@suse.com>
19178 S:      Maintained
19179 F:      Documentation/filesystems/udf.rst
19180 F:      fs/udf/
19181
19182 UDRAW TABLET
19183 M:      Bastien Nocera <hadess@hadess.net>
19184 L:      linux-input@vger.kernel.org
19185 S:      Maintained
19186 F:      drivers/hid/hid-udraw-ps3.c
19187
19188 UFS FILESYSTEM
19189 M:      Evgeniy Dushistov <dushistov@mail.ru>
19190 S:      Maintained
19191 F:      Documentation/admin-guide/ufs.rst
19192 F:      fs/ufs/
19193
19194 UHID USERSPACE HID IO DRIVER
19195 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19196 L:      linux-input@vger.kernel.org
19197 S:      Maintained
19198 F:      drivers/hid/uhid.c
19199 F:      include/uapi/linux/uhid.h
19200
19201 ULPI BUS
19202 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19203 L:      linux-usb@vger.kernel.org
19204 S:      Maintained
19205 F:      drivers/usb/common/ulpi.c
19206 F:      include/linux/ulpi/
19207
19208 UNICODE SUBSYSTEM
19209 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19210 L:      linux-fsdevel@vger.kernel.org
19211 S:      Supported
19212 F:      fs/unicode/
19213
19214 UNIFDEF
19215 M:      Tony Finch <dot@dotat.at>
19216 S:      Maintained
19217 W:      http://dotat.at/prog/unifdef
19218 F:      scripts/unifdef.c
19219
19220 UNIFORM CDROM DRIVER
19221 M:      Phillip Potter <phil@philpotter.co.uk>
19222 S:      Maintained
19223 F:      Documentation/cdrom/
19224 F:      drivers/cdrom/cdrom.c
19225 F:      include/linux/cdrom.h
19226 F:      include/uapi/linux/cdrom.h
19227
19228 UNISYS S-PAR DRIVERS
19229 M:      David Kershner <david.kershner@unisys.com>
19230 L:      sparmaintainer@unisys.com (Unisys internal)
19231 S:      Supported
19232 F:      drivers/staging/unisys/
19233 F:      drivers/visorbus/
19234 F:      include/linux/visorbus.h
19235
19236 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19237 R:      Alim Akhtar <alim.akhtar@samsung.com>
19238 R:      Avri Altman <avri.altman@wdc.com>
19239 L:      linux-scsi@vger.kernel.org
19240 S:      Supported
19241 F:      Documentation/scsi/ufs.rst
19242 F:      drivers/scsi/ufs/
19243
19244 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19245 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19246 L:      linux-scsi@vger.kernel.org
19247 S:      Supported
19248 F:      drivers/scsi/ufs/*dwc*
19249
19250 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19251 M:      Stanley Chu <stanley.chu@mediatek.com>
19252 L:      linux-scsi@vger.kernel.org
19253 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19254 S:      Maintained
19255 F:      drivers/scsi/ufs/ufs-mediatek*
19256
19257 UNSORTED BLOCK IMAGES (UBI)
19258 M:      Richard Weinberger <richard@nod.at>
19259 L:      linux-mtd@lists.infradead.org
19260 S:      Supported
19261 W:      http://www.linux-mtd.infradead.org/
19262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19264 F:      drivers/mtd/ubi/
19265 F:      include/linux/mtd/ubi.h
19266 F:      include/uapi/mtd/ubi-user.h
19267
19268 USB "USBNET" DRIVER FRAMEWORK
19269 M:      Oliver Neukum <oneukum@suse.com>
19270 L:      netdev@vger.kernel.org
19271 S:      Maintained
19272 W:      http://www.linux-usb.org/usbnet
19273 F:      drivers/net/usb/usbnet.c
19274 F:      include/linux/usb/usbnet.h
19275
19276 USB ACM DRIVER
19277 M:      Oliver Neukum <oneukum@suse.com>
19278 L:      linux-usb@vger.kernel.org
19279 S:      Maintained
19280 F:      Documentation/usb/acm.rst
19281 F:      drivers/usb/class/cdc-acm.*
19282
19283 USB APPLE MFI FASTCHARGE DRIVER
19284 M:      Bastien Nocera <hadess@hadess.net>
19285 L:      linux-usb@vger.kernel.org
19286 S:      Maintained
19287 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19288
19289 USB AR5523 WIRELESS DRIVER
19290 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19291 L:      linux-wireless@vger.kernel.org
19292 S:      Maintained
19293 F:      drivers/net/wireless/ath/ar5523/
19294
19295 USB ATTACHED SCSI
19296 M:      Oliver Neukum <oneukum@suse.com>
19297 L:      linux-usb@vger.kernel.org
19298 L:      linux-scsi@vger.kernel.org
19299 S:      Maintained
19300 F:      drivers/usb/storage/uas.c
19301
19302 USB CDC ETHERNET DRIVER
19303 M:      Oliver Neukum <oliver@neukum.org>
19304 L:      linux-usb@vger.kernel.org
19305 S:      Maintained
19306 F:      drivers/net/usb/cdc_*.c
19307 F:      include/uapi/linux/usb/cdc.h
19308
19309 USB CHAOSKEY DRIVER
19310 M:      Keith Packard <keithp@keithp.com>
19311 L:      linux-usb@vger.kernel.org
19312 S:      Maintained
19313 F:      drivers/usb/misc/chaoskey.c
19314
19315 USB CYPRESS C67X00 DRIVER
19316 L:      linux-usb@vger.kernel.org
19317 S:      Orphan
19318 F:      drivers/usb/c67x00/
19319
19320 USB DAVICOM DM9601 DRIVER
19321 M:      Peter Korsgaard <peter@korsgaard.com>
19322 L:      netdev@vger.kernel.org
19323 S:      Maintained
19324 W:      http://www.linux-usb.org/usbnet
19325 F:      drivers/net/usb/dm9601.c
19326
19327 USB EHCI DRIVER
19328 M:      Alan Stern <stern@rowland.harvard.edu>
19329 L:      linux-usb@vger.kernel.org
19330 S:      Maintained
19331 F:      Documentation/usb/ehci.rst
19332 F:      drivers/usb/host/ehci*
19333
19334 USB GADGET/PERIPHERAL SUBSYSTEM
19335 M:      Felipe Balbi <balbi@kernel.org>
19336 L:      linux-usb@vger.kernel.org
19337 S:      Maintained
19338 W:      http://www.linux-usb.org/gadget
19339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19340 F:      drivers/usb/gadget/
19341 F:      include/linux/usb/gadget*
19342
19343 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19344 M:      Jiri Kosina <jikos@kernel.org>
19345 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19346 L:      linux-usb@vger.kernel.org
19347 S:      Maintained
19348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19349 F:      Documentation/hid/hiddev.rst
19350 F:      drivers/hid/usbhid/
19351
19352 USB INTEL XHCI ROLE MUX DRIVER
19353 M:      Hans de Goede <hdegoede@redhat.com>
19354 L:      linux-usb@vger.kernel.org
19355 S:      Maintained
19356 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19357
19358 USB IP DRIVER FOR HISILICON KIRIN 960
19359 M:      Yu Chen <chenyu56@huawei.com>
19360 M:      Binghui Wang <wangbinghui@hisilicon.com>
19361 L:      linux-usb@vger.kernel.org
19362 S:      Maintained
19363 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19364 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19365
19366 USB IP DRIVER FOR HISILICON KIRIN 970
19367 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19368 L:      linux-usb@vger.kernel.org
19369 S:      Maintained
19370 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19371 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19372
19373 USB ISP116X DRIVER
19374 M:      Olav Kongas <ok@artecdesign.ee>
19375 L:      linux-usb@vger.kernel.org
19376 S:      Maintained
19377 F:      drivers/usb/host/isp116x*
19378 F:      include/linux/usb/isp116x.h
19379
19380 USB ISP1760 DRIVER
19381 M:      Rui Miguel Silva <rui.silva@linaro.org>
19382 L:      linux-usb@vger.kernel.org
19383 S:      Maintained
19384 F:      drivers/usb/isp1760/*
19385 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19386
19387 USB LAN78XX ETHERNET DRIVER
19388 M:      Woojung Huh <woojung.huh@microchip.com>
19389 M:      UNGLinuxDriver@microchip.com
19390 L:      netdev@vger.kernel.org
19391 S:      Maintained
19392 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19393 F:      drivers/net/usb/lan78xx.*
19394 F:      include/dt-bindings/net/microchip-lan78xx.h
19395
19396 USB MASS STORAGE DRIVER
19397 M:      Alan Stern <stern@rowland.harvard.edu>
19398 L:      linux-usb@vger.kernel.org
19399 L:      usb-storage@lists.one-eyed-alien.net
19400 S:      Maintained
19401 F:      drivers/usb/storage/
19402
19403 USB MIDI DRIVER
19404 M:      Clemens Ladisch <clemens@ladisch.de>
19405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19406 S:      Maintained
19407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19408 F:      sound/usb/midi.*
19409
19410 USB NETWORKING DRIVERS
19411 L:      linux-usb@vger.kernel.org
19412 S:      Odd Fixes
19413 F:      drivers/net/usb/
19414
19415 USB OHCI DRIVER
19416 M:      Alan Stern <stern@rowland.harvard.edu>
19417 L:      linux-usb@vger.kernel.org
19418 S:      Maintained
19419 F:      Documentation/usb/ohci.rst
19420 F:      drivers/usb/host/ohci*
19421
19422 USB OTG FSM (Finite State Machine)
19423 M:      Peter Chen <peter.chen@kernel.org>
19424 L:      linux-usb@vger.kernel.org
19425 S:      Maintained
19426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19427 F:      drivers/usb/common/usb-otg-fsm.c
19428
19429 USB OVER IP DRIVER
19430 M:      Valentina Manea <valentina.manea.m@gmail.com>
19431 M:      Shuah Khan <shuah@kernel.org>
19432 M:      Shuah Khan <skhan@linuxfoundation.org>
19433 L:      linux-usb@vger.kernel.org
19434 S:      Maintained
19435 F:      Documentation/usb/usbip_protocol.rst
19436 F:      drivers/usb/usbip/
19437 F:      tools/testing/selftests/drivers/usb/usbip/
19438 F:      tools/usb/usbip/
19439
19440 USB PEGASUS DRIVER
19441 M:      Petko Manolov <petkan@nucleusys.com>
19442 L:      linux-usb@vger.kernel.org
19443 L:      netdev@vger.kernel.org
19444 S:      Maintained
19445 W:      https://github.com/petkan/pegasus
19446 T:      git git://github.com/petkan/pegasus.git
19447 F:      drivers/net/usb/pegasus.*
19448
19449 USB PHY LAYER
19450 M:      Felipe Balbi <balbi@kernel.org>
19451 L:      linux-usb@vger.kernel.org
19452 S:      Maintained
19453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19454 F:      drivers/usb/phy/
19455
19456 USB PRINTER DRIVER (usblp)
19457 M:      Pete Zaitcev <zaitcev@redhat.com>
19458 L:      linux-usb@vger.kernel.org
19459 S:      Supported
19460 F:      drivers/usb/class/usblp.c
19461
19462 USB RAW GADGET DRIVER
19463 R:      Andrey Konovalov <andreyknvl@gmail.com>
19464 L:      linux-usb@vger.kernel.org
19465 S:      Maintained
19466 F:      Documentation/usb/raw-gadget.rst
19467 F:      drivers/usb/gadget/legacy/raw_gadget.c
19468 F:      include/uapi/linux/usb/raw_gadget.h
19469
19470 USB QMI WWAN NETWORK DRIVER
19471 M:      Bjørn Mork <bjorn@mork.no>
19472 L:      netdev@vger.kernel.org
19473 S:      Maintained
19474 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19475 F:      drivers/net/usb/qmi_wwan.c
19476
19477 USB RTL8150 DRIVER
19478 M:      Petko Manolov <petkan@nucleusys.com>
19479 L:      linux-usb@vger.kernel.org
19480 L:      netdev@vger.kernel.org
19481 S:      Maintained
19482 W:      https://github.com/petkan/rtl8150
19483 T:      git git://github.com/petkan/rtl8150.git
19484 F:      drivers/net/usb/rtl8150.c
19485
19486 USB SERIAL SUBSYSTEM
19487 M:      Johan Hovold <johan@kernel.org>
19488 L:      linux-usb@vger.kernel.org
19489 S:      Maintained
19490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19491 F:      Documentation/usb/usb-serial.rst
19492 F:      drivers/usb/serial/
19493 F:      include/linux/usb/serial.h
19494
19495 USB SMSC75XX ETHERNET DRIVER
19496 M:      Steve Glendinning <steve.glendinning@shawell.net>
19497 L:      netdev@vger.kernel.org
19498 S:      Maintained
19499 F:      drivers/net/usb/smsc75xx.*
19500
19501 USB SMSC95XX ETHERNET DRIVER
19502 M:      Steve Glendinning <steve.glendinning@shawell.net>
19503 M:      UNGLinuxDriver@microchip.com
19504 L:      netdev@vger.kernel.org
19505 S:      Maintained
19506 F:      drivers/net/usb/smsc95xx.*
19507
19508 USB SUBSYSTEM
19509 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19510 L:      linux-usb@vger.kernel.org
19511 S:      Supported
19512 W:      http://www.linux-usb.org
19513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19514 F:      Documentation/devicetree/bindings/usb/
19515 F:      Documentation/usb/
19516 F:      drivers/usb/
19517 F:      include/linux/usb.h
19518 F:      include/linux/usb/
19519
19520 USB TYPEC BUS FOR ALTERNATE MODES
19521 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19522 L:      linux-usb@vger.kernel.org
19523 S:      Maintained
19524 F:      Documentation/ABI/testing/sysfs-bus-typec
19525 F:      Documentation/driver-api/usb/typec_bus.rst
19526 F:      drivers/usb/typec/altmodes/
19527 F:      include/linux/usb/typec_altmode.h
19528
19529 USB TYPEC CLASS
19530 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19531 L:      linux-usb@vger.kernel.org
19532 S:      Maintained
19533 F:      Documentation/ABI/testing/sysfs-class-typec
19534 F:      Documentation/driver-api/usb/typec.rst
19535 F:      drivers/usb/typec/
19536 F:      include/linux/usb/typec.h
19537
19538 USB TYPEC INTEL PMC MUX DRIVER
19539 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19540 L:      linux-usb@vger.kernel.org
19541 S:      Maintained
19542 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19543 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19544
19545 USB TYPEC PI3USB30532 MUX DRIVER
19546 M:      Hans de Goede <hdegoede@redhat.com>
19547 L:      linux-usb@vger.kernel.org
19548 S:      Maintained
19549 F:      drivers/usb/typec/mux/pi3usb30532.c
19550
19551 USB TYPEC PORT CONTROLLER DRIVERS
19552 M:      Guenter Roeck <linux@roeck-us.net>
19553 L:      linux-usb@vger.kernel.org
19554 S:      Maintained
19555 F:      drivers/usb/typec/tcpm/
19556
19557 USB UHCI DRIVER
19558 M:      Alan Stern <stern@rowland.harvard.edu>
19559 L:      linux-usb@vger.kernel.org
19560 S:      Maintained
19561 F:      drivers/usb/host/uhci*
19562
19563 USB VIDEO CLASS
19564 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19565 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19566 L:      linux-media@vger.kernel.org
19567 S:      Maintained
19568 W:      http://www.ideasonboard.org/uvc/
19569 T:      git git://linuxtv.org/media_tree.git
19570 F:      drivers/media/usb/uvc/
19571 F:      include/uapi/linux/uvcvideo.h
19572
19573 USB WEBCAM GADGET
19574 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19575 L:      linux-usb@vger.kernel.org
19576 S:      Maintained
19577 F:      drivers/usb/gadget/function/*uvc*
19578 F:      drivers/usb/gadget/legacy/webcam.c
19579 F:      include/uapi/linux/usb/g_uvc.h
19580
19581 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19582 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19583 L:      linux-wireless@vger.kernel.org
19584 S:      Maintained
19585 F:      drivers/net/wireless/rndis_wlan.c
19586
19587 USB XHCI DRIVER
19588 M:      Mathias Nyman <mathias.nyman@intel.com>
19589 L:      linux-usb@vger.kernel.org
19590 S:      Supported
19591 F:      drivers/usb/host/pci-quirks*
19592 F:      drivers/usb/host/xhci*
19593
19594 USB ZD1201 DRIVER
19595 L:      linux-wireless@vger.kernel.org
19596 S:      Orphan
19597 W:      http://linux-lc100020.sourceforge.net
19598 F:      drivers/net/wireless/zydas/zd1201.*
19599
19600 USB ZR364XX DRIVER
19601 M:      Antoine Jacquet <royale@zerezo.com>
19602 L:      linux-usb@vger.kernel.org
19603 L:      linux-media@vger.kernel.org
19604 S:      Maintained
19605 W:      http://royale.zerezo.com/zr364xx/
19606 T:      git git://linuxtv.org/media_tree.git
19607 F:      Documentation/admin-guide/media/zr364xx*
19608 F:      drivers/media/usb/zr364xx/
19609
19610 USER-MODE LINUX (UML)
19611 M:      Jeff Dike <jdike@addtoit.com>
19612 M:      Richard Weinberger <richard@nod.at>
19613 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19614 L:      linux-um@lists.infradead.org
19615 S:      Maintained
19616 W:      http://user-mode-linux.sourceforge.net
19617 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19619 F:      Documentation/virt/uml/
19620 F:      arch/um/
19621 F:      arch/x86/um/
19622 F:      fs/hostfs/
19623
19624 USERSPACE COPYIN/COPYOUT (UIOVEC)
19625 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19626 S:      Maintained
19627 F:      include/linux/uio.h
19628 F:      lib/iov_iter.c
19629
19630 USERSPACE DMA BUFFER DRIVER
19631 M:      Gerd Hoffmann <kraxel@redhat.com>
19632 L:      dri-devel@lists.freedesktop.org
19633 S:      Maintained
19634 T:      git git://anongit.freedesktop.org/drm/drm-misc
19635 F:      drivers/dma-buf/udmabuf.c
19636 F:      include/uapi/linux/udmabuf.h
19637
19638 USERSPACE I/O (UIO)
19639 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19640 S:      Maintained
19641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19642 F:      Documentation/driver-api/uio-howto.rst
19643 F:      drivers/uio/
19644 F:      include/linux/uio_driver.h
19645
19646 UTIL-LINUX PACKAGE
19647 M:      Karel Zak <kzak@redhat.com>
19648 L:      util-linux@vger.kernel.org
19649 S:      Maintained
19650 W:      http://en.wikipedia.org/wiki/Util-linux
19651 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19652
19653 UUID HELPERS
19654 M:      Christoph Hellwig <hch@lst.de>
19655 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19656 L:      linux-kernel@vger.kernel.org
19657 S:      Maintained
19658 T:      git git://git.infradead.org/users/hch/uuid.git
19659 F:      include/linux/uuid.h
19660 F:      include/uapi/linux/uuid.h
19661 F:      lib/test_uuid.c
19662 F:      lib/uuid.c
19663
19664 UV SYSFS DRIVER
19665 M:      Justin Ernst <justin.ernst@hpe.com>
19666 L:      platform-driver-x86@vger.kernel.org
19667 S:      Maintained
19668 F:      drivers/platform/x86/uv_sysfs.c
19669
19670 UVESAFB DRIVER
19671 M:      Michal Januszewski <spock@gentoo.org>
19672 L:      linux-fbdev@vger.kernel.org
19673 S:      Maintained
19674 W:      https://github.com/mjanusz/v86d
19675 F:      Documentation/fb/uvesafb.rst
19676 F:      drivers/video/fbdev/uvesafb.*
19677
19678 Ux500 CLOCK DRIVERS
19679 M:      Ulf Hansson <ulf.hansson@linaro.org>
19680 L:      linux-clk@vger.kernel.org
19681 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19682 S:      Maintained
19683 F:      drivers/clk/ux500/
19684
19685 VF610 NAND DRIVER
19686 M:      Stefan Agner <stefan@agner.ch>
19687 L:      linux-mtd@lists.infradead.org
19688 S:      Supported
19689 F:      drivers/mtd/nand/raw/vf610_nfc.c
19690
19691 VFAT/FAT/MSDOS FILESYSTEM
19692 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19693 S:      Maintained
19694 F:      Documentation/filesystems/vfat.rst
19695 F:      fs/fat/
19696
19697 VFIO DRIVER
19698 M:      Alex Williamson <alex.williamson@redhat.com>
19699 R:      Cornelia Huck <cohuck@redhat.com>
19700 L:      kvm@vger.kernel.org
19701 S:      Maintained
19702 T:      git git://github.com/awilliam/linux-vfio.git
19703 F:      Documentation/driver-api/vfio.rst
19704 F:      drivers/vfio/
19705 F:      include/linux/vfio.h
19706 F:      include/linux/vfio_pci_core.h
19707 F:      include/uapi/linux/vfio.h
19708
19709 VFIO FSL-MC DRIVER
19710 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19711 L:      kvm@vger.kernel.org
19712 S:      Maintained
19713 F:      drivers/vfio/fsl-mc/
19714
19715 VFIO MEDIATED DEVICE DRIVERS
19716 M:      Kirti Wankhede <kwankhede@nvidia.com>
19717 L:      kvm@vger.kernel.org
19718 S:      Maintained
19719 F:      Documentation/driver-api/vfio-mediated-device.rst
19720 F:      drivers/vfio/mdev/
19721 F:      include/linux/mdev.h
19722 F:      samples/vfio-mdev/
19723
19724 VFIO PLATFORM DRIVER
19725 M:      Eric Auger <eric.auger@redhat.com>
19726 L:      kvm@vger.kernel.org
19727 S:      Maintained
19728 F:      drivers/vfio/platform/
19729
19730 VGA_SWITCHEROO
19731 R:      Lukas Wunner <lukas@wunner.de>
19732 S:      Maintained
19733 T:      git git://anongit.freedesktop.org/drm/drm-misc
19734 F:      Documentation/gpu/vga-switcheroo.rst
19735 F:      drivers/gpu/vga/vga_switcheroo.c
19736 F:      include/linux/vga_switcheroo.h
19737
19738 VIA RHINE NETWORK DRIVER
19739 S:      Maintained
19740 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19741 F:      drivers/net/ethernet/via/via-rhine.c
19742
19743 VIA SD/MMC CARD CONTROLLER DRIVER
19744 M:      Bruce Chang <brucechang@via.com.tw>
19745 M:      Harald Welte <HaraldWelte@viatech.com>
19746 S:      Maintained
19747 F:      drivers/mmc/host/via-sdmmc.c
19748
19749 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19750 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19751 L:      linux-fbdev@vger.kernel.org
19752 S:      Maintained
19753 F:      drivers/video/fbdev/via/
19754 F:      include/linux/via-core.h
19755 F:      include/linux/via-gpio.h
19756 F:      include/linux/via_i2c.h
19757
19758 VIA VELOCITY NETWORK DRIVER
19759 M:      Francois Romieu <romieu@fr.zoreil.com>
19760 L:      netdev@vger.kernel.org
19761 S:      Maintained
19762 F:      drivers/net/ethernet/via/via-velocity.*
19763
19764 VICODEC VIRTUAL CODEC DRIVER
19765 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19766 L:      linux-media@vger.kernel.org
19767 S:      Maintained
19768 W:      https://linuxtv.org
19769 T:      git git://linuxtv.org/media_tree.git
19770 F:      drivers/media/test-drivers/vicodec/*
19771
19772 VIDEO I2C POLLING DRIVER
19773 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19774 L:      linux-media@vger.kernel.org
19775 S:      Maintained
19776 F:      drivers/media/i2c/video-i2c.c
19777
19778 VIDEO MULTIPLEXER DRIVER
19779 M:      Philipp Zabel <p.zabel@pengutronix.de>
19780 L:      linux-media@vger.kernel.org
19781 S:      Maintained
19782 F:      drivers/media/platform/video-mux.c
19783
19784 VIDEOBUF2 FRAMEWORK
19785 M:      Tomasz Figa <tfiga@chromium.org>
19786 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19787 L:      linux-media@vger.kernel.org
19788 S:      Maintained
19789 F:      drivers/media/common/videobuf2/*
19790 F:      include/media/videobuf2-*
19791
19792 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19793 M:      Helen Koike <helen.koike@collabora.com>
19794 R:      Shuah Khan <skhan@linuxfoundation.org>
19795 L:      linux-media@vger.kernel.org
19796 S:      Maintained
19797 W:      https://linuxtv.org
19798 T:      git git://linuxtv.org/media_tree.git
19799 F:      drivers/media/test-drivers/vimc/*
19800
19801 VIRT LIB
19802 M:      Alex Williamson <alex.williamson@redhat.com>
19803 M:      Paolo Bonzini <pbonzini@redhat.com>
19804 L:      kvm@vger.kernel.org
19805 S:      Supported
19806 F:      virt/lib/
19807
19808 VIRTIO AND VHOST VSOCK DRIVER
19809 M:      Stefan Hajnoczi <stefanha@redhat.com>
19810 M:      Stefano Garzarella <sgarzare@redhat.com>
19811 L:      kvm@vger.kernel.org
19812 L:      virtualization@lists.linux-foundation.org
19813 L:      netdev@vger.kernel.org
19814 S:      Maintained
19815 F:      drivers/vhost/vsock.c
19816 F:      include/linux/virtio_vsock.h
19817 F:      include/uapi/linux/virtio_vsock.h
19818 F:      net/vmw_vsock/virtio_transport.c
19819 F:      net/vmw_vsock/virtio_transport_common.c
19820
19821 VIRTIO BLOCK AND SCSI DRIVERS
19822 M:      "Michael S. Tsirkin" <mst@redhat.com>
19823 M:      Jason Wang <jasowang@redhat.com>
19824 R:      Paolo Bonzini <pbonzini@redhat.com>
19825 R:      Stefan Hajnoczi <stefanha@redhat.com>
19826 L:      virtualization@lists.linux-foundation.org
19827 S:      Maintained
19828 F:      drivers/block/virtio_blk.c
19829 F:      drivers/scsi/virtio_scsi.c
19830 F:      drivers/vhost/scsi.c
19831 F:      include/uapi/linux/virtio_blk.h
19832 F:      include/uapi/linux/virtio_scsi.h
19833
19834 VIRTIO CONSOLE DRIVER
19835 M:      Amit Shah <amit@kernel.org>
19836 L:      virtualization@lists.linux-foundation.org
19837 S:      Maintained
19838 F:      drivers/char/virtio_console.c
19839 F:      include/linux/virtio_console.h
19840 F:      include/uapi/linux/virtio_console.h
19841
19842 VIRTIO CORE AND NET DRIVERS
19843 M:      "Michael S. Tsirkin" <mst@redhat.com>
19844 M:      Jason Wang <jasowang@redhat.com>
19845 L:      virtualization@lists.linux-foundation.org
19846 S:      Maintained
19847 F:      Documentation/devicetree/bindings/virtio/
19848 F:      drivers/block/virtio_blk.c
19849 F:      drivers/crypto/virtio/
19850 F:      drivers/net/virtio_net.c
19851 F:      drivers/vdpa/
19852 F:      drivers/virtio/
19853 F:      include/linux/vdpa.h
19854 F:      include/linux/virtio*.h
19855 F:      include/uapi/linux/virtio_*.h
19856 F:      tools/virtio/
19857
19858 VIRTIO BALLOON
19859 M:      "Michael S. Tsirkin" <mst@redhat.com>
19860 M:      David Hildenbrand <david@redhat.com>
19861 L:      virtualization@lists.linux-foundation.org
19862 S:      Maintained
19863 F:      drivers/virtio/virtio_balloon.c
19864 F:      include/uapi/linux/virtio_balloon.h
19865 F:      include/linux/balloon_compaction.h
19866 F:      mm/balloon_compaction.c
19867
19868 VIRTIO CRYPTO DRIVER
19869 M:      Gonglei <arei.gonglei@huawei.com>
19870 L:      virtualization@lists.linux-foundation.org
19871 L:      linux-crypto@vger.kernel.org
19872 S:      Maintained
19873 F:      drivers/crypto/virtio/
19874 F:      include/uapi/linux/virtio_crypto.h
19875
19876 VIRTIO DRIVERS FOR S390
19877 M:      Cornelia Huck <cohuck@redhat.com>
19878 M:      Halil Pasic <pasic@linux.ibm.com>
19879 L:      linux-s390@vger.kernel.org
19880 L:      virtualization@lists.linux-foundation.org
19881 L:      kvm@vger.kernel.org
19882 S:      Supported
19883 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19884 F:      drivers/s390/virtio/
19885
19886 VIRTIO FILE SYSTEM
19887 M:      Vivek Goyal <vgoyal@redhat.com>
19888 M:      Stefan Hajnoczi <stefanha@redhat.com>
19889 M:      Miklos Szeredi <miklos@szeredi.hu>
19890 L:      virtualization@lists.linux-foundation.org
19891 L:      linux-fsdevel@vger.kernel.org
19892 S:      Supported
19893 W:      https://virtio-fs.gitlab.io/
19894 F:      Documentation/filesystems/virtiofs.rst
19895 F:      fs/fuse/virtio_fs.c
19896 F:      include/uapi/linux/virtio_fs.h
19897
19898 VIRTIO GPIO DRIVER
19899 M:      Enrico Weigelt, metux IT consult <info@metux.net>
19900 M:      Viresh Kumar <vireshk@kernel.org>
19901 L:      linux-gpio@vger.kernel.org
19902 L:      virtualization@lists.linux-foundation.org
19903 S:      Maintained
19904 F:      drivers/gpio/gpio-virtio.c
19905 F:      include/uapi/linux/virtio_gpio.h
19906
19907 VIRTIO GPU DRIVER
19908 M:      David Airlie <airlied@linux.ie>
19909 M:      Gerd Hoffmann <kraxel@redhat.com>
19910 L:      dri-devel@lists.freedesktop.org
19911 L:      virtualization@lists.linux-foundation.org
19912 S:      Maintained
19913 T:      git git://anongit.freedesktop.org/drm/drm-misc
19914 F:      drivers/gpu/drm/virtio/
19915 F:      include/uapi/linux/virtio_gpu.h
19916
19917 VIRTIO HOST (VHOST)
19918 M:      "Michael S. Tsirkin" <mst@redhat.com>
19919 M:      Jason Wang <jasowang@redhat.com>
19920 L:      kvm@vger.kernel.org
19921 L:      virtualization@lists.linux-foundation.org
19922 L:      netdev@vger.kernel.org
19923 S:      Maintained
19924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
19925 F:      drivers/vhost/
19926 F:      include/linux/vhost_iotlb.h
19927 F:      include/uapi/linux/vhost.h
19928
19929 VIRTIO INPUT DRIVER
19930 M:      Gerd Hoffmann <kraxel@redhat.com>
19931 S:      Maintained
19932 F:      drivers/virtio/virtio_input.c
19933 F:      include/uapi/linux/virtio_input.h
19934
19935 VIRTIO IOMMU DRIVER
19936 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
19937 L:      virtualization@lists.linux-foundation.org
19938 S:      Maintained
19939 F:      drivers/iommu/virtio-iommu.c
19940 F:      include/uapi/linux/virtio_iommu.h
19941
19942 VIRTIO MEM DRIVER
19943 M:      David Hildenbrand <david@redhat.com>
19944 L:      virtualization@lists.linux-foundation.org
19945 S:      Maintained
19946 W:      https://virtio-mem.gitlab.io/
19947 F:      drivers/virtio/virtio_mem.c
19948 F:      include/uapi/linux/virtio_mem.h
19949
19950 VIRTIO SOUND DRIVER
19951 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
19952 M:      "Michael S. Tsirkin" <mst@redhat.com>
19953 L:      virtualization@lists.linux-foundation.org
19954 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19955 S:      Maintained
19956 F:      include/uapi/linux/virtio_snd.h
19957 F:      sound/virtio/*
19958
19959 VIRTIO I2C DRIVER
19960 M:      Jie Deng <jie.deng@intel.com>
19961 M:      Viresh Kumar <viresh.kumar@linaro.org>
19962 L:      linux-i2c@vger.kernel.org
19963 L:      virtualization@lists.linux-foundation.org
19964 S:      Maintained
19965 F:      drivers/i2c/busses/i2c-virtio.c
19966 F:      include/uapi/linux/virtio_i2c.h
19967
19968 VIRTUAL BOX GUEST DEVICE DRIVER
19969 M:      Hans de Goede <hdegoede@redhat.com>
19970 M:      Arnd Bergmann <arnd@arndb.de>
19971 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19972 S:      Maintained
19973 F:      drivers/virt/vboxguest/
19974 F:      include/linux/vbox_utils.h
19975 F:      include/uapi/linux/vbox*.h
19976
19977 VIRTUAL BOX SHARED FOLDER VFS DRIVER
19978 M:      Hans de Goede <hdegoede@redhat.com>
19979 L:      linux-fsdevel@vger.kernel.org
19980 S:      Maintained
19981 F:      fs/vboxsf/*
19982
19983 VIRTUAL SERIO DEVICE DRIVER
19984 M:      Stephen Chandler Paul <thatslyude@gmail.com>
19985 S:      Maintained
19986 F:      drivers/input/serio/userio.c
19987 F:      include/uapi/linux/userio.h
19988
19989 VIVID VIRTUAL VIDEO DRIVER
19990 M:      Hans Verkuil <hverkuil@xs4all.nl>
19991 L:      linux-media@vger.kernel.org
19992 S:      Maintained
19993 W:      https://linuxtv.org
19994 T:      git git://linuxtv.org/media_tree.git
19995 F:      drivers/media/test-drivers/vivid/*
19996
19997 VIDTV VIRTUAL DIGITAL TV DRIVER
19998 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
19999 L:      linux-media@vger.kernel.org
20000 S:      Maintained
20001 W:      https://linuxtv.org
20002 T:      git git://linuxtv.org/media_tree.git
20003 F:      drivers/media/test-drivers/vidtv/*
20004
20005 VLYNQ BUS
20006 M:      Florian Fainelli <f.fainelli@gmail.com>
20007 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20008 S:      Maintained
20009 F:      drivers/vlynq/vlynq.c
20010 F:      include/linux/vlynq.h
20011
20012 VME SUBSYSTEM
20013 M:      Martyn Welch <martyn@welchs.me.uk>
20014 M:      Manohar Vanga <manohar.vanga@gmail.com>
20015 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20016 L:      linux-kernel@vger.kernel.org
20017 S:      Maintained
20018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20019 F:      Documentation/driver-api/vme.rst
20020 F:      drivers/staging/vme/
20021 F:      drivers/vme/
20022 F:      include/linux/vme*
20023
20024 VM SOCKETS (AF_VSOCK)
20025 M:      Stefano Garzarella <sgarzare@redhat.com>
20026 L:      virtualization@lists.linux-foundation.org
20027 L:      netdev@vger.kernel.org
20028 S:      Maintained
20029 F:      drivers/net/vsockmon.c
20030 F:      include/net/af_vsock.h
20031 F:      include/uapi/linux/vm_sockets.h
20032 F:      include/uapi/linux/vm_sockets_diag.h
20033 F:      include/uapi/linux/vsockmon.h
20034 F:      net/vmw_vsock/
20035 F:      tools/testing/vsock/
20036
20037 VMWARE BALLOON DRIVER
20038 M:      Nadav Amit <namit@vmware.com>
20039 M:      "VMware, Inc." <pv-drivers@vmware.com>
20040 L:      linux-kernel@vger.kernel.org
20041 S:      Maintained
20042 F:      drivers/misc/vmw_balloon.c
20043
20044 VMWARE HYPERVISOR INTERFACE
20045 M:      Deep Shah <sdeep@vmware.com>
20046 M:      "VMware, Inc." <pv-drivers@vmware.com>
20047 L:      virtualization@lists.linux-foundation.org
20048 S:      Supported
20049 F:      arch/x86/include/asm/vmware.h
20050 F:      arch/x86/kernel/cpu/vmware.c
20051
20052 VMWARE PVRDMA DRIVER
20053 M:      Adit Ranadive <aditr@vmware.com>
20054 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20055 L:      linux-rdma@vger.kernel.org
20056 S:      Maintained
20057 F:      drivers/infiniband/hw/vmw_pvrdma/
20058
20059 VMware PVSCSI driver
20060 M:      Vishal Bhakta <vbhakta@vmware.com>
20061 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20062 L:      linux-scsi@vger.kernel.org
20063 S:      Maintained
20064 F:      drivers/scsi/vmw_pvscsi.c
20065 F:      drivers/scsi/vmw_pvscsi.h
20066
20067 VMWARE VIRTUAL PTP CLOCK DRIVER
20068 M:      Vivek Thampi <vithampi@vmware.com>
20069 M:      "VMware, Inc." <pv-drivers@vmware.com>
20070 L:      netdev@vger.kernel.org
20071 S:      Supported
20072 F:      drivers/ptp/ptp_vmw.c
20073
20074 VMWARE VMCI DRIVER
20075 M:      Jorgen Hansen <jhansen@vmware.com>
20076 M:      Vishnu Dasa <vdasa@vmware.com>
20077 L:      linux-kernel@vger.kernel.org
20078 L:      pv-drivers@vmware.com (private)
20079 S:      Maintained
20080 F:      drivers/misc/vmw_vmci/
20081
20082 VMWARE VMMOUSE SUBDRIVER
20083 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20084 M:      "VMware, Inc." <pv-drivers@vmware.com>
20085 L:      linux-input@vger.kernel.org
20086 S:      Maintained
20087 F:      drivers/input/mouse/vmmouse.c
20088 F:      drivers/input/mouse/vmmouse.h
20089
20090 VMWARE VMXNET3 ETHERNET DRIVER
20091 M:      Ronak Doshi <doshir@vmware.com>
20092 M:      pv-drivers@vmware.com
20093 L:      netdev@vger.kernel.org
20094 S:      Maintained
20095 F:      drivers/net/vmxnet3/
20096
20097 VOCORE VOCORE2 BOARD
20098 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20099 L:      linux-mips@vger.kernel.org
20100 S:      Maintained
20101 F:      arch/mips/boot/dts/ralink/vocore2.dts
20102
20103 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20104 M:      Liam Girdwood <lgirdwood@gmail.com>
20105 M:      Mark Brown <broonie@kernel.org>
20106 L:      linux-kernel@vger.kernel.org
20107 S:      Supported
20108 W:      http://www.slimlogic.co.uk/?p=48
20109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20110 F:      Documentation/devicetree/bindings/regulator/
20111 F:      Documentation/power/regulator/
20112 F:      drivers/regulator/
20113 F:      include/dt-bindings/regulator/
20114 F:      include/linux/regulator/
20115 K:      regulator_get_optional
20116
20117 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20118 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20119 F:      drivers/regulator/irq_helpers.c
20120
20121 VRF
20122 M:      David Ahern <dsahern@kernel.org>
20123 L:      netdev@vger.kernel.org
20124 S:      Maintained
20125 F:      Documentation/networking/vrf.rst
20126 F:      drivers/net/vrf.c
20127
20128 VSPRINTF
20129 M:      Petr Mladek <pmladek@suse.com>
20130 M:      Steven Rostedt <rostedt@goodmis.org>
20131 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20132 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20133 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20134 S:      Maintained
20135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20136 F:      Documentation/core-api/printk-formats.rst
20137 F:      lib/test_printf.c
20138 F:      lib/test_scanf.c
20139 F:      lib/vsprintf.c
20140
20141 VT1211 HARDWARE MONITOR DRIVER
20142 M:      Juerg Haefliger <juergh@gmail.com>
20143 L:      linux-hwmon@vger.kernel.org
20144 S:      Maintained
20145 F:      Documentation/hwmon/vt1211.rst
20146 F:      drivers/hwmon/vt1211.c
20147
20148 VT8231 HARDWARE MONITOR DRIVER
20149 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20150 L:      linux-hwmon@vger.kernel.org
20151 S:      Maintained
20152 F:      drivers/hwmon/vt8231.c
20153
20154 VUB300 USB to SDIO/SD/MMC bridge chip
20155 L:      linux-mmc@vger.kernel.org
20156 S:      Orphan
20157 F:      drivers/mmc/host/vub300.c
20158
20159 W1 DALLAS'S 1-WIRE BUS
20160 M:      Evgeniy Polyakov <zbr@ioremap.net>
20161 S:      Maintained
20162 F:      Documentation/devicetree/bindings/w1/
20163 F:      Documentation/w1/
20164 F:      drivers/w1/
20165 F:      include/linux/w1.h
20166
20167 W83791D HARDWARE MONITORING DRIVER
20168 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20169 L:      linux-hwmon@vger.kernel.org
20170 S:      Maintained
20171 F:      Documentation/hwmon/w83791d.rst
20172 F:      drivers/hwmon/w83791d.c
20173
20174 W83793 HARDWARE MONITORING DRIVER
20175 M:      Rudolf Marek <r.marek@assembler.cz>
20176 L:      linux-hwmon@vger.kernel.org
20177 S:      Maintained
20178 F:      Documentation/hwmon/w83793.rst
20179 F:      drivers/hwmon/w83793.c
20180
20181 W83795 HARDWARE MONITORING DRIVER
20182 M:      Jean Delvare <jdelvare@suse.com>
20183 L:      linux-hwmon@vger.kernel.org
20184 S:      Maintained
20185 F:      drivers/hwmon/w83795.c
20186
20187 W83L51xD SD/MMC CARD INTERFACE DRIVER
20188 M:      Pierre Ossman <pierre@ossman.eu>
20189 S:      Maintained
20190 F:      drivers/mmc/host/wbsd.*
20191
20192 WACOM PROTOCOL 4 SERIAL TABLETS
20193 M:      Julian Squires <julian@cipht.net>
20194 M:      Hans de Goede <hdegoede@redhat.com>
20195 L:      linux-input@vger.kernel.org
20196 S:      Maintained
20197 F:      drivers/input/tablet/wacom_serial4.c
20198
20199 WATCHDOG DEVICE DRIVERS
20200 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20201 M:      Guenter Roeck <linux@roeck-us.net>
20202 L:      linux-watchdog@vger.kernel.org
20203 S:      Maintained
20204 W:      http://www.linux-watchdog.org/
20205 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20206 F:      Documentation/devicetree/bindings/watchdog/
20207 F:      Documentation/watchdog/
20208 F:      drivers/watchdog/
20209 F:      include/linux/watchdog.h
20210 F:      include/uapi/linux/watchdog.h
20211
20212 WHISKEYCOVE PMIC GPIO DRIVER
20213 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20214 L:      linux-gpio@vger.kernel.org
20215 S:      Maintained
20216 F:      drivers/gpio/gpio-wcove.c
20217
20218 WHWAVE RTC DRIVER
20219 M:      Dianlong Li <long17.cool@163.com>
20220 L:      linux-rtc@vger.kernel.org
20221 S:      Maintained
20222 F:      drivers/rtc/rtc-sd3078.c
20223
20224 WIIMOTE HID DRIVER
20225 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20226 L:      linux-input@vger.kernel.org
20227 S:      Maintained
20228 F:      drivers/hid/hid-wiimote*
20229
20230 WILOCITY WIL6210 WIRELESS DRIVER
20231 M:      Maya Erez <merez@codeaurora.org>
20232 L:      linux-wireless@vger.kernel.org
20233 L:      wil6210@qti.qualcomm.com
20234 S:      Supported
20235 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20236 F:      drivers/net/wireless/ath/wil6210/
20237
20238 WINBOND CIR DRIVER
20239 M:      David Härdeman <david@hardeman.nu>
20240 S:      Maintained
20241 F:      drivers/media/rc/winbond-cir.c
20242
20243 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20244 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20245 L:      linux-watchdog@vger.kernel.org
20246 S:      Maintained
20247 F:      drivers/watchdog/ebc-c384_wdt.c
20248
20249 WINSYSTEMS WS16C48 GPIO DRIVER
20250 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20251 L:      linux-gpio@vger.kernel.org
20252 S:      Maintained
20253 F:      drivers/gpio/gpio-ws16c48.c
20254
20255 WIREGUARD SECURE NETWORK TUNNEL
20256 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20257 L:      wireguard@lists.zx2c4.com
20258 L:      netdev@vger.kernel.org
20259 S:      Maintained
20260 F:      drivers/net/wireguard/
20261 F:      tools/testing/selftests/wireguard/
20262
20263 WISTRON LAPTOP BUTTON DRIVER
20264 M:      Miloslav Trmac <mitr@volny.cz>
20265 S:      Maintained
20266 F:      drivers/input/misc/wistron_btns.c
20267
20268 WL3501 WIRELESS PCMCIA CARD DRIVER
20269 L:      linux-wireless@vger.kernel.org
20270 S:      Odd fixes
20271 F:      drivers/net/wireless/wl3501*
20272
20273 WOLFSON MICROELECTRONICS DRIVERS
20274 L:      patches@opensource.cirrus.com
20275 S:      Supported
20276 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20277 T:      git https://github.com/CirrusLogic/linux-drivers.git
20278 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20279 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20280 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20281 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20282 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20283 F:      Documentation/devicetree/bindings/sound/wm*
20284 F:      Documentation/hwmon/wm83??.rst
20285 F:      arch/arm/mach-s3c/mach-crag6410*
20286 F:      drivers/clk/clk-wm83*.c
20287 F:      drivers/gpio/gpio-*wm*.c
20288 F:      drivers/gpio/gpio-arizona.c
20289 F:      drivers/hwmon/wm83??-hwmon.c
20290 F:      drivers/input/misc/wm831x-on.c
20291 F:      drivers/input/touchscreen/wm831x-ts.c
20292 F:      drivers/input/touchscreen/wm97*.c
20293 F:      drivers/leds/leds-wm83*.c
20294 F:      drivers/mfd/arizona*
20295 F:      drivers/mfd/cs47l24*
20296 F:      drivers/mfd/wm*.c
20297 F:      drivers/power/supply/wm83*.c
20298 F:      drivers/regulator/arizona*
20299 F:      drivers/regulator/wm8*.c
20300 F:      drivers/rtc/rtc-wm83*.c
20301 F:      drivers/video/backlight/wm83*_bl.c
20302 F:      drivers/watchdog/wm83*_wdt.c
20303 F:      include/linux/mfd/arizona/
20304 F:      include/linux/mfd/wm831x/
20305 F:      include/linux/mfd/wm8350/
20306 F:      include/linux/mfd/wm8400*
20307 F:      include/linux/regulator/arizona*
20308 F:      include/linux/wm97xx.h
20309 F:      include/sound/wm????.h
20310 F:      sound/soc/codecs/arizona*
20311 F:      sound/soc/codecs/cs47l24*
20312 F:      sound/soc/codecs/wm*
20313
20314 WORKQUEUE
20315 M:      Tejun Heo <tj@kernel.org>
20316 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20317 S:      Maintained
20318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20319 F:      Documentation/core-api/workqueue.rst
20320 F:      include/linux/workqueue.h
20321 F:      kernel/workqueue.c
20322
20323 WWAN DRIVERS
20324 M:      Loic Poulain <loic.poulain@linaro.org>
20325 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20326 R:      Johannes Berg <johannes@sipsolutions.net>
20327 L:      netdev@vger.kernel.org
20328 S:      Maintained
20329 F:      drivers/net/wwan/
20330 F:      include/linux/wwan.h
20331 F:      include/uapi/linux/wwan.h
20332
20333 X-POWERS AXP288 PMIC DRIVERS
20334 M:      Hans de Goede <hdegoede@redhat.com>
20335 S:      Maintained
20336 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20337 N:      axp288
20338
20339 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20340 M:      Chen-Yu Tsai <wens@csie.org>
20341 L:      linux-kernel@vger.kernel.org
20342 S:      Maintained
20343 N:      axp[128]
20344
20345 X.25 STACK
20346 M:      Martin Schiller <ms@dev.tdt.de>
20347 L:      linux-x25@vger.kernel.org
20348 S:      Maintained
20349 F:      Documentation/networking/lapb-module.rst
20350 F:      Documentation/networking/x25*
20351 F:      drivers/net/wan/hdlc_x25.c
20352 F:      drivers/net/wan/lapbether.c
20353 F:      include/*/lapb.h
20354 F:      include/net/x25*
20355 F:      include/uapi/linux/x25.h
20356 F:      net/lapb/
20357 F:      net/x25/
20358
20359 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20360 M:      Thomas Gleixner <tglx@linutronix.de>
20361 M:      Ingo Molnar <mingo@redhat.com>
20362 M:      Borislav Petkov <bp@alien8.de>
20363 M:      Dave Hansen <dave.hansen@linux.intel.com>
20364 M:      x86@kernel.org
20365 R:      "H. Peter Anvin" <hpa@zytor.com>
20366 L:      linux-kernel@vger.kernel.org
20367 S:      Maintained
20368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20369 F:      Documentation/devicetree/bindings/x86/
20370 F:      Documentation/x86/
20371 F:      arch/x86/
20372
20373 X86 ENTRY CODE
20374 M:      Andy Lutomirski <luto@kernel.org>
20375 L:      linux-kernel@vger.kernel.org
20376 S:      Maintained
20377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20378 F:      arch/x86/entry/
20379
20380 X86 MCE INFRASTRUCTURE
20381 M:      Tony Luck <tony.luck@intel.com>
20382 M:      Borislav Petkov <bp@alien8.de>
20383 L:      linux-edac@vger.kernel.org
20384 S:      Maintained
20385 F:      arch/x86/kernel/cpu/mce/*
20386
20387 X86 MICROCODE UPDATE SUPPORT
20388 M:      Borislav Petkov <bp@alien8.de>
20389 S:      Maintained
20390 F:      arch/x86/kernel/cpu/microcode/*
20391
20392 X86 MM
20393 M:      Dave Hansen <dave.hansen@linux.intel.com>
20394 M:      Andy Lutomirski <luto@kernel.org>
20395 M:      Peter Zijlstra <peterz@infradead.org>
20396 L:      linux-kernel@vger.kernel.org
20397 S:      Maintained
20398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20399 F:      arch/x86/mm/
20400
20401 X86 PLATFORM DRIVERS
20402 M:      Hans de Goede <hdegoede@redhat.com>
20403 M:      Mark Gross <mgross@linux.intel.com>
20404 L:      platform-driver-x86@vger.kernel.org
20405 S:      Maintained
20406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20407 F:      drivers/platform/olpc/
20408 F:      drivers/platform/x86/
20409
20410 X86 PLATFORM DRIVERS - ARCH
20411 R:      Darren Hart <dvhart@infradead.org>
20412 R:      Andy Shevchenko <andy@infradead.org>
20413 L:      platform-driver-x86@vger.kernel.org
20414 L:      x86@kernel.org
20415 S:      Maintained
20416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20417 F:      arch/x86/platform
20418
20419 X86 PLATFORM UV HPE SUPERDOME FLEX
20420 M:      Steve Wahl <steve.wahl@hpe.com>
20421 R:      Mike Travis <mike.travis@hpe.com>
20422 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20423 R:      Russ Anderson <russ.anderson@hpe.com>
20424 S:      Supported
20425 F:      arch/x86/include/asm/uv/
20426 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20427 F:      arch/x86/platform/uv/
20428
20429 X86 VDSO
20430 M:      Andy Lutomirski <luto@kernel.org>
20431 L:      linux-kernel@vger.kernel.org
20432 S:      Maintained
20433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20434 F:      arch/x86/entry/vdso/
20435
20436 XARRAY
20437 M:      Matthew Wilcox <willy@infradead.org>
20438 L:      linux-fsdevel@vger.kernel.org
20439 S:      Supported
20440 F:      Documentation/core-api/xarray.rst
20441 F:      include/linux/idr.h
20442 F:      include/linux/xarray.h
20443 F:      lib/idr.c
20444 F:      lib/xarray.c
20445 F:      tools/testing/radix-tree
20446
20447 XBOX DVD IR REMOTE
20448 M:      Benjamin Valentin <benpicco@googlemail.com>
20449 S:      Maintained
20450 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20451 F:      drivers/media/rc/xbox_remote.c
20452
20453 XC2028/3028 TUNER DRIVER
20454 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20455 L:      linux-media@vger.kernel.org
20456 S:      Maintained
20457 W:      https://linuxtv.org
20458 T:      git git://linuxtv.org/media_tree.git
20459 F:      drivers/media/tuners/tuner-xc2028.*
20460
20461 XDP (eXpress Data Path)
20462 M:      Alexei Starovoitov <ast@kernel.org>
20463 M:      Daniel Borkmann <daniel@iogearbox.net>
20464 M:      David S. Miller <davem@davemloft.net>
20465 M:      Jakub Kicinski <kuba@kernel.org>
20466 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20467 M:      John Fastabend <john.fastabend@gmail.com>
20468 L:      netdev@vger.kernel.org
20469 L:      bpf@vger.kernel.org
20470 S:      Supported
20471 F:      include/net/xdp.h
20472 F:      include/net/xdp_priv.h
20473 F:      include/trace/events/xdp.h
20474 F:      kernel/bpf/cpumap.c
20475 F:      kernel/bpf/devmap.c
20476 F:      net/core/xdp.c
20477 F:      samples/bpf/xdp*
20478 F:      tools/testing/selftests/bpf/*xdp*
20479 F:      tools/testing/selftests/bpf/*/*xdp*
20480 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20481 F:      drivers/net/ethernet/*/*/*xdp*
20482 K:      (?:\b|_)xdp(?:\b|_)
20483
20484 XDP SOCKETS (AF_XDP)
20485 M:      Björn Töpel <bjorn@kernel.org>
20486 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20487 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20488 L:      netdev@vger.kernel.org
20489 L:      bpf@vger.kernel.org
20490 S:      Maintained
20491 F:      Documentation/networking/af_xdp.rst
20492 F:      include/net/xdp_sock*
20493 F:      include/net/xsk_buff_pool.h
20494 F:      include/uapi/linux/if_xdp.h
20495 F:      include/uapi/linux/xdp_diag.h
20496 F:      include/net/netns/xdp.h
20497 F:      net/xdp/
20498 F:      samples/bpf/xdpsock*
20499 F:      tools/lib/bpf/xsk*
20500
20501 XEN BLOCK SUBSYSTEM
20502 M:      Roger Pau Monné <roger.pau@citrix.com>
20503 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20504 S:      Supported
20505 F:      drivers/block/xen*
20506 F:      drivers/block/xen-blkback/*
20507
20508 XEN HYPERVISOR ARM
20509 M:      Stefano Stabellini <sstabellini@kernel.org>
20510 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20511 S:      Maintained
20512 F:      arch/arm/include/asm/xen/
20513 F:      arch/arm/xen/
20514
20515 XEN HYPERVISOR ARM64
20516 M:      Stefano Stabellini <sstabellini@kernel.org>
20517 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20518 S:      Maintained
20519 F:      arch/arm64/include/asm/xen/
20520 F:      arch/arm64/xen/
20521
20522 XEN HYPERVISOR INTERFACE
20523 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20524 M:      Juergen Gross <jgross@suse.com>
20525 R:      Stefano Stabellini <sstabellini@kernel.org>
20526 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20527 S:      Supported
20528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20529 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20530 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20531 F:      arch/x86/include/asm/pvclock-abi.h
20532 F:      arch/x86/include/asm/xen/
20533 F:      arch/x86/platform/pvh/
20534 F:      arch/x86/xen/
20535 F:      drivers/*/xen-*front.c
20536 F:      drivers/xen/
20537 F:      include/uapi/xen/
20538 F:      include/xen/
20539
20540 XEN NETWORK BACKEND DRIVER
20541 M:      Wei Liu <wei.liu@kernel.org>
20542 M:      Paul Durrant <paul@xen.org>
20543 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20544 L:      netdev@vger.kernel.org
20545 S:      Supported
20546 F:      drivers/net/xen-netback/*
20547
20548 XEN PCI SUBSYSTEM
20549 M:      Juergen Gross <jgross@suse.com>
20550 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20551 S:      Supported
20552 F:      arch/x86/pci/*xen*
20553 F:      drivers/pci/*xen*
20554
20555 XEN PVSCSI DRIVERS
20556 M:      Juergen Gross <jgross@suse.com>
20557 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20558 L:      linux-scsi@vger.kernel.org
20559 S:      Supported
20560 F:      drivers/scsi/xen-scsifront.c
20561 F:      drivers/xen/xen-scsiback.c
20562 F:      include/xen/interface/io/vscsiif.h
20563
20564 XEN SOUND FRONTEND DRIVER
20565 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20566 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20567 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20568 S:      Supported
20569 F:      sound/xen/*
20570
20571 XEN SWIOTLB SUBSYSTEM
20572 M:      Juergen Gross <jgross@suse.com>
20573 M:      Stefano Stabellini <sstabellini@kernel.org>
20574 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20575 L:      iommu@lists.linux-foundation.org
20576 L:      iommu@lists.linux.dev
20577 S:      Supported
20578 F:      arch/x86/xen/*swiotlb*
20579 F:      drivers/xen/*swiotlb*
20580
20581 XFS FILESYSTEM
20582 C:      irc://irc.oftc.net/xfs
20583 M:      Leah Rumancik <leah.rumancik@gmail.com>
20584 M:      Darrick J. Wong <djwong@kernel.org>
20585 M:      linux-xfs@vger.kernel.org
20586 L:      linux-xfs@vger.kernel.org
20587 S:      Supported
20588 W:      http://xfs.org/
20589 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20590 F:      Documentation/ABI/testing/sysfs-fs-xfs
20591 F:      Documentation/admin-guide/xfs.rst
20592 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20593 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20594 F:      fs/xfs/
20595 F:      include/uapi/linux/dqblk_xfs.h
20596 F:      include/uapi/linux/fsmap.h
20597
20598 XILINX AXI ETHERNET DRIVER
20599 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20600 S:      Maintained
20601 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20602
20603 XILINX CAN DRIVER
20604 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20605 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20606 L:      linux-can@vger.kernel.org
20607 S:      Maintained
20608 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20609 F:      drivers/net/can/xilinx_can.c
20610
20611 XILINX GPIO DRIVER
20612 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20613 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20614 R:      Michal Simek <michal.simek@xilinx.com>
20615 S:      Maintained
20616 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20617 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20618 F:      drivers/gpio/gpio-xilinx.c
20619 F:      drivers/gpio/gpio-zynq.c
20620
20621 XILINX SD-FEC IP CORES
20622 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20623 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20624 S:      Maintained
20625 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20626 F:      Documentation/misc-devices/xilinx_sdfec.rst
20627 F:      drivers/misc/Kconfig
20628 F:      drivers/misc/Makefile
20629 F:      drivers/misc/xilinx_sdfec.c
20630 F:      include/uapi/misc/xilinx_sdfec.h
20631
20632 XILINX UARTLITE SERIAL DRIVER
20633 M:      Peter Korsgaard <jacmet@sunsite.dk>
20634 L:      linux-serial@vger.kernel.org
20635 S:      Maintained
20636 F:      drivers/tty/serial/uartlite.c
20637
20638 XILINX VIDEO IP CORES
20639 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20640 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20641 L:      linux-media@vger.kernel.org
20642 S:      Supported
20643 T:      git git://linuxtv.org/media_tree.git
20644 F:      Documentation/devicetree/bindings/media/xilinx/
20645 F:      drivers/media/platform/xilinx/
20646 F:      include/uapi/linux/xilinx-v4l2-controls.h
20647
20648 XILINX ZYNQMP DPDMA DRIVER
20649 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20650 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20651 L:      dmaengine@vger.kernel.org
20652 S:      Supported
20653 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20654 F:      drivers/dma/xilinx/xilinx_dpdma.c
20655 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20656
20657 XILINX ZYNQMP PSGTR PHY DRIVER
20658 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20659 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20660 L:      linux-kernel@vger.kernel.org
20661 S:      Supported
20662 T:      git https://github.com/Xilinx/linux-xlnx.git
20663 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20664 F:      drivers/phy/xilinx/phy-zynqmp.c
20665
20666 XILLYBUS DRIVER
20667 M:      Eli Billauer <eli.billauer@gmail.com>
20668 L:      linux-kernel@vger.kernel.org
20669 S:      Supported
20670 F:      drivers/char/xillybus/
20671
20672 XLP9XX I2C DRIVER
20673 M:      George Cherian <gcherian@marvell.com>
20674 L:      linux-i2c@vger.kernel.org
20675 S:      Supported
20676 W:      http://www.marvell.com
20677 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20678 F:      drivers/i2c/busses/i2c-xlp9xx.c
20679
20680 XRA1403 GPIO EXPANDER
20681 M:      Nandor Han <nandor.han@ge.com>
20682 M:      Semi Malinen <semi.malinen@ge.com>
20683 L:      linux-gpio@vger.kernel.org
20684 S:      Maintained
20685 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20686 F:      drivers/gpio/gpio-xra1403.c
20687
20688 XTENSA XTFPGA PLATFORM SUPPORT
20689 M:      Max Filippov <jcmvbkbc@gmail.com>
20690 L:      linux-xtensa@linux-xtensa.org
20691 S:      Maintained
20692 F:      drivers/spi/spi-xtensa-xtfpga.c
20693 F:      sound/soc/xtensa/xtfpga-i2s.c
20694
20695 YAM DRIVER FOR AX.25
20696 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20697 L:      linux-hams@vger.kernel.org
20698 S:      Maintained
20699 F:      drivers/net/hamradio/yam*
20700 F:      include/linux/yam.h
20701
20702 YAMA SECURITY MODULE
20703 M:      Kees Cook <keescook@chromium.org>
20704 S:      Supported
20705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20706 F:      Documentation/admin-guide/LSM/Yama.rst
20707 F:      security/yama/
20708
20709 YEALINK PHONE DRIVER
20710 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20711 L:      usbb2k-api-dev@nongnu.org
20712 S:      Maintained
20713 F:      Documentation/input/devices/yealink.rst
20714 F:      drivers/input/misc/yealink.*
20715
20716 Z8530 DRIVER FOR AX.25
20717 M:      Joerg Reuter <jreuter@yaina.de>
20718 L:      linux-hams@vger.kernel.org
20719 S:      Maintained
20720 W:      http://yaina.de/jreuter/
20721 W:      http://www.qsl.net/dl1bke/
20722 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20723 F:      drivers/net/hamradio/*scc.c
20724 F:      drivers/net/hamradio/z8530.h
20725
20726 ZBUD COMPRESSED PAGE ALLOCATOR
20727 M:      Seth Jennings <sjenning@redhat.com>
20728 M:      Dan Streetman <ddstreet@ieee.org>
20729 L:      linux-mm@kvack.org
20730 S:      Maintained
20731 F:      mm/zbud.c
20732
20733 ZD1211RW WIRELESS DRIVER
20734 M:      Ulrich Kunitz <kune@deine-taler.de>
20735 L:      linux-wireless@vger.kernel.org
20736 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20737 S:      Maintained
20738 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20739 F:      drivers/net/wireless/zydas/zd1211rw/
20740
20741 ZD1301 MEDIA DRIVER
20742 M:      Antti Palosaari <crope@iki.fi>
20743 L:      linux-media@vger.kernel.org
20744 S:      Maintained
20745 W:      https://linuxtv.org/
20746 W:      http://palosaari.fi/linux/
20747 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20748 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20749
20750 ZD1301_DEMOD MEDIA DRIVER
20751 M:      Antti Palosaari <crope@iki.fi>
20752 L:      linux-media@vger.kernel.org
20753 S:      Maintained
20754 W:      https://linuxtv.org/
20755 W:      http://palosaari.fi/linux/
20756 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20757 F:      drivers/media/dvb-frontends/zd1301_demod*
20758
20759 ZHAOXIN PROCESSOR SUPPORT
20760 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20761 L:      linux-kernel@vger.kernel.org
20762 S:      Maintained
20763 F:      arch/x86/kernel/cpu/zhaoxin.c
20764
20765 ZONEFS FILESYSTEM
20766 M:      Damien Le Moal <damien.lemoal@wdc.com>
20767 M:      Naohiro Aota <naohiro.aota@wdc.com>
20768 R:      Johannes Thumshirn <jth@kernel.org>
20769 L:      linux-fsdevel@vger.kernel.org
20770 S:      Maintained
20771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20772 F:      Documentation/filesystems/zonefs.rst
20773 F:      fs/zonefs/
20774
20775 ZPOOL COMPRESSED PAGE STORAGE API
20776 M:      Dan Streetman <ddstreet@ieee.org>
20777 L:      linux-mm@kvack.org
20778 S:      Maintained
20779 F:      include/linux/zpool.h
20780 F:      mm/zpool.c
20781
20782 ZR36067 VIDEO FOR LINUX DRIVER
20783 M:      Corentin Labbe <clabbe@baylibre.com>
20784 L:      mjpeg-users@lists.sourceforge.net
20785 L:      linux-media@vger.kernel.org
20786 S:      Maintained
20787 W:      http://mjpeg.sourceforge.net/driver-zoran/
20788 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20789 F:      Documentation/driver-api/media/drivers/zoran.rst
20790 F:      drivers/staging/media/zoran/
20791
20792 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20793 M:      Minchan Kim <minchan@kernel.org>
20794 M:      Nitin Gupta <ngupta@vflare.org>
20795 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20796 L:      linux-kernel@vger.kernel.org
20797 S:      Maintained
20798 F:      Documentation/admin-guide/blockdev/zram.rst
20799 F:      drivers/block/zram/
20800
20801 ZS DECSTATION Z85C30 SERIAL DRIVER
20802 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20803 S:      Maintained
20804 F:      drivers/tty/serial/zs.*
20805
20806 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20807 M:      Minchan Kim <minchan@kernel.org>
20808 M:      Nitin Gupta <ngupta@vflare.org>
20809 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20810 L:      linux-mm@kvack.org
20811 S:      Maintained
20812 F:      Documentation/vm/zsmalloc.rst
20813 F:      include/linux/zsmalloc.h
20814 F:      mm/zsmalloc.c
20815
20816 ZSWAP COMPRESSED SWAP CACHING
20817 M:      Seth Jennings <sjenning@redhat.com>
20818 M:      Dan Streetman <ddstreet@ieee.org>
20819 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20820 L:      linux-mm@kvack.org
20821 S:      Maintained
20822 F:      mm/zswap.c
20823
20824 THE REST
20825 M:      Linus Torvalds <torvalds@linux-foundation.org>
20826 L:      linux-kernel@vger.kernel.org
20827 S:      Buried alive in reporters
20828 Q:      http://patchwork.kernel.org/project/LKML/list/
20829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20830 F:      *
20831 F:      */